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,998 @@
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 PSAMP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/PSAMP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "PSAMP-MIB",
11
+
12
+ "PSAMP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPFIX Working Group""",
17
+ "contact" :
18
+ """WG charter:
19
+ http://datatracker.ietf.org/wg/ipfix/charter/
20
+
21
+ Mailing Lists:
22
+ General Discussion: ipfix@ietf.org
23
+ To Subscribe: https://www.ietf.org/mailman/listinfo/ipfix
24
+ Archive:
25
+ http://www.ietf.org/mail-archive/web/ipfix/current/maillist.html
26
+
27
+ Thomas Dietz (editor)
28
+ NEC Europe Ltd.
29
+ NEC Laboratories Europe
30
+ Network Research Division
31
+ Kurfuersten-Anlage 36
32
+ 69115 Heidelberg
33
+ Germany
34
+ Phone: +49 6221 4342-128
35
+ EMail: Thomas.Dietz@neclab.eu
36
+
37
+ Benoit Claise
38
+ Cisco Systems, Inc.
39
+ De Kleetlaan 6a b1
40
+ Diegem 1831
41
+ Belgium
42
+ Phone: +32 2 704 5622
43
+ EMail: bclaise@cisco.com
44
+
45
+
46
+
47
+ Juergen Quittek
48
+ NEC Europe Ltd.
49
+ NEC Laboratories Europe
50
+ Network Research Division
51
+ Kurfuersten-Anlage 36
52
+ 69115 Heidelberg
53
+ Germany
54
+ Phone: +49 6221 4342-115
55
+ EMail: quittek@neclab.eu""",
56
+ "description" :
57
+ """The PSAMP MIB defines managed objects for packet sampling
58
+ and filtering.
59
+
60
+ These objects provide information about managed nodes
61
+ supporting packet sampling, including packet sampling
62
+ capabilities, configuration, and statistics.
63
+ The PSAMP MIB module registers additional top-level OIDs for
64
+ the parameter subtrees of its Selector functions in the
65
+ IPFIX-SELECTOR-MIB Function sub-registry according to the
66
+ procedures defined in RFC 6615.
67
+
68
+ Copyright (c) 2012 IETF Trust and the persons identified
69
+ as authors of the code. All rights reserved.
70
+
71
+ Redistribution and use in source and binary forms, with or
72
+ without modification, is permitted pursuant to, and subject
73
+ to the license terms contained in, the Simplified BSD License
74
+ set forth in Section 4.c of the IETF Trust's Legal Provisions
75
+ Relating to IETF Documents
76
+ (http://trustee.ietf.org/license-info).
77
+
78
+ This version of this MIB module is part of RFC 6727; see the
79
+ RFC itself for full legal notices.""",
80
+ "revisions" : (
81
+ {
82
+ "date" : "2012-09-05 12:00",
83
+ "description" :
84
+ """Initial version, published as RFC 6727.""",
85
+ },
86
+ ),
87
+ "identity node" : "psampMIB",
88
+ },
89
+
90
+ "imports" : (
91
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
92
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
93
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
94
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
95
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
96
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
97
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
98
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
99
+ {"module" : "APPLICATION-MIB", "name" : "Unsigned64TC"},
100
+ {"module" : "FLOAT-TC-MIB", "name" : "Float64TC"},
101
+ {"module" : "IPFIX-SELECTOR-MIB", "name" : "ipfixSelectorFunctions"},
102
+ ),
103
+
104
+ "nodes" : {
105
+ "psampSampCountBased" : {
106
+ "nodetype" : "node",
107
+ "moduleName" : "PSAMP-MIB",
108
+ "oid" : "1.3.6.1.2.1.194.1.1.2",
109
+ }, # node
110
+ "psampSampCountBasedAvail" : {
111
+ "nodetype" : "scalar",
112
+ "moduleName" : "PSAMP-MIB",
113
+ "oid" : "1.3.6.1.2.1.194.1.1.2.1",
114
+ "status" : "current",
115
+ "syntax" : {
116
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
117
+ },
118
+ "access" : "readonly",
119
+ "description" :
120
+ """This object indicates the availability of systematic
121
+ count-based sampling at the managed node.
122
+
123
+ A Selector may be unavailable if it is implemented but
124
+ currently disabled due to, e.g., administrative reasons, lack
125
+ of resources, or similar.""",
126
+ }, # scalar
127
+ "psampSampCountBasedParamSetTable" : {
128
+ "nodetype" : "table",
129
+ "moduleName" : "PSAMP-MIB",
130
+ "oid" : "1.3.6.1.2.1.194.1.1.2.2",
131
+ "status" : "current",
132
+ "description" :
133
+ """This table lists configurations of systematic count-based
134
+ packet sampling. A parameter set describing a
135
+ configuration contains two parameters: the sampling
136
+ interval length and space.""",
137
+ }, # table
138
+ "psampSampCountBasedParamSetEntry" : {
139
+ "nodetype" : "row",
140
+ "moduleName" : "PSAMP-MIB",
141
+ "oid" : "1.3.6.1.2.1.194.1.1.2.2.1",
142
+ "status" : "current",
143
+ "linkage" : [
144
+ "psampSampCountBasedIndex",
145
+ ],
146
+ "description" :
147
+ """Defines an entry in the psampSampCountBasedParamSetTable.""",
148
+ }, # row
149
+ "psampSampCountBasedIndex" : {
150
+ "nodetype" : "column",
151
+ "moduleName" : "PSAMP-MIB",
152
+ "oid" : "1.3.6.1.2.1.194.1.1.2.2.1.1",
153
+ "status" : "current",
154
+ "syntax" : {
155
+ "type" : {
156
+ "basetype" : "Integer32",
157
+ "ranges" : [
158
+ {
159
+ "min" : "1",
160
+ "max" : "2147483647"
161
+ },
162
+ ],
163
+ "range" : {
164
+ "min" : "1",
165
+ "max" : "2147483647"
166
+ },
167
+ },
168
+ },
169
+ "access" : "noaccess",
170
+ "description" :
171
+ """The index of this parameter set in the
172
+ psampSampCountBasedParamSetTable. It is used in the
173
+ object ipfixSelectionProcessSelectorFunction entries of
174
+ the ipfixSelectionProcessTable in the IPFIX-MIB as reference
175
+ to this parameter set.""",
176
+ }, # column
177
+ "psampSampCountBasedInterval" : {
178
+ "nodetype" : "column",
179
+ "moduleName" : "PSAMP-MIB",
180
+ "oid" : "1.3.6.1.2.1.194.1.1.2.2.1.2",
181
+ "status" : "current",
182
+ "syntax" : {
183
+ "type" : { "module" :"", "name" : "Unsigned32"},
184
+ },
185
+ "access" : "readonly",
186
+ "units" : "packets",
187
+ "description" :
188
+ """This object specifies the number of packets that are
189
+ consecutively sampled. A value of 100 means that 100
190
+ consecutive packets are sampled.""",
191
+ "reference" :
192
+ """RFC 5475 (Section 5.1) and RFC 5477 (Section 8.2)""",
193
+ }, # column
194
+ "psampSampCountBasedSpace" : {
195
+ "nodetype" : "column",
196
+ "moduleName" : "PSAMP-MIB",
197
+ "oid" : "1.3.6.1.2.1.194.1.1.2.2.1.3",
198
+ "status" : "current",
199
+ "syntax" : {
200
+ "type" : { "module" :"", "name" : "Unsigned32"},
201
+ },
202
+ "access" : "readonly",
203
+ "units" : "packets",
204
+ "description" :
205
+ """This object specifies the number of packets between two
206
+ intervals specified by the object
207
+ psampSampCountBasedInterval. A value of 100 means that
208
+ the next interval starts 100 packets (which are not sampled)
209
+ after the current psampSampCountBasedInterval is over.""",
210
+ "reference" :
211
+ """RFC 5475 (Section 5.1) and RFC 5477 (Section 8.2)""",
212
+ }, # column
213
+ "psampSampTimeBased" : {
214
+ "nodetype" : "node",
215
+ "moduleName" : "PSAMP-MIB",
216
+ "oid" : "1.3.6.1.2.1.194.1.1.3",
217
+ }, # node
218
+ "psampSampTimeBasedAvail" : {
219
+ "nodetype" : "scalar",
220
+ "moduleName" : "PSAMP-MIB",
221
+ "oid" : "1.3.6.1.2.1.194.1.1.3.1",
222
+ "status" : "current",
223
+ "syntax" : {
224
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
225
+ },
226
+ "access" : "readonly",
227
+ "description" :
228
+ """This object indicates the availability of systematic
229
+ time-based sampling at the managed node.
230
+
231
+ A Selector may be unavailable if it is implemented but
232
+ currently disabled due to, e.g., administrative reasons, lack
233
+ of resources, or similar.""",
234
+ }, # scalar
235
+ "psampSampTimeBasedParamSetTable" : {
236
+ "nodetype" : "table",
237
+ "moduleName" : "PSAMP-MIB",
238
+ "oid" : "1.3.6.1.2.1.194.1.1.3.2",
239
+ "status" : "current",
240
+ "description" :
241
+ """This table lists configurations of systematic time-based
242
+ packet sampling. A parameter set describing a configuration
243
+ contains two parameters: the sampling interval length and
244
+ the space.""",
245
+ }, # table
246
+ "psampSampTimeBasedParamSetEntry" : {
247
+ "nodetype" : "row",
248
+ "moduleName" : "PSAMP-MIB",
249
+ "oid" : "1.3.6.1.2.1.194.1.1.3.2.1",
250
+ "status" : "current",
251
+ "linkage" : [
252
+ "psampSampTimeBasedIndex",
253
+ ],
254
+ "description" :
255
+ """Defines an entry in the psampSampTimeBasedParamSetTable.""",
256
+ }, # row
257
+ "psampSampTimeBasedIndex" : {
258
+ "nodetype" : "column",
259
+ "moduleName" : "PSAMP-MIB",
260
+ "oid" : "1.3.6.1.2.1.194.1.1.3.2.1.1",
261
+ "status" : "current",
262
+ "syntax" : {
263
+ "type" : {
264
+ "basetype" : "Integer32",
265
+ "ranges" : [
266
+ {
267
+ "min" : "1",
268
+ "max" : "2147483647"
269
+ },
270
+ ],
271
+ "range" : {
272
+ "min" : "1",
273
+ "max" : "2147483647"
274
+ },
275
+ },
276
+ },
277
+ "access" : "noaccess",
278
+ "description" :
279
+ """The index of this parameter set in the
280
+ psampSampTimeBasedParamSetTable. It is used in the
281
+ object ipfixSelectionProcessSelectorFunction entries of
282
+ the ipfixSelectionProcessTable in the IPFIX-MIB as reference
283
+ to this parameter set.""",
284
+ }, # column
285
+ "psampSampTimeBasedInterval" : {
286
+ "nodetype" : "column",
287
+ "moduleName" : "PSAMP-MIB",
288
+ "oid" : "1.3.6.1.2.1.194.1.1.3.2.1.2",
289
+ "status" : "current",
290
+ "syntax" : {
291
+ "type" : { "module" :"", "name" : "Unsigned32"},
292
+ },
293
+ "access" : "readonly",
294
+ "units" : "microseconds",
295
+ "description" :
296
+ """This object specifies the time interval in microseconds
297
+ during which all arriving packets are sampled.""",
298
+ "reference" :
299
+ """RFC 5475 (Section 5.1) and RFC 5477 (Section 8.2)""",
300
+ }, # column
301
+ "psampSampTimeBasedSpace" : {
302
+ "nodetype" : "column",
303
+ "moduleName" : "PSAMP-MIB",
304
+ "oid" : "1.3.6.1.2.1.194.1.1.3.2.1.3",
305
+ "status" : "current",
306
+ "syntax" : {
307
+ "type" : { "module" :"", "name" : "Unsigned32"},
308
+ },
309
+ "access" : "readonly",
310
+ "units" : "microseconds",
311
+ "description" :
312
+ """This object specifies the time interval in microseconds
313
+ between two intervals specified by the object
314
+ psampSampTimeBasedInterval. A value of 100 means that the
315
+ next interval starts 100 microseconds (during which no
316
+ packets are sampled) after the current
317
+ psampSampTimeBasedInterval is over.""",
318
+ "reference" :
319
+ """RFC 5475 (Section 5.1) and RFC 5477 (Section 8.2)""",
320
+ }, # column
321
+ "psampSampRandOutOfN" : {
322
+ "nodetype" : "node",
323
+ "moduleName" : "PSAMP-MIB",
324
+ "oid" : "1.3.6.1.2.1.194.1.1.4",
325
+ }, # node
326
+ "psampSampRandOutOfNAvail" : {
327
+ "nodetype" : "scalar",
328
+ "moduleName" : "PSAMP-MIB",
329
+ "oid" : "1.3.6.1.2.1.194.1.1.4.1",
330
+ "status" : "current",
331
+ "syntax" : {
332
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
333
+ },
334
+ "access" : "readonly",
335
+ "description" :
336
+ """This object indicates the availability of random n-out-of-N
337
+ sampling at the managed node.
338
+
339
+ A Selector may be unavailable if it is implemented but
340
+ currently disabled due to, e.g., administrative reasons, lack
341
+ of resources, or similar.""",
342
+ }, # scalar
343
+ "psampSampRandOutOfNParamSetTable" : {
344
+ "nodetype" : "table",
345
+ "moduleName" : "PSAMP-MIB",
346
+ "oid" : "1.3.6.1.2.1.194.1.1.4.2",
347
+ "status" : "current",
348
+ "description" :
349
+ """This table lists configurations of random n-out-of-N
350
+ sampling. A parameter set describing a configuration
351
+ contains two parameters: the sampling size and the
352
+ parent population.""",
353
+ }, # table
354
+ "psampSampRandOutOfNParamSetEntry" : {
355
+ "nodetype" : "row",
356
+ "moduleName" : "PSAMP-MIB",
357
+ "oid" : "1.3.6.1.2.1.194.1.1.4.2.1",
358
+ "status" : "current",
359
+ "linkage" : [
360
+ "psampSampRandOutOfNIndex",
361
+ ],
362
+ "description" :
363
+ """Defines an entry in the psampSampRandOutOfNParamSetTable.""",
364
+ }, # row
365
+ "psampSampRandOutOfNIndex" : {
366
+ "nodetype" : "column",
367
+ "moduleName" : "PSAMP-MIB",
368
+ "oid" : "1.3.6.1.2.1.194.1.1.4.2.1.1",
369
+ "status" : "current",
370
+ "syntax" : {
371
+ "type" : {
372
+ "basetype" : "Integer32",
373
+ "ranges" : [
374
+ {
375
+ "min" : "1",
376
+ "max" : "2147483647"
377
+ },
378
+ ],
379
+ "range" : {
380
+ "min" : "1",
381
+ "max" : "2147483647"
382
+ },
383
+ },
384
+ },
385
+ "access" : "noaccess",
386
+ "description" :
387
+ """The index of this parameter set in the
388
+ psampSampRandOutOfNParamSetTable. It is used in the
389
+ object ipfixSelectionProcessSelectorFunction entries of
390
+ the ipfixSelectionProcessTable in the IPFIX-MIB as reference
391
+ to this parameter set.""",
392
+ }, # column
393
+ "psampSampRandOutOfNSize" : {
394
+ "nodetype" : "column",
395
+ "moduleName" : "PSAMP-MIB",
396
+ "oid" : "1.3.6.1.2.1.194.1.1.4.2.1.2",
397
+ "status" : "current",
398
+ "syntax" : {
399
+ "type" : { "module" :"", "name" : "Unsigned32"},
400
+ },
401
+ "access" : "readonly",
402
+ "units" : "packets",
403
+ "description" :
404
+ """This object specifies the number of elements taken from the
405
+ parent Population specified in
406
+ psampSampRandOutOfNPopulation.""",
407
+ "reference" :
408
+ """RFC 5475 (Section 5.2.1) and RFC 5477 (Section 8.2)""",
409
+ }, # column
410
+ "psampSampRandOutOfNPopulation" : {
411
+ "nodetype" : "column",
412
+ "moduleName" : "PSAMP-MIB",
413
+ "oid" : "1.3.6.1.2.1.194.1.1.4.2.1.3",
414
+ "status" : "current",
415
+ "syntax" : {
416
+ "type" : { "module" :"", "name" : "Unsigned32"},
417
+ },
418
+ "access" : "readonly",
419
+ "units" : "packets",
420
+ "description" :
421
+ """This object specifies the number of elements in the parent
422
+ Population.""",
423
+ "reference" :
424
+ """RFC 5475 (Section 5.2.1) and RFC 5477 (Section 8.2)""",
425
+ }, # column
426
+ "psampSampUniProb" : {
427
+ "nodetype" : "node",
428
+ "moduleName" : "PSAMP-MIB",
429
+ "oid" : "1.3.6.1.2.1.194.1.1.5",
430
+ }, # node
431
+ "psampSampUniProbAvail" : {
432
+ "nodetype" : "scalar",
433
+ "moduleName" : "PSAMP-MIB",
434
+ "oid" : "1.3.6.1.2.1.194.1.1.5.1",
435
+ "status" : "current",
436
+ "syntax" : {
437
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
438
+ },
439
+ "access" : "readonly",
440
+ "description" :
441
+ """This object indicates the availability of random uniform
442
+ probabilistic sampling at the managed node.
443
+
444
+
445
+
446
+
447
+ A Selector may be unavailable if it is implemented but
448
+ currently disabled due to, e.g., administrative reasons, lack
449
+ of resources, or similar.""",
450
+ }, # scalar
451
+ "psampSampUniProbParamSetTable" : {
452
+ "nodetype" : "table",
453
+ "moduleName" : "PSAMP-MIB",
454
+ "oid" : "1.3.6.1.2.1.194.1.1.5.2",
455
+ "status" : "current",
456
+ "description" :
457
+ """This table lists configurations of random probabilistic
458
+ sampling. A parameter set describing a configuration
459
+ contains a single parameter only: the sampling probability.""",
460
+ }, # table
461
+ "psampSampUniProbParamSetEntry" : {
462
+ "nodetype" : "row",
463
+ "moduleName" : "PSAMP-MIB",
464
+ "oid" : "1.3.6.1.2.1.194.1.1.5.2.1",
465
+ "status" : "current",
466
+ "linkage" : [
467
+ "psampSampUniProbIndex",
468
+ ],
469
+ "description" :
470
+ """Defines an entry in the psampSampUniProbParamSetTable.""",
471
+ }, # row
472
+ "psampSampUniProbIndex" : {
473
+ "nodetype" : "column",
474
+ "moduleName" : "PSAMP-MIB",
475
+ "oid" : "1.3.6.1.2.1.194.1.1.5.2.1.1",
476
+ "status" : "current",
477
+ "syntax" : {
478
+ "type" : {
479
+ "basetype" : "Integer32",
480
+ "ranges" : [
481
+ {
482
+ "min" : "1",
483
+ "max" : "2147483647"
484
+ },
485
+ ],
486
+ "range" : {
487
+ "min" : "1",
488
+ "max" : "2147483647"
489
+ },
490
+ },
491
+ },
492
+ "access" : "noaccess",
493
+ "description" :
494
+ """The index of this parameter set in the
495
+ psampSampUniProbParamSetTable. It is used in the
496
+ object ipfixSelectionProcessSelectorFunction entries of
497
+ the ipfixSelectionProcessTable in the IPFIX-MIB as reference
498
+ to this parameter set.""",
499
+ }, # column
500
+ "psampSampUniProbProbability" : {
501
+ "nodetype" : "column",
502
+ "moduleName" : "PSAMP-MIB",
503
+ "oid" : "1.3.6.1.2.1.194.1.1.5.2.1.2",
504
+ "status" : "current",
505
+ "syntax" : {
506
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float64TC"},
507
+ },
508
+ "access" : "readonly",
509
+ "description" :
510
+ """This object specifies the probability that a packet is
511
+ sampled, expressed as a value between 0 and 1. The
512
+ probability is equal for every packet. A value of 0 means
513
+ no packet is sampled since the probability is 0. A value
514
+ of 1 means all packets are sampled since the
515
+ probability is 1. NaN (not a number) and infinity MUST NOT
516
+ be used.""",
517
+ "reference" :
518
+ """RFC 5475 (Section 5.2.2.1) and RFC 5477 (Section 8.2)""",
519
+ }, # column
520
+ "psampFiltPropMatch" : {
521
+ "nodetype" : "node",
522
+ "moduleName" : "PSAMP-MIB",
523
+ "oid" : "1.3.6.1.2.1.194.1.1.6",
524
+ }, # node
525
+ "psampFiltPropMatchAvail" : {
526
+ "nodetype" : "scalar",
527
+ "moduleName" : "PSAMP-MIB",
528
+ "oid" : "1.3.6.1.2.1.194.1.1.6.1",
529
+ "status" : "current",
530
+ "syntax" : {
531
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
532
+ },
533
+ "access" : "readonly",
534
+ "description" :
535
+ """This object indicates the availability of property match
536
+ filtering at the managed node.
537
+
538
+ A Selector may be unavailable if it is implemented but
539
+ currently disabled due to, e.g., administrative reasons, lack
540
+ of resources, or similar.""",
541
+ }, # scalar
542
+ "psampFiltHash" : {
543
+ "nodetype" : "node",
544
+ "moduleName" : "PSAMP-MIB",
545
+ "oid" : "1.3.6.1.2.1.194.1.1.7",
546
+ }, # node
547
+ "psampFiltHashAvail" : {
548
+ "nodetype" : "scalar",
549
+ "moduleName" : "PSAMP-MIB",
550
+ "oid" : "1.3.6.1.2.1.194.1.1.7.1",
551
+ "status" : "current",
552
+ "syntax" : {
553
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
554
+ },
555
+ "access" : "readonly",
556
+ "description" :
557
+ """This object indicates the availability of hash filtering
558
+ at the managed node.
559
+
560
+ A Selector may be unavailable if it is implemented but
561
+ currently disabled due to, e.g., administrative reasons, lack
562
+ of resources, or similar.""",
563
+ }, # scalar
564
+ "psampFiltHashCapabilities" : {
565
+ "nodetype" : "node",
566
+ "moduleName" : "PSAMP-MIB",
567
+ "oid" : "1.3.6.1.2.1.194.1.1.7.2",
568
+ }, # node
569
+ "psampFiltHashParamSetTable" : {
570
+ "nodetype" : "table",
571
+ "moduleName" : "PSAMP-MIB",
572
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3",
573
+ "status" : "current",
574
+ "description" :
575
+ """This table lists configurations of hash filtering. A
576
+ parameter set describing a configuration contains eight
577
+ parameters describing the hash function.""",
578
+ }, # table
579
+ "psampFiltHashParamSetEntry" : {
580
+ "nodetype" : "row",
581
+ "moduleName" : "PSAMP-MIB",
582
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1",
583
+ "status" : "current",
584
+ "linkage" : [
585
+ "psampFiltHashIndex",
586
+ ],
587
+ "description" :
588
+ """Defines an entry in the psampFiltHashParamSetTable.""",
589
+ }, # row
590
+ "psampFiltHashIndex" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "PSAMP-MIB",
593
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.1",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : {
597
+ "basetype" : "Integer32",
598
+ "ranges" : [
599
+ {
600
+ "min" : "1",
601
+ "max" : "2147483647"
602
+ },
603
+ ],
604
+ "range" : {
605
+ "min" : "1",
606
+ "max" : "2147483647"
607
+ },
608
+ },
609
+ },
610
+ "access" : "noaccess",
611
+ "description" :
612
+ """The index of this parameter set in the
613
+ psampFiltHashParamSetTable. It is used in the
614
+ object ipfixSelectionProcessSelectorFunction entries of
615
+ the ipfixSelectionProcessTable in the IPFIX-MIB as reference
616
+ to this parameter set.""",
617
+ }, # column
618
+ "psampFiltHashFunction" : {
619
+ "nodetype" : "column",
620
+ "moduleName" : "PSAMP-MIB",
621
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.2",
622
+ "status" : "current",
623
+ "syntax" : {
624
+ "type" : {
625
+ "basetype" : "Enumeration",
626
+ "crc32" : {
627
+ "nodetype" : "namednumber",
628
+ "number" : "1"
629
+ },
630
+ "ipsx" : {
631
+ "nodetype" : "namednumber",
632
+ "number" : "2"
633
+ },
634
+ "bob" : {
635
+ "nodetype" : "namednumber",
636
+ "number" : "3"
637
+ },
638
+ },
639
+ },
640
+ "access" : "readonly",
641
+ "description" :
642
+ """The hash function used by this filter. The PSAMP-MIB
643
+ defines the following hash functions:
644
+
645
+ crc32(1): The CRC-32 Hash Function as defined in RFC 1141.
646
+
647
+ ipsx(2): The IPSX Hash Function as described in RFC 5475,
648
+ Appendix A.1.
649
+
650
+ bob(3): The BOB Hash Function as described in RFC 5475,
651
+ Appendix A.2.""",
652
+ "reference" :
653
+ """RFC 5475 (Section 6.2 and Appendixes A.1 and A.2)
654
+ and RFC 1141""",
655
+ }, # column
656
+ "psampFiltHashInitializerValue" : {
657
+ "nodetype" : "column",
658
+ "moduleName" : "PSAMP-MIB",
659
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.3",
660
+ "status" : "current",
661
+ "syntax" : {
662
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
663
+ },
664
+ "access" : "readonly",
665
+ "description" :
666
+ """This object specifies the initializer value to the hash
667
+ function.""",
668
+ "reference" :
669
+ """RFC 5475, Sections 6.2, 3.8, and 7.1""",
670
+ }, # column
671
+ "psampFiltHashIpPayloadOffset" : {
672
+ "nodetype" : "column",
673
+ "moduleName" : "PSAMP-MIB",
674
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.4",
675
+ "status" : "current",
676
+ "syntax" : {
677
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
678
+ },
679
+ "access" : "readonly",
680
+ "description" :
681
+ """This object specifies the IP payload offset used by a
682
+ Hash-based Selection Selector.""",
683
+ "reference" :
684
+ """RFC 5475, Sections 6.2, 3.8, and 7.1""",
685
+ }, # column
686
+ "psampFiltHashIpPayloadSize" : {
687
+ "nodetype" : "column",
688
+ "moduleName" : "PSAMP-MIB",
689
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.5",
690
+ "status" : "current",
691
+ "syntax" : {
692
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
693
+ },
694
+ "access" : "readonly",
695
+ "description" :
696
+ """This object specifies the IP payload size used by a
697
+ Hash-based Selection Selector.""",
698
+ "reference" :
699
+ """RFC 5475, Sections 6.2, 3.8, and 7.1""",
700
+ }, # column
701
+ "psampFiltHashSelectedRangeMin" : {
702
+ "nodetype" : "column",
703
+ "moduleName" : "PSAMP-MIB",
704
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.6",
705
+ "status" : "current",
706
+ "syntax" : {
707
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
708
+ },
709
+ "access" : "readonly",
710
+ "description" :
711
+ """This object specifies the value for the beginning of a hash
712
+ function's selected range.""",
713
+ "reference" :
714
+ """RFC 5475, Sections 6.2, 3.8, and 7.1""",
715
+ }, # column
716
+ "psampFiltHashSelectedRangeMax" : {
717
+ "nodetype" : "column",
718
+ "moduleName" : "PSAMP-MIB",
719
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.7",
720
+ "status" : "current",
721
+ "syntax" : {
722
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
723
+ },
724
+ "access" : "readonly",
725
+ "description" :
726
+ """This object specifies the value for the end of a hash
727
+ function's selected range.""",
728
+ "reference" :
729
+ """RFC 5475, Sections 6.2, 3.8, and 7.1""",
730
+ }, # column
731
+ "psampFiltHashOutputRangeMin" : {
732
+ "nodetype" : "column",
733
+ "moduleName" : "PSAMP-MIB",
734
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.8",
735
+ "status" : "current",
736
+ "syntax" : {
737
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
738
+ },
739
+ "access" : "readonly",
740
+ "description" :
741
+ """This object specifies the value for the beginning of a hash
742
+ function's potential output range.""",
743
+ "reference" :
744
+ """RFC 5475, Sections 6.2, 3.8, and 7.1""",
745
+ }, # column
746
+ "psampFiltHashOutputRangeMax" : {
747
+ "nodetype" : "column",
748
+ "moduleName" : "PSAMP-MIB",
749
+ "oid" : "1.3.6.1.2.1.194.1.1.7.3.1.9",
750
+ "status" : "current",
751
+ "syntax" : {
752
+ "type" : { "module" :"APPLICATION-MIB", "name" : "Unsigned64TC"},
753
+ },
754
+ "access" : "readonly",
755
+ "description" :
756
+ """This object specifies the value for the end of a hash
757
+ function's potential output range.""",
758
+ "reference" :
759
+ """RFC 5475, Sections 6.2, 3.8, and 7.1""",
760
+ }, # column
761
+ "psampMIB" : {
762
+ "nodetype" : "node",
763
+ "moduleName" : "PSAMP-MIB",
764
+ "oid" : "1.3.6.1.2.1.212",
765
+ "status" : "current",
766
+ }, # node
767
+ "psampObjects" : {
768
+ "nodetype" : "node",
769
+ "moduleName" : "PSAMP-MIB",
770
+ "oid" : "1.3.6.1.2.1.212.1",
771
+ }, # node
772
+ "psampConformance" : {
773
+ "nodetype" : "node",
774
+ "moduleName" : "PSAMP-MIB",
775
+ "oid" : "1.3.6.1.2.1.212.2",
776
+ }, # node
777
+ "psampCompliances" : {
778
+ "nodetype" : "node",
779
+ "moduleName" : "PSAMP-MIB",
780
+ "oid" : "1.3.6.1.2.1.212.2.1",
781
+ }, # node
782
+ "psampGroups" : {
783
+ "nodetype" : "node",
784
+ "moduleName" : "PSAMP-MIB",
785
+ "oid" : "1.3.6.1.2.1.212.2.2",
786
+ }, # node
787
+ }, # nodes
788
+
789
+ "groups" : {
790
+ "psampGroupSampCountBased" : {
791
+ "nodetype" : "group",
792
+ "moduleName" : "PSAMP-MIB",
793
+ "oid" : "1.3.6.1.2.1.212.2.2.1",
794
+ "status" : "current",
795
+ "members" : {
796
+ "psampSampCountBasedAvail" : {
797
+ "nodetype" : "member",
798
+ "module" : "PSAMP-MIB"
799
+ },
800
+ "psampSampCountBasedInterval" : {
801
+ "nodetype" : "member",
802
+ "module" : "PSAMP-MIB"
803
+ },
804
+ "psampSampCountBasedSpace" : {
805
+ "nodetype" : "member",
806
+ "module" : "PSAMP-MIB"
807
+ },
808
+ }, # members
809
+ "description" :
810
+ """These objects are needed if count based sampling is
811
+ implemented.""",
812
+ }, # group
813
+ "psampGroupSampTimeBased" : {
814
+ "nodetype" : "group",
815
+ "moduleName" : "PSAMP-MIB",
816
+ "oid" : "1.3.6.1.2.1.212.2.2.2",
817
+ "status" : "current",
818
+ "members" : {
819
+ "psampSampTimeBasedAvail" : {
820
+ "nodetype" : "member",
821
+ "module" : "PSAMP-MIB"
822
+ },
823
+ "psampSampTimeBasedInterval" : {
824
+ "nodetype" : "member",
825
+ "module" : "PSAMP-MIB"
826
+ },
827
+ "psampSampTimeBasedSpace" : {
828
+ "nodetype" : "member",
829
+ "module" : "PSAMP-MIB"
830
+ },
831
+ }, # members
832
+ "description" :
833
+ """These objects are needed if time based sampling is
834
+ implemented.""",
835
+ }, # group
836
+ "psampGroupSampRandOutOfN" : {
837
+ "nodetype" : "group",
838
+ "moduleName" : "PSAMP-MIB",
839
+ "oid" : "1.3.6.1.2.1.212.2.2.3",
840
+ "status" : "current",
841
+ "members" : {
842
+ "psampSampRandOutOfNAvail" : {
843
+ "nodetype" : "member",
844
+ "module" : "PSAMP-MIB"
845
+ },
846
+ "psampSampRandOutOfNSize" : {
847
+ "nodetype" : "member",
848
+ "module" : "PSAMP-MIB"
849
+ },
850
+ "psampSampRandOutOfNPopulation" : {
851
+ "nodetype" : "member",
852
+ "module" : "PSAMP-MIB"
853
+ },
854
+ }, # members
855
+ "description" :
856
+ """These objects are needed if random n-out-of-N sampling is
857
+ implemented.""",
858
+ }, # group
859
+ "psampGroupSampUniProb" : {
860
+ "nodetype" : "group",
861
+ "moduleName" : "PSAMP-MIB",
862
+ "oid" : "1.3.6.1.2.1.212.2.2.4",
863
+ "status" : "current",
864
+ "members" : {
865
+ "psampSampUniProbAvail" : {
866
+ "nodetype" : "member",
867
+ "module" : "PSAMP-MIB"
868
+ },
869
+ "psampSampUniProbProbability" : {
870
+ "nodetype" : "member",
871
+ "module" : "PSAMP-MIB"
872
+ },
873
+ }, # members
874
+ "description" :
875
+ """These objects are needed if uniform probabilistic sampling
876
+ is implemented.""",
877
+ }, # group
878
+ "psampGroupFiltPropMatch" : {
879
+ "nodetype" : "group",
880
+ "moduleName" : "PSAMP-MIB",
881
+ "oid" : "1.3.6.1.2.1.212.2.2.5",
882
+ "status" : "current",
883
+ "members" : {
884
+ "psampFiltPropMatchAvail" : {
885
+ "nodetype" : "member",
886
+ "module" : "PSAMP-MIB"
887
+ },
888
+ }, # members
889
+ "description" :
890
+ """These objects are needed if property match filtering is
891
+ implemented.""",
892
+ }, # group
893
+ "psampGroupFiltHash" : {
894
+ "nodetype" : "group",
895
+ "moduleName" : "PSAMP-MIB",
896
+ "oid" : "1.3.6.1.2.1.212.2.2.6",
897
+ "status" : "current",
898
+ "members" : {
899
+ "psampFiltHashAvail" : {
900
+ "nodetype" : "member",
901
+ "module" : "PSAMP-MIB"
902
+ },
903
+ "psampFiltHashFunction" : {
904
+ "nodetype" : "member",
905
+ "module" : "PSAMP-MIB"
906
+ },
907
+ "psampFiltHashInitializerValue" : {
908
+ "nodetype" : "member",
909
+ "module" : "PSAMP-MIB"
910
+ },
911
+ "psampFiltHashIpPayloadOffset" : {
912
+ "nodetype" : "member",
913
+ "module" : "PSAMP-MIB"
914
+ },
915
+ "psampFiltHashIpPayloadSize" : {
916
+ "nodetype" : "member",
917
+ "module" : "PSAMP-MIB"
918
+ },
919
+ "psampFiltHashSelectedRangeMin" : {
920
+ "nodetype" : "member",
921
+ "module" : "PSAMP-MIB"
922
+ },
923
+ "psampFiltHashSelectedRangeMax" : {
924
+ "nodetype" : "member",
925
+ "module" : "PSAMP-MIB"
926
+ },
927
+ "psampFiltHashOutputRangeMin" : {
928
+ "nodetype" : "member",
929
+ "module" : "PSAMP-MIB"
930
+ },
931
+ "psampFiltHashOutputRangeMax" : {
932
+ "nodetype" : "member",
933
+ "module" : "PSAMP-MIB"
934
+ },
935
+ }, # members
936
+ "description" :
937
+ """These objects are needed if hash filtering is implemented.""",
938
+ }, # group
939
+ }, # groups
940
+
941
+ "compliances" : {
942
+ "psampCompliance" : {
943
+ "nodetype" : "compliance",
944
+ "moduleName" : "PSAMP-MIB",
945
+ "oid" : "1.3.6.1.2.1.212.2.1.1",
946
+ "status" : "current",
947
+ "description" :
948
+ """The implementation of all objects is optional and depends
949
+ on the implementation of the corresponding functionality in
950
+ the equipment.""",
951
+ "requires" : {
952
+ "psampGroupSampCountBased" : {
953
+ "nodetype" : "optional",
954
+ "module" : "PSAMP-MIB",
955
+ "description" :
956
+ """These objects must be implemented if systematic
957
+ count-based sampling is implemented in the equipment.""",
958
+ },
959
+ "psampGroupSampTimeBased" : {
960
+ "nodetype" : "optional",
961
+ "module" : "PSAMP-MIB",
962
+ "description" :
963
+ """These objects must be implemented if systematic
964
+ time-based sampling is implemented in the equipment.""",
965
+ },
966
+ "psampGroupSampRandOutOfN" : {
967
+ "nodetype" : "optional",
968
+ "module" : "PSAMP-MIB",
969
+ "description" :
970
+ """These objects must be implemented if random n-out-of-N
971
+ sampling is implemented in the equipment.""",
972
+ },
973
+ "psampGroupSampUniProb" : {
974
+ "nodetype" : "optional",
975
+ "module" : "PSAMP-MIB",
976
+ "description" :
977
+ """These objects must be implemented if uniform
978
+ probabilistic sampling is implemented in the equipment.""",
979
+ },
980
+ "psampGroupFiltPropMatch" : {
981
+ "nodetype" : "optional",
982
+ "module" : "PSAMP-MIB",
983
+ "description" :
984
+ """These objects must be implemented if the property match
985
+ filtering is implemented in the equipment.""",
986
+ },
987
+ "psampGroupFiltHash" : {
988
+ "nodetype" : "optional",
989
+ "module" : "PSAMP-MIB",
990
+ "description" :
991
+ """These objects must be implemented if hash filtering
992
+ is implemented in the equipment.""",
993
+ },
994
+ }, # requires
995
+ }, # compliance
996
+ }, # compliances
997
+
998
+ }