From 2a4e2baf7a31929c14cdf6cbf1ce2e01a186e905 Mon Sep 17 00:00:00 2001 From: Stig Thormodsrud Date: Sat, 12 Jan 2008 12:36:20 -0800 Subject: Add vrrp sync group and fix authentication display --- scripts/keepalived/VyattaKeepalived.pm | 2 +- scripts/keepalived/vyatta-keepalived.pl | 30 ++++++++++++++++++++-- .../vrrp/vrrp-group/node.tag/sync-group/node.def | 2 ++ 3 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 templates/interfaces/ethernet/node.tag/vrrp/vrrp-group/node.tag/sync-group/node.def diff --git a/scripts/keepalived/VyattaKeepalived.pm b/scripts/keepalived/VyattaKeepalived.pm index 13512b42..ae7a831e 100755 --- a/scripts/keepalived/VyattaKeepalived.pm +++ b/scripts/keepalived/VyattaKeepalived.pm @@ -174,7 +174,7 @@ sub vrrp_get_config { if (!defined $advert_int) { $advert_int = 1; } - $config->setLevel("interfaces ethernet $intf vrrp authentication"); + $config->setLevel("interfaces ethernet $intf vrrp vrrp-group $group authentication"); my $auth_type = $config->returnOrigValue("type"); if (!defined $auth_type) { $auth_type = "none"; diff --git a/scripts/keepalived/vyatta-keepalived.pl b/scripts/keepalived/vyatta-keepalived.pl index e9df03df..7555d183 100755 --- a/scripts/keepalived/vyatta-keepalived.pl +++ b/scripts/keepalived/vyatta-keepalived.pl @@ -34,6 +34,7 @@ use Getopt::Long; use strict; use warnings; +my %HoA_sync_groups; sub keepalived_get_values { my ($intf) = @_; @@ -46,6 +47,7 @@ sub keepalived_get_values { $config->setLevel("interfaces ethernet $intf vrrp vrrp-group"); my @groups = $config->listNodes(); foreach my $group (@groups) { + my $vrrp_instance = "vyatta-$intf-$group"; $config->setLevel("interfaces ethernet $intf vrrp vrrp-group $group"); my @vips = $config->returnValues("virtual-address"); if (scalar(@vips) == 0) { @@ -64,6 +66,11 @@ sub keepalived_get_values { if (!defined $advert_int) { $advert_int = 1; } + my $sync_group = $config->returnValue("sync-group"); + if (defined $sync_group && $sync_group ne "") { + push @{ $HoA_sync_groups{$sync_group} }, $vrrp_instance; + } + $config->setLevel("interfaces ethernet $intf vrrp vrrp-group $group authentication"); my $auth_type = $config->returnValue("type"); my $auth_pass; @@ -76,12 +83,12 @@ sub keepalived_get_values { } } - $output .= "vrrp_instance vyatta-$intf-$group \{\n"; + $output .= "vrrp_instance $vrrp_instance \{\n"; if ($preempt eq "false") { $output .= "\tstate BACKUP\n"; } else { $output .= "\tstate MASTER\n"; - } + } $output .= "\tinterface $intf\n"; $output .= "\tvirtual_router_id $group\n"; $output .= "\tpriority $priority\n"; @@ -111,6 +118,21 @@ sub keepalived_get_values { return $output; } +sub vrrp_get_sync_groups { + + my $output = ""; + + foreach my $sync_group ( keys %HoA_sync_groups) { + $output .= "vrrp_sync_group $sync_group \{\n\tgroup \{\n"; + foreach my $vrrp_instance ( 0 .. $#{ $HoA_sync_groups{$sync_group} } ) { + $output .= "\t\t$HoA_sync_groups{$sync_group}[$vrrp_instance]\n"; + } + $output .= "\t\}\n\}\n"; + } + + return $output; +} + sub vrrp_update_config { my $output; @@ -129,6 +151,10 @@ sub vrrp_update_config { } if ($vrrp_instances > 0) { + my $sync_groups = vrrp_get_sync_groups(); + if (defined $sync_groups && $sync_groups ne "") { + $output = $sync_groups . $output; + } my $conf_file = VyattaKeepalived::get_conf_file(); keepalived_write_file($conf_file, $output); VyattaKeepalived::restart_daemon($conf_file); diff --git a/templates/interfaces/ethernet/node.tag/vrrp/vrrp-group/node.tag/sync-group/node.def b/templates/interfaces/ethernet/node.tag/vrrp/vrrp-group/node.tag/sync-group/node.def new file mode 100644 index 00000000..5fa24b92 --- /dev/null +++ b/templates/interfaces/ethernet/node.tag/vrrp/vrrp-group/node.tag/sync-group/node.def @@ -0,0 +1,2 @@ +type: txt +help: "Add this vrrp group to a sync group" -- cgit v1.2.3