linux 怎么永久关闭防火墙

您现在的位置是:首页 > Linux系统 > Centos > 正文

Centos

linux 怎么永久关闭防火墙

三米哥2020-11-19Centos2127
1、重启后生效开启:baichkconfigiptableson关闭du:chkconfigiptablesoff2、即时生效,重启后失效开启:serviceiptablessta

1、重启后生效

开启:bai chkconfig iptables on

关闭du: chkconfig iptables off

2、 即时生效,重启后失效

开启: service iptables start

关闭: service iptables stop

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

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

修改/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