使用 FileZilla FTP Client连接Vsftpd在执行LIST命令后提示连接超时 - 牧羊岛

时间:2024-02-18 07:11:02

使用 FileZilla FTP Client 连接 Vsftpd在执行LIST命令后提示连接超时。

vi /etc/vsftpd/vsftpd.conf

添加:

#开启被动模式
pasv_enable=YES
#随机最小端口
pasv_min_port=4000
#随机最大端口
pasv_max_port=5000

modprobe ip_conntrack_ftp

modprobe ip_nat_ftp

vi /etc/sysconfig/iptables

添加:

-A OUTPUT -p tcp --sport 4000:5000 -j ACCEPT
-A INPUT -p tcp --dport 4000:5000 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 4000:5000 -j ACCEPT(Centos6.4)

service iptables restart

service vsftpd restart