May 7, 2003 #2 backoftheworm IS-IT--Management Oct 11, 2002 12 US Use the route command. You can get help on this command with #man route. Upvote 0 Downvote
May 12, 2003 #3 hellsing MIS Sep 3, 2001 97 GB You simply need to use the route add and route delete commands, ie: route add 192.172.10.20 192.168.10.50 Be aware any changes you make to it with these commands will be "un-done" once you reboot the system. Upvote 0 Downvote
You simply need to use the route add and route delete commands, ie: route add 192.172.10.20 192.168.10.50 Be aware any changes you make to it with these commands will be "un-done" once you reboot the system.
May 12, 2003 #4 PHV MIS Nov 8, 2002 53,708 FR To see the routing table: Code: netstat -r or Code: netstat -rn To make permanent changes accross reboot, symply create a script file Code: /etc/rc2.d/S99route with your Code: route add ... command. Hope This Help PH. Upvote 0 Downvote
To see the routing table: Code: netstat -r or Code: netstat -rn To make permanent changes accross reboot, symply create a script file Code: /etc/rc2.d/S99route with your Code: route add ... command. Hope This Help PH.