snmpTraps.cpp~
上传用户:cnryan
上传日期:2008-12-15
资源大小:260k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*_############################################################################
  2.   _## 
  3.   _##  snmpTraps.cpp  
  4.   _##
  5.   _##  SNMP++v3.2.21
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2006 Jochen Katz, Frank Fock
  8.   _##
  9.   _##  This software is based on SNMP++2.6 from Hewlett Packard:
  10.   _##  
  11.   _##    Copyright (c) 1996
  12.   _##    Hewlett-Packard Company
  13.   _##  
  14.   _##  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  15.   _##  Permission to use, copy, modify, distribute and/or sell this software 
  16.   _##  and/or its documentation is hereby granted without fee. User agrees 
  17.   _##  to display the above copyright notice and this license notice in all 
  18.   _##  copies of the software and any documentation of the software. User 
  19.   _##  agrees to assume all liability for the use of the software; 
  20.   _##  Hewlett-Packard and Jochen Katz make no representations about the 
  21.   _##  suitability of this software for any purpose. It is provided 
  22.   _##  "AS-IS" without warranty of any kind, either express or implied. User 
  23.   _##  hereby grants a royalty-free license to any and all derivatives based
  24.   _##  upon this software code base. 
  25.   _##  
  26.   _##  Stuttgart, Germany, Fri Jun 16 17:48:57 CEST 2006 
  27.   _##  
  28.   _##########################################################################*/
  29. /*
  30.   snmpTraps.cpp 
  31.   Copyright (c) 1996
  32.   Hewlett-Packard Company
  33.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  34.   Permission to use, copy, modify, distribute and/or sell this software
  35.   and/or its documentation is hereby granted without fee. User agrees
  36.   to display the above copyright notice and this license notice in all
  37.   copies of the software and any documentation of the software. User
  38.   agrees to assume all liability for the use of the software; Hewlett-Packard
  39.   makes no representations about the suitability of this software for any
  40.   purpose. It is provided "AS-IS" without warranty of any kind,either express
  41.   or implied. User hereby grants a royalty-free license to any and all
  42.   derivatives based upon this software code base.
  43.   Peter E. Mellquist
  44. */
  45. char snmptraps_cpp_version[]="@(#) SNMP++ $Id: snmpTraps.cpp,v 1.6 2005/10/11 18:08:05 katz Exp $";
  46. #include "snmp_pp/snmp_pp.h"
  47. #include <stdlib.h>
  48. #include <stdio.h>
  49. #ifdef SNMP_PP_NAMESPACE
  50. using namespace Snmp_pp;
  51. #endif
  52. #if (__GNUC__ > 2)
  53. #include <iostream>
  54. using std::cerr;
  55. using std::cout;
  56. using std::endl;
  57. using std::flush;
  58. #else
  59. #include <iostream.h>
  60. #endif
  61. #define COLDSTART "1.3.6.1.6.3.1.1.5.1"
  62. #define PAYLOADID "1.3.6.1.4.1.11.2.16.2"
  63. #define PAYLOAD "SNMP++ Trap Send Test"
  64. #define ENTERPRISE "1.3.6.1.2.1.1.1.2.0.1"
  65. int main(int argc, char **argv)
  66. {
  67.    //---------[ check the arg count ]----------------------------------------
  68.    if ( argc < 2) {
  69.   cout << "Usage:n";
  70.   cout << "snmpTraps IpAddress | DNSName [Id] [options]n";
  71.   cout << "Id = default is 1.3.6.1.6.3.1.1.5.1 = ColdStart";
  72.   cout << "options: -vN , use SNMP version 1, 2 or 3, default is 1n";
  73.   cout << "         -PPort , remote port to usen";
  74.   cout << "         -CCommunity_name, specify community default is 'public' n";
  75. #ifdef _SNMPv3
  76.           cout << "         -snSecurityName, " << endl;
  77.           cout << "         -slN , securityLevel to use, default N = 3 = authPriv" << endl;
  78.           cout << "         -smN , securityModel to use, only default N = 3 = USM possiblen";
  79.           cout << "         -cnContextName, default empty string" << endl;
  80.           cout << "         -ceContextEngineID, as hex e.g. 800007E580, default empty string" << endl;
  81.           cout << "         -authPROT, use authentication protocol NONE, SHA or MD5n";
  82.           cout << "         -privPROT, use privacy protocol NONE, DES, 3DESEDE, IDEA, AES128, AES192 or AES256n";
  83.           cout << "         -uaAuthPasswordn";
  84.           cout << "         -upPrivPasswordn";
  85. #endif
  86.   return 1;
  87.    }
  88.    Snmp::socket_startup();  // Initialize socket subsystem
  89.    //---------[ make a GenAddress and Oid object to retrieve ]---------------
  90.    UdpAddress address( argv[1]);      // make a SNMP++ Generic address
  91.    if ( !address.valid()) {           // check validity of address
  92.   cout << "Invalid Address or DNS Name, " << argv[1] << "n";
  93.   return 1;
  94.    }
  95.    Oid oid( COLDSTART);    // default is ColdStart 
  96.    if ( argc >= 3) {                  // if 3 args, then use the callers Oid
  97.   if ( strstr( argv[2],"-")==0) {
  98.      oid = argv[2];
  99.      if ( !oid.valid()) {            // check validity of user oid
  100.     cout << "Invalid Oid, " << argv[2] << "n";
  101.     return 1;
  102.          }
  103.       }
  104.    }
  105.    //---------[ determine options to use ]-----------------------------------
  106.    snmp_version version=version1;                  // default is v1
  107.    u_short port=161;                               // default snmp port is 161
  108.    OctetStr community("public");                   // community name
  109.    Oid ent(ENTERPRISE);                            // default enterprise
  110. #ifdef _SNMPv3
  111.    OctetStr privPassword("");
  112.    OctetStr authPassword("");
  113.    OctetStr securityName("");
  114.    int securityModel = SecurityModel_USM;
  115.    int securityLevel = SecurityLevel_authPriv;
  116.    OctetStr contextName("");
  117.    OctetStr contextEngineID("");
  118.    long authProtocol = SNMPv3_usmNoAuthProtocol;
  119.    long privProtocol = SNMPv3_usmNoPrivProtocol;
  120.    v3MP *v3_MP;
  121. #endif
  122.    char *ptr;
  123.    for(int x=1;x<argc;x++) {                           // parse for version
  124.      if ( strstr( argv[x],"-v2")!= 0) {
  125.        version = version2c;
  126.        continue;
  127.      }
  128.      if ( strstr( argv[x],"-C")!=0) {
  129.        ptr = argv[x]; ptr++; ptr++;
  130.        community = ptr;
  131.        continue;
  132.      }
  133.      if ( strstr( argv[x],"-P")!=0) {
  134.        ptr = argv[x]; ptr++; ptr++;
  135.        sscanf(ptr, "%hu", &port);
  136.        continue;
  137.      }
  138. #ifdef _SNMPv3
  139.      if ( strstr( argv[x],"-v3")!= 0) {
  140.        version = version3;
  141.        continue;
  142.      }
  143.      if ( strstr( argv[x],"-auth") != 0) {
  144.        ptr = argv[x]; ptr+=5;
  145.        if (strcasecmp(ptr, "SHA") == 0)
  146.    authProtocol = SNMP_AUTHPROTOCOL_HMACSHA;
  147.        else if (strcasecmp(ptr, "MD5") == 0)
  148.    authProtocol = SNMP_AUTHPROTOCOL_HMACMD5;
  149.        else
  150.    authProtocol = SNMP_AUTHPROTOCOL_NONE;
  151.        continue;
  152.      }
  153.      if ( strstr( argv[x],"-priv") != 0) {
  154.        ptr = argv[x]; ptr+=5;
  155.        if (strcasecmp(ptr, "DES") == 0)
  156.    privProtocol = SNMP_PRIVPROTOCOL_DES;
  157.        else if (strcasecmp(ptr, "3DESEDE") == 0)
  158.    privProtocol = SNMP_PRIVPROTOCOL_3DESEDE;
  159.        else if (strcasecmp(ptr, "IDEA") == 0)
  160.    privProtocol = SNMP_PRIVPROTOCOL_IDEA;
  161.        else if (strcasecmp(ptr, "AES128") == 0)
  162.    privProtocol = SNMP_PRIVPROTOCOL_AES128;
  163.        else if (strcasecmp(ptr, "AES192") == 0)
  164.    privProtocol = SNMP_PRIVPROTOCOL_AES192;
  165.        else if (strcasecmp(ptr, "AES256") == 0)
  166.    privProtocol = SNMP_PRIVPROTOCOL_AES256;
  167.        else
  168.    privProtocol = SNMP_PRIVPROTOCOL_NONE;
  169.        printf("nnPrivProt : %ldn", privProtocol);
  170.        continue;
  171.      }
  172.      if ( strstr( argv[x],"-sn")!=0) {
  173.        ptr = argv[x]; ptr+=3;
  174.        securityName = ptr;
  175.        continue;
  176.       }
  177.      if ( strstr( argv[x], "-sl")!=0) {
  178.        ptr = argv[x]; ptr+=3;
  179.        securityLevel = atoi( ptr);
  180.        if (( securityLevel < SecurityLevel_noAuthNoPriv) ||
  181.            ( securityLevel > SecurityLevel_authPriv))
  182.          securityLevel = SecurityLevel_authPriv;
  183.        continue;
  184.      }
  185.      if ( strstr( argv[x], "-sm")!=0) {
  186.        ptr = argv[x]; ptr+=3;
  187.        securityModel = atoi( ptr);
  188.        if (( securityModel < SecurityModel_v1) ||
  189.            ( securityModel > SecurityModel_USM))
  190.          securityModel = SecurityModel_USM;
  191.        continue;
  192.      }
  193.      if ( strstr( argv[x],"-cn")!=0) {
  194.        ptr = argv[x]; ptr+=3;
  195.        contextName = ptr;
  196.        continue;
  197.      }
  198.      if ( strstr( argv[x],"-ce")!=0) {
  199.        ptr = argv[x]; ptr+=3;
  200.        contextEngineID = OctetStr::from_hex_string(ptr);
  201.        continue;
  202.      }
  203.      if ( strstr( argv[x],"-ua")!=0) {
  204.        ptr = argv[x]; ptr+=3;
  205.        authPassword = ptr;
  206.        continue;
  207.      }
  208.      if ( strstr( argv[x],"-up")!=0) {
  209.        ptr = argv[x]; ptr+=3;
  210.        privPassword = ptr;
  211.        continue;
  212.      }
  213. #endif
  214.   }
  215.    //----------[ create a SNMP++ session ]-----------------------------------
  216.    int status;
  217.    Snmp *snmp;
  218.    if (address.get_ip_version() == Address::version_ipv4)
  219.      snmp = new Snmp(status, "0.0.0.0");
  220.    else
  221.      snmp = new Snmp(status, "::");
  222.    if ( status != SNMP_CLASS_SUCCESS) {
  223.       cout << "SNMP++ Session Create Fail, " << snmp->error_msg(status) << "n";
  224.       return 1;
  225.    }
  226.    //---------[ init SnmpV3 ]--------------------------------------------
  227. #ifdef _SNMPv3
  228.    if (version == version3) {
  229.      char *engineId = "TrapSender";
  230.      char *filename = "snmpv3_boot_counter";
  231.      unsigned int snmpEngineBoots = 0;
  232.      int status;
  233.      status = getBootCounter(filename, engineId, snmpEngineBoots);
  234.      if ((status != SNMPv3_OK) && (status < SNMPv3_FILEOPEN_ERROR))
  235.      {
  236.        cout << "Error loading snmpEngineBoots counter: " << status << endl;
  237.        return 1;
  238.      }
  239.      snmpEngineBoots++;
  240.      status = saveBootCounter(filename, engineId, snmpEngineBoots);
  241.      if (status != SNMPv3_OK)
  242.      {
  243.        cout << "Error saving snmpEngineBoots counter: " << status << endl;
  244.        return 1;
  245.      }
  246.      int construct_status;
  247.      v3_MP = new v3MP(engineId, snmpEngineBoots, construct_status);
  248.      USM *usm = v3_MP->get_usm();
  249.      usm->add_usm_user(securityName,
  250.        authProtocol, privProtocol,
  251.        authPassword, privPassword);
  252.    }
  253.    else
  254.    {
  255.      // MUST create a dummy v3MP object if _SNMPv3 is enabled!
  256.      int construct_status;
  257.      v3_MP = new v3MP("dummy", 0, construct_status);
  258.    }
  259. #endif
  260.    //--------[ build up SNMP++ object needed ]-------------------------------
  261.    Pdu pdu;                               // construct a Pdu object
  262.    Vb vb;                                 // variable binding object to use
  263.    vb.set_oid(PAYLOADID);                 // example oid for trap payload
  264.    vb.set_value(PAYLOAD);                 // example string for payload
  265.    pdu += vb;                             // append the vb to the pdu
  266.    pdu.set_notify_id( oid);               // set the id of the trap
  267.    pdu.set_notify_enterprise( ent);       // set up the enterprise of the trap
  268.    address.set_port(port);
  269.    CTarget ctarget( address);             // make a target using the address
  270. #ifdef _SNMPv3
  271.    UTarget utarget( address);
  272.    if (version == version3) {
  273.      utarget.set_version( version);          // set the SNMP version SNMPV1 or V2 or V3
  274.      utarget.set_security_model( securityModel);
  275.      utarget.set_security_name( securityName);
  276.      pdu.set_security_level( securityLevel);
  277.      pdu.set_context_name (contextName);
  278.      pdu.set_context_engine_id(contextEngineID);
  279.    }
  280.    else {
  281. #endif
  282.      ctarget.set_version( version);         // set the SNMP version SNMPV1 or V2
  283.      ctarget.set_readcommunity( community); // set the read community name
  284. #ifdef _SNMPv3
  285.    }
  286. #endif
  287.    //-------[ Send the trap  ]------------------------------------------------
  288.    cout << "SNMP++ Trap to " << argv[1] << " SNMPV"
  289. #ifdef _SNMPv3
  290.         << ((version==version3) ? (version) : (version+1));
  291. #else
  292.         << (version+1);
  293. #endif
  294. #ifdef _SNMPv3
  295.    if (version == version3)
  296.      cout << endl
  297.           << "securityName= " << securityName.get_printable()
  298.           << ", securityLevel= " << securityLevel
  299.           << ", securityModel= " << securityModel << endl
  300.           << "contextName= " << contextName.get_printable()
  301.           << ", contextEngineID= " << contextEngineID.get_printable()
  302.           << endl;
  303.    else
  304. #endif
  305.      cout << " Community=" << community.get_printable() << endl << flush;
  306.    SnmpTarget *target;
  307. #ifdef _SNMPv3
  308.    if (version == version3)
  309.      target = &utarget;
  310.    else
  311. #endif
  312.      target = &ctarget;
  313.    status = snmp->trap( pdu,*target);
  314.    cout << "SNMP++ Trap Send Status = " << snmp->error_msg( status) << "n";
  315.   Snmp::socket_cleanup();  // Shut down socket subsystem
  316. }