这两天在给客户安装 服务器 时也顺便给他们使用 iptables ,不用不知道,一用才发现 iptables 还有很多东西可以学的,比如" name="description" />

iptables下开放ftp连接

发表于:2007-07-04来源:作者:点击数: 标签:
MI LY: 宋体; mso-bidi-font-size: 9.0pt; mso-ascii-font-family: "Times New Roman"; mso-hansi-font-family: "Times New Roman"">这两天在给客户安装 服务器 时也顺便给他们使用 iptables ,不用不知道,一用才发现 iptables 还有很多东西可以学的,比如

MILY: 宋体; mso-bidi-font-size: 9.0pt; mso-ascii-font-family: "Times New Roman"; mso-hansi-font-family: "Times New Roman"">这两天在给客户安装服务器时也顺便给他们使用iptables,不用不知道,一用才发现iptables还有很多东西可以学的,比如开放ftp
    iptables
filter表的INPUT链的默认策略设为了DROP,其余的链均为ACCEPT 该服务器即要作ftp服务器,也要连上别的ftp服务器。即是说要把源端口和目的端口都开放21才行:

clearcase/" target="_blank" >cccccc; WIDTH: 92%; mso-cellspacing: .7pt; mso-padding-alt: 0cm 0cm 0cm 0cm" cellspacing="1" cellpadding="0" width="92%" bgcolor="#cccccc" border="0">


iptables -A INPUT -p tcp --sport 21 -j ACCEPT
iptables -A INPUT -p tcp --dport 21 -j ACCEPT

原文转自:http://www.ltesting.net