码迷,mamicode.com
首页 > 系统相关 > 详细

linux关闭防火墙

时间:2014-09-20 19:18:49      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:blog   http   os   ar   文件   art   sp   log   on   

感谢:http://my.oschina.net/u/217959/blog/38051

(1) 重启后永久性生效:

开启:chkconfig iptables on

关闭:chkconfig iptables off

(2) 即时生效,重启后失效:

开启:service iptables start

关闭:service iptables stop

需要说明的是对于Linux下的其它服务都可以用以上命令执行开启和关闭操作。

在开启了防火墙时,做如下设置,开启相关端口,

修改/etc/sysconfig/iptables 文件,添加以下内容:

-A RH-Firewall-1-INPUT -m state ——state NEW -m tcp -p tcp ——dport 80 -j ACCEPT

-A RH-Firewall-1-INPUT -m state ——state NEW -m tcp -p tcp ——dport 22 -j ACCEPT

或者:

/etc/init.d/iptables status 会得到一系列信息,说明防火墙开着。

/etc/rc.d/init.d/iptables stop 关闭防火墙

linux关闭防火墙

标签:blog   http   os   ar   文件   art   sp   log   on   

原文地址:http://www.cnblogs.com/wrencai/p/3983458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!