1)防火墙关掉,永久性生效,重启后不会复原
开启: chkconfig iptables on
关闭: chkconfig iptables off
2)防火墙关掉,即时生效,重启后复原
开启: service iptables start
关闭: service iptables stop
打开一个端口22
iptables -A INPUT -p tcp -sport 22 -j ACCEPT
iptables -A INPUT -p tcp -dport 22 -j ACCEPT.
posted on 2010-12-03 21:51
坏男孩 阅读(443)
评论(0) 编辑 收藏 所属分类:
Linux