On Fri, 24 Mar 2006 12:08:00 +1200 Roger Searle wrote: > NINE:/home/roger # route -n > Kernel IP routing table > Destination Gateway Genmask Flags Metric Ref Use > Iface > 127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
the network is unreachable because you have no route to it. add the route. here is my table. [EMAIL PROTECTED] ~ $ /sbin/route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo 0.0.0.0 192.168.1.254 0.0.0.0 UG 0 0 0 eth0 there are three entries one for the 127.0.0.0 loopback network one for the 192.168.1.0 lan network one for the rest of the world (0.0.0.0) you are missing the second and third. -- Nick Rout <[EMAIL PROTECTED]>
