summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Thormodsrud <stig@vyatta.com>2008-01-12 12:36:20 -0800
committerStig Thormodsrud <stig@vyatta.com>2008-01-12 12:36:20 -0800
commit2a4e2baf7a31929c14cdf6cbf1ce2e01a186e905 (patch)
tree9d9bdcf6d8d212643862538eaa0210d4a0ee4202
parentd96ba6cb41ca96daa620751e92ed98518fc2a7da (diff)
downloadvyatta-cfg-system-2a4e2baf7a31929c14cdf6cbf1ce2e01a186e905.tar.gz
vyatta-cfg-system-2a4e2baf7a31929c14cdf6cbf1ce2e01a186e905.zip
Add vrrp sync group and fix authentication display
-rwxr-xr-xscripts/keepalived/VyattaKeepalived.pm2
-rwxr-xr-xscripts/keepalived/vyatta-keepalived.pl30
-rw-r--r--templates/interfaces/ethernet/node.tag/vrrp/vrrp-group/node.tag/sync-group/node.def2
3 files changed, 31 insertions, 3 deletions
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"