centos7 Failed to start iptables.service: Unit not found 防火墙
在CentOS 7或RHEL 7或Fedora中防火墙由firewalld来管理
添加
firewall-cmd --zone=public --add-port=80/tcp --permanent (–permanent永久生效,没有此参数重启后失效)
firewall-cmd --zone=public --add-port=1000-2000/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.service
关闭防火墙
systemctl stop firewalld.service
查看运行状态
firewall-cmd --state //running 表示运行
————————————————
版权声明:本文为CSDN博主「sdccone1」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_44718747/article/details/109005457