将ip添加到zone
sudo firewall-cmd --permanent --zone=work --add-source=192.168.0.0/24
将某个网口添加到zone
sudo firewall-cmd --permanent --zone=work --add-interface=eth0
在某个zone打开端口
sudo firewall-cmd --permanent --zone=work --add-port=8080-8090/tcp
永久打开一个端口
firewall-cmd --permanent --add-port=8080/tcp
永久关闭一个端口
firewall-cmd --permanent --remove-port=8080/tcp
永久打开某项服务
firewall-cmd --permanent --add-service=http
永久关闭某项服务
firewall-cmd --permanent --remove-service=