Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Linux Virtual Server: Users

[lvs-users] [ANNOUNCE] Keepalived 1.1.14

 

 

Linux Virtual Server users RSS feed   Index | Next | Previous | View Threaded


acassen at freebox

Sep 13, 2007, 9:21 AM

Post #1 of 4 (459 views)
Permalink
[lvs-users] [ANNOUNCE] Keepalived 1.1.14

Hi guys !!!!

wasup here :)

I have just found a little time to merge last pending patches (YES !!!
damned sorry for long delay).

jump to www.keepalived.org to download this brandh new code.

ChangeLog for this release is :

2007-09-13 Alexandre Cassen <acassen[at]linux-vs.org>
* keepalived-1.1.14 released.
* Shinji Tanaka, <stanaka at hatena.ne.jp> extended parsing
framework to support "include" directives. For more
informations and documentation please refer to Shinji
website :
http://misccs.dyndns.org/index.php?keepalived%20include%20patch
* Tobias Klausmann, <klausman at schwarzvogel.de> add error loggin
while parsing configuration file.
* Merged patches from rpmforge.net on Makefile and redhat
specfile.
* Create a goodies directory to store nice scripts received from
users. Add Steve Milton (milton AT isomedia.com) arpreset script
to delete a single ARP entry from a CISCO router.
* VRRP : David Woodhouse, <dwmw2 at redhat.com> fixed vrrp_arp
includes.
* VRRP : Pierre-Yves Ritschard, <pyr at spootnik.org> fixed
negative
weights in script.
* VRRP : Michael Smith, <msmith at cbnco.com> extended
virtual_ipaddress setting to support Old-style Linux interface
aliases like eth0:1.
* VRRP : Ward Wouts, <ward.wouts at gmail.com> add support to
vrrp_script logging.

have fun,
Alexandre

_______________________________________________
LinuxVirtualServer.org mailing list - lvs-users[at]LinuxVirtualServer.org
Send requests to lvs-users-request[at]LinuxVirtualServer.org
or go to http://lists.graemef.net/mailman/listinfo/lvs-users


thias at spam

Sep 13, 2007, 9:32 AM

Post #2 of 4 (426 views)
Permalink
Re: [lvs-users] [ANNOUNCE] Keepalived 1.1.14 [In reply to]

Alexandre Cassen wrote :

> 2007-09-13 Alexandre Cassen <acassen[at]linux-vs.org>
> * keepalived-1.1.14 released.
> * Shinji Tanaka, <stanaka at hatena.ne.jp> extended parsing
> framework to support "include" directives. For more
> informations and documentation please refer to Shinji
> website :
> http://misccs.dyndns.org/index.php?keepalived%20include%20patch

My oh my! You just made my day! I've got a new setup which has lots of
redundant sections in keepalived.conf which I'll now be able to split
out... much easier to maintain :-)

> * Tobias Klausmann, <klausman at schwarzvogel.de> add error loggin
> while parsing configuration file.
> * Merged patches from rpmforge.net on Makefile and redhat
> specfile.
> * Create a goodies directory to store nice scripts received from
> users. Add Steve Milton (milton AT isomedia.com) arpreset script
> to delete a single ARP entry from a CISCO router.
> * VRRP : David Woodhouse, <dwmw2 at redhat.com> fixed vrrp_arp
> includes.
> * VRRP : Pierre-Yves Ritschard, <pyr at spootnik.org> fixed
> negative
> weights in script.
> * VRRP : Michael Smith, <msmith at cbnco.com> extended
> virtual_ipaddress setting to support Old-style Linux interface
> aliases like eth0:1.
> * VRRP : Ward Wouts, <ward.wouts at gmail.com> add support to
> vrrp_script logging.

Really, thanks a lot! I'll update the Fedora and EPEL packages.

Matthias

--
Clean custom Red Hat Linux rpm packages : http://freshrpms.net/
Fedora release 7 (Moonshine) - Linux kernel 2.6.22.5-71.fc7
Load : 0.38 0.41 0.45

_______________________________________________
LinuxVirtualServer.org mailing list - lvs-users[at]LinuxVirtualServer.org
Send requests to lvs-users-request[at]LinuxVirtualServer.org
or go to http://lists.graemef.net/mailman/listinfo/lvs-users


thias at spam

Sep 13, 2007, 10:28 AM

Post #3 of 4 (427 views)
Permalink
Re: [lvs-users] [ANNOUNCE] Keepalived 1.1.14 [In reply to]

Matthias Saou wrote :

> Alexandre Cassen wrote :
>
> > 2007-09-13 Alexandre Cassen <acassen[at]linux-vs.org>
> > * keepalived-1.1.14 released.
> > * Shinji Tanaka, <stanaka at hatena.ne.jp> extended parsing
> > framework to support "include" directives. For more
> > informations and documentation please refer to Shinji
> > website :
> > http://misccs.dyndns.org/index.php?keepalived%20include%20patch
>
> My oh my! You just made my day! I've got a new setup which has lots of
> redundant sections in keepalived.conf which I'll now be able to split
> out... much easier to maintain :-)

Ouch. Actually this doesn't seem to be implemented in a way it can
achieve what I was hoping. I wanted to do something like :

On server 1 :

vrrp_instance foo {
state MASTER
priority 150
include vrrp-foo.conf
}

On server 2 :

vrrp_instance foo {
state BACKUP
priority 50
include vrrp-foo.conf
}

Then be able to share/sync the vrrp-foo.conf file between the two
servers. For the "virtual_server" sections this will work since there is
nothing specific inside them, so it's already very helpful, but ideally
I wanted to have the above vrrp-foo.conf look like this :


authentication {
auth_type PASS
auth_pass blablabla
}
virtual_ipaddress {
! IP addresses...
}
}

virtual_server 10.10.10.10 80 {
delay_loop 6
lb_algo wrr
lb_kind NAT
persistence_timeout 60
persistence_granularity 255.255.255.0
protocol TCP
ha_suspend

real_server 10.10.0.1 80 {
! etc...
}


Maybe a little extreme (hackish? :-)), but it would allow me to
"externalize" everything that is common to both servers and only have
very short different files.

Matthias

--
Clean custom Red Hat Linux rpm packages : http://freshrpms.net/
Fedora release 7 (Moonshine) - Linux kernel 2.6.22.5-71.fc7
Load : 0.50 0.48 0.53

_______________________________________________
LinuxVirtualServer.org mailing list - lvs-users[at]LinuxVirtualServer.org
Send requests to lvs-users-request[at]LinuxVirtualServer.org
or go to http://lists.graemef.net/mailman/listinfo/lvs-users


Alexandre.Cassen at free

Sep 13, 2007, 11:32 AM

Post #4 of 4 (426 views)
Permalink
Re: [lvs-users] [ANNOUNCE] Keepalived 1.1.14 [In reply to]

Hi Matthias,

maybe you can request this feature to Shinji I will be glad to merge
then :) because I dont have too much time.

regards,
Alexandre


Matthias Saou a écrit :
> Matthias Saou wrote :
>
>
>> Alexandre Cassen wrote :
>>
>>
>>> 2007-09-13 Alexandre Cassen <acassen[at]linux-vs.org>
>>> * keepalived-1.1.14 released.
>>> * Shinji Tanaka, <stanaka at hatena.ne.jp> extended parsing
>>> framework to support "include" directives. For more
>>> informations and documentation please refer to Shinji
>>> website :
>>> http://misccs.dyndns.org/index.php?keepalived%20include%20patch
>>>
>> My oh my! You just made my day! I've got a new setup which has lots of
>> redundant sections in keepalived.conf which I'll now be able to split
>> out... much easier to maintain :-)
>>
>
> Ouch. Actually this doesn't seem to be implemented in a way it can
> achieve what I was hoping. I wanted to do something like :
>
> On server 1 :
>
> vrrp_instance foo {
> state MASTER
> priority 150
> include vrrp-foo.conf
> }
>
> On server 2 :
>
> vrrp_instance foo {
> state BACKUP
> priority 50
> include vrrp-foo.conf
> }
>
> Then be able to share/sync the vrrp-foo.conf file between the two
> servers. For the "virtual_server" sections this will work since there is
> nothing specific inside them, so it's already very helpful, but ideally
> I wanted to have the above vrrp-foo.conf look like this :
>
>
> authentication {
> auth_type PASS
> auth_pass blablabla
> }
> virtual_ipaddress {
> ! IP addresses...
> }
> }
>
> virtual_server 10.10.10.10 80 {
> delay_loop 6
> lb_algo wrr
> lb_kind NAT
> persistence_timeout 60
> persistence_granularity 255.255.255.0
> protocol TCP
> ha_suspend
>
> real_server 10.10.0.1 80 {
> ! etc...
> }
>
>
> Maybe a little extreme (hackish? :-)), but it would allow me to
> "externalize" everything that is common to both servers and only have
> very short different files.
>
> Matthias
>
>


_______________________________________________
LinuxVirtualServer.org mailing list - lvs-users[at]LinuxVirtualServer.org
Send requests to lvs-users-request[at]LinuxVirtualServer.org
or go to http://lists.graemef.net/mailman/listinfo/lvs-users

Linux Virtual Server users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.