Linux路由

Linux 内核的路由种类

主机路由

路由表中指向单个 IP 地址或主机名的路由记录,其 Flags 字段为 H。
对于 10.0.0.10 这个主机,通过网关 10.139.128.1 路由:

route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref   Use Iface
10.0.0.10       10.139.128.1    255.255.255.255 UGH   0      0        0 eth0
...

网络路由

主机可以到达的网络。 10.0.0.0/24 网络,通过网关 10.139.128.1 路由:

route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref   Use Iface
10.0.0.0        10.139.128.1    255.255.255.0   UG    0      0        0 eth0

默认路由

当目标主机的 IP 地址或网络不在路由表中时,数据包就被发送到默认路由(默认网关)上。默认路由的 Destination 是 default 或 0.0.0.0

route

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref   Use Iface
default         gateway         0.0.0.0         UG    0      0        0 eth0

route 命令

route 命令可以显示或设置 Linux 内核中的路由表,主要是静态路由。

对于局域网中的 Linux 主机,要想访问 Internet,需要将局域网的网关 IP 地址设置为这个主机的默认路由。在命令行中通过 route 命令添加的路由在网卡重启或机器重启后失效。可以在 /etc/rc.local 中添加 route 命令来保证路由设置永久有效。

选项:

[root@VM_139_74_centos ~]# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         gateway         0.0.0.0         UG    0      0        0 eth0
10.0.0.10       10.139.128.1    255.255.255.255 UGH   0      0        0 eth0

[root@VM_139_74_centos ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.139.128.1    0.0.0.0         UG    0      0        0 eth0

各列字段说明:

含义
Destination 目标网络或目标主机。Destination 为 default(0.0.0.0)时,表示这个是默认网关,所有数据都发到这个网关(这里是 10.139.128.1
Gateway 网关地址,0.0.0.0 表示当前记录对应的 Destination 跟本机在同一个网段,通信时不需要经过网关
Genmask Destination 字段的网络掩码,Destination 是主机时需要设置为 255.255.255.255,是默认路由时会设置为 0.0.0.0
Flags U 路由是活动的; H 目标是个主机; G 需要经过网关; R 恢复动态路由产生的表项; D 由路由的后台程序动态地安装; M 由路由的后台程序修改; ! 拒绝路由
Metric 路由距离,到达指定网络所需的中转数,是大型局域网和广域网设置所必需的 (不在Linux内核中使用。)
Ref 路由项引用次数 (不在Linux内核中使用。)
Use 此路由项被路由软件查找的次数
Iface 网卡名字,例如 eth0

参数:

route

Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default gateway 0.0.0.0 UG 0 0 0 eth0
10.0.0.10 10.139.128.1 255.255.255.255 UGH 0 0 0 eth0

route -n

Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.139.128.1 0.0.0.0 UG 0 0 0 eth0

各列字段说明:

含义
Destination 目标网络或目标主机。Destination 为 default(0.0.0.0)时,表示这个是默认网关,所有数据都发到这个网关(这里是 10.139.128.1
Gateway 网关地址,0.0.0.0 表示当前记录对应的 Destination 跟本机在同一个网段,通信时不需要经过网关
Genmask Destination 字段的网络掩码,Destination 是主机时需要设置为 255.255.255.255,是默认路由时会设置为 0.0.0.0
Flags U 路由是活动的; H 目标是个主机; G 需要经过网关; R 恢复动态路由产生的表项; D 由路由的后台程序动态地安装; M 由路由的后台程序修改; ! 拒绝路由
Metric 路由距离,到达指定网络所需的中转数,是大型局域网和广域网设置所必需的 (不在Linux内核中使用。)
Ref 路由项引用次数 (不在Linux内核中使用。)
Use 此路由项被路由软件查找的次数
Iface 网卡名字,例如 eth0

添加路由 add

可以添加一条可用路由,或添加一条要屏蔽的路由。

添加路由

添加主机路由

添加主机路由时,需要指定网络和主机,此时需要设置 netmask255.255.255.255

route add -net 10.0.0.10 netmask 255.255.255.255 gw 10.10.11.1 dev eth0
route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref   Use Iface
10.0.0.10       10.139.128.1    255.255.255.255 UGH   0      0        0 eth0
...

添加网络路由

添加网络路由时,只需指定网络,通过 netmask 设置掩码长度:

route add -net 10.0.0.0 netmask 255.255.255.0 gw 10.139.128.1 dev eth0
route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref   Use Iface
10.0.0.0        10.139.128.1    255.255.255.0   UG    0      0        0 eth0
...

添加添加同一个局域网的主机

不指定 gw 选项时,添加的路由记录不使用网关:

route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref   Use Iface
224.0.0.0       0.0.0.0         240.0.0.0       U     0      0        0 eth0
...

添加屏蔽路由

route add -net 224.0.0.0 netmask 240.0.0.0 reject
route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref   Use Iface
224.0.0.0       -               240.0.0.0       !     0      -        0 -
...

删除路由记录

跟添加路由类似,可以删除一条可用路由,或删除一条屏蔽的路由。

删除可用路由

route del -net 224.0.0.0 netmask 240.0.0.0

删除屏蔽的路由

route del -net 224.0.0.0 netmask 240.0.0.0 reject1

删除和添加设置默认网关

添加或删除默认网关时,Linux 会自动检查网关的可用性

route add default gw 192.168.1.1

SIOCADDRT: Network is unreachable

route del default gw 192.168.1.1

SIOCDELRT: No such process