(E-Mail Removed) wrote:
> Hi,
>
> I have four dedicated linux servers behind a hardware firewall. Lets
> call the servers s1, s2, s3 and s4 for the sake of discussion.
>
> s1 seems to be causing problems. If i make a ping or an ssh request to
> it (or any request for that matter) and watch it using tcpdump the
> request goes out to s1 and arrives and then s1 says its sent a reply
> but it doesn't arrive back at the requesting machine.
>
Ok, at first do:
iptables -L
on s1. If anything shows up but empty chains do:
/etc/init.d/iptables stop
or
iptables -F
*** If this is a production server and you do not know what these
commands will do, do not do it! *********
Then check again.
If the problem persists do this:
route
and make sure a route exists so that packet can come back to the
original servers.
Basically, if s1,s2,s3,s4 are all plugged on the same hub/switch ( they
are on the same subnet ) then it's ok. But if s1 is on separate network
( DMZ ? ) then verify there are static routes ( probably your fw/router
is not the problem because the packets came at first ) allowing the
packet to come back to sender.
I hope this helps.
If you do not understand anything to all of this, try to make a new post
with:
output of:
iptables -L
on s1 and s2 ( or another server from which you have problems )
and also the output of
route
on both servers
Olivier