添加网段路由,想要只显示U
route add -net 192.168.1.0 netmask 255.255.255.0 dev ens192
[root@ht23 k8snode]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 ens192
表示192.168.1.0/24网段能通过
添加主机路由,显示UH
route add -host 192.168.1.1 dev ens192 //添加成功,不需要指定掩码注意
[root@ht23 k8snode]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.1 0.0.0.0 255.255.255.255 UH 0 0 0 ens192
//显示UH,表示主机192.168.1.1这台机器,可以被ens192网卡转发出去.
添加网关路由,显示UG
[root@etcd2 system]#route add default gw 10.129.55.1等同于
[root@etcd2 system]#route add -net 0.0.0.0 netmask 0.0.0.0 gw 10.129.55.1
[root@etcd2 system]#route del default gw 10.129.55.1
[root@etcd2 system]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.129.55.1 0.0.0.0 UG 0 0 0 ens192
//表示去往任何网段的数据包即所有目的地的数据包由网关10.129.55.1通过网卡ens192来转发
//添加了一个网关 ,Flags:UG