ftp服务不同与其他的服务。要加载模块
modprobe ip_conntrack_ftp
modprobe ip_nat_ftp
iptables -A INPUT -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-m state 为iptables的显示扩展
--state 为连接的状态信息。
NEW:为新进来的连接。
ESTABLISHED:为建立的连接。
RELATED:为相关连的连接。