Cannot access firewalled jboss server from Internet Explorer

Posted by Simon Gibbs on Server Fault See other posts from Server Fault or by Simon Gibbs
Published on 2011-06-21T11:50:39Z Indexed on 2011/06/30 16:24 UTC
Read the original article Hit count: 320

I've produced a website for a client One Single Menu using JBoss and hosted it on Rackspace Cloud Servers running Ubuntu's Maverick Meerkat. Following advice, I esablished some iptables rule to protect jboss:

iptables -I INPUT 1 -i lo -j ACCEPT
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
iptables -t nat -A OUTPUT -o lo -p tcp --dport 80 -j REDIRECT --to-port 8080
iptables -A INPUT -j DROP

Now, several versions of IE on several computers on at least two different ISPs cannot access the onesinglemenu.com. Curl from within the datacenter, Firefox, and Safari on the same ISPs can all access the server fine. I even tried IE and Firefox on the same computer and IE failed but Firefox worked.

The error behaviour is that IE hangs on connecting without reporting an error, even after a minute or so. No page is displayed at all.

I find it quite odd that I'm having a browser specific connection issue, but it appears to be the case. Help!

© Server Fault or respective owner

Related posts about networking

Related posts about firewall