CentOS关闭防火墙

2021年12月11日02:10:42 评论 729
首月免费体验

安装宝塔之后会自动开启防火墙,这里就说下如何关闭。

查看状态:

  1. systemctl status firewalld
  2.  
  3. firewall-cmd --state

 

关闭防火墙

  1. service firewalld stop

想重新开启的话:

  1. # 开启 service firewalld start
  2. # 重启 service firewalld restart

 

查看目前的防火墙规则:

  1. firewall-cmd --list-all

 

永久关闭防火墙:

  1. chkconfig firewalld off

 

其他命令:

  1. 启动一个服务:systemctl start firewalld.service
  2. 关闭一个服务:systemctl stop firewalld.service
  3. 重启一个服务:systemctl restart firewalld.service
  4. 显示一个服务的状态:systemctl status firewalld.service
  5. 在开机时启用一个服务:systemctl enable firewalld.service
  6. 在开机时禁用一个服务:systemctl disable firewalld.service
  7. 查看服务是否开机启动:systemctl is-enabled firewalld.service;echo $?
  8. 查看已启动的服务列表:systemctl list-unit-files|grep enabled
weinxin
博主微信
这是我的微信扫一扫

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

滑动解锁才能提交