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,1095 @@
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 TUNNEL-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TUNNEL-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TUNNEL-MIB",
11
+
12
+ "TUNNEL-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IP Version 6 (IPv6) Working Group""",
17
+ "contact" :
18
+ """ Dave Thaler
19
+ Microsoft Corporation
20
+ One Microsoft Way
21
+ Redmond, WA 98052-6399
22
+ EMail: dthaler@microsoft.com""",
23
+ "description" :
24
+ """The MIB module for management of IP Tunnels,
25
+ independent of the specific encapsulation scheme in
26
+ use.
27
+
28
+ Copyright (C) The Internet Society (2005). This
29
+ version of this MIB module is part of RFC 4087; see
30
+ the RFC itself for full legal notices.""",
31
+ "revisions" : (
32
+ {
33
+ "date" : "2005-05-16 00:00",
34
+ "description" :
35
+ """IPv4-specific objects were deprecated, including
36
+ tunnelIfLocalAddress, tunnelIfRemoteAddress, the
37
+ tunnelConfigTable, and the tunnelMIBBasicGroup.
38
+
39
+ Added IP version-agnostic objects that should be used
40
+ instead, including tunnelIfAddressType,
41
+ tunnelIfLocalInetAddress, tunnelIfRemoteInetAddress,
42
+ the tunnelInetConfigTable, and the
43
+ tunnelIMIBInetGroup.
44
+
45
+ The new tunnelIfLocalInetAddress and
46
+ tunnelIfRemoteInetAddress objects are read-write,
47
+ rather than read-only.
48
+
49
+ Updated DESCRIPTION clauses of existing version-
50
+ agnostic objects (e.g., tunnelIfTOS) that contained
51
+ IPv4-specific text to cover IPv6 as well.
52
+
53
+ Added tunnelIfFlowLabel for tunnels over IPv6.
54
+
55
+ The encapsulation method was previously an INTEGER
56
+ type, and is now an IANA-maintained textual
57
+ convention.
58
+
59
+ Published as RFC 4087.""",
60
+ },
61
+ {
62
+ "date" : "1999-08-24 12:00",
63
+ "description" :
64
+ """Initial version, published as RFC 2667.""",
65
+ },
66
+ ),
67
+ "identity node" : "tunnelMIB",
68
+ },
69
+
70
+ "imports" : (
71
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
72
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
73
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
74
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
75
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
76
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
77
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
78
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
79
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
80
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
81
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
82
+ {"module" : "IPV6-FLOW-LABEL-MIB", "name" : "IPv6FlowLabelOrAny"},
83
+ {"module" : "IF-MIB", "name" : "ifIndex"},
84
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
85
+ {"module" : "IANAifType-MIB", "name" : "IANAtunnelType"},
86
+ ),
87
+
88
+ "nodes" : {
89
+ "tunnelMIB" : {
90
+ "nodetype" : "node",
91
+ "moduleName" : "TUNNEL-MIB",
92
+ "oid" : "1.3.6.1.2.1.10.131",
93
+ "status" : "current",
94
+ }, # node
95
+ "tunnelMIBObjects" : {
96
+ "nodetype" : "node",
97
+ "moduleName" : "TUNNEL-MIB",
98
+ "oid" : "1.3.6.1.2.1.10.131.1",
99
+ }, # node
100
+ "tunnel" : {
101
+ "nodetype" : "node",
102
+ "moduleName" : "TUNNEL-MIB",
103
+ "oid" : "1.3.6.1.2.1.10.131.1.1",
104
+ }, # node
105
+ "tunnelIfTable" : {
106
+ "nodetype" : "table",
107
+ "moduleName" : "TUNNEL-MIB",
108
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1",
109
+ "status" : "current",
110
+ "description" :
111
+ """The (conceptual) table containing information on
112
+ configured tunnels.""",
113
+ }, # table
114
+ "tunnelIfEntry" : {
115
+ "nodetype" : "row",
116
+ "moduleName" : "TUNNEL-MIB",
117
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1",
118
+ "status" : "current",
119
+ "linkage" : [
120
+ "ifIndex",
121
+ ],
122
+ "description" :
123
+ """An entry (conceptual row) containing the information
124
+ on a particular configured tunnel.""",
125
+ }, # row
126
+ "tunnelIfLocalAddress" : {
127
+ "nodetype" : "column",
128
+ "moduleName" : "TUNNEL-MIB",
129
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.1",
130
+ "status" : "deprecated",
131
+ "syntax" : {
132
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
133
+ },
134
+ "access" : "readonly",
135
+ "description" :
136
+ """The address of the local endpoint of the tunnel
137
+ (i.e., the source address used in the outer IP
138
+ header), or 0.0.0.0 if unknown or if the tunnel is
139
+ over IPv6.
140
+
141
+ Since this object does not support IPv6, it is
142
+ deprecated in favor of tunnelIfLocalInetAddress.""",
143
+ }, # column
144
+ "tunnelIfRemoteAddress" : {
145
+ "nodetype" : "column",
146
+ "moduleName" : "TUNNEL-MIB",
147
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.2",
148
+ "status" : "deprecated",
149
+ "syntax" : {
150
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
151
+ },
152
+ "access" : "readonly",
153
+ "description" :
154
+ """The address of the remote endpoint of the tunnel
155
+ (i.e., the destination address used in the outer IP
156
+ header), or 0.0.0.0 if unknown, or an IPv6 address, or
157
+
158
+
159
+
160
+ the tunnel is not a point-to-point link (e.g., if it
161
+ is a 6to4 tunnel).
162
+
163
+ Since this object does not support IPv6, it is
164
+ deprecated in favor of tunnelIfRemoteInetAddress.""",
165
+ }, # column
166
+ "tunnelIfEncapsMethod" : {
167
+ "nodetype" : "column",
168
+ "moduleName" : "TUNNEL-MIB",
169
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.3",
170
+ "status" : "current",
171
+ "syntax" : {
172
+ "type" : { "module" :"IANAifType-MIB", "name" : "IANAtunnelType"},
173
+ },
174
+ "access" : "readonly",
175
+ "description" :
176
+ """The encapsulation method used by the tunnel.""",
177
+ }, # column
178
+ "tunnelIfHopLimit" : {
179
+ "nodetype" : "column",
180
+ "moduleName" : "TUNNEL-MIB",
181
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.4",
182
+ "status" : "current",
183
+ "syntax" : {
184
+ "type" : {
185
+ "basetype" : "Integer32",
186
+ "ranges" : [
187
+ {
188
+ "min" : "0",
189
+ "max" : "255"
190
+ },
191
+ ],
192
+ "range" : {
193
+ "min" : "0",
194
+ "max" : "255"
195
+ },
196
+ },
197
+ },
198
+ "access" : "readwrite",
199
+ "description" :
200
+ """The IPv4 TTL or IPv6 Hop Limit to use in the outer IP
201
+ header. A value of 0 indicates that the value is
202
+ copied from the payload's header.""",
203
+ }, # column
204
+ "tunnelIfSecurity" : {
205
+ "nodetype" : "column",
206
+ "moduleName" : "TUNNEL-MIB",
207
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.5",
208
+ "status" : "current",
209
+ "syntax" : {
210
+ "type" : {
211
+ "basetype" : "Enumeration",
212
+ "none" : {
213
+ "nodetype" : "namednumber",
214
+ "number" : "1"
215
+ },
216
+ "ipsec" : {
217
+ "nodetype" : "namednumber",
218
+ "number" : "2"
219
+ },
220
+ "other" : {
221
+ "nodetype" : "namednumber",
222
+ "number" : "3"
223
+ },
224
+ },
225
+ },
226
+ "access" : "readonly",
227
+ "description" :
228
+ """The method used by the tunnel to secure the outer IP
229
+ header. The value ipsec indicates that IPsec is used
230
+ between the tunnel endpoints for authentication or
231
+ encryption or both. More specific security-related
232
+ information may be available in a MIB module for the
233
+ security protocol in use.""",
234
+ }, # column
235
+ "tunnelIfTOS" : {
236
+ "nodetype" : "column",
237
+ "moduleName" : "TUNNEL-MIB",
238
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.6",
239
+ "status" : "current",
240
+ "syntax" : {
241
+ "type" : {
242
+ "basetype" : "Integer32",
243
+ "ranges" : [
244
+ {
245
+ "min" : "-2",
246
+ "max" : "63"
247
+ },
248
+ ],
249
+ "range" : {
250
+ "min" : "-2",
251
+ "max" : "63"
252
+ },
253
+ },
254
+ },
255
+ "access" : "readwrite",
256
+ "description" :
257
+ """The method used to set the high 6 bits (the
258
+
259
+
260
+
261
+ differentiated services codepoint) of the IPv4 TOS or
262
+ IPv6 Traffic Class in the outer IP header. A value of
263
+ -1 indicates that the bits are copied from the
264
+ payload's header. A value of -2 indicates that a
265
+ traffic conditioner is invoked and more information
266
+ may be available in a traffic conditioner MIB module.
267
+ A value between 0 and 63 inclusive indicates that the
268
+ bit field is set to the indicated value.
269
+
270
+ Note: instead of the name tunnelIfTOS, a better name
271
+ would have been tunnelIfDSCPMethod, but the existing
272
+ name appeared in RFC 2667 and existing objects cannot
273
+ be renamed.""",
274
+ }, # column
275
+ "tunnelIfFlowLabel" : {
276
+ "nodetype" : "column",
277
+ "moduleName" : "TUNNEL-MIB",
278
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.7",
279
+ "status" : "current",
280
+ "syntax" : {
281
+ "type" : { "module" :"IPV6-FLOW-LABEL-MIB", "name" : "IPv6FlowLabelOrAny"},
282
+ },
283
+ "access" : "readwrite",
284
+ "description" :
285
+ """The method used to set the IPv6 Flow Label value.
286
+ This object need not be present in rows where
287
+ tunnelIfAddressType indicates the tunnel is not over
288
+ IPv6. A value of -1 indicates that a traffic
289
+ conditioner is invoked and more information may be
290
+ available in a traffic conditioner MIB. Any other
291
+ value indicates that the Flow Label field is set to
292
+ the indicated value.""",
293
+ }, # column
294
+ "tunnelIfAddressType" : {
295
+ "nodetype" : "column",
296
+ "moduleName" : "TUNNEL-MIB",
297
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.8",
298
+ "status" : "current",
299
+ "syntax" : {
300
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
301
+ },
302
+ "access" : "readwrite",
303
+ "description" :
304
+ """The type of address in the corresponding
305
+ tunnelIfLocalInetAddress and tunnelIfRemoteInetAddress
306
+ objects.""",
307
+ }, # column
308
+ "tunnelIfLocalInetAddress" : {
309
+ "nodetype" : "column",
310
+ "moduleName" : "TUNNEL-MIB",
311
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.9",
312
+ "status" : "current",
313
+ "syntax" : {
314
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
315
+ },
316
+ "access" : "readwrite",
317
+ "description" :
318
+ """The address of the local endpoint of the tunnel
319
+ (i.e., the source address used in the outer IP
320
+ header). If the address is unknown, the value is
321
+
322
+
323
+
324
+ 0.0.0.0 for IPv4 or :: for IPv6. The type of this
325
+ object is given by tunnelIfAddressType.""",
326
+ }, # column
327
+ "tunnelIfRemoteInetAddress" : {
328
+ "nodetype" : "column",
329
+ "moduleName" : "TUNNEL-MIB",
330
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.10",
331
+ "status" : "current",
332
+ "syntax" : {
333
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
334
+ },
335
+ "access" : "readwrite",
336
+ "description" :
337
+ """The address of the remote endpoint of the tunnel
338
+ (i.e., the destination address used in the outer IP
339
+ header). If the address is unknown or the tunnel is
340
+ not a point-to-point link (e.g., if it is a 6to4
341
+ tunnel), the value is 0.0.0.0 for tunnels over IPv4 or
342
+ :: for tunnels over IPv6. The type of this object is
343
+ given by tunnelIfAddressType.""",
344
+ }, # column
345
+ "tunnelIfEncapsLimit" : {
346
+ "nodetype" : "column",
347
+ "moduleName" : "TUNNEL-MIB",
348
+ "oid" : "1.3.6.1.2.1.10.131.1.1.1.1.11",
349
+ "status" : "current",
350
+ "syntax" : {
351
+ "type" : {
352
+ "basetype" : "Integer32",
353
+ "ranges" : [
354
+ {
355
+ "min" : "-1",
356
+ "max" : "255"
357
+ },
358
+ ],
359
+ "range" : {
360
+ "min" : "-1",
361
+ "max" : "255"
362
+ },
363
+ },
364
+ },
365
+ "access" : "readwrite",
366
+ "description" :
367
+ """The maximum number of additional encapsulations
368
+ permitted for packets undergoing encapsulation at this
369
+ node. A value of -1 indicates that no limit is
370
+ present (except as a result of the packet size).""",
371
+ "reference" :
372
+ """RFC 2473, section 4.1.1""",
373
+ }, # column
374
+ "tunnelConfigTable" : {
375
+ "nodetype" : "table",
376
+ "moduleName" : "TUNNEL-MIB",
377
+ "oid" : "1.3.6.1.2.1.10.131.1.1.2",
378
+ "status" : "deprecated",
379
+ "description" :
380
+ """The (conceptual) table containing information on
381
+ configured tunnels. This table can be used to map a
382
+ set of tunnel endpoints to the associated ifIndex
383
+ value. It can also be used for row creation. Note
384
+ that every row in the tunnelIfTable with a fixed IPv4
385
+ destination address should have a corresponding row in
386
+ the tunnelConfigTable, regardless of whether it was
387
+ created via SNMP.
388
+
389
+ Since this table does not support IPv6, it is
390
+ deprecated in favor of tunnelInetConfigTable.""",
391
+ }, # table
392
+ "tunnelConfigEntry" : {
393
+ "nodetype" : "row",
394
+ "moduleName" : "TUNNEL-MIB",
395
+ "oid" : "1.3.6.1.2.1.10.131.1.1.2.1",
396
+ "create" : "true",
397
+ "status" : "deprecated",
398
+ "linkage" : [
399
+ "tunnelConfigLocalAddress",
400
+ "tunnelConfigRemoteAddress",
401
+ "tunnelConfigEncapsMethod",
402
+ "tunnelConfigID",
403
+ ],
404
+ "description" :
405
+ """An entry (conceptual row) containing the information
406
+ on a particular configured tunnel.
407
+
408
+ Since this entry does not support IPv6, it is
409
+ deprecated in favor of tunnelInetConfigEntry.""",
410
+ }, # row
411
+ "tunnelConfigLocalAddress" : {
412
+ "nodetype" : "column",
413
+ "moduleName" : "TUNNEL-MIB",
414
+ "oid" : "1.3.6.1.2.1.10.131.1.1.2.1.1",
415
+ "status" : "deprecated",
416
+ "syntax" : {
417
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
418
+ },
419
+ "access" : "noaccess",
420
+ "description" :
421
+ """The address of the local endpoint of the tunnel, or
422
+ 0.0.0.0 if the device is free to choose any of its
423
+ addresses at tunnel establishment time.
424
+
425
+ Since this object does not support IPv6, it is
426
+ deprecated in favor of tunnelInetConfigLocalAddress.""",
427
+ }, # column
428
+ "tunnelConfigRemoteAddress" : {
429
+ "nodetype" : "column",
430
+ "moduleName" : "TUNNEL-MIB",
431
+ "oid" : "1.3.6.1.2.1.10.131.1.1.2.1.2",
432
+ "status" : "deprecated",
433
+ "syntax" : {
434
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
435
+ },
436
+ "access" : "noaccess",
437
+ "description" :
438
+ """The address of the remote endpoint of the tunnel.
439
+
440
+ Since this object does not support IPv6, it is
441
+ deprecated in favor of tunnelInetConfigRemoteAddress.""",
442
+ }, # column
443
+ "tunnelConfigEncapsMethod" : {
444
+ "nodetype" : "column",
445
+ "moduleName" : "TUNNEL-MIB",
446
+ "oid" : "1.3.6.1.2.1.10.131.1.1.2.1.3",
447
+ "status" : "deprecated",
448
+ "syntax" : {
449
+ "type" : { "module" :"IANAifType-MIB", "name" : "IANAtunnelType"},
450
+ },
451
+ "access" : "noaccess",
452
+ "description" :
453
+ """The encapsulation method used by the tunnel.
454
+
455
+ Since this object does not support IPv6, it is
456
+ deprecated in favor of tunnelInetConfigEncapsMethod.""",
457
+ }, # column
458
+ "tunnelConfigID" : {
459
+ "nodetype" : "column",
460
+ "moduleName" : "TUNNEL-MIB",
461
+ "oid" : "1.3.6.1.2.1.10.131.1.1.2.1.4",
462
+ "status" : "deprecated",
463
+ "syntax" : {
464
+ "type" : {
465
+ "basetype" : "Integer32",
466
+ "ranges" : [
467
+ {
468
+ "min" : "1",
469
+ "max" : "2147483647"
470
+ },
471
+ ],
472
+ "range" : {
473
+ "min" : "1",
474
+ "max" : "2147483647"
475
+ },
476
+ },
477
+ },
478
+ "access" : "noaccess",
479
+ "description" :
480
+ """An identifier used to distinguish between multiple
481
+ tunnels of the same encapsulation method, with the
482
+ same endpoints. If the encapsulation protocol only
483
+ allows one tunnel per set of endpoint addresses (such
484
+ as for GRE or IP-in-IP), the value of this object is
485
+ 1. For encapsulation methods (such as L2F) which
486
+ allow multiple parallel tunnels, the manager is
487
+ responsible for choosing any ID which does not
488
+ conflict with an existing row, such as choosing a
489
+ random number.
490
+
491
+ Since this object does not support IPv6, it is
492
+ deprecated in favor of tunnelInetConfigID.""",
493
+ }, # column
494
+ "tunnelConfigIfIndex" : {
495
+ "nodetype" : "column",
496
+ "moduleName" : "TUNNEL-MIB",
497
+ "oid" : "1.3.6.1.2.1.10.131.1.1.2.1.5",
498
+ "status" : "deprecated",
499
+ "syntax" : {
500
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
501
+ },
502
+ "access" : "readonly",
503
+ "description" :
504
+ """If the value of tunnelConfigStatus for this row is
505
+ active, then this object contains the value of ifIndex
506
+ corresponding to the tunnel interface. A value of 0
507
+ is not legal in the active state, and means that the
508
+ interface index has not yet been assigned.
509
+
510
+ Since this object does not support IPv6, it is
511
+ deprecated in favor of tunnelInetConfigIfIndex.""",
512
+ }, # column
513
+ "tunnelConfigStatus" : {
514
+ "nodetype" : "column",
515
+ "moduleName" : "TUNNEL-MIB",
516
+ "oid" : "1.3.6.1.2.1.10.131.1.1.2.1.6",
517
+ "status" : "deprecated",
518
+ "syntax" : {
519
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
520
+ },
521
+ "access" : "readwrite",
522
+ "description" :
523
+ """The status of this row, by which new entries may be
524
+ created, or old entries deleted from this table. The
525
+ agent need not support setting this object to
526
+ createAndWait or notInService since there are no other
527
+ writable objects in this table, and writable objects
528
+ in rows of corresponding tables such as the
529
+ tunnelIfTable may be modified while this row is
530
+ active.
531
+
532
+ To create a row in this table for an encapsulation
533
+ method which does not support multiple parallel
534
+ tunnels with the same endpoints, the management
535
+ station should simply use a tunnelConfigID of 1, and
536
+ set tunnelConfigStatus to createAndGo. For
537
+ encapsulation methods such as L2F which allow multiple
538
+ parallel tunnels, the management station may select a
539
+ pseudo-random number to use as the tunnelConfigID and
540
+ set tunnelConfigStatus to createAndGo. In the event
541
+ that this ID is already in use and an
542
+ inconsistentValue is returned in response to the set
543
+ operation, the management station should simply select
544
+ a new pseudo-random number and retry the operation.
545
+
546
+ Creating a row in this table will cause an interface
547
+ index to be assigned by the agent in an
548
+ implementation-dependent manner, and corresponding
549
+ rows will be instantiated in the ifTable and the
550
+ tunnelIfTable. The status of this row will become
551
+ active as soon as the agent assigns the interface
552
+ index, regardless of whether the interface is
553
+ operationally up.
554
+
555
+ Deleting a row in this table will likewise delete the
556
+ corresponding row in the ifTable and in the
557
+ tunnelIfTable.
558
+
559
+ Since this object does not support IPv6, it is
560
+ deprecated in favor of tunnelInetConfigStatus.""",
561
+ }, # column
562
+ "tunnelInetConfigTable" : {
563
+ "nodetype" : "table",
564
+ "moduleName" : "TUNNEL-MIB",
565
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3",
566
+ "status" : "current",
567
+ "description" :
568
+ """The (conceptual) table containing information on
569
+ configured tunnels. This table can be used to map a
570
+ set of tunnel endpoints to the associated ifIndex
571
+ value. It can also be used for row creation. Note
572
+ that every row in the tunnelIfTable with a fixed
573
+ destination address should have a corresponding row in
574
+ the tunnelInetConfigTable, regardless of whether it
575
+ was created via SNMP.""",
576
+ }, # table
577
+ "tunnelInetConfigEntry" : {
578
+ "nodetype" : "row",
579
+ "moduleName" : "TUNNEL-MIB",
580
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1",
581
+ "create" : "true",
582
+ "status" : "current",
583
+ "linkage" : [
584
+ "tunnelInetConfigAddressType",
585
+ "tunnelInetConfigLocalAddress",
586
+ "tunnelInetConfigRemoteAddress",
587
+ "tunnelInetConfigEncapsMethod",
588
+ "tunnelInetConfigID",
589
+ ],
590
+ "description" :
591
+ """An entry (conceptual row) containing the information
592
+ on a particular configured tunnel. Note that there is
593
+ a 128 subid maximum for object OIDs. Implementers
594
+ need to be aware that if the total number of octets in
595
+ tunnelInetConfigLocalAddress and
596
+ tunnelInetConfigRemoteAddress exceeds 110 then OIDs of
597
+ column instances in this table will have more than 128
598
+ sub-identifiers and cannot be accessed using SNMPv1,
599
+ SNMPv2c, or SNMPv3. In practice this is not expected
600
+ to be a problem since IPv4 and IPv6 addresses will not
601
+ cause the limit to be reached, but if other types are
602
+ supported by an agent, care must be taken to ensure
603
+ that the sum of the lengths do not cause the limit to
604
+ be exceeded.""",
605
+ }, # row
606
+ "tunnelInetConfigAddressType" : {
607
+ "nodetype" : "column",
608
+ "moduleName" : "TUNNEL-MIB",
609
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1.1",
610
+ "status" : "current",
611
+ "syntax" : {
612
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
613
+ },
614
+ "access" : "noaccess",
615
+ "description" :
616
+ """The address type over which the tunnel encapsulates
617
+ packets.""",
618
+ }, # column
619
+ "tunnelInetConfigLocalAddress" : {
620
+ "nodetype" : "column",
621
+ "moduleName" : "TUNNEL-MIB",
622
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1.2",
623
+ "status" : "current",
624
+ "syntax" : {
625
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
626
+ },
627
+ "access" : "noaccess",
628
+ "description" :
629
+ """The address of the local endpoint of the tunnel, or
630
+ 0.0.0.0 (for IPv4) or :: (for IPv6) if the device is
631
+ free to choose any of its addresses at tunnel
632
+ establishment time.""",
633
+ }, # column
634
+ "tunnelInetConfigRemoteAddress" : {
635
+ "nodetype" : "column",
636
+ "moduleName" : "TUNNEL-MIB",
637
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1.3",
638
+ "status" : "current",
639
+ "syntax" : {
640
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
641
+ },
642
+ "access" : "noaccess",
643
+ "description" :
644
+ """The address of the remote endpoint of the tunnel.""",
645
+ }, # column
646
+ "tunnelInetConfigEncapsMethod" : {
647
+ "nodetype" : "column",
648
+ "moduleName" : "TUNNEL-MIB",
649
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1.4",
650
+ "status" : "current",
651
+ "syntax" : {
652
+ "type" : { "module" :"IANAifType-MIB", "name" : "IANAtunnelType"},
653
+ },
654
+ "access" : "noaccess",
655
+ "description" :
656
+ """The encapsulation method used by the tunnel.""",
657
+ }, # column
658
+ "tunnelInetConfigID" : {
659
+ "nodetype" : "column",
660
+ "moduleName" : "TUNNEL-MIB",
661
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1.5",
662
+ "status" : "current",
663
+ "syntax" : {
664
+ "type" : {
665
+ "basetype" : "Integer32",
666
+ "ranges" : [
667
+ {
668
+ "min" : "1",
669
+ "max" : "2147483647"
670
+ },
671
+ ],
672
+ "range" : {
673
+ "min" : "1",
674
+ "max" : "2147483647"
675
+ },
676
+ },
677
+ },
678
+ "access" : "noaccess",
679
+ "description" :
680
+ """An identifier used to distinguish between multiple
681
+ tunnels of the same encapsulation method, with the
682
+ same endpoints. If the encapsulation protocol only
683
+ allows one tunnel per set of endpoint addresses (such
684
+ as for GRE or IP-in-IP), the value of this object is
685
+ 1. For encapsulation methods (such as L2F) which
686
+ allow multiple parallel tunnels, the manager is
687
+ responsible for choosing any ID which does not
688
+
689
+
690
+
691
+ conflict with an existing row, such as choosing a
692
+ random number.""",
693
+ }, # column
694
+ "tunnelInetConfigIfIndex" : {
695
+ "nodetype" : "column",
696
+ "moduleName" : "TUNNEL-MIB",
697
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1.6",
698
+ "status" : "current",
699
+ "syntax" : {
700
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
701
+ },
702
+ "access" : "readonly",
703
+ "description" :
704
+ """If the value of tunnelInetConfigStatus for this row
705
+ is active, then this object contains the value of
706
+ ifIndex corresponding to the tunnel interface. A
707
+ value of 0 is not legal in the active state, and means
708
+ that the interface index has not yet been assigned.""",
709
+ }, # column
710
+ "tunnelInetConfigStatus" : {
711
+ "nodetype" : "column",
712
+ "moduleName" : "TUNNEL-MIB",
713
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1.7",
714
+ "status" : "current",
715
+ "syntax" : {
716
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
717
+ },
718
+ "access" : "readwrite",
719
+ "description" :
720
+ """The status of this row, by which new entries may be
721
+ created, or old entries deleted from this table. The
722
+ agent need not support setting this object to
723
+ createAndWait or notInService since there are no other
724
+ writable objects in this table, and writable objects
725
+ in rows of corresponding tables such as the
726
+ tunnelIfTable may be modified while this row is
727
+ active.
728
+
729
+ To create a row in this table for an encapsulation
730
+ method which does not support multiple parallel
731
+ tunnels with the same endpoints, the management
732
+ station should simply use a tunnelInetConfigID of 1,
733
+ and set tunnelInetConfigStatus to createAndGo. For
734
+ encapsulation methods such as L2F which allow multiple
735
+ parallel tunnels, the management station may select a
736
+ pseudo-random number to use as the tunnelInetConfigID
737
+ and set tunnelInetConfigStatus to createAndGo. In the
738
+ event that this ID is already in use and an
739
+ inconsistentValue is returned in response to the set
740
+ operation, the management station should simply select
741
+ a new pseudo-random number and retry the operation.
742
+
743
+ Creating a row in this table will cause an interface
744
+ index to be assigned by the agent in an
745
+ implementation-dependent manner, and corresponding
746
+ rows will be instantiated in the ifTable and the
747
+
748
+
749
+
750
+ tunnelIfTable. The status of this row will become
751
+ active as soon as the agent assigns the interface
752
+ index, regardless of whether the interface is
753
+ operationally up.
754
+
755
+ Deleting a row in this table will likewise delete the
756
+ corresponding row in the ifTable and in the
757
+ tunnelIfTable.""",
758
+ }, # column
759
+ "tunnelInetConfigStorageType" : {
760
+ "nodetype" : "column",
761
+ "moduleName" : "TUNNEL-MIB",
762
+ "oid" : "1.3.6.1.2.1.10.131.1.1.3.1.8",
763
+ "status" : "current",
764
+ "syntax" : {
765
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
766
+ },
767
+ "access" : "readwrite",
768
+ "description" :
769
+ """The storage type of this row. If the row is
770
+ permanent(4), no objects in the row need be writable.""",
771
+ }, # column
772
+ "tunnelMIBConformance" : {
773
+ "nodetype" : "node",
774
+ "moduleName" : "TUNNEL-MIB",
775
+ "oid" : "1.3.6.1.2.1.10.131.2",
776
+ }, # node
777
+ "tunnelMIBCompliances" : {
778
+ "nodetype" : "node",
779
+ "moduleName" : "TUNNEL-MIB",
780
+ "oid" : "1.3.6.1.2.1.10.131.2.1",
781
+ }, # node
782
+ "tunnelMIBGroups" : {
783
+ "nodetype" : "node",
784
+ "moduleName" : "TUNNEL-MIB",
785
+ "oid" : "1.3.6.1.2.1.10.131.2.2",
786
+ }, # node
787
+ }, # nodes
788
+
789
+ "groups" : {
790
+ "tunnelMIBBasicGroup" : {
791
+ "nodetype" : "group",
792
+ "moduleName" : "TUNNEL-MIB",
793
+ "oid" : "1.3.6.1.2.1.10.131.2.2.1",
794
+ "status" : "deprecated",
795
+ "members" : {
796
+ "tunnelIfLocalAddress" : {
797
+ "nodetype" : "member",
798
+ "module" : "TUNNEL-MIB"
799
+ },
800
+ "tunnelIfRemoteAddress" : {
801
+ "nodetype" : "member",
802
+ "module" : "TUNNEL-MIB"
803
+ },
804
+ "tunnelIfEncapsMethod" : {
805
+ "nodetype" : "member",
806
+ "module" : "TUNNEL-MIB"
807
+ },
808
+ "tunnelIfHopLimit" : {
809
+ "nodetype" : "member",
810
+ "module" : "TUNNEL-MIB"
811
+ },
812
+ "tunnelIfTOS" : {
813
+ "nodetype" : "member",
814
+ "module" : "TUNNEL-MIB"
815
+ },
816
+ "tunnelIfSecurity" : {
817
+ "nodetype" : "member",
818
+ "module" : "TUNNEL-MIB"
819
+ },
820
+ "tunnelConfigIfIndex" : {
821
+ "nodetype" : "member",
822
+ "module" : "TUNNEL-MIB"
823
+ },
824
+ "tunnelConfigStatus" : {
825
+ "nodetype" : "member",
826
+ "module" : "TUNNEL-MIB"
827
+ },
828
+ }, # members
829
+ "description" :
830
+ """A collection of objects to support basic management
831
+
832
+
833
+
834
+ of IPv4 Tunnels. Since this group cannot support
835
+ IPv6, it is deprecated in favor of
836
+ tunnelMIBInetGroup.""",
837
+ }, # group
838
+ "tunnelMIBInetGroup" : {
839
+ "nodetype" : "group",
840
+ "moduleName" : "TUNNEL-MIB",
841
+ "oid" : "1.3.6.1.2.1.10.131.2.2.2",
842
+ "status" : "current",
843
+ "members" : {
844
+ "tunnelIfAddressType" : {
845
+ "nodetype" : "member",
846
+ "module" : "TUNNEL-MIB"
847
+ },
848
+ "tunnelIfLocalInetAddress" : {
849
+ "nodetype" : "member",
850
+ "module" : "TUNNEL-MIB"
851
+ },
852
+ "tunnelIfRemoteInetAddress" : {
853
+ "nodetype" : "member",
854
+ "module" : "TUNNEL-MIB"
855
+ },
856
+ "tunnelIfEncapsMethod" : {
857
+ "nodetype" : "member",
858
+ "module" : "TUNNEL-MIB"
859
+ },
860
+ "tunnelIfEncapsLimit" : {
861
+ "nodetype" : "member",
862
+ "module" : "TUNNEL-MIB"
863
+ },
864
+ "tunnelIfHopLimit" : {
865
+ "nodetype" : "member",
866
+ "module" : "TUNNEL-MIB"
867
+ },
868
+ "tunnelIfTOS" : {
869
+ "nodetype" : "member",
870
+ "module" : "TUNNEL-MIB"
871
+ },
872
+ "tunnelIfFlowLabel" : {
873
+ "nodetype" : "member",
874
+ "module" : "TUNNEL-MIB"
875
+ },
876
+ "tunnelIfSecurity" : {
877
+ "nodetype" : "member",
878
+ "module" : "TUNNEL-MIB"
879
+ },
880
+ "tunnelInetConfigIfIndex" : {
881
+ "nodetype" : "member",
882
+ "module" : "TUNNEL-MIB"
883
+ },
884
+ "tunnelInetConfigStatus" : {
885
+ "nodetype" : "member",
886
+ "module" : "TUNNEL-MIB"
887
+ },
888
+ "tunnelInetConfigStorageType" : {
889
+ "nodetype" : "member",
890
+ "module" : "TUNNEL-MIB"
891
+ },
892
+ }, # members
893
+ "description" :
894
+ """A collection of objects to support basic management
895
+ of IPv4 and IPv6 Tunnels.""",
896
+ }, # group
897
+ }, # groups
898
+
899
+ "compliances" : {
900
+ "tunnelMIBCompliance" : {
901
+ "nodetype" : "compliance",
902
+ "moduleName" : "TUNNEL-MIB",
903
+ "oid" : "1.3.6.1.2.1.10.131.2.1.1",
904
+ "status" : "deprecated",
905
+ "description" :
906
+ """The (deprecated) IPv4-only compliance statement for
907
+ the IP Tunnel MIB.
908
+
909
+ This is deprecated in favor of
910
+ tunnelMIBInetFullCompliance and
911
+ tunnelMIBInetReadOnlyCompliance.""",
912
+ "requires" : {
913
+ "tunnelMIBBasicGroup" : {
914
+ "nodetype" : "mandatory",
915
+ "module" : "TUNNEL-MIB"
916
+ },
917
+ }, # requires
918
+ "refinements" : {
919
+ "tunnelIfHopLimit" : {
920
+ "module" : "TUNNEL-MIB",
921
+ "access" : "readonly",
922
+ "description" :
923
+ """Write access is not required.""",
924
+ },
925
+ "tunnelIfTOS" : {
926
+ "module" : "TUNNEL-MIB",
927
+ "access" : "readonly",
928
+ "description" :
929
+ """Write access is not required.""",
930
+ },
931
+ "tunnelConfigStatus" : {
932
+ "module" : "TUNNEL-MIB",
933
+ "access" : "readonly",
934
+ "description" :
935
+ """Write access is not required.""",
936
+ },
937
+ }, # refinements
938
+
939
+ }, # compliance
940
+ "tunnelMIBInetFullCompliance" : {
941
+ "nodetype" : "compliance",
942
+ "moduleName" : "TUNNEL-MIB",
943
+ "oid" : "1.3.6.1.2.1.10.131.2.1.2",
944
+ "status" : "current",
945
+ "description" :
946
+ """The full compliance statement for the IP Tunnel MIB.""",
947
+ "requires" : {
948
+ "tunnelMIBInetGroup" : {
949
+ "nodetype" : "mandatory",
950
+ "module" : "TUNNEL-MIB"
951
+ },
952
+ }, # requires
953
+ "refinements" : {
954
+ "tunnelIfAddressType" : {
955
+ "module" : "TUNNEL-MIB",
956
+ "syntax" : {
957
+ "type" : {
958
+ "basetype" : "Enumeration",
959
+ "parent module" : {
960
+ "name" : "INET-ADDRESS-MIB",
961
+ "type" : "InetAddressType",
962
+ },
963
+ "ipv4" : {
964
+ "nodetype" : "namednumber",
965
+ "number" : "1"
966
+ },
967
+ "ipv6" : {
968
+ "nodetype" : "namednumber",
969
+ "number" : "2"
970
+ },
971
+ "ipv4z" : {
972
+ "nodetype" : "namednumber",
973
+ "number" : "3"
974
+ },
975
+ "ipv6z" : {
976
+ "nodetype" : "namednumber",
977
+ "number" : "4"
978
+ },
979
+ },
980
+ }, # syntax
981
+ "description" :
982
+ """An implementation is only required to support IPv4
983
+ and/or IPv6 addresses. An implementation only needs to
984
+ support the addresses it actually supports on the
985
+ device.""",
986
+ },
987
+ }, # refinements
988
+
989
+ }, # compliance
990
+ "tunnelMIBInetReadOnlyCompliance" : {
991
+ "nodetype" : "compliance",
992
+ "moduleName" : "TUNNEL-MIB",
993
+ "oid" : "1.3.6.1.2.1.10.131.2.1.3",
994
+ "status" : "current",
995
+ "description" :
996
+ """The read-only compliance statement for the IP Tunnel
997
+ MIB.""",
998
+ "requires" : {
999
+ "tunnelMIBInetGroup" : {
1000
+ "nodetype" : "mandatory",
1001
+ "module" : "TUNNEL-MIB"
1002
+ },
1003
+ }, # requires
1004
+ "refinements" : {
1005
+ "tunnelIfHopLimit" : {
1006
+ "module" : "TUNNEL-MIB",
1007
+ "access" : "readonly",
1008
+ "description" :
1009
+ """Write access is not required.""",
1010
+ },
1011
+ "tunnelIfTOS" : {
1012
+ "module" : "TUNNEL-MIB",
1013
+ "access" : "readonly",
1014
+ "description" :
1015
+ """Write access is not required.""",
1016
+ },
1017
+ "tunnelIfFlowLabel" : {
1018
+ "module" : "TUNNEL-MIB",
1019
+ "access" : "readonly",
1020
+ "description" :
1021
+ """Write access is not required.""",
1022
+ },
1023
+ "tunnelIfAddressType" : {
1024
+ "module" : "TUNNEL-MIB",
1025
+ "syntax" : {
1026
+ "type" : {
1027
+ "basetype" : "Enumeration",
1028
+ "parent module" : {
1029
+ "name" : "INET-ADDRESS-MIB",
1030
+ "type" : "InetAddressType",
1031
+ },
1032
+ "ipv4" : {
1033
+ "nodetype" : "namednumber",
1034
+ "number" : "1"
1035
+ },
1036
+ "ipv6" : {
1037
+ "nodetype" : "namednumber",
1038
+ "number" : "2"
1039
+ },
1040
+ "ipv4z" : {
1041
+ "nodetype" : "namednumber",
1042
+ "number" : "3"
1043
+ },
1044
+ "ipv6z" : {
1045
+ "nodetype" : "namednumber",
1046
+ "number" : "4"
1047
+ },
1048
+ },
1049
+ }, # syntax
1050
+ "access" : "readonly",
1051
+ "description" :
1052
+ """Write access is not required.
1053
+
1054
+ An implementation is only required to support IPv4
1055
+ and/or IPv6 addresses. An implementation only needs to
1056
+ support the addresses it actually supports on the
1057
+ device.""",
1058
+ },
1059
+ "tunnelIfLocalInetAddress" : {
1060
+ "module" : "TUNNEL-MIB",
1061
+ "access" : "readonly",
1062
+ "description" :
1063
+ """Write access is not required.""",
1064
+ },
1065
+ "tunnelIfRemoteInetAddress" : {
1066
+ "module" : "TUNNEL-MIB",
1067
+ "access" : "readonly",
1068
+ "description" :
1069
+ """Write access is not required.""",
1070
+ },
1071
+ "tunnelIfEncapsLimit" : {
1072
+ "module" : "TUNNEL-MIB",
1073
+ "access" : "readonly",
1074
+ "description" :
1075
+ """Write access is not required.""",
1076
+ },
1077
+ "tunnelInetConfigStatus" : {
1078
+ "module" : "TUNNEL-MIB",
1079
+ "access" : "readonly",
1080
+ "description" :
1081
+ """Write access is not required, and active is the only
1082
+ status that needs to be supported.""",
1083
+ },
1084
+ "tunnelInetConfigStorageType" : {
1085
+ "module" : "TUNNEL-MIB",
1086
+ "access" : "readonly",
1087
+ "description" :
1088
+ """Write access is not required.""",
1089
+ },
1090
+ }, # refinements
1091
+
1092
+ }, # compliance
1093
+ }, # compliances
1094
+
1095
+ }