如果它們都是預設網關,則使用哪個網路介面?

如果它們都是預設網關,則使用哪個網路介面?

在下面的範例中,我在我的 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 

相關內容