firewalld
作者:互联网
一、firewall对指定IP开放所有端口
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.1.72" accept"
二、firewall对指定IP开放指定端口
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.1.72" port protocol="tcp" port="2181" accept"
三、firewall移除指定IP开放指定端口
firewall-cmd --permanent --remove-rich-rule="rule family="ipv4" source address="192.168.1.72" port protocol="tcp" port="9988" accept"
四、firewall允许任何IP开放指定端口
标签:firewall,IP,firewalld,rule,指定,--,port 来源: https://www.cnblogs.com/haoyun123/p/16389671.html