CentOS7使用firewalld打开关闭防火墙与端口
Posted coffee_cn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7使用firewalld打开关闭防火墙与端口相关的知识,希望对你有一定的参考价值。
添加(permanent永久生效,没有此参数重启后失效)
firewall-cmd --zone=public --add-port=80/tcp --permanent
重新载入
firewall-cmd --reload
查看
firewall-cmd --zone= public --query-port=80/tcp
删除
firewall-cmd --zone= public --remove-port=80/tcp --permanent
启动
systemctl start firewalld
关闭
systemctl stop firewalld
查看状态
systemctl status firewalld
开机禁用
systemctl disable firewalld
开机启用
systemctl enable firewalld
以上是关于CentOS7使用firewalld打开关闭防火墙与端口的主要内容,如果未能解决你的问题,请参考以下文章