根據源網不同介面輸出流量

根據源網不同介面輸出流量

這是我目前網路的圖,http://s1.postimg.org/5689b415b/actual_diagram.png

客觀的

將 172.16.0.x/18 子網路流量路由到 ADSL 連接

您認為這種方法怎麼樣,它會起作用嗎?我目前無法設定測試環境。

區域網路網關

$INTERFACE = eth1

iptables -t mangle -A INPUT -i $INTERFACE \
                             -p tcp --dport 80 \
                             -j MARK --set-mark 0x1

iptables -t mangle -A INPUT -i $INTERFACE \
                             -p tcp --dport 443 \
                             -j MARK --set-mark 0x1

網際網路閘關

建立網路流量表

echo 100 web-traffic >> /etc/iproute2/rt_tables

建立路由規則

ip rule add from all fwmark 0x1 table web-traffic

設定網路流量表以正確路由

ip route add default dev eth0 table web-traffic

透過其他介面路由其他所有內容

ip route add default dev eth1

相關內容