> > netstat -rn > > Destination Gateway Genmask Flags MSS Window irtt Iface > 10.0.0.3 0.0.0.0 255.255.255.0 U 1500 0 0 eth0 > 127.0.0.0 0.0.0.0 255.0.0.0 U 3584 0 0 lo Obviously you still don't have the route set up correctly. Perhaps try to set it explicitly to use eth0, as in: route add -net 10.0.0.0 netmask 255.255.255.0 dev eth0 Tuvik