centos7 防火墙操作

  1. 查看防火墙状态
systemctl status firewalld
  1. 开启防火墙
systemctl start firewalld
  1. 开放端口
[root@VM_0_14_centos mysqlTemp]# firewall-cmd --zone=public --add-port=3306/tcp --permanent
  1. 重新载入
[root@VM_0_14_centos mysqlTemp]# firewall-cmd --reload
  1. 查看所有端口
 firewall-cmd --zone=public --list-ports

你可能感兴趣的:(centos7 防火墙操作)