HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

route — Show and manipulate the route table. More information: <https://manned.org/route>.

Submitted by: @import:tldr-pages··
0
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 -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}}

Code Snippets

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

Context

tldr-pages: common/route

Revisions (0)

No revisions yet.