Found on
http://support.caldera.com/caldera/search
Description:
I have manually run the 'route add default' command to add
a default route to the route table. This route works
successfully, but I also want this route to be added to
the route table automatically whenever the system is rebooted.
Solution:
The 'route add default' statement should be added in the
/etc/rc2.d directory. In SCO Open Server 3.0, the route
add statement was included in /etc/tcp or /etc/rc.d/8/userdef.
However, in SCO OpenServer 5.0, some of the startup scripts
are executed in parallel which cause some timing issues.
Therefore it is recommended that a new file named S99route be
created in /etc/rc2.d which includes the route add statement.
# cd /etc/rc2.d
# vi S99route
echo "Setting default route"
/etc/route add default <IP#> (where <IP#> is the 'gateway' IP
address)
# chown root S99route
# chgrp sys S99route
# chmod 744 S99route