Linux系统如何关闭防火墙?方法介绍!

  防火墙是一项为了保证操作系统安全而特定的协议,虽然有的时候会给我们带来很多好处,同时有时候防火墙开启也会导致我们遇到一些麻烦,那么在Linux系统中,如何关闭防火墙?

  CentOS6

  # 临时关闭防火墙

  servcie iptables stop

  # 永久关闭防火墙

  chkconfig iptables off

  CentOS 7

  # 开机不自动启动防火墙

  sudo systemctl disable firewalld.service

  # 关闭防火墙

  sudo systemctl stop firewalld.service

  SLES

  sudo chkconfig SuSEfirewall2_setup off

  sudo chkconfig SuSEfirewall2_init off

  sudo rcSuSEfirewall2 stop

  Unutu

  sudo service ufw stop

  sudo ufw disable

(0)

相关推荐