firewall-cmd常用语法速记

前端之家收集整理的这篇文章主要介绍了firewall-cmd常用语法速记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

CentOS7开始全面切换为firewall-cmd,记录下。

#安全区域所有端口均能连接,--permanent表示永久生效
firewall-cmd --permanent --zone=trusted --change-source=172.10.3.233
#设置默认访问区域时,不需要设置--zone,下面是加入的一个示例
firewall-cmd --add-port=1420/tcp
#删除添加的条目的示例,刚好这个是一个段的添加
firewall-cmd --remove-port=0-100/udp
#设置部分低权限的区域,例如仅能够SSH连接
firewall-cmd --zone=external --change-source=172.0.0.0/8
firewall-cmd --zone=external --remove-source=172.0.0.0/8
#禁用外部连接
firewall-cmd --zone=block --change-source=0.0.0.0/0
#检查当前配置
firewall-cmd --list-all-zones
#将当前配置固化,永久保存
firewall-cmd --runtime-to-permanent
原文链接:https://www.f2er.com/centos/378822.html

猜你在找的CentOS相关文章