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

361 B

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}}