redhat关闭防火墙命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redhat关闭防火墙命令相关的知识,希望对你有一定的参考价值。

参考技术A 1:查看防火状态
systemctl status firewalld
service iptables status
2:暂时关闭防火墙
systemctl stop firewalld
service iptables stop
3:永久关闭防火墙
systemctl disable firewalld
chkconfig iptables off

redHat linux 修改防火墙设置简略版

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 AC

以上是关于redhat关闭防火墙命令的主要内容,如果未能解决你的问题,请参考以下文章

redhat6 如何启动防火墙?

RedHat 7关闭防火墙方法

CentOS 7.2 里iptables防火墙怎么关闭

[转]RedHat Enterprise Linux 7关闭防火墙方法

Linux关闭防火墙命令

Linux关闭防火墙命令