summaryrefslogtreecommitdiffstats
path: root/plugins-scripts
diff options
context:
space:
mode:
authorSubhendu Ghosh <sghosh@users.sourceforge.net>2003-10-14 03:14:57 (GMT)
committerSubhendu Ghosh <sghosh@users.sourceforge.net>2003-10-14 03:14:57 (GMT)
commitfa9983a26043e067546667e2f9721e1b499a4fba (patch)
treeec032bd5d96eb14aa16ce56b26749be3e1e3f699 /plugins-scripts
parent746e30719509f026c2bcda84fab22725b5e982aa (diff)
downloadmonitoring-plugins-fa9983a26043e067546667e2f9721e1b499a4fba.tar.gz
more snmpv3 patches
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@745 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-scripts')
-rwxr-xr-xplugins-scripts/check_ifstatus.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins-scripts/check_ifstatus.pl b/plugins-scripts/check_ifstatus.pl
index 3372adb..4f17711 100755
--- a/plugins-scripts/check_ifstatus.pl
+++ b/plugins-scripts/check_ifstatus.pl
@@ -53,7 +53,8 @@ my %ifOperStatus = ('1','up',
53 '3','testing', 53 '3','testing',
54 '4','unknown', 54 '4','unknown',
55 '5','dormant', 55 '5','dormant',
56 '6','notPresent'); 56 '6','notPresent',
57 '7','lowerLayerDown'); # down due to the state of lower layer interface(s));
57 58
58my $state = "UNKNOWN"; 59my $state = "UNKNOWN";
59my $answer = ""; 60my $answer = "";
@@ -416,6 +417,7 @@ sub process_arguments() {
416 -port => $port, 417 -port => $port,
417 -version => $snmp_version, 418 -version => $snmp_version,
418 -username => $secname, 419 -username => $secname,
420 -authprotocol => $authproto,
419 $auth 421 $auth
420 ); 422 );
421 }elsif ($seclevel eq 'authPriv' ) { 423 }elsif ($seclevel eq 'authPriv' ) {
@@ -424,6 +426,7 @@ sub process_arguments() {
424 -port => $port, 426 -port => $port,
425 -version => $snmp_version, 427 -version => $snmp_version,
426 -username => $secname, 428 -username => $secname,
429 -authprotocol => $authproto,
427 $auth, 430 $auth,
428 $priv 431 $priv
429 ); 432 );