1 先查看防火墙的状态
[root@VM_16_6_centos ~]# firewall-cmd --state
2 开启防火墙
[root@VM_16_6_centos ~]# systemctl start firewalld.service
**3 查看状态 **
[root@VM_16_6_centos ~]# firewall-cmd --state
4 查看放行的端口
[root@VM_16_6_centos ~]# firewall-cmd --list-all
5 添加放行的端口号
[root@VM_16_6_centos ~]# firewall-cmd --add-port=20080/tcp
–zone=public --permanent
**6 重新加载配置 **
[root@VM_16_6_centos ~]# firewall-cmd --reload
完成相关配置工作
再次查看放行的端口,就会有20080这个端口号: