无法使用http协议连接

这是一个奇怪的问题,我在一个非托pipe的VPS中,我不太确定当我尝试从我的位置连接时总是会发生什么“超时”。

我是新来的iptables,所以这里的列表…我会让你有经验的用户判断它

Chain INPUT (policy ACCEPT) target prot opt source destination RH-Firewall-1-INPUT all -- anywhere anywhere Chain FORWARD (policy ACCEPT) target prot opt source destination RH-Firewall-1-INPUT all -- anywhere anywhere Chain OUTPUT (policy ACCEPT) target prot opt source destination Chain RH-Firewall-1-INPUT (2 references) target prot opt source destination ACCEPT all -- anywhere anywhere ACCEPT icmp -- anywhere anywhere icmp any ACCEPT esp -- anywhere anywhere ACCEPT ah -- anywhere anywhere ACCEPT udp -- anywhere <some ip> udp dpt:mdns ACCEPT udp -- anywhere anywhere udp dpt:ipp ACCEPT tcp -- anywhere anywhere tcp dpt:ipp ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh REJECT all -- anywhere anywhere reject-with icmp-host-prohibited 

我也安装了webmin来pipe理我的networking服务器,但最终发现我也无法连接到端口10000

按要求

http://pastebin.com/5eS6zmmF

一点点混乱,所以我把它添加到pastebin中

你能给我们输出iptables -L -n -v吗? 我怀疑你的RH-Firewall-1-INPUT的第一行并不像看起来那么宽容。

假设你通过sshlogin到这个盒子,你可以试试

 iptables -I RH-Firewall-1-INPUT 2 -p tcp --dport 80 -j ACCEPT 

并告诉我们,这是否提高了你的能力谈谈HTTP到盒子?