linux web内网能访问,外网不可以

http 内网能访问,外网不能访问的问题?

1,检查硬件防火墙IP映射,是否开放了http的访问端口

2,服务器防火墙是不是屏蔽了访问端口。

   修改防火墙配置需要修改 /etc/sysconfig/iptables 这个文件,如果要开放哪个端口,在里面添加一条

   -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 9090 -j ACCEPT

   用root登录后,执行
   service iptables stop --停止  (service iptables restart)
   service iptables start --启动
   (service命令位于/sbin)
   

      查看端口是否生效:/etc/init.d/iptables status。

Chain INPUT (policy ACCEPT)
num  target     prot opt source               destination
1    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:10000
2    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:80
3    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           state RELATED,
4    ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0
5    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
6    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp
7    REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with ic

Chain FORWARD (policy ACCEPT)
num  target     prot opt source               destination
1    REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with ic

Chain OUTPUT (policy ACCEPT)
num  target     prot opt source               destination

 

 

你可能感兴趣的:(其他)