views:

114

answers:

2

Hi!!

I would like to write a code in java for network management and monitoring using snmp. Can somebody tell me how to go about with this? what are the inputs that are needed?

Thanks, ann

A: 

The SNMP4J project might be a good place to start.

Robert Christie
but can u tel me what exactly is SNMP4J?what is the difference between SNMP and SNMP4J
Ann
+1  A: 

I also recommend SNMP4J unless you're willing to pay for AdventNet SNMP library. Looks like adventnet got bought.

  • Usually you create an SNMP target(snmp version, host, authentication)
  • Set the list of OIDs to query
  • Retrieve the results or update some values

For your other question, SNMP is the protocol and SNMP4J is a java library to help you talk to that protocol.

John Doe
SNMP library is free, but if you need support you need to pay for it. I've been usin Adventnet g it for quite sometime now and its pretty simple compared to SNMP4J.
Panther24