linux系统关闭防火墙
2021-07-07 本文已影响0人
风一样的存在
本来想远程调试代码,发现可以ping通就是不能远程debug,最后关闭了防火墙解决了这个问题,这里记录下使用到的命令。
下面是red hat/CentOs7关闭防火墙的命令
-
查看防火状态
systemctl status firewalld
service iptables status -
暂时关闭防火墙
systemctl stop firewalld
service iptables stop -
永久关闭防火墙
systemctl disable firewalld
chkconfig iptables off -
重启防火墙
systemctl enable firewalld
service iptables restart -
永久关闭后重启
chkconfig iptables on