直接编辑/etc/sysconfig/iptables文件
1.编辑/etc/sysconfig/iptables文件:vim /etc/sysconfig/iptables
加入内容并保存:-A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
2.重启服务:/etc/init.d/iptables restart
3.查看端口是否开放:/sbin/iptables -L -n
CentOS 配置防火墙操作实例(启、停、开、闭端口):
注:防火墙的基本操作命令:
查询防火墙状态: [root@localhost ~]# service iptables status
停止防火墙: [root@localhost ~]# service iptables stop
启动防火墙: [root@localhost ~]# service iptables start
重启防火墙: [root@localhost ~]# service iptables restart
永久关闭防火墙: [root@localhost ~]# chkconfig iptables off
永久关闭后启用: [root@localhost ~]# chkconfig iptables on
4.直接添加完记得重启防火墙