@
neroanelli 没错,就是多 wan 策略路由
是在路由下的 PC 运行的 traceroute ,路由表等结果如下:(话说 V2EX 怎么传图。。。)
-----------------------------------------------------
table 250:
admin@NETGEAR-2FE8:/jffs/scripts# ip route show table 250
default via 192.168.1.1 dev vlan3
-----------------------------------------------------
ip route:
admin@NETGEAR-2FE8:/jffs/scripts# ip ro
192.168.1.1 dev vlan3 scope link #联通二级路由
116.227.88.1 dev ppp0 proto kernel scope link src
116.227.88.xxx #电信拨号公网 IP
192.168.1.0/24 dev vlan2 proto kernel scope link src 192.168.1.4 #电信 wan 口 IP
192.168.1.0/24 dev vlan3 proto kernel scope link src 192.168.1.5 #联通 wan 口 IP
192.168.8.0/24 dev br0 proto kernel scope link src 192.168.8.1 #路由器 IP
127.0.0.0/8 dev lo scope link
default via 116.227.88.1 dev ppp0
default via 192.168.1.1 dev vlan2 metric 1
-----------------------------------------------------
iptables:
admin@NETGEAR-2FE8:/jffs/scripts# iptables -L -t mangle
Chain PREROUTING (policy ACCEPT )
target prot opt source destination
MARK all -- anywhere
116.227.88.xxx MARK set 0xb400
MARK all -- anywhere anywhere ! match-set CHN dst MARK set 0x1
-----------------------------------------------------
ip rules:
admin@NETGEAR-2FE8:/jffs/scripts# ip rule
0: from all lookup local
32765: from all fwmark 0x1 lookup 250
32766: from all lookup main
32767: from all lookup default
-----------------------------------------------------
Traceroute -
163.comC:\Users\xxx>tracert -d
www.163.com通过最多 30 个跃点跟踪
到
163.xdwscache.glb0.lxdns.com [114.80.143.158] 的路由:
1 <1 毫秒 <1 毫秒 <1 毫秒 192.168.8.1
2 96 ms 218 ms 194 ms 116.227.88.1
3 5 ms 6 ms 3 ms 124.74.227.129
4 7 ms 3 ms 3 ms 124.74.215.101
.....
-----------------------------------------------------
C:\Users\xxx>tracert -d
www.microsoft.com通过最多 30 个跃点跟踪
到
e10088.ca.s.tl88.net [23.53.200.154] 的路由:
1 <1 毫秒 <1 毫秒 <1 毫秒 192.168.8.1
2 * * * 请求超时。
3 * * * 请求超时。
4 * * * 请求超时。
......
-----------------------------------------------------
试了你建议的方案,结果还是一样 >_< 希望这个输出能有用。