Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
linux:networking:loadbalancing [2012/05/16 19:07] 188.143.232.12 NfbxQFxeFIasyEBJ |
linux:networking:loadbalancing [2012/05/17 08:38] (current) greebo old revision restored |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | Nice job.The only thing: I would put show output isntead of commands | + | ====== Load balancing / linux way ====== |
+ | |||
+ | See also: | ||
+ | * [[http:// | ||
+ | * http:// | ||
+ | * http:// | ||
+ | |||
+ | |||
+ | echo "11 line1" >> / | ||
+ | echo "12 line2" >> / | ||
+ | |||
+ | ip route add1.2.3.0/ | ||
+ | ip route add default via1.2.3.5 table line1 | ||
+ | |||
+ | ip route add 192.168.6.0/ | ||
+ | ip route add default via 192.168.6.254 table line2 | ||
+ | |||
+ | ip rule add from1.2.3.6 table line1 | ||
+ | ip rule add from 192.168.6.4 table line2 | ||
+ | |||
+ | ip route add default scope global nexthop via 1.2.3.5 dev eth0 weight 1 nexthop via 192.168.6.254 dev eth1 weight 1 | ||
+ | |||
+ | |||
+ | //pls change ips accordingly. and add these to rc.local file// |