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,959 @@
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 POWER-ETHERNET-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/POWER-ETHERNET-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "POWER-ETHERNET-MIB",
11
+
12
+ "POWER-ETHERNET-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Ethernet Interfaces and Hub MIB
17
+ Working Group""",
18
+ "contact" :
19
+ """
20
+ WG Charter:
21
+ http://www.ietf.org/html.charters/hubmib-charter.html
22
+
23
+ Mailing lists:
24
+ General Discussion: hubmib@ietf.org
25
+ To Subscribe: hubmib-requests@ietf.org
26
+ In Body: subscribe your_email_address
27
+
28
+ Chair: Dan Romascanu
29
+ Avaya
30
+ Tel: +972-3-645-8414
31
+ Email: dromasca@avaya.com
32
+
33
+ Editor: Avi Berger
34
+ PowerDsine Inc.
35
+ Tel: 972-9-7755100 Ext 307
36
+ Fax: 972-9-7755120
37
+ E-mail: avib@PowerDsine.com""",
38
+ "description" :
39
+ """The MIB module for managing Power Source Equipment
40
+ (PSE) working according to the IEEE 802.af Powered
41
+ Ethernet (DTE Power via MDI) standard.
42
+
43
+ The following terms are used throughout this
44
+ MIB module. For complete formal definitions,
45
+ the IEEE 802.3 standards should be consulted
46
+ wherever possible:
47
+
48
+ Group - A recommended, but optional, entity
49
+ defined by the IEEE 802.3 management standard,
50
+ in order to support a modular numbering scheme.
51
+ The classical example allows an implementor to
52
+ represent field-replaceable units as groups of
53
+ ports, with the port numbering matching the
54
+ modular hardware implementation.
55
+
56
+ Port - This entity identifies the port within the group
57
+ for which this entry contains information. The numbering
58
+ scheme for ports is implementation specific.
59
+
60
+ Copyright (c) The Internet Society (2003). This version
61
+ of this MIB module is part of RFC 3621; See the RFC
62
+ itself for full legal notices.""",
63
+ "revisions" : (
64
+ {
65
+ "date" : "2003-11-24 00:00",
66
+ "description" :
67
+ """Initial version, published as RFC 3621.""",
68
+ },
69
+ ),
70
+ "identity node" : "powerEthernetMIB",
71
+ },
72
+
73
+ "imports" : (
74
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
75
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
76
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
77
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
78
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
79
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
80
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
81
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
82
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
83
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
84
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
85
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
86
+ ),
87
+
88
+ "nodes" : {
89
+ "powerEthernetMIB" : {
90
+ "nodetype" : "node",
91
+ "moduleName" : "POWER-ETHERNET-MIB",
92
+ "oid" : "1.3.6.1.2.1.105",
93
+ "status" : "current",
94
+ }, # node
95
+ "pethNotifications" : {
96
+ "nodetype" : "node",
97
+ "moduleName" : "POWER-ETHERNET-MIB",
98
+ "oid" : "1.3.6.1.2.1.105.0",
99
+ }, # node
100
+ "pethObjects" : {
101
+ "nodetype" : "node",
102
+ "moduleName" : "POWER-ETHERNET-MIB",
103
+ "oid" : "1.3.6.1.2.1.105.1",
104
+ }, # node
105
+ "pethPsePortTable" : {
106
+ "nodetype" : "table",
107
+ "moduleName" : "POWER-ETHERNET-MIB",
108
+ "oid" : "1.3.6.1.2.1.105.1.1",
109
+ "status" : "current",
110
+ "description" :
111
+ """A table of objects that display and control the power
112
+ characteristics of power Ethernet ports on a Power Source
113
+ Entity (PSE) device. This group will be implemented in
114
+ managed power Ethernet switches and mid-span devices.
115
+ Values of all read-write objects in this table are
116
+ persistent at restart/reboot.""",
117
+ }, # table
118
+ "pethPsePortEntry" : {
119
+ "nodetype" : "row",
120
+ "moduleName" : "POWER-ETHERNET-MIB",
121
+ "oid" : "1.3.6.1.2.1.105.1.1.1",
122
+ "status" : "current",
123
+ "linkage" : [
124
+ "pethPsePortGroupIndex",
125
+ "pethPsePortIndex",
126
+ ],
127
+ "description" :
128
+ """A set of objects that display and control the power
129
+ characteristics of a power Ethernet PSE port.""",
130
+ }, # row
131
+ "pethPsePortGroupIndex" : {
132
+ "nodetype" : "column",
133
+ "moduleName" : "POWER-ETHERNET-MIB",
134
+ "oid" : "1.3.6.1.2.1.105.1.1.1.1",
135
+ "status" : "current",
136
+ "syntax" : {
137
+ "type" : {
138
+ "basetype" : "Integer32",
139
+ "ranges" : [
140
+ {
141
+ "min" : "1",
142
+ "max" : "2147483647"
143
+ },
144
+ ],
145
+ "range" : {
146
+ "min" : "1",
147
+ "max" : "2147483647"
148
+ },
149
+ },
150
+ },
151
+ "access" : "noaccess",
152
+ "description" :
153
+ """This variable uniquely identifies the group
154
+ containing the port to which a power Ethernet PSE is
155
+ connected. Group means box in the stack, module in a
156
+ rack and the value 1 MUST be used for non-modular devices.
157
+ Furthermore, the same value MUST be used in this variable,
158
+ pethMainPseGroupIndex, and pethNotificationControlGroupIndex
159
+ to refer to a given box in a stack or module in the rack.""",
160
+ }, # column
161
+ "pethPsePortIndex" : {
162
+ "nodetype" : "column",
163
+ "moduleName" : "POWER-ETHERNET-MIB",
164
+ "oid" : "1.3.6.1.2.1.105.1.1.1.2",
165
+ "status" : "current",
166
+ "syntax" : {
167
+ "type" : {
168
+ "basetype" : "Integer32",
169
+ "ranges" : [
170
+ {
171
+ "min" : "1",
172
+ "max" : "2147483647"
173
+ },
174
+ ],
175
+ "range" : {
176
+ "min" : "1",
177
+ "max" : "2147483647"
178
+ },
179
+ },
180
+ },
181
+ "access" : "noaccess",
182
+ "description" :
183
+ """This variable uniquely identifies the power Ethernet PSE
184
+ port within group pethPsePortGroupIndex to which the
185
+ power Ethernet PSE entry is connected.""",
186
+ }, # column
187
+ "pethPsePortAdminEnable" : {
188
+ "nodetype" : "column",
189
+ "moduleName" : "POWER-ETHERNET-MIB",
190
+ "oid" : "1.3.6.1.2.1.105.1.1.1.3",
191
+ "status" : "current",
192
+ "syntax" : {
193
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
194
+ },
195
+ "access" : "readwrite",
196
+ "description" :
197
+ """true (1) An interface which can provide the PSE functions.
198
+ false(2) The interface will act as it would if it had no PSE
199
+ function.""",
200
+ "reference" :
201
+ """IEEE Std 802.3af Section 30.9.1.1.2 aPSEAdminState""",
202
+ }, # column
203
+ "pethPsePortPowerPairsControlAbility" : {
204
+ "nodetype" : "column",
205
+ "moduleName" : "POWER-ETHERNET-MIB",
206
+ "oid" : "1.3.6.1.2.1.105.1.1.1.4",
207
+ "status" : "current",
208
+ "syntax" : {
209
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
210
+ },
211
+ "access" : "readonly",
212
+ "description" :
213
+ """Describes the capability of controlling the power pairs
214
+ functionality to switch pins for sourcing power.
215
+ The value true indicate that the device has the capability
216
+ to control the power pairs. When false the PSE Pinout
217
+ Alternative used cannot be controlled through the
218
+ PethPsePortAdminEnable attribute.""",
219
+ "reference" :
220
+ """IEEE Std 802.3af Section 30.9.1.1.3
221
+ aPSEPowerPairsControlAbility""",
222
+ }, # column
223
+ "pethPsePortPowerPairs" : {
224
+ "nodetype" : "column",
225
+ "moduleName" : "POWER-ETHERNET-MIB",
226
+ "oid" : "1.3.6.1.2.1.105.1.1.1.5",
227
+ "status" : "current",
228
+ "syntax" : {
229
+ "type" : {
230
+ "basetype" : "Enumeration",
231
+ "signal" : {
232
+ "nodetype" : "namednumber",
233
+ "number" : "1"
234
+ },
235
+ "spare" : {
236
+ "nodetype" : "namednumber",
237
+ "number" : "2"
238
+ },
239
+ },
240
+ },
241
+ "access" : "readwrite",
242
+ "description" :
243
+ """Describes or controls the pairs in use. If the value of
244
+ pethPsePortPowerPairsControl is true, this object is
245
+ writable.
246
+ A value of signal(1) means that the signal pairs
247
+ only are in use.
248
+ A value of spare(2) means that the spare pairs
249
+ only are in use.""",
250
+ "reference" :
251
+ """IEEE Std 802.3af Section 30.9.1.1.4 aPSEPowerPairs""",
252
+ }, # column
253
+ "pethPsePortDetectionStatus" : {
254
+ "nodetype" : "column",
255
+ "moduleName" : "POWER-ETHERNET-MIB",
256
+ "oid" : "1.3.6.1.2.1.105.1.1.1.6",
257
+ "status" : "current",
258
+ "syntax" : {
259
+ "type" : {
260
+ "basetype" : "Enumeration",
261
+ "disabled" : {
262
+ "nodetype" : "namednumber",
263
+ "number" : "1"
264
+ },
265
+ "searching" : {
266
+ "nodetype" : "namednumber",
267
+ "number" : "2"
268
+ },
269
+ "deliveringPower" : {
270
+ "nodetype" : "namednumber",
271
+ "number" : "3"
272
+ },
273
+ "fault" : {
274
+ "nodetype" : "namednumber",
275
+ "number" : "4"
276
+ },
277
+ "test" : {
278
+ "nodetype" : "namednumber",
279
+ "number" : "5"
280
+ },
281
+ "otherFault" : {
282
+ "nodetype" : "namednumber",
283
+ "number" : "6"
284
+ },
285
+ },
286
+ },
287
+ "access" : "readonly",
288
+ "description" :
289
+ """Describes the operational status of the port PD detection.
290
+ A value of disabled(1)- indicates that the PSE State diagram
291
+ is in the state DISABLED.
292
+ A value of deliveringPower(3) - indicates that the PSE State
293
+ diagram is in the state POWER_ON for a duration greater than
294
+ tlim max (see IEEE Std 802.3af Table 33-5 tlim).
295
+ A value of fault(4) - indicates that the PSE State diagram is
296
+ in the state TEST_ERROR.
297
+ A value of test(5) - indicates that the PSE State diagram is
298
+ in the state TEST_MODE.
299
+ A value of otherFault(6) - indicates that the PSE State
300
+ diagram is in the state IDLE due to the variable
301
+ error_conditions.
302
+ A value of searching(2)- indicates the PSE State diagram is
303
+ in a state other than those listed above.""",
304
+ "reference" :
305
+ """IEEE Std 802.3af Section 30.9.1.1.5
306
+ aPSEPowerDetectionStatus""",
307
+ }, # column
308
+ "pethPsePortPowerPriority" : {
309
+ "nodetype" : "column",
310
+ "moduleName" : "POWER-ETHERNET-MIB",
311
+ "oid" : "1.3.6.1.2.1.105.1.1.1.7",
312
+ "status" : "current",
313
+ "syntax" : {
314
+ "type" : {
315
+ "basetype" : "Enumeration",
316
+ "critical" : {
317
+ "nodetype" : "namednumber",
318
+ "number" : "1"
319
+ },
320
+ "high" : {
321
+ "nodetype" : "namednumber",
322
+ "number" : "2"
323
+ },
324
+ "low" : {
325
+ "nodetype" : "namednumber",
326
+ "number" : "3"
327
+ },
328
+ },
329
+ },
330
+ "access" : "readwrite",
331
+ "description" :
332
+ """This object controls the priority of the port from the point
333
+ of view of a power management algorithm. The priority that
334
+ is set by this variable could be used by a control mechanism
335
+ that prevents over current situations by disconnecting first
336
+ ports with lower power priority. Ports that connect devices
337
+ critical to the operation of the network - like the E911
338
+ telephones ports - should be set to higher priority.""",
339
+ }, # column
340
+ "pethPsePortMPSAbsentCounter" : {
341
+ "nodetype" : "column",
342
+ "moduleName" : "POWER-ETHERNET-MIB",
343
+ "oid" : "1.3.6.1.2.1.105.1.1.1.8",
344
+ "status" : "current",
345
+ "syntax" : {
346
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
347
+ },
348
+ "access" : "readonly",
349
+ "description" :
350
+ """This counter is incremented when the PSE state diagram
351
+ transitions directly from the state POWER_ON to the
352
+
353
+
354
+
355
+ state IDLE due to tmpdo_timer_done being asserted.""",
356
+ "reference" :
357
+ """IEEE Std 802.3af Section 30.9.1.1.11
358
+ aPSEMPSAbsentCounter""",
359
+ }, # column
360
+ "pethPsePortType" : {
361
+ "nodetype" : "column",
362
+ "moduleName" : "POWER-ETHERNET-MIB",
363
+ "oid" : "1.3.6.1.2.1.105.1.1.1.9",
364
+ "status" : "current",
365
+ "syntax" : {
366
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
367
+ },
368
+ "access" : "readwrite",
369
+ "description" :
370
+ """A manager will set the value of this variable to indicate
371
+ the type of powered device that is connected to the port.
372
+ The default value supplied by the agent if no value has
373
+ ever been set should be a zero-length octet string.""",
374
+ }, # column
375
+ "pethPsePortPowerClassifications" : {
376
+ "nodetype" : "column",
377
+ "moduleName" : "POWER-ETHERNET-MIB",
378
+ "oid" : "1.3.6.1.2.1.105.1.1.1.10",
379
+ "status" : "current",
380
+ "syntax" : {
381
+ "type" : {
382
+ "basetype" : "Enumeration",
383
+ "class0" : {
384
+ "nodetype" : "namednumber",
385
+ "number" : "1"
386
+ },
387
+ "class1" : {
388
+ "nodetype" : "namednumber",
389
+ "number" : "2"
390
+ },
391
+ "class2" : {
392
+ "nodetype" : "namednumber",
393
+ "number" : "3"
394
+ },
395
+ "class3" : {
396
+ "nodetype" : "namednumber",
397
+ "number" : "4"
398
+ },
399
+ "class4" : {
400
+ "nodetype" : "namednumber",
401
+ "number" : "5"
402
+ },
403
+ },
404
+ },
405
+ "access" : "readonly",
406
+ "description" :
407
+ """Classification is a way to tag different terminals on the
408
+ Power over LAN network according to their power consumption.
409
+ Devices such as IP telephones, WLAN access points and others,
410
+ will be classified according to their power requirements.
411
+
412
+ The meaning of the classification labels is defined in the
413
+ IEEE specification.
414
+
415
+ This variable is valid only while a PD is being powered,
416
+ that is, while the attribute pethPsePortDetectionStatus
417
+ is reporting the enumeration deliveringPower.""",
418
+ "reference" :
419
+ """IEEE Std 802.3af Section 30.9.1.1.6
420
+ aPSEPowerClassification""",
421
+ }, # column
422
+ "pethPsePortInvalidSignatureCounter" : {
423
+ "nodetype" : "column",
424
+ "moduleName" : "POWER-ETHERNET-MIB",
425
+ "oid" : "1.3.6.1.2.1.105.1.1.1.11",
426
+ "status" : "current",
427
+ "syntax" : {
428
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
429
+ },
430
+ "access" : "readonly",
431
+ "description" :
432
+ """This counter is incremented when the PSE state diagram
433
+ enters the state SIGNATURE_INVALID.""",
434
+ "reference" :
435
+ """IEEE Std 802.3af Section 30.9.1.1.7
436
+ aPSEInvalidSignatureCounter""",
437
+ }, # column
438
+ "pethPsePortPowerDeniedCounter" : {
439
+ "nodetype" : "column",
440
+ "moduleName" : "POWER-ETHERNET-MIB",
441
+ "oid" : "1.3.6.1.2.1.105.1.1.1.12",
442
+ "status" : "current",
443
+ "syntax" : {
444
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
445
+ },
446
+ "access" : "readonly",
447
+ "description" :
448
+ """This counter is incremented when the PSE state diagram
449
+ enters the state POWER_DENIED.""",
450
+ "reference" :
451
+ """IEEE Std 802.3af Section 30.9.1.1.8
452
+ aPSEPowerDeniedCounter""",
453
+ }, # column
454
+ "pethPsePortOverLoadCounter" : {
455
+ "nodetype" : "column",
456
+ "moduleName" : "POWER-ETHERNET-MIB",
457
+ "oid" : "1.3.6.1.2.1.105.1.1.1.13",
458
+ "status" : "current",
459
+ "syntax" : {
460
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
461
+ },
462
+ "access" : "readonly",
463
+ "description" :
464
+ """This counter is incremented when the PSE state diagram
465
+ enters the state ERROR_DELAY_OVER.""",
466
+ "reference" :
467
+ """IEEE Std 802.3af Section 30.9.1.1.9
468
+ aPSEOverLoadCounter""",
469
+ }, # column
470
+ "pethPsePortShortCounter" : {
471
+ "nodetype" : "column",
472
+ "moduleName" : "POWER-ETHERNET-MIB",
473
+ "oid" : "1.3.6.1.2.1.105.1.1.1.14",
474
+ "status" : "current",
475
+ "syntax" : {
476
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
477
+ },
478
+ "access" : "readonly",
479
+ "description" :
480
+ """This counter is incremented when the PSE state diagram
481
+ enters the state ERROR_DELAY_SHORT.""",
482
+ "reference" :
483
+ """IEEE Std 802.3af Section 30.9.1.1.10
484
+ aPSEShortCounter""",
485
+ }, # column
486
+ "pethMainPseObjects" : {
487
+ "nodetype" : "node",
488
+ "moduleName" : "POWER-ETHERNET-MIB",
489
+ "oid" : "1.3.6.1.2.1.105.1.3",
490
+ }, # node
491
+ "pethMainPseTable" : {
492
+ "nodetype" : "table",
493
+ "moduleName" : "POWER-ETHERNET-MIB",
494
+ "oid" : "1.3.6.1.2.1.105.1.3.1",
495
+ "status" : "current",
496
+ "description" :
497
+ """A table of objects that display and control attributes
498
+ of the main power source in a PSE device. Ethernet
499
+ switches are one example of boxes that would support
500
+ these objects.
501
+ Values of all read-write objects in this table are
502
+ persistent at restart/reboot.""",
503
+ }, # table
504
+ "pethMainPseEntry" : {
505
+ "nodetype" : "row",
506
+ "moduleName" : "POWER-ETHERNET-MIB",
507
+ "oid" : "1.3.6.1.2.1.105.1.3.1.1",
508
+ "status" : "current",
509
+ "linkage" : [
510
+ "pethMainPseGroupIndex",
511
+ ],
512
+ "description" :
513
+ """A set of objects that display and control the Main
514
+ power of a PSE. """,
515
+ }, # row
516
+ "pethMainPseGroupIndex" : {
517
+ "nodetype" : "column",
518
+ "moduleName" : "POWER-ETHERNET-MIB",
519
+ "oid" : "1.3.6.1.2.1.105.1.3.1.1.1",
520
+ "status" : "current",
521
+ "syntax" : {
522
+ "type" : {
523
+ "basetype" : "Integer32",
524
+ "ranges" : [
525
+ {
526
+ "min" : "1",
527
+ "max" : "2147483647"
528
+ },
529
+ ],
530
+ "range" : {
531
+ "min" : "1",
532
+ "max" : "2147483647"
533
+ },
534
+ },
535
+ },
536
+ "access" : "noaccess",
537
+ "description" :
538
+ """This variable uniquely identifies the group to which
539
+ power Ethernet PSE is connected. Group means (box in
540
+ the stack, module in a rack) and the value 1 MUST be
541
+ used for non-modular devices. Furthermore, the same
542
+ value MUST be used in this variable, pethPsePortGroupIndex,
543
+ and pethNotificationControlGroupIndex to refer to a
544
+ given box in a stack or module in a rack.""",
545
+ }, # column
546
+ "pethMainPsePower" : {
547
+ "nodetype" : "column",
548
+ "moduleName" : "POWER-ETHERNET-MIB",
549
+ "oid" : "1.3.6.1.2.1.105.1.3.1.1.2",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : {
553
+ "basetype" : "Unsigned32",
554
+ "parent module" : {
555
+ "name" : "SNMPv2-SMI",
556
+ "type" : "Gauge32",
557
+ },
558
+ "ranges" : [
559
+ {
560
+ "min" : "1",
561
+ "max" : "65535"
562
+ },
563
+ ],
564
+ "range" : {
565
+ "min" : "1",
566
+ "max" : "65535"
567
+ },
568
+ },
569
+ },
570
+ "access" : "readonly",
571
+ "units" : "Watts",
572
+ "description" :
573
+ """The nominal power of the PSE expressed in Watts.""",
574
+ }, # column
575
+ "pethMainPseOperStatus" : {
576
+ "nodetype" : "column",
577
+ "moduleName" : "POWER-ETHERNET-MIB",
578
+ "oid" : "1.3.6.1.2.1.105.1.3.1.1.3",
579
+ "status" : "current",
580
+ "syntax" : {
581
+ "type" : {
582
+ "basetype" : "Enumeration",
583
+ "on" : {
584
+ "nodetype" : "namednumber",
585
+ "number" : "1"
586
+ },
587
+ "off" : {
588
+ "nodetype" : "namednumber",
589
+ "number" : "2"
590
+ },
591
+ "faulty" : {
592
+ "nodetype" : "namednumber",
593
+ "number" : "3"
594
+ },
595
+ },
596
+ },
597
+ "access" : "readonly",
598
+ "description" :
599
+ """The operational status of the main PSE.""",
600
+ }, # column
601
+ "pethMainPseConsumptionPower" : {
602
+ "nodetype" : "column",
603
+ "moduleName" : "POWER-ETHERNET-MIB",
604
+ "oid" : "1.3.6.1.2.1.105.1.3.1.1.4",
605
+ "status" : "current",
606
+ "syntax" : {
607
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
608
+ },
609
+ "access" : "readonly",
610
+ "units" : "Watts",
611
+ "description" :
612
+ """Measured usage power expressed in Watts.""",
613
+ }, # column
614
+ "pethMainPseUsageThreshold" : {
615
+ "nodetype" : "column",
616
+ "moduleName" : "POWER-ETHERNET-MIB",
617
+ "oid" : "1.3.6.1.2.1.105.1.3.1.1.5",
618
+ "status" : "current",
619
+ "syntax" : {
620
+ "type" : {
621
+ "basetype" : "Integer32",
622
+ "ranges" : [
623
+ {
624
+ "min" : "1",
625
+ "max" : "99"
626
+ },
627
+ ],
628
+ "range" : {
629
+ "min" : "1",
630
+ "max" : "99"
631
+ },
632
+ },
633
+ },
634
+ "access" : "readwrite",
635
+ "units" : "%",
636
+ "description" :
637
+ """The usage threshold expressed in percents for
638
+ comparing the measured power and initiating
639
+ an alarm if the threshold is exceeded.""",
640
+ }, # column
641
+ "pethNotificationControl" : {
642
+ "nodetype" : "node",
643
+ "moduleName" : "POWER-ETHERNET-MIB",
644
+ "oid" : "1.3.6.1.2.1.105.1.4",
645
+ }, # node
646
+ "pethNotificationControlTable" : {
647
+ "nodetype" : "table",
648
+ "moduleName" : "POWER-ETHERNET-MIB",
649
+ "oid" : "1.3.6.1.2.1.105.1.4.1",
650
+ "status" : "current",
651
+ "description" :
652
+ """A table of objects that display and control the
653
+ Notification on a PSE device.
654
+ Values of all read-write objects in this table are
655
+ persistent at restart/reboot.""",
656
+ }, # table
657
+ "pethNotificationControlEntry" : {
658
+ "nodetype" : "row",
659
+ "moduleName" : "POWER-ETHERNET-MIB",
660
+ "oid" : "1.3.6.1.2.1.105.1.4.1.1",
661
+ "status" : "current",
662
+ "linkage" : [
663
+ "pethNotificationControlGroupIndex",
664
+ ],
665
+ "description" :
666
+ """A set of objects that control the Notification events.""",
667
+ }, # row
668
+ "pethNotificationControlGroupIndex" : {
669
+ "nodetype" : "column",
670
+ "moduleName" : "POWER-ETHERNET-MIB",
671
+ "oid" : "1.3.6.1.2.1.105.1.4.1.1.1",
672
+ "status" : "current",
673
+ "syntax" : {
674
+ "type" : {
675
+ "basetype" : "Integer32",
676
+ "ranges" : [
677
+ {
678
+ "min" : "1",
679
+ "max" : "2147483647"
680
+ },
681
+ ],
682
+ "range" : {
683
+ "min" : "1",
684
+ "max" : "2147483647"
685
+ },
686
+ },
687
+ },
688
+ "access" : "noaccess",
689
+ "description" :
690
+ """This variable uniquely identifies the group. Group
691
+ means box in the stack, module in a rack and the value
692
+ 1 MUST be used for non-modular devices. Furthermore,
693
+ the same value MUST be used in this variable,
694
+ pethPsePortGroupIndex, and
695
+ pethMainPseGroupIndex to refer to a given box in a
696
+ stack or module in a rack. """,
697
+ }, # column
698
+ "pethNotificationControlEnable" : {
699
+ "nodetype" : "column",
700
+ "moduleName" : "POWER-ETHERNET-MIB",
701
+ "oid" : "1.3.6.1.2.1.105.1.4.1.1.2",
702
+ "status" : "current",
703
+ "syntax" : {
704
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
705
+ },
706
+ "access" : "readwrite",
707
+ "description" :
708
+ """This object controls, on a per-group basis, whether
709
+ or not notifications from the agent are enabled. The
710
+ value true(1) means that notifications are enabled; the
711
+ value false(2) means that they are not.""",
712
+ }, # column
713
+ "pethConformance" : {
714
+ "nodetype" : "node",
715
+ "moduleName" : "POWER-ETHERNET-MIB",
716
+ "oid" : "1.3.6.1.2.1.105.2",
717
+ }, # node
718
+ "pethCompliances" : {
719
+ "nodetype" : "node",
720
+ "moduleName" : "POWER-ETHERNET-MIB",
721
+ "oid" : "1.3.6.1.2.1.105.2.1",
722
+ }, # node
723
+ "pethGroups" : {
724
+ "nodetype" : "node",
725
+ "moduleName" : "POWER-ETHERNET-MIB",
726
+ "oid" : "1.3.6.1.2.1.105.2.2",
727
+ }, # node
728
+ }, # nodes
729
+
730
+ "notifications" : {
731
+ "pethPsePortOnOffNotification" : {
732
+ "nodetype" : "notification",
733
+ "moduleName" : "POWER-ETHERNET-MIB",
734
+ "oid" : "1.3.6.1.2.1.105.0.1",
735
+ "status" : "current",
736
+ "objects" : {
737
+ "pethPsePortDetectionStatus" : {
738
+ "nodetype" : "object",
739
+ "module" : "POWER-ETHERNET-MIB"
740
+ },
741
+ },
742
+ "description" :
743
+ """ This Notification indicates if Pse Port is delivering or
744
+ not power to the PD. This Notification SHOULD be sent on
745
+ every status change except in the searching mode.
746
+ At least 500 msec must elapse between notifications
747
+ being emitted by the same object instance.""",
748
+ }, # notification
749
+ "pethMainPowerUsageOnNotification" : {
750
+ "nodetype" : "notification",
751
+ "moduleName" : "POWER-ETHERNET-MIB",
752
+ "oid" : "1.3.6.1.2.1.105.0.2",
753
+ "status" : "current",
754
+ "objects" : {
755
+ "pethMainPseConsumptionPower" : {
756
+ "nodetype" : "object",
757
+ "module" : "POWER-ETHERNET-MIB"
758
+ },
759
+ },
760
+ "description" :
761
+ """ This Notification indicate PSE Threshold usage
762
+ indication is on, the usage power is above the
763
+ threshold. At least 500 msec must elapse between
764
+ notifications being emitted by the same object
765
+ instance.""",
766
+ }, # notification
767
+ "pethMainPowerUsageOffNotification" : {
768
+ "nodetype" : "notification",
769
+ "moduleName" : "POWER-ETHERNET-MIB",
770
+ "oid" : "1.3.6.1.2.1.105.0.3",
771
+ "status" : "current",
772
+ "objects" : {
773
+ "pethMainPseConsumptionPower" : {
774
+ "nodetype" : "object",
775
+ "module" : "POWER-ETHERNET-MIB"
776
+ },
777
+ },
778
+ "description" :
779
+ """ This Notification indicates PSE Threshold usage indication
780
+ off, the usage power is below the threshold.
781
+ At least 500 msec must elapse between notifications being
782
+ emitted by the same object instance.""",
783
+ }, # notification
784
+ }, # notifications
785
+
786
+ "groups" : {
787
+ "pethPsePortGroup" : {
788
+ "nodetype" : "group",
789
+ "moduleName" : "POWER-ETHERNET-MIB",
790
+ "oid" : "1.3.6.1.2.1.105.2.2.1",
791
+ "status" : "current",
792
+ "members" : {
793
+ "pethPsePortAdminEnable" : {
794
+ "nodetype" : "member",
795
+ "module" : "POWER-ETHERNET-MIB"
796
+ },
797
+ "pethPsePortPowerPairsControlAbility" : {
798
+ "nodetype" : "member",
799
+ "module" : "POWER-ETHERNET-MIB"
800
+ },
801
+ "pethPsePortPowerPairs" : {
802
+ "nodetype" : "member",
803
+ "module" : "POWER-ETHERNET-MIB"
804
+ },
805
+ "pethPsePortDetectionStatus" : {
806
+ "nodetype" : "member",
807
+ "module" : "POWER-ETHERNET-MIB"
808
+ },
809
+ "pethPsePortPowerPriority" : {
810
+ "nodetype" : "member",
811
+ "module" : "POWER-ETHERNET-MIB"
812
+ },
813
+ "pethPsePortMPSAbsentCounter" : {
814
+ "nodetype" : "member",
815
+ "module" : "POWER-ETHERNET-MIB"
816
+ },
817
+ "pethPsePortInvalidSignatureCounter" : {
818
+ "nodetype" : "member",
819
+ "module" : "POWER-ETHERNET-MIB"
820
+ },
821
+ "pethPsePortPowerDeniedCounter" : {
822
+ "nodetype" : "member",
823
+ "module" : "POWER-ETHERNET-MIB"
824
+ },
825
+ "pethPsePortOverLoadCounter" : {
826
+ "nodetype" : "member",
827
+ "module" : "POWER-ETHERNET-MIB"
828
+ },
829
+ "pethPsePortShortCounter" : {
830
+ "nodetype" : "member",
831
+ "module" : "POWER-ETHERNET-MIB"
832
+ },
833
+ "pethPsePortType" : {
834
+ "nodetype" : "member",
835
+ "module" : "POWER-ETHERNET-MIB"
836
+ },
837
+ "pethPsePortPowerClassifications" : {
838
+ "nodetype" : "member",
839
+ "module" : "POWER-ETHERNET-MIB"
840
+ },
841
+ }, # members
842
+ "description" :
843
+ """PSE Port objects.""",
844
+ }, # group
845
+ "pethMainPseGroup" : {
846
+ "nodetype" : "group",
847
+ "moduleName" : "POWER-ETHERNET-MIB",
848
+ "oid" : "1.3.6.1.2.1.105.2.2.2",
849
+ "status" : "current",
850
+ "members" : {
851
+ "pethMainPsePower" : {
852
+ "nodetype" : "member",
853
+ "module" : "POWER-ETHERNET-MIB"
854
+ },
855
+ "pethMainPseOperStatus" : {
856
+ "nodetype" : "member",
857
+ "module" : "POWER-ETHERNET-MIB"
858
+ },
859
+ "pethMainPseConsumptionPower" : {
860
+ "nodetype" : "member",
861
+ "module" : "POWER-ETHERNET-MIB"
862
+ },
863
+ "pethMainPseUsageThreshold" : {
864
+ "nodetype" : "member",
865
+ "module" : "POWER-ETHERNET-MIB"
866
+ },
867
+ }, # members
868
+ "description" :
869
+ """Main PSE Objects. """,
870
+ }, # group
871
+ "pethNotificationControlGroup" : {
872
+ "nodetype" : "group",
873
+ "moduleName" : "POWER-ETHERNET-MIB",
874
+ "oid" : "1.3.6.1.2.1.105.2.2.3",
875
+ "status" : "current",
876
+ "members" : {
877
+ "pethNotificationControlEnable" : {
878
+ "nodetype" : "member",
879
+ "module" : "POWER-ETHERNET-MIB"
880
+ },
881
+ }, # members
882
+ "description" :
883
+ """Notification Control Objects. """,
884
+ }, # group
885
+ "pethPsePortNotificationGroup" : {
886
+ "nodetype" : "group",
887
+ "moduleName" : "POWER-ETHERNET-MIB",
888
+ "oid" : "1.3.6.1.2.1.105.2.2.4",
889
+ "status" : "current",
890
+ "members" : {
891
+ "pethPsePortOnOffNotification" : {
892
+ "nodetype" : "member",
893
+ "module" : "POWER-ETHERNET-MIB"
894
+ },
895
+ }, # members
896
+ "description" :
897
+ """Pse Port Notifications.""",
898
+ }, # group
899
+ "pethMainPowerNotificationGroup" : {
900
+ "nodetype" : "group",
901
+ "moduleName" : "POWER-ETHERNET-MIB",
902
+ "oid" : "1.3.6.1.2.1.105.2.2.5",
903
+ "status" : "current",
904
+ "members" : {
905
+ "pethMainPowerUsageOnNotification" : {
906
+ "nodetype" : "member",
907
+ "module" : "POWER-ETHERNET-MIB"
908
+ },
909
+ "pethMainPowerUsageOffNotification" : {
910
+ "nodetype" : "member",
911
+ "module" : "POWER-ETHERNET-MIB"
912
+ },
913
+ }, # members
914
+ "description" :
915
+ """Main PSE Notifications.""",
916
+ }, # group
917
+ }, # groups
918
+
919
+ "compliances" : {
920
+ "pethCompliance" : {
921
+ "nodetype" : "compliance",
922
+ "moduleName" : "POWER-ETHERNET-MIB",
923
+ "oid" : "1.3.6.1.2.1.105.2.1.1",
924
+ "status" : "current",
925
+ "description" :
926
+ """Describes the requirements for conformance to the
927
+ Power Ethernet MIB.""",
928
+ "requires" : {
929
+ "pethPsePortGroup" : {
930
+ "nodetype" : "mandatory",
931
+ "module" : "POWER-ETHERNET-MIB"
932
+ },
933
+ "pethPsePortNotificationGroup" : {
934
+ "nodetype" : "mandatory",
935
+ "module" : "POWER-ETHERNET-MIB"
936
+ },
937
+ "pethNotificationControlGroup" : {
938
+ "nodetype" : "mandatory",
939
+ "module" : "POWER-ETHERNET-MIB"
940
+ },
941
+ "pethMainPseGroup" : {
942
+ "nodetype" : "optional",
943
+ "module" : "POWER-ETHERNET-MIB",
944
+ "description" :
945
+ """The pethMainPseGroup is mandatory for PSE systems
946
+ that implement a main power supply.""",
947
+ },
948
+ "pethMainPowerNotificationGroup" : {
949
+ "nodetype" : "optional",
950
+ "module" : "POWER-ETHERNET-MIB",
951
+ "description" :
952
+ """The pethMainPowerNotificationGroup is mandatory for
953
+ PSE systems that implement a main power supply.""",
954
+ },
955
+ }, # requires
956
+ }, # compliance
957
+ }, # compliances
958
+
959
+ }