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,965 @@
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 GMPLS-LABEL-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/GMPLS-LABEL-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
11
+
12
+ "GMPLS-LABEL-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Common Control and Measurement Plane (CCAMP) Working Group""",
17
+ "contact" :
18
+ """ Thomas D. Nadeau
19
+ Cisco Systems, Inc.
20
+ Email: tnadeau@cisco.com
21
+
22
+ Adrian Farrel
23
+ Old Dog Consulting
24
+ Email: adrian@olddog.co.uk
25
+
26
+ Comments about this document should be emailed directly to the
27
+ CCAMP working group mailing list at ccamp@ops.ietf.org.""",
28
+ "description" :
29
+ """Copyright (C) The IETF Trust (2007). This version of
30
+ this MIB module is part of RFC 4803; see the RFC itself for
31
+ full legal notices.
32
+
33
+
34
+
35
+
36
+ This MIB module contains managed object definitions for labels
37
+ within GMPLS systems as defined in
38
+ Generalized Multi-Protocol Label Switching (GMPLS) Signaling
39
+ Functional Description, Berger, L. (Editor), RFC 3471,
40
+ January 2003.""",
41
+ "revisions" : (
42
+ {
43
+ "date" : "2007-02-27 00:00",
44
+ "description" :
45
+ """Initial version issued as part of RFC 4803.""",
46
+ },
47
+ ),
48
+ "identity node" : "gmplsLabelStdMIB",
49
+ },
50
+
51
+ "imports" : (
52
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
53
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
56
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
57
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
58
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
59
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
60
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
61
+ {"module" : "DIFFSERV-MIB", "name" : "IndexIntegerNextFree"},
62
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLabel"},
63
+ {"module" : "MPLS-TC-STD-MIB", "name" : "mplsStdMIB"},
64
+ {"module" : "GMPLS-TC-STD-MIB", "name" : "GmplsLabelTypeTC"},
65
+ {"module" : "GMPLS-TC-STD-MIB", "name" : "GmplsFreeformLabelTC"},
66
+ ),
67
+
68
+ "nodes" : {
69
+ "gmplsLabelStdMIB" : {
70
+ "nodetype" : "node",
71
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
72
+ "oid" : "1.3.6.1.2.1.10.166.16",
73
+ "status" : "current",
74
+ }, # node
75
+ "gmplsLabelObjects" : {
76
+ "nodetype" : "node",
77
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
78
+ "oid" : "1.3.6.1.2.1.10.166.16.1",
79
+ }, # node
80
+ "gmplsLabelIndexNext" : {
81
+ "nodetype" : "scalar",
82
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
83
+ "oid" : "1.3.6.1.2.1.10.166.16.1.1",
84
+ "status" : "current",
85
+ "syntax" : {
86
+ "type" : { "module" :"DIFFSERV-MIB", "name" : "IndexIntegerNextFree"},
87
+ },
88
+ "access" : "readonly",
89
+ "description" :
90
+ """This object contains an unused value for gmplsLabelIndex,
91
+ or a zero to indicate that no unused value exists or is
92
+ available.
93
+
94
+ A management application wishing to create a row in the
95
+ gmplsLabelTable may read this object and then attempt to
96
+ create a row in the table. If row creation fails (because
97
+ another application has already created a row with the
98
+ supplied index), the management application should read this
99
+ object again to get a new index value.
100
+
101
+ When a row is created in the gmplsLabelTable with the
102
+ gmplsLabelIndex value held by this object, an implementation
103
+ MUST change the value in this object.""",
104
+ }, # scalar
105
+ "gmplsLabelTable" : {
106
+ "nodetype" : "table",
107
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
108
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2",
109
+ "status" : "current",
110
+ "description" :
111
+ """Table of GMPLS Labels. This table allows the representation
112
+ of the more complex label forms required for GMPLS that cannot
113
+ be held within the TEXTUAL-CONVENTION MplsLabel; that is, labels
114
+ that cannot be encoded within 32 bits. It is, nevertheless, also
115
+ capable of holding 32-bit labels or regular MPLS Labels if
116
+ desired.
117
+
118
+
119
+ Each entry in this table represents an individual GMPLS Label
120
+ value. The representation of Labels in tables in other MIB
121
+ modules may be achieved by a referrence to an entry in this
122
+ table by means of a row pointer into this table. The indexing
123
+ of this table provides for arbitrary indexing and also for
124
+ concatenation of labels.
125
+
126
+ For an example of label concatenation, see RFC 3945, section 7.1.
127
+ In essence, a GMPLS Label may be composite in order to identify
128
+ a set of resources in the data plane. Practical examples are
129
+ timeslots and wavelength sets (which are not contiguous like
130
+ wavebands).
131
+
132
+ The indexing mechanism allows multiple entries in this table to
133
+ be seen as a sequence of labels that should be concatenated.
134
+ Ordering is potentially very sensitive for concatenation.""",
135
+ "reference" :
136
+ """1. Generalized Multiprotocol Label Switching (GMPLS)
137
+ Architecture, RFC 3945, section 7.1.""",
138
+ }, # table
139
+ "gmplsLabelEntry" : {
140
+ "nodetype" : "row",
141
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
142
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1",
143
+ "create" : "true",
144
+ "status" : "current",
145
+ "linkage" : [
146
+ "gmplsLabelInterface",
147
+ "gmplsLabelIndex",
148
+ "gmplsLabelSubindex",
149
+ ],
150
+ "description" :
151
+ """An entry in this table represents a single label value. There
152
+ are three indexes into the table.
153
+
154
+ - The interface index may be helpful to distinguish which
155
+ labels are in use on which interfaces or to handle cases
156
+ where there are a very large number of labels in use in the
157
+ system. When label representation is desired to apply to the
158
+ whole system or when it is not important to distinguish
159
+ labels by their interfaces, this index MAY be set to zero.
160
+
161
+ - The label index provides a way of identifying the label.
162
+
163
+ - The label sub-index is only used for concatenated labels. It
164
+ identifies each component label. When non-concatenated labels
165
+ are used, this index SHOULD be set to zero.
166
+
167
+ A storage type object is supplied to control the storage type
168
+ for each entry, but implementations should note that the storage
169
+ type of conceptual rows in other tables that include row
170
+ pointers to an entry in this table SHOULD dictate the storage
171
+ type of the rows in this table where the row in the other table
172
+ is more persistent.""",
173
+ }, # row
174
+ "gmplsLabelInterface" : {
175
+ "nodetype" : "column",
176
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
177
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.1",
178
+ "status" : "current",
179
+ "syntax" : {
180
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
181
+ },
182
+ "access" : "noaccess",
183
+ "description" :
184
+ """The interface on which this label is used. If this object is set
185
+ to zero, the label MUST have applicability across the
186
+ whole system and not be limited to a single interface.""",
187
+ }, # column
188
+ "gmplsLabelIndex" : {
189
+ "nodetype" : "column",
190
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
191
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.2",
192
+ "status" : "current",
193
+ "syntax" : {
194
+ "type" : {
195
+ "basetype" : "Unsigned32",
196
+ "ranges" : [
197
+ {
198
+ "min" : "0",
199
+ "max" : "4294967295"
200
+ },
201
+ ],
202
+ "range" : {
203
+ "min" : "0",
204
+ "max" : "4294967295"
205
+ },
206
+ },
207
+ },
208
+ "access" : "noaccess",
209
+ "description" :
210
+ """An arbitrary index into the table to identify a label.
211
+
212
+ Note that implementations that are representing 32-bit labels
213
+ within this table MAY choose to align this index with the value
214
+ of the label, and this may result in the use of the value zero
215
+ since it represents a valid label value. Such implementation
216
+ should be aware of the implications of sparsely populated
217
+
218
+
219
+ tables.
220
+
221
+ A management application may read the gmplsLabelIndexNext
222
+ object to find a suitable value for this object.""",
223
+ }, # column
224
+ "gmplsLabelSubindex" : {
225
+ "nodetype" : "column",
226
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
227
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.3",
228
+ "status" : "current",
229
+ "syntax" : {
230
+ "type" : {
231
+ "basetype" : "Unsigned32",
232
+ "ranges" : [
233
+ {
234
+ "min" : "0",
235
+ "max" : "4294967295"
236
+ },
237
+ ],
238
+ "range" : {
239
+ "min" : "0",
240
+ "max" : "4294967295"
241
+ },
242
+ },
243
+ },
244
+ "access" : "noaccess",
245
+ "description" :
246
+ """In conjunction with gmplsLabelInterface and gmplsLabelIndex,
247
+ this object uniquely identifies this row. This sub-index allows
248
+ a single GMPLS Label to be defined as a concatenation of labels.
249
+ This is particularly useful in TDM.
250
+
251
+ The ordering of sub-labels is strict with the sub-label with
252
+ the lowest gmplsLabelSubindex appearing first. Note that all
253
+ sub-labels of a single GMPLS Label must share the same
254
+ gmplsLabelInterface and gmplsLabelIndex values. For labels that
255
+ are not composed of concatenated sub-labels, this value SHOULD
256
+ be set to zero.""",
257
+ }, # column
258
+ "gmplsLabelType" : {
259
+ "nodetype" : "column",
260
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
261
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.4",
262
+ "status" : "current",
263
+ "syntax" : {
264
+ "type" : { "module" :"GMPLS-TC-STD-MIB", "name" : "GmplsLabelTypeTC"},
265
+ },
266
+ "access" : "readwrite",
267
+ "description" :
268
+ """Identifies the type of this label. Note that this object does
269
+ not determine whether MPLS or GMPLS signaling is in use: a value
270
+ of gmplsMplsLabel(1) denotes that an MPLS Packet Label is
271
+ present in the gmplsLabelMplsLabel object and encoded using the
272
+ MplsLabel TEXTUAL-CONVENTION (may be a 20-bit MPLS Label, a 10-
273
+ or 23-bit Frame Relay Label, or an Asynchronous Transfer Mode
274
+ (ATM) Label), but does not describe whether this is signaled
275
+ using MPLS or GMPLS.
276
+
277
+ The value of this object helps determine which of the following
278
+ objects are valid. This object cannot be modified if
279
+ gmplsLabelRowStatus is active(1).""",
280
+ "reference" :
281
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
282
+ Functional Description, RFC 3471, section 3.""",
283
+ }, # column
284
+ "gmplsLabelMplsLabel" : {
285
+ "nodetype" : "column",
286
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
287
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.5",
288
+ "status" : "current",
289
+ "syntax" : {
290
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
291
+ },
292
+ "access" : "readwrite",
293
+ "default" : "0",
294
+ "description" :
295
+ """The value of an MPLS Label (that is a Packet Label) if this
296
+ table is used to store it. This may be used in MPLS systems even
297
+ though the label values can be adequately stored in the MPLS MIB
298
+ modules (MPLS-LSR-STD-MIB and MPLS-TE-STD-MIB). Furthermore, in
299
+ mixed MPLS and GMPLS systems, it may be advantageous to store all
300
+ labels in a single label table. Lastly, in GMPLS systems where
301
+ Packet Labels are used (that is in systems that use GMPLS
302
+ signaling and GMPLS Labels for packet switching), it may be
303
+ desirable to use this table.
304
+
305
+ This object is only valid if gmplsLabelType is set
306
+ to gmplsMplsLabel(1). This object cannot be modified if
307
+ gmplsLabelRowStatus is active(1).""",
308
+ "reference" :
309
+ """1. MPLS Label Stack Encoding, RFC 3032.""",
310
+ }, # column
311
+ "gmplsLabelPortWavelength" : {
312
+ "nodetype" : "column",
313
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
314
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.6",
315
+ "status" : "current",
316
+ "syntax" : {
317
+ "type" : { "module" :"", "name" : "Unsigned32"},
318
+ },
319
+ "access" : "readwrite",
320
+ "default" : "0",
321
+ "description" :
322
+ """The value of a Port or Wavelength Label when carried as a
323
+ Generalized Label. Only valid if gmplsLabelType is set to
324
+ gmplsPortWavelengthLabel(2). This object cannot be modified if
325
+ gmplsLabelRowStatus is active(1).""",
326
+ "reference" :
327
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
328
+ Functional Description, RFC 3471, section 3.2.1.1.""",
329
+ }, # column
330
+ "gmplsLabelFreeform" : {
331
+ "nodetype" : "column",
332
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
333
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.7",
334
+ "status" : "current",
335
+ "syntax" : {
336
+ "type" : { "module" :"GMPLS-TC-STD-MIB", "name" : "GmplsFreeformLabelTC"},
337
+ },
338
+ "access" : "readwrite",
339
+ "default" : "0x00",
340
+ "description" :
341
+ """The value of a Freeform Generalized Label that does not conform
342
+ to one of the standardized label encodings or that an
343
+ implementation chooses to represent as an octet string without
344
+ further decoding. Only valid if gmplsLabelType is set to
345
+ gmplsFreeformLabel(3). This object cannot be modified
346
+ if gmplsLabelRowStatus is active(1).""",
347
+ "reference" :
348
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
349
+ Functional Description, RFC 3471, section 3.2.""",
350
+ }, # column
351
+ "gmplsLabelSonetSdhSignalIndex" : {
352
+ "nodetype" : "column",
353
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
354
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.8",
355
+ "status" : "current",
356
+ "syntax" : {
357
+ "type" : {
358
+ "basetype" : "Integer32",
359
+ "ranges" : [
360
+ {
361
+ "min" : "0",
362
+ "max" : "4095"
363
+ },
364
+ ],
365
+ "range" : {
366
+ "min" : "0",
367
+ "max" : "4095"
368
+ },
369
+ },
370
+ },
371
+ "access" : "readwrite",
372
+ "default" : "0",
373
+ "description" :
374
+ """The Signal Index value (S) of a SONET or SDH Generalized Label.
375
+ Zero indicates that this field is non-significant. Only valid if
376
+ gmplsLabelType is set to gmplsSonetLabel(4) or gmplsSdhLabel(5).
377
+ This object cannot be modified if gmplsLabelRowStatus is
378
+ active(1).""",
379
+ "reference" :
380
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Extensions
381
+ for Synchronous Optical Network (SONET) and Synchronous
382
+ Digital Hierarchy (SDH) Control, RFC 4606, section 3.""",
383
+ }, # column
384
+ "gmplsLabelSdhVc" : {
385
+ "nodetype" : "column",
386
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
387
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.9",
388
+ "status" : "current",
389
+ "syntax" : {
390
+ "type" : {
391
+ "basetype" : "Integer32",
392
+ "ranges" : [
393
+ {
394
+ "min" : "0",
395
+ "max" : "15"
396
+ },
397
+ ],
398
+ "range" : {
399
+ "min" : "0",
400
+ "max" : "15"
401
+ },
402
+ },
403
+ },
404
+ "access" : "readwrite",
405
+ "default" : "0",
406
+ "description" :
407
+ """The VC Indicator (U) of an SDH Generalized Label. Zero indicates
408
+ that this field is non-significant. Only valid if gmplsLabelType
409
+ is set to gmplsSdhLabel(5). This object cannot be modified if
410
+ gmplsLabelRowStatus is active(1).""",
411
+ "reference" :
412
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Extensions
413
+ for Synchronous Optical Network (SONET) and Synchronous
414
+ Digital Hierarchy (SDH) Control, RFC 4606, section 3.""",
415
+ }, # column
416
+ "gmplsLabelSdhVcBranch" : {
417
+ "nodetype" : "column",
418
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
419
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.10",
420
+ "status" : "current",
421
+ "syntax" : {
422
+ "type" : {
423
+ "basetype" : "Integer32",
424
+ "ranges" : [
425
+ {
426
+ "min" : "0",
427
+ "max" : "15"
428
+ },
429
+ ],
430
+ "range" : {
431
+ "min" : "0",
432
+ "max" : "15"
433
+ },
434
+ },
435
+ },
436
+ "access" : "readwrite",
437
+ "default" : "0",
438
+ "description" :
439
+ """The VC Branch Indicator (K) of an SDH Generalized Label. Zero
440
+ indicates that this field is non-significant. Only valid if
441
+ gmplsLabelType is set to gmplsSdhLabel(5). This
442
+ object cannot be modified if gmplsLabelRowStatus is active(1).""",
443
+ "reference" :
444
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Extensions
445
+ for Synchronous Optical Network (SONET) and Synchronous
446
+ Digital Hierarchy (SDH) Control, RFC 4606, section 3.""",
447
+ }, # column
448
+ "gmplsLabelSonetSdhBranch" : {
449
+ "nodetype" : "column",
450
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
451
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.11",
452
+ "status" : "current",
453
+ "syntax" : {
454
+ "type" : {
455
+ "basetype" : "Integer32",
456
+ "ranges" : [
457
+ {
458
+ "min" : "0",
459
+ "max" : "15"
460
+ },
461
+ ],
462
+ "range" : {
463
+ "min" : "0",
464
+ "max" : "15"
465
+ },
466
+ },
467
+ },
468
+ "access" : "readwrite",
469
+ "default" : "0",
470
+ "description" :
471
+ """The Branch Indicator (L) of a SONET or SDH Generalized Label.
472
+ Zero indicates that this field is non-significant. Only valid
473
+ gmplsLabelType is set to gmplsSonetLabel(4) or
474
+ gmplsSdhLabel(5). This object cannot be modified if
475
+ gmplsLabelRowStatus is active(1).""",
476
+ "reference" :
477
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Extensions
478
+ for Synchronous Optical Network (SONET) and Synchronous
479
+ Digital Hierarchy (SDH) Control, RFC 4606, section 3.""",
480
+ }, # column
481
+ "gmplsLabelSonetSdhGroupBranch" : {
482
+ "nodetype" : "column",
483
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
484
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.12",
485
+ "status" : "current",
486
+ "syntax" : {
487
+ "type" : {
488
+ "basetype" : "Integer32",
489
+ "ranges" : [
490
+ {
491
+ "min" : "0",
492
+ "max" : "15"
493
+ },
494
+ ],
495
+ "range" : {
496
+ "min" : "0",
497
+ "max" : "15"
498
+ },
499
+ },
500
+ },
501
+ "access" : "readwrite",
502
+ "default" : "0",
503
+ "description" :
504
+ """The Group Branch Indicator (M) of a SONET or SDH Generalized
505
+ Label. Zero indicates that this field is non-significant.
506
+ Only valid if gmplsLabelType is set to gmplsSonetLabel(4) or
507
+ gmplsSdhLabel(5). This object cannot be modified if
508
+ gmplsLabelRowStatus is active(1).""",
509
+ "reference" :
510
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Extensions
511
+ for Synchronous Optical Network (SONET) and Synchronous
512
+ Digital Hierarchy (SDH) Control, RFC 4606, section 3.""",
513
+ }, # column
514
+ "gmplsLabelWavebandId" : {
515
+ "nodetype" : "column",
516
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
517
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.13",
518
+ "status" : "current",
519
+ "syntax" : {
520
+ "type" : { "module" :"", "name" : "Unsigned32"},
521
+ },
522
+ "access" : "readwrite",
523
+ "default" : "0",
524
+ "description" :
525
+ """The waveband identifier component of a Waveband Label. Only
526
+ valid if gmplsLabelType is set to gmplsWavebandLabel(6). This
527
+ object cannot be modified if gmplsLabelRowStatus is active(1).""",
528
+ "reference" :
529
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
530
+ Functional Description, RFC 3471, section 3.3.""",
531
+ }, # column
532
+ "gmplsLabelWavebandStart" : {
533
+ "nodetype" : "column",
534
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
535
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.14",
536
+ "status" : "current",
537
+ "syntax" : {
538
+ "type" : { "module" :"", "name" : "Unsigned32"},
539
+ },
540
+ "access" : "readwrite",
541
+ "default" : "0",
542
+ "description" :
543
+ """The starting label component of a Waveband Label. Only valid if
544
+ gmplsLabelType is set to gmplsWavebandLabel(6). This object
545
+ cannot be modified if gmplsLabelRowStatus is active(1).""",
546
+ "reference" :
547
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
548
+ Functional Description, RFC 3471, section 3.3.""",
549
+ }, # column
550
+ "gmplsLabelWavebandEnd" : {
551
+ "nodetype" : "column",
552
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
553
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.15",
554
+ "status" : "current",
555
+ "syntax" : {
556
+ "type" : { "module" :"", "name" : "Unsigned32"},
557
+ },
558
+ "access" : "readwrite",
559
+ "default" : "0",
560
+ "description" :
561
+ """The end label component of a Waveband Label. Only valid if
562
+ gmplsLabelType is set to gmplsWavebandLabel(6). This object
563
+ cannot be modified if gmplsLabelRowStatus is active(1).""",
564
+ "reference" :
565
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
566
+ Functional Description, RFC 3471, section 3.3.""",
567
+ }, # column
568
+ "gmplsLabelStorageType" : {
569
+ "nodetype" : "column",
570
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
571
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.16",
572
+ "status" : "current",
573
+ "syntax" : {
574
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
575
+ },
576
+ "access" : "readwrite",
577
+ "default" : "volatile",
578
+ "description" :
579
+ """This variable indicates the storage type for this row. The
580
+ agent MUST ensure that this object's value remains consistent
581
+ with the storage type of any rows in other tables that contain
582
+ pointers to this row. In particular, the storage type of this
583
+ row must be at least as permanent as that of any row that points
584
+ to it.
585
+ Conceptual rows having the value 'permanent' need not
586
+ allow write-access to any columnar objects in the row.""",
587
+ "reference" :
588
+ """1. Textual Conventions for SMIv2, STD 58, RFC 2579, section 2.""",
589
+ }, # column
590
+ "gmplsLabelRowStatus" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
593
+ "oid" : "1.3.6.1.2.1.10.166.16.1.2.1.17",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
597
+ },
598
+ "access" : "readwrite",
599
+ "description" :
600
+ """This variable is used to create, modify, and/or delete a row in
601
+ this table. When a row in this table has a row in the active(1)
602
+ state, no objects in this row can be modified except the
603
+ gmplsLabelRowStatus and gmplsLabelStorageType.
604
+
605
+ The gmplsLabelType object does not have a default and must be
606
+ set before a row can become active. The corresponding label
607
+ objects (dependent on the value of gmplsLabelType) should also
608
+ be set unless they happen to need to use the specified default
609
+ values as follows:
610
+
611
+ gmplsLabelType setting objects to be set
612
+ --------------------------------------------------------------
613
+ gmplsMplsLabel(1) gmplsLabelMplsLabel
614
+
615
+ gmplsPortWavelengthLabel(2) gmplsLabelPortWavelength
616
+
617
+ gmplsFreeformLabel(3) gmplsLabelFreeform
618
+
619
+ gmplsSonetLabel(4) gmplsLabelSonetSdhSignalIndex
620
+ gmplsLabelSdhVc
621
+ gmplsLabelSdhVcBranch
622
+ gmplsLabelSonetSdhBranch
623
+ gmplsLabelSonetSdhGroupBranch
624
+
625
+ gmplsSdhLabel(5) gmplsLabelSonetSdhSignalIndex
626
+ gmplsLabelSdhVc
627
+ gmplsLabelSdhVcBranch
628
+ gmplsLabelSonetSdhBranch
629
+ gmplsLabelSonetSdhGroupBranch
630
+
631
+ gmplsWavebandLabel(6) gmplsLabelWavebandId
632
+ gmplsLabelWavebandStart
633
+ gmplsLabelWavebandEnd""",
634
+ }, # column
635
+ "gmplsLabelConformance" : {
636
+ "nodetype" : "node",
637
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
638
+ "oid" : "1.3.6.1.2.1.10.166.16.2",
639
+ }, # node
640
+ "gmplsLabelGroups" : {
641
+ "nodetype" : "node",
642
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
643
+ "oid" : "1.3.6.1.2.1.10.166.16.2.1",
644
+ }, # node
645
+ "gmplsLabelCompliances" : {
646
+ "nodetype" : "node",
647
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
648
+ "oid" : "1.3.6.1.2.1.10.166.16.2.2",
649
+ }, # node
650
+ }, # nodes
651
+
652
+ "groups" : {
653
+ "gmplsLabelTableGroup" : {
654
+ "nodetype" : "group",
655
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
656
+ "oid" : "1.3.6.1.2.1.10.166.16.2.1.1",
657
+ "status" : "current",
658
+ "members" : {
659
+ "gmplsLabelIndexNext" : {
660
+ "nodetype" : "member",
661
+ "module" : "GMPLS-LABEL-STD-MIB"
662
+ },
663
+ "gmplsLabelType" : {
664
+ "nodetype" : "member",
665
+ "module" : "GMPLS-LABEL-STD-MIB"
666
+ },
667
+ "gmplsLabelStorageType" : {
668
+ "nodetype" : "member",
669
+ "module" : "GMPLS-LABEL-STD-MIB"
670
+ },
671
+ "gmplsLabelRowStatus" : {
672
+ "nodetype" : "member",
673
+ "module" : "GMPLS-LABEL-STD-MIB"
674
+ },
675
+ }, # members
676
+ "description" :
677
+ """Necessary, but not sufficient, set of objects to implement label
678
+ table support. In addition, depending on the type of labels
679
+ supported, the following other groups defined below are
680
+ mandatory:
681
+
682
+ gmplsLabelWavebandGroup and/or
683
+ gmplsLabelPacketGroup and/or
684
+ gmplsLabelPortWavelengthGroup and/or
685
+ gmplsLabelFreeformGroup and/or
686
+ gmplsLabelSonetSdhGroup.""",
687
+ }, # group
688
+ "gmplsLabelPacketGroup" : {
689
+ "nodetype" : "group",
690
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
691
+ "oid" : "1.3.6.1.2.1.10.166.16.2.1.2",
692
+ "status" : "current",
693
+ "members" : {
694
+ "gmplsLabelMplsLabel" : {
695
+ "nodetype" : "member",
696
+ "module" : "GMPLS-LABEL-STD-MIB"
697
+ },
698
+ }, # members
699
+ "description" :
700
+ """Object needed to implement Packet (MPLS) Labels.""",
701
+ }, # group
702
+ "gmplsLabelPortWavelengthGroup" : {
703
+ "nodetype" : "group",
704
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
705
+ "oid" : "1.3.6.1.2.1.10.166.16.2.1.3",
706
+ "status" : "current",
707
+ "members" : {
708
+ "gmplsLabelPortWavelength" : {
709
+ "nodetype" : "member",
710
+ "module" : "GMPLS-LABEL-STD-MIB"
711
+ },
712
+ }, # members
713
+ "description" :
714
+ """Object needed to implement Port and Wavelength Labels.""",
715
+ }, # group
716
+ "gmplsLabelFreeformGroup" : {
717
+ "nodetype" : "group",
718
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
719
+ "oid" : "1.3.6.1.2.1.10.166.16.2.1.4",
720
+ "status" : "current",
721
+ "members" : {
722
+ "gmplsLabelFreeform" : {
723
+ "nodetype" : "member",
724
+ "module" : "GMPLS-LABEL-STD-MIB"
725
+ },
726
+ }, # members
727
+ "description" :
728
+ """Object needed to implement Freeform Labels.""",
729
+ }, # group
730
+ "gmplsLabelSonetSdhGroup" : {
731
+ "nodetype" : "group",
732
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
733
+ "oid" : "1.3.6.1.2.1.10.166.16.2.1.5",
734
+ "status" : "current",
735
+ "members" : {
736
+ "gmplsLabelSonetSdhSignalIndex" : {
737
+ "nodetype" : "member",
738
+ "module" : "GMPLS-LABEL-STD-MIB"
739
+ },
740
+ "gmplsLabelSdhVc" : {
741
+ "nodetype" : "member",
742
+ "module" : "GMPLS-LABEL-STD-MIB"
743
+ },
744
+ "gmplsLabelSdhVcBranch" : {
745
+ "nodetype" : "member",
746
+ "module" : "GMPLS-LABEL-STD-MIB"
747
+ },
748
+ "gmplsLabelSonetSdhBranch" : {
749
+ "nodetype" : "member",
750
+ "module" : "GMPLS-LABEL-STD-MIB"
751
+ },
752
+ "gmplsLabelSonetSdhGroupBranch" : {
753
+ "nodetype" : "member",
754
+ "module" : "GMPLS-LABEL-STD-MIB"
755
+ },
756
+ }, # members
757
+ "description" :
758
+ """Objects needed to implement SONET and SDH Labels.""",
759
+ }, # group
760
+ "gmplsLabelWavebandGroup" : {
761
+ "nodetype" : "group",
762
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
763
+ "oid" : "1.3.6.1.2.1.10.166.16.2.1.6",
764
+ "status" : "current",
765
+ "members" : {
766
+ "gmplsLabelWavebandId" : {
767
+ "nodetype" : "member",
768
+ "module" : "GMPLS-LABEL-STD-MIB"
769
+ },
770
+ "gmplsLabelWavebandStart" : {
771
+ "nodetype" : "member",
772
+ "module" : "GMPLS-LABEL-STD-MIB"
773
+ },
774
+ "gmplsLabelWavebandEnd" : {
775
+ "nodetype" : "member",
776
+ "module" : "GMPLS-LABEL-STD-MIB"
777
+ },
778
+ }, # members
779
+ "description" :
780
+ """Objects needed to implement Waveband Labels.""",
781
+ }, # group
782
+ }, # groups
783
+
784
+ "compliances" : {
785
+ "gmplsLabelModuleReadOnlyCompliance" : {
786
+ "nodetype" : "compliance",
787
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
788
+ "oid" : "1.3.6.1.2.1.10.166.16.2.2.1",
789
+ "status" : "current",
790
+ "description" :
791
+ """Compliance requirement for implementations that only provide
792
+ read-only support for GMPLS-LABEL-STD-MIB. Such devices can then
793
+ be monitored but cannot be configured using this MIB module.""",
794
+ "requires" : {
795
+ "gmplsLabelTableGroup" : {
796
+ "nodetype" : "mandatory",
797
+ "module" : "GMPLS-LABEL-STD-MIB"
798
+ },
799
+ "gmplsLabelPacketGroup" : {
800
+ "nodetype" : "optional",
801
+ "module" : "GMPLS-LABEL-STD-MIB",
802
+ "description" :
803
+ """This group extends gmplsLabelTableGroup for implementations that
804
+ support Packet Labels. It is optional for implementations that
805
+ do not support Packet Labels.""",
806
+ },
807
+ "gmplsLabelPortWavelengthGroup" : {
808
+ "nodetype" : "optional",
809
+ "module" : "GMPLS-LABEL-STD-MIB",
810
+ "description" :
811
+ """This group extends gmplsLabelTableGroup for implementations that
812
+ support Port and Wavelength Labels. It is optional for
813
+ implementations that do not support Wavelength Labels.""",
814
+ },
815
+ "gmplsLabelFreeformGroup" : {
816
+ "nodetype" : "optional",
817
+ "module" : "GMPLS-LABEL-STD-MIB",
818
+ "description" :
819
+ """This group extends gmplsLabelTableGroup for implementations that
820
+ support Freeform Labels. It is optional for implementations that
821
+ do not support Freeform Labels.""",
822
+ },
823
+ "gmplsLabelSonetSdhGroup" : {
824
+ "nodetype" : "optional",
825
+ "module" : "GMPLS-LABEL-STD-MIB",
826
+ "description" :
827
+ """This group extends gmplsLabelTableGroup for implementations that
828
+ support SONET or SDH Labels. It is optional for implementations
829
+ that do not support SONET or SDH Labels.""",
830
+ },
831
+ "gmplsLabelWavebandGroup" : {
832
+ "nodetype" : "optional",
833
+ "module" : "GMPLS-LABEL-STD-MIB",
834
+ "description" :
835
+ """This group extends gmplsLabelTableGroup for implementations that
836
+ support Waveband Labels. It is optional for implementations that
837
+ do not support Waveband Labels.""",
838
+ },
839
+ }, # requires
840
+ "refinements" : {
841
+ "gmplsLabelType" : {
842
+ "module" : "GMPLS-LABEL-STD-MIB",
843
+ "access" : "readonly",
844
+ "description" :
845
+ """Write access is not required.""",
846
+ },
847
+ "gmplsLabelMplsLabel" : {
848
+ "module" : "GMPLS-LABEL-STD-MIB",
849
+ "access" : "readonly",
850
+ "description" :
851
+ """Write access is not required.""",
852
+ },
853
+ "gmplsLabelPortWavelength" : {
854
+ "module" : "GMPLS-LABEL-STD-MIB",
855
+ "access" : "readonly",
856
+ "description" :
857
+ """Write access is not required.""",
858
+ },
859
+ "gmplsLabelFreeform" : {
860
+ "module" : "GMPLS-LABEL-STD-MIB",
861
+ "access" : "readonly",
862
+ "description" :
863
+ """Write access is not required.""",
864
+ },
865
+ "gmplsLabelSonetSdhSignalIndex" : {
866
+ "module" : "GMPLS-LABEL-STD-MIB",
867
+ "access" : "readonly",
868
+ "description" :
869
+ """Write access is not required.""",
870
+ },
871
+ "gmplsLabelSdhVc" : {
872
+ "module" : "GMPLS-LABEL-STD-MIB",
873
+ "access" : "readonly",
874
+ "description" :
875
+ """Write access is not required.""",
876
+ },
877
+ "gmplsLabelSdhVcBranch" : {
878
+ "module" : "GMPLS-LABEL-STD-MIB",
879
+ "access" : "readonly",
880
+ "description" :
881
+ """Write access is not required.""",
882
+ },
883
+ "gmplsLabelSonetSdhBranch" : {
884
+ "module" : "GMPLS-LABEL-STD-MIB",
885
+ "access" : "readonly",
886
+ "description" :
887
+ """Write access is not required.""",
888
+ },
889
+ "gmplsLabelSonetSdhGroupBranch" : {
890
+ "module" : "GMPLS-LABEL-STD-MIB",
891
+ "access" : "readonly",
892
+ "description" :
893
+ """Write access is not required.""",
894
+ },
895
+ "gmplsLabelWavebandId" : {
896
+ "module" : "GMPLS-LABEL-STD-MIB",
897
+ "access" : "readonly",
898
+ "description" :
899
+ """Write access is not required.""",
900
+ },
901
+ "gmplsLabelWavebandStart" : {
902
+ "module" : "GMPLS-LABEL-STD-MIB",
903
+ "access" : "readonly",
904
+ "description" :
905
+ """Write access is not required.""",
906
+ },
907
+ "gmplsLabelWavebandEnd" : {
908
+ "module" : "GMPLS-LABEL-STD-MIB",
909
+ "access" : "readonly",
910
+ "description" :
911
+ """Write access is not required.""",
912
+ },
913
+ "gmplsLabelStorageType" : {
914
+ "module" : "GMPLS-LABEL-STD-MIB",
915
+ "access" : "readonly",
916
+ "description" :
917
+ """Write access is not required.""",
918
+ },
919
+ "gmplsLabelRowStatus" : {
920
+ "module" : "GMPLS-LABEL-STD-MIB",
921
+ "syntax" : {
922
+ "type" : {
923
+ "basetype" : "Enumeration",
924
+ "parent module" : {
925
+ "name" : "SNMPv2-TC",
926
+ "type" : "RowStatus",
927
+ },
928
+ "active" : {
929
+ "nodetype" : "namednumber",
930
+ "number" : "1"
931
+ },
932
+ },
933
+ }, # syntax
934
+ "access" : "readonly",
935
+ "description" :
936
+ """Write access is not required, and active(1) is
937
+ the only status that needs to be supported.""",
938
+ },
939
+ }, # refinements
940
+
941
+ }, # compliance
942
+ "gmplsLabelModuleFullCompliance" : {
943
+ "nodetype" : "compliance",
944
+ "moduleName" : "GMPLS-LABEL-STD-MIB",
945
+ "oid" : "1.3.6.1.2.1.10.166.16.2.2.2",
946
+ "status" : "current",
947
+ "description" :
948
+ """Compliance statement for agents that support the complete
949
+ GMPLS-LABEL-STD-MIB module.
950
+
951
+ The mandatory groups have to be implemented by GMPLS LSRs
952
+ claiming support for this MIB module. This MIB module is,
953
+ however, not mandatory for a working implementation of a GMPLS
954
+ LSR with full MIB support if the GMPLS Labels in use can be
955
+ represented within a 32-bit quantity.""",
956
+ "requires" : {
957
+ "gmplsLabelTableGroup" : {
958
+ "nodetype" : "mandatory",
959
+ "module" : "GMPLS-LABEL-STD-MIB"
960
+ },
961
+ }, # requires
962
+ }, # compliance
963
+ }, # compliances
964
+
965
+ }