CentOS7查看和关闭防火墙

CentOS 7.0默认使用的是firewall作为防火墙

查看防火墙状态

firewall-cmd --state
  • 1

停止firewall

systemctl stop firewalld.service
  • 1

禁止firewall开机启动

systemctl disable firewalld.service 
  • 1

转自:CentOS 6和CentOS 7防火墙的关闭

Centos7开放及查看端口
https://www.cnblogs.com/heqiuyong/p/10460150.htm

– 开放指定端口
firewall-cmd --zone=public --add-port=1935/tcp --permanent

– 关闭指定端口
firewall-cmd --zone=public --remove-port=5672/tcp --permanent

– 重启防火墙
firewall-cmd --reloadl

CentOS7查看和关闭防火墙_centos关闭防火墙_蔚蓝色天空sky的博客-CSDN博客

你可能感兴趣的:(linux,centos,防火墙,iptables)