封包透過錯誤的介面路由

封包透過錯誤的介面路由

這是後續ip 規則不應該擊敗 ip 路由

我已經按照上一個問題配置了一切。但...

跑步:

$ ip route get 10.10.10.10 from 10.0.0.13 iif test-interface
10.10.10.10 from 10.0.0.13 via 10.10.10.1 dev eth1
cache  iif test-interface

tshark -i eth1不顯示任何資料包,但從tshark -i test-interface10.0.0.13 向 10.10.10.10 發送流量時顯示資料包。

怎麼辦……真的輸了……

輸出ip route ls

default via 10.8.23.254 dev eth1
10.10.10.10 via 10.8.23.254 dev eth1
10.0.0.0/14 dev test-interface  proto kernel  scope link  src 10.0.0.1

輸出ip rule ls

ip rule ls
0:  from all lookup local
10: from 10.0.0.0/14 to 10.10.10.10 lookup 1234
100:    from 10.0.0.1/14 lookup test-interface
32766:  from all lookup main
32767:  from all lookup default

輸出ip route show table 1234

default via 10.8.23.254 dev eth1
10.10.10.10 via 10.8.23.254 dev eth1

相關內容