tilopa <(E-Mail Removed)> wrote:
> Just to be more clear about the whole scenario I'd like to break it
> down with a little more detail.
> I have a Fedora 6 box with 2 ethernet cards.
> Eth0 = 172.16.1.1
> Eth1 = 10.1.10.1
> Connected to Eth0 I have a switch that has another computer with IP of
> 172.16.1.14 (actually I have several computers on that switch, but this
> is the 1 I'm testing with). Also on that same switch I have connected
> the inside interface of a Pix firewall with IP of 172.16.1.2.
> (I know the Pix will be looked at as the suspicious peice in all this
> but I have configured it wide open, and I can ping through it to the
> internet).
> Connected to Eth1 I have a switch with 2 systems connected with IP's of
> 10.1.10.12 and 14.
> My routing table is such that my default gw is the pix 172.16.1.2
> everything else in the routing table is by default.
Okay, this is my take on your setup from the above description:
SW0-Box0(Eth0:172.16.1.2, FW) <-> Cloud
||__Box1(Eth0:172.16.1.1, 10.1.10.1:Eth1)-SW1-Box3(Eth0:10.1.10.12)
|___Box2(Eth0:172.16.1.14) |__Box4(Eth0:10.1.10.14)
> When I try and ping from the 10.1.10.12 box to the either Eth0 or Eth1
> interfaces it works. When I try and ping to the 172.16.1.14 box it
> fails.
Try adding these network gateway routes on Box1:
route add -net 172.16.1.0/24 gw 172.16.1.1
route add -net 10.1.10.0/24 gw 10.1.10.1
(The networks are based on your first post)
You also may or may not need to configure proxy-arp with
arp -Ds 172.16.1.1 eth0 pub
arp -Ds 10.1.10.1 eth1 pub
on Box1. Man arp, man 7 arp - search the pages for proxy.
Experimenting without a setup similar to yours was inconclusive.
Hence, no guarantee this will work.
> When I ping from the 172.16.1.14 box to either Eth0 or Eth1 interfaces
> it works. When I ping to the 10.1.10.12 box it fails.
> On the Fedora box itself I am succesful in pinging out to the internet
> and to either the 10.1.10.12 or 172.16.1.14 boxes.
> HELP!!!
HTH
--
Clifford Kite
/* In my book, the first poster to resort to personal abuse in a Usenet
debate loses by default. - Rod Smith */
|