> I have 2 networks behind a Dachstein. > > 10.10.0.0/16----Router: eth0 1 is 10.10.1.1/16 > eth1 is 192.168.1.40/24 ----Dachstein: eth1: > 192.168.1.254/24 > eth0: ISP IP > --------------ISP > > Problem is that I cannot ping a Dachstein internal IP (192.168.1.254) from > the > 10.10.0.0/16 network. > > I can ping from 10.10.0.0/16 network to 192.168.1.40, but I can't ping > further than that. > > Please help with route add on the Dachstein. Thank you.
It's hard to say exactly what's wrong without more details of your setup, but as a WAG, you might want to try the following settings in /etc/network.conf # Add route to second internal network eth1_ROUTES="10.10.0.0/16_via_192.168.1.40" # Allow both internal networks to access the internet INTERN_NET="192.168.1.0/24 10.10.0.0/16" NOTE: If your two networks will be talking to each other a lot, you'd be a lot better off having both networks hooked to the Dachstein box (with a third ethernet card). Otherwise, you've either got to add a static route to each system on the 192.168 network (so they can reach the 10.10 network via the router at 192.168.1.40) or live with packets crossing the 192.168 network twice (once from the internal box to the Dachstein default gateway, and again from the Dachstein box to the router at 192.168.1.40...this could also cause some application problems, depending on the IP stack you're running on your internal clients). If I'm not understanding your problem correctly, please try to explain in a bit more detail, and I'll try and help. Charles Steinkuehler http://lrp.steinkuehler.net http://c0wz.steinkuehler.net (lrp.c0wz.com mirror) ------------------------------------------------------- This sf.net emial is sponsored by: Influence the future of Java(TM) technology. Join the Java Community Process(SM) (JCP(SM)) program now. http://ad.doubleclick.net/clk;4699841;7576301;v?http://www.sun.com/javavote ------------------------------------------------------------------------ leaf-user mailing list: [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/leaf-user SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
