Code

fix for ePN
[nagiosplug.git] / contrib / check_disk_snmp.pl
1 #!/usr/bin/perl
2 # cm@financial.com 07/2002
3 use strict;
4 use Net::SNMP;
5 use Getopt::Std;
7 my %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         );
20 getopts('m:u:l:a:A:x:d:w:c:h',\%opts);
22 if ( $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 }
27 if ($opts{'w'} >= $opts{'c'}) {
28         print "Errorratio must be higher then Warnratio!\n";
29         exit 1;
30 }
32 my ($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         );
41 if ($@) {
42         print "SNMP-Error occured";
43         exit 1;
44 }
45 my $result=undef;
48 my $deviceSize=".1.3.6.1.2.1.25.2.3.1.5.$opts{'d'}";
49 my $deviceUsed=".1.3.6.1.2.1.25.2.3.1.6.$opts{'d'}";
50 my $deviceName=".1.3.6.1.2.1.25.2.3.1.3.$opts{'d'}";
51 my @OID=($deviceSize, $deviceUsed, $deviceName);
52 $result = $session->get_request(
53         -varbindlist => \@OID,
54         );
56 if (!defined($result)) {
57         printf("ERROR: %s.\n", $session->error);
58         $session->close;
59         exit 1;
60 }
62 my $ratio=$result->{$deviceUsed}*100/$result->{$deviceSize};
64 if ($ratio > $opts{'c'}){
65         printf("CRITICAL: %s usage %.2f%%\n", $result->{$deviceName}, $ratio);
66         exit 2;
67 }
68 if ($ratio > $opts{'w'}){
69         printf("WARNING: %s usage %.2f%%\n", $result->{$deviceName}, $ratio);
70         exit 1;
71 }
73 printf("OK: %s usage %.2f%%\n", $result->{$deviceName}, $ratio);
74 exit 0;