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,704 @@
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 UDPLITE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/UDPLITE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "UDPLITE-MIB",
11
+
12
+ "UDPLITE-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF TSV Working Group (TSVWG)""",
17
+ "contact" :
18
+ """IETF TSV Working Group
19
+ http://www.ietf.org/html.charters/tsvwg-charter.html
20
+ Mailing List: tsvwg@ietf.org
21
+
22
+
23
+
24
+
25
+ Gerrit Renker, Godred Fairhurst
26
+ Electronics Research Group
27
+ School of Engineering, University of Aberdeen
28
+ Fraser Noble Building, Aberdeen AB24 3UE, UK""",
29
+ "description" :
30
+ """The MIB module for managing UDP-Lite implementations.
31
+ Copyright (C) The IETF Trust (2008). This version of
32
+ this MIB module is part of RFC 5097; see the RFC
33
+ itself for full legal notices.""",
34
+ "revisions" : (
35
+ {
36
+ "date" : "2007-12-18 00:00",
37
+ "description" :
38
+ """Initial SMIv2 revision, based on the format of the UDP
39
+ MIB module (RFC 4113) and published as RFC 5097.""",
40
+ },
41
+ ),
42
+ "identity node" : "udpliteMIB",
43
+ },
44
+
45
+ "imports" : (
46
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
47
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
48
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
51
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
52
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
53
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
54
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
55
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
56
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
57
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
58
+ ),
59
+
60
+ "nodes" : {
61
+ "udpliteMIB" : {
62
+ "nodetype" : "node",
63
+ "moduleName" : "UDPLITE-MIB",
64
+ "oid" : "1.3.6.1.2.1.170",
65
+ "status" : "current",
66
+ }, # node
67
+ "udplite" : {
68
+ "nodetype" : "node",
69
+ "moduleName" : "UDPLITE-MIB",
70
+ "oid" : "1.3.6.1.2.1.170.1",
71
+ }, # node
72
+ "udpliteInDatagrams" : {
73
+ "nodetype" : "scalar",
74
+ "moduleName" : "UDPLITE-MIB",
75
+ "oid" : "1.3.6.1.2.1.170.1.1",
76
+ "status" : "current",
77
+ "syntax" : {
78
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
79
+ },
80
+ "access" : "readonly",
81
+ "description" :
82
+ """The total number of UDP-Lite datagrams that were
83
+ delivered to UDP-Lite users.
84
+ Discontinuities in the value of this counter can occur
85
+ at re-initialisation of the management system, and at
86
+ other times as indicated by the value of
87
+ udpliteStatsDiscontinuityTime.""",
88
+ }, # scalar
89
+ "udpliteInPartialCov" : {
90
+ "nodetype" : "scalar",
91
+ "moduleName" : "UDPLITE-MIB",
92
+ "oid" : "1.3.6.1.2.1.170.1.2",
93
+ "status" : "current",
94
+ "syntax" : {
95
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
96
+ },
97
+ "access" : "readonly",
98
+ "description" :
99
+ """The total number of UDP-Lite datagrams that were
100
+ delivered to UDP-Lite users (applications) and whose
101
+ checksum coverage was strictly less than the datagram
102
+ length.
103
+ Discontinuities in the value of this counter can occur
104
+ at re-initialisation of the management system, and at
105
+ other times as indicated by the value of
106
+ udpliteStatsDiscontinuityTime.""",
107
+ }, # scalar
108
+ "udpliteNoPorts" : {
109
+ "nodetype" : "scalar",
110
+ "moduleName" : "UDPLITE-MIB",
111
+ "oid" : "1.3.6.1.2.1.170.1.3",
112
+ "status" : "current",
113
+ "syntax" : {
114
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
115
+ },
116
+ "access" : "readonly",
117
+ "description" :
118
+ """The total number of received UDP-Lite datagrams for
119
+ which there was no listener at the destination port.
120
+ Discontinuities in the value of this counter can occur
121
+ at re-initialisation of the management system, and at
122
+ other times as indicated by the value of
123
+ udpliteStatsDiscontinuityTime.""",
124
+ }, # scalar
125
+ "udpliteInErrors" : {
126
+ "nodetype" : "scalar",
127
+ "moduleName" : "UDPLITE-MIB",
128
+ "oid" : "1.3.6.1.2.1.170.1.4",
129
+ "status" : "current",
130
+ "syntax" : {
131
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
132
+ },
133
+ "access" : "readonly",
134
+ "description" :
135
+ """The number of received UDP-Lite datagrams that could not
136
+ be delivered for reasons other than the lack of an
137
+ application at the destination port.
138
+ Discontinuities in the value of this counter can occur
139
+ at re-initialisation of the management system, and at
140
+ other times as indicated by the value of
141
+ udpliteStatsDiscontinuityTime.""",
142
+ }, # scalar
143
+ "udpliteInBadChecksum" : {
144
+ "nodetype" : "scalar",
145
+ "moduleName" : "UDPLITE-MIB",
146
+ "oid" : "1.3.6.1.2.1.170.1.5",
147
+ "status" : "current",
148
+ "syntax" : {
149
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
150
+ },
151
+ "access" : "readonly",
152
+ "description" :
153
+ """The number of received UDP-Lite datagrams whose checksum
154
+ could not be validated. This includes illegal checksum
155
+ coverage values, as their use would lead to incorrect
156
+ checksums.
157
+ Discontinuities in the value of this counter can occur
158
+ at re-initialisation of the management system, and at
159
+ other times as indicated by the value of
160
+ udpliteStatsDiscontinuityTime.""",
161
+ "reference" :
162
+ """RFC 3828, section 3.1""",
163
+ }, # scalar
164
+ "udpliteOutDatagrams" : {
165
+ "nodetype" : "scalar",
166
+ "moduleName" : "UDPLITE-MIB",
167
+ "oid" : "1.3.6.1.2.1.170.1.6",
168
+ "status" : "current",
169
+ "syntax" : {
170
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
171
+ },
172
+ "access" : "readonly",
173
+ "description" :
174
+ """The total number of UDP-Lite datagrams sent from this
175
+ entity.
176
+ Discontinuities in the value of this counter can occur
177
+ at re-initialisation of the management system, and at
178
+ other times as indicated by the value of
179
+ udpliteStatsDiscontinuityTime.""",
180
+ }, # scalar
181
+ "udpliteOutPartialCov" : {
182
+ "nodetype" : "scalar",
183
+ "moduleName" : "UDPLITE-MIB",
184
+ "oid" : "1.3.6.1.2.1.170.1.7",
185
+ "status" : "current",
186
+ "syntax" : {
187
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
188
+ },
189
+ "access" : "readonly",
190
+ "description" :
191
+ """The total number of udpliteOutDatagrams whose
192
+ checksum coverage was strictly less than the
193
+ datagram length.
194
+ Discontinuities in the value of this counter can occur
195
+ at re-initialisation of the management system, and at
196
+ other times as indicated by the value of
197
+ udpliteStatsDiscontinuityTime.""",
198
+ }, # scalar
199
+ "udpliteEndpointTable" : {
200
+ "nodetype" : "table",
201
+ "moduleName" : "UDPLITE-MIB",
202
+ "oid" : "1.3.6.1.2.1.170.1.8",
203
+ "status" : "current",
204
+ "description" :
205
+ """A table containing information about this entity's
206
+ UDP-Lite endpoints on which a local application is
207
+ currently accepting or sending datagrams.
208
+
209
+ The address type in this table represents the address
210
+ type used for the communication, irrespective of the
211
+ higher-layer abstraction. For example, an application
212
+ using IPv6 'sockets' to communicate via IPv4 between
213
+ ::ffff:10.0.0.1 and ::ffff:10.0.0.2 would use
214
+ InetAddressType ipv4(1).
215
+
216
+ Like the udpTable in RFC 4113, this table also allows
217
+ the representation of an application that completely
218
+ specifies both local and remote addresses and ports. A
219
+ listening application is represented in three possible
220
+ ways:
221
+
222
+ 1) An application that is willing to accept both IPv4
223
+ and IPv6 datagrams is represented by a
224
+ udpliteEndpointLocalAddressType of unknown(0) and a
225
+ udpliteEndpointLocalAddress of ''h (a zero-length
226
+
227
+
228
+
229
+ octet-string).
230
+
231
+ 2) An application that is willing to accept only IPv4
232
+ or only IPv6 datagrams is represented by a
233
+ udpliteEndpointLocalAddressType of the appropriate
234
+ address type and a udpliteEndpointLocalAddress of
235
+ '0.0.0.0' or '::' respectively.
236
+
237
+ 3) An application that is listening for datagrams only
238
+ for a specific IP address but from any remote
239
+ system is represented by a
240
+ udpliteEndpointLocalAddressType of the appropriate
241
+ address type, with udpliteEndpointLocalAddress
242
+ specifying the local address.
243
+
244
+ In all cases where the remote address is a wildcard,
245
+ the udpliteEndpointRemoteAddressType is unknown(0),
246
+ the udpliteEndpointRemoteAddress is ''h (a zero-length
247
+ octet-string), and the udpliteEndpointRemotePort is 0.
248
+
249
+ If the operating system is demultiplexing UDP-Lite
250
+ packets by remote address/port, or if the application
251
+ has 'connected' the socket specifying a default remote
252
+ address/port, the udpliteEndpointRemote* values should
253
+ be used to reflect this.""",
254
+ }, # table
255
+ "udpliteEndpointEntry" : {
256
+ "nodetype" : "row",
257
+ "moduleName" : "UDPLITE-MIB",
258
+ "oid" : "1.3.6.1.2.1.170.1.8.1",
259
+ "status" : "current",
260
+ "linkage" : [
261
+ "udpliteEndpointLocalAddressType",
262
+ "udpliteEndpointLocalAddress",
263
+ "udpliteEndpointLocalPort",
264
+ "udpliteEndpointRemoteAddressType",
265
+ "udpliteEndpointRemoteAddress",
266
+ "udpliteEndpointRemotePort",
267
+ "udpliteEndpointInstance",
268
+ ],
269
+ "description" :
270
+ """Information about a particular current UDP-Lite endpoint.
271
+ Implementers need to pay attention to the sizes of
272
+ udpliteEndpointLocalAddress/RemoteAddress, as Object
273
+ Identifiers (OIDs) of column instances in this table must
274
+ have no more than 128 sub-identifiers in order to remain
275
+ accessible with SNMPv1, SNMPv2c, and SNMPv3.""",
276
+ }, # row
277
+ "udpliteEndpointLocalAddressType" : {
278
+ "nodetype" : "column",
279
+ "moduleName" : "UDPLITE-MIB",
280
+ "oid" : "1.3.6.1.2.1.170.1.8.1.1",
281
+ "status" : "current",
282
+ "syntax" : {
283
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
284
+ },
285
+ "access" : "noaccess",
286
+ "description" :
287
+ """The address type of udpliteEndpointLocalAddress. Only
288
+ IPv4, IPv4z, IPv6, and IPv6z addresses are expected, or
289
+ unknown(0) if datagrams for all local IP addresses are
290
+ accepted.""",
291
+ }, # column
292
+ "udpliteEndpointLocalAddress" : {
293
+ "nodetype" : "column",
294
+ "moduleName" : "UDPLITE-MIB",
295
+ "oid" : "1.3.6.1.2.1.170.1.8.1.2",
296
+ "status" : "current",
297
+ "syntax" : {
298
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
299
+ },
300
+ "access" : "noaccess",
301
+ "description" :
302
+ """The local IP address for this UDP-Lite endpoint.
303
+
304
+ The value of this object can be represented in three
305
+ possible ways, depending on the characteristics of the
306
+ listening application:
307
+
308
+ 1. For an application that is willing to accept both
309
+ IPv4 and IPv6 datagrams, the value of this object
310
+ must be ''h (a zero-length octet-string), with
311
+ the value of the corresponding instance of the
312
+ EndpointLocalAddressType object being unknown(0).
313
+
314
+ 2. For an application that is willing to accept only
315
+ IPv4 or only IPv6 datagrams, the value of this
316
+ object must be '0.0.0.0' or '::', respectively,
317
+ while the corresponding instance of the
318
+ EndpointLocalAddressType object represents the
319
+ appropriate address type.
320
+
321
+ 3. For an application that is listening for data
322
+
323
+
324
+
325
+ destined only to a specific IP address, the value
326
+ of this object is the specific IP address for
327
+ which this node is receiving packets, with the
328
+ corresponding instance of the
329
+ EndpointLocalAddressType object representing the
330
+ appropriate address type.
331
+
332
+ As this object is used in the index for the
333
+ udpliteEndpointTable, implementors should be careful
334
+ not to create entries that would result in OIDs with
335
+ more than 128 sub-identifiers; this is because of SNMP
336
+ and SMI limitations.""",
337
+ }, # column
338
+ "udpliteEndpointLocalPort" : {
339
+ "nodetype" : "column",
340
+ "moduleName" : "UDPLITE-MIB",
341
+ "oid" : "1.3.6.1.2.1.170.1.8.1.3",
342
+ "status" : "current",
343
+ "syntax" : {
344
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
345
+ },
346
+ "access" : "noaccess",
347
+ "description" :
348
+ """The local port number for this UDP-Lite endpoint.""",
349
+ }, # column
350
+ "udpliteEndpointRemoteAddressType" : {
351
+ "nodetype" : "column",
352
+ "moduleName" : "UDPLITE-MIB",
353
+ "oid" : "1.3.6.1.2.1.170.1.8.1.4",
354
+ "status" : "current",
355
+ "syntax" : {
356
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
357
+ },
358
+ "access" : "noaccess",
359
+ "description" :
360
+ """The address type of udpliteEndpointRemoteAddress. Only
361
+ IPv4, IPv4z, IPv6, and IPv6z addresses are expected, or
362
+ unknown(0) if datagrams for all remote IP addresses are
363
+ accepted. Also, note that some combinations of
364
+ udpliteEndpointLocalAdressType and
365
+ udpliteEndpointRemoteAddressType are not supported. In
366
+ particular, if the value of this object is not
367
+ unknown(0), it is expected to always refer to the
368
+ same IP version as udpliteEndpointLocalAddressType.""",
369
+ }, # column
370
+ "udpliteEndpointRemoteAddress" : {
371
+ "nodetype" : "column",
372
+ "moduleName" : "UDPLITE-MIB",
373
+ "oid" : "1.3.6.1.2.1.170.1.8.1.5",
374
+ "status" : "current",
375
+ "syntax" : {
376
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
377
+ },
378
+ "access" : "noaccess",
379
+ "description" :
380
+ """The remote IP address for this UDP-Lite endpoint. If
381
+ datagrams from any remote system are to be accepted,
382
+ this value is ''h (a zero-length octet-string).
383
+ Otherwise, it has the type described by
384
+ udpliteEndpointRemoteAddressType and is the address of
385
+
386
+
387
+
388
+ the remote system from which datagrams are to be
389
+ accepted (or to which all datagrams will be sent).
390
+
391
+ As this object is used in the index for the
392
+ udpliteEndpointTable, implementors should be careful
393
+ not to create entries that would result in OIDs with
394
+ more than 128 sub-identifiers; this is because of SNMP
395
+ and SMI limitations.""",
396
+ }, # column
397
+ "udpliteEndpointRemotePort" : {
398
+ "nodetype" : "column",
399
+ "moduleName" : "UDPLITE-MIB",
400
+ "oid" : "1.3.6.1.2.1.170.1.8.1.6",
401
+ "status" : "current",
402
+ "syntax" : {
403
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
404
+ },
405
+ "access" : "noaccess",
406
+ "description" :
407
+ """The remote port number for this UDP-Lite endpoint. If
408
+ datagrams from any remote system are to be accepted,
409
+ this value is zero.""",
410
+ }, # column
411
+ "udpliteEndpointInstance" : {
412
+ "nodetype" : "column",
413
+ "moduleName" : "UDPLITE-MIB",
414
+ "oid" : "1.3.6.1.2.1.170.1.8.1.7",
415
+ "status" : "current",
416
+ "syntax" : {
417
+ "type" : {
418
+ "basetype" : "Unsigned32",
419
+ "ranges" : [
420
+ {
421
+ "min" : "1",
422
+ "max" : "4294967295"
423
+ },
424
+ ],
425
+ "range" : {
426
+ "min" : "1",
427
+ "max" : "4294967295"
428
+ },
429
+ },
430
+ },
431
+ "access" : "noaccess",
432
+ "description" :
433
+ """The instance of this tuple. This object is used to
434
+ distinguish among multiple processes 'connected' to
435
+ the same UDP-Lite endpoint. For example, on a system
436
+ implementing the BSD sockets interface, this would be
437
+ used to support the SO_REUSEADDR and SO_REUSEPORT
438
+ socket options.""",
439
+ }, # column
440
+ "udpliteEndpointProcess" : {
441
+ "nodetype" : "column",
442
+ "moduleName" : "UDPLITE-MIB",
443
+ "oid" : "1.3.6.1.2.1.170.1.8.1.8",
444
+ "status" : "current",
445
+ "syntax" : {
446
+ "type" : { "module" :"", "name" : "Unsigned32"},
447
+ },
448
+ "access" : "readonly",
449
+ "description" :
450
+ """A unique value corresponding to a piece of software
451
+ running on this endpoint.
452
+
453
+ If this endpoint is associated with more than one piece
454
+ of software, the agent should choose one of these. As
455
+ long as the representative piece of software
456
+ is running and still associated with the endpoint,
457
+ subsequent reads will consistently return the same
458
+ value. The implementation may use any algorithm
459
+ satisfying these constraints (e.g., choosing the entity
460
+
461
+
462
+
463
+ with the oldest start time).
464
+
465
+ This identifier is platform-specific. Wherever possible,
466
+ it should use the system's native, unique identification
467
+ number as the value.
468
+
469
+ If the SYSAPPL-MIB module is available, the value should
470
+ be the same as sysApplElmtRunIndex. If not available, an
471
+ alternative should be used (e.g., the hrSWRunIndex of the
472
+ HOST-RESOURCES-MIB module).
473
+
474
+ If it is not possible to uniquely identify the pieces of
475
+ software associated with this endpoint, then the value
476
+ zero should be used. (Note that zero is otherwise a
477
+ valid value for sysApplElmtRunIndex.)""",
478
+ }, # column
479
+ "udpliteEndpointMinCoverage" : {
480
+ "nodetype" : "column",
481
+ "moduleName" : "UDPLITE-MIB",
482
+ "oid" : "1.3.6.1.2.1.170.1.8.1.9",
483
+ "status" : "current",
484
+ "syntax" : {
485
+ "type" : { "module" :"", "name" : "Unsigned32"},
486
+ },
487
+ "access" : "readonly",
488
+ "description" :
489
+ """The minimum checksum coverage expected by this endpoint.
490
+ A value of 0 indicates that only fully covered datagrams
491
+ are accepted.""",
492
+ "reference" :
493
+ """RFC 3828, section 3.1""",
494
+ }, # column
495
+ "udpliteEndpointViolCoverage" : {
496
+ "nodetype" : "column",
497
+ "moduleName" : "UDPLITE-MIB",
498
+ "oid" : "1.3.6.1.2.1.170.1.8.1.10",
499
+ "status" : "current",
500
+ "syntax" : {
501
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
502
+ },
503
+ "access" : "readonly",
504
+ "description" :
505
+ """The number of datagrams received by this endpoint whose
506
+ checksum coverage violated the minimum coverage threshold
507
+ set for this connection (i.e., all valid datagrams whose
508
+ checksum coverage was strictly smaller than the minimum,
509
+ as defined in RFC 3828).
510
+ Discontinuities in the value of this counter can occur
511
+ at re-initialisation of the management system, and at
512
+ other times as indicated by the value of
513
+ udpliteStatsDiscontinuityTime.""",
514
+ }, # column
515
+ "udpliteStatsDiscontinuityTime" : {
516
+ "nodetype" : "scalar",
517
+ "moduleName" : "UDPLITE-MIB",
518
+ "oid" : "1.3.6.1.2.1.170.1.9",
519
+ "status" : "current",
520
+ "syntax" : {
521
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
522
+ },
523
+ "access" : "readonly",
524
+ "description" :
525
+ """The value of sysUpTime at the most recent occasion at
526
+ which one or more of the UDP-Lite counters suffered a
527
+ discontinuity.
528
+ A value of zero indicates no such discontinuity has
529
+ occurred since the last re-initialisation of the local
530
+ management subsystem.""",
531
+ }, # scalar
532
+ "udpliteMIBConformance" : {
533
+ "nodetype" : "node",
534
+ "moduleName" : "UDPLITE-MIB",
535
+ "oid" : "1.3.6.1.2.1.170.2",
536
+ }, # node
537
+ "udpliteMIBGroups" : {
538
+ "nodetype" : "node",
539
+ "moduleName" : "UDPLITE-MIB",
540
+ "oid" : "1.3.6.1.2.1.170.2.2",
541
+ }, # node
542
+ }, # nodes
543
+
544
+ "groups" : {
545
+ "udpliteBaseGroup" : {
546
+ "nodetype" : "group",
547
+ "moduleName" : "UDPLITE-MIB",
548
+ "oid" : "1.3.6.1.2.1.170.2.2.1",
549
+ "status" : "current",
550
+ "members" : {
551
+ "udpliteInDatagrams" : {
552
+ "nodetype" : "member",
553
+ "module" : "UDPLITE-MIB"
554
+ },
555
+ "udpliteNoPorts" : {
556
+ "nodetype" : "member",
557
+ "module" : "UDPLITE-MIB"
558
+ },
559
+ "udpliteInErrors" : {
560
+ "nodetype" : "member",
561
+ "module" : "UDPLITE-MIB"
562
+ },
563
+ "udpliteOutDatagrams" : {
564
+ "nodetype" : "member",
565
+ "module" : "UDPLITE-MIB"
566
+ },
567
+ "udpliteStatsDiscontinuityTime" : {
568
+ "nodetype" : "member",
569
+ "module" : "UDPLITE-MIB"
570
+ },
571
+ }, # members
572
+ "description" :
573
+ """The group of objects providing for counters of
574
+ basic UDP-like statistics.""",
575
+ }, # group
576
+ "udplitePartialCsumGroup" : {
577
+ "nodetype" : "group",
578
+ "moduleName" : "UDPLITE-MIB",
579
+ "oid" : "1.3.6.1.2.1.170.2.2.2",
580
+ "status" : "current",
581
+ "members" : {
582
+ "udpliteInPartialCov" : {
583
+ "nodetype" : "member",
584
+ "module" : "UDPLITE-MIB"
585
+ },
586
+ "udpliteInBadChecksum" : {
587
+ "nodetype" : "member",
588
+ "module" : "UDPLITE-MIB"
589
+ },
590
+ "udpliteOutPartialCov" : {
591
+ "nodetype" : "member",
592
+ "module" : "UDPLITE-MIB"
593
+ },
594
+ }, # members
595
+ "description" :
596
+ """The group of objects providing for counters of
597
+ transport layer statistics exclusive to UDP-Lite.""",
598
+ }, # group
599
+ "udpliteEndpointGroup" : {
600
+ "nodetype" : "group",
601
+ "moduleName" : "UDPLITE-MIB",
602
+ "oid" : "1.3.6.1.2.1.170.2.2.3",
603
+ "status" : "current",
604
+ "members" : {
605
+ "udpliteEndpointProcess" : {
606
+ "nodetype" : "member",
607
+ "module" : "UDPLITE-MIB"
608
+ },
609
+ "udpliteEndpointMinCoverage" : {
610
+ "nodetype" : "member",
611
+ "module" : "UDPLITE-MIB"
612
+ },
613
+ }, # members
614
+ "description" :
615
+ """The group of objects providing for the IP version
616
+ independent management of UDP-Lite 'endpoints'.""",
617
+ }, # group
618
+ "udpliteAppGroup" : {
619
+ "nodetype" : "group",
620
+ "moduleName" : "UDPLITE-MIB",
621
+ "oid" : "1.3.6.1.2.1.170.2.2.4",
622
+ "status" : "current",
623
+ "members" : {
624
+ "udpliteEndpointViolCoverage" : {
625
+ "nodetype" : "member",
626
+ "module" : "UDPLITE-MIB"
627
+ },
628
+ }, # members
629
+ "description" :
630
+ """The group of objects that provide application-level
631
+ information for the configuration management of
632
+ UDP-Lite 'endpoints'.""",
633
+ }, # group
634
+ }, # groups
635
+
636
+ "compliances" : {
637
+ "udpliteMIBCompliance" : {
638
+ "nodetype" : "compliance",
639
+ "moduleName" : "UDPLITE-MIB",
640
+ "oid" : "1.3.6.1.2.1.170.2.1",
641
+ "status" : "current",
642
+ "description" :
643
+ """The compliance statement for systems that implement
644
+ UDP-Lite.
645
+
646
+ There are a number of INDEX objects that cannot be
647
+ represented in the form of OBJECT clauses in SMIv2,
648
+ but for which we have the following compliance
649
+ requirements, expressed in OBJECT clause form in this
650
+ description clause:
651
+
652
+ -- OBJECT udpliteEndpointLocalAddressType
653
+ -- SYNTAX InetAddressType { unknown(0), ipv4(1),
654
+ -- ipv6(2), ipv4z(3),
655
+ -- ipv6z(4) }
656
+ -- DESCRIPTION
657
+ -- Support for dns(16) is not required.
658
+ -- OBJECT udpliteEndpointLocalAddress
659
+ -- SYNTAX InetAddress (SIZE(0|4|8|16|20))
660
+ -- DESCRIPTION
661
+ -- Support is only required for zero-length
662
+ -- octet-strings, and for scoped and unscoped
663
+ -- IPv4 and IPv6 addresses.
664
+ -- OBJECT udpliteEndpointRemoteAddressType
665
+ -- SYNTAX InetAddressType { unknown(0), ipv4(1),
666
+ -- ipv6(2), ipv4z(3),
667
+ -- ipv6z(4) }
668
+ -- DESCRIPTION
669
+ -- Support for dns(16) is not required.
670
+ -- OBJECT udpliteEndpointRemoteAddress
671
+
672
+
673
+
674
+ -- SYNTAX InetAddress (SIZE(0|4|8|16|20))
675
+ -- DESCRIPTION
676
+ -- Support is only required for zero-length
677
+ -- octet-strings, and for scoped and unscoped
678
+ -- IPv4 and IPv6 addresses.""",
679
+ "requires" : {
680
+ "udpliteBaseGroup" : {
681
+ "nodetype" : "mandatory",
682
+ "module" : "UDPLITE-MIB"
683
+ },
684
+ "udplitePartialCsumGroup" : {
685
+ "nodetype" : "mandatory",
686
+ "module" : "UDPLITE-MIB"
687
+ },
688
+ "udpliteEndpointGroup" : {
689
+ "nodetype" : "mandatory",
690
+ "module" : "UDPLITE-MIB"
691
+ },
692
+ "udpliteAppGroup" : {
693
+ "nodetype" : "optional",
694
+ "module" : "UDPLITE-MIB",
695
+ "description" :
696
+ """This group is optional and provides supplementary
697
+ information about the effectiveness of using minimum
698
+ checksum coverage thresholds on endpoints.""",
699
+ },
700
+ }, # requires
701
+ }, # compliance
702
+ }, # compliances
703
+
704
+ }