I assume you're running with a 2.2.x kernel? If so, you just need to add "netmask ???.???.???.???" to the "route add -net" command. The 2.0.x kernel series would supply it's own default value if none was specifically given, but in 2.2.x that is no longer the case.
Also, the kernel will now automatically generate a network-route when you ifconfig the interface (the loopback device seems to be an exception), so you may be able to remove the route commands entirely. On Sun, Mar 07, 1999 at 08:41:11PM -0800, Oz Dror wrote: > When I type > ifconfig lo 127.0.0.1 > route add -net 127.0.0.0 > I get > SIOCADDRT: Invalid argument > > When I type > IPADDR=192.168.0.4 > NETMASK=255.255.255.0 > NETWORK=192.168.0.0 > BROADCAST=192.168.0.255 > GATEWAY=192.168.0.4 > ifconfig eth0 ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST} > route add -net ${NETWORK} > > I get the same error > > but my network works fine. > > if I type > ping 192.168.0.1 it works > > Any help will be appreciated. > > What is the equivalent of these commands when using IP_ALIAS