snippetbashTip
route — Show and manipulate the route table. More information: <https://manned.org/route>.
Viewed 0 times
thecommandrouteshowandmanipulatecli
Problem
How to use the
route command: Show and manipulate the route table. More information: <https://manned.org/route>.Solution
route — Show and manipulate the route table. More information: <https://manned.org/route>.Display the information of route table:
route -nAdd 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}}Code Snippets
Display the information of route table
route -nAdd 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}}Context
tldr-pages: common/route
Revisions (0)
No revisions yet.