Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
linux:routing [2006/10/25 23:06] a |
linux:routing [2009/05/25 00:35] (current) |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| tweak linux [[: | tweak linux [[: | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | ===== Source routing .. ===== | ||
| + | |||
| + | ip route add x.x.x.x/26 dev vlan501 src x.x.x.2 table link1 | ||
| + | ip route add default via x.x.x.1 table link1 | ||
| + | ip route add z.z.z.0/25 dev vlan2510 src z.z.z.20 table link2 | ||
| + | ip route add default via z.z.z.z.1 table link2 | ||
| + | |||
| + | ip route add x.x.x.0/26 dev vlan501 src x.x.x.2 | ||
| + | ip route add z.z.z.0/25 dev vlan2510 src z.z.z.20 | ||
| + | |||
| + | ip route add default via x.x.x.x.1 | ||
| + | |||
| + | ip rule add from x.x.x.2 table link1 | ||
| + | ip rule add from z.z.z.20 table link2 | ||
| + | |||
| + | to create rule that covers the whole interface (or even per port) and inbound traffic | ||
| + | |||
| + | <note important> | ||
| + | |||
| + | iptables -t mangle -I PREROUTING -i vlan501 -j MARK --set-mark 0x1 | ||
| + | iptables -t mangle -I PREROUTING -i vla2510 -j MARK --set-mark 0x2 | ||
| + | ip rule add fwmark 0x1 table table link1 | ||
| + | ip rule add fwmark 0x2 table table link2 | ||
| + | |||
| + | |||
| + | ===== same-alternative method ===== | ||
| + | |||
| + | ip route add 87.224.167.g1 dev eth1 table ETH1 | ||
| + | ip route add default via 87.224.167.g1 dev eth1 table ETH1 | ||
| + | ip route add 212.49.121.g2 dev eth3 table ETH3 | ||
| + | ip route add default via 212.49.121.g2 dev eth3 table ETH3 | ||
| + | | ||
| + | | ||
| + | |||
| + | ip rule add fwmark 1 pri 100 table ETH3 | ||
| + | |||
| + | | ||
| + | |||
| + | echo 0 > / | ||
| + | |||
| + | ip rule add from 87.224.167.add1 pri 200 table ETH1 | ||
| + | ip rule add from 212.49.121.addr2 pri 250 table ETH3 | ||
| + | |||

