snmpinformreq_receiver.java.txt
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:7k
源码类别:

SNMP编程

开发平台:

C/C++

  1.  /* $Id: snmpinformreq_receiver.src,v 1.4 2002/09/09 05:36:28 tonyjpaul Exp $ */
  2.  /*
  3.  * @(#)snmpinformreq_receiver.java
  4.  * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
  5.  * Please read the COPYRIGHTS file for more details.
  6.  *
  7.  */
  8. /** 
  9.  *  Run command line Inform request receiver and print incoming PDUs.  Loads 
  10.  *  MIBs as specified, and converts to/from names for loaded MIB data. 
  11.  *  It also prints loaded trap names and descriptions when the
  12.  *  corresponding Inform Requests are received.
  13.  *
  14.  * [-d] <debug>        - Debug output.By default off.
  15.  * [-c] <community>    - community String. By default "public".
  16.  * [-p] <port>         - remote port no. By default 161.
  17.  * [-m] <mibs>           - The mibs to be loaded.
  18.  * [-e] <engineID>       - The V3 engineID
  19.  * [-u] <username>     - The v3 principal/userName
  20.  * [-a] <autProtocol>  - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
  21.  * [-w] <authPassword> - The authentication password.
  22.  * [-s] <privPassword> - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
  23.  */
  24. import com.adventnet.snmp.beans.*;
  25. import com.adventnet.snmp.snmp2.*;
  26. import com.adventnet.snmp.snmp2.usm.*;
  27. import ParseOptions;
  28. public class snmpinformreq_receiver {
  29.     private static int MIBS = 0;
  30.     private static int COMMUNITY = 1;
  31.     private static int PORT = 2;
  32.     private static int DEBUG =3;
  33.     private static int USER_NAME = 4;
  34.     private static int ENGID = 5;
  35.     private static int AUTH_PROTOCOL = 6;
  36.     private static int AUTH_PASSWORD = 7;
  37.     private static int PRIV_PASSWORD = 8;
  38.     public static void main(String args[]) {
  39.     // Take care of getting options
  40.     String usage = "snmpinformreq_receiver [-m MIB_files] [-c community] [-p port] [-d] [-u user] [-e engineID(1234.../0x1234...)] [-a authProtocol(MD5/SHA)] [-w auth_password] [-s priv_password]";
  41.     String options[] = { "-m" , "-c", "-p", "-d", "-u", "-e", "-a", "-w", "-s" };
  42.     String values[] = { null, null, null, "None", null, null, null, null, null};
  43.     String userName = null;
  44.     int authProtocol = USMUserEntry.NO_AUTH;
  45.     String authPassword = new String ("");
  46.     String privPassword = new String ("");
  47.     String engineID = null;
  48.     int privProtocol = 0;
  49.     byte secLevel = 0;
  50.     ParseOptions opt = new ParseOptions(args,options,values, usage);
  51.     if (opt.remArgs.length!=0) opt.usage_error();
  52.     // instantiate a receiver object
  53.     SnmpTrapReceiver receiver = new SnmpTrapReceiver();
  54.  //To load MIBs from compiled file
  55.  receiver.getMibOperations().setLoadFromCompiledMibs(true);
  56.          if(values[DEBUG].equals("Set"))
  57.          receiver.setDebug(true);
  58.         if (values[COMMUNITY] != null) receiver.setCommunity( values[COMMUNITY] );
  59.     try {  // set Inform Request port to listen on if specified - else port 162
  60.         
  61.         if (values[PORT] != null)  {
  62.          int port = -1;
  63.          if((port = Integer.parseInt(values[PORT])) < 0) {
  64.          System.err.println("Invalid port number");
  65.          opt.usage_error();
  66.          }
  67.          receiver.setPort( Integer.parseInt(values[PORT]) );
  68.         }
  69.         else
  70.             receiver.setPort( 162 );
  71.     } catch (NumberFormatException ex) {
  72.         System.err.println("Invalid Integer Arg");
  73.     }
  74.         if (values[USER_NAME] != null) {
  75.             userName = values[USER_NAME];
  76.             receiver.setPrincipal(userName); 
  77.         }
  78.     
  79.         if (values[ENGID] != null) {
  80.             engineID = values[ENGID];
  81. if(engineID.startsWith("0x") || engineID.startsWith("0X"))
  82. engineID = new String(gethexValue(values[ENGID]));
  83.         }
  84.     
  85.         if (values[AUTH_PROTOCOL] != null) {
  86.         if ( values[AUTH_PROTOCOL].equals("SHA"))
  87.             authProtocol = USMUserEntry.SHA_AUTH;
  88.         else if ( values[AUTH_PROTOCOL].equals("MD5"))
  89.             authProtocol = USMUserEntry.MD5_AUTH;
  90.         else
  91.             authProtocol = USMUserEntry.NO_AUTH;
  92.         receiver.setAuthProtocol(authProtocol);
  93.         secLevel |= 0x01;
  94.         }
  95.         if (values[AUTH_PASSWORD] != null) {
  96.         if (secLevel == 0x01) {
  97.             authPassword = values[AUTH_PASSWORD];
  98.             receiver.setAuthPassword(authPassword);
  99.         }
  100.         else
  101.             opt.usage_error();
  102.         }
  103.         if(values[PRIV_PASSWORD] != null) {
  104.         if (secLevel == 0x01)
  105.         {
  106.             privPassword = values[PRIV_PASSWORD];
  107.             privProtocol = USMUserEntry.CBC_DES;
  108.             receiver.setPrivPassword(privPassword);
  109.             secLevel |= 0x02;
  110.         }
  111.         else
  112.             opt.usage_error();
  113.         }
  114.     
  115.     if(userName != null) 
  116.         receiver.createUserEntry(engineID.getBytes(),secLevel);
  117.         
  118.     if (values[MIBS] != null) try { // load MIB files
  119.         System.err.println("Loading MIBs: "+values[MIBS]);
  120.         receiver.loadMibs(values[MIBS]);
  121.     } catch (Exception ex) {
  122.         System.err.println("Error loading MIBs: "+ex);
  123.     }
  124.     // we need to instantiate a trap listener to listen for trap events
  125.     TrapListener listener = new TrapListener() {
  126.         // This method is called when Inform Request is received by SnmpTrapReceiver
  127.         public void receivedTrap(TrapEvent trap) {
  128.             // print PDU details
  129.         System.out.println( ((SnmpTrapReceiver)trap.getSource())
  130.             .getMibOperations().toString(trap.getTrapPDU()) );
  131. if( trap.getTrapPDU().getCommand() == SnmpAPI.TRP_REQ_MSG)
  132. {
  133.         System.out.println("Received Trap Notification from: "+trap.getRemoteHost());
  134.         com.adventnet.snmp.mibs.MibTrap trapDefn = // get trap defn
  135.             trap.getTrapDefinition();
  136.         if (trapDefn != null)  // print name and description
  137.             System.out.println("Trap Name: "+trapDefn.getName()+
  138.                        "nDescr: "+trapDefn.getDescription());
  139.          }
  140.          else if( trap.getTrapPDU().getCommand() == SnmpAPI.TRP2_REQ_MSG)
  141. {
  142.         System.out.println("Received Trap Notification from: "+trap.getRemoteHost());
  143. com.adventnet.snmp.mibs.MibNode notification = trap.getNotificationDefinition();
  144. if(notification != null)
  145. System.out.println("Notification Name: "+notification.getLabel()+
  146.    "nObjects: "+ notification.getObjects()+
  147.    "nStatus: "+ notification.getStatus()+
  148.    "nDescr: "+notification.getDescription()+
  149.    "nParent: "+ notification.getParent());
  150.         }
  151.          else if( trap.getTrapPDU().getCommand() == SnmpAPI.INFORM_REQ_MSG)
  152.  {
  153.          System.out.println("Received Inform Request from: "+trap.getRemoteHost());
  154.  }
  155.         }
  156.     };
  157.  
  158.     receiver.addTrapListener(listener);    
  159.     
  160.     System.out.println("Inform Receiver started at port "+receiver.getPort());
  161.     }
  162.     private static byte[] gethexValue(String value)
  163.     {
  164.         byte temp;
  165.         byte[] Key=new byte[value.length()/2 - 1];
  166.         String ss,str;
  167.         ss = value.substring(2);
  168.         for(int i = 0; i < ss.length(); i+=2)
  169.         {
  170.             str = ss.substring(i,i+2);
  171.             temp = (byte)Integer.parseInt(str,16);
  172.             Key[i/2] = temp;
  173.         }
  174.         return Key;    
  175.     }
  176. }