This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Load Balancing over two ISPs

Is astaro capable of load balancing over two ISPs. Currently have another linux system set up as a load balancing router over my two connections. However, I would rather have astaro do it if possible. Anyone know if this is possible and if so, how? Thanks
CP


This thread was automatically locked due to age.
Parents Reply Children
  • I guess, the down side to a nice web interface is waiting forever for nice features to be added that can be accomplished with 10 command line entries.

      ip route add $gate-1 dev eth0 src $addy-2 table $rtable1
      ip route add default via $gate-1 table $rtable1
      ip route add $gate-2 dev eth1 src $addy-1 table $rtable2
      ip route add default via $gate-2 table $rtable2
      ip route add $gate-1 dev eth0 src $addy-2
      ip route add $gate-2 dev eth1 src $addy-1
              ip route add default via $gate-1
              ip rule add from $addy-2 table $rtable1
      ip rule add from $addy-1 table $rtable2
      ip route add default scope global nexthop via $gate-1 dev eth0 weight 1 \
       nexthop via $gate-2 dev eth1 weight 1

    I guess there was no point to post that, but maybe someone is interest. 
    Thanks for the reply anyway[:)]
  • Interesting. If ASL would let us add multiple routes, then it would work.  It seems so easy!  [;)]
  • So add that to routes.local and let us know if it works...