Hi Jeremy,

As long as this machine is behind a firewall/router, and has a non-routable
address, run the following from a terminal window as root:
'/sbin/iptables -F'
'/sbin/iptables -X'

The '-F' argument to iptables will flush the rules set temporarily so that
you can test connectivity from another machine on your network.

The '-X' argument after running with the '-F' argument, will delete all non
built-in chains.

My hunch is that one of those rules are causing an issue, even though it
seems that it's configured to accept all by the third rule.

Let us know how you make out.

-- Armen

On Tue, Feb 9, 2010 at 17:12, Jeremy Leonard <[email protected]> wrote:

> The output for 'iptables -L' run as root is:
>
> Chain INPUT (policy ACCEPT)
> target     prot opt source               destination
> ACCEPT     all  --  anywhere             anywhere            state
> RELATED,ESTABLISHED
> ACCEPT     icmp --  anywhere             anywhere
> ACCEPT     all  --  anywhere             anywhere
> ACCEPT     tcp  --  anywhere             anywhere            state NEW
> tcp dpt:ssh
> REJECT     all  --  anywhere             anywhere            reject-
> with icmp-host-prohibited
>
> Chain FORWARD (policy ACCEPT)
> target     prot opt source               destination
> REJECT     all  --  anywhere             anywhere            reject-
> with icmp-host-prohibited
>
> Chain OUTPUT (policy ACCEPT)
> target     prot opt source               destination
>
>
> On Feb 8, 7:20 pm, Armen Kaleshian <[email protected]> wrote:
> > Understood.
> >
> > There may be a firewall enabled on the machine that the server is running
> > on, preventing other machines on the same network as the server from
> > connecting to the web server.
> >
> > As root, if you run* /sbin/iptables -L* from a terminal window, what does
> > the output look like?
>
> --
> You received this message because you are subscribed to the Linux Users
> Group.
> To post a message, send email to [email protected]
> To unsubscribe, send email to [email protected]
> For more options, visit our group at
> http://groups.google.com/group/linuxusersgroup
>

-- 
You received this message because you are subscribed to the Linux Users Group.
To post a message, send email to [email protected]
To unsubscribe, send email to [email protected]
For more options, visit our group at 
http://groups.google.com/group/linuxusersgroup

Reply via email to