Files
cheatsheet-tldr/tldr/route
2025-04-23 00:19:06 +00:00

22 lines
454 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# route
> Show and manipulate 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}}`