busybox 集成iproute, iprule即可
ip route add 192.168.31.0/24 dev vth0 src 192.168.31.139 table 252 ip route add default via 192.168.31.1 src 192.168.31.139 table 252 ip route add 192.168.31.1 dev vth0 src 192.168.31.139 table 252 ip rule add fwmark 3 table 252 ip route flush cache iptables -A PREROUTING -t mangle -i br-lan -s 192.168.1.123 -j MARK --set-mark 3
针对双wan策略路由
上面的意思是
在路由表252(表号)中,配置号路由出口以及默认路由
然后添加规则,所有标记为3数据包的都走252这张表
评论