打开防火墙端口
CentOS/RHEL 7:
sudo firewall-cmd --zone=public --add-port=8080/tcp --permanent
sudo firewall-cmd --reload

#如果不使用“--permanent”标记,把么防火墙规则在重启后会失效。
CentOS/RHEL 6:
sudo iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
sudo service iptables save

#使用iptables的第一条命令可以通过防火墙开启一个新TCP/UDP端口。
#为了永久保存修改过的规则,还需要第二条命令。
关闭防火墙:
CentOS/RHEL 7:
#临时关闭:
systemctl stop firewalld 

#禁止开机启动: 
systemctl disable firewalld
CentOS/RHEL 6:
#临时关闭:
service iptables stop

#禁止开机启动:
chkconfig iptables off
Logo

更多推荐