1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages/common/route.md

16 lines
362 B
Markdown

# route
> Use route cmd to set the route table.
> More information: <https://manned.org/route>.
- Display the information of route table:
`route -n`
- Add route rule:
`sudo route add -net {{ip_address}} netmask {{netmask_address}} gw {{gw_address}}`
- Delete route rule:
`sudo route del -net {{ip_address}} netmask {{netmask_address}} dev {{gw_address}}`