summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-05-15 13:20:51 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-05-15 13:20:51 (GMT)
commita3bd698ef9c54c7b5a8b735a13dc8f426c94e514 (patch)
tree8fdbd8a103d22dc3ce6c5ac4930d0df704801091 /contrib
parent4a864fb5ab818596fe5d5449faf230300a03c732 (diff)
downloadmonitoring-plugins-a3bd698ef9c54c7b5a8b735a13dc8f426c94e514.tar.gz
check_disk_snmp.pl removed. Notice added to CHANGES
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1391 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'contrib')
-rw-r--r--contrib/check_disk_snmp.pl74
1 files changed, 0 insertions, 74 deletions
diff --git a/contrib/check_disk_snmp.pl b/contrib/check_disk_snmp.pl
deleted file mode 100644
index a09343d..0000000
--- a/contrib/check_disk_snmp.pl
+++ /dev/null
@@ -1,74 +0,0 @@
1#!/usr/bin/perl
2# cm@financial.com 07/2002
3use strict;
4use Net::SNMP;
5use Getopt::Std;
6
7my %opts =(
8 u => 'nobody', # snmp user
9 l => 'authNoPriv', # snmp security level
10 a => 'MD5', # snmp authentication protocol
11 A => 'nopass', # authentication protocol pass phrase.
12 x => 'DES', # privacy protocol
13 m => 'localhost', # host
14 d => 1, # devicenumber
15 w => 70, # warnratio
16 c => 85, # critical ratio
17 h => 0,
18 );
19
20getopts('m:u:l:a:A:x:d:w:c:h',\%opts);
21
22if ( $opts{'h'} ) {
23 print "Usage: $0 [ -u <username> ] [ -l <snmp security level>] [ -a <snmp authentication protocol> ] [ -A <authentication protocol pass phrase> ] [ -x <snmp privacy protocol> ] [ -m <hostname>] [ -d <devicenumber> ] [ -w <warning ratio> ] [ -c <critical ratio ]\n";
24 exit 1;
25}
26
27if ($opts{'w'} >= $opts{'c'}) {
28 print "Errorratio must be higher then Warnratio!\n";
29 exit 1;
30}
31
32my ($session, $error) = Net::SNMP->session(
33 -hostname => $opts{'m'},
34 -nonblocking => 0x0,
35 -username => $opts{'u'},
36 -authpassword => $opts{'A'},
37 -authprotocol => $opts{'a'},
38 -version => '3',
39 );
40
41if ($@) {
42 print "SNMP-Error occured";
43 exit 1;
44}
45my $result=undef;
46
47
48my $deviceSize=".1.3.6.1.2.1.25.2.3.1.5.$opts{'d'}";
49my $deviceUsed=".1.3.6.1.2.1.25.2.3.1.6.$opts{'d'}";
50my $deviceName=".1.3.6.1.2.1.25.2.3.1.3.$opts{'d'}";
51my @OID=($deviceSize, $deviceUsed, $deviceName);
52$result = $session->get_request(
53 -varbindlist => \@OID,
54 );
55
56if (!defined($result)) {
57 printf("ERROR: %s.\n", $session->error);
58 $session->close;
59 exit 1;
60}
61
62my $ratio=$result->{$deviceUsed}*100/$result->{$deviceSize};
63
64if ($ratio > $opts{'c'}){
65 printf("CRITICAL: %s usage %.2f%%\n", $result->{$deviceName}, $ratio);
66 exit 2;
67}
68if ($ratio > $opts{'w'}){
69 printf("WARNING: %s usage %.2f%%\n", $result->{$deviceName}, $ratio);
70 exit 1;
71}
72
73printf("OK: %s usage %.2f%%\n", $result->{$deviceName}, $ratio);
74exit 0;