Linuxiptables firewalld配置iptables开放端口1 2 3 4 iptables -I INPUT -p udp --dport 137 -j ACCEPT iptables -I INPUT -p udp --dport 138 -j ACCEPT iptables -I INPUT -p tcp --dport 139 -j ACCEPT iptables -I INPUT -p tcp --dport 445 -j ACCEPT 1 iptables-save 1 service iptables save 1 chkconfig iptables on 关闭iptables非本地环境不推荐关闭防火墙重启后生效1 2 chkconfig iptables on chkconfig iptables off 即时生效,重启后失效1 2 service iptables start service iptables stop firewalld开放端口1 firewall-cmd --zone=public --add-port=80/tcp --permanent 命令含义:1 2 3 --zone #作用域 --add-port=80/tcp #添加端口,格式为:端口/通讯协议 --permanent #永久生效,没有此参数重启后失效 重启防火墙1 firewall-cmd --reload