I have multiple broadband connections that I was hoping to load balance with my WRT54GS...
I know I can configure one (or more) of the LAN ports as additional WAN ports (just make them separate vlans).
The thing I don't know is what OpenWRT's "ip" command accepts...
I would *think* a command like the following would work:
ip route add default scope global equalize nexthop via xxx.xxx.xxx.xxx dev vlan1 nexthop via yyy.yyy.yyy.yyy dev vlan2
and
iptables -t nat -A POSTROUTING -s 192.168.0.1/24 -o vlan1 -j MASQUARADE
iptables -t nat -A POSTROUTING -s 192.168.0.1/24 -o vlan2 -j MASQUARADE
This *should* load balance outgoing connections.
Can anyone verify if this would work / fail miserably?
