linux 关闭防火墙

下面是red hat/CentOs7关闭防火墙的命令!

1:查看防火状态

systemctl status firewalld

service  iptables status

2:暂时关闭防火墙

systemctl stop firewalld

service  iptables stop

3:永久关闭防火墙

systemctl disable firewalld

chkconfig iptables off

4:重启防火墙

systemctl enable firewalld

service iptables restart  

5:永久关闭后重启

//暂时还没有试过

chkconfig iptables on

6:查看端口号

firewall-cmd --query-port=8080/tcp

7:开放80端口

firewall-cmd --permanent --add-port=80/tcp

8: 移除端口

firewall-cmd --permanent --remove-port=8080/tcp

9:重启防火墙(修改配置后要重启防火墙)

firewall-cmd --reload

10: 参数解释

1、firwall-cmd:是Linux提供的操作firewall的一个工具;

2、--permanent:表示设置为持久;

3、--add-port:标识添加的端口;


配置防火墙请参考:https://www.cnblogs.com/shamao/p/11363820.html

你可能感兴趣的:(linux 关闭防火墙)