2014-03-06 16:47:59 +00:00
|
|
|
# route
|
|
|
|
|
|
|
|
> Manually manipulate the routing tables
|
|
|
|
> Necessitates to be root.
|
|
|
|
|
|
|
|
- add a route to a destination through a gateway
|
|
|
|
|
2014-03-07 00:03:24 +00:00
|
|
|
`sudo route add {{dest_ip_address}} {{gateway_address}}`
|
2014-03-06 16:47:59 +00:00
|
|
|
|
2014-03-07 13:34:37 +00:00
|
|
|
- add a route to a /24 subnet through a gateway
|
|
|
|
|
|
|
|
`sudo route add {{subnet_ip_address}}/24 {{gateway_address}}`
|
|
|
|
|
2014-03-06 16:47:59 +00:00
|
|
|
- run in test mode (does not do anything, just print)
|
|
|
|
|
2014-03-07 00:03:24 +00:00
|
|
|
`sudo route -t add {{dest_ip_address}}/24 {{gateway_address}}`
|
2014-03-06 16:47:59 +00:00
|
|
|
|
|
|
|
- remove all routes
|
|
|
|
|
|
|
|
`sudo route flush`
|
|
|
|
|
|
|
|
- delete a specific route
|
|
|
|
|
2014-03-07 00:03:24 +00:00
|
|
|
`sudo route delete {{dest_ip_address}}/24`
|