Software development using SNMP
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
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.
The SNMP4J project might be a good place to start.
精彩评论