/* $Id: snmpwalk.src,v 1.6 2002/09/09 05:36:52 parasuraman Exp $ */
/*
* @(#)snmpwalk.java
* Copyright (c) 2012 ZOHO Corp. All Rights Reserved.
* Please read the associated COPYRIGHTS file for more details.
*/
/**
* This is an example program to explain how to write an application to do
* the basic SNMP operation WALK using com.adventnet.snmp.snmp2 package of
* AdventNetSNMP2 api.
* The user could run this application by giving any one of the following usage.
*
* java snmpwalk [options] hostname oid
*
* v1 request:
* java snmpwalk snmpwalk [-d] [-c community] [-p port] [-t timeout] [-r retries] host OID
* e.g.
* java snmpwalk -p 161 -c public adventnet .1.3.6.1
*
* v2c request:
* java snmpwalk [-d] [-v version(v1,v2)] [-c community] [-p port] [-t timeout] [-r retries] host OID
* e.g.
* java snmpwalk -v v2 -p 161 -c public -m rfc1213-mib adventnet .1.3.6.1
*
* v3 request:
* java snmpwalk [-d] [-v version(v1,v2,v3)] [-c community] [-p port] [-r retries] [-t timeout] [-u user] [-a auth_protocol] [-w auth_password] [-s priv_password] [-i context_id] host OID
* e.g.
* java snmpwalk -v v3 -u initial2 -w initial2Pass -a MD5 10.3.2.120 .1.3
*
* If the oid is not starting with a dot (.) it will be prefixed by .1.3.6.1.2.1 .
* So the entire OID of 1.1.0 will become .1.3.6.1.2.1.1.1.0 . You can also
* give the entire OID .
*
* Options:
* [-d] - Debug output. By default off.
* [-c] - community String. By default "public".
* [-p] - remote port no. By default 161.
* [-t] - Timeout. By default 5000ms.
* [-r] - Retries. By default 0.
*
[-v] - version(v1 / v2 / v3). By default v1.
* [-u] - The v3 principal/userName
* [-a] - The authProtocol(MD5/SHA). Mandatory if authPassword is specified
* [-w] - The authentication password.
* [-s] - The privacy protocol password. Must be accompanied with auth password and authProtocol fields.
* [-n] - The context to be used for the v3 pdu.
* [-i] - The context to be used for the v3 pdu.
* Mandatory - The RemoteHost (agent).Format (string without double qoutes/IpAddress).
* Mandatory - Give multiple no. of Object Identifiers.
*/
import java.lang.*;
import java.util.*;
import java.net.*;
import com.adventnet.snmp.snmp2.*;
import com.adventnet.snmp.snmp2.usm.*;
public class snmpwalk
{
public static void main(String args[])
{
// Take care of getting options
String usage =
"\nsnmpwalk [-d] [-v version(v1,v2,v3)] \n" +
"[-c community] [-p port] [-r retries] \n" +
"[-t timeout] [-u user] [-a auth_protocol] \n" +
"[-w auth_password] [-s priv_password] \n" +
"[-n contextName] [-i contextID] \n" +
"[-DB_driver database_driver]\n" +
"[-DB_url database_url]\n" +
"[-DB_username database_username]\n" +
"[-DB_password database_password]\n" +
"host OID\n";
String options[] =
{
"-d", "-c", "-wc", "-p", "-r", "-t", "-m",
"-v", "-u", "-a", "-w", "-s", "-n", "-i",
"-DB_driver", "-DB_url", "-DB_username", "-DB_password"
};
String values[] =
{
"None", null, null, null, null, null, "None",
null, null, null, null, null, null, null,
null, null, null, null
};
ParseOptions opt = new ParseOptions(args,options,values, usage);
if (opt.remArgs.length!=2)
{
opt.usage_error();
}
// Start SNMP API
SnmpAPI api;
api = new SnmpAPI();
if (values[0].equals("Set"))
{
api.setDebug( true );
}
// Open session
SnmpSession session = new SnmpSession(api);
// set remote Host
session.setPeername( opt.remArgs[0] );
//set the values
SetValues setVal = new SetValues(session, values);
if(setVal.usage_error)
{
opt.usage_error();
}
String driver = values[14];
String url = values[15];
String username = values[16];
String password = values[17];
if(driver != null || url != null ||
username != null || password != null)
{
if(session.getVersion() != 3)
{
System.out.println(
"Database option can be used only for SNMPv3.");
System.exit(1);
}
if(driver == null)
{
System.out.println(
"The Database driver name should be given.");
System.exit(1);
}
if(url == null)
{
System.out.println("The Database URL should be given.");
System.exit(1);
}
try
{
api.setV3DatabaseFlag(true);
api.initJdbcParams(driver, url, username, password);
}
catch(Exception exp)
{
System.out.println("Unable to Establish Database Connection.");
System.out.println("Please check the driverName and url.");
System.exit(1);
}
}
// Build GETNEXT request PDU
SnmpPDU pdu = new SnmpPDU();
pdu.setCommand( api.GETNEXT_REQ_MSG );
// need to save the root OID to walk sub-tree
SnmpOID oid = new SnmpOID(opt.remArgs[1]);
int rootoid[] = (int[]) oid.toValue();
if (rootoid == null) //if don't have a valid OID for first, exit
{
System.err.println("Invalid OID argument: " + opt.remArgs[1]);
System.exit(1);
}
else
{
pdu.addNull(oid);
}
try
{
session.open();
}
catch (SnmpException e)
{
System.err.println("Error in open session "+e.getMessage());
System.exit(1);
}
if(session.getVersion()==SnmpAPI.SNMP_VERSION_3)
{
System.out.println("UserName = " + setVal.userName);
pdu.setUserName(setVal.userName.getBytes());
USMUtils.init_v3_params(
setVal.userName,
setVal.authProtocol,
setVal.authPassword,
setVal.privPassword,
session.getPeername(),
session.getRemotePort(),
session);
pdu.setContextName(setVal.contextName.getBytes());
pdu.setContextID(setVal.contextID.getBytes());
}
// loop for each PDU in the walk
while (true) // until received OID isn't in sub-tree
{
try
{
// Send PDU and receive response PDU
pdu = session.syncSend(pdu);
}
catch (SnmpException e)
{
System.err.println("Sending PDU"+e.getMessage());
System.exit(1);
}
if (pdu == null)
{
// timeout
System.out.println("Request timed out to: " + opt.remArgs[0] );
System.exit(1);
}
// stop if outside sub-tree
if (!isInSubTree(rootoid,pdu))
{
System.out.println("Not in sub tree.");
break;
}
int version = pdu.getVersion();
if(version == SnmpAPI.SNMP_VERSION_1)
{
// check for error
if (pdu.getErrstat() != 0)
{
System.out.println("Error Indication in response: " +
SnmpException.exceptionString((byte)pdu.getErrstat()) +
"\nErrindex: " + pdu.getErrindex());
System.exit(1);
}
// print response pdu variable-bindings
System.out.println(pdu.printVarBinds());
}
else if((version == SnmpAPI.SNMP_VERSION_2C) ||
(version == SnmpAPI.SNMP_VERSION_3))
{
Enumeration e = pdu.getVariableBindings().elements();
while(e.hasMoreElements())
{
int error = 0;
SnmpVarBind varbind = (SnmpVarBind)e.nextElement();
// check for error
if ( (error = varbind.getErrindex()) != 0)
{
System.out.println("Error Indication in response: " +
SnmpException.exceptionString((byte)error));
System.exit(1);
}
// print response pdu variable-bindings
System.out.println(pdu.printVarBinds());
}
}
else
{
System.out.println("Invalid Version Number");
}
// set GETNEXT_REQ_MSG to do walk
// Don't forget to set request id to 0 otherwise next request will fail
pdu.setReqid(0);
SnmpOID first_oid = pdu.getObjectID(0);
pdu = new SnmpPDU();
pdu.setCommand( api.GETNEXT_REQ_MSG );
pdu.setUserName(setVal.userName.getBytes());
pdu.setContextName(setVal.contextName.getBytes());
pdu.setContextID(setVal.contextID.getBytes());
pdu.addNull(first_oid);
} // end of while true
// Print the GroupCounters
String[] localAddr = session.getLocalAddresses();
int localPort = session.getLocalPort();
SnmpGroup group = api.getSnmpGroup(localAddr[localAddr.length - 1],localPort);
if(group != null)
{
System.out.println("The SnmpGroup Counter values :");
System.out.println("snmpInPkts = " + group.getSnmpInPkts());
System.out.println("snmpOutPkts = " + group.getSnmpOutPkts());
System.out.println("snmpInGetResponses = " + group.getSnmpInGetResponses());
System.out.println("snmpOutGetRequests = " + group.getSnmpOutGetRequests());
System.out.println("snmpOutGetNexts = " + group.getSnmpOutGetNexts());
}
// close session
session.close();
// stop api thread
api.close();
System.exit(0);
}
/** check if first varbind oid has rootoid as an ancestor in MIB tree */
static boolean isInSubTree(int[] rootoid, SnmpPDU pdu)
{
SnmpOID objID = (SnmpOID) pdu.getObjectID(0);
if (objID == null)
{
return false;
}
int oid[] = (int[]) objID.toValue();
if (oid == null)
{
return false;
}
if (oid.length < rootoid.length)
{
return false;
}
for (int i=0;i