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,862 @@
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 MPLS-LDP-FRAME-RELAY-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MPLS-LDP-FRAME-RELAY-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
11
+
12
+ "MPLS-LDP-FRAME-RELAY-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Multiprotocol Label Switching (mpls)
17
+ Working Group""",
18
+ "contact" :
19
+ """Joan Cucchiara (jcucchiara@mindspring.com)
20
+ Marconi Communications, Inc.
21
+
22
+ Hans Sjostrand (hans@ipunplugged.com)
23
+ ipUnplugged
24
+
25
+ James V. Luciani (james_luciani@mindspring.com)
26
+ Marconi Communications, Inc.
27
+
28
+ Working Group Chairs:
29
+ George Swallow, email: swallow@cisco.com
30
+ Loa Andersson, email: loa@pi.se
31
+
32
+ MPLS Working Group, email: mpls@uu.net""",
33
+ "description" :
34
+ """Copyright (C) The Internet Society (year). The
35
+ initial version of this MIB module was published
36
+ in RFC 3815. For full legal notices see the RFC
37
+ itself or see:
38
+ http://www.ietf.org/copyrights/ianamib.html
39
+
40
+ This MIB contains managed object definitions for
41
+ configuring and monitoring the Multiprotocol Label
42
+ Switching (MPLS), Label Distribution Protocol (LDP),
43
+ utilizing Frame Relay as the Layer 2 media.""",
44
+ "revisions" : (
45
+ {
46
+ "date" : "2004-06-03 00:00",
47
+ "description" :
48
+ """Initial version published as part of RFC 3815.""",
49
+ },
50
+ ),
51
+ "identity node" : "mplsLdpFrameRelayStdMIB",
52
+ },
53
+
54
+ "imports" : (
55
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
56
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
58
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
59
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
60
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
61
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
62
+ {"module" : "FRAME-RELAY-DTE-MIB", "name" : "DLCI"},
63
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
64
+ {"module" : "MPLS-TC-STD-MIB", "name" : "mplsStdMIB"},
65
+ {"module" : "MPLS-LDP-STD-MIB", "name" : "mplsLdpEntityLdpId"},
66
+ {"module" : "MPLS-LDP-STD-MIB", "name" : "mplsLdpEntityIndex"},
67
+ {"module" : "MPLS-LDP-STD-MIB", "name" : "mplsLdpPeerLdpId"},
68
+ ),
69
+
70
+ "nodes" : {
71
+ "mplsLdpFrameRelayStdMIB" : {
72
+ "nodetype" : "node",
73
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
74
+ "oid" : "1.3.6.1.2.1.10.166.6",
75
+ "status" : "current",
76
+ }, # node
77
+ "mplsLdpFrameRelayObjects" : {
78
+ "nodetype" : "node",
79
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
80
+ "oid" : "1.3.6.1.2.1.10.166.6.1",
81
+ }, # node
82
+ "mplsLdpEntityFrameRelayObjects" : {
83
+ "nodetype" : "node",
84
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
85
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1",
86
+ }, # node
87
+ "mplsLdpEntityFrameRelayTable" : {
88
+ "nodetype" : "table",
89
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
90
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.1",
91
+ "status" : "current",
92
+ "description" :
93
+ """This table contains Frame Relay specific
94
+ information which could be used in the
95
+ 'Optional Parameters' and other Frame Relay
96
+ specific information.
97
+
98
+ This table 'sparse augments' the mplsLdpEntityTable
99
+ when Frame Relay is the Layer 2 medium.""",
100
+ }, # table
101
+ "mplsLdpEntityFrameRelayEntry" : {
102
+ "nodetype" : "row",
103
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
104
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.1.1",
105
+ "create" : "true",
106
+ "status" : "current",
107
+ "linkage" : [
108
+ "mplsLdpEntityLdpId",
109
+ "mplsLdpEntityIndex",
110
+ ],
111
+ "description" :
112
+ """An entry in this table represents the Frame Relay
113
+ optional parameters associated with the LDP entity.""",
114
+ }, # row
115
+ "mplsLdpEntityFrameRelayIfIndexOrZero" : {
116
+ "nodetype" : "column",
117
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
118
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.1.1.1",
119
+ "status" : "current",
120
+ "syntax" : {
121
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
122
+ },
123
+ "access" : "readwrite",
124
+ "description" :
125
+ """This value represents either the InterfaceIndex of
126
+ the 'ifLayer' where the Frame Relay Labels 'owned' by this
127
+ entry were created, or 0 (zero). The value of zero
128
+ means that the InterfaceIndex is not known. For example,
129
+ if the InterfaceIndex is created subsequent to the
130
+ Frame Relay Label's creation, then it would not be known.
131
+ However, if the InterfaceIndex is known, then it must
132
+ be represented by this value.
133
+
134
+ If an InterfaceIndex becomes known, then the
135
+ network management entity (e.g., SNMP agent) responsible
136
+ for this object MUST change the value from 0 (zero) to the
137
+ value of the InterfaceIndex. If an Frame Relay Label is
138
+ being used in forwarding data, then the value of this
139
+ object MUST be the InterfaceIndex.""",
140
+ }, # column
141
+ "mplsLdpEntityFrameRelayMergeCap" : {
142
+ "nodetype" : "column",
143
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
144
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.1.1.2",
145
+ "status" : "current",
146
+ "syntax" : {
147
+ "type" : {
148
+ "basetype" : "Enumeration",
149
+ "notSupported" : {
150
+ "nodetype" : "namednumber",
151
+ "number" : "0"
152
+ },
153
+ "supported" : {
154
+ "nodetype" : "namednumber",
155
+ "number" : "1"
156
+ },
157
+ },
158
+ },
159
+ "access" : "readwrite",
160
+ "description" :
161
+ """This represents whether or not the Frame Relay merge
162
+ capability is supported. This is the EXACT value for the
163
+ Frame Relay Session Parameter, field M (for Frame Relay
164
+ Merge Capabilities). The Frame Relay Session Parameter
165
+ is an optional parameter in the Initialization Message.
166
+
167
+
168
+
169
+
170
+ The description from rfc3036.txt is:
171
+ 'M, Frame Relay Merge Capabilities
172
+ Specifies the merge capabilities of a Frame
173
+ Relay switch. The following values are
174
+ supported in this version of the
175
+ specification:
176
+
177
+ Value Meaning
178
+
179
+ 0 Merge not supported
180
+ 1 Merge supported
181
+
182
+ Non-merge and merge Frame Relay LSRs may
183
+ freely interoperate.'
184
+
185
+ Please refer to the following reference for a
186
+ complete description of this feature.""",
187
+ "reference" :
188
+ """RFC3036, LDP Specification, Section 3.5.3
189
+ Initialization Message.""",
190
+ }, # column
191
+ "mplsLdpEntityFrameRelayLRComponents" : {
192
+ "nodetype" : "column",
193
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
194
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.1.1.3",
195
+ "status" : "current",
196
+ "syntax" : {
197
+ "type" : {
198
+ "basetype" : "Unsigned32",
199
+ "ranges" : [
200
+ {
201
+ "min" : "1",
202
+ "max" : "65535"
203
+ },
204
+ ],
205
+ "range" : {
206
+ "min" : "1",
207
+ "max" : "65535"
208
+ },
209
+ },
210
+ },
211
+ "access" : "readonly",
212
+ "description" :
213
+ """Number of Label Range Components in the Initialization
214
+ message. This also represents the number of entries
215
+ in the mplsLdpEntityFrameRelayLRTable which correspond
216
+ to this entry.
217
+
218
+ This is the EXACT value for the Frame Relay Session
219
+ Parameter, field N (for Number of label range
220
+ components). The Frame Relay Session Parameter
221
+ is an optional parameter in the Initialization
222
+ Message.
223
+
224
+ The description from rfc3036.txt is:
225
+
226
+ 'N, Number of label range components
227
+ Specifies the number of Frame Relay Label
228
+ Range Components included in the TLV.'
229
+
230
+ Please refer to the following reference for a
231
+ complete description of this feature.""",
232
+ "reference" :
233
+ """RFC3036, LDP Specification, Section 3.5.3
234
+
235
+
236
+
237
+ Initialization Message.""",
238
+ }, # column
239
+ "mplsLdpEntityFrameRelayVcDirectionality" : {
240
+ "nodetype" : "column",
241
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
242
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.1.1.4",
243
+ "status" : "current",
244
+ "syntax" : {
245
+ "type" : {
246
+ "basetype" : "Enumeration",
247
+ "bidirectional" : {
248
+ "nodetype" : "namednumber",
249
+ "number" : "0"
250
+ },
251
+ "unidirection" : {
252
+ "nodetype" : "namednumber",
253
+ "number" : "1"
254
+ },
255
+ },
256
+ },
257
+ "access" : "readwrite",
258
+ "description" :
259
+ """If the value of this object is 'bidirectional(0)', then
260
+ the LSR supports the use of a given DLCI as a label for
261
+ both directions independently. If the value of
262
+ this object is 'unidirectional(1)', then the LSR
263
+ uses the given DLCI as a label in only one direction.
264
+
265
+ This is the EXACT value for the Frame Relay Session
266
+ Parameter, field D (for VC Directionality). The
267
+ Frame Relay Session Parameter is an optional
268
+ parameter in the Initialization Message.
269
+
270
+ The description from rfc3036.txt is:
271
+
272
+ 'D, VC Directionality
273
+ A value of 0 specifies bidirectional VC capability,
274
+ meaning the LSR can support the use of a given
275
+ DLCI as a label for both link directions
276
+ independently. A value of 1 specifies
277
+ unidirectional VC capability, meaning a given
278
+ DLCI may appear in a label mapping for one
279
+ direction on the link only. When either or both
280
+ of the peers specifies unidirectional VC
281
+ capability, both LSRs use unidirectional VC
282
+ label assignment for the link as follows. The
283
+ LSRs compare their LDP Identifiers as unsigned
284
+ integers. The LSR with the larger LDP
285
+ Identifier may assign only odd-numbered DLCIs
286
+ in the range as labels. The system with the
287
+ smaller LDP Identifier may assign only
288
+ even-numbered DLCIs in the range as labels.'
289
+
290
+ Please refer to the following reference for a
291
+ complete description of this feature.""",
292
+ "reference" :
293
+ """RFC3036, LDP Specification, Section 3.5.3
294
+ Initialization Message.""",
295
+ }, # column
296
+ "mplsLdpEntityFrameRelayStorageType" : {
297
+ "nodetype" : "column",
298
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
299
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.1.1.5",
300
+ "status" : "current",
301
+ "syntax" : {
302
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
303
+ },
304
+ "access" : "readwrite",
305
+ "default" : "nonVolatile",
306
+ "description" :
307
+ """The storage type for this conceptual row.
308
+ Conceptual rows having the value 'permanent(4)'
309
+ need not allow write-access to any columnar
310
+ objects in the row.""",
311
+ }, # column
312
+ "mplsLdpEntityFrameRelayRowStatus" : {
313
+ "nodetype" : "column",
314
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
315
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.1.1.6",
316
+ "status" : "current",
317
+ "syntax" : {
318
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
319
+ },
320
+ "access" : "readwrite",
321
+ "description" :
322
+ """The status of this conceptual row. All writable
323
+ objects in this row may be modified at any time,
324
+ however, as described in detail in the section
325
+ entitled, 'Changing Values After Session
326
+ Establishment', and again described in the
327
+ DESCRIPTION clause of the
328
+ mplsLdpEntityAdminStatus object,
329
+ if a session has been initiated with a Peer,
330
+ changing objects in this table will
331
+ wreak havoc with the session and interrupt
332
+ traffic. To repeat again:
333
+ the recommended procedure is to set the
334
+ mplsLdpEntityAdminStatus to
335
+ down, thereby explicitly causing a
336
+ session to be torn down. Then,
337
+ change objects in this entry, then set
338
+ the mplsLdpEntityAdminStatus
339
+ to enable which enables a new session
340
+ to be initiated.""",
341
+ }, # column
342
+ "mplsLdpEntityFrameRelayLRTable" : {
343
+ "nodetype" : "table",
344
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
345
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.2",
346
+ "status" : "current",
347
+ "description" :
348
+ """This table contains information about the
349
+
350
+
351
+ Optional Parameters for the Frame Relay Session
352
+ in the LDP Initialization Message, specifically
353
+ it contains information about the Frame Relay
354
+ Label Range Components.
355
+
356
+ If the value of the object
357
+ 'mplsLdpEntityOptionalParameters' contains the
358
+ value of 'frameRelaySessionParameters(3)' then
359
+ there must be at least one corresponding entry
360
+ in this table.""",
361
+ }, # table
362
+ "mplsLdpEntityFrameRelayLREntry" : {
363
+ "nodetype" : "row",
364
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
365
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.2.1",
366
+ "create" : "true",
367
+ "status" : "current",
368
+ "linkage" : [
369
+ "mplsLdpEntityLdpId",
370
+ "mplsLdpEntityIndex",
371
+ "mplsLdpEntityFrameRelayLRMinDlci",
372
+ ],
373
+ "description" :
374
+ """An entry in this table represents the Frame Relay
375
+ Label Range Component associated with the LDP entity.""",
376
+ }, # row
377
+ "mplsLdpEntityFrameRelayLRMinDlci" : {
378
+ "nodetype" : "column",
379
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
380
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.2.1.1",
381
+ "status" : "current",
382
+ "syntax" : {
383
+ "type" : { "module" :"FRAME-RELAY-DTE-MIB", "name" : "DLCI"},
384
+ },
385
+ "access" : "noaccess",
386
+ "description" :
387
+ """The lower bound which is supported. This value
388
+ should be the same as that in the Frame Relay Label
389
+ Range Component's Minimum DLCI field. The value
390
+ of zero is valid for the minimum DLCI field of
391
+ the label.""",
392
+ "reference" :
393
+ """RFC3034, Use of Label Switching on Frame Relay
394
+ Networks Specification.""",
395
+ }, # column
396
+ "mplsLdpEntityFrameRelayLRMaxDlci" : {
397
+ "nodetype" : "column",
398
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
399
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.2.1.2",
400
+ "status" : "current",
401
+ "syntax" : {
402
+ "type" : { "module" :"FRAME-RELAY-DTE-MIB", "name" : "DLCI"},
403
+ },
404
+ "access" : "readwrite",
405
+ "description" :
406
+ """The upper bound which is supported. This value
407
+ should be the same as that in the Frame Relay Label
408
+ Range Component's Maximum DLCI field.""",
409
+ }, # column
410
+ "mplsLdpEntityFrameRelayLRLen" : {
411
+ "nodetype" : "column",
412
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
413
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.2.1.3",
414
+ "status" : "current",
415
+ "syntax" : {
416
+ "type" : {
417
+ "basetype" : "Enumeration",
418
+ "tenDlciBits" : {
419
+ "nodetype" : "namednumber",
420
+ "number" : "0"
421
+ },
422
+ "twentyThreeDlciBits" : {
423
+ "nodetype" : "namednumber",
424
+ "number" : "2"
425
+ },
426
+ },
427
+ },
428
+ "access" : "readwrite",
429
+ "description" :
430
+ """This object specifies the length of the DLCI bits.
431
+
432
+ This is the EXACT value for the Len field of the
433
+ Frame Relay Label Range Component.
434
+
435
+ The description from rfc3036.txt is:
436
+
437
+ 'Len
438
+ This field specifies the number of bits of the DLCI.
439
+ The following values are supported:
440
+
441
+ Len DLCI bits
442
+
443
+ 0 10
444
+ 2 23
445
+
446
+ Len values 1 and 3 are reserved.'
447
+
448
+ Please refer to the following reference for a complete
449
+ description of this feature.""",
450
+ "reference" :
451
+ """RFC3036, LDP Specification, Section 3.5.3
452
+ Initialization Message.""",
453
+ }, # column
454
+ "mplsLdpEntityFrameRelayLRStorageType" : {
455
+ "nodetype" : "column",
456
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
457
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.2.1.4",
458
+ "status" : "current",
459
+ "syntax" : {
460
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
461
+ },
462
+ "access" : "readwrite",
463
+ "default" : "nonVolatile",
464
+ "description" :
465
+ """The storage type for this conceptual row.
466
+ Conceptual rows having the value 'permanent(4)'
467
+ need not allow write-access to any columnar
468
+ objects in the row.""",
469
+ }, # column
470
+ "mplsLdpEntityFrameRelayLRRowStatus" : {
471
+ "nodetype" : "column",
472
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
473
+ "oid" : "1.3.6.1.2.1.10.166.6.1.1.2.1.5",
474
+ "status" : "current",
475
+ "syntax" : {
476
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
477
+ },
478
+ "access" : "readwrite",
479
+ "description" :
480
+ """The status of this conceptual row. All writable
481
+ objects in this row may be modified at any time,
482
+ however, as described in detail in the section
483
+ entitled, 'Changing Values After Session
484
+ Establishment', and again described in the
485
+ DESCRIPTION clause of the
486
+ mplsLdpEntityAdminStatus object,
487
+ if a session has been initiated with a Peer,
488
+ changing objects in this table will
489
+ wreak havoc with the session and interrupt
490
+ traffic. To repeat again:
491
+ the recommended procedure is to set the
492
+ mplsLdpEntityAdminStatus to down, thereby
493
+ explicitly causing a session to be torn down. Then,
494
+ change objects in this entry, then set the
495
+ mplsLdpEntityAdminStatus to enable which enables
496
+ a new session to be initiated.""",
497
+ }, # column
498
+ "mplsLdpFrameRelaySessionObjects" : {
499
+ "nodetype" : "node",
500
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
501
+ "oid" : "1.3.6.1.2.1.10.166.6.1.2",
502
+ }, # node
503
+ "mplsLdpFrameRelaySessionTable" : {
504
+ "nodetype" : "table",
505
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
506
+ "oid" : "1.3.6.1.2.1.10.166.6.1.2.1",
507
+ "status" : "current",
508
+ "description" :
509
+ """A table of Frame Relay label range intersections
510
+ between the LDP Entities and LDP Peers.
511
+ Each row represents a single label range intersection.
512
+
513
+ NOTE: this table cannot use the 'AUGMENTS'
514
+
515
+
516
+ clause because there is not necessarily a one-to-one
517
+ mapping between this table and the
518
+ mplsLdpSessionTable.""",
519
+ }, # table
520
+ "mplsLdpFrameRelaySessionEntry" : {
521
+ "nodetype" : "row",
522
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
523
+ "oid" : "1.3.6.1.2.1.10.166.6.1.2.1.1",
524
+ "status" : "current",
525
+ "linkage" : [
526
+ "mplsLdpEntityLdpId",
527
+ "mplsLdpEntityIndex",
528
+ "mplsLdpPeerLdpId",
529
+ "mplsLdpFrameRelaySessionMinDlci",
530
+ ],
531
+ "description" :
532
+ """An entry in this table represents information on a
533
+ single label range intersection between an
534
+ LDP Entity and LDP Peer.
535
+
536
+ The information contained in a row is read-only.""",
537
+ }, # row
538
+ "mplsLdpFrameRelaySessionMinDlci" : {
539
+ "nodetype" : "column",
540
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
541
+ "oid" : "1.3.6.1.2.1.10.166.6.1.2.1.1.1",
542
+ "status" : "current",
543
+ "syntax" : {
544
+ "type" : { "module" :"FRAME-RELAY-DTE-MIB", "name" : "DLCI"},
545
+ },
546
+ "access" : "noaccess",
547
+ "description" :
548
+ """The lower bound of DLCIs which are supported.
549
+ The value of zero is a valid value for the
550
+ minimum DLCI field of the label.""",
551
+ "reference" :
552
+ """RFC3034, Use of Label Switching on Frame Relay
553
+ Networks Specification.""",
554
+ }, # column
555
+ "mplsLdpFrameRelaySessionMaxDlci" : {
556
+ "nodetype" : "column",
557
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
558
+ "oid" : "1.3.6.1.2.1.10.166.6.1.2.1.1.2",
559
+ "status" : "current",
560
+ "syntax" : {
561
+ "type" : { "module" :"FRAME-RELAY-DTE-MIB", "name" : "DLCI"},
562
+ },
563
+ "access" : "readonly",
564
+ "description" :
565
+ """The upper bound of DLCIs which are supported.""",
566
+ }, # column
567
+ "mplsLdpFrameRelaySessionLen" : {
568
+ "nodetype" : "column",
569
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
570
+ "oid" : "1.3.6.1.2.1.10.166.6.1.2.1.1.3",
571
+ "status" : "current",
572
+ "syntax" : {
573
+ "type" : {
574
+ "basetype" : "Enumeration",
575
+ "tenDlciBits" : {
576
+ "nodetype" : "namednumber",
577
+ "number" : "0"
578
+ },
579
+ "twentyThreeDlciBits" : {
580
+ "nodetype" : "namednumber",
581
+ "number" : "2"
582
+ },
583
+ },
584
+ },
585
+ "access" : "readonly",
586
+ "description" :
587
+ """This object specifies the DLCI bits.""",
588
+ }, # column
589
+ "mplsLdpFrameRelayConformance" : {
590
+ "nodetype" : "node",
591
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
592
+ "oid" : "1.3.6.1.2.1.10.166.6.2",
593
+ }, # node
594
+ "mplsLdpFrameRelayGroups" : {
595
+ "nodetype" : "node",
596
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
597
+ "oid" : "1.3.6.1.2.1.10.166.6.2.1",
598
+ }, # node
599
+ "mplsLdpFrameRelayCompliances" : {
600
+ "nodetype" : "node",
601
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
602
+ "oid" : "1.3.6.1.2.1.10.166.6.2.2",
603
+ }, # node
604
+ }, # nodes
605
+
606
+ "groups" : {
607
+ "mplsLdpFrameRelayGroup" : {
608
+ "nodetype" : "group",
609
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
610
+ "oid" : "1.3.6.1.2.1.10.166.6.2.1.1",
611
+ "status" : "current",
612
+ "members" : {
613
+ "mplsLdpEntityFrameRelayIfIndexOrZero" : {
614
+ "nodetype" : "member",
615
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
616
+ },
617
+ "mplsLdpEntityFrameRelayMergeCap" : {
618
+ "nodetype" : "member",
619
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
620
+ },
621
+ "mplsLdpEntityFrameRelayLRComponents" : {
622
+ "nodetype" : "member",
623
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
624
+ },
625
+ "mplsLdpEntityFrameRelayVcDirectionality" : {
626
+ "nodetype" : "member",
627
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
628
+ },
629
+ "mplsLdpEntityFrameRelayStorageType" : {
630
+ "nodetype" : "member",
631
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
632
+ },
633
+ "mplsLdpEntityFrameRelayRowStatus" : {
634
+ "nodetype" : "member",
635
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
636
+ },
637
+ "mplsLdpEntityFrameRelayLRMaxDlci" : {
638
+ "nodetype" : "member",
639
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
640
+ },
641
+ "mplsLdpEntityFrameRelayLRLen" : {
642
+ "nodetype" : "member",
643
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
644
+ },
645
+ "mplsLdpEntityFrameRelayLRStorageType" : {
646
+ "nodetype" : "member",
647
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
648
+ },
649
+ "mplsLdpEntityFrameRelayLRRowStatus" : {
650
+ "nodetype" : "member",
651
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
652
+ },
653
+ "mplsLdpFrameRelaySessionMaxDlci" : {
654
+ "nodetype" : "member",
655
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
656
+ },
657
+ "mplsLdpFrameRelaySessionLen" : {
658
+ "nodetype" : "member",
659
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
660
+ },
661
+ }, # members
662
+ "description" :
663
+ """Objects that apply to all MPLS LDP implementations
664
+ using Frame Relay as the Layer 2.""",
665
+ }, # group
666
+ }, # groups
667
+
668
+ "compliances" : {
669
+ "mplsLdpFrameRelayModuleFullCompliance" : {
670
+ "nodetype" : "compliance",
671
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
672
+ "oid" : "1.3.6.1.2.1.10.166.6.2.2.1",
673
+ "status" : "current",
674
+ "description" :
675
+ """The Module is implemented with support for
676
+ read-create and read-write. In other words,
677
+ both monitoring and configuration
678
+ are available when using this MODULE-COMPLIANCE.""",
679
+ "requires" : {
680
+ "mplsLdpFrameRelayGroup" : {
681
+ "nodetype" : "mandatory",
682
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
683
+ },
684
+ }, # requires
685
+ "refinements" : {
686
+ "mplsLdpEntityFrameRelayRowStatus" : {
687
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
688
+ "syntax" : {
689
+ "type" : {
690
+ "basetype" : "Enumeration",
691
+ "parent module" : {
692
+ "name" : "SNMPv2-TC",
693
+ "type" : "RowStatus",
694
+ },
695
+ "active" : {
696
+ "nodetype" : "namednumber",
697
+ "number" : "1"
698
+ },
699
+ },
700
+ }, # syntax
701
+ "writesyntax" : {
702
+ "type" : {
703
+ "basetype" : "Enumeration",
704
+ "parent module" : {
705
+ "name" : "SNMPv2-TC",
706
+ "type" : "RowStatus",
707
+ },
708
+ "createAndGo" : {
709
+ "nodetype" : "namednumber",
710
+ "number" : "4"
711
+ },
712
+ "destroy" : {
713
+ "nodetype" : "namednumber",
714
+ "number" : "6"
715
+ },
716
+ },
717
+ }, # writesyntax
718
+ "description" :
719
+ """Support for createAndWait and notInService is not required.""",
720
+ },
721
+ "mplsLdpEntityFrameRelayLRRowStatus" : {
722
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
723
+ "syntax" : {
724
+ "type" : {
725
+ "basetype" : "Enumeration",
726
+ "parent module" : {
727
+ "name" : "SNMPv2-TC",
728
+ "type" : "RowStatus",
729
+ },
730
+ "active" : {
731
+ "nodetype" : "namednumber",
732
+ "number" : "1"
733
+ },
734
+ },
735
+ }, # syntax
736
+ "writesyntax" : {
737
+ "type" : {
738
+ "basetype" : "Enumeration",
739
+ "parent module" : {
740
+ "name" : "SNMPv2-TC",
741
+ "type" : "RowStatus",
742
+ },
743
+ "createAndGo" : {
744
+ "nodetype" : "namednumber",
745
+ "number" : "4"
746
+ },
747
+ "destroy" : {
748
+ "nodetype" : "namednumber",
749
+ "number" : "6"
750
+ },
751
+ },
752
+ }, # writesyntax
753
+ "description" :
754
+ """Support for createAndWait and notInService is not required.""",
755
+ },
756
+ }, # refinements
757
+
758
+ }, # compliance
759
+ "mplsLdpFrameRelayModuleReadOnlyCompliance" : {
760
+ "nodetype" : "compliance",
761
+ "moduleName" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
762
+ "oid" : "1.3.6.1.2.1.10.166.6.2.2.2",
763
+ "status" : "current",
764
+ "description" :
765
+ """The Module is implemented with support for
766
+ read-only. In other words, only monitoring
767
+ is available by implementing this MODULE-COMPLIANCE.""",
768
+ "requires" : {
769
+ "mplsLdpFrameRelayGroup" : {
770
+ "nodetype" : "mandatory",
771
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB"
772
+ },
773
+ }, # requires
774
+ "refinements" : {
775
+ "mplsLdpEntityFrameRelayIfIndexOrZero" : {
776
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
777
+ "access" : "readonly",
778
+ "description" :
779
+ """Write access is not required.""",
780
+ },
781
+ "mplsLdpEntityFrameRelayMergeCap" : {
782
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
783
+ "access" : "readonly",
784
+ "description" :
785
+ """Write access is not required.""",
786
+ },
787
+ "mplsLdpEntityFrameRelayVcDirectionality" : {
788
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
789
+ "access" : "readonly",
790
+ "description" :
791
+ """Write access is not required.""",
792
+ },
793
+ "mplsLdpEntityFrameRelayStorageType" : {
794
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
795
+ "access" : "readonly",
796
+ "description" :
797
+ """Write access is not required.""",
798
+ },
799
+ "mplsLdpEntityFrameRelayRowStatus" : {
800
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
801
+ "syntax" : {
802
+ "type" : {
803
+ "basetype" : "Enumeration",
804
+ "parent module" : {
805
+ "name" : "SNMPv2-TC",
806
+ "type" : "RowStatus",
807
+ },
808
+ "active" : {
809
+ "nodetype" : "namednumber",
810
+ "number" : "1"
811
+ },
812
+ },
813
+ }, # syntax
814
+ "access" : "readonly",
815
+ "description" :
816
+ """Write access is not required, and active is the
817
+ only status that needs to be supported.""",
818
+ },
819
+ "mplsLdpEntityFrameRelayLRMaxDlci" : {
820
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
821
+ "access" : "readonly",
822
+ "description" :
823
+ """Write access is not required.""",
824
+ },
825
+ "mplsLdpEntityFrameRelayLRLen" : {
826
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
827
+ "access" : "readonly",
828
+ "description" :
829
+ """Write access is not required.""",
830
+ },
831
+ "mplsLdpEntityFrameRelayLRStorageType" : {
832
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
833
+ "access" : "readonly",
834
+ "description" :
835
+ """Write access is not required.""",
836
+ },
837
+ "mplsLdpEntityFrameRelayLRRowStatus" : {
838
+ "module" : "MPLS-LDP-FRAME-RELAY-STD-MIB",
839
+ "syntax" : {
840
+ "type" : {
841
+ "basetype" : "Enumeration",
842
+ "parent module" : {
843
+ "name" : "SNMPv2-TC",
844
+ "type" : "RowStatus",
845
+ },
846
+ "active" : {
847
+ "nodetype" : "namednumber",
848
+ "number" : "1"
849
+ },
850
+ },
851
+ }, # syntax
852
+ "access" : "readonly",
853
+ "description" :
854
+ """Write access is not required, and active is the
855
+ only status that needs to be supported.""",
856
+ },
857
+ }, # refinements
858
+
859
+ }, # compliance
860
+ }, # compliances
861
+
862
+ }