LVS
lvs-users
Google
 
Web LinuxVirtualServer.org

Re: [SSI] new HA-LVS daemon

To: Brian.J.Watson@xxxxxx
Subject: Re: [SSI] new HA-LVS daemon
Cc: aneesh.kumar@xxxxxxxxxxx, "Brian J. Watson" <Brian.J.Watson@xxxxxx>, ci-linux-devel@xxxxxxxxxxxxxxxxxxxxx, ssic-linux-devel <ssic-linux-devel@xxxxxxxxxxxxxxxxxxxxx>, keepalived-devel@xxxxxxxxxxxxxxxxxxxxx, lvs-users@xxxxxxxxxxxxxxxxxxxxxx
From: "Alexandre CASSEN" <alexandre.cassen@xxxxxxxxxxxxxx>
Date: Wed, 19 Jun 2002 13:53:00 +0200
> Hi Aneesh,
>
> >I have put the files at
> >http://ssic-linux.sourceforge.net/contrib/ha-lvs.tar.gz .
> >
> >README.networking is also a part of the above tar.gz . If anybody need
> >README.networking I can  do a separate check-in of that file alone
>
> ??? why not using directly Keepalived instead of backporting code to
> another tool ? since we have together added support to CI/SSI ?
>
> I don t understand :/
>
> regards,
> Alexandre


Re, bellow, an example of Keepalived config for use with SSI :

! Configuration File for keepalived
! CI-LINUX configuration sample

global_defs {
   notification_email {
     lvs-alert@xxxxxxxxxx
   }
   notification_email_from email@xxxxxxxxxx
   smtp_server 192.168.200.1
   smtp_connect_timeout 30
   lvs_id CI-LNX
}

virtual_server 192.168.200.10 80 {
    delay_loop 10
    lb_algo wrr
    lb_kind DR
    protocol TCP

    sorry_server 192.168.200.200 80

    real_server 192.168.200.2 80 {
        weight 1
        CI-LINUX
    }

    real_server 192.168.200.3 80 {
        weight 1
        CI-LINUX
    }
    real_server 192.168.200.4 80 {
        weight 1
        CI-LINUX
    }
    real_server 192.168.200.5 80 {
        weight 1
        CI-LINUX
    }
}

Regards,
Alexandre



<Prev in Thread] Current Thread [Next in Thread>
  • Re: [SSI] new HA-LVS daemon, Alexandre CASSEN <=