Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^4: How to encode snmpv2 trap varbind

by ahm123 (Initiate)
on Feb 27, 2013 at 13:09 UTC ( [id://1020883]=note: print w/replies, xml ) Need Help??


in reply to Re^3: How to encode snmpv2 trap varbind
in thread How to encode snmpv2 trap varbind

Thanks topher ...I will include snmpTrapAddress also in the varbind and test. I will post my test results ..

  • Comment on Re^4: How to encode snmpv2 trap varbind

Replies are listed 'Best First'.
Re^5: How to encode snmpv2 trap varbind
by ahm123 (Initiate) on Feb 28, 2013 at 10:00 UTC

    Hi topher,

    Thanks a ton for this info !!! Its like a life saver for me ...
    I have included snmpTrapAddress.0 in the trap varbind. Now trap is correctly received and processed by NMS

    #!/usr/bin/perl
    use lib '/opt/perl_64/lib/site_perl/5.8.8/';
    use strict;
    use warnings;
    use Net::SNMP qw(:ALL);
    my $curr_time = (scalar time);
    my ($session, $error) = Net::SNMP->session(
    -hostname => '10.10.70.14',
    -port => '5286',
    -localaddr => '192.168.10.121',
    -localport => '1028',
    -version => 'snmpv2c',
    -community => 'PUBLIC',
    );
    if (!defined($session)) {
    printf("ERROR: %s.\n", $error);
    exit 1;
    }

    my $result = $session->snmpv2_trap(
    -varbindlist => [
    '1.3.6.1.2.1.1.3.0', TIMETICKS, 600,
    '1.3.6.1.6.3.1.1.4.1.0',OBJECT_IDENTIFIER,'1.3.6.1.4.1.42767.64.1.1.5.1.40.1',
    '1.3.6.1.6.3.18.1.3.0', IPADDRESS, '10.10.16.230', '1.3.6.1.4.1.42767.64.1.1.3.1.9', INTEGER32, 11,
    '1.3.6.1.4.1.42767.64.1.1.3.1.10', OBJECT_IDENTIFIER, 1.3.6.1.2.1.26.2.1.1.3.1.9,
    '1.3.6.1.4.1.42767.64.1.1.3.1.11', COUNTER32, 10,
    '1.3.6.1.4.1.42767.64.1.1.3.1.12', TIMETICKS, $curr_time,
    '1.3.6.1.4.1.42767.64.1.1.3.1.13', INTEGER32, 2,
    '1.3.6.1.4.1.42767.64.1.1.3.1.14', OCTET_STRING, '' ]
    );

    if (!defined($result)) {
    printf("ERROR: %s.\n", $session->error());
    }
    else {
    printf("SNMPv2-Trap-PDU sent.\n");
    }

    $session->close();

      Excellent. Good to hear that solved the problem for you.

      Christopher Cashell

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1020883]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-19 22:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found