1.添加主机的路由

#route add -host 192.168.1.11 dev eth0
#route add -host 192.168.1.12 gw 192.168.1.1

2.添加到网络的路由

#route add -net 192.168.1.0/24 eth0
#route add -net 192.168.1.0/24 gw 192.168.1.1
#route add -net 192.168.1.0 netmask 255.255.255.0 eth0

3.添加默认网关

#route add default gw 192.168.2.1
#route add default gw 192.168.2.1 dev eth1

4.删除路由

#route del -net 192.168.1.0/24 gw 192.168.1.1
#route del -host 192.168.1.11 dev eth0

由以配置的路由重启后就失效,所以建议写在/etc/rc.local文件,实现开机自动配置

5.查看路由

[root@ansible ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.10.1    0.0.0.0         UG    100    0        0 ens33
172.17.0.0      0.0.0.0         255.255.0.0     U     0      0        0 docker0
192.168.10.0    0.0.0.0         255.255.255.0   U     100    0        0 ens33

第1条规则:表示默认路由,下一跳为192.168.10.1,从设备ens33出去
第2条规则:0.0.0.0表示直连路由,即所有通往172.17.0.0网段的请求,直接通过二层交换机通信
第3条规则:和第2条规则一样;