diff options
-rwxr-xr-x | scripts/vyatta-show-snmp.pl | 87 | ||||
-rw-r--r-- | templates/show/snmp/community/node.def | 1 | ||||
-rw-r--r-- | templates/show/snmp/community/node.tag/host/node.def | 2 | ||||
-rw-r--r-- | templates/show/snmp/community/node.tag/host/node.tag/node.def | 3 | ||||
-rw-r--r-- | templates/show/snmp/community/node.tag/node.def | 3 | ||||
-rw-r--r-- | templates/show/snmp/node.def | 2 |
6 files changed, 83 insertions, 15 deletions
diff --git a/scripts/vyatta-show-snmp.pl b/scripts/vyatta-show-snmp.pl index 979234b..2346a6c 100755 --- a/scripts/vyatta-show-snmp.pl +++ b/scripts/vyatta-show-snmp.pl @@ -22,25 +22,84 @@ # use strict; use warnings; +use Getopt::Long; +use NetAddr::IP; -sub get_community { - my $snmpcfg = '/etc/snmp/snmpd.conf'; +my $SNMPDCFG = '/etc/snmp/snmpd.conf'; +my $SNMPSTATUS = '/usr/bin/snmpstatus'; + +# generate list of communities in configuration file +sub read_config { + my %community; + + open( my $cfg, '<', $SNMPDCFG ) + or die "Can't open $SNMPDCFG : $!\n"; - open (my $cfg, '<', $snmpcfg) - or return; - my $community; while (<$cfg>) { - next unless m/^r[ow]community (\w+)/; - $community = $1; - last; + chomp; + s/#.*$//; + my @cols = split; + next + unless ( $#cols > 0 + && ( $cols[0] eq 'rocommunity' || $cols[0] eq 'rwcommunity' ) ); + + my $addr = ( $#cols > 1 ) ? $cols[2] : "0.0.0.0/0"; + $community{ $cols[1] } = NetAddr::IP->new($addr); } close $cfg; - return $community; + + return \%community; +} + +# expand list of available communities for allowed: tag +sub show_all { + my $community = read_config(); + + print join( ' ', keys( %{$community} ) ), "\n"; + exit 0; } -my $community = get_community(); -die "No SNMP communities configured\n" - unless $community; +# check status of any accessible community on localhost +sub status_any { + my $cref = read_config(); + my %community = %{$cref}; + my $localhost = new NetAddr::IP('localhost'); + + die "No SNMP community's configured\n" + unless scalar(%community); + + foreach my $c ( keys %community ) { + my $addr = $community{$c}; + status( $c, $localhost->addr() ) if ( $addr->contains($localhost) ); + } + die "No SNMP community's accessible from ", $localhost->addr(), "\n"; +} + +# check status of one community +sub status { + my ( $community, $host ) = @_; + $host = 'localhost' unless defined($host); + + print "Status of SNMP community $community on $host\n"; + exec $SNMPSTATUS, '-v1', '-c', $community, $host; + die "Can't exec $SNMPSTATUS : $!"; +} + +sub usage { + print "usage: $0 [--community=name [--host=hostname]]\n"; + print " $0 --allowed\n"; + exit 1; +} + +my ( $host, $community, $allowed ); + +GetOptions( + "host=s" => \$host, + "community=s" => \$community, + "allowed" => \$allowed, +) or usage(); + +show_all() if ($allowed); +status( $community, $host ) if ( defined($community) ); +status_any(); -exec 'snmpstatus', '-c', $community, '-v', '1', 'localhost' - or die "Can't exec snmpstatus: $!"; diff --git a/templates/show/snmp/community/node.def b/templates/show/snmp/community/node.def new file mode 100644 index 0000000..48e7d1d --- /dev/null +++ b/templates/show/snmp/community/node.def @@ -0,0 +1 @@ +help: Show status of SNMP community diff --git a/templates/show/snmp/community/node.tag/host/node.def b/templates/show/snmp/community/node.tag/host/node.def new file mode 100644 index 0000000..ac7e559 --- /dev/null +++ b/templates/show/snmp/community/node.tag/host/node.def @@ -0,0 +1,2 @@ +help: Show status of SNMP on remote host + diff --git a/templates/show/snmp/community/node.tag/host/node.tag/node.def b/templates/show/snmp/community/node.tag/host/node.tag/node.def new file mode 100644 index 0000000..b20409d --- /dev/null +++ b/templates/show/snmp/community/node.tag/host/node.tag/node.def @@ -0,0 +1,3 @@ +help: Show status of SNMP on specified host +allowed: echo -n '<hostname> <x.x.x.x>' +run: ${vyatta_bindir}/vyatta-show-snmp.pl --community $4 --host $6 diff --git a/templates/show/snmp/community/node.tag/node.def b/templates/show/snmp/community/node.tag/node.def new file mode 100644 index 0000000..48aa6ad --- /dev/null +++ b/templates/show/snmp/community/node.tag/node.def @@ -0,0 +1,3 @@ +help: Show status of specified SNMP community +allowed: ${vyatta_bindir}/vyatta-show-snmp.pl --allowed +run: ${vyatta_bindir}/vyatta-show-snmp.pl --community="$4" diff --git a/templates/show/snmp/node.def b/templates/show/snmp/node.def index ea8ca47..98f4366 100644 --- a/templates/show/snmp/node.def +++ b/templates/show/snmp/node.def @@ -1,2 +1,2 @@ -help: Show SNMP status +help: Show status of SNMP on localhost run: ${vyatta_bindir}/vyatta-show-snmp.pl |