如果它们都是默认网关,则使用哪个网络接口?

如果它们都是默认网关,则使用哪个网络接口?

在下面的示例中,我在我的 Linux 计算机上建立了以太网和 Wifi 接口。这是路线输出:

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.1.1     0.0.0.0         UG    0      0        0 mlan0
default         192.168.1.1     0.0.0.0         UG    0      0        0 eth0
192.168.1.0     *               255.255.255.0   U     0      0        0 eth0
192.168.1.0     *               255.255.255.0   U     0      0        0 mlan0

如果没有任何进一步的修改,内核将使用哪个接口在 192.168.1.x 网络上发送数据?

答案1

您可以使用命令简单地测试任何地址ip route get(请参阅 参考资料man ip-route)。例如

$ ip route get 192.168.1.99
192.168.1.99 dev eth0  src 192.168.1.0 

相关内容