linux系统关闭防火墙

本来想远程调试代码,发现可以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

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