Help for this page

Select Code to Download


  1. or download this
    use SNMP_util "0.54";  # This will load the BER and SNMP_Session for u
    +s
    snmptrap("public\@172.20.50.13:162", ".1.3.6.1.4.1.2789", "sunserver1"
    +, 6, 1247,".1.3.6.1.4.1.2789.1247.1", "int", "2448816");
    
  2. or download this
    my $trap_session = SNMPv1_Session->open_trap_session ()
      or die "cannot open trap session";
    ...
        ($oid, $value) = decode_by_template ($binding, "%O%@");
        print BER::pretty_oid ($oid)," => ",pretty_print ($value),"\n";
    }