欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

防火墙添加端口 博客分类: linux

程序员文章站 2024-03-21 21:25:40
...
1.在/etc/sysconfig/iptables里添加
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT

2.重启iptables
[root@localhost ~]# /etc/init.d/iptables restart

3.看下状态
[root@localhost ~]# /etc/init.d/iptables status