当前位置: 技术问答>linux和unix
linux vsftp问题,大家进来帮帮忙 谢谢
来源: 互联网 发布时间:2016-07-05
本文导语: 问题是这样的,我这样配置iptables的 iptables -F iptables -X iptables -P INPUT DROP iptables -P OUTPUT DROP iptables -P FORWARD DROP iptables -A INPUT -p tcp --dport 21 -j ACCEPT iptables -A OUTPUT -p tcp --sport 21 -j ACCEPT iptables -A INPUT ...
问题是这样的,我这样配置iptables的
iptables -F
iptables -X
iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -P FORWARD DROP
iptables -A INPUT -p tcp --dport 21 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 21 -j ACCEPT
iptables -A INPUT -p tcp --dport 20 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 20 -j ACCEPT
这样配置有错吗?为什么ftp到登陆框 输入账号密码以后 就不行了 进不了ftp 是不是还需要其他什么端口,关掉防火墙是可以的 还有就是假如关掉防火墙 在重新开启 iptables的配置会还原成初装状态的 为什么。谢谢大家
iptables -F
iptables -X
iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -P FORWARD DROP
iptables -A INPUT -p tcp --dport 21 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 21 -j ACCEPT
iptables -A INPUT -p tcp --dport 20 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 20 -j ACCEPT
这样配置有错吗?为什么ftp到登陆框 输入账号密码以后 就不行了 进不了ftp 是不是还需要其他什么端口,关掉防火墙是可以的 还有就是假如关掉防火墙 在重新开启 iptables的配置会还原成初装状态的 为什么。谢谢大家
|
可以手动加上去
至于
还有就是假如关掉防火墙 在重新开启 iptables的配置会还原成初装状态的
问题 是因为你的防火墙的头2句的原因
iptables -F 清除预设表filter中的所有规则链的规则
iptables -X 清除预设表filter中使用者自定链中的规则
而且设完之后 必须保存
iptables-save 就把设置的内容保存到/etc/sysconf/iptables中了 重启后自动加载该文件