I am new to SNMP and have troubles understanding the SNMP requirements of a Java application I am required to implement. I am using openDMK to provide the SNMP support. Please excuse any brutal ignorance in my questions. I have read the RFC specs, but most of the text appear to be gibberish to me.
One requirement is that "SNMP support must be comformable with Alarm MIB (RFC 3877)".
- What does this mean?
- What is Alarm MIB used for?
- Is this related to SNMP Trap/Notification? Reading the RFC specs, I have the feeling that this is about the SNMP Notification/Trap that my application needs to send out to the managers in case something bad occurs (e.g. a threshold was exceeded). If so, I still don't understand what exactly I need to do with this requirement.
- I will need to define my own application's SNMP Trap definitions (i.e. not using the generic ones). How will my MIB be different now that I need to support Alarm MIB?
- Is it that, besides sending out a Notification, I need to store that Notification in the Alarm table? If so, what is the purpose of doing so?
Below is a method from the openDMK library to send out a SNMPv2 Trap:
public void snmpV2Trap(SnmpOid trapOid, SnmpVarBindList varBindList)
My understanding of how to use this method is
trapOid
will refer to the OID of the Notification in my application's MIB andvarBindList
is any additional parameters to send. So, how/where does Alarm MIB fit into this?
Another requirement is "SNMP support must be comformable with Alarm Reporting Control MIB (RFC 3878)".
- What does this mean?
- What is Alarm Reporting Control MIB used for?
- Any relation to SNMP Trap/Notification?
Thanks a bunch!