注意:下列命令要用root账号/权限执行
systemctl status firewalld
systemctl stop firewalld
systemctl start firewalld
systemctl restart firewalld
systemctl enable firewalld
systemctl disable firewalld
firewall-cmd --list-ports
firewall-cmd --list-ports --permanent
该命令以8081端口为示例
firewall-cmd --add-port=8081/tcp
增加开放端口后,需要重新加载防火墙配置
firewall-cmd --reload
该命令以8081端口为示例
firewall-cmd --add-port=8081/tcp --permanent
增加开放端口后,需要重新加载防火墙配置
firewall-cmd --reload
该命令以8081端口为示例
firewall-cmd --remove-port=8081/tcp
增加开放端口后,需要重新加载防火墙配置
firewall-cmd --reload
该命令以8081端口为示例
firewall-cmd --remove-port=8081/tcp --permanent
增加开放端口后,需要重新加载防火墙配置
firewall-cmd --reload
firewall-cmd --permanent --zone=trusted --add-source=192.168.1.0/24
添加防火墙IP白名单后,需要重新加载防火墙配置
firewall-cmd --reload
重新加载防火墙配置后、可以查看防火墙IP白名单是否生效
firewall-cmd --zone=trusted --list-all
注意:下列命令要用root账号/权限执行
service iptables status
service iptables stop
service iptables start
service iptables restart
chkconfig iptables off
chkconfig iptables on