1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
#!/usr/bin/env perl
#
# **** License ****
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# This code was originally developed by Vyatta, Inc.
# Portions created by Vyatta are Copyright (C) 2007-2012 Vyatta, Inc.
# All Rights Reserved.
#
# Author: John Southworth
# Date: May 2012
# Description: Process operational data from keepalived
#
# **** End License ****
#
use strict;
use lib "/opt/vyatta/share/perl5";
use Getopt::Long;
use Vyatta::VRRP::OPMode;
use Sort::Versions;
use v5.10;
my ($show, $intf, $vrid);
GetOptions("show=s" => \$show,
"intf=s" => \$intf,
"vrid=s" => \$vrid
);
sub list_vrrp_intf {
my $intf = shift;
my $hash = {};
process_data $hash;
if ($intf) {
printf "%s\n", join " ", sort versioncmp keys(%{$hash->{instances}->{$intf}});
} else {
printf "%s\n", join " ", sort versioncmp keys(%{$hash->{instances}});
}
}
sub list_vrrp_sync_groups {
my $hash = {};
process_data $hash;
printf "%s\n", join " ", sort versioncmp keys(%{$hash->{'sync-groups'}});
}
sub show_vrrp_summary {
my ($intf, $vrid) = @_;
my $hash = {};
process_data $hash;
return if (check_intf($hash, $intf, $vrid));
print_summary $hash, $intf, $vrid;
}
sub show_vrrp_stats {
my ($intf, $vrid) = @_;
my $hash = {};
process_stats $hash;
return if (check_intf($hash, $intf, $vrid));
print_stats $hash, $intf, $vrid;
}
sub show_vrrp_detail {
my ($intf, $vrid) = @_;
my $hash = {};
process_data $hash;
return if (check_intf($hash, $intf, $vrid));
print_detail $hash, $intf, $vrid;
}
sub show_vrrp_sync_groups {
my $sync = shift;
my $hash = {};
process_data $hash;
if ($sync && !exists($hash->{'sync-groups'}->{$sync})){
print "Sync-group: $sync does not exist\n";
return;
}
print_sync $hash, $intf;
}
given ($show) {
when ('summary') {
show_vrrp_summary $intf, $vrid;
}
when ('detail') {
show_vrrp_detail $intf, $vrid;
}
when ('stats') {
show_vrrp_stats $intf, $vrid;
}
when ('sync') {
show_vrrp_sync_groups $intf;
}
when ('interface') {
list_vrrp_intf $intf;
}
when ('syncs') {
list_vrrp_sync_groups;
}
default {
exit;
}
}
|