到特定接口的 ip 路由

到特定接口的 ip 路由

我正在尝试弄清楚如何让所有流量到达 10.8.78.* 以使用接口 ppp0 进行连接(如果可用),我该如何正确处理这个问题(centos),当 pp0 没有启动时,我可以回到 eth0 吗?

/sbin/route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
69.19.219.69    0.0.0.0         255.255.255.255 UH    0      0        0 ppp0
10.0.1.0        0.0.0.0         255.255.255.0   U     0      0        0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 eth0
0.0.0.0         10.0.1.1        0.0.0.0         UG    0      0        0 eth0

答案1

route add -net 10.8.78.0 netmask 255.255.255.0 gw ppp0 metric 1
route add -net 10.8.78.0 netmask 255.255.255.0 gw eth0 metric 10

我认为这应该可行

您可能需要将 0.0.0.0/0 网络的度量更改为 20

相关内容