On Sun, Jul 29, 2001 at 06:51:50PM -0500, johndmiller wrote:
> I have added a Caldera box to my little home network.  I can ping all the
> other boxes but when I try to get out to the internet, I can't.  Would
> anyone lend a helping hand... here is my route table on the Caldera system
> 
> route -n
> Destination     Gateway    Genmask        Flags
> 192.168.0.0     0.0.0.0    255.255.255.0  U
> 127.0.0.0       0.0.0.0    255.0.0.0      U

You need a line like: 

0.0.0.0         192.168.0.1    0.0.0.0         UG    

Which is created by:

route add default gw 192.168.0.1

where 192.168.0.1 is replaced by the IP address of your gateway machine.
On your gateway, you'll have the default gateway set to the IP address
of the upstream router.

Nate