snmpGet.cpp
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:5k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*
  2.   snmpGet.cpp 
  3.   version 2.8
  4.   Copyright (c) 1996
  5.   Hewlett-Packard Company
  6.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  7.   Permission to use, copy, modify, distribute and/or sell this software
  8.   and/or its documentation is hereby granted without fee. User agrees
  9.   to display the above copyright notice and this license notice in all
  10.   copies of the software and any documentation of the software. User
  11.   agrees to assume all liability for the use of the software; Hewlett-Packard
  12.   makes no representations about the suitability of this software for any
  13.   purpose. It is provided "AS-IS" without warranty of any kind,either express
  14.   or implied. User hereby grants a royalty-free license to any and all
  15.   derivatives based upon this software code base.
  16.   Peter E. Mellquist
  17. */
  18. #include "snmp_pp.h"
  19. #include <iostream.h>
  20. #include <stdlib.h>
  21. int main( int argc, char **argv)  {
  22.    //---------[ check the arg count ]----------------------------------------
  23.    if ( argc < 2) {
  24.   cout << "Usage:n";
  25.   cout << "snmpGet Address | DNSName [Oid] [options]n";
  26.   cout << "Oid: sysDescr object is defaultn";
  27.   cout << "options: -v1 , use SNMPV1, defaultn";
  28.   cout << "         -v2 , use SNMPV2n";
  29.   cout << "         -cCommunity_name, specify community default is 'public' n";
  30.   cout << "         -rN , retries default is N = 1 retryn";
  31.   cout << "         -tN , timeout in hundredths-seconds default is N = 100 = 1 secondn";
  32.   return 0;
  33.    }
  34.    //---------[ make a GenAddress and Oid object to retrieve ]---------------
  35.    GenAddress address( argv[1]);      // make a SNMP++ Generic address
  36.    if ( !address.valid()) {           // check validity of address
  37.   cout << "Invalid Address or DNS Name, " << argv[1] << "n";
  38.   return 0;
  39.    }
  40.  
  41.    Oid oid("1.3.6.1.2.1.1.1.0");      // defualt is sysDescr
  42.    if ( argc >= 3) {                  // if 3 args, then use the callers Oid
  43.   if ( strstr( argv[2],"-")==0) {
  44.      oid = argv[2];
  45.      if ( !oid.valid()) {         // check validity of user oid
  46.     cout << "Invalid Oid, " << argv[2] << "n";
  47.     return 0;
  48.          }
  49.       }
  50.    }
  51.    //---------[ determine options to use ]-----------------------------------
  52.    snmp_version version=version1;                       // default is v1
  53.    int retries=1;                                       // default retries is 1
  54.    int timeout=100;                                     // default is 1 second
  55.    OctetStr community("public");                        // community name
  56.    char *ptr;
  57.    for(int x=1;x<argc;x++) {                           // parse for version
  58.       if ( strstr( argv[x],"-v2")!= 0)   
  59.          version = version2c;
  60.       if ( strstr( argv[x],"-r")!= 0) {                 // parse for retries
  61.          ptr = argv[x]; ptr++; ptr++;
  62.  retries = atoi(ptr);
  63.  if (( retries<1)|| (retries>5)) retries=1; 
  64.       }
  65.   if ( strstr( argv[x], "-t")!=0) {                 // parse for timeout
  66.  ptr = argv[x]; ptr++; ptr++; 
  67.  timeout = atoi( ptr);
  68.  if (( timeout < 100)||( timeout>500)) timeout=100;
  69.       }
  70.   if ( strstr( argv[x],"-c")!=0) {
  71.  ptr = argv[x]; ptr++; ptr++;
  72.  community = ptr;
  73.       }
  74.    }
  75.    //----------[ create a SNMP++ session ]-----------------------------------
  76.    int status; 
  77.    Snmp snmp( status);                // check construction status
  78.    if ( status != SNMP_CLASS_SUCCESS) {
  79.       cout << "SNMP++ Session Create Fail, " << snmp.error_msg(status) << "n";
  80.       return 0;
  81.    }
  82.    //--------[ build up SNMP++ object needed ]-------------------------------
  83.    Pdu pdu;                                // construct a Pdu object
  84.    Vb vb;                                  // construct a Vb object
  85.    vb.set_oid( oid);                       // set the Oid portion of the Vb
  86.    pdu += vb;                              // add the vb to the Pdu
  87.    CTarget target( address);               // make a target using the address
  88.    target.set_version( version);           // set the SNMP version SNMPV1 or V2
  89.    target.set_retry( retries);             // set the number of auto retries
  90.    target.set_timeout( timeout);           // set timeout
  91.    target.set_readcommunity( community);   // set read community
  92.    target.set_writecommunity( community);// set the write community name
  93.  
  94.    //-------[ issue the request, blocked mode ]-----------------------------
  95.    cout << "SNMP++ Get to " << argv[1] << " SNMPV" << (version+1) << " Retries=" << retries;
  96.    cout << " Timeout=" << timeout <<"ms " << "Community=" << community.get_printable() << "n";
  97.    if (( status = snmp.get( pdu,target))== SNMP_CLASS_SUCCESS) {
  98.   pdu.get_vb( vb,0);
  99.   cout << "Oid = " << vb.get_printable_oid() << "n";
  100.   cout << "Value = " << vb.get_printable_value() << "n";
  101.    }
  102.    else {
  103.   cout << "SNMP++ Get Error, ";
  104.       if ( status == SNMP_CLASS_ERR_STATUS_SET)
  105.      status = pdu.get_error_status();
  106.       cout << snmp.error_msg( status) << "n";
  107.    }
  108.    return 0;
  109. }  // end get