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,1382 @@
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 SNMPv2-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SNMPv2-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SNMPv2-MIB",
11
+
12
+ "SNMPv2-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF SNMPv3 Working Group""",
17
+ "contact" :
18
+ """WG-EMail: snmpv3@lists.tislabs.com
19
+ Subscribe: snmpv3-request@lists.tislabs.com
20
+
21
+ Co-Chair: Russ Mundy
22
+ Network Associates Laboratories
23
+ postal: 15204 Omega Drive, Suite 300
24
+ Rockville, MD 20850-4601
25
+ USA
26
+ EMail: mundy@tislabs.com
27
+ phone: +1 301 947-7107
28
+
29
+ Co-Chair: David Harrington
30
+ Enterasys Networks
31
+ postal: 35 Industrial Way
32
+ P. O. Box 5005
33
+ Rochester, NH 03866-5005
34
+ USA
35
+ EMail: dbh@enterasys.com
36
+ phone: +1 603 337-2614
37
+
38
+ Editor: Randy Presuhn
39
+ BMC Software, Inc.
40
+ postal: 2141 North First Street
41
+ San Jose, CA 95131
42
+ USA
43
+ EMail: randy_presuhn@bmc.com
44
+ phone: +1 408 546-1006""",
45
+ "description" :
46
+ """The MIB module for SNMP entities.
47
+
48
+ Copyright (C) The Internet Society (2002). This
49
+ version of this MIB module is part of RFC 3418;
50
+ see the RFC itself for full legal notices.""",
51
+ "revisions" : (
52
+ {
53
+ "date" : "2002-10-16 00:00",
54
+ "description" :
55
+ """This revision of this MIB module was published as
56
+ RFC 3418.""",
57
+ },
58
+ {
59
+ "date" : "1995-11-09 00:00",
60
+ "description" :
61
+ """This revision of this MIB module was published as
62
+ RFC 1907.""",
63
+ },
64
+ {
65
+ "date" : "1993-04-01 00:00",
66
+ "description" :
67
+ """The initial revision of this MIB module was published
68
+ as RFC 1450.""",
69
+ },
70
+ ),
71
+ "identity node" : "snmpMIB",
72
+ },
73
+
74
+ "imports" : (
75
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
76
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
77
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
78
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
79
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
80
+ {"module" : "SNMPv2-SMI", "name" : "snmpModules"},
81
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
82
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
83
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
84
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
85
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
86
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
87
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
88
+ ),
89
+
90
+ "nodes" : {
91
+ "system" : {
92
+ "nodetype" : "node",
93
+ "moduleName" : "SNMPv2-MIB",
94
+ "oid" : "1.3.6.1.2.1.1",
95
+ }, # node
96
+ "sysDescr" : {
97
+ "nodetype" : "scalar",
98
+ "moduleName" : "SNMPv2-MIB",
99
+ "oid" : "1.3.6.1.2.1.1.1",
100
+ "status" : "current",
101
+ "syntax" : {
102
+ "type" : {
103
+ "basetype" : "OctetString",
104
+ "parent module" : {
105
+ "name" : "SNMPv2-TC",
106
+ "type" : "DisplayString",
107
+ },
108
+ "ranges" : [
109
+ {
110
+ "min" : "0",
111
+ "max" : "255"
112
+ },
113
+ ],
114
+ "range" : {
115
+ "min" : "0",
116
+ "max" : "255"
117
+ },
118
+ },
119
+ },
120
+ "access" : "readonly",
121
+ "description" :
122
+ """A textual description of the entity. This value should
123
+ include the full name and version identification of
124
+ the system's hardware type, software operating-system,
125
+ and networking software.""",
126
+ }, # scalar
127
+ "sysObjectID" : {
128
+ "nodetype" : "scalar",
129
+ "moduleName" : "SNMPv2-MIB",
130
+ "oid" : "1.3.6.1.2.1.1.2",
131
+ "status" : "current",
132
+ "syntax" : {
133
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
134
+ },
135
+ "access" : "readonly",
136
+ "description" :
137
+ """The vendor's authoritative identification of the
138
+ network management subsystem contained in the entity.
139
+ This value is allocated within the SMI enterprises
140
+ subtree (1.3.6.1.4.1) and provides an easy and
141
+ unambiguous means for determining `what kind of box' is
142
+ being managed. For example, if vendor `Flintstones,
143
+ Inc.' was assigned the subtree 1.3.6.1.4.1.424242,
144
+ it could assign the identifier 1.3.6.1.4.1.424242.1.1
145
+ to its `Fred Router'.""",
146
+ }, # scalar
147
+ "sysUpTime" : {
148
+ "nodetype" : "scalar",
149
+ "moduleName" : "SNMPv2-MIB",
150
+ "oid" : "1.3.6.1.2.1.1.3",
151
+ "status" : "current",
152
+ "syntax" : {
153
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
154
+ },
155
+ "access" : "readonly",
156
+ "description" :
157
+ """The time (in hundredths of a second) since the
158
+ network management portion of the system was last
159
+ re-initialized.""",
160
+ }, # scalar
161
+ "sysContact" : {
162
+ "nodetype" : "scalar",
163
+ "moduleName" : "SNMPv2-MIB",
164
+ "oid" : "1.3.6.1.2.1.1.4",
165
+ "status" : "current",
166
+ "syntax" : {
167
+ "type" : {
168
+ "basetype" : "OctetString",
169
+ "parent module" : {
170
+ "name" : "SNMPv2-TC",
171
+ "type" : "DisplayString",
172
+ },
173
+ "ranges" : [
174
+ {
175
+ "min" : "0",
176
+ "max" : "255"
177
+ },
178
+ ],
179
+ "range" : {
180
+ "min" : "0",
181
+ "max" : "255"
182
+ },
183
+ },
184
+ },
185
+ "access" : "readwrite",
186
+ "description" :
187
+ """The textual identification of the contact person for
188
+ this managed node, together with information on how
189
+ to contact this person. If no contact information is
190
+ known, the value is the zero-length string.""",
191
+ }, # scalar
192
+ "sysName" : {
193
+ "nodetype" : "scalar",
194
+ "moduleName" : "SNMPv2-MIB",
195
+ "oid" : "1.3.6.1.2.1.1.5",
196
+ "status" : "current",
197
+ "syntax" : {
198
+ "type" : {
199
+ "basetype" : "OctetString",
200
+ "parent module" : {
201
+ "name" : "SNMPv2-TC",
202
+ "type" : "DisplayString",
203
+ },
204
+ "ranges" : [
205
+ {
206
+ "min" : "0",
207
+ "max" : "255"
208
+ },
209
+ ],
210
+ "range" : {
211
+ "min" : "0",
212
+ "max" : "255"
213
+ },
214
+ },
215
+ },
216
+ "access" : "readwrite",
217
+ "description" :
218
+ """An administratively-assigned name for this managed
219
+ node. By convention, this is the node's fully-qualified
220
+ domain name. If the name is unknown, the value is
221
+ the zero-length string.""",
222
+ }, # scalar
223
+ "sysLocation" : {
224
+ "nodetype" : "scalar",
225
+ "moduleName" : "SNMPv2-MIB",
226
+ "oid" : "1.3.6.1.2.1.1.6",
227
+ "status" : "current",
228
+ "syntax" : {
229
+ "type" : {
230
+ "basetype" : "OctetString",
231
+ "parent module" : {
232
+ "name" : "SNMPv2-TC",
233
+ "type" : "DisplayString",
234
+ },
235
+ "ranges" : [
236
+ {
237
+ "min" : "0",
238
+ "max" : "255"
239
+ },
240
+ ],
241
+ "range" : {
242
+ "min" : "0",
243
+ "max" : "255"
244
+ },
245
+ },
246
+ },
247
+ "access" : "readwrite",
248
+ "description" :
249
+ """The physical location of this node (e.g., 'telephone
250
+ closet, 3rd floor'). If the location is unknown, the
251
+ value is the zero-length string.""",
252
+ }, # scalar
253
+ "sysServices" : {
254
+ "nodetype" : "scalar",
255
+ "moduleName" : "SNMPv2-MIB",
256
+ "oid" : "1.3.6.1.2.1.1.7",
257
+ "status" : "current",
258
+ "syntax" : {
259
+ "type" : {
260
+ "basetype" : "Integer32",
261
+ "ranges" : [
262
+ {
263
+ "min" : "0",
264
+ "max" : "127"
265
+ },
266
+ ],
267
+ "range" : {
268
+ "min" : "0",
269
+ "max" : "127"
270
+ },
271
+ },
272
+ },
273
+ "access" : "readonly",
274
+ "description" :
275
+ """A value which indicates the set of services that this
276
+ entity may potentially offer. The value is a sum.
277
+
278
+
279
+
280
+ This sum initially takes the value zero. Then, for
281
+ each layer, L, in the range 1 through 7, that this node
282
+ performs transactions for, 2 raised to (L - 1) is added
283
+ to the sum. For example, a node which performs only
284
+ routing functions would have a value of 4 (2^(3-1)).
285
+ In contrast, a node which is a host offering application
286
+ services would have a value of 72 (2^(4-1) + 2^(7-1)).
287
+ Note that in the context of the Internet suite of
288
+ protocols, values should be calculated accordingly:
289
+
290
+ layer functionality
291
+ 1 physical (e.g., repeaters)
292
+ 2 datalink/subnetwork (e.g., bridges)
293
+ 3 internet (e.g., supports the IP)
294
+ 4 end-to-end (e.g., supports the TCP)
295
+ 7 applications (e.g., supports the SMTP)
296
+
297
+ For systems including OSI protocols, layers 5 and 6
298
+ may also be counted.""",
299
+ }, # scalar
300
+ "sysORLastChange" : {
301
+ "nodetype" : "scalar",
302
+ "moduleName" : "SNMPv2-MIB",
303
+ "oid" : "1.3.6.1.2.1.1.8",
304
+ "status" : "current",
305
+ "syntax" : {
306
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
307
+ },
308
+ "access" : "readonly",
309
+ "description" :
310
+ """The value of sysUpTime at the time of the most recent
311
+ change in state or value of any instance of sysORID.""",
312
+ }, # scalar
313
+ "sysORTable" : {
314
+ "nodetype" : "table",
315
+ "moduleName" : "SNMPv2-MIB",
316
+ "oid" : "1.3.6.1.2.1.1.9",
317
+ "status" : "current",
318
+ "description" :
319
+ """The (conceptual) table listing the capabilities of
320
+ the local SNMP application acting as a command
321
+ responder with respect to various MIB modules.
322
+ SNMP entities having dynamically-configurable support
323
+ of MIB modules will have a dynamically-varying number
324
+ of conceptual rows.""",
325
+ }, # table
326
+ "sysOREntry" : {
327
+ "nodetype" : "row",
328
+ "moduleName" : "SNMPv2-MIB",
329
+ "oid" : "1.3.6.1.2.1.1.9.1",
330
+ "status" : "current",
331
+ "linkage" : [
332
+ "sysORIndex",
333
+ ],
334
+ "description" :
335
+ """An entry (conceptual row) in the sysORTable.""",
336
+ }, # row
337
+ "sysORIndex" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "SNMPv2-MIB",
340
+ "oid" : "1.3.6.1.2.1.1.9.1.1",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : {
344
+ "basetype" : "Integer32",
345
+ "ranges" : [
346
+ {
347
+ "min" : "1",
348
+ "max" : "2147483647"
349
+ },
350
+ ],
351
+ "range" : {
352
+ "min" : "1",
353
+ "max" : "2147483647"
354
+ },
355
+ },
356
+ },
357
+ "access" : "noaccess",
358
+ "description" :
359
+ """The auxiliary variable used for identifying instances
360
+ of the columnar objects in the sysORTable.""",
361
+ }, # column
362
+ "sysORID" : {
363
+ "nodetype" : "column",
364
+ "moduleName" : "SNMPv2-MIB",
365
+ "oid" : "1.3.6.1.2.1.1.9.1.2",
366
+ "status" : "current",
367
+ "syntax" : {
368
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
369
+ },
370
+ "access" : "readonly",
371
+ "description" :
372
+ """An authoritative identification of a capabilities
373
+ statement with respect to various MIB modules supported
374
+ by the local SNMP application acting as a command
375
+ responder.""",
376
+ }, # column
377
+ "sysORDescr" : {
378
+ "nodetype" : "column",
379
+ "moduleName" : "SNMPv2-MIB",
380
+ "oid" : "1.3.6.1.2.1.1.9.1.3",
381
+ "status" : "current",
382
+ "syntax" : {
383
+ "type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
384
+ },
385
+ "access" : "readonly",
386
+ "description" :
387
+ """A textual description of the capabilities identified
388
+ by the corresponding instance of sysORID.""",
389
+ }, # column
390
+ "sysORUpTime" : {
391
+ "nodetype" : "column",
392
+ "moduleName" : "SNMPv2-MIB",
393
+ "oid" : "1.3.6.1.2.1.1.9.1.4",
394
+ "status" : "current",
395
+ "syntax" : {
396
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
397
+ },
398
+ "access" : "readonly",
399
+ "description" :
400
+ """The value of sysUpTime at the time this conceptual
401
+ row was last instantiated.""",
402
+ }, # column
403
+ "snmp" : {
404
+ "nodetype" : "node",
405
+ "moduleName" : "SNMPv2-MIB",
406
+ "oid" : "1.3.6.1.2.1.11",
407
+ }, # node
408
+ "snmpInPkts" : {
409
+ "nodetype" : "scalar",
410
+ "moduleName" : "SNMPv2-MIB",
411
+ "oid" : "1.3.6.1.2.1.11.1",
412
+ "status" : "current",
413
+ "syntax" : {
414
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
415
+ },
416
+ "access" : "readonly",
417
+ "description" :
418
+ """The total number of messages delivered to the SNMP
419
+ entity from the transport service.""",
420
+ }, # scalar
421
+ "snmpOutPkts" : {
422
+ "nodetype" : "scalar",
423
+ "moduleName" : "SNMPv2-MIB",
424
+ "oid" : "1.3.6.1.2.1.11.2",
425
+ "status" : "obsolete",
426
+ "syntax" : {
427
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
428
+ },
429
+ "access" : "readonly",
430
+ "description" :
431
+ """The total number of SNMP Messages which were
432
+ passed from the SNMP protocol entity to the
433
+ transport service.""",
434
+ }, # scalar
435
+ "snmpInBadVersions" : {
436
+ "nodetype" : "scalar",
437
+ "moduleName" : "SNMPv2-MIB",
438
+ "oid" : "1.3.6.1.2.1.11.3",
439
+ "status" : "current",
440
+ "syntax" : {
441
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
442
+ },
443
+ "access" : "readonly",
444
+ "description" :
445
+ """The total number of SNMP messages which were delivered
446
+ to the SNMP entity and were for an unsupported SNMP
447
+ version.""",
448
+ }, # scalar
449
+ "snmpInBadCommunityNames" : {
450
+ "nodetype" : "scalar",
451
+ "moduleName" : "SNMPv2-MIB",
452
+ "oid" : "1.3.6.1.2.1.11.4",
453
+ "status" : "current",
454
+ "syntax" : {
455
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
456
+ },
457
+ "access" : "readonly",
458
+ "description" :
459
+ """The total number of community-based SNMP messages (for
460
+ example, SNMPv1) delivered to the SNMP entity which
461
+ used an SNMP community name not known to said entity.
462
+ Also, implementations which authenticate community-based
463
+ SNMP messages using check(s) in addition to matching
464
+ the community name (for example, by also checking
465
+ whether the message originated from a transport address
466
+ allowed to use a specified community name) MAY include
467
+ in this value the number of messages which failed the
468
+ additional check(s). It is strongly RECOMMENDED that
469
+
470
+
471
+
472
+ the documentation for any security model which is used
473
+ to authenticate community-based SNMP messages specify
474
+ the precise conditions that contribute to this value.""",
475
+ }, # scalar
476
+ "snmpInBadCommunityUses" : {
477
+ "nodetype" : "scalar",
478
+ "moduleName" : "SNMPv2-MIB",
479
+ "oid" : "1.3.6.1.2.1.11.5",
480
+ "status" : "current",
481
+ "syntax" : {
482
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
483
+ },
484
+ "access" : "readonly",
485
+ "description" :
486
+ """The total number of community-based SNMP messages (for
487
+ example, SNMPv1) delivered to the SNMP entity which
488
+ represented an SNMP operation that was not allowed for
489
+ the SNMP community named in the message. The precise
490
+ conditions under which this counter is incremented
491
+ (if at all) depend on how the SNMP entity implements
492
+ its access control mechanism and how its applications
493
+ interact with that access control mechanism. It is
494
+ strongly RECOMMENDED that the documentation for any
495
+ access control mechanism which is used to control access
496
+ to and visibility of MIB instrumentation specify the
497
+ precise conditions that contribute to this value.""",
498
+ }, # scalar
499
+ "snmpInASNParseErrs" : {
500
+ "nodetype" : "scalar",
501
+ "moduleName" : "SNMPv2-MIB",
502
+ "oid" : "1.3.6.1.2.1.11.6",
503
+ "status" : "current",
504
+ "syntax" : {
505
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
506
+ },
507
+ "access" : "readonly",
508
+ "description" :
509
+ """The total number of ASN.1 or BER errors encountered by
510
+ the SNMP entity when decoding received SNMP messages.""",
511
+ }, # scalar
512
+ "snmpInTooBigs" : {
513
+ "nodetype" : "scalar",
514
+ "moduleName" : "SNMPv2-MIB",
515
+ "oid" : "1.3.6.1.2.1.11.8",
516
+ "status" : "obsolete",
517
+ "syntax" : {
518
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
519
+ },
520
+ "access" : "readonly",
521
+ "description" :
522
+ """The total number of SNMP PDUs which were
523
+ delivered to the SNMP protocol entity and for
524
+ which the value of the error-status field was
525
+ `tooBig'.""",
526
+ }, # scalar
527
+ "snmpInNoSuchNames" : {
528
+ "nodetype" : "scalar",
529
+ "moduleName" : "SNMPv2-MIB",
530
+ "oid" : "1.3.6.1.2.1.11.9",
531
+ "status" : "obsolete",
532
+ "syntax" : {
533
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
534
+ },
535
+ "access" : "readonly",
536
+ "description" :
537
+ """The total number of SNMP PDUs which were
538
+ delivered to the SNMP protocol entity and for
539
+ which the value of the error-status field was
540
+ `noSuchName'.""",
541
+ }, # scalar
542
+ "snmpInBadValues" : {
543
+ "nodetype" : "scalar",
544
+ "moduleName" : "SNMPv2-MIB",
545
+ "oid" : "1.3.6.1.2.1.11.10",
546
+ "status" : "obsolete",
547
+ "syntax" : {
548
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
549
+ },
550
+ "access" : "readonly",
551
+ "description" :
552
+ """The total number of SNMP PDUs which were
553
+ delivered to the SNMP protocol entity and for
554
+ which the value of the error-status field was
555
+ `badValue'.""",
556
+ }, # scalar
557
+ "snmpInReadOnlys" : {
558
+ "nodetype" : "scalar",
559
+ "moduleName" : "SNMPv2-MIB",
560
+ "oid" : "1.3.6.1.2.1.11.11",
561
+ "status" : "obsolete",
562
+ "syntax" : {
563
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
564
+ },
565
+ "access" : "readonly",
566
+ "description" :
567
+ """The total number valid SNMP PDUs which were delivered
568
+ to the SNMP protocol entity and for which the value
569
+ of the error-status field was `readOnly'. It should
570
+ be noted that it is a protocol error to generate an
571
+ SNMP PDU which contains the value `readOnly' in the
572
+ error-status field, as such this object is provided
573
+ as a means of detecting incorrect implementations of
574
+ the SNMP.""",
575
+ }, # scalar
576
+ "snmpInGenErrs" : {
577
+ "nodetype" : "scalar",
578
+ "moduleName" : "SNMPv2-MIB",
579
+ "oid" : "1.3.6.1.2.1.11.12",
580
+ "status" : "obsolete",
581
+ "syntax" : {
582
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
583
+ },
584
+ "access" : "readonly",
585
+ "description" :
586
+ """The total number of SNMP PDUs which were delivered
587
+ to the SNMP protocol entity and for which the value
588
+ of the error-status field was `genErr'.""",
589
+ }, # scalar
590
+ "snmpInTotalReqVars" : {
591
+ "nodetype" : "scalar",
592
+ "moduleName" : "SNMPv2-MIB",
593
+ "oid" : "1.3.6.1.2.1.11.13",
594
+ "status" : "obsolete",
595
+ "syntax" : {
596
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
597
+ },
598
+ "access" : "readonly",
599
+ "description" :
600
+ """The total number of MIB objects which have been
601
+ retrieved successfully by the SNMP protocol entity
602
+ as the result of receiving valid SNMP Get-Request
603
+ and Get-Next PDUs.""",
604
+ }, # scalar
605
+ "snmpInTotalSetVars" : {
606
+ "nodetype" : "scalar",
607
+ "moduleName" : "SNMPv2-MIB",
608
+ "oid" : "1.3.6.1.2.1.11.14",
609
+ "status" : "obsolete",
610
+ "syntax" : {
611
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
612
+ },
613
+ "access" : "readonly",
614
+ "description" :
615
+ """The total number of MIB objects which have been
616
+ altered successfully by the SNMP protocol entity as
617
+ the result of receiving valid SNMP Set-Request PDUs.""",
618
+ }, # scalar
619
+ "snmpInGetRequests" : {
620
+ "nodetype" : "scalar",
621
+ "moduleName" : "SNMPv2-MIB",
622
+ "oid" : "1.3.6.1.2.1.11.15",
623
+ "status" : "obsolete",
624
+ "syntax" : {
625
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
626
+ },
627
+ "access" : "readonly",
628
+ "description" :
629
+ """The total number of SNMP Get-Request PDUs which
630
+ have been accepted and processed by the SNMP
631
+ protocol entity.""",
632
+ }, # scalar
633
+ "snmpInGetNexts" : {
634
+ "nodetype" : "scalar",
635
+ "moduleName" : "SNMPv2-MIB",
636
+ "oid" : "1.3.6.1.2.1.11.16",
637
+ "status" : "obsolete",
638
+ "syntax" : {
639
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
640
+ },
641
+ "access" : "readonly",
642
+ "description" :
643
+ """The total number of SNMP Get-Next PDUs which have been
644
+ accepted and processed by the SNMP protocol entity.""",
645
+ }, # scalar
646
+ "snmpInSetRequests" : {
647
+ "nodetype" : "scalar",
648
+ "moduleName" : "SNMPv2-MIB",
649
+ "oid" : "1.3.6.1.2.1.11.17",
650
+ "status" : "obsolete",
651
+ "syntax" : {
652
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
653
+ },
654
+ "access" : "readonly",
655
+ "description" :
656
+ """The total number of SNMP Set-Request PDUs which
657
+ have been accepted and processed by the SNMP protocol
658
+ entity.""",
659
+ }, # scalar
660
+ "snmpInGetResponses" : {
661
+ "nodetype" : "scalar",
662
+ "moduleName" : "SNMPv2-MIB",
663
+ "oid" : "1.3.6.1.2.1.11.18",
664
+ "status" : "obsolete",
665
+ "syntax" : {
666
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
667
+ },
668
+ "access" : "readonly",
669
+ "description" :
670
+ """The total number of SNMP Get-Response PDUs which
671
+ have been accepted and processed by the SNMP protocol
672
+ entity.""",
673
+ }, # scalar
674
+ "snmpInTraps" : {
675
+ "nodetype" : "scalar",
676
+ "moduleName" : "SNMPv2-MIB",
677
+ "oid" : "1.3.6.1.2.1.11.19",
678
+ "status" : "obsolete",
679
+ "syntax" : {
680
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
681
+ },
682
+ "access" : "readonly",
683
+ "description" :
684
+ """The total number of SNMP Trap PDUs which have been
685
+ accepted and processed by the SNMP protocol entity.""",
686
+ }, # scalar
687
+ "snmpOutTooBigs" : {
688
+ "nodetype" : "scalar",
689
+ "moduleName" : "SNMPv2-MIB",
690
+ "oid" : "1.3.6.1.2.1.11.20",
691
+ "status" : "obsolete",
692
+ "syntax" : {
693
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
694
+ },
695
+ "access" : "readonly",
696
+ "description" :
697
+ """The total number of SNMP PDUs which were generated
698
+ by the SNMP protocol entity and for which the value
699
+ of the error-status field was `tooBig.'""",
700
+ }, # scalar
701
+ "snmpOutNoSuchNames" : {
702
+ "nodetype" : "scalar",
703
+ "moduleName" : "SNMPv2-MIB",
704
+ "oid" : "1.3.6.1.2.1.11.21",
705
+ "status" : "obsolete",
706
+ "syntax" : {
707
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
708
+ },
709
+ "access" : "readonly",
710
+ "description" :
711
+ """The total number of SNMP PDUs which were generated
712
+ by the SNMP protocol entity and for which the value
713
+ of the error-status was `noSuchName'.""",
714
+ }, # scalar
715
+ "snmpOutBadValues" : {
716
+ "nodetype" : "scalar",
717
+ "moduleName" : "SNMPv2-MIB",
718
+ "oid" : "1.3.6.1.2.1.11.22",
719
+ "status" : "obsolete",
720
+ "syntax" : {
721
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
722
+ },
723
+ "access" : "readonly",
724
+ "description" :
725
+ """The total number of SNMP PDUs which were generated
726
+ by the SNMP protocol entity and for which the value
727
+ of the error-status field was `badValue'.""",
728
+ }, # scalar
729
+ "snmpOutGenErrs" : {
730
+ "nodetype" : "scalar",
731
+ "moduleName" : "SNMPv2-MIB",
732
+ "oid" : "1.3.6.1.2.1.11.24",
733
+ "status" : "obsolete",
734
+ "syntax" : {
735
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
736
+ },
737
+ "access" : "readonly",
738
+ "description" :
739
+ """The total number of SNMP PDUs which were generated
740
+ by the SNMP protocol entity and for which the value
741
+ of the error-status field was `genErr'.""",
742
+ }, # scalar
743
+ "snmpOutGetRequests" : {
744
+ "nodetype" : "scalar",
745
+ "moduleName" : "SNMPv2-MIB",
746
+ "oid" : "1.3.6.1.2.1.11.25",
747
+ "status" : "obsolete",
748
+ "syntax" : {
749
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
750
+ },
751
+ "access" : "readonly",
752
+ "description" :
753
+ """The total number of SNMP Get-Request PDUs which
754
+ have been generated by the SNMP protocol entity.""",
755
+ }, # scalar
756
+ "snmpOutGetNexts" : {
757
+ "nodetype" : "scalar",
758
+ "moduleName" : "SNMPv2-MIB",
759
+ "oid" : "1.3.6.1.2.1.11.26",
760
+ "status" : "obsolete",
761
+ "syntax" : {
762
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
763
+ },
764
+ "access" : "readonly",
765
+ "description" :
766
+ """The total number of SNMP Get-Next PDUs which have
767
+ been generated by the SNMP protocol entity.""",
768
+ }, # scalar
769
+ "snmpOutSetRequests" : {
770
+ "nodetype" : "scalar",
771
+ "moduleName" : "SNMPv2-MIB",
772
+ "oid" : "1.3.6.1.2.1.11.27",
773
+ "status" : "obsolete",
774
+ "syntax" : {
775
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
776
+ },
777
+ "access" : "readonly",
778
+ "description" :
779
+ """The total number of SNMP Set-Request PDUs which
780
+ have been generated by the SNMP protocol entity.""",
781
+ }, # scalar
782
+ "snmpOutGetResponses" : {
783
+ "nodetype" : "scalar",
784
+ "moduleName" : "SNMPv2-MIB",
785
+ "oid" : "1.3.6.1.2.1.11.28",
786
+ "status" : "obsolete",
787
+ "syntax" : {
788
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
789
+ },
790
+ "access" : "readonly",
791
+ "description" :
792
+ """The total number of SNMP Get-Response PDUs which
793
+ have been generated by the SNMP protocol entity.""",
794
+ }, # scalar
795
+ "snmpOutTraps" : {
796
+ "nodetype" : "scalar",
797
+ "moduleName" : "SNMPv2-MIB",
798
+ "oid" : "1.3.6.1.2.1.11.29",
799
+ "status" : "obsolete",
800
+ "syntax" : {
801
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
802
+ },
803
+ "access" : "readonly",
804
+ "description" :
805
+ """The total number of SNMP Trap PDUs which have
806
+ been generated by the SNMP protocol entity.""",
807
+ }, # scalar
808
+ "snmpEnableAuthenTraps" : {
809
+ "nodetype" : "scalar",
810
+ "moduleName" : "SNMPv2-MIB",
811
+ "oid" : "1.3.6.1.2.1.11.30",
812
+ "status" : "current",
813
+ "syntax" : {
814
+ "type" : {
815
+ "basetype" : "Enumeration",
816
+ "enabled" : {
817
+ "nodetype" : "namednumber",
818
+ "number" : "1"
819
+ },
820
+ "disabled" : {
821
+ "nodetype" : "namednumber",
822
+ "number" : "2"
823
+ },
824
+ },
825
+ },
826
+ "access" : "readwrite",
827
+ "description" :
828
+ """Indicates whether the SNMP entity is permitted to
829
+ generate authenticationFailure traps. The value of this
830
+ object overrides any configuration information; as such,
831
+ it provides a means whereby all authenticationFailure
832
+ traps may be disabled.
833
+
834
+ Note that it is strongly recommended that this object
835
+ be stored in non-volatile memory so that it remains
836
+ constant across re-initializations of the network
837
+ management system.""",
838
+ }, # scalar
839
+ "snmpSilentDrops" : {
840
+ "nodetype" : "scalar",
841
+ "moduleName" : "SNMPv2-MIB",
842
+ "oid" : "1.3.6.1.2.1.11.31",
843
+ "status" : "current",
844
+ "syntax" : {
845
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
846
+ },
847
+ "access" : "readonly",
848
+ "description" :
849
+ """The total number of Confirmed Class PDUs (such as
850
+ GetRequest-PDUs, GetNextRequest-PDUs,
851
+ GetBulkRequest-PDUs, SetRequest-PDUs, and
852
+ InformRequest-PDUs) delivered to the SNMP entity which
853
+ were silently dropped because the size of a reply
854
+ containing an alternate Response Class PDU (such as a
855
+ Response-PDU) with an empty variable-bindings field
856
+ was greater than either a local constraint or the
857
+ maximum message size associated with the originator of
858
+ the request.""",
859
+ }, # scalar
860
+ "snmpProxyDrops" : {
861
+ "nodetype" : "scalar",
862
+ "moduleName" : "SNMPv2-MIB",
863
+ "oid" : "1.3.6.1.2.1.11.32",
864
+ "status" : "current",
865
+ "syntax" : {
866
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
867
+ },
868
+ "access" : "readonly",
869
+ "description" :
870
+ """The total number of Confirmed Class PDUs
871
+ (such as GetRequest-PDUs, GetNextRequest-PDUs,
872
+ GetBulkRequest-PDUs, SetRequest-PDUs, and
873
+ InformRequest-PDUs) delivered to the SNMP entity which
874
+ were silently dropped because the transmission of
875
+ the (possibly translated) message to a proxy target
876
+ failed in a manner (other than a time-out) such that
877
+ no Response Class PDU (such as a Response-PDU) could
878
+ be returned.""",
879
+ }, # scalar
880
+ "snmpMIB" : {
881
+ "nodetype" : "node",
882
+ "moduleName" : "SNMPv2-MIB",
883
+ "oid" : "1.3.6.1.6.3.1",
884
+ "status" : "current",
885
+ }, # node
886
+ "snmpMIBObjects" : {
887
+ "nodetype" : "node",
888
+ "moduleName" : "SNMPv2-MIB",
889
+ "oid" : "1.3.6.1.6.3.1.1",
890
+ }, # node
891
+ "snmpTrap" : {
892
+ "nodetype" : "node",
893
+ "moduleName" : "SNMPv2-MIB",
894
+ "oid" : "1.3.6.1.6.3.1.1.4",
895
+ }, # node
896
+ "snmpTrapOID" : {
897
+ "nodetype" : "scalar",
898
+ "moduleName" : "SNMPv2-MIB",
899
+ "oid" : "1.3.6.1.6.3.1.1.4.1",
900
+ "status" : "current",
901
+ "syntax" : {
902
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
903
+ },
904
+ "access" : "notifyonly",
905
+ "description" :
906
+ """The authoritative identification of the notification
907
+ currently being sent. This variable occurs as
908
+ the second varbind in every SNMPv2-Trap-PDU and
909
+ InformRequest-PDU.""",
910
+ }, # scalar
911
+ "snmpTrapEnterprise" : {
912
+ "nodetype" : "scalar",
913
+ "moduleName" : "SNMPv2-MIB",
914
+ "oid" : "1.3.6.1.6.3.1.1.4.3",
915
+ "status" : "current",
916
+ "syntax" : {
917
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
918
+ },
919
+ "access" : "notifyonly",
920
+ "description" :
921
+ """The authoritative identification of the enterprise
922
+ associated with the trap currently being sent. When an
923
+ SNMP proxy agent is mapping an RFC1157 Trap-PDU
924
+ into a SNMPv2-Trap-PDU, this variable occurs as the
925
+ last varbind.""",
926
+ }, # scalar
927
+ "snmpTraps" : {
928
+ "nodetype" : "node",
929
+ "moduleName" : "SNMPv2-MIB",
930
+ "oid" : "1.3.6.1.6.3.1.1.5",
931
+ }, # node
932
+ "snmpSet" : {
933
+ "nodetype" : "node",
934
+ "moduleName" : "SNMPv2-MIB",
935
+ "oid" : "1.3.6.1.6.3.1.1.6",
936
+ }, # node
937
+ "snmpSetSerialNo" : {
938
+ "nodetype" : "scalar",
939
+ "moduleName" : "SNMPv2-MIB",
940
+ "oid" : "1.3.6.1.6.3.1.1.6.1",
941
+ "status" : "current",
942
+ "syntax" : {
943
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
944
+ },
945
+ "access" : "readwrite",
946
+ "description" :
947
+ """An advisory lock used to allow several cooperating
948
+ command generator applications to coordinate their
949
+ use of the SNMP set operation.
950
+
951
+ This object is used for coarse-grain coordination.
952
+ To achieve fine-grain coordination, one or more similar
953
+ objects might be defined within each MIB group, as
954
+ appropriate.""",
955
+ }, # scalar
956
+ "snmpMIBConformance" : {
957
+ "nodetype" : "node",
958
+ "moduleName" : "SNMPv2-MIB",
959
+ "oid" : "1.3.6.1.6.3.1.2",
960
+ }, # node
961
+ "snmpMIBCompliances" : {
962
+ "nodetype" : "node",
963
+ "moduleName" : "SNMPv2-MIB",
964
+ "oid" : "1.3.6.1.6.3.1.2.1",
965
+ }, # node
966
+ "snmpMIBGroups" : {
967
+ "nodetype" : "node",
968
+ "moduleName" : "SNMPv2-MIB",
969
+ "oid" : "1.3.6.1.6.3.1.2.2",
970
+ }, # node
971
+ }, # nodes
972
+
973
+ "notifications" : {
974
+ "coldStart" : {
975
+ "nodetype" : "notification",
976
+ "moduleName" : "SNMPv2-MIB",
977
+ "oid" : "1.3.6.1.6.3.1.1.5.1",
978
+ "status" : "current",
979
+ "objects" : {
980
+ },
981
+ "description" :
982
+ """A coldStart trap signifies that the SNMP entity,
983
+ supporting a notification originator application, is
984
+ reinitializing itself and that its configuration may
985
+ have been altered.""",
986
+ }, # notification
987
+ "warmStart" : {
988
+ "nodetype" : "notification",
989
+ "moduleName" : "SNMPv2-MIB",
990
+ "oid" : "1.3.6.1.6.3.1.1.5.2",
991
+ "status" : "current",
992
+ "objects" : {
993
+ },
994
+ "description" :
995
+ """A warmStart trap signifies that the SNMP entity,
996
+ supporting a notification originator application,
997
+ is reinitializing itself such that its configuration
998
+ is unaltered.""",
999
+ }, # notification
1000
+ "authenticationFailure" : {
1001
+ "nodetype" : "notification",
1002
+ "moduleName" : "SNMPv2-MIB",
1003
+ "oid" : "1.3.6.1.6.3.1.1.5.5",
1004
+ "status" : "current",
1005
+ "objects" : {
1006
+ },
1007
+ "description" :
1008
+ """An authenticationFailure trap signifies that the SNMP
1009
+ entity has received a protocol message that is not
1010
+ properly authenticated. While all implementations
1011
+ of SNMP entities MAY be capable of generating this
1012
+ trap, the snmpEnableAuthenTraps object indicates
1013
+ whether this trap will be generated.""",
1014
+ }, # notification
1015
+ }, # notifications
1016
+
1017
+ "groups" : {
1018
+ "snmpSetGroup" : {
1019
+ "nodetype" : "group",
1020
+ "moduleName" : "SNMPv2-MIB",
1021
+ "oid" : "1.3.6.1.6.3.1.2.2.5",
1022
+ "status" : "current",
1023
+ "members" : {
1024
+ "snmpSetSerialNo" : {
1025
+ "nodetype" : "member",
1026
+ "module" : "SNMPv2-MIB"
1027
+ },
1028
+ }, # members
1029
+ "description" :
1030
+ """A collection of objects which allow several cooperating
1031
+ command generator applications to coordinate their
1032
+ use of the set operation.""",
1033
+ }, # group
1034
+ "systemGroup" : {
1035
+ "nodetype" : "group",
1036
+ "moduleName" : "SNMPv2-MIB",
1037
+ "oid" : "1.3.6.1.6.3.1.2.2.6",
1038
+ "status" : "current",
1039
+ "members" : {
1040
+ "sysDescr" : {
1041
+ "nodetype" : "member",
1042
+ "module" : "SNMPv2-MIB"
1043
+ },
1044
+ "sysObjectID" : {
1045
+ "nodetype" : "member",
1046
+ "module" : "SNMPv2-MIB"
1047
+ },
1048
+ "sysUpTime" : {
1049
+ "nodetype" : "member",
1050
+ "module" : "SNMPv2-MIB"
1051
+ },
1052
+ "sysContact" : {
1053
+ "nodetype" : "member",
1054
+ "module" : "SNMPv2-MIB"
1055
+ },
1056
+ "sysName" : {
1057
+ "nodetype" : "member",
1058
+ "module" : "SNMPv2-MIB"
1059
+ },
1060
+ "sysLocation" : {
1061
+ "nodetype" : "member",
1062
+ "module" : "SNMPv2-MIB"
1063
+ },
1064
+ "sysServices" : {
1065
+ "nodetype" : "member",
1066
+ "module" : "SNMPv2-MIB"
1067
+ },
1068
+ "sysORLastChange" : {
1069
+ "nodetype" : "member",
1070
+ "module" : "SNMPv2-MIB"
1071
+ },
1072
+ "sysORID" : {
1073
+ "nodetype" : "member",
1074
+ "module" : "SNMPv2-MIB"
1075
+ },
1076
+ "sysORUpTime" : {
1077
+ "nodetype" : "member",
1078
+ "module" : "SNMPv2-MIB"
1079
+ },
1080
+ "sysORDescr" : {
1081
+ "nodetype" : "member",
1082
+ "module" : "SNMPv2-MIB"
1083
+ },
1084
+ }, # members
1085
+ "description" :
1086
+ """The system group defines objects which are common to all
1087
+ managed systems.""",
1088
+ }, # group
1089
+ "snmpBasicNotificationsGroup" : {
1090
+ "nodetype" : "group",
1091
+ "moduleName" : "SNMPv2-MIB",
1092
+ "oid" : "1.3.6.1.6.3.1.2.2.7",
1093
+ "status" : "current",
1094
+ "members" : {
1095
+ "coldStart" : {
1096
+ "nodetype" : "member",
1097
+ "module" : "SNMPv2-MIB"
1098
+ },
1099
+ "authenticationFailure" : {
1100
+ "nodetype" : "member",
1101
+ "module" : "SNMPv2-MIB"
1102
+ },
1103
+ }, # members
1104
+ "description" :
1105
+ """The basic notifications implemented by an SNMP entity
1106
+ supporting command responder applications.""",
1107
+ }, # group
1108
+ "snmpGroup" : {
1109
+ "nodetype" : "group",
1110
+ "moduleName" : "SNMPv2-MIB",
1111
+ "oid" : "1.3.6.1.6.3.1.2.2.8",
1112
+ "status" : "current",
1113
+ "members" : {
1114
+ "snmpInPkts" : {
1115
+ "nodetype" : "member",
1116
+ "module" : "SNMPv2-MIB"
1117
+ },
1118
+ "snmpInBadVersions" : {
1119
+ "nodetype" : "member",
1120
+ "module" : "SNMPv2-MIB"
1121
+ },
1122
+ "snmpInASNParseErrs" : {
1123
+ "nodetype" : "member",
1124
+ "module" : "SNMPv2-MIB"
1125
+ },
1126
+ "snmpSilentDrops" : {
1127
+ "nodetype" : "member",
1128
+ "module" : "SNMPv2-MIB"
1129
+ },
1130
+ "snmpProxyDrops" : {
1131
+ "nodetype" : "member",
1132
+ "module" : "SNMPv2-MIB"
1133
+ },
1134
+ "snmpEnableAuthenTraps" : {
1135
+ "nodetype" : "member",
1136
+ "module" : "SNMPv2-MIB"
1137
+ },
1138
+ }, # members
1139
+ "description" :
1140
+ """A collection of objects providing basic instrumentation
1141
+ and control of an SNMP entity.""",
1142
+ }, # group
1143
+ "snmpCommunityGroup" : {
1144
+ "nodetype" : "group",
1145
+ "moduleName" : "SNMPv2-MIB",
1146
+ "oid" : "1.3.6.1.6.3.1.2.2.9",
1147
+ "status" : "current",
1148
+ "members" : {
1149
+ "snmpInBadCommunityNames" : {
1150
+ "nodetype" : "member",
1151
+ "module" : "SNMPv2-MIB"
1152
+ },
1153
+ "snmpInBadCommunityUses" : {
1154
+ "nodetype" : "member",
1155
+ "module" : "SNMPv2-MIB"
1156
+ },
1157
+ }, # members
1158
+ "description" :
1159
+ """A collection of objects providing basic instrumentation
1160
+ of a SNMP entity which supports community-based
1161
+ authentication.""",
1162
+ }, # group
1163
+ "snmpObsoleteGroup" : {
1164
+ "nodetype" : "group",
1165
+ "moduleName" : "SNMPv2-MIB",
1166
+ "oid" : "1.3.6.1.6.3.1.2.2.10",
1167
+ "status" : "obsolete",
1168
+ "members" : {
1169
+ "snmpOutPkts" : {
1170
+ "nodetype" : "member",
1171
+ "module" : "SNMPv2-MIB"
1172
+ },
1173
+ "snmpInTooBigs" : {
1174
+ "nodetype" : "member",
1175
+ "module" : "SNMPv2-MIB"
1176
+ },
1177
+ "snmpInNoSuchNames" : {
1178
+ "nodetype" : "member",
1179
+ "module" : "SNMPv2-MIB"
1180
+ },
1181
+ "snmpInBadValues" : {
1182
+ "nodetype" : "member",
1183
+ "module" : "SNMPv2-MIB"
1184
+ },
1185
+ "snmpInReadOnlys" : {
1186
+ "nodetype" : "member",
1187
+ "module" : "SNMPv2-MIB"
1188
+ },
1189
+ "snmpInGenErrs" : {
1190
+ "nodetype" : "member",
1191
+ "module" : "SNMPv2-MIB"
1192
+ },
1193
+ "snmpInTotalReqVars" : {
1194
+ "nodetype" : "member",
1195
+ "module" : "SNMPv2-MIB"
1196
+ },
1197
+ "snmpInTotalSetVars" : {
1198
+ "nodetype" : "member",
1199
+ "module" : "SNMPv2-MIB"
1200
+ },
1201
+ "snmpInGetRequests" : {
1202
+ "nodetype" : "member",
1203
+ "module" : "SNMPv2-MIB"
1204
+ },
1205
+ "snmpInGetNexts" : {
1206
+ "nodetype" : "member",
1207
+ "module" : "SNMPv2-MIB"
1208
+ },
1209
+ "snmpInSetRequests" : {
1210
+ "nodetype" : "member",
1211
+ "module" : "SNMPv2-MIB"
1212
+ },
1213
+ "snmpInGetResponses" : {
1214
+ "nodetype" : "member",
1215
+ "module" : "SNMPv2-MIB"
1216
+ },
1217
+ "snmpInTraps" : {
1218
+ "nodetype" : "member",
1219
+ "module" : "SNMPv2-MIB"
1220
+ },
1221
+ "snmpOutTooBigs" : {
1222
+ "nodetype" : "member",
1223
+ "module" : "SNMPv2-MIB"
1224
+ },
1225
+ "snmpOutNoSuchNames" : {
1226
+ "nodetype" : "member",
1227
+ "module" : "SNMPv2-MIB"
1228
+ },
1229
+ "snmpOutBadValues" : {
1230
+ "nodetype" : "member",
1231
+ "module" : "SNMPv2-MIB"
1232
+ },
1233
+ "snmpOutGenErrs" : {
1234
+ "nodetype" : "member",
1235
+ "module" : "SNMPv2-MIB"
1236
+ },
1237
+ "snmpOutGetRequests" : {
1238
+ "nodetype" : "member",
1239
+ "module" : "SNMPv2-MIB"
1240
+ },
1241
+ "snmpOutGetNexts" : {
1242
+ "nodetype" : "member",
1243
+ "module" : "SNMPv2-MIB"
1244
+ },
1245
+ "snmpOutSetRequests" : {
1246
+ "nodetype" : "member",
1247
+ "module" : "SNMPv2-MIB"
1248
+ },
1249
+ "snmpOutGetResponses" : {
1250
+ "nodetype" : "member",
1251
+ "module" : "SNMPv2-MIB"
1252
+ },
1253
+ "snmpOutTraps" : {
1254
+ "nodetype" : "member",
1255
+ "module" : "SNMPv2-MIB"
1256
+ },
1257
+ }, # members
1258
+ "description" :
1259
+ """A collection of objects from RFC 1213 made obsolete
1260
+ by this MIB module.""",
1261
+ }, # group
1262
+ "snmpWarmStartNotificationGroup" : {
1263
+ "nodetype" : "group",
1264
+ "moduleName" : "SNMPv2-MIB",
1265
+ "oid" : "1.3.6.1.6.3.1.2.2.11",
1266
+ "status" : "current",
1267
+ "members" : {
1268
+ "warmStart" : {
1269
+ "nodetype" : "member",
1270
+ "module" : "SNMPv2-MIB"
1271
+ },
1272
+ }, # members
1273
+ "description" :
1274
+ """An additional notification for an SNMP entity supporting
1275
+ command responder applications, if it is able to reinitialize
1276
+ itself such that its configuration is unaltered.""",
1277
+ }, # group
1278
+ "snmpNotificationGroup" : {
1279
+ "nodetype" : "group",
1280
+ "moduleName" : "SNMPv2-MIB",
1281
+ "oid" : "1.3.6.1.6.3.1.2.2.12",
1282
+ "status" : "current",
1283
+ "members" : {
1284
+ "snmpTrapOID" : {
1285
+ "nodetype" : "member",
1286
+ "module" : "SNMPv2-MIB"
1287
+ },
1288
+ "snmpTrapEnterprise" : {
1289
+ "nodetype" : "member",
1290
+ "module" : "SNMPv2-MIB"
1291
+ },
1292
+ }, # members
1293
+ "description" :
1294
+ """These objects are required for entities
1295
+ which support notification originator applications.""",
1296
+ }, # group
1297
+ }, # groups
1298
+
1299
+ "compliances" : {
1300
+ "snmpBasicCompliance" : {
1301
+ "nodetype" : "compliance",
1302
+ "moduleName" : "SNMPv2-MIB",
1303
+ "oid" : "1.3.6.1.6.3.1.2.1.2",
1304
+ "status" : "deprecated",
1305
+ "description" :
1306
+ """The compliance statement for SNMPv2 entities which
1307
+ implement the SNMPv2 MIB.
1308
+
1309
+ This compliance statement is replaced by
1310
+ snmpBasicComplianceRev2.""",
1311
+ "requires" : {
1312
+ "snmpGroup" : {
1313
+ "nodetype" : "mandatory",
1314
+ "module" : "SNMPv2-MIB"
1315
+ },
1316
+ "snmpSetGroup" : {
1317
+ "nodetype" : "mandatory",
1318
+ "module" : "SNMPv2-MIB"
1319
+ },
1320
+ "systemGroup" : {
1321
+ "nodetype" : "mandatory",
1322
+ "module" : "SNMPv2-MIB"
1323
+ },
1324
+ "snmpBasicNotificationsGroup" : {
1325
+ "nodetype" : "mandatory",
1326
+ "module" : "SNMPv2-MIB"
1327
+ },
1328
+ "snmpCommunityGroup" : {
1329
+ "nodetype" : "optional",
1330
+ "module" : "SNMPv2-MIB",
1331
+ "description" :
1332
+ """This group is mandatory for SNMPv2 entities which
1333
+ support community-based authentication.""",
1334
+ },
1335
+ }, # requires
1336
+ }, # compliance
1337
+ "snmpBasicComplianceRev2" : {
1338
+ "nodetype" : "compliance",
1339
+ "moduleName" : "SNMPv2-MIB",
1340
+ "oid" : "1.3.6.1.6.3.1.2.1.3",
1341
+ "status" : "current",
1342
+ "description" :
1343
+ """The compliance statement for SNMP entities which
1344
+ implement this MIB module.""",
1345
+ "requires" : {
1346
+ "snmpGroup" : {
1347
+ "nodetype" : "mandatory",
1348
+ "module" : "SNMPv2-MIB"
1349
+ },
1350
+ "snmpSetGroup" : {
1351
+ "nodetype" : "mandatory",
1352
+ "module" : "SNMPv2-MIB"
1353
+ },
1354
+ "systemGroup" : {
1355
+ "nodetype" : "mandatory",
1356
+ "module" : "SNMPv2-MIB"
1357
+ },
1358
+ "snmpBasicNotificationsGroup" : {
1359
+ "nodetype" : "mandatory",
1360
+ "module" : "SNMPv2-MIB"
1361
+ },
1362
+ "snmpCommunityGroup" : {
1363
+ "nodetype" : "optional",
1364
+ "module" : "SNMPv2-MIB",
1365
+ "description" :
1366
+ """This group is mandatory for SNMP entities which
1367
+ support community-based authentication.""",
1368
+ },
1369
+ "snmpWarmStartNotificationGroup" : {
1370
+ "nodetype" : "optional",
1371
+ "module" : "SNMPv2-MIB",
1372
+ "description" :
1373
+ """This group is mandatory for an SNMP entity which
1374
+ supports command responder applications, and is
1375
+ able to reinitialize itself such that its
1376
+ configuration is unaltered.""",
1377
+ },
1378
+ }, # requires
1379
+ }, # compliance
1380
+ }, # compliances
1381
+
1382
+ }