May 6, 2003 #1 MiniYC IS-IT--Management Joined May 1, 2003 Messages 8 Location US How do you edit the routing table?
May 7, 2003 #2 backoftheworm IS-IT--Management Joined Oct 11, 2002 Messages 12 Location US Use the route command. You can get help on this command with #man route. Upvote 0 Downvote
May 12, 2003 #3 hellsing MIS Joined Sep 3, 2001 Messages 97 Location 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 Joined Nov 8, 2002 Messages 53,708 Location 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.