View Single Post

  #2 (permalink)  
Old 06-22-2006, 02:38 PM
monk's Avatar
monk monk is offline
Senior Member
User
 
Join Date: Jan 2005
Location: Tibet
My distro: Debian GNU/Linux
Posts: 482
Rep Power: 5
monk will become famous soon enough monk will become famous soon enough
Default

To display route use command:
Code:
netstat -rn
To display route with netmask:
Code:
netstat -rvn
Verifying a route to a specfic network:
Code:
route -n get aaa.bbb.ccc.0
To add route:
Code:
route add DEST-IP GATEWAY-IP
Reply With Quote