The method of adding static Route in linux
Static routes can be added through the route add command, as follows:
1. Add rout
Route add-net 192.168.0.0 gw 192.168.0.1route add 24 gw 192.168.0.1route add-host 192.168.1.1 dev 192.168.0.1
2. Delete a route
Route del-net 192.168.0.0Unip 24 gw 192.168.0.1
Parameter description:
Add adds routing
Del delete route
-net sets the route to a network segment
-host sets the route to a host
Gw egress Gateway IP address
Dev egress Gateway physical device name
3. Add default route
Route add default gw 192.168.0.1
One default route is enough.
4. View the routing table
Route-n
These are the details of how to add static routes to the linux system, please pay attention to other related articles!