summaryrefslogtreecommitdiff
path: root/torrus/bin/action_snmpv1trap.in
blob: 02ec14a3171ea68db72e2d2502b124a6ee73e190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!@PERL@
#  Copyright (C) 2002  Stanislav Sinyagin
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  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.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.

# $Id: action_snmpv1trap.in,v 1.1 2010-12-27 00:04:02 ivan Exp $
# Stanislav Sinyagin <ssinyagin@yahoo.com>

# Obsoleted and not used SNMP v1 trap script.
# Version 2c is preferred one.


use strict;
use Net::SNMP qw(:ALL);
use Getopt::Long;

require '@snmptrap_siteconfig_pl@';

# SNMP Enterprise. Needed for SNMP v1 trap.
# See http://www.iana.org/assignments/enterprise-numbers for reference
$Torrus::Snmptrap::enterprise = '1.3.6.1.4.1.14697.1.1.1';


if( not $ENV{'TORRUS_TOKEN'} )
{
    print STDERR ("Torrus environment variables missing. This program ",
                  "must be run from Torrus Monitor\n");
    exit 1;
}

my @hosts;
my $severity;

my $ok = GetOptions( 'host=s'     => \@hosts,
                     'community=s' => \$Torrus::Snmptrap::community,
                     'port=i'      => \$Torrus::Snmptrap::port,
                     'enterprise'  => \$Torrus::Snmptrap::enterprise,
                     'severity=i'  => \$severity );

if( not $ok )
{
    print STDERR ("Error parsing options\n");
    exit 1;
}

if( scalar(@hosts) > 0 )
{
    @Torrus::Snmptrap::hosts = @hosts;
}

my %specifictrap = ( 'set'    => 1,
                     'repeat' => 2,
                     'clear'  => 3,
                     'forget' => 4
                     );

my @varbindlist = ( $Torrus::Snmptrap::enterprise . '.2',
                    OCTET_STRING, $ENV{'TORRUS_TOKEN'},

                    $Torrus::Snmptrap::enterprise . '.5',
                    OCTET_STRING, $ENV{'TORRUS_NODEPATH'},

                    $Torrus::Snmptrap::enterprise . '.3',
                    OCTET_STRING, $ENV{'TORRUS_MONITOR'},

                    $Torrus::Snmptrap::enterprise . '.4',
                    OCTET_STRING, $ENV{'TORRUS_EVENT'},

                    $Torrus::Snmptrap::enterprise . '.6',
                    OCTET_STRING, scalar(localtime($ENV{'TORRUS_TSTAMP'})),

                    $Torrus::Snmptrap::enterprise . '.7',
                    OCTET_STRING, $ENV{'TORRUS_TREE'},
                    
                    $Torrus::Snmptrap::enterprise . '.9',
                    OCTET_STRING, $ENV{'TORRUS_MCOMMENT'}
                    );

if( defined( $severity ) )
{
    push( @varbindlist,
          $Torrus::Snmptrap::enterprise . '.8',
          INTEGER32, $severity );
}

foreach my $host ( @Torrus::Snmptrap::hosts )
{
    my( $session, $error ) =
        Net::SNMP->session( -hostname  => $host,
                            -community => $Torrus::Snmptrap::community,
                            -port      => $Torrus::Snmptrap::port
                            );

    if( not defined($session) )
    {
        printf STDERR ("Error opening SNMP trap session: %s.\n", $error);
        exit 1;
    }


    my $result =
        $session->trap( -enterprise   => $Torrus::Snmptrap::enterprise,
                        -generictrap  => ENTERPRISE_SPECIFIC,
                        -specifictrap => $specifictrap{$ENV{'TORRUS_EVENT'}},
                        -timestamp    => $ENV{'TORRUS_UPTIME'} * 100,
                        -varbindlist  => \@varbindlist
                        );

    if( not $result )
    {
        printf STDERR ("Error sending SNMP trap: %s.\n", $session->error());
    }

    $session->close();
}


# Local Variables:
# mode: perl
# indent-tabs-mode: nil
# perl-indent-level: 4
# End: