logstash-integration-snmp 4.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +23 -0
  3. data/CONTRIBUTORS +20 -0
  4. data/Gemfile +11 -0
  5. data/LICENSE +202 -0
  6. data/README.md +89 -0
  7. data/VERSION +1 -0
  8. data/docs/index.asciidoc +202 -0
  9. data/docs/input-snmp.asciidoc +524 -0
  10. data/docs/input-snmptrap.asciidoc +392 -0
  11. data/lib/logstash/inputs/snmp.rb +369 -0
  12. data/lib/logstash/inputs/snmptrap.rb +190 -0
  13. data/lib/logstash/plugin_mixins/snmp/common.rb +197 -0
  14. data/lib/logstash-integration-snmp_jars.rb +6 -0
  15. data/lib/mibs/ietf/ACCOUNTING-CONTROL-MIB.dic +1316 -0
  16. data/lib/mibs/ietf/ADSL-LINE-EXT-MIB.dic +1724 -0
  17. data/lib/mibs/ietf/ADSL-LINE-MIB.dic +7297 -0
  18. data/lib/mibs/ietf/ADSL-TC-MIB.dic +160 -0
  19. data/lib/mibs/ietf/ADSL2-LINE-MIB.dic +8663 -0
  20. data/lib/mibs/ietf/ADSL2-LINE-TC-MIB.dic +1462 -0
  21. data/lib/mibs/ietf/AGENTX-MIB.dic +817 -0
  22. data/lib/mibs/ietf/AGGREGATE-MIB.dic +708 -0
  23. data/lib/mibs/ietf/ALARM-MIB.dic +1734 -0
  24. data/lib/mibs/ietf/APM-MIB.dic +2870 -0
  25. data/lib/mibs/ietf/APPC-MIB.dic +8687 -0
  26. data/lib/mibs/ietf/APPLETALK-MIB.dic +4399 -0
  27. data/lib/mibs/ietf/APPLICATION-MIB.dic +3750 -0
  28. data/lib/mibs/ietf/APPN-DLUR-MIB.dic +972 -0
  29. data/lib/mibs/ietf/APPN-MIB.dic +9364 -0
  30. data/lib/mibs/ietf/APPN-TRAP-MIB.dic +664 -0
  31. data/lib/mibs/ietf/APS-MIB.dic +2430 -0
  32. data/lib/mibs/ietf/ARC-MIB.dic +552 -0
  33. data/lib/mibs/ietf/ATM-ACCOUNTING-INFORMATION-MIB.dic +816 -0
  34. data/lib/mibs/ietf/ATM-MIB.dic +4104 -0
  35. data/lib/mibs/ietf/ATM-TC-MIB.dic +914 -0
  36. data/lib/mibs/ietf/ATM2-MIB.dic +4715 -0
  37. data/lib/mibs/ietf/BFD-STD-MIB.dic +2367 -0
  38. data/lib/mibs/ietf/BFD-TC-STD-MIB.dic +202 -0
  39. data/lib/mibs/ietf/BGP4-MIB.dic +1931 -0
  40. data/lib/mibs/ietf/BLDG-HVAC-MIB.dic +812 -0
  41. data/lib/mibs/ietf/BRIDGE-MIB.dic +2257 -0
  42. data/lib/mibs/ietf/CAPWAP-BASE-MIB.dic +4128 -0
  43. data/lib/mibs/ietf/CAPWAP-DOT11-MIB.dic +482 -0
  44. data/lib/mibs/ietf/CHARACTER-MIB.dic +1140 -0
  45. data/lib/mibs/ietf/CIRCUIT-IF-MIB.dic +493 -0
  46. data/lib/mibs/ietf/CLNS-MIB.dic +1702 -0
  47. data/lib/mibs/ietf/COFFEE-POT-MIB.dic +282 -0
  48. data/lib/mibs/ietf/COPS-CLIENT-MIB.dic +1270 -0
  49. data/lib/mibs/ietf/DECNET-PHIV-MIB.dic +5837 -0
  50. data/lib/mibs/ietf/DIAL-CONTROL-MIB.dic +2139 -0
  51. data/lib/mibs/ietf/DIFFSERV-CONFIG-MIB.dic +378 -0
  52. data/lib/mibs/ietf/DIFFSERV-MIB.dic +5073 -0
  53. data/lib/mibs/ietf/DIRECTORY-SERVER-MIB.dic +1041 -0
  54. data/lib/mibs/ietf/DISMAN-EVENT-MIB.dic +3151 -0
  55. data/lib/mibs/ietf/DISMAN-EXPRESSION-MIB.dic +1716 -0
  56. data/lib/mibs/ietf/DISMAN-NSLOOKUP-MIB.dic +698 -0
  57. data/lib/mibs/ietf/DISMAN-PING-MIB.dic +2635 -0
  58. data/lib/mibs/ietf/DISMAN-SCHEDULE-MIB.dic +1744 -0
  59. data/lib/mibs/ietf/DISMAN-SCRIPT-MIB.dic +2820 -0
  60. data/lib/mibs/ietf/DISMAN-TRACEROUTE-MIB.dic +3239 -0
  61. data/lib/mibs/ietf/DLSW-MIB.dic +5635 -0
  62. data/lib/mibs/ietf/DNS-RESOLVER-MIB.dic +1765 -0
  63. data/lib/mibs/ietf/DNS-SERVER-MIB.dic +1593 -0
  64. data/lib/mibs/ietf/DOCS-BPI-MIB.dic +2634 -0
  65. data/lib/mibs/ietf/DOCS-CABLE-DEVICE-MIB.dic +5042 -0
  66. data/lib/mibs/ietf/DOCS-IETF-BPI2-MIB.dic +5478 -0
  67. data/lib/mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB.dic +2447 -0
  68. data/lib/mibs/ietf/DOCS-IETF-QOS-MIB.dic +4886 -0
  69. data/lib/mibs/ietf/DOCS-IETF-SUBMGT-MIB.dic +1331 -0
  70. data/lib/mibs/ietf/DOCS-IF-MIB.dic +7980 -0
  71. data/lib/mibs/ietf/DOT12-IF-MIB.dic +1066 -0
  72. data/lib/mibs/ietf/DOT12-RPTR-MIB.dic +2669 -0
  73. data/lib/mibs/ietf/DOT3-EPON-MIB.dic +3297 -0
  74. data/lib/mibs/ietf/DOT3-OAM-MIB.dic +2830 -0
  75. data/lib/mibs/ietf/DS0-MIB.dic +466 -0
  76. data/lib/mibs/ietf/DS0BUNDLE-MIB.dic +468 -0
  77. data/lib/mibs/ietf/DS1-MIB.dic +4890 -0
  78. data/lib/mibs/ietf/DS3-MIB.dic +2719 -0
  79. data/lib/mibs/ietf/DSA-MIB.dic +888 -0
  80. data/lib/mibs/ietf/DSMON-MIB.dic +6177 -0
  81. data/lib/mibs/ietf/DVB-RCS-MIB.dic +5764 -0
  82. data/lib/mibs/ietf/EBN-MIB.dic +1026 -0
  83. data/lib/mibs/ietf/EFM-CU-MIB.dic +4335 -0
  84. data/lib/mibs/ietf/ENTITY-MIB.dic +2235 -0
  85. data/lib/mibs/ietf/ENTITY-SENSOR-MIB.dic +653 -0
  86. data/lib/mibs/ietf/ENTITY-STATE-MIB.dic +457 -0
  87. data/lib/mibs/ietf/ENTITY-STATE-TC-MIB.dic +260 -0
  88. data/lib/mibs/ietf/ETHER-CHIPSET-MIB.dic +787 -0
  89. data/lib/mibs/ietf/EtherLike-MIB.dic +2548 -0
  90. data/lib/mibs/ietf/FC-MGMT-MIB.dic +3465 -0
  91. data/lib/mibs/ietf/FCIP-MGMT-MIB.dic +1596 -0
  92. data/lib/mibs/ietf/FDDI-SMT73-MIB.dic +3378 -0
  93. data/lib/mibs/ietf/FIBRE-CHANNEL-FE-MIB.dic +2504 -0
  94. data/lib/mibs/ietf/FLOAT-TC-MIB.dic +128 -0
  95. data/lib/mibs/ietf/FLOW-METER-MIB.dic +3201 -0
  96. data/lib/mibs/ietf/FORCES-MIB.dic +598 -0
  97. data/lib/mibs/ietf/FR-ATM-PVC-SERVICE-IWF-MIB.dic +1601 -0
  98. data/lib/mibs/ietf/FR-MFR-MIB.dic +1351 -0
  99. data/lib/mibs/ietf/FRAME-RELAY-DTE-MIB.dic +1688 -0
  100. data/lib/mibs/ietf/FRNETSERV-MIB.dic +3940 -0
  101. data/lib/mibs/ietf/FRSLD-MIB.dic +2580 -0
  102. data/lib/mibs/ietf/Finisher-MIB.dic +1416 -0
  103. data/lib/mibs/ietf/GMPLS-LABEL-STD-MIB.dic +965 -0
  104. data/lib/mibs/ietf/GMPLS-LSR-STD-MIB.dic +693 -0
  105. data/lib/mibs/ietf/GMPLS-TC-STD-MIB.dic +180 -0
  106. data/lib/mibs/ietf/GMPLS-TE-STD-MIB.dic +2542 -0
  107. data/lib/mibs/ietf/GSMP-MIB.dic +2468 -0
  108. data/lib/mibs/ietf/HC-ALARM-MIB.dic +1050 -0
  109. data/lib/mibs/ietf/HC-PerfHist-TC-MIB.dic +310 -0
  110. data/lib/mibs/ietf/HC-RMON-MIB.dic +4456 -0
  111. data/lib/mibs/ietf/HDSL2-SHDSL-LINE-MIB.dic +3955 -0
  112. data/lib/mibs/ietf/HOST-RESOURCES-MIB.dic +2453 -0
  113. data/lib/mibs/ietf/HPR-IP-MIB.dic +640 -0
  114. data/lib/mibs/ietf/HPR-MIB.dic +1959 -0
  115. data/lib/mibs/ietf/IANA-ITU-ALARM-TC-MIB.dic +936 -0
  116. data/lib/mibs/ietf/IF-CAP-STACK-MIB.dic +356 -0
  117. data/lib/mibs/ietf/IF-INVERTED-STACK-MIB.dic +220 -0
  118. data/lib/mibs/ietf/IF-MIB.dic +2753 -0
  119. data/lib/mibs/ietf/IFCP-MGMT-MIB.dic +1717 -0
  120. data/lib/mibs/ietf/IGMP-STD-MIB.dic +809 -0
  121. data/lib/mibs/ietf/INET-ADDRESS-MIB.dic +570 -0
  122. data/lib/mibs/ietf/INTEGRATED-SERVICES-GUARANTEED-MIB.dic +319 -0
  123. data/lib/mibs/ietf/INTEGRATED-SERVICES-MIB.dic +1196 -0
  124. data/lib/mibs/ietf/INTERFACETOPN-MIB.dic +1705 -0
  125. data/lib/mibs/ietf/IP-FORWARD-MIB.dic +1853 -0
  126. data/lib/mibs/ietf/IP-MIB.dic +7064 -0
  127. data/lib/mibs/ietf/IPATM-IPMC-MIB.dic +4830 -0
  128. data/lib/mibs/ietf/IPFIX-MIB.dic +2334 -0
  129. data/lib/mibs/ietf/IPFIX-SELECTOR-MIB.dic +215 -0
  130. data/lib/mibs/ietf/IPMCAST-MIB.dic +3390 -0
  131. data/lib/mibs/ietf/IPMROUTE-STD-MIB.dic +1246 -0
  132. data/lib/mibs/ietf/IPOA-MIB.dic +2372 -0
  133. data/lib/mibs/ietf/IPS-AUTH-MIB.dic +1609 -0
  134. data/lib/mibs/ietf/IPSEC-SPD-MIB.dic +3989 -0
  135. data/lib/mibs/ietf/IPV6-FLOW-LABEL-MIB.dic +110 -0
  136. data/lib/mibs/ietf/IPV6-ICMP-MIB.dic +748 -0
  137. data/lib/mibs/ietf/IPV6-MIB.dic +2028 -0
  138. data/lib/mibs/ietf/IPV6-MLD-MIB.dic +659 -0
  139. data/lib/mibs/ietf/IPV6-TCP-MIB.dic +332 -0
  140. data/lib/mibs/ietf/IPV6-UDP-MIB.dic +209 -0
  141. data/lib/mibs/ietf/ISCSI-MIB.dic +4613 -0
  142. data/lib/mibs/ietf/ISDN-MIB.dic +1796 -0
  143. data/lib/mibs/ietf/ISIS-MIB.dic +6215 -0
  144. data/lib/mibs/ietf/ISNS-MIB.dic +6578 -0
  145. data/lib/mibs/ietf/ITU-ALARM-MIB.dic +665 -0
  146. data/lib/mibs/ietf/ITU-ALARM-TC-MIB.dic +137 -0
  147. data/lib/mibs/ietf/Job-Monitoring-MIB.dic +2519 -0
  148. data/lib/mibs/ietf/L2TP-MIB.dic +4050 -0
  149. data/lib/mibs/ietf/LANGTAG-TC-MIB.dic +104 -0
  150. data/lib/mibs/ietf/LISP-MIB.dic +4067 -0
  151. data/lib/mibs/ietf/LMP-MIB.dic +5166 -0
  152. data/lib/mibs/ietf/MALLOC-MIB.dic +2156 -0
  153. data/lib/mibs/ietf/MAU-MIB.dic +2619 -0
  154. data/lib/mibs/ietf/MIDCOM-MIB.dic +2856 -0
  155. data/lib/mibs/ietf/MIOX25-MIB.dic +828 -0
  156. data/lib/mibs/ietf/MIP-MIB.dic +3473 -0
  157. data/lib/mibs/ietf/MOBILEIPV6-MIB.dic +5228 -0
  158. data/lib/mibs/ietf/MPLS-FTN-STD-MIB.dic +1594 -0
  159. data/lib/mibs/ietf/MPLS-L3VPN-STD-MIB.dic +2548 -0
  160. data/lib/mibs/ietf/MPLS-LC-ATM-STD-MIB.dic +491 -0
  161. data/lib/mibs/ietf/MPLS-LC-FR-STD-MIB.dic +395 -0
  162. data/lib/mibs/ietf/MPLS-LDP-ATM-STD-MIB.dic +1019 -0
  163. data/lib/mibs/ietf/MPLS-LDP-FRAME-RELAY-STD-MIB.dic +862 -0
  164. data/lib/mibs/ietf/MPLS-LDP-GENERIC-STD-MIB.dic +445 -0
  165. data/lib/mibs/ietf/MPLS-LDP-STD-MIB.dic +3657 -0
  166. data/lib/mibs/ietf/MPLS-LSR-STD-MIB.dic +3103 -0
  167. data/lib/mibs/ietf/MPLS-TC-STD-MIB.dic +911 -0
  168. data/lib/mibs/ietf/MPLS-TE-STD-MIB.dic +3673 -0
  169. data/lib/mibs/ietf/MSDP-MIB.dic +1893 -0
  170. data/lib/mibs/ietf/MTA-MIB.dic +1898 -0
  171. data/lib/mibs/ietf/Modem-MIB.dic +2054 -0
  172. data/lib/mibs/ietf/NAT-MIB.dic +3866 -0
  173. data/lib/mibs/ietf/NETWORK-SERVICES-MIB.dic +1034 -0
  174. data/lib/mibs/ietf/NHDP-MIB.dic +3005 -0
  175. data/lib/mibs/ietf/NHRP-MIB.dic +3660 -0
  176. data/lib/mibs/ietf/NOTIFICATION-LOG-MIB.dic +1156 -0
  177. data/lib/mibs/ietf/NTPv4-MIB.dic +1535 -0
  178. data/lib/mibs/ietf/OPT-IF-MIB.dic +8972 -0
  179. data/lib/mibs/ietf/OSPF-MIB.dic +5963 -0
  180. data/lib/mibs/ietf/OSPF-TRAP-MIB.dic +1190 -0
  181. data/lib/mibs/ietf/OSPFV3-MIB.dic +5708 -0
  182. data/lib/mibs/ietf/P-BRIDGE-MIB.dic +1499 -0
  183. data/lib/mibs/ietf/PARALLEL-MIB.dic +476 -0
  184. data/lib/mibs/ietf/PIM-MIB.dic +1393 -0
  185. data/lib/mibs/ietf/PIM-STD-MIB.dic +6819 -0
  186. data/lib/mibs/ietf/PINT-MIB.dic +830 -0
  187. data/lib/mibs/ietf/PKTC-IETF-MTA-MIB.dic +3191 -0
  188. data/lib/mibs/ietf/PKTC-IETF-SIG-MIB.dic +4713 -0
  189. data/lib/mibs/ietf/PMIPV6-MIB.dic +3010 -0
  190. data/lib/mibs/ietf/PMIPV6-TC-MIB.dic +293 -0
  191. data/lib/mibs/ietf/POLICY-BASED-MANAGEMENT-MIB.dic +3316 -0
  192. data/lib/mibs/ietf/POWER-ETHERNET-MIB.dic +959 -0
  193. data/lib/mibs/ietf/PPP-BRIDGE-NCP-MIB.dic +587 -0
  194. data/lib/mibs/ietf/PPP-IP-NCP-MIB.dic +269 -0
  195. data/lib/mibs/ietf/PPP-LCP-MIB.dic +994 -0
  196. data/lib/mibs/ietf/PPP-SEC-MIB.dic +411 -0
  197. data/lib/mibs/ietf/PSAMP-MIB.dic +998 -0
  198. data/lib/mibs/ietf/PTOPO-MIB.dic +1135 -0
  199. data/lib/mibs/ietf/PW-ATM-MIB.dic +1642 -0
  200. data/lib/mibs/ietf/PW-CEP-STD-MIB.dic +3661 -0
  201. data/lib/mibs/ietf/PW-STD-MIB.dic +3592 -0
  202. data/lib/mibs/ietf/PW-TC-STD-MIB.dic +437 -0
  203. data/lib/mibs/ietf/PW-TDM-MIB.dic +1896 -0
  204. data/lib/mibs/ietf/PerfHist-TC-MIB.dic +152 -0
  205. data/lib/mibs/ietf/Printer-MIB.dic +6665 -0
  206. data/lib/mibs/ietf/Q-BRIDGE-MIB.dic +3115 -0
  207. data/lib/mibs/ietf/RADIUS-ACC-CLIENT-MIB.dic +991 -0
  208. data/lib/mibs/ietf/RADIUS-ACC-SERVER-MIB.dic +1183 -0
  209. data/lib/mibs/ietf/RADIUS-AUTH-CLIENT-MIB.dic +1073 -0
  210. data/lib/mibs/ietf/RADIUS-AUTH-SERVER-MIB.dic +1251 -0
  211. data/lib/mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB.dic +1116 -0
  212. data/lib/mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB.dic +1003 -0
  213. data/lib/mibs/ietf/RAQMON-MIB.dic +2695 -0
  214. data/lib/mibs/ietf/RBRIDGE-MIB.dic +2981 -0
  215. data/lib/mibs/ietf/RDBMS-MIB.dic +1935 -0
  216. data/lib/mibs/ietf/RFC1065-SMI.dic +108 -0
  217. data/lib/mibs/ietf/RFC1155-SMI.dic +118 -0
  218. data/lib/mibs/ietf/RFC1158-MIB.dic +2440 -0
  219. data/lib/mibs/ietf/RFC1213-MIB.dic +3434 -0
  220. data/lib/mibs/ietf/RFC1269-MIB.dic +557 -0
  221. data/lib/mibs/ietf/RFC1271-MIB.dic +4135 -0
  222. data/lib/mibs/ietf/RFC1285-MIB.dic +2842 -0
  223. data/lib/mibs/ietf/RFC1316-MIB.dic +800 -0
  224. data/lib/mibs/ietf/RFC1381-MIB.dic +1347 -0
  225. data/lib/mibs/ietf/RFC1382-MIB.dic +3820 -0
  226. data/lib/mibs/ietf/RFC1414-MIB.dic +214 -0
  227. data/lib/mibs/ietf/RIPv2-MIB.dic +773 -0
  228. data/lib/mibs/ietf/RMON-MIB.dic +5551 -0
  229. data/lib/mibs/ietf/RMON2-MIB.dic +8224 -0
  230. data/lib/mibs/ietf/ROHC-MIB.dic +1613 -0
  231. data/lib/mibs/ietf/ROHC-RTP-MIB.dic +859 -0
  232. data/lib/mibs/ietf/ROHC-UNCOMPRESSED-MIB.dic +267 -0
  233. data/lib/mibs/ietf/RPKI-ROUTER-MIB.dic +1363 -0
  234. data/lib/mibs/ietf/RS-232-MIB.dic +1335 -0
  235. data/lib/mibs/ietf/RSERPOOL-MIB.dic +2501 -0
  236. data/lib/mibs/ietf/RSTP-MIB.dic +427 -0
  237. data/lib/mibs/ietf/RSVP-MIB.dic +4135 -0
  238. data/lib/mibs/ietf/RTP-MIB.dic +1376 -0
  239. data/lib/mibs/ietf/SCSI-MIB.dic +3804 -0
  240. data/lib/mibs/ietf/SCTP-MIB.dic +1924 -0
  241. data/lib/mibs/ietf/SFLOW-MIB.dic +568 -0
  242. data/lib/mibs/ietf/SIP-COMMON-MIB.dic +2769 -0
  243. data/lib/mibs/ietf/SIP-MIB.dic +1438 -0
  244. data/lib/mibs/ietf/SIP-SERVER-MIB.dic +1150 -0
  245. data/lib/mibs/ietf/SIP-TC-MIB.dic +257 -0
  246. data/lib/mibs/ietf/SIP-UA-MIB.dic +268 -0
  247. data/lib/mibs/ietf/SLAPM-MIB.dic +4527 -0
  248. data/lib/mibs/ietf/SMON-MIB.dic +1758 -0
  249. data/lib/mibs/ietf/SNA-NAU-MIB.dic +4042 -0
  250. data/lib/mibs/ietf/SNA-SDLC-MIB.dic +3858 -0
  251. data/lib/mibs/ietf/SNMP-COMMUNITY-MIB.dic +715 -0
  252. data/lib/mibs/ietf/SNMP-FRAMEWORK-MIB.dic +709 -0
  253. data/lib/mibs/ietf/SNMP-MPD-MIB.dic +230 -0
  254. data/lib/mibs/ietf/SNMP-NOTIFICATION-MIB.dic +859 -0
  255. data/lib/mibs/ietf/SNMP-PROXY-MIB.dic +414 -0
  256. data/lib/mibs/ietf/SNMP-REPEATER-MIB.dic +4335 -0
  257. data/lib/mibs/ietf/SNMP-SSH-TM-MIB.dic +447 -0
  258. data/lib/mibs/ietf/SNMP-TARGET-MIB.dic +924 -0
  259. data/lib/mibs/ietf/SNMP-TLS-TM-MIB.dic +1449 -0
  260. data/lib/mibs/ietf/SNMP-TSM-MIB.dic +315 -0
  261. data/lib/mibs/ietf/SNMP-USER-BASED-SM-MIB.dic +1164 -0
  262. data/lib/mibs/ietf/SNMP-USM-AES-MIB.dic +95 -0
  263. data/lib/mibs/ietf/SNMP-USM-DH-OBJECTS-MIB.dic +653 -0
  264. data/lib/mibs/ietf/SNMP-VIEW-BASED-ACM-MIB.dic +1202 -0
  265. data/lib/mibs/ietf/SNMPv2-MIB.dic +1382 -0
  266. data/lib/mibs/ietf/SNMPv2-SMI.dic +223 -0
  267. data/lib/mibs/ietf/SNMPv2-USEC-MIB.dic +405 -0
  268. data/lib/mibs/ietf/SONET-MIB.dic +3308 -0
  269. data/lib/mibs/ietf/SOURCE-ROUTING-MIB.dic +542 -0
  270. data/lib/mibs/ietf/SSPM-MIB.dic +1530 -0
  271. data/lib/mibs/ietf/SYSAPPL-MIB.dic +2092 -0
  272. data/lib/mibs/ietf/T11-FC-FABRIC-ADDR-MGR-MIB.dic +1779 -0
  273. data/lib/mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB.dic +2822 -0
  274. data/lib/mibs/ietf/T11-FC-FABRIC-LOCK-MIB.dic +700 -0
  275. data/lib/mibs/ietf/T11-FC-FSPF-MIB.dic +1889 -0
  276. data/lib/mibs/ietf/T11-FC-NAME-SERVER-MIB.dic +1775 -0
  277. data/lib/mibs/ietf/T11-FC-ROUTE-MIB.dic +655 -0
  278. data/lib/mibs/ietf/T11-FC-RSCN-MIB.dic +1110 -0
  279. data/lib/mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB.dic +770 -0
  280. data/lib/mibs/ietf/T11-FC-ZONE-SERVER-MIB.dic +3886 -0
  281. data/lib/mibs/ietf/T11-TC-MIB.dic +110 -0
  282. data/lib/mibs/ietf/TCP-ESTATS-MIB.dic +3926 -0
  283. data/lib/mibs/ietf/TCP-MIB.dic +1319 -0
  284. data/lib/mibs/ietf/TCPIPX-MIB.dic +457 -0
  285. data/lib/mibs/ietf/TE-LINK-STD-MIB.dic +2876 -0
  286. data/lib/mibs/ietf/TE-MIB.dic +2924 -0
  287. data/lib/mibs/ietf/TED-MIB.dic +1749 -0
  288. data/lib/mibs/ietf/TIME-AGGREGATE-MIB.dic +550 -0
  289. data/lib/mibs/ietf/TN3270E-MIB.dic +2785 -0
  290. data/lib/mibs/ietf/TN3270E-RT-MIB.dic +1317 -0
  291. data/lib/mibs/ietf/TOKEN-RING-RMON-MIB.dic +2820 -0
  292. data/lib/mibs/ietf/TOKENRING-MIB.dic +1184 -0
  293. data/lib/mibs/ietf/TOKENRING-STATION-SR-MIB.dic +292 -0
  294. data/lib/mibs/ietf/TRANSPORT-ADDRESS-MIB.dic +610 -0
  295. data/lib/mibs/ietf/TRIP-MIB.dic +3159 -0
  296. data/lib/mibs/ietf/TRIP-TC-MIB.dic +241 -0
  297. data/lib/mibs/ietf/TUNNEL-MIB.dic +1095 -0
  298. data/lib/mibs/ietf/UDP-MIB.dic +751 -0
  299. data/lib/mibs/ietf/UDPLITE-MIB.dic +704 -0
  300. data/lib/mibs/ietf/UPS-MIB.dic +3088 -0
  301. data/lib/mibs/ietf/URI-TC-MIB.dic +193 -0
  302. data/lib/mibs/ietf/UUID-TC-MIB.dic +135 -0
  303. data/lib/mibs/ietf/VDSL-LINE-EXT-MCM-MIB.dic +989 -0
  304. data/lib/mibs/ietf/VDSL-LINE-EXT-SCM-MIB.dic +605 -0
  305. data/lib/mibs/ietf/VDSL-LINE-MIB.dic +4518 -0
  306. data/lib/mibs/ietf/VDSL2-LINE-MIB.dic +11029 -0
  307. data/lib/mibs/ietf/VDSL2-LINE-TC-MIB.dic +3152 -0
  308. data/lib/mibs/ietf/VPN-TC-STD-MIB.dic +121 -0
  309. data/lib/mibs/ietf/VRRP-MIB.dic +1163 -0
  310. data/lib/mibs/ietf/VRRPV3-MIB.dic +1403 -0
  311. data/lib/mibs/ietf/WWW-MIB.dic +1810 -0
  312. data/lib/mibs/logstash/iso.dic +18 -0
  313. data/logstash-integration-snmp.gemspec +40 -0
  314. data/spec/fixtures/RFC1213-MIB.dic +3445 -0
  315. data/spec/fixtures/collision.dic +25 -0
  316. data/spec/integration/inputs/snmp_spec.rb +443 -0
  317. data/spec/integration/inputs/snmptrap_spec.rb +383 -0
  318. data/spec/unit/inputs/common_spec.rb +264 -0
  319. data/spec/unit/inputs/snmp_spec.rb +510 -0
  320. data/spec/unit/inputs/snmptrap_spec.rb +141 -0
  321. data/vendor/jar-dependencies/org/logstash/integrations/plugin/4.0.0/plugin-4.0.0.jar +0 -0
  322. data/vendor/jar-dependencies/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar +0 -0
  323. data/vendor/jar-dependencies/org/snmp4j/snmp4j/3.8.0/snmp4j-3.8.0.jar +0 -0
  324. metadata +523 -0
@@ -0,0 +1,1156 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python NOTIFICATION-LOG-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/NOTIFICATION-LOG-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "NOTIFICATION-LOG-MIB",
11
+
12
+ "NOTIFICATION-LOG-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Distributed Management Working Group""",
17
+ "contact" :
18
+ """Ramanathan Kavasseri
19
+ Cisco Systems, Inc.
20
+ 170 West Tasman Drive,
21
+ San Jose CA 95134-1706.
22
+ Phone: +1 408 527 2446
23
+ Email: ramk@cisco.com""",
24
+ "description" :
25
+ """The MIB module for logging SNMP Notifications, that is, Traps
26
+
27
+
28
+ and Informs.""",
29
+ "revisions" : (
30
+ {
31
+ "date" : "2000-11-27 00:00",
32
+ "description" :
33
+ """This is the initial version of this MIB.
34
+ Published as RFC 3014""",
35
+ },
36
+ ),
37
+ "identity node" : "notificationLogMIB",
38
+ },
39
+
40
+ "imports" : (
41
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
42
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
43
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
44
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
45
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
46
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
47
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
48
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Opaque"},
50
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
51
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
52
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
53
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
54
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
55
+ {"module" : "SNMPv2-TC", "name" : "TAddress"},
56
+ {"module" : "SNMPv2-TC", "name" : "TDomain"},
57
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
58
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpEngineID"},
59
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
60
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
61
+ ),
62
+
63
+ "nodes" : {
64
+ "notificationLogMIB" : {
65
+ "nodetype" : "node",
66
+ "moduleName" : "NOTIFICATION-LOG-MIB",
67
+ "oid" : "1.3.6.1.2.1.92",
68
+ "status" : "current",
69
+ }, # node
70
+ "notificationLogMIBObjects" : {
71
+ "nodetype" : "node",
72
+ "moduleName" : "NOTIFICATION-LOG-MIB",
73
+ "oid" : "1.3.6.1.2.1.92.1",
74
+ }, # node
75
+ "nlmConfig" : {
76
+ "nodetype" : "node",
77
+ "moduleName" : "NOTIFICATION-LOG-MIB",
78
+ "oid" : "1.3.6.1.2.1.92.1.1",
79
+ }, # node
80
+ "nlmConfigGlobalEntryLimit" : {
81
+ "nodetype" : "scalar",
82
+ "moduleName" : "NOTIFICATION-LOG-MIB",
83
+ "oid" : "1.3.6.1.2.1.92.1.1.1",
84
+ "status" : "current",
85
+ "syntax" : {
86
+ "type" : { "module" :"", "name" : "Unsigned32"},
87
+ },
88
+ "access" : "readwrite",
89
+ "default" : "0",
90
+ "description" :
91
+ """The maximum number of notification entries that may be held
92
+ in nlmLogTable for all nlmLogNames added together. A particular
93
+ setting does not guarantee that much data can be held.
94
+
95
+ If an application changes the limit while there are
96
+ Notifications in the log, the oldest Notifications MUST be
97
+ discarded to bring the log down to the new limit - thus the
98
+ value of nlmConfigGlobalEntryLimit MUST take precedence over
99
+ the values of nlmConfigGlobalAgeOut and nlmConfigLogEntryLimit,
100
+ even if the Notification being discarded has been present for
101
+ fewer minutes than the value of nlmConfigGlobalAgeOut, or if
102
+ the named log has fewer entries than that specified in
103
+ nlmConfigLogEntryLimit.
104
+
105
+ A value of 0 means no limit.
106
+
107
+ Please be aware that contention between multiple managers
108
+ trying to set this object to different values MAY affect the
109
+ reliability and completeness of data seen by each manager.""",
110
+ }, # scalar
111
+ "nlmConfigGlobalAgeOut" : {
112
+ "nodetype" : "scalar",
113
+ "moduleName" : "NOTIFICATION-LOG-MIB",
114
+ "oid" : "1.3.6.1.2.1.92.1.1.2",
115
+ "status" : "current",
116
+ "syntax" : {
117
+ "type" : { "module" :"", "name" : "Unsigned32"},
118
+ },
119
+ "access" : "readwrite",
120
+ "default" : "1440",
121
+ "units" : "minutes",
122
+ "description" :
123
+ """The number of minutes a Notification SHOULD be kept in a log
124
+ before it is automatically removed.
125
+
126
+ If an application changes the value of nlmConfigGlobalAgeOut,
127
+ Notifications older than the new time MAY be discarded to meet the
128
+ new time.
129
+
130
+ A value of 0 means no age out.
131
+
132
+ Please be aware that contention between multiple managers
133
+ trying to set this object to different values MAY affect the
134
+ reliability and completeness of data seen by each manager.""",
135
+ }, # scalar
136
+ "nlmConfigLogTable" : {
137
+ "nodetype" : "table",
138
+ "moduleName" : "NOTIFICATION-LOG-MIB",
139
+ "oid" : "1.3.6.1.2.1.92.1.1.3",
140
+ "status" : "current",
141
+ "description" :
142
+ """A table of logging control entries.""",
143
+ }, # table
144
+ "nlmConfigLogEntry" : {
145
+ "nodetype" : "row",
146
+ "moduleName" : "NOTIFICATION-LOG-MIB",
147
+ "oid" : "1.3.6.1.2.1.92.1.1.3.1",
148
+ "create" : "true",
149
+ "status" : "current",
150
+ "linkage" : [
151
+ "nlmLogName",
152
+ ],
153
+ "description" :
154
+ """A logging control entry. Depending on the entry's storage type
155
+ entries may be supplied by the system or created and deleted by
156
+ applications using nlmConfigLogEntryStatus.""",
157
+ }, # row
158
+ "nlmLogName" : {
159
+ "nodetype" : "column",
160
+ "moduleName" : "NOTIFICATION-LOG-MIB",
161
+ "oid" : "1.3.6.1.2.1.92.1.1.3.1.1",
162
+ "status" : "current",
163
+ "syntax" : {
164
+ "type" : {
165
+ "basetype" : "OctetString",
166
+ "parent module" : {
167
+ "name" : "SNMP-FRAMEWORK-MIB",
168
+ "type" : "SnmpAdminString",
169
+ },
170
+ "ranges" : [
171
+ {
172
+ "min" : "0",
173
+ "max" : "32"
174
+ },
175
+ ],
176
+ "range" : {
177
+ "min" : "0",
178
+ "max" : "32"
179
+ },
180
+ },
181
+ },
182
+ "access" : "noaccess",
183
+ "description" :
184
+ """The name of the log.
185
+
186
+ An implementation may allow multiple named logs, up to some
187
+ implementation-specific limit (which may be none). A
188
+ zero-length log name is reserved for creation and deletion by
189
+ the managed system, and MUST be used as the default log name by
190
+ systems that do not support named logs.""",
191
+ }, # column
192
+ "nlmConfigLogFilterName" : {
193
+ "nodetype" : "column",
194
+ "moduleName" : "NOTIFICATION-LOG-MIB",
195
+ "oid" : "1.3.6.1.2.1.92.1.1.3.1.2",
196
+ "status" : "current",
197
+ "syntax" : {
198
+ "type" : {
199
+ "basetype" : "OctetString",
200
+ "parent module" : {
201
+ "name" : "SNMP-FRAMEWORK-MIB",
202
+ "type" : "SnmpAdminString",
203
+ },
204
+ "ranges" : [
205
+ {
206
+ "min" : "0",
207
+ "max" : "32"
208
+ },
209
+ ],
210
+ "range" : {
211
+ "min" : "0",
212
+ "max" : "32"
213
+ },
214
+ },
215
+ },
216
+ "access" : "readwrite",
217
+ "default" : "",
218
+ "description" :
219
+ """A value of snmpNotifyFilterProfileName as used as an index
220
+ into the snmpNotifyFilterTable in the SNMP Notification MIB,
221
+ specifying the locally or remotely originated Notifications
222
+ to be filtered out and not logged in this log.
223
+
224
+ A zero-length value or a name that does not identify an
225
+ existing entry in snmpNotifyFilterTable indicate no
226
+ Notifications are to be logged in this log.""",
227
+ }, # column
228
+ "nlmConfigLogEntryLimit" : {
229
+ "nodetype" : "column",
230
+ "moduleName" : "NOTIFICATION-LOG-MIB",
231
+ "oid" : "1.3.6.1.2.1.92.1.1.3.1.3",
232
+ "status" : "current",
233
+ "syntax" : {
234
+ "type" : { "module" :"", "name" : "Unsigned32"},
235
+ },
236
+ "access" : "readwrite",
237
+ "default" : "0",
238
+ "description" :
239
+ """The maximum number of notification entries that can be held in
240
+ nlmLogTable for this named log. A particular setting does not
241
+ guarantee that that much data can be held.
242
+
243
+ If an application changes the limit while there are
244
+ Notifications in the log, the oldest Notifications are discarded
245
+ to bring the log down to the new limit.
246
+
247
+
248
+
249
+ A value of 0 indicates no limit.
250
+
251
+ Please be aware that contention between multiple managers
252
+ trying to set this object to different values MAY affect the
253
+ reliability and completeness of data seen by each manager.""",
254
+ }, # column
255
+ "nlmConfigLogAdminStatus" : {
256
+ "nodetype" : "column",
257
+ "moduleName" : "NOTIFICATION-LOG-MIB",
258
+ "oid" : "1.3.6.1.2.1.92.1.1.3.1.4",
259
+ "status" : "current",
260
+ "syntax" : {
261
+ "type" : {
262
+ "basetype" : "Enumeration",
263
+ "enabled" : {
264
+ "nodetype" : "namednumber",
265
+ "number" : "1"
266
+ },
267
+ "disabled" : {
268
+ "nodetype" : "namednumber",
269
+ "number" : "2"
270
+ },
271
+ },
272
+ },
273
+ "access" : "readwrite",
274
+ "default" : "enabled",
275
+ "description" :
276
+ """Control to enable or disable the log without otherwise
277
+ disturbing the log's entry.
278
+
279
+ Please be aware that contention between multiple managers
280
+ trying to set this object to different values MAY affect the
281
+ reliability and completeness of data seen by each manager.""",
282
+ }, # column
283
+ "nlmConfigLogOperStatus" : {
284
+ "nodetype" : "column",
285
+ "moduleName" : "NOTIFICATION-LOG-MIB",
286
+ "oid" : "1.3.6.1.2.1.92.1.1.3.1.5",
287
+ "status" : "current",
288
+ "syntax" : {
289
+ "type" : {
290
+ "basetype" : "Enumeration",
291
+ "disabled" : {
292
+ "nodetype" : "namednumber",
293
+ "number" : "1"
294
+ },
295
+ "operational" : {
296
+ "nodetype" : "namednumber",
297
+ "number" : "2"
298
+ },
299
+ "noFilter" : {
300
+ "nodetype" : "namednumber",
301
+ "number" : "3"
302
+ },
303
+ },
304
+ },
305
+ "access" : "readonly",
306
+ "description" :
307
+ """The operational status of this log:
308
+
309
+ disabled administratively disabled
310
+
311
+ operational administratively enabled and working
312
+
313
+ noFilter administratively enabled but either
314
+ nlmConfigLogFilterName is zero length
315
+ or does not name an existing entry in
316
+ snmpNotifyFilterTable""",
317
+ }, # column
318
+ "nlmConfigLogStorageType" : {
319
+ "nodetype" : "column",
320
+ "moduleName" : "NOTIFICATION-LOG-MIB",
321
+ "oid" : "1.3.6.1.2.1.92.1.1.3.1.6",
322
+ "status" : "current",
323
+ "syntax" : {
324
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
325
+ },
326
+ "access" : "readwrite",
327
+ "description" :
328
+ """The storage type of this conceptual row.""",
329
+ }, # column
330
+ "nlmConfigLogEntryStatus" : {
331
+ "nodetype" : "column",
332
+ "moduleName" : "NOTIFICATION-LOG-MIB",
333
+ "oid" : "1.3.6.1.2.1.92.1.1.3.1.7",
334
+ "status" : "current",
335
+ "syntax" : {
336
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
337
+ },
338
+ "access" : "readwrite",
339
+ "description" :
340
+ """Control for creating and deleting entries. Entries may be
341
+ modified while active.
342
+
343
+ For non-null-named logs, the managed system records the security
344
+ credentials from the request that sets nlmConfigLogStatus
345
+ to 'active' and uses that identity to apply access control to
346
+ the objects in the Notification to decide if that Notification
347
+ may be logged.""",
348
+ }, # column
349
+ "nlmStats" : {
350
+ "nodetype" : "node",
351
+ "moduleName" : "NOTIFICATION-LOG-MIB",
352
+ "oid" : "1.3.6.1.2.1.92.1.2",
353
+ }, # node
354
+ "nlmStatsGlobalNotificationsLogged" : {
355
+ "nodetype" : "scalar",
356
+ "moduleName" : "NOTIFICATION-LOG-MIB",
357
+ "oid" : "1.3.6.1.2.1.92.1.2.1",
358
+ "status" : "current",
359
+ "syntax" : {
360
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
361
+ },
362
+ "access" : "readonly",
363
+ "units" : "notifications",
364
+ "description" :
365
+ """The number of Notifications put into the nlmLogTable. This
366
+ counts a Notification once for each log entry, so a Notification
367
+ put into multiple logs is counted multiple times.""",
368
+ }, # scalar
369
+ "nlmStatsGlobalNotificationsBumped" : {
370
+ "nodetype" : "scalar",
371
+ "moduleName" : "NOTIFICATION-LOG-MIB",
372
+ "oid" : "1.3.6.1.2.1.92.1.2.2",
373
+ "status" : "current",
374
+ "syntax" : {
375
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
376
+ },
377
+ "access" : "readonly",
378
+ "units" : "notifications",
379
+ "description" :
380
+ """The number of log entries discarded to make room for a new entry
381
+ due to lack of resources or the value of nlmConfigGlobalEntryLimit
382
+ or nlmConfigLogEntryLimit. This does not include entries discarded
383
+ due to the value of nlmConfigGlobalAgeOut.""",
384
+ }, # scalar
385
+ "nlmStatsLogTable" : {
386
+ "nodetype" : "table",
387
+ "moduleName" : "NOTIFICATION-LOG-MIB",
388
+ "oid" : "1.3.6.1.2.1.92.1.2.3",
389
+ "status" : "current",
390
+ "description" :
391
+ """A table of Notification log statistics entries.""",
392
+ }, # table
393
+ "nlmStatsLogEntry" : {
394
+ "nodetype" : "row",
395
+ "moduleName" : "NOTIFICATION-LOG-MIB",
396
+ "oid" : "1.3.6.1.2.1.92.1.2.3.1",
397
+ "status" : "current",
398
+ "linkage" : [
399
+ { "NOTIFICATION-LOG-MIB" : {
400
+ "indexkind" : "augments",
401
+ "relatedNode" : "nlmConfigLogEntry",
402
+ }},
403
+ ],
404
+ "description" :
405
+ """A Notification log statistics entry.""",
406
+ }, # row
407
+ "nlmStatsLogNotificationsLogged" : {
408
+ "nodetype" : "column",
409
+ "moduleName" : "NOTIFICATION-LOG-MIB",
410
+ "oid" : "1.3.6.1.2.1.92.1.2.3.1.1",
411
+ "status" : "current",
412
+ "syntax" : {
413
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
414
+ },
415
+ "access" : "readonly",
416
+ "units" : "notifications",
417
+ "description" :
418
+ """The number of Notifications put in this named log.""",
419
+ }, # column
420
+ "nlmStatsLogNotificationsBumped" : {
421
+ "nodetype" : "column",
422
+ "moduleName" : "NOTIFICATION-LOG-MIB",
423
+ "oid" : "1.3.6.1.2.1.92.1.2.3.1.2",
424
+ "status" : "current",
425
+ "syntax" : {
426
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
427
+ },
428
+ "access" : "readonly",
429
+ "units" : "notifications",
430
+ "description" :
431
+ """The number of log entries discarded from this named log to make
432
+ room for a new entry due to lack of resources or the value of
433
+ nlmConfigGlobalEntryLimit or nlmConfigLogEntryLimit. This does not
434
+ include entries discarded due to the value of
435
+ nlmConfigGlobalAgeOut.""",
436
+ }, # column
437
+ "nlmLog" : {
438
+ "nodetype" : "node",
439
+ "moduleName" : "NOTIFICATION-LOG-MIB",
440
+ "oid" : "1.3.6.1.2.1.92.1.3",
441
+ }, # node
442
+ "nlmLogTable" : {
443
+ "nodetype" : "table",
444
+ "moduleName" : "NOTIFICATION-LOG-MIB",
445
+ "oid" : "1.3.6.1.2.1.92.1.3.1",
446
+ "status" : "current",
447
+ "description" :
448
+ """A table of Notification log entries.
449
+
450
+ It is an implementation-specific matter whether entries in this
451
+ table are preserved across initializations of the management
452
+ system. In general one would expect that they are not.
453
+
454
+ Note that keeping entries across initializations of the
455
+ management system leads to some confusion with counters and
456
+ TimeStamps, since both of those are based on sysUpTime, which
457
+ resets on management initialization. In this situation,
458
+ counters apply only after the reset and nlmLogTime for entries
459
+ made before the reset MUST be set to 0.""",
460
+ }, # table
461
+ "nlmLogEntry" : {
462
+ "nodetype" : "row",
463
+ "moduleName" : "NOTIFICATION-LOG-MIB",
464
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1",
465
+ "status" : "current",
466
+ "linkage" : [
467
+ "nlmLogName",
468
+ "nlmLogIndex",
469
+ ],
470
+ "description" :
471
+ """A Notification log entry.
472
+
473
+ Entries appear in this table when Notifications occur and pass
474
+ filtering by nlmConfigLogFilterName and access control. They are
475
+ removed to make way for new entries due to lack of resources or
476
+ the values of nlmConfigGlobalEntryLimit, nlmConfigGlobalAgeOut, or
477
+ nlmConfigLogEntryLimit.
478
+
479
+ If adding an entry would exceed nlmConfigGlobalEntryLimit or system
480
+ resources in general, the oldest entry in any log SHOULD be removed
481
+ to make room for the new one.
482
+
483
+ If adding an entry would exceed nlmConfigLogEntryLimit the oldest
484
+ entry in that log SHOULD be removed to make room for the new one.
485
+
486
+ Before the managed system puts a locally-generated Notification
487
+ into a non-null-named log it assures that the creator of the log
488
+ has access to the information in the Notification. If not it
489
+ does not log that Notification in that log.""",
490
+ }, # row
491
+ "nlmLogIndex" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "NOTIFICATION-LOG-MIB",
494
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.1",
495
+ "status" : "current",
496
+ "syntax" : {
497
+ "type" : {
498
+ "basetype" : "Unsigned32",
499
+ "ranges" : [
500
+ {
501
+ "min" : "1",
502
+ "max" : "4294967295"
503
+ },
504
+ ],
505
+ "range" : {
506
+ "min" : "1",
507
+ "max" : "4294967295"
508
+ },
509
+ },
510
+ },
511
+ "access" : "noaccess",
512
+ "description" :
513
+ """A monotonically increasing integer for the sole purpose of
514
+ indexing entries within the named log. When it reaches the
515
+ maximum value, an extremely unlikely event, the agent wraps the
516
+ value back to 1.""",
517
+ }, # column
518
+ "nlmLogTime" : {
519
+ "nodetype" : "column",
520
+ "moduleName" : "NOTIFICATION-LOG-MIB",
521
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.2",
522
+ "status" : "current",
523
+ "syntax" : {
524
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
525
+ },
526
+ "access" : "readonly",
527
+ "description" :
528
+ """The value of sysUpTime when the entry was placed in the log. If
529
+ the entry occurred before the most recent management system
530
+ initialization this object value MUST be set to zero.""",
531
+ }, # column
532
+ "nlmLogDateAndTime" : {
533
+ "nodetype" : "column",
534
+ "moduleName" : "NOTIFICATION-LOG-MIB",
535
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.3",
536
+ "status" : "current",
537
+ "syntax" : {
538
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
539
+ },
540
+ "access" : "readonly",
541
+ "description" :
542
+ """The local date and time when the entry was logged, instantiated
543
+ only by systems that have date and time capability.""",
544
+ }, # column
545
+ "nlmLogEngineID" : {
546
+ "nodetype" : "column",
547
+ "moduleName" : "NOTIFICATION-LOG-MIB",
548
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.4",
549
+ "status" : "current",
550
+ "syntax" : {
551
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpEngineID"},
552
+ },
553
+ "access" : "readonly",
554
+ "description" :
555
+ """The identification of the SNMP engine at which the Notification
556
+
557
+
558
+ originated.
559
+
560
+ If the log can contain Notifications from only one engine
561
+ or the Trap is in SNMPv1 format, this object is a zero-length
562
+ string.""",
563
+ }, # column
564
+ "nlmLogEngineTAddress" : {
565
+ "nodetype" : "column",
566
+ "moduleName" : "NOTIFICATION-LOG-MIB",
567
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.5",
568
+ "status" : "current",
569
+ "syntax" : {
570
+ "type" : { "module" :"SNMPv2-TC", "name" : "TAddress"},
571
+ },
572
+ "access" : "readonly",
573
+ "description" :
574
+ """The transport service address of the SNMP engine from which the
575
+ Notification was received, formatted according to the corresponding
576
+ value of nlmLogEngineTDomain. This is used to identify the source
577
+ of an SNMPv1 trap, since an nlmLogEngineId cannot be extracted
578
+ from the SNMPv1 trap pdu.
579
+
580
+ This object MUST always be instantiated, even if the log
581
+ can contain Notifications from only one engine.
582
+
583
+ Please be aware that the nlmLogEngineTAddress may not uniquely
584
+ identify the SNMP engine from which the Notification was received.
585
+ For example, if an SNMP engine uses DHCP or NAT to obtain
586
+ ip addresses, the address it uses may be shared with other
587
+ network devices, and hence will not uniquely identify the
588
+ SNMP engine.""",
589
+ }, # column
590
+ "nlmLogEngineTDomain" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "NOTIFICATION-LOG-MIB",
593
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.6",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : { "module" :"SNMPv2-TC", "name" : "TDomain"},
597
+ },
598
+ "access" : "readonly",
599
+ "description" :
600
+ """Indicates the kind of transport service by which a Notification
601
+ was received from an SNMP engine. nlmLogEngineTAddress contains
602
+ the transport service address of the SNMP engine from which
603
+ this Notification was received.
604
+
605
+ Possible values for this object are presently found in the
606
+ Transport Mappings for SNMPv2 document (RFC 1906 [8]).""",
607
+ }, # column
608
+ "nlmLogContextEngineID" : {
609
+ "nodetype" : "column",
610
+ "moduleName" : "NOTIFICATION-LOG-MIB",
611
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.7",
612
+ "status" : "current",
613
+ "syntax" : {
614
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpEngineID"},
615
+ },
616
+ "access" : "readonly",
617
+ "description" :
618
+ """If the Notification was received in a protocol which has a
619
+ contextEngineID element like SNMPv3, this object has that value.
620
+ Otherwise its value is a zero-length string.""",
621
+ }, # column
622
+ "nlmLogContextName" : {
623
+ "nodetype" : "column",
624
+ "moduleName" : "NOTIFICATION-LOG-MIB",
625
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.8",
626
+ "status" : "current",
627
+ "syntax" : {
628
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
629
+ },
630
+ "access" : "readonly",
631
+ "description" :
632
+ """The name of the SNMP MIB context from which the Notification came.
633
+ For SNMPv1 Traps this is the community string from the Trap.""",
634
+ }, # column
635
+ "nlmLogNotificationID" : {
636
+ "nodetype" : "column",
637
+ "moduleName" : "NOTIFICATION-LOG-MIB",
638
+ "oid" : "1.3.6.1.2.1.92.1.3.1.1.9",
639
+ "status" : "current",
640
+ "syntax" : {
641
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
642
+ },
643
+ "access" : "readonly",
644
+ "description" :
645
+ """The NOTIFICATION-TYPE object identifier of the Notification that
646
+ occurred.""",
647
+ }, # column
648
+ "nlmLogVariableTable" : {
649
+ "nodetype" : "table",
650
+ "moduleName" : "NOTIFICATION-LOG-MIB",
651
+ "oid" : "1.3.6.1.2.1.92.1.3.2",
652
+ "status" : "current",
653
+ "description" :
654
+ """A table of variables to go with Notification log entries.""",
655
+ }, # table
656
+ "nlmLogVariableEntry" : {
657
+ "nodetype" : "row",
658
+ "moduleName" : "NOTIFICATION-LOG-MIB",
659
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1",
660
+ "status" : "current",
661
+ "linkage" : [
662
+ "nlmLogName",
663
+ "nlmLogIndex",
664
+ "nlmLogVariableIndex",
665
+ ],
666
+ "description" :
667
+ """A Notification log entry variable.
668
+
669
+ Entries appear in this table when there are variables in
670
+ the varbind list of a Notification in nlmLogTable.""",
671
+ }, # row
672
+ "nlmLogVariableIndex" : {
673
+ "nodetype" : "column",
674
+ "moduleName" : "NOTIFICATION-LOG-MIB",
675
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.1",
676
+ "status" : "current",
677
+ "syntax" : {
678
+ "type" : {
679
+ "basetype" : "Unsigned32",
680
+ "ranges" : [
681
+ {
682
+ "min" : "1",
683
+ "max" : "4294967295"
684
+ },
685
+ ],
686
+ "range" : {
687
+ "min" : "1",
688
+ "max" : "4294967295"
689
+ },
690
+ },
691
+ },
692
+ "access" : "noaccess",
693
+ "description" :
694
+ """A monotonically increasing integer, starting at 1 for a given
695
+ nlmLogIndex, for indexing variables within the logged
696
+ Notification.""",
697
+ }, # column
698
+ "nlmLogVariableID" : {
699
+ "nodetype" : "column",
700
+ "moduleName" : "NOTIFICATION-LOG-MIB",
701
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.2",
702
+ "status" : "current",
703
+ "syntax" : {
704
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
705
+ },
706
+ "access" : "readonly",
707
+ "description" :
708
+ """The variable's object identifier.""",
709
+ }, # column
710
+ "nlmLogVariableValueType" : {
711
+ "nodetype" : "column",
712
+ "moduleName" : "NOTIFICATION-LOG-MIB",
713
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.3",
714
+ "status" : "current",
715
+ "syntax" : {
716
+ "type" : {
717
+ "basetype" : "Enumeration",
718
+ "counter32" : {
719
+ "nodetype" : "namednumber",
720
+ "number" : "1"
721
+ },
722
+ "unsigned32" : {
723
+ "nodetype" : "namednumber",
724
+ "number" : "2"
725
+ },
726
+ "timeTicks" : {
727
+ "nodetype" : "namednumber",
728
+ "number" : "3"
729
+ },
730
+ "integer32" : {
731
+ "nodetype" : "namednumber",
732
+ "number" : "4"
733
+ },
734
+ "ipAddress" : {
735
+ "nodetype" : "namednumber",
736
+ "number" : "5"
737
+ },
738
+ "octetString" : {
739
+ "nodetype" : "namednumber",
740
+ "number" : "6"
741
+ },
742
+ "objectId" : {
743
+ "nodetype" : "namednumber",
744
+ "number" : "7"
745
+ },
746
+ "counter64" : {
747
+ "nodetype" : "namednumber",
748
+ "number" : "8"
749
+ },
750
+ "opaque" : {
751
+ "nodetype" : "namednumber",
752
+ "number" : "9"
753
+ },
754
+ },
755
+ },
756
+ "access" : "readonly",
757
+ "description" :
758
+ """The type of the value. One and only one of the value
759
+ objects that follow must be instantiated, based on this type.""",
760
+ }, # column
761
+ "nlmLogVariableCounter32Val" : {
762
+ "nodetype" : "column",
763
+ "moduleName" : "NOTIFICATION-LOG-MIB",
764
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.4",
765
+ "status" : "current",
766
+ "syntax" : {
767
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
768
+ },
769
+ "access" : "readonly",
770
+ "description" :
771
+ """The value when nlmLogVariableType is 'counter32'.""",
772
+ }, # column
773
+ "nlmLogVariableUnsigned32Val" : {
774
+ "nodetype" : "column",
775
+ "moduleName" : "NOTIFICATION-LOG-MIB",
776
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.5",
777
+ "status" : "current",
778
+ "syntax" : {
779
+ "type" : { "module" :"", "name" : "Unsigned32"},
780
+ },
781
+ "access" : "readonly",
782
+ "description" :
783
+ """The value when nlmLogVariableType is 'unsigned32'.""",
784
+ }, # column
785
+ "nlmLogVariableTimeTicksVal" : {
786
+ "nodetype" : "column",
787
+ "moduleName" : "NOTIFICATION-LOG-MIB",
788
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.6",
789
+ "status" : "current",
790
+ "syntax" : {
791
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
792
+ },
793
+ "access" : "readonly",
794
+ "description" :
795
+ """The value when nlmLogVariableType is 'timeTicks'.""",
796
+ }, # column
797
+ "nlmLogVariableInteger32Val" : {
798
+ "nodetype" : "column",
799
+ "moduleName" : "NOTIFICATION-LOG-MIB",
800
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.7",
801
+ "status" : "current",
802
+ "syntax" : {
803
+ "type" : { "module" :"", "name" : "Integer32"},
804
+ },
805
+ "access" : "readonly",
806
+ "description" :
807
+ """The value when nlmLogVariableType is 'integer32'.""",
808
+ }, # column
809
+ "nlmLogVariableOctetStringVal" : {
810
+ "nodetype" : "column",
811
+ "moduleName" : "NOTIFICATION-LOG-MIB",
812
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.8",
813
+ "status" : "current",
814
+ "syntax" : {
815
+ "type" : { "module" :"", "name" : "OctetString"},
816
+ },
817
+ "access" : "readonly",
818
+ "description" :
819
+ """The value when nlmLogVariableType is 'octetString'.""",
820
+ }, # column
821
+ "nlmLogVariableIpAddressVal" : {
822
+ "nodetype" : "column",
823
+ "moduleName" : "NOTIFICATION-LOG-MIB",
824
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.9",
825
+ "status" : "current",
826
+ "syntax" : {
827
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
828
+ },
829
+ "access" : "readonly",
830
+ "description" :
831
+ """The value when nlmLogVariableType is 'ipAddress'.
832
+ Although this seems to be unfriendly for IPv6, we
833
+ have to recognize that there are a number of older
834
+ MIBs that do contain an IPv4 format address, known
835
+ as IpAddress.
836
+
837
+ IPv6 addresses are represented using TAddress or
838
+ InetAddress, and so the underlying datatype is
839
+
840
+
841
+ OCTET STRING, and their value would be stored in
842
+ the nlmLogVariableOctetStringVal column.""",
843
+ }, # column
844
+ "nlmLogVariableOidVal" : {
845
+ "nodetype" : "column",
846
+ "moduleName" : "NOTIFICATION-LOG-MIB",
847
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.10",
848
+ "status" : "current",
849
+ "syntax" : {
850
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
851
+ },
852
+ "access" : "readonly",
853
+ "description" :
854
+ """The value when nlmLogVariableType is 'objectId'.""",
855
+ }, # column
856
+ "nlmLogVariableCounter64Val" : {
857
+ "nodetype" : "column",
858
+ "moduleName" : "NOTIFICATION-LOG-MIB",
859
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.11",
860
+ "status" : "current",
861
+ "syntax" : {
862
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
863
+ },
864
+ "access" : "readonly",
865
+ "description" :
866
+ """The value when nlmLogVariableType is 'counter64'.""",
867
+ }, # column
868
+ "nlmLogVariableOpaqueVal" : {
869
+ "nodetype" : "column",
870
+ "moduleName" : "NOTIFICATION-LOG-MIB",
871
+ "oid" : "1.3.6.1.2.1.92.1.3.2.1.12",
872
+ "status" : "current",
873
+ "syntax" : {
874
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Opaque"},
875
+ },
876
+ "access" : "readonly",
877
+ "description" :
878
+ """The value when nlmLogVariableType is 'opaque'.""",
879
+ }, # column
880
+ "notificationLogMIBConformance" : {
881
+ "nodetype" : "node",
882
+ "moduleName" : "NOTIFICATION-LOG-MIB",
883
+ "oid" : "1.3.6.1.2.1.92.3",
884
+ }, # node
885
+ "notificationLogMIBCompliances" : {
886
+ "nodetype" : "node",
887
+ "moduleName" : "NOTIFICATION-LOG-MIB",
888
+ "oid" : "1.3.6.1.2.1.92.3.1",
889
+ }, # node
890
+ "notificationLogMIBGroups" : {
891
+ "nodetype" : "node",
892
+ "moduleName" : "NOTIFICATION-LOG-MIB",
893
+ "oid" : "1.3.6.1.2.1.92.3.2",
894
+ }, # node
895
+ }, # nodes
896
+
897
+ "groups" : {
898
+ "notificationLogConfigGroup" : {
899
+ "nodetype" : "group",
900
+ "moduleName" : "NOTIFICATION-LOG-MIB",
901
+ "oid" : "1.3.6.1.2.1.92.3.2.1",
902
+ "status" : "current",
903
+ "members" : {
904
+ "nlmConfigGlobalEntryLimit" : {
905
+ "nodetype" : "member",
906
+ "module" : "NOTIFICATION-LOG-MIB"
907
+ },
908
+ "nlmConfigGlobalAgeOut" : {
909
+ "nodetype" : "member",
910
+ "module" : "NOTIFICATION-LOG-MIB"
911
+ },
912
+ "nlmConfigLogFilterName" : {
913
+ "nodetype" : "member",
914
+ "module" : "NOTIFICATION-LOG-MIB"
915
+ },
916
+ "nlmConfigLogEntryLimit" : {
917
+ "nodetype" : "member",
918
+ "module" : "NOTIFICATION-LOG-MIB"
919
+ },
920
+ "nlmConfigLogAdminStatus" : {
921
+ "nodetype" : "member",
922
+ "module" : "NOTIFICATION-LOG-MIB"
923
+ },
924
+ "nlmConfigLogOperStatus" : {
925
+ "nodetype" : "member",
926
+ "module" : "NOTIFICATION-LOG-MIB"
927
+ },
928
+ "nlmConfigLogStorageType" : {
929
+ "nodetype" : "member",
930
+ "module" : "NOTIFICATION-LOG-MIB"
931
+ },
932
+ "nlmConfigLogEntryStatus" : {
933
+ "nodetype" : "member",
934
+ "module" : "NOTIFICATION-LOG-MIB"
935
+ },
936
+ }, # members
937
+ "description" :
938
+ """Notification log configuration management.""",
939
+ }, # group
940
+ "notificationLogStatsGroup" : {
941
+ "nodetype" : "group",
942
+ "moduleName" : "NOTIFICATION-LOG-MIB",
943
+ "oid" : "1.3.6.1.2.1.92.3.2.2",
944
+ "status" : "current",
945
+ "members" : {
946
+ "nlmStatsGlobalNotificationsLogged" : {
947
+ "nodetype" : "member",
948
+ "module" : "NOTIFICATION-LOG-MIB"
949
+ },
950
+ "nlmStatsGlobalNotificationsBumped" : {
951
+ "nodetype" : "member",
952
+ "module" : "NOTIFICATION-LOG-MIB"
953
+ },
954
+ "nlmStatsLogNotificationsLogged" : {
955
+ "nodetype" : "member",
956
+ "module" : "NOTIFICATION-LOG-MIB"
957
+ },
958
+ "nlmStatsLogNotificationsBumped" : {
959
+ "nodetype" : "member",
960
+ "module" : "NOTIFICATION-LOG-MIB"
961
+ },
962
+ }, # members
963
+ "description" :
964
+ """Notification log statistics.""",
965
+ }, # group
966
+ "notificationLogLogGroup" : {
967
+ "nodetype" : "group",
968
+ "moduleName" : "NOTIFICATION-LOG-MIB",
969
+ "oid" : "1.3.6.1.2.1.92.3.2.3",
970
+ "status" : "current",
971
+ "members" : {
972
+ "nlmLogTime" : {
973
+ "nodetype" : "member",
974
+ "module" : "NOTIFICATION-LOG-MIB"
975
+ },
976
+ "nlmLogEngineID" : {
977
+ "nodetype" : "member",
978
+ "module" : "NOTIFICATION-LOG-MIB"
979
+ },
980
+ "nlmLogEngineTAddress" : {
981
+ "nodetype" : "member",
982
+ "module" : "NOTIFICATION-LOG-MIB"
983
+ },
984
+ "nlmLogEngineTDomain" : {
985
+ "nodetype" : "member",
986
+ "module" : "NOTIFICATION-LOG-MIB"
987
+ },
988
+ "nlmLogContextEngineID" : {
989
+ "nodetype" : "member",
990
+ "module" : "NOTIFICATION-LOG-MIB"
991
+ },
992
+ "nlmLogContextName" : {
993
+ "nodetype" : "member",
994
+ "module" : "NOTIFICATION-LOG-MIB"
995
+ },
996
+ "nlmLogNotificationID" : {
997
+ "nodetype" : "member",
998
+ "module" : "NOTIFICATION-LOG-MIB"
999
+ },
1000
+ "nlmLogVariableID" : {
1001
+ "nodetype" : "member",
1002
+ "module" : "NOTIFICATION-LOG-MIB"
1003
+ },
1004
+ "nlmLogVariableValueType" : {
1005
+ "nodetype" : "member",
1006
+ "module" : "NOTIFICATION-LOG-MIB"
1007
+ },
1008
+ "nlmLogVariableCounter32Val" : {
1009
+ "nodetype" : "member",
1010
+ "module" : "NOTIFICATION-LOG-MIB"
1011
+ },
1012
+ "nlmLogVariableUnsigned32Val" : {
1013
+ "nodetype" : "member",
1014
+ "module" : "NOTIFICATION-LOG-MIB"
1015
+ },
1016
+ "nlmLogVariableTimeTicksVal" : {
1017
+ "nodetype" : "member",
1018
+ "module" : "NOTIFICATION-LOG-MIB"
1019
+ },
1020
+ "nlmLogVariableInteger32Val" : {
1021
+ "nodetype" : "member",
1022
+ "module" : "NOTIFICATION-LOG-MIB"
1023
+ },
1024
+ "nlmLogVariableOctetStringVal" : {
1025
+ "nodetype" : "member",
1026
+ "module" : "NOTIFICATION-LOG-MIB"
1027
+ },
1028
+ "nlmLogVariableIpAddressVal" : {
1029
+ "nodetype" : "member",
1030
+ "module" : "NOTIFICATION-LOG-MIB"
1031
+ },
1032
+ "nlmLogVariableOidVal" : {
1033
+ "nodetype" : "member",
1034
+ "module" : "NOTIFICATION-LOG-MIB"
1035
+ },
1036
+ "nlmLogVariableCounter64Val" : {
1037
+ "nodetype" : "member",
1038
+ "module" : "NOTIFICATION-LOG-MIB"
1039
+ },
1040
+ "nlmLogVariableOpaqueVal" : {
1041
+ "nodetype" : "member",
1042
+ "module" : "NOTIFICATION-LOG-MIB"
1043
+ },
1044
+ }, # members
1045
+ "description" :
1046
+ """Notification log data.""",
1047
+ }, # group
1048
+ "notificationLogDateGroup" : {
1049
+ "nodetype" : "group",
1050
+ "moduleName" : "NOTIFICATION-LOG-MIB",
1051
+ "oid" : "1.3.6.1.2.1.92.3.2.4",
1052
+ "status" : "current",
1053
+ "members" : {
1054
+ "nlmLogDateAndTime" : {
1055
+ "nodetype" : "member",
1056
+ "module" : "NOTIFICATION-LOG-MIB"
1057
+ },
1058
+ }, # members
1059
+ "description" :
1060
+ """Conditionally mandatory notification log data.
1061
+ This group is mandatory on systems that keep wall
1062
+ clock date and time and should not be implemented
1063
+ on systems that do not have a wall clock date.""",
1064
+ }, # group
1065
+ }, # groups
1066
+
1067
+ "compliances" : {
1068
+ "notificationLogMIBCompliance" : {
1069
+ "nodetype" : "compliance",
1070
+ "moduleName" : "NOTIFICATION-LOG-MIB",
1071
+ "oid" : "1.3.6.1.2.1.92.3.1.1",
1072
+ "status" : "current",
1073
+ "description" :
1074
+ """The compliance statement for entities which implement
1075
+ the Notification Log MIB.""",
1076
+ "requires" : {
1077
+ "notificationLogConfigGroup" : {
1078
+ "nodetype" : "mandatory",
1079
+ "module" : "NOTIFICATION-LOG-MIB"
1080
+ },
1081
+ "notificationLogStatsGroup" : {
1082
+ "nodetype" : "mandatory",
1083
+ "module" : "NOTIFICATION-LOG-MIB"
1084
+ },
1085
+ "notificationLogLogGroup" : {
1086
+ "nodetype" : "mandatory",
1087
+ "module" : "NOTIFICATION-LOG-MIB"
1088
+ },
1089
+ "notificationLogDateGroup" : {
1090
+ "nodetype" : "optional",
1091
+ "module" : "NOTIFICATION-LOG-MIB",
1092
+ "description" :
1093
+ """This group is mandatory on systems that keep wall clock
1094
+ date and time and should not be implemented on systems that
1095
+ do not have a wall clock date.""",
1096
+ },
1097
+ }, # requires
1098
+ "refinements" : {
1099
+ "nlmConfigGlobalEntryLimit" : {
1100
+ "module" : "NOTIFICATION-LOG-MIB",
1101
+ "syntax" : {
1102
+ "type" : {
1103
+ "basetype" : "Unsigned32",
1104
+ "ranges" : [
1105
+ {
1106
+ "min" : "0",
1107
+ "max" : "4294967295"
1108
+ },
1109
+ ],
1110
+ "range" : {
1111
+ "min" : "0",
1112
+ "max" : "4294967295"
1113
+ },
1114
+ },
1115
+ }, # syntax
1116
+ "access" : "readonly",
1117
+ "description" :
1118
+ """Implementations may choose a limit and not allow it to be
1119
+ changed or may enforce an upper or lower bound on the
1120
+ limit.""",
1121
+ },
1122
+ "nlmConfigLogEntryLimit" : {
1123
+ "module" : "NOTIFICATION-LOG-MIB",
1124
+ "syntax" : {
1125
+ "type" : {
1126
+ "basetype" : "Unsigned32",
1127
+ "ranges" : [
1128
+ {
1129
+ "min" : "0",
1130
+ "max" : "4294967295"
1131
+ },
1132
+ ],
1133
+ "range" : {
1134
+ "min" : "0",
1135
+ "max" : "4294967295"
1136
+ },
1137
+ },
1138
+ }, # syntax
1139
+ "access" : "readonly",
1140
+ "description" :
1141
+ """Implementations may choose a limit and not allow it to be
1142
+ changed or may enforce an upper or lower bound on the
1143
+ limit.""",
1144
+ },
1145
+ "nlmConfigLogEntryStatus" : {
1146
+ "module" : "NOTIFICATION-LOG-MIB",
1147
+ "access" : "readonly",
1148
+ "description" :
1149
+ """Implementations may disallow the creation of named logs.""",
1150
+ },
1151
+ }, # refinements
1152
+
1153
+ }, # compliance
1154
+ }, # compliances
1155
+
1156
+ }