1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 20:02:09 +02:00
tldr/pages/osx/route.md
Vítor Henrique 5edbf734fb
pages*: improve page descriptions (#12558)
* pages*: improve page descriptions

* ical: improve page description

* cockpit-desktop: remove unneeded word from page description

* nc: improve description wording

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-04-25 19:58:21 -03:00

29 lines
758 B
Markdown

# route
> Manually manipulate the routing tables.
> Requires root privileges.
> More information: <https://keith.github.io/xcode-man-pages/route.8.html>.
- Add a route to a destination through a gateway:
`sudo route add "{{destination_ip_address}}" "{{gateway_address}}"`
- Add a route to a /24 subnet through a gateway:
`sudo route add "{{subnet_ip_address}}/24" "{{gateway_address}}"`
- Run in test mode (does not do anything, just print):
`sudo route -t add "{{destination_ip_address}}/24" "{{gateway_address}}"`
- Remove all routes:
`sudo route flush`
- Delete a specific route:
`sudo route delete "{{destination_ip_address}}/24"`
- Lookup and display the route for a destination (hostname or IP address):
`sudo route get "{{destination}}"`