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,1026 @@
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 EBN-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/EBN-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "EBN-MIB",
11
+
12
+ "EBN-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF SNA NAU MIB WG / AIW APPN MIBs SIG""",
17
+ "contact" :
18
+ """
19
+ Bob Clouston
20
+ Cisco Systems
21
+ 7025 Kit Creek Road
22
+ P.O. Box 14987
23
+ Research Triangle Park, NC 27709, USA
24
+ Tel: 1 919 472 2333
25
+ E-mail: clouston@cisco.com
26
+
27
+ Bob Moore
28
+ IBM Corporation
29
+ BRQA/501
30
+ P.O. Box 12195
31
+ Research Triangle Park, NC 27709, USA
32
+ Tel: 1 919 254 4436
33
+ E-mail: remoore@us.ibm.com""",
34
+ "description" :
35
+ """ The MIB Module for Extended Border Node""",
36
+ "revisions" : (
37
+ {
38
+ "date" : "1998-04-28 18:00",
39
+ "description" :
40
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
41
+ },
42
+ ),
43
+ "identity node" : "ebnMIB",
44
+ },
45
+
46
+ "imports" : (
47
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
48
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
50
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
51
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
52
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
53
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
54
+ {"module" : "APPN-MIB", "name" : "SnaControlPointName"},
55
+ {"module" : "SNA-NAU-MIB", "name" : "snanauMIB"},
56
+ ),
57
+
58
+ "typedefs" : {
59
+ "SnaNAUWildcardName" : {
60
+ "basetype" : "OctetString",
61
+ "status" : "current",
62
+ "parent module" : {
63
+ "name" : "SNMPv2-TC",
64
+ "type" : "DisplayString",
65
+ },
66
+ "ranges" : [
67
+ {
68
+ "min" : "1",
69
+ "max" : "17"
70
+ },
71
+ ],
72
+ "range" : {
73
+ "min" : "1",
74
+ "max" : "17"
75
+ },
76
+ "description" :
77
+ """Fully-qualified network NAU name. Entries take one of three
78
+ forms:
79
+ - Explicit entries do not contain the character '*'.
80
+ - Partial Wildcard entries have the form 'ccc*', where
81
+ 'ccc' represents one to sixteen characters in a legal
82
+ SNA NAU Name.
83
+ - A full wildcard consists of a single character '*'.
84
+
85
+ Because the characters allowed in an SNA NAU name come from
86
+ a restricted character set, these names are not subject to
87
+ internationalization.""",
88
+ },
89
+ }, # typedefs
90
+
91
+ "nodes" : {
92
+ "ebnMIB" : {
93
+ "nodetype" : "node",
94
+ "moduleName" : "EBN-MIB",
95
+ "oid" : "1.3.6.1.2.1.34.7",
96
+ "status" : "current",
97
+ }, # node
98
+ "ebnObjects" : {
99
+ "nodetype" : "node",
100
+ "moduleName" : "EBN-MIB",
101
+ "oid" : "1.3.6.1.2.1.34.7.1",
102
+ }, # node
103
+ "ebnDir" : {
104
+ "nodetype" : "node",
105
+ "moduleName" : "EBN-MIB",
106
+ "oid" : "1.3.6.1.2.1.34.7.1.1",
107
+ }, # node
108
+ "ebnDirTable" : {
109
+ "nodetype" : "table",
110
+ "moduleName" : "EBN-MIB",
111
+ "oid" : "1.3.6.1.2.1.34.7.1.1.1",
112
+ "status" : "current",
113
+ "description" :
114
+ """The EBN Directory Table. This table is an extension
115
+ to the APPN MIB's appnDirTable. Entries in this table
116
+ are in one-to-one correspondence with entries in the
117
+ appnDirTable, with corresponding entries having identical
118
+ values for their respective indexes.""",
119
+ }, # table
120
+ "ebnDirEntry" : {
121
+ "nodetype" : "row",
122
+ "moduleName" : "EBN-MIB",
123
+ "oid" : "1.3.6.1.2.1.34.7.1.1.1.1",
124
+ "status" : "current",
125
+ "linkage" : [
126
+ "ebnDirLuName",
127
+ ],
128
+ "description" :
129
+ """Entry in the EBN Directory Table.""",
130
+ }, # row
131
+ "ebnDirLuName" : {
132
+ "nodetype" : "column",
133
+ "moduleName" : "EBN-MIB",
134
+ "oid" : "1.3.6.1.2.1.34.7.1.1.1.1.1",
135
+ "status" : "current",
136
+ "syntax" : {
137
+ "type" : { "module" :"EBN-MIB", "name" : "SnaNAUWildcardName"},
138
+ },
139
+ "access" : "noaccess",
140
+ "description" :
141
+ """Fully qualified network LU name in the domain of a serving
142
+ network node. If this object has the same value as the
143
+ appnDirLuName object in the APPN MIB, then the two objects
144
+ are referring to the same LU.""",
145
+ }, # column
146
+ "ebnDirSubnetAffiliation" : {
147
+ "nodetype" : "column",
148
+ "moduleName" : "EBN-MIB",
149
+ "oid" : "1.3.6.1.2.1.34.7.1.1.1.1.2",
150
+ "status" : "current",
151
+ "syntax" : {
152
+ "type" : {
153
+ "basetype" : "Enumeration",
154
+ "native" : {
155
+ "nodetype" : "namednumber",
156
+ "number" : "1"
157
+ },
158
+ "nonNative" : {
159
+ "nodetype" : "namednumber",
160
+ "number" : "2"
161
+ },
162
+ "subarea" : {
163
+ "nodetype" : "namednumber",
164
+ "number" : "3"
165
+ },
166
+ },
167
+ },
168
+ "access" : "readonly",
169
+ "description" :
170
+ """Specifies the subnetwork affiliation of the LU:
171
+ - native(1) : The LU is in the native APPN subnetwork.
172
+ - nonNative(2) : The LU is in a non-native APPN subnetwork.
173
+ - subarea(3) : The LU is in a subarea network.""",
174
+ }, # column
175
+ "ebnIsRscv" : {
176
+ "nodetype" : "node",
177
+ "moduleName" : "EBN-MIB",
178
+ "oid" : "1.3.6.1.2.1.34.7.1.2",
179
+ }, # node
180
+ "ebnIsRscvTable" : {
181
+ "nodetype" : "table",
182
+ "moduleName" : "EBN-MIB",
183
+ "oid" : "1.3.6.1.2.1.34.7.1.2.1",
184
+ "status" : "current",
185
+ "description" :
186
+ """The EBN Intermediate Session RSCV table. This table is an
187
+ extension to the appnIsInTable. It contains the RSCV and COS
188
+ used in the direction of the BIND destination. There is an
189
+ entry in this table for each session that traverses an ISTG
190
+ when it enters or leaves this EBN, with corresponding entries
191
+ having identical values for their respective indexes.""",
192
+ }, # table
193
+ "ebnIsRscvEntry" : {
194
+ "nodetype" : "row",
195
+ "moduleName" : "EBN-MIB",
196
+ "oid" : "1.3.6.1.2.1.34.7.1.2.1.1",
197
+ "status" : "current",
198
+ "linkage" : [
199
+ "ebnIsRscvCpName",
200
+ "ebnIsRscvPcid",
201
+ ],
202
+ "description" :
203
+ """Entry in ebnIsRscvTable.""",
204
+ }, # row
205
+ "ebnIsRscvCpName" : {
206
+ "nodetype" : "column",
207
+ "moduleName" : "EBN-MIB",
208
+ "oid" : "1.3.6.1.2.1.34.7.1.2.1.1.1",
209
+ "status" : "current",
210
+ "syntax" : {
211
+ "type" : { "module" :"APPN-MIB", "name" : "SnaControlPointName"},
212
+ },
213
+ "access" : "noaccess",
214
+ "description" :
215
+ """The network-qualified control point name of the node at
216
+ which the session and PCID originated. For APPN and LEN
217
+ nodes, this is either CP name of the APPN node at which
218
+ the origin LU is located or the CP name of the NN serving
219
+ the LEN node at which the origin LU is located. For DLUR
220
+ resources it is the name of the owning SSCP.
221
+
222
+ If this object has the same value as the appnIsInFqCpName
223
+ object in the APPN MIB, then the two objects are referring to
224
+ the same APPN control point.""",
225
+ }, # column
226
+ "ebnIsRscvPcid" : {
227
+ "nodetype" : "column",
228
+ "moduleName" : "EBN-MIB",
229
+ "oid" : "1.3.6.1.2.1.34.7.1.2.1.1.2",
230
+ "status" : "current",
231
+ "syntax" : {
232
+ "type" : {
233
+ "basetype" : "OctetString",
234
+ "ranges" : [
235
+ {
236
+ "min" : "8",
237
+ "max" : "8"
238
+ },
239
+ ],
240
+ "range" : {
241
+ "min" : "8",
242
+ "max" : "8"
243
+ },
244
+ },
245
+ },
246
+ "access" : "noaccess",
247
+ "description" :
248
+ """The procedure correlation identifier (PCID) of a session.
249
+ It is an 8-octet value.
250
+
251
+ If this object has the same value as the appnIsInPcid object
252
+ in the APPN MIB, and if the corresponding ebnIsRscvCpName
253
+ object has the same value as the corresponding
254
+ appnIsInFqCpName object, then the entries indexed by these
255
+ objects are referring to the same session.""",
256
+ }, # column
257
+ "ebnIsRscvDestinationRoute" : {
258
+ "nodetype" : "column",
259
+ "moduleName" : "EBN-MIB",
260
+ "oid" : "1.3.6.1.2.1.34.7.1.2.1.1.3",
261
+ "status" : "current",
262
+ "syntax" : {
263
+ "type" : {
264
+ "basetype" : "OctetString",
265
+ "ranges" : [
266
+ {
267
+ "min" : "0",
268
+ "max" : "255"
269
+ },
270
+ ],
271
+ "range" : {
272
+ "min" : "0",
273
+ "max" : "255"
274
+ },
275
+ },
276
+ },
277
+ "access" : "readonly",
278
+ "description" :
279
+ """The route selection control vector (RSCV x'2B') used in the
280
+ direction towards the SLU.""",
281
+ }, # column
282
+ "ebnIsRscvDestinationCos" : {
283
+ "nodetype" : "column",
284
+ "moduleName" : "EBN-MIB",
285
+ "oid" : "1.3.6.1.2.1.34.7.1.2.1.1.4",
286
+ "status" : "current",
287
+ "syntax" : {
288
+ "type" : {
289
+ "basetype" : "OctetString",
290
+ "parent module" : {
291
+ "name" : "SNMPv2-TC",
292
+ "type" : "DisplayString",
293
+ },
294
+ "ranges" : [
295
+ {
296
+ "min" : "1",
297
+ "max" : "8"
298
+ },
299
+ ],
300
+ "range" : {
301
+ "min" : "1",
302
+ "max" : "8"
303
+ },
304
+ },
305
+ },
306
+ "access" : "readonly",
307
+ "description" :
308
+ """The Class of Service (COS) name used in the direction
309
+ towards the SLU.
310
+
311
+ Because the characters allowed in an SNA COS name come from
312
+ a restricted character set, these names are not subject to
313
+ internationalization.""",
314
+ }, # column
315
+ "ebnDirConfig" : {
316
+ "nodetype" : "node",
317
+ "moduleName" : "EBN-MIB",
318
+ "oid" : "1.3.6.1.2.1.34.7.1.3",
319
+ }, # node
320
+ "ebnSearchCacheTime" : {
321
+ "nodetype" : "scalar",
322
+ "moduleName" : "EBN-MIB",
323
+ "oid" : "1.3.6.1.2.1.34.7.1.3.1",
324
+ "status" : "current",
325
+ "syntax" : {
326
+ "type" : { "module" :"", "name" : "Unsigned32"},
327
+ },
328
+ "access" : "readonly",
329
+ "units" : "minutes",
330
+ "description" :
331
+ """The amount of time in minutes an extended border node will
332
+ retain information about a multi-subnetwork search, once
333
+ that that search terminates. A value 0 indicates that the
334
+ EBN has no defined limit, and the number of entries is
335
+ bounded only by memory.""",
336
+ }, # scalar
337
+ "ebnMaxSearchCache" : {
338
+ "nodetype" : "scalar",
339
+ "moduleName" : "EBN-MIB",
340
+ "oid" : "1.3.6.1.2.1.34.7.1.3.2",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : { "module" :"", "name" : "Unsigned32"},
344
+ },
345
+ "access" : "readonly",
346
+ "units" : "entries",
347
+ "description" :
348
+ """The maximum number of multi-subnet entries to be cached.
349
+ The value 0 indicates that the local node has no defined
350
+ limit, and the number of entries is bounded only by
351
+ memory.""",
352
+ }, # scalar
353
+ "ebnDefaultSubnetVisitCount" : {
354
+ "nodetype" : "scalar",
355
+ "moduleName" : "EBN-MIB",
356
+ "oid" : "1.3.6.1.2.1.34.7.1.3.3",
357
+ "status" : "current",
358
+ "syntax" : {
359
+ "type" : { "module" :"", "name" : "Unsigned32"},
360
+ },
361
+ "access" : "readonly",
362
+ "units" : "topology subnetworks",
363
+ "description" :
364
+ """The default maximum number of subnetworks a LOCATE search
365
+ procedure may traverse.""",
366
+ }, # scalar
367
+ "ebnCOS" : {
368
+ "nodetype" : "node",
369
+ "moduleName" : "EBN-MIB",
370
+ "oid" : "1.3.6.1.2.1.34.7.1.4",
371
+ }, # node
372
+ "ebnCosMapTable" : {
373
+ "nodetype" : "table",
374
+ "moduleName" : "EBN-MIB",
375
+ "oid" : "1.3.6.1.2.1.34.7.1.4.1",
376
+ "status" : "current",
377
+ "description" :
378
+ """The EBN COS Mapping Table. This table specifies how non-
379
+ native COS values are mapped to COS values defined in the
380
+ native subnetwork.
381
+
382
+ Note: The COS mappings that an EBN performs are determined
383
+ by multiple factors, one of which is a set of user-defined
384
+ initial mappings. This table returns the COS mappings that
385
+ the EBN is actually performing at the time it is queried,
386
+ rather than the user-defined initial ones.""",
387
+ }, # table
388
+ "ebnCosMapEntry" : {
389
+ "nodetype" : "row",
390
+ "moduleName" : "EBN-MIB",
391
+ "oid" : "1.3.6.1.2.1.34.7.1.4.1.1",
392
+ "status" : "current",
393
+ "linkage" : [
394
+ "ebnCosMapCpName",
395
+ "ebnCosMapNonNativeCos",
396
+ ],
397
+ "description" :
398
+ """An entry in the EBN COS Mapping table.""",
399
+ }, # row
400
+ "ebnCosMapCpName" : {
401
+ "nodetype" : "column",
402
+ "moduleName" : "EBN-MIB",
403
+ "oid" : "1.3.6.1.2.1.34.7.1.4.1.1.1",
404
+ "status" : "current",
405
+ "syntax" : {
406
+ "type" : { "module" :"EBN-MIB", "name" : "SnaNAUWildcardName"},
407
+ },
408
+ "access" : "noaccess",
409
+ "description" :
410
+ """Fully qualified network CP name for which the COS mapping
411
+ applies.""",
412
+ }, # column
413
+ "ebnCosMapNonNativeCos" : {
414
+ "nodetype" : "column",
415
+ "moduleName" : "EBN-MIB",
416
+ "oid" : "1.3.6.1.2.1.34.7.1.4.1.1.2",
417
+ "status" : "current",
418
+ "syntax" : {
419
+ "type" : {
420
+ "basetype" : "OctetString",
421
+ "parent module" : {
422
+ "name" : "SNMPv2-TC",
423
+ "type" : "DisplayString",
424
+ },
425
+ "ranges" : [
426
+ {
427
+ "min" : "1",
428
+ "max" : "8"
429
+ },
430
+ ],
431
+ "range" : {
432
+ "min" : "1",
433
+ "max" : "8"
434
+ },
435
+ },
436
+ },
437
+ "access" : "noaccess",
438
+ "description" :
439
+ """This object contains one of the following values:
440
+
441
+ - An 8-character COS name used in a non-native subnetwork.
442
+ - The single character '*', identifying the entry with the
443
+ default native COS for a non-native CP name. This entry
444
+ is used when there is no entry in the table for a
445
+ non-native CP name / non-native COS pair.
446
+
447
+ Because the characters allowed in an SNA COS name come from
448
+ a restricted character set, these names are not subject to
449
+ internationalization.""",
450
+ }, # column
451
+ "ebnCosMapNativeCos" : {
452
+ "nodetype" : "column",
453
+ "moduleName" : "EBN-MIB",
454
+ "oid" : "1.3.6.1.2.1.34.7.1.4.1.1.3",
455
+ "status" : "current",
456
+ "syntax" : {
457
+ "type" : {
458
+ "basetype" : "OctetString",
459
+ "parent module" : {
460
+ "name" : "SNMPv2-TC",
461
+ "type" : "DisplayString",
462
+ },
463
+ "ranges" : [
464
+ {
465
+ "min" : "1",
466
+ "max" : "8"
467
+ },
468
+ ],
469
+ "range" : {
470
+ "min" : "1",
471
+ "max" : "8"
472
+ },
473
+ },
474
+ },
475
+ "access" : "readonly",
476
+ "description" :
477
+ """An 8-byte name for the class-of-service, as known in the
478
+ native subnetwork.
479
+
480
+ Because the characters allowed in an SNA COS name come from
481
+ a restricted character set, these names are not subject to
482
+ internationalization.""",
483
+ }, # column
484
+ "ebnSubnetRoutingList" : {
485
+ "nodetype" : "node",
486
+ "moduleName" : "EBN-MIB",
487
+ "oid" : "1.3.6.1.2.1.34.7.1.5",
488
+ }, # node
489
+ "ebnSubnetSearchTable" : {
490
+ "nodetype" : "table",
491
+ "moduleName" : "EBN-MIB",
492
+ "oid" : "1.3.6.1.2.1.34.7.1.5.1",
493
+ "status" : "current",
494
+ "description" :
495
+ """This table contains one entry for each fully qualified LU
496
+ name for which an associated subnet routing list has been
497
+ defined. An entry in this table contains general
498
+ characteristics of the subnet search routing list for an
499
+ LU name. The routing list itself is represented by a set
500
+ of contiguous entries in the ebnSearchTable.""",
501
+ }, # table
502
+ "ebnSubnetSearchEntry" : {
503
+ "nodetype" : "row",
504
+ "moduleName" : "EBN-MIB",
505
+ "oid" : "1.3.6.1.2.1.34.7.1.5.1.1",
506
+ "status" : "current",
507
+ "linkage" : [
508
+ "ebnSubnetSearchLuName",
509
+ ],
510
+ "description" :
511
+ """An entry for the ebnSubnetSearchTable. The entry
512
+ represents the configured parameters the EBN uses when it
513
+ is determining how to search for the LU identified by the
514
+ ebnSubnetSearchLuName object.""",
515
+ }, # row
516
+ "ebnSubnetSearchLuName" : {
517
+ "nodetype" : "column",
518
+ "moduleName" : "EBN-MIB",
519
+ "oid" : "1.3.6.1.2.1.34.7.1.5.1.1.1",
520
+ "status" : "current",
521
+ "syntax" : {
522
+ "type" : { "module" :"EBN-MIB", "name" : "SnaNAUWildcardName"},
523
+ },
524
+ "access" : "noaccess",
525
+ "description" :
526
+ """Fully qualified network LU name.""",
527
+ }, # column
528
+ "ebnSubnetSearchDynamics" : {
529
+ "nodetype" : "column",
530
+ "moduleName" : "EBN-MIB",
531
+ "oid" : "1.3.6.1.2.1.34.7.1.5.1.1.2",
532
+ "status" : "current",
533
+ "syntax" : {
534
+ "type" : {
535
+ "basetype" : "Enumeration",
536
+ "none" : {
537
+ "nodetype" : "namednumber",
538
+ "number" : "1"
539
+ },
540
+ "limited" : {
541
+ "nodetype" : "namednumber",
542
+ "number" : "2"
543
+ },
544
+ "full" : {
545
+ "nodetype" : "namednumber",
546
+ "number" : "3"
547
+ },
548
+ },
549
+ },
550
+ "access" : "readonly",
551
+ "description" :
552
+ """Indicates whether an EBN may add dynamic entries to a
553
+ subnetwork routing list. none(1) means no entries may be
554
+ added to the subnetwork routing list. limited(2) means
555
+ only likely entries may be added to the subnetwork routing
556
+ list. full(3) means all native extended border nodes and
557
+ adjacent, non-native EBNs and NNs will be added to the
558
+ subnetwork routing list.""",
559
+ }, # column
560
+ "ebnSubnetSearchOrdering" : {
561
+ "nodetype" : "column",
562
+ "moduleName" : "EBN-MIB",
563
+ "oid" : "1.3.6.1.2.1.34.7.1.5.1.1.3",
564
+ "status" : "current",
565
+ "syntax" : {
566
+ "type" : {
567
+ "basetype" : "Enumeration",
568
+ "priority" : {
569
+ "nodetype" : "namednumber",
570
+ "number" : "1"
571
+ },
572
+ "defined" : {
573
+ "nodetype" : "namednumber",
574
+ "number" : "2"
575
+ },
576
+ },
577
+ },
578
+ "access" : "readonly",
579
+ "description" :
580
+ """Indicates whether an EBN may reorder a subnetwork routing
581
+ list so that entries which are more likely to be successful
582
+ move to the top of the subnetwork routing list and entries
583
+ which are more likely to be unsuccessful move to the bottom
584
+ of the list.
585
+ The following values are defined:
586
+
587
+ - priority(1): Entries may be reordered.
588
+ - defined(2): Entries must not be reordered.""",
589
+ }, # column
590
+ "ebnSearchTable" : {
591
+ "nodetype" : "table",
592
+ "moduleName" : "EBN-MIB",
593
+ "oid" : "1.3.6.1.2.1.34.7.1.5.2",
594
+ "status" : "current",
595
+ "description" :
596
+ """This table indicates the CONFIGURED list of control points
597
+ to which the EBN sends Locate searches for a given fully
598
+ qualified LU name. Each entry in the table indicates one
599
+ control point that should be included in a multi-subnet
600
+ search for a particular LU name.""",
601
+ }, # table
602
+ "ebnSearchEntry" : {
603
+ "nodetype" : "row",
604
+ "moduleName" : "EBN-MIB",
605
+ "oid" : "1.3.6.1.2.1.34.7.1.5.2.1",
606
+ "status" : "current",
607
+ "linkage" : [
608
+ "ebnSearchLuName",
609
+ "ebnSearchIndex",
610
+ ],
611
+ "description" :
612
+ """An entry in the ebnSearchTable. An entry can exist in
613
+ this table only if an entry exists in the
614
+ ebnSubnetSearchTable with an ebnSubnetSearchLuName value
615
+ matching this entry's ebnSearchLuName.
616
+ For a given ebnSearchLuName value, the ordering of entries
617
+ provides by the ebnSearchIndex values corresponds to the
618
+ order in which the control points to be searched appear in
619
+ the CONFIGURED search list for the ebnSearchLuName.""",
620
+ }, # row
621
+ "ebnSearchLuName" : {
622
+ "nodetype" : "column",
623
+ "moduleName" : "EBN-MIB",
624
+ "oid" : "1.3.6.1.2.1.34.7.1.5.2.1.1",
625
+ "status" : "current",
626
+ "syntax" : {
627
+ "type" : { "module" :"EBN-MIB", "name" : "SnaNAUWildcardName"},
628
+ },
629
+ "access" : "noaccess",
630
+ "description" :
631
+ """Fully qualified network LU name. If this object has the
632
+ same value as the ebnSubnetSearchLuName object, then the
633
+ two objects are referring to the same LU.""",
634
+ }, # column
635
+ "ebnSearchIndex" : {
636
+ "nodetype" : "column",
637
+ "moduleName" : "EBN-MIB",
638
+ "oid" : "1.3.6.1.2.1.34.7.1.5.2.1.2",
639
+ "status" : "current",
640
+ "syntax" : {
641
+ "type" : { "module" :"", "name" : "Unsigned32"},
642
+ },
643
+ "access" : "noaccess",
644
+ "description" :
645
+ """Secondary index enumerating the CONFIGURED order in which
646
+ a search is forwarded to CPs for a particular LU name. The
647
+ order for an actual search is determined dynamically by the
648
+ EBN, based on this configured information and on other
649
+ factors, including whether search dynamics and search
650
+ ordering are enabled. Information on these last two settings
651
+ is available in, respectively, the ebnSubnetSearchDynamics
652
+ and ebnSubnetSearch ordering objects.""",
653
+ }, # column
654
+ "ebnSearchCpName" : {
655
+ "nodetype" : "column",
656
+ "moduleName" : "EBN-MIB",
657
+ "oid" : "1.3.6.1.2.1.34.7.1.5.2.1.3",
658
+ "status" : "current",
659
+ "syntax" : {
660
+ "type" : {
661
+ "basetype" : "OctetString",
662
+ "parent module" : {
663
+ "name" : "SNMPv2-TC",
664
+ "type" : "DisplayString",
665
+ },
666
+ "ranges" : [
667
+ {
668
+ "min" : "1",
669
+ "max" : "17"
670
+ },
671
+ ],
672
+ "range" : {
673
+ "min" : "1",
674
+ "max" : "17"
675
+ },
676
+ },
677
+ },
678
+ "access" : "readonly",
679
+ "description" :
680
+ """This object specifies the CP(s) to which a search should be
681
+ forwarded. It either follows the SnaNAUWildcardName textual
682
+ convention or takes one of the following special formats:
683
+
684
+ '*' indicates that all native EBNs and all adjacent non-
685
+ native EBNs and NNs may be added to the routing list
686
+ dynamically,
687
+
688
+ '*SELF' indicates that the EBN should search itself and
689
+ its native subnetwork at this time during the
690
+ cross-subnet search,
691
+
692
+ '*EBNS' indicates all native EBNs.
693
+
694
+ Because the characters allowed in a CP name come from a
695
+ restricted character set, and because the three formats
696
+ listed here use no special characters, this object is not
697
+ subject to internationalization.""",
698
+ }, # column
699
+ "ebnSearchSNVC" : {
700
+ "nodetype" : "column",
701
+ "moduleName" : "EBN-MIB",
702
+ "oid" : "1.3.6.1.2.1.34.7.1.5.2.1.4",
703
+ "status" : "current",
704
+ "syntax" : {
705
+ "type" : { "module" :"", "name" : "Unsigned32"},
706
+ },
707
+ "access" : "readonly",
708
+ "description" :
709
+ """The maximum number of subnets a Locate search procedure may
710
+ traverse. """,
711
+ }, # column
712
+ "hbn" : {
713
+ "nodetype" : "node",
714
+ "moduleName" : "EBN-MIB",
715
+ "oid" : "1.3.6.1.2.1.34.7.1.6",
716
+ }, # node
717
+ "hbnIsInTable" : {
718
+ "nodetype" : "table",
719
+ "moduleName" : "EBN-MIB",
720
+ "oid" : "1.3.6.1.2.1.34.7.1.6.1",
721
+ "status" : "current",
722
+ "description" :
723
+ """The HBN Intermediate Session table.""",
724
+ }, # table
725
+ "hbnIsInEntry" : {
726
+ "nodetype" : "row",
727
+ "moduleName" : "EBN-MIB",
728
+ "oid" : "1.3.6.1.2.1.34.7.1.6.1.1",
729
+ "status" : "current",
730
+ "linkage" : [
731
+ "hbnIsInFqCpName",
732
+ "hbnIsInPcid",
733
+ ],
734
+ "description" :
735
+ """Entry of the HBN Intermediate Session Table. An entry
736
+ exists in this table for every intermediate session being
737
+ routed between back-to-back RTP connections in the HBN.
738
+
739
+ When an entry for a session exists in this table, the
740
+ NceIds and Tcids for the back-to-back RTP connections are
741
+ made available in the following four objects:
742
+
743
+ RTP connection in the direction of the PLU:
744
+ - NceId: appnIsInRtpNceId (in the APPN MIB)
745
+ - Tcid: appnIsinRtpTcid (in the APPN MIB).
746
+
747
+ RTP connection in the direction of the SLU:
748
+ - NceId: hbnIsInRtpNceId (in this table)
749
+ - Tcid: hbnIsInRtpTcid (in this table).""",
750
+ }, # row
751
+ "hbnIsInFqCpName" : {
752
+ "nodetype" : "column",
753
+ "moduleName" : "EBN-MIB",
754
+ "oid" : "1.3.6.1.2.1.34.7.1.6.1.1.1",
755
+ "status" : "current",
756
+ "syntax" : {
757
+ "type" : { "module" :"APPN-MIB", "name" : "SnaControlPointName"},
758
+ },
759
+ "access" : "noaccess",
760
+ "description" :
761
+ """The network-qualified control point name of the node at
762
+ which the session and PCID originated. For APPN and LEN
763
+ nodes, this is either the CP name of the APPN node at
764
+ which the origin LU is located or the CP name of the NN
765
+ serving the LEN node at which the origin LU is located.
766
+
767
+ If this object has the same value as the appnIsInFqCpName
768
+ object in the APPN MIB, then the two objects are referring
769
+ to the same APPN control point.""",
770
+ }, # column
771
+ "hbnIsInPcid" : {
772
+ "nodetype" : "column",
773
+ "moduleName" : "EBN-MIB",
774
+ "oid" : "1.3.6.1.2.1.34.7.1.6.1.1.2",
775
+ "status" : "current",
776
+ "syntax" : {
777
+ "type" : {
778
+ "basetype" : "OctetString",
779
+ "ranges" : [
780
+ {
781
+ "min" : "8",
782
+ "max" : "8"
783
+ },
784
+ ],
785
+ "range" : {
786
+ "min" : "8",
787
+ "max" : "8"
788
+ },
789
+ },
790
+ },
791
+ "access" : "noaccess",
792
+ "description" :
793
+ """The procedure correlation identifier (PCID) of a session.
794
+ It is an 8-octet value.
795
+
796
+ If this object has the same value as the appnIsInPcid object
797
+ in the APPN MIB, and if the corresponding hbnIsInFqCpName
798
+ object has the same value as the corresponding
799
+ appnIsInFqCpName object, then the entries indexed by these
800
+ objects are referring to the same session.""",
801
+ }, # column
802
+ "hbnIsInRtpNceId" : {
803
+ "nodetype" : "column",
804
+ "moduleName" : "EBN-MIB",
805
+ "oid" : "1.3.6.1.2.1.34.7.1.6.1.1.3",
806
+ "status" : "current",
807
+ "syntax" : {
808
+ "type" : {
809
+ "basetype" : "OctetString",
810
+ "ranges" : [
811
+ {
812
+ "min" : "1",
813
+ "max" : "8"
814
+ },
815
+ ],
816
+ "range" : {
817
+ "min" : "1",
818
+ "max" : "8"
819
+ },
820
+ },
821
+ },
822
+ "access" : "readonly",
823
+ "description" :
824
+ """The HPR local Network Connection Endpoint of the session in
825
+ the direction of the SLU.""",
826
+ }, # column
827
+ "hbnIsInRtpTcid" : {
828
+ "nodetype" : "column",
829
+ "moduleName" : "EBN-MIB",
830
+ "oid" : "1.3.6.1.2.1.34.7.1.6.1.1.4",
831
+ "status" : "current",
832
+ "syntax" : {
833
+ "type" : {
834
+ "basetype" : "OctetString",
835
+ "ranges" : [
836
+ {
837
+ "min" : "8",
838
+ "max" : "8"
839
+ },
840
+ ],
841
+ "range" : {
842
+ "min" : "8",
843
+ "max" : "8"
844
+ },
845
+ },
846
+ },
847
+ "access" : "readonly",
848
+ "description" :
849
+ """The RTP connection local TCID of the session in the direction
850
+ of the SLU.""",
851
+ }, # column
852
+ "ebnConformance" : {
853
+ "nodetype" : "node",
854
+ "moduleName" : "EBN-MIB",
855
+ "oid" : "1.3.6.1.2.1.34.7.2",
856
+ }, # node
857
+ "ebnCompliances" : {
858
+ "nodetype" : "node",
859
+ "moduleName" : "EBN-MIB",
860
+ "oid" : "1.3.6.1.2.1.34.7.2.1",
861
+ }, # node
862
+ "ebnGroups" : {
863
+ "nodetype" : "node",
864
+ "moduleName" : "EBN-MIB",
865
+ "oid" : "1.3.6.1.2.1.34.7.2.2",
866
+ }, # node
867
+ }, # nodes
868
+
869
+ "groups" : {
870
+ "ebnDirectoryGroup" : {
871
+ "nodetype" : "group",
872
+ "moduleName" : "EBN-MIB",
873
+ "oid" : "1.3.6.1.2.1.34.7.2.2.1",
874
+ "status" : "current",
875
+ "members" : {
876
+ "ebnDirSubnetAffiliation" : {
877
+ "nodetype" : "member",
878
+ "module" : "EBN-MIB"
879
+ },
880
+ }, # members
881
+ "description" :
882
+ """The EBN-related directory objects.""",
883
+ }, # group
884
+ "ebnIsRscvGroup" : {
885
+ "nodetype" : "group",
886
+ "moduleName" : "EBN-MIB",
887
+ "oid" : "1.3.6.1.2.1.34.7.2.2.2",
888
+ "status" : "current",
889
+ "members" : {
890
+ "ebnIsRscvDestinationRoute" : {
891
+ "nodetype" : "member",
892
+ "module" : "EBN-MIB"
893
+ },
894
+ "ebnIsRscvDestinationCos" : {
895
+ "nodetype" : "member",
896
+ "module" : "EBN-MIB"
897
+ },
898
+ }, # members
899
+ "description" :
900
+ """Two objects representing RSCV and class of service
901
+ information saved by an EBN.""",
902
+ }, # group
903
+ "ebnDirectoryConfigGroup" : {
904
+ "nodetype" : "group",
905
+ "moduleName" : "EBN-MIB",
906
+ "oid" : "1.3.6.1.2.1.34.7.2.2.3",
907
+ "status" : "current",
908
+ "members" : {
909
+ "ebnSearchCacheTime" : {
910
+ "nodetype" : "member",
911
+ "module" : "EBN-MIB"
912
+ },
913
+ "ebnMaxSearchCache" : {
914
+ "nodetype" : "member",
915
+ "module" : "EBN-MIB"
916
+ },
917
+ "ebnDefaultSubnetVisitCount" : {
918
+ "nodetype" : "member",
919
+ "module" : "EBN-MIB"
920
+ },
921
+ }, # members
922
+ "description" :
923
+ """The EBN Directory Configuration Group.""",
924
+ }, # group
925
+ "ebnCosMappingGroup" : {
926
+ "nodetype" : "group",
927
+ "moduleName" : "EBN-MIB",
928
+ "oid" : "1.3.6.1.2.1.34.7.2.2.4",
929
+ "status" : "current",
930
+ "members" : {
931
+ "ebnCosMapNativeCos" : {
932
+ "nodetype" : "member",
933
+ "module" : "EBN-MIB"
934
+ },
935
+ }, # members
936
+ "description" :
937
+ """The EBN COS Mapping Group.""",
938
+ }, # group
939
+ "ebnSubnetRoutingListGroup" : {
940
+ "nodetype" : "group",
941
+ "moduleName" : "EBN-MIB",
942
+ "oid" : "1.3.6.1.2.1.34.7.2.2.5",
943
+ "status" : "current",
944
+ "members" : {
945
+ "ebnSubnetSearchDynamics" : {
946
+ "nodetype" : "member",
947
+ "module" : "EBN-MIB"
948
+ },
949
+ "ebnSubnetSearchOrdering" : {
950
+ "nodetype" : "member",
951
+ "module" : "EBN-MIB"
952
+ },
953
+ "ebnSearchCpName" : {
954
+ "nodetype" : "member",
955
+ "module" : "EBN-MIB"
956
+ },
957
+ "ebnSearchSNVC" : {
958
+ "nodetype" : "member",
959
+ "module" : "EBN-MIB"
960
+ },
961
+ }, # members
962
+ "description" :
963
+ """The Subnet Routing List Group.""",
964
+ }, # group
965
+ "hbnIsInGroup" : {
966
+ "nodetype" : "group",
967
+ "moduleName" : "EBN-MIB",
968
+ "oid" : "1.3.6.1.2.1.34.7.2.2.6",
969
+ "status" : "current",
970
+ "members" : {
971
+ "hbnIsInRtpNceId" : {
972
+ "nodetype" : "member",
973
+ "module" : "EBN-MIB"
974
+ },
975
+ "hbnIsInRtpTcid" : {
976
+ "nodetype" : "member",
977
+ "module" : "EBN-MIB"
978
+ },
979
+ }, # members
980
+ "description" :
981
+ """The HBN-related Intermediate Session Objects.""",
982
+ }, # group
983
+ }, # groups
984
+
985
+ "compliances" : {
986
+ "ebnCompliance" : {
987
+ "nodetype" : "compliance",
988
+ "moduleName" : "EBN-MIB",
989
+ "oid" : "1.3.6.1.2.1.34.7.2.1.1",
990
+ "status" : "current",
991
+ "description" :
992
+ """The compliance statement for the SNMPv2 entities which
993
+ implement the ebnMIB.""",
994
+ "requires" : {
995
+ "ebnDirectoryGroup" : {
996
+ "nodetype" : "mandatory",
997
+ "module" : "EBN-MIB"
998
+ },
999
+ "ebnIsRscvGroup" : {
1000
+ "nodetype" : "mandatory",
1001
+ "module" : "EBN-MIB"
1002
+ },
1003
+ "ebnDirectoryConfigGroup" : {
1004
+ "nodetype" : "mandatory",
1005
+ "module" : "EBN-MIB"
1006
+ },
1007
+ "ebnCosMappingGroup" : {
1008
+ "nodetype" : "mandatory",
1009
+ "module" : "EBN-MIB"
1010
+ },
1011
+ "ebnSubnetRoutingListGroup" : {
1012
+ "nodetype" : "mandatory",
1013
+ "module" : "EBN-MIB"
1014
+ },
1015
+ "hbnIsInGroup" : {
1016
+ "nodetype" : "optional",
1017
+ "module" : "EBN-MIB",
1018
+ "description" :
1019
+ """The hbnIsInGroup is mandatory only for HPR extended border
1020
+ nodes.""",
1021
+ },
1022
+ }, # requires
1023
+ }, # compliance
1024
+ }, # compliances
1025
+
1026
+ }