diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-identify-interface.pl | 2 | ||||
-rwxr-xr-x | scripts/vyatta-show-interfaces | 2 | ||||
-rw-r--r-- | scripts/vyatta-show-snmp-ifmib | 138 | ||||
-rwxr-xr-x | scripts/vyatta-show-snmp.pl | 87 | ||||
-rwxr-xr-x | scripts/yesno | 4 |
5 files changed, 215 insertions, 18 deletions
diff --git a/scripts/vyatta-identify-interface.pl b/scripts/vyatta-identify-interface.pl index 0170b68..1cfdb36 100755 --- a/scripts/vyatta-identify-interface.pl +++ b/scripts/vyatta-identify-interface.pl @@ -41,7 +41,7 @@ if ($cpid == 0) { # child print "Interface $intf should be blinking now.\n"; print "Press Enter to stop...\n"; - exec("/usr/sbin/ethtool -p $intf"); + exec("/sbin/ethtool -p $intf"); # not reachable exit 0; } else { diff --git a/scripts/vyatta-show-interfaces b/scripts/vyatta-show-interfaces index b49dbf7..1b0a156 100755 --- a/scripts/vyatta-show-interfaces +++ b/scripts/vyatta-show-interfaces @@ -106,7 +106,7 @@ _show_itf_stats () _show_itf_physical () { for eth ; do - sudo /usr/sbin/ethtool $eth + /sbin/ethtool $eth echo done } diff --git a/scripts/vyatta-show-snmp-ifmib b/scripts/vyatta-show-snmp-ifmib new file mode 100644 index 0000000..8fb1004 --- /dev/null +++ b/scripts/vyatta-show-snmp-ifmib @@ -0,0 +1,138 @@ +#! /usr/bin/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 Vyatta, Inc. +# All Rights Reserved. +# +# Author: Stephen Hemminger +# Date: Novemember 2010 +# Description: Script for show snmp ifmib +# +# **** End License **** + +use strict; +use warnings; +use Getopt::Long; +use POSIX qw(strtol); + +# This is used to show values corresponding to to results IF-MIB. +my %interfaces; + +sub show_ifindex { + foreach my $ifname (@_) { + my $info = $interfaces{$ifname}; + my $ifindex = $info->{'ifIndex'}; + printf "%s: ifIndex = %d\n", $ifname, $ifindex; + } +} + +sub show_ifalias { + foreach my $ifname (@_) { + my $info = $interfaces{$ifname}; + my $ifalias = $info->{'ifAlias'}; + printf "%s: ifAlias = %s\n", $ifname, + defined($ifalias) ? $ifalias : $ifname; + } +} + +sub read_sysfs { + my $filename = shift; + + open( my $f, '<', $filename ) + or return; # not a PCI device + + my $val = <$f>; + close $f; + + return strtol($val); +} + +# Imitate code in net-snmp to lookup PC +# TODO - move to common code extension (and handle USB?) +sub pci_info { + my $ifname = shift; + my $vendor_id = read_sysfs("/sys/class/net/$ifname/device/vendor"); + my $device_id = read_sysfs("/sys/class/net/$ifname/device/device"); + + return unless ( defined($vendor_id) && defined($device_id) ); + + my $cmd = sprintf("lspci -m -d %04x:%04x", $vendor_id, $device_id); + open( my $pci, '-|', $cmd ) + or die "Can't run $cmd"; + my $info = <$pci>; + close $pci; + + return unless $info; + + # extract vendor and device description from output + $info =~ /^\S+ "[^"]*" "([^"]*)" "([^"]*)"/; + + return "$1 $2"; +} + +sub show_ifdescr { + foreach my $ifname (@_) { + my $ifdescr = pci_info($ifname); + + printf "%s: ifDescr = %s\n", $ifname, + defined($ifdescr) ? $ifdescr : $ifname; + } +} + +sub show_all { + foreach my $ifname (@_) { + my $info = $interfaces{$ifname}; + my $ifindex = $info->{'ifIndex'}; + my $ifalias = $info->{'ifAlias'}; + my $ifdescr = pci_info($ifname); + + printf "%s: ifIndex = %d\n", $ifname, $ifindex; + + my $pad = sprintf( "%-*s", length($ifname) + 1, " " ); + printf "%s ifAlias = %s\n", $pad, $ifalias if ($ifalias); + printf "%s ifDescr = %s\n", $pad, $ifdescr if ($ifdescr); + } +} + +my $show = \&show_all; + +GetOptions( + "ifindex" => sub { $show = \&show_ifindex }, + "ifalias" => sub { $show = \&show_ifalias }, + "ifdescr" => sub { $show = \&show_ifdescr }, +) or die "Unknown option\n"; + +# List of all interfaces that currently exist on system +# includes interfaces that may be outside Vyatta CLI because +# they still show up in SNMP +open( my $ip, '-|', 'ip li' ) + or die "Can't run ip command\n"; + +my $ifname; +while (<$ip>) { + if (/^(\d+): ([^:]*): /) { + $ifname = $2; + $interfaces{$ifname} = { 'ifIndex' => $1 }; + } + elsif (/^ +alias (.*)$/) { + $interfaces{$ifname}->{'ifAlias'} = $1; + } +} +close $ip; + +if (@ARGV) { + $show->(@ARGV); +} +else { + $show->( sort keys %interfaces ); +} diff --git a/scripts/vyatta-show-snmp.pl b/scripts/vyatta-show-snmp.pl index 9c8e814..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/scripts/yesno b/scripts/yesno index 9955286..3e10e09 100755 --- a/scripts/yesno +++ b/scripts/yesno @@ -2,7 +2,7 @@ # Usage: yesno prompt... default= -if [ $1 == "-y" ] +if [ "$1" = "-y" ] then default='y'; shift fi @@ -14,7 +14,7 @@ fi while true do read -p "$prompt" || exit 1 - if [ -z "$REPLY" -a ! -z $default ] + if [ -z "$REPLY" -a ! -z "$default" ] then REPLY=$default fi case "$REPLY" in |