hi guys,

i'm running a linux webserver that acts as a router for my internal network on a cable modem. Internally, the webserver is running fine. A friend of mine in the internet zone was also able to access, but other than him, all others couldn't access my webserver.

The ff. are the iptables script i used to enable the webserver outside the internet zone

#-----------------------------------------------------------
# FIREWALL RULES
#-----------------------------------------------------------

# Allow previously established connections

iptables -A OUTPUT -p tcp -o eth0 -m state --state \
ESTABLISHED,RELATED -j ACCEPT

iptables -A INPUT -p tcp -i eth0 --dport 22 --sport 1024:65535 \
-m state --state NEW -j ACCEPT
iptables -A INPUT -p tcp -i eth0 --dport 80 --sport 1024:65535 \
-m state --state NEW -j ACCEPT

-------------------------------------------------------------

I can do an ssh connection in the internet zone, as well as query the
domain name through nslookup and dig (i have used ddclient with dyndns.org),
but i couldn't show the main page in the web browser...

"The page cannot be displayed
The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings. "

Aprreciate your help on this...

---> The rocketman