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,828 @@
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 MIOX25-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MIOX25-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MIOX25-MIB",
11
+
12
+ "MIOX25-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv1",
15
+ },
16
+
17
+ "imports" : (
18
+ {"module" : "RFC1155-SMI", "name" : "Counter"},
19
+ {"module" : "RFC1155-SMI", "name" : "TimeTicks"},
20
+ {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
21
+ {"module" : "RFC1213-MIB", "name" : "DisplayString"},
22
+ {"module" : "RFC1213-MIB", "name" : "transmission"},
23
+ {"module" : "RFC1213-MIB", "name" : "ifIndex"},
24
+ {"module" : "RFC1316-MIB", "name" : "InstancePointer"},
25
+ {"module" : "RFC1382-MIB", "name" : "X121Address"},
26
+ {"module" : "RFC1381-MIB", "name" : "PositiveInteger"},
27
+ ),
28
+
29
+ "nodes" : {
30
+ "miox" : {
31
+ "nodetype" : "node",
32
+ "moduleName" : "MIOX25-MIB",
33
+ "oid" : "1.3.6.1.2.1.10.38",
34
+ }, # node
35
+ "mioxPle" : {
36
+ "nodetype" : "node",
37
+ "moduleName" : "MIOX25-MIB",
38
+ "oid" : "1.3.6.1.2.1.10.38.1",
39
+ }, # node
40
+ "mioxPleTable" : {
41
+ "nodetype" : "table",
42
+ "moduleName" : "MIOX25-MIB",
43
+ "oid" : "1.3.6.1.2.1.10.38.1.1",
44
+ "status" : "current",
45
+ "description" :
46
+ """This table contains information relative to
47
+ an interface to an X.25 Packet Level Entity
48
+ (PLE).""",
49
+ }, # table
50
+ "mioxPleEntry" : {
51
+ "nodetype" : "row",
52
+ "moduleName" : "MIOX25-MIB",
53
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1",
54
+ "status" : "current",
55
+ "linkage" : [
56
+ "ifIndex",
57
+ ],
58
+ "description" :
59
+ """These objects manage the encapsulation of
60
+ other protocols within X.25.""",
61
+ }, # row
62
+ "mioxPleMaxCircuits" : {
63
+ "nodetype" : "column",
64
+ "moduleName" : "MIOX25-MIB",
65
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.1",
66
+ "status" : "current",
67
+ "syntax" : {
68
+ "type" : {
69
+ "basetype" : "Integer32",
70
+ "ranges" : [
71
+ {
72
+ "min" : "0",
73
+ "max" : "2147483647"
74
+ },
75
+ ],
76
+ "range" : {
77
+ "min" : "0",
78
+ "max" : "2147483647"
79
+ },
80
+ },
81
+ },
82
+ "access" : "readwrite",
83
+ "description" :
84
+ """The maximum number of X.25 circuits that
85
+ can be open at one time for this interface.
86
+ A value of zero indicates the interface will
87
+ not allow any additional circuits (as it may
88
+ soon be shutdown). A value of 2147483647
89
+ allows an unlimited number of circuits.""",
90
+ }, # column
91
+ "mioxPleRefusedConnections" : {
92
+ "nodetype" : "column",
93
+ "moduleName" : "MIOX25-MIB",
94
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.2",
95
+ "status" : "current",
96
+ "syntax" : {
97
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
98
+ },
99
+ "access" : "readonly",
100
+ "description" :
101
+ """The number of X.25 calls from a remote
102
+ systems to this system that were cleared by
103
+ this system. The interface instance should
104
+ identify the X.25 interface the call came in
105
+ on.""",
106
+ }, # column
107
+ "mioxPleEnAddrToX121LkupFlrs" : {
108
+ "nodetype" : "column",
109
+ "moduleName" : "MIOX25-MIB",
110
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.3",
111
+ "status" : "current",
112
+ "syntax" : {
113
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
114
+ },
115
+ "access" : "readonly",
116
+ "description" :
117
+ """The number of times a translation from an
118
+ Encapsulated Address to an X.121 address
119
+ failed to find a corresponding X.121
120
+ address. Encapsulated addresses can be
121
+ looked up in the mioxPeerTable or translated
122
+ via an algorithm as for the DDN. Addresses
123
+ that are successfully recognized do not
124
+ increment this counter. Addresses that are
125
+ not recognized (reflecting an abnormal
126
+ packet delivery condition) increment this
127
+ counter.
128
+
129
+ If an address translation fails, it may be
130
+ difficult to determine which PLE entry
131
+ should count the failure. In such cases the
132
+ first likely entry in this table should be
133
+ selected. Agents should record the failure
134
+ even if they are unsure which PLE should be
135
+ associated with the failure.""",
136
+ }, # column
137
+ "mioxPleLastFailedEnAddr" : {
138
+ "nodetype" : "column",
139
+ "moduleName" : "MIOX25-MIB",
140
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.4",
141
+ "status" : "current",
142
+ "syntax" : {
143
+ "type" : {
144
+ "basetype" : "OctetString",
145
+ "ranges" : [
146
+ {
147
+ "min" : "2",
148
+ "max" : "128"
149
+ },
150
+ ],
151
+ "range" : {
152
+ "min" : "2",
153
+ "max" : "128"
154
+ },
155
+ },
156
+ },
157
+ "access" : "readonly",
158
+ "description" :
159
+ """The last Encapsulated address that failed
160
+ to find a corresponding X.121 address and
161
+ caused mioxPleEnAddrToX121LkupFlrs to be
162
+ incremented. The first octet of this object
163
+ contains the encapsulation type, the
164
+ remaining octets contain the address of that
165
+ type that failed. Thus for an IP address,
166
+ the length will be five octets, the first
167
+ octet will contain 204 (hex CC), and the
168
+ last four octets will contain the IP
169
+ address. For a snap encapsulation, the
170
+ first byte would be 128 (hex 80) and the
171
+ rest of the octet string would have the snap
172
+ header.""",
173
+ }, # column
174
+ "mioxPleEnAddrToX121LkupFlrTime" : {
175
+ "nodetype" : "column",
176
+ "moduleName" : "MIOX25-MIB",
177
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.5",
178
+ "status" : "current",
179
+ "syntax" : {
180
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
181
+ },
182
+ "access" : "readonly",
183
+ "description" :
184
+ """The most recent value of sysUpTime when the
185
+ translation from an Encapsulated Address to
186
+ X.121 address failed to find a corresponding
187
+ X.121 address.""",
188
+ }, # column
189
+ "mioxPleX121ToEnAddrLkupFlrs" : {
190
+ "nodetype" : "column",
191
+ "moduleName" : "MIOX25-MIB",
192
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.6",
193
+ "status" : "current",
194
+ "syntax" : {
195
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
196
+ },
197
+ "access" : "readonly",
198
+ "description" :
199
+ """The number of times the translation from an
200
+ X.121 address to an Encapsulated Address
201
+ failed to find a corresponding Encapsulated
202
+ Address. Addresses successfully recognized
203
+ by an algorithm do not increment this
204
+ counter. This counter reflects the number
205
+ of times call acceptance encountered the
206
+ abnormal condition of not recognizing the
207
+ peer.""",
208
+ }, # column
209
+ "mioxPleLastFailedX121Address" : {
210
+ "nodetype" : "column",
211
+ "moduleName" : "MIOX25-MIB",
212
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.7",
213
+ "status" : "current",
214
+ "syntax" : {
215
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
216
+ },
217
+ "access" : "readonly",
218
+ "description" :
219
+ """The last X.121 address that caused
220
+ mioxPleX121ToEnAddrLkupFlrs to increase.""",
221
+ }, # column
222
+ "mioxPleX121ToEnAddrLkupFlrTime" : {
223
+ "nodetype" : "column",
224
+ "moduleName" : "MIOX25-MIB",
225
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.8",
226
+ "status" : "current",
227
+ "syntax" : {
228
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
229
+ },
230
+ "access" : "readonly",
231
+ "description" :
232
+ """The most recent value of sysUpTime when the
233
+ translation from an X.121 address to an
234
+ Encapsulated Address failed to find a
235
+ corresponding Encapsulated Address.""",
236
+ }, # column
237
+ "mioxPleQbitFailures" : {
238
+ "nodetype" : "column",
239
+ "moduleName" : "MIOX25-MIB",
240
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.9",
241
+ "status" : "current",
242
+ "syntax" : {
243
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
244
+ },
245
+ "access" : "readonly",
246
+ "description" :
247
+ """The number of times a connection was closed
248
+ because of a Q-bit failure.""",
249
+ }, # column
250
+ "mioxPleQbitFailureRemoteAddress" : {
251
+ "nodetype" : "column",
252
+ "moduleName" : "MIOX25-MIB",
253
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.10",
254
+ "status" : "current",
255
+ "syntax" : {
256
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
257
+ },
258
+ "access" : "readonly",
259
+ "description" :
260
+ """The remote address of the most recent
261
+ (last) connection that was closed because of
262
+ a Q-bit failure.""",
263
+ }, # column
264
+ "mioxPleQbitFailureTime" : {
265
+ "nodetype" : "column",
266
+ "moduleName" : "MIOX25-MIB",
267
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.11",
268
+ "status" : "current",
269
+ "syntax" : {
270
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
271
+ },
272
+ "access" : "readonly",
273
+ "description" :
274
+ """The most recent value of sysUpTime when a
275
+ connection was closed because of a Q-bit
276
+ failure. This will also be the last time
277
+ that mioxPleQbitFailures was incremented.""",
278
+ }, # column
279
+ "mioxPleMinimumOpenTimer" : {
280
+ "nodetype" : "column",
281
+ "moduleName" : "MIOX25-MIB",
282
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.12",
283
+ "status" : "current",
284
+ "syntax" : {
285
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
286
+ },
287
+ "access" : "readwrite",
288
+ "default" : "0",
289
+ "description" :
290
+ """The minimum time in milliseconds this
291
+ interface will keep a connection open before
292
+ allowing it to be closed. A value of zero
293
+ indicates no timer.""",
294
+ }, # column
295
+ "mioxPleInactivityTimer" : {
296
+ "nodetype" : "column",
297
+ "moduleName" : "MIOX25-MIB",
298
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.13",
299
+ "status" : "current",
300
+ "syntax" : {
301
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
302
+ },
303
+ "access" : "readwrite",
304
+ "default" : "10000",
305
+ "description" :
306
+ """The amount of time time in milliseconds
307
+ this interface will keep an idle connection
308
+ open before closing it. A value of
309
+ 2147483647 indicates no timer.""",
310
+ }, # column
311
+ "mioxPleHoldDownTimer" : {
312
+ "nodetype" : "column",
313
+ "moduleName" : "MIOX25-MIB",
314
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.14",
315
+ "status" : "current",
316
+ "syntax" : {
317
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
318
+ },
319
+ "access" : "readwrite",
320
+ "default" : "0",
321
+ "description" :
322
+ """The hold down timer in milliseconds. This
323
+ is the minimum amount of time to wait before
324
+ trying another call to a host that was
325
+ previously unsuccessful. A value of
326
+ 2147483647 indicates the host will not be
327
+ retried.""",
328
+ }, # column
329
+ "mioxPleCollisionRetryTimer" : {
330
+ "nodetype" : "column",
331
+ "moduleName" : "MIOX25-MIB",
332
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.15",
333
+ "status" : "current",
334
+ "syntax" : {
335
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
336
+ },
337
+ "access" : "readwrite",
338
+ "default" : "0",
339
+ "description" :
340
+ """The Collision Retry Timer in milliseconds.
341
+ The time to delay between call attempts when
342
+ the maximum number of circuits is exceeded
343
+ in a call attempt.""",
344
+ }, # column
345
+ "mioxPleDefaultPeerId" : {
346
+ "nodetype" : "column",
347
+ "moduleName" : "MIOX25-MIB",
348
+ "oid" : "1.3.6.1.2.1.10.38.1.1.1.16",
349
+ "status" : "current",
350
+ "syntax" : {
351
+ "type" : { "module" :"RFC1316-MIB", "name" : "InstancePointer"},
352
+ },
353
+ "access" : "readwrite",
354
+ "description" :
355
+ """This identifies the instance of the index
356
+ in the mioxPeerTable for the default
357
+ parameters to use with this interface.
358
+
359
+ The entry identified by this object may have
360
+ a zero length Encapsulation address and a
361
+ zero length X.121 address.
362
+
363
+ These default parameters are used with
364
+ connections to hosts that do not have
365
+ entries in the mioxPeerTable. Such
366
+ connections occur when using ddn-x25 IP-X.25
367
+ address mapping or when accepting
368
+ connections from other hosts not in the
369
+ mioxPeerTable.
370
+
371
+ The mioxPeerEncTable entry with the same
372
+ index as the mioxPeerTable entry specifies
373
+ the call encapsulation types this PLE will
374
+ accept for peers not in the mioxPeerTable.
375
+ If the mioxPeerEncTable doesn't contain any
376
+ entries, this PLE will not accept calls from
377
+ entries not in the mioxPeerTable.""",
378
+ }, # column
379
+ "mioxPeer" : {
380
+ "nodetype" : "node",
381
+ "moduleName" : "MIOX25-MIB",
382
+ "oid" : "1.3.6.1.2.1.10.38.2",
383
+ }, # node
384
+ "mioxPeerTable" : {
385
+ "nodetype" : "table",
386
+ "moduleName" : "MIOX25-MIB",
387
+ "oid" : "1.3.6.1.2.1.10.38.2.1",
388
+ "status" : "current",
389
+ "description" :
390
+ """This table contains information about the
391
+ possible peers this machine may exchange
392
+ packets with.""",
393
+ }, # table
394
+ "mioxPeerEntry" : {
395
+ "nodetype" : "row",
396
+ "moduleName" : "MIOX25-MIB",
397
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1",
398
+ "status" : "current",
399
+ "linkage" : [
400
+ "mioxPeerIndex",
401
+ ],
402
+ "description" :
403
+ """Per peer information.""",
404
+ }, # row
405
+ "mioxPeerIndex" : {
406
+ "nodetype" : "column",
407
+ "moduleName" : "MIOX25-MIB",
408
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.1",
409
+ "status" : "current",
410
+ "syntax" : {
411
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
412
+ },
413
+ "access" : "readonly",
414
+ "description" :
415
+ """An index value that distinguished one entry
416
+ from another. This index is independent of
417
+ any other index.""",
418
+ }, # column
419
+ "mioxPeerStatus" : {
420
+ "nodetype" : "column",
421
+ "moduleName" : "MIOX25-MIB",
422
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.2",
423
+ "status" : "current",
424
+ "syntax" : {
425
+ "type" : {
426
+ "basetype" : "Enumeration",
427
+ "valid" : {
428
+ "nodetype" : "namednumber",
429
+ "number" : "1"
430
+ },
431
+ "createRequest" : {
432
+ "nodetype" : "namednumber",
433
+ "number" : "2"
434
+ },
435
+ "underCreation" : {
436
+ "nodetype" : "namednumber",
437
+ "number" : "3"
438
+ },
439
+ "invalid" : {
440
+ "nodetype" : "namednumber",
441
+ "number" : "4"
442
+ },
443
+ "clearCall" : {
444
+ "nodetype" : "namednumber",
445
+ "number" : "5"
446
+ },
447
+ "makeCall" : {
448
+ "nodetype" : "namednumber",
449
+ "number" : "6"
450
+ },
451
+ },
452
+ },
453
+ "access" : "readwrite",
454
+ "description" :
455
+ """This reports the status of a peer entry.
456
+ A value of valid indicates a normal entry
457
+ that is in use by the agent. A value of
458
+ underCreation indicates a newly created
459
+ entry which isn't yet in use because the
460
+ creating management station is still setting
461
+ values.
462
+
463
+ The value of invalid indicates the entry is
464
+ no longer in use and the agent is free to
465
+ delete the entry at any time. A management
466
+ station is also free to use an entry in the
467
+ invalid state.
468
+
469
+ Entries are created by setting a value of
470
+ createRequest. Only non-existent or invalid
471
+ entries can be set to createRequest. Upon
472
+ receiving a valid createRequest, the agent
473
+ will create an entry in the underCreation
474
+ state. This object can not be set to a
475
+ value of underCreation directly, entries can
476
+ only be created by setting a value of
477
+ createRequest. Entries that exist in other
478
+ than the invalid state can not be set to
479
+ createRequest.
480
+
481
+ Entries with a value of underCreation are
482
+ not used by the system and the management
483
+ station can change the values of other
484
+ objects in the table entry. Management
485
+ stations should also remember to configure
486
+ values in the mioxPeerEncTable with the same
487
+ peer index value as this peer entry.
488
+
489
+ An entry in the underCreation state can be
490
+ set to valid or invalid. Entries in the
491
+ underCreation state will stay in that state
492
+ until 1) the agent times them out, 2) they
493
+ are set to valid, 3) they are set to
494
+ invalid. If an agent notices an entry has
495
+ been in the underCreation state for an
496
+ abnormally long time, it may decide the
497
+ management station has failed and invalidate
498
+ the entry. A prudent agent will understand
499
+ that the management station may need to wait
500
+ for human input and will allow for that
501
+ possibility in its determination of this
502
+ abnormally long period.
503
+
504
+ Once a management station has completed all
505
+ fields of an entry, it will set a value of
506
+ valid. This causes the entry to be
507
+ activated.
508
+
509
+ Entries in the valid state may also be set
510
+ to makeCall or clearCall to make or clear
511
+ X.25 calls to the peer. After such a set
512
+ request the entry will still be in the valid
513
+ state. Setting a value of makeCall causes
514
+ the agent to initiate an X.25 call request
515
+ to the peer specified by the entry. Setting
516
+ a value of clearCall causes the agent to
517
+ initiate clearing one X.25 call present to
518
+ the peer. Each set request will initiate
519
+ another call or clear request (up to the
520
+ maximum allowed); this means that management
521
+ stations that fail to get a response to a
522
+ set request should query to see if a call
523
+ was in fact placed or cleared before
524
+ retrying the request. Entries not in the
525
+ valid state can not be set to makeCall or
526
+ clearCall.
527
+
528
+ The values of makeCall and clearCall provide
529
+ for circuit control on devices which perform
530
+ Ethernet Bridging using static circuit
531
+ assignment without address recognition;
532
+ other devices which dynamically place calls
533
+ based on destination addresses may reject
534
+ such requests.
535
+
536
+ An agent that (re)creates a new entry
537
+ because of a set with createRequest, should
538
+ also (re)create a mioxPeerEncTable entry
539
+ with a mioxPeerEncIndex of 1, and a
540
+ mioxPeerEncType of 204 (hex CC).""",
541
+ }, # column
542
+ "mioxPeerMaxCircuits" : {
543
+ "nodetype" : "column",
544
+ "moduleName" : "MIOX25-MIB",
545
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.3",
546
+ "status" : "current",
547
+ "syntax" : {
548
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
549
+ },
550
+ "access" : "readwrite",
551
+ "default" : "1",
552
+ "description" :
553
+ """The maximum number of X.25 circuits allowed
554
+ to this peer.""",
555
+ }, # column
556
+ "mioxPeerIfIndex" : {
557
+ "nodetype" : "column",
558
+ "moduleName" : "MIOX25-MIB",
559
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.4",
560
+ "status" : "current",
561
+ "syntax" : {
562
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
563
+ },
564
+ "access" : "readwrite",
565
+ "default" : "1",
566
+ "description" :
567
+ """The value of the ifIndex object for the
568
+ interface to X.25 to use to call the peer.""",
569
+ }, # column
570
+ "mioxPeerConnectSeconds" : {
571
+ "nodetype" : "column",
572
+ "moduleName" : "MIOX25-MIB",
573
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.5",
574
+ "status" : "current",
575
+ "syntax" : {
576
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
577
+ },
578
+ "access" : "readonly",
579
+ "description" :
580
+ """The number of seconds a call to this peer
581
+ was active. This counter will be
582
+ incremented by one for every second a
583
+ connection to a peer was open. If two calls
584
+ are open at the same time, one second of
585
+ elapsed real time will results in two
586
+ seconds of connect time.""",
587
+ }, # column
588
+ "mioxPeerX25CallParamId" : {
589
+ "nodetype" : "column",
590
+ "moduleName" : "MIOX25-MIB",
591
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.6",
592
+ "status" : "current",
593
+ "syntax" : {
594
+ "type" : { "module" :"RFC1316-MIB", "name" : "InstancePointer"},
595
+ },
596
+ "access" : "readwrite",
597
+ "default" : "0.0",
598
+ "description" :
599
+ """The instance of the index object in the
600
+ x25CallParmTable from RFC 1382 for the X.25
601
+ call parameters used to communicate with the
602
+ remote host. The well known value {0 0}
603
+ indicates no call parameters specified.""",
604
+ }, # column
605
+ "mioxPeerEnAddr" : {
606
+ "nodetype" : "column",
607
+ "moduleName" : "MIOX25-MIB",
608
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.7",
609
+ "status" : "current",
610
+ "syntax" : {
611
+ "type" : {
612
+ "basetype" : "OctetString",
613
+ "ranges" : [
614
+ {
615
+ "min" : "0",
616
+ "max" : "128"
617
+ },
618
+ ],
619
+ "range" : {
620
+ "min" : "0",
621
+ "max" : "128"
622
+ },
623
+ },
624
+ },
625
+ "access" : "readwrite",
626
+ "default" : "",
627
+ "description" :
628
+ """The Encapsulation address of the remote
629
+ host mapped by this table entry. A length
630
+ of zero indicates the remote IP address is
631
+ unknown or unspecified for use as a PLE
632
+ default.
633
+
634
+ The first octet of this object contains the
635
+ encapsulation type, the remaining octets
636
+ contain an address of that type. Thus for
637
+ an IP address, the length will be five
638
+ octets, the first octet will contain 204
639
+ (hex CC), and the last four octets will
640
+ contain the IP address. For a snap
641
+ encapsulation, the first byte would be 128
642
+ (hex 80) and the rest of the octet string
643
+ would have the snap header.""",
644
+ }, # column
645
+ "mioxPeerX121Address" : {
646
+ "nodetype" : "column",
647
+ "moduleName" : "MIOX25-MIB",
648
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.8",
649
+ "status" : "current",
650
+ "syntax" : {
651
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
652
+ },
653
+ "access" : "readwrite",
654
+ "default" : "",
655
+ "description" :
656
+ """The X.25 address of the remote host mapped
657
+ by this table entry. A zero length string
658
+ indicates the X.25 address is unspecified
659
+ for use as the PLE default.""",
660
+ }, # column
661
+ "mioxPeerX25CircuitId" : {
662
+ "nodetype" : "column",
663
+ "moduleName" : "MIOX25-MIB",
664
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.9",
665
+ "status" : "current",
666
+ "syntax" : {
667
+ "type" : { "module" :"RFC1316-MIB", "name" : "InstancePointer"},
668
+ },
669
+ "access" : "readwrite",
670
+ "default" : "0.0",
671
+ "description" :
672
+ """This object identifies the instance of the
673
+ index for the X.25 circuit open to the peer
674
+ mapped by this table entry. The well known
675
+ value {0 0} indicates no connection
676
+ currently active. For multiple connections,
677
+ this identifies the index of a multiplexing
678
+ table entry for the connections. This can
679
+ only be written to configure use of PVCs
680
+ which means the identified circuit table
681
+ entry for a write must be a PVC.""",
682
+ }, # column
683
+ "mioxPeerDescr" : {
684
+ "nodetype" : "column",
685
+ "moduleName" : "MIOX25-MIB",
686
+ "oid" : "1.3.6.1.2.1.10.38.2.1.1.10",
687
+ "status" : "current",
688
+ "syntax" : {
689
+ "type" : {
690
+ "basetype" : "OctetString",
691
+ "parent module" : {
692
+ "name" : "RFC1213-MIB",
693
+ "type" : "DisplayString",
694
+ },
695
+ "ranges" : [
696
+ {
697
+ "min" : "0",
698
+ "max" : "255"
699
+ },
700
+ ],
701
+ "range" : {
702
+ "min" : "0",
703
+ "max" : "255"
704
+ },
705
+ },
706
+ },
707
+ "access" : "readwrite",
708
+ "default" : "",
709
+ "description" :
710
+ """This object returns any identification
711
+ information about the peer. An agent may
712
+ supply the comment information found in the
713
+ configuration file entry for this peer. A
714
+ zero length string indicates no information
715
+ available.""",
716
+ }, # column
717
+ "mioxPeerEncTable" : {
718
+ "nodetype" : "table",
719
+ "moduleName" : "MIOX25-MIB",
720
+ "oid" : "1.3.6.1.2.1.10.38.2.2",
721
+ "status" : "current",
722
+ "description" :
723
+ """This table contains the list of
724
+ encapsulations used to communicate with a
725
+ peer. This table has two indexes, the first
726
+ identifies the peer, the second
727
+ distinguishes encapsulation types.
728
+
729
+ The first index identifies the corresponding
730
+ entry in the mioxPeerTable. The second
731
+ index gives the priority of the different
732
+ encapsulations.
733
+
734
+ The encapsulation types are ordered in
735
+ priority order. For calling a peer, the
736
+ first entry (mioxPeerEncIndex of 1) is tried
737
+ first. If the call doesn't succeed because
738
+ the remote host clears the call due to
739
+ incompatible call user data, the next entry
740
+ in the list is tried. Each entry is tried
741
+ until the list is exhausted.
742
+
743
+ For answering a call, the encapsulation type
744
+ requested by the peer must be found the list
745
+ or the call will be refused. If there are
746
+ no entries in this table for a peer, all
747
+ call requests from the peer will be refused.
748
+
749
+ Objects in this table can only be set when
750
+ the mioxPeerStatus object with the same
751
+ index has a value of underCreation. When
752
+ that status object is set to invalid and
753
+ deleted, the entry in this table with that
754
+ peer index must also be deleted.""",
755
+ }, # table
756
+ "mioxPeerEncEntry" : {
757
+ "nodetype" : "row",
758
+ "moduleName" : "MIOX25-MIB",
759
+ "oid" : "1.3.6.1.2.1.10.38.2.2.1",
760
+ "status" : "current",
761
+ "linkage" : [
762
+ "mioxPeerIndex",
763
+ "mioxPeerEncIndex",
764
+ ],
765
+ "description" :
766
+ """Per connection information.""",
767
+ }, # row
768
+ "mioxPeerEncIndex" : {
769
+ "nodetype" : "column",
770
+ "moduleName" : "MIOX25-MIB",
771
+ "oid" : "1.3.6.1.2.1.10.38.2.2.1.1",
772
+ "status" : "current",
773
+ "syntax" : {
774
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
775
+ },
776
+ "access" : "readonly",
777
+ "description" :
778
+ """The second index in the table which
779
+ distinguishes different encapsulation
780
+ types.""",
781
+ }, # column
782
+ "mioxPeerEncType" : {
783
+ "nodetype" : "column",
784
+ "moduleName" : "MIOX25-MIB",
785
+ "oid" : "1.3.6.1.2.1.10.38.2.2.1.2",
786
+ "status" : "current",
787
+ "syntax" : {
788
+ "type" : {
789
+ "basetype" : "Integer32",
790
+ "ranges" : [
791
+ {
792
+ "min" : "0",
793
+ "max" : "256"
794
+ },
795
+ ],
796
+ "range" : {
797
+ "min" : "0",
798
+ "max" : "256"
799
+ },
800
+ },
801
+ },
802
+ "access" : "readwrite",
803
+ "description" :
804
+ """The value of the encapsulation type. For
805
+ IP encapsulation this will have a value of
806
+ 204 (hex CC). For SNAP encapsulated
807
+ packets, this will have a value of 128 (hex
808
+ 80). For CLNP, ISO 8473, this will have a
809
+ value of 129 (hex 81). For ES-ES, ISO 9542,
810
+ this will have a value of 130 (hex 82). A
811
+ value of 197 (hex C5) identifies the Blacker
812
+ X.25 encapsulation. A value of 0,
813
+ identifies the Null encapsulation.
814
+
815
+ This value can only be written when the
816
+ mioxPeerStatus object with the same
817
+ mioxPeerIndex has a value of underCreation.
818
+ Setting this object to a value of 256
819
+ deletes the entry. When deleting an entry,
820
+ all other entries in the mioxPeerEncTable
821
+ with the same mioxPeerIndex and with an
822
+ mioxPeerEncIndex higher then the deleted
823
+ entry, will all have their mioxPeerEncIndex
824
+ values decremented by one.""",
825
+ }, # column
826
+ }, # nodes
827
+
828
+ }