首页 > 代码库 > linux开放80 端口

linux开放80 端口

1.使用su登录管理员用户

2.编辑防火墙配置文件

vim /etc/sysconfig/iptables

 3.在里面加入后保存

#open port 80
-A INPUT -p TCP -m state --state NEW -m tcp --dport 80 -j ACCEPT

 5.重启防火墙

service iptables restart

 

linux开放80 端口