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,859 @@
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 ROHC-RTP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/ROHC-RTP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "ROHC-RTP-MIB",
11
+
12
+ "ROHC-RTP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Robust Header Compression Working Group""",
17
+ "contact" :
18
+ """WG charter:
19
+ http://www.ietf.org/html.charters/rohc-charter.html
20
+
21
+ Mailing Lists:
22
+ General Discussion: rohc@ietf.org
23
+ To Subscribe: rohc-request@ietf.org
24
+ In Body: subscribe your_email_address
25
+
26
+ Editor:
27
+ Juergen Quittek
28
+ NEC Europe Ltd.
29
+ Network Laboratories
30
+ Kurfuersten-Anlage 36
31
+ 69221 Heidelberg
32
+ Germany
33
+ Tel: +49 6221 90511-15
34
+ EMail: quittek@netlab.nec.de""",
35
+ "description" :
36
+ """This MIB module defines a set of objects for monitoring
37
+ and configuring RObust Header Compression (ROHC).
38
+ The objects are specific to ROHC RTP (profile 0x0001),
39
+ ROHC UDP (profile 0x0002), and ROHC ESP (profile 0x0003)
40
+ defined in RFC 3095 and for the ROHC LLA profile (profile
41
+ 0x0005) defined in RFC 3242.
42
+
43
+ Copyright (C) The Internet Society (2004). The
44
+ initial version of this MIB module was published
45
+ in RFC 3816. For full legal notices see the RFC
46
+ itself or see:
47
+ http://www.ietf.org/copyrights/ianamib.html""",
48
+ "revisions" : (
49
+ {
50
+ "date" : "2004-06-03 00:00",
51
+ "description" :
52
+ """Initial version, published as RFC 3816.""",
53
+ },
54
+ ),
55
+ "identity node" : "rohcRtpMIB",
56
+ },
57
+
58
+ "imports" : (
59
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
60
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
61
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
63
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
64
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
65
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
66
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
67
+ {"module" : "ROHC-MIB", "name" : "rohcChannelID"},
68
+ {"module" : "ROHC-MIB", "name" : "rohcContextCID"},
69
+ ),
70
+
71
+ "nodes" : {
72
+ "rohcRtpMIB" : {
73
+ "nodetype" : "node",
74
+ "moduleName" : "ROHC-RTP-MIB",
75
+ "oid" : "1.3.6.1.2.1.114",
76
+ "status" : "current",
77
+ }, # node
78
+ "rohcRtpObjects" : {
79
+ "nodetype" : "node",
80
+ "moduleName" : "ROHC-RTP-MIB",
81
+ "oid" : "1.3.6.1.2.1.114.1",
82
+ }, # node
83
+ "rohcRtpContextTable" : {
84
+ "nodetype" : "table",
85
+ "moduleName" : "ROHC-RTP-MIB",
86
+ "oid" : "1.3.6.1.2.1.114.1.1",
87
+ "status" : "current",
88
+ "description" :
89
+ """This table lists and describes RTP profile specific
90
+ properties of compressor contexts and decompressor
91
+ contexts. It extends the rohcContextTable of the
92
+ ROHC-MIB module.""",
93
+ }, # table
94
+ "rohcRtpContextEntry" : {
95
+ "nodetype" : "row",
96
+ "moduleName" : "ROHC-RTP-MIB",
97
+ "oid" : "1.3.6.1.2.1.114.1.1.1",
98
+ "status" : "current",
99
+ "linkage" : [
100
+ "rohcChannelID",
101
+ "rohcContextCID",
102
+ ],
103
+ "description" :
104
+ """An entry describing a particular context.""",
105
+ }, # row
106
+ "rohcRtpContextState" : {
107
+ "nodetype" : "column",
108
+ "moduleName" : "ROHC-RTP-MIB",
109
+ "oid" : "1.3.6.1.2.1.114.1.1.1.3",
110
+ "status" : "current",
111
+ "syntax" : {
112
+ "type" : {
113
+ "basetype" : "Enumeration",
114
+ "initAndRefresh" : {
115
+ "nodetype" : "namednumber",
116
+ "number" : "1"
117
+ },
118
+ "firstOrder" : {
119
+ "nodetype" : "namednumber",
120
+ "number" : "2"
121
+ },
122
+ "secondOrder" : {
123
+ "nodetype" : "namednumber",
124
+ "number" : "3"
125
+ },
126
+ "noContext" : {
127
+ "nodetype" : "namednumber",
128
+ "number" : "4"
129
+ },
130
+ "staticContext" : {
131
+ "nodetype" : "namednumber",
132
+ "number" : "5"
133
+ },
134
+ "fullContext" : {
135
+ "nodetype" : "namednumber",
136
+ "number" : "6"
137
+ },
138
+ },
139
+ },
140
+ "access" : "readonly",
141
+ "description" :
142
+ """State of the context as defined in RFC 3095. States
143
+ initAndRefresh(1), firstOrder(2), and secondOrder(3)
144
+ are states of compressor contexts, states noContext(4),
145
+ staticContext(5) and fullContext(6) are states of
146
+ decompressor contexts.""",
147
+ "reference" :
148
+ """RFC 3095""",
149
+ }, # column
150
+ "rohcRtpContextMode" : {
151
+ "nodetype" : "column",
152
+ "moduleName" : "ROHC-RTP-MIB",
153
+ "oid" : "1.3.6.1.2.1.114.1.1.1.4",
154
+ "status" : "current",
155
+ "syntax" : {
156
+ "type" : {
157
+ "basetype" : "Enumeration",
158
+ "unidirectional" : {
159
+ "nodetype" : "namednumber",
160
+ "number" : "1"
161
+ },
162
+ "optimistic" : {
163
+ "nodetype" : "namednumber",
164
+ "number" : "2"
165
+ },
166
+ "reliable" : {
167
+ "nodetype" : "namednumber",
168
+ "number" : "3"
169
+ },
170
+ },
171
+ },
172
+ "access" : "readonly",
173
+ "description" :
174
+ """Mode of the context.""",
175
+ "reference" :
176
+ """RFC 3095, Section 4.4""",
177
+ }, # column
178
+ "rohcRtpContextAlwaysPad" : {
179
+ "nodetype" : "column",
180
+ "moduleName" : "ROHC-RTP-MIB",
181
+ "oid" : "1.3.6.1.2.1.114.1.1.1.5",
182
+ "status" : "current",
183
+ "syntax" : {
184
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
185
+ },
186
+ "access" : "readonly",
187
+ "default" : "false",
188
+ "description" :
189
+ """Boolean, only applicable to compressor contexts using the
190
+
191
+
192
+ LLA profile. If its value is true, the compressor must
193
+ pad every RHP packet with a minimum of one octet ROHC
194
+ padding.
195
+
196
+ The value of this object is only valid for LLA profiles,
197
+ i.e., if the corresponding rohcProfile has a value of
198
+ 0x0005. If the corresponding rohcProfile has a value
199
+ other than 0x0005, then this object MUST NOT be
200
+ instantiated.""",
201
+ "reference" :
202
+ """RFC 3242, Section 5.1.1""",
203
+ }, # column
204
+ "rohcRtpContextLargePktsAllowed" : {
205
+ "nodetype" : "column",
206
+ "moduleName" : "ROHC-RTP-MIB",
207
+ "oid" : "1.3.6.1.2.1.114.1.1.1.6",
208
+ "status" : "current",
209
+ "syntax" : {
210
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
211
+ },
212
+ "access" : "readonly",
213
+ "default" : "true",
214
+ "description" :
215
+ """Boolean, only applicable to compressor contexts using the
216
+ LLA profile. It specifies how to handle packets that do
217
+ not fit any of the preferred packet sizes specified. If
218
+ its value is true, the compressor must deliver the larger
219
+ packet as-is and must not use segmentation. If it is set
220
+ to false, the ROHC segmentation scheme must be used to
221
+ split the packet into two or more segments, and each
222
+ segment must further be padded to fit one of the preferred
223
+ packet sizes.
224
+
225
+ The value of this object is only valid for LLA profiles,
226
+ i.e., if the corresponding rohcProfile has a value of
227
+ 0x0005. If the corresponding rohcProfile has a value
228
+ other than 0x0005, then this object MUST NOT be
229
+ instantiated.""",
230
+ "reference" :
231
+ """RFC 3242, Section 5.1.1""",
232
+ }, # column
233
+ "rohcRtpContextVerifyPeriod" : {
234
+ "nodetype" : "column",
235
+ "moduleName" : "ROHC-RTP-MIB",
236
+ "oid" : "1.3.6.1.2.1.114.1.1.1.7",
237
+ "status" : "current",
238
+ "syntax" : {
239
+ "type" : { "module" :"", "name" : "Unsigned32"},
240
+ },
241
+ "access" : "readonly",
242
+ "default" : "0",
243
+ "description" :
244
+ """This object is only applicable to compressor contexts
245
+ using the LLA profile. It specifies the minimum frequency
246
+ with which a packet validating the context must be sent.
247
+ This tells the compressor that a packet containing a CRC
248
+
249
+
250
+ field must be sent at least once every N packets, where N
251
+ is the value of the object. A value of 0 indicates that
252
+ periodical verifications are disabled.
253
+
254
+ The value of this object is only valid for LLA profiles,
255
+ i.e., if the corresponding rohcProfile has a value of
256
+ 0x0005. If the corresponding rohcProfile has a value
257
+ other than 0x0005, then this object MUST NOT be
258
+ instantiated.""",
259
+ "reference" :
260
+ """RFC 3242, Section 5.1.1""",
261
+ }, # column
262
+ "rohcRtpContextSizesAllowed" : {
263
+ "nodetype" : "column",
264
+ "moduleName" : "ROHC-RTP-MIB",
265
+ "oid" : "1.3.6.1.2.1.114.1.1.1.8",
266
+ "status" : "current",
267
+ "syntax" : {
268
+ "type" : {
269
+ "basetype" : "Unsigned32",
270
+ "ranges" : [
271
+ {
272
+ "min" : "1",
273
+ "max" : "4294967295"
274
+ },
275
+ ],
276
+ "range" : {
277
+ "min" : "1",
278
+ "max" : "4294967295"
279
+ },
280
+ },
281
+ },
282
+ "access" : "readonly",
283
+ "description" :
284
+ """The value of this object is only valid for decompressor
285
+ contexts, i.e., if rohcInstanceType of the corresponding
286
+ rohcContextEntry has the value decompressor(2). For
287
+ compressor contexts where rohcInstanceType has the value
288
+ compressor(1), this object MUST NOT be instantiated.
289
+
290
+ This object contains the number of different packet sizes
291
+ that may be used in the context.""",
292
+ "reference" :
293
+ """RFC 3095, Section 6.3.1""",
294
+ }, # column
295
+ "rohcRtpContextSizesUsed" : {
296
+ "nodetype" : "column",
297
+ "moduleName" : "ROHC-RTP-MIB",
298
+ "oid" : "1.3.6.1.2.1.114.1.1.1.9",
299
+ "status" : "current",
300
+ "syntax" : {
301
+ "type" : {
302
+ "basetype" : "Unsigned32",
303
+ "ranges" : [
304
+ {
305
+ "min" : "1",
306
+ "max" : "4294967295"
307
+ },
308
+ ],
309
+ "range" : {
310
+ "min" : "1",
311
+ "max" : "4294967295"
312
+ },
313
+ },
314
+ },
315
+ "access" : "readonly",
316
+ "description" :
317
+ """The value of this object is only valid for decompressor
318
+ contexts, i.e., if rohcInstanceType of the corresponding
319
+ rohcContextEntry has the value decompressor(2). For
320
+ compressor contexts where rohcInstanceType has the value
321
+ compressor(1), this object MUST NOT be instantiated.
322
+
323
+ This object contains the number of different packet sizes
324
+ that are used in the context.""",
325
+ "reference" :
326
+ """RFC 3095, Section 6.3.1""",
327
+ }, # column
328
+ "rohcRtpContextACKs" : {
329
+ "nodetype" : "column",
330
+ "moduleName" : "ROHC-RTP-MIB",
331
+ "oid" : "1.3.6.1.2.1.114.1.1.1.10",
332
+ "status" : "current",
333
+ "syntax" : {
334
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
335
+ },
336
+ "access" : "readonly",
337
+ "description" :
338
+ """The number of all positive feedbacks (ACK) sent or
339
+ received in this context, respectively.
340
+
341
+ Discontinuities in the value of this counter can
342
+ occur at re-initialization of the management
343
+ system, and at other times as indicated by the
344
+ value of ifCounterDiscontinuityTime. For checking
345
+ ifCounterDiscontinuityTime, the interface index is
346
+ required. It can be determined by reading the
347
+ rohcChannelTable of the ROHC-MIB.""",
348
+ "reference" :
349
+ """RFC 3095, Section 5.2.1.""",
350
+ }, # column
351
+ "rohcRtpContextNACKs" : {
352
+ "nodetype" : "column",
353
+ "moduleName" : "ROHC-RTP-MIB",
354
+ "oid" : "1.3.6.1.2.1.114.1.1.1.11",
355
+ "status" : "current",
356
+ "syntax" : {
357
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
358
+ },
359
+ "access" : "readonly",
360
+ "description" :
361
+ """The number of all dynamic negative feedbacks (ACK) sent
362
+ or received in this context, respectively.
363
+
364
+ Discontinuities in the value of this counter can
365
+ occur at re-initialization of the management
366
+ system, and at other times as indicated by the
367
+ value of ifCounterDiscontinuityTime. For checking
368
+ ifCounterDiscontinuityTime, the interface index is
369
+ required. It can be determined by reading the
370
+ rohcChannelTable of the ROHC-MIB.""",
371
+ "reference" :
372
+ """RFC 3095, Section 5.2.1.""",
373
+ }, # column
374
+ "rohcRtpContextSNACKs" : {
375
+ "nodetype" : "column",
376
+ "moduleName" : "ROHC-RTP-MIB",
377
+ "oid" : "1.3.6.1.2.1.114.1.1.1.12",
378
+ "status" : "current",
379
+ "syntax" : {
380
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
381
+ },
382
+ "access" : "readonly",
383
+ "description" :
384
+ """The number of all static negative feedbacks (ACK) sent
385
+ or received in this context, respectively.
386
+
387
+ Discontinuities in the value of this counter can
388
+ occur at re-initialization of the management
389
+
390
+
391
+
392
+ system, and at other times as indicated by the
393
+ value of ifCounterDiscontinuityTime. For checking
394
+ ifCounterDiscontinuityTime, the interface index is
395
+ required. It can be determined by reading the
396
+ rohcChannelTable of the ROHC-MIB.""",
397
+ "reference" :
398
+ """RFC 3095, Section 5.2.1.""",
399
+ }, # column
400
+ "rohcRtpContextNHPs" : {
401
+ "nodetype" : "column",
402
+ "moduleName" : "ROHC-RTP-MIB",
403
+ "oid" : "1.3.6.1.2.1.114.1.1.1.13",
404
+ "status" : "current",
405
+ "syntax" : {
406
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
407
+ },
408
+ "access" : "readonly",
409
+ "description" :
410
+ """This object is only applicable to contexts using the
411
+ LLA profile. It contains the number of all no-header
412
+ packets (NHP) sent or received in this context,
413
+ respectively.
414
+
415
+ Discontinuities in the value of this counter can
416
+ occur at re-initialization of the management
417
+ system, and at other times as indicated by the
418
+ value of ifCounterDiscontinuityTime. For checking
419
+ ifCounterDiscontinuityTime, the interface index is
420
+ required. It can be determined by reading the
421
+ rohcChannelTable of the ROHC-MIB.
422
+
423
+ The value of this object is only valid for LLA profiles,
424
+ i.e., if the corresponding rohcProfile has a value of
425
+ 0x0005. If the corresponding rohcProfile has a value
426
+ other than 0x0005, then this object MUST NOT be
427
+ instantiated.""",
428
+ "reference" :
429
+ """RFC 3242, Section 4.1.1.""",
430
+ }, # column
431
+ "rohcRtpContextCSPs" : {
432
+ "nodetype" : "column",
433
+ "moduleName" : "ROHC-RTP-MIB",
434
+ "oid" : "1.3.6.1.2.1.114.1.1.1.14",
435
+ "status" : "current",
436
+ "syntax" : {
437
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
438
+ },
439
+ "access" : "readonly",
440
+ "description" :
441
+ """This object is only applicable to contexts using the
442
+ LLA profile. It contains the number of all context
443
+ synchronization packets (CSP) sent or received in this
444
+ context, respectively.
445
+
446
+ Discontinuities in the value of this counter can
447
+ occur at re-initialization of the management
448
+
449
+
450
+ system, and at other times as indicated by the
451
+ value of ifCounterDiscontinuityTime. For checking
452
+ ifCounterDiscontinuityTime, the interface index is
453
+ required. It can be determined by reading the
454
+ rohcChannelTable of the ROHC-MIB.
455
+
456
+ The value of this object is only valid for LLA profiles,
457
+ i.e., if the corresponding rohcProfile has a value of
458
+ 0x0005. If the corresponding rohcProfile has a value
459
+ other than 0x0005, then this object MUST NOT be
460
+ instantiated.""",
461
+ "reference" :
462
+ """RFC 3242, Section 4.1.2.""",
463
+ }, # column
464
+ "rohcRtpContextCCPs" : {
465
+ "nodetype" : "column",
466
+ "moduleName" : "ROHC-RTP-MIB",
467
+ "oid" : "1.3.6.1.2.1.114.1.1.1.15",
468
+ "status" : "current",
469
+ "syntax" : {
470
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
471
+ },
472
+ "access" : "readonly",
473
+ "description" :
474
+ """This object is only applicable to contexts using the
475
+ LLA profile. It contains the number of all context check
476
+ packets (CCP) sent or received in this context,
477
+ respectively.
478
+
479
+ Discontinuities in the value of this counter can
480
+ occur at re-initialization of the management
481
+ system, and at other times as indicated by the
482
+ value of ifCounterDiscontinuityTime. For checking
483
+ ifCounterDiscontinuityTime, the interface index is
484
+ required. It can be determined by reading the
485
+ rohcChannelTable of the ROHC-MIB.
486
+
487
+ The value of this object is only valid for LLA profiles,
488
+ i.e., if the corresponding rohcProfile has a value of
489
+ 0x0005. If the corresponding rohcProfile has a value
490
+ other than 0x0005, then this object MUST NOT be
491
+ instantiated.""",
492
+ "reference" :
493
+ """RFC 3242, Section 4.1.3.""",
494
+ }, # column
495
+ "rohcRtpContextPktsLostPhysical" : {
496
+ "nodetype" : "column",
497
+ "moduleName" : "ROHC-RTP-MIB",
498
+ "oid" : "1.3.6.1.2.1.114.1.1.1.16",
499
+ "status" : "current",
500
+ "syntax" : {
501
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
502
+ },
503
+ "access" : "readonly",
504
+ "description" :
505
+ """This object is only applicable to decompressor contexts
506
+
507
+
508
+ using the LLA profile. It contains the number of physical
509
+ packet losses on the link between compressor and
510
+ decompressor, that have been indicated to the decompressor.
511
+
512
+ Discontinuities in the value of this counter can
513
+ occur at re-initialization of the management
514
+ system, and at other times as indicated by the
515
+ value of ifCounterDiscontinuityTime. For checking
516
+ ifCounterDiscontinuityTime, the interface index is
517
+ required. It can be determined by reading the
518
+ rohcChannelTable of the ROHC-MIB.
519
+
520
+ The value of this object is only valid for LLA profiles,
521
+ i.e., if the corresponding rohcProfile has a value of
522
+ 0x0005. If the corresponding rohcProfile has a value
523
+ other than 0x0005, then this object MUST NOT be
524
+ instantiated.""",
525
+ "reference" :
526
+ """RFC 3242, Section 5.1.2.""",
527
+ }, # column
528
+ "rohcRtpContextPktsLostPreLink" : {
529
+ "nodetype" : "column",
530
+ "moduleName" : "ROHC-RTP-MIB",
531
+ "oid" : "1.3.6.1.2.1.114.1.1.1.17",
532
+ "status" : "current",
533
+ "syntax" : {
534
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
535
+ },
536
+ "access" : "readonly",
537
+ "description" :
538
+ """This object is only applicable to decompressor contexts
539
+ using the LLA profile. It contains the number of pre-link
540
+ packet losses on the link between compressor and
541
+ decompressor, that have been indicated to the decompressor.
542
+
543
+ Discontinuities in the value of this counter can
544
+ occur at re-initialization of the management
545
+ system, and at other times as indicated by the
546
+ value of ifCounterDiscontinuityTime. For checking
547
+ ifCounterDiscontinuityTime, the interface index is
548
+ required. It can be determined by reading the
549
+ rohcChannelTable of the ROHC-MIB.
550
+
551
+ The value of this object is only valid for LLA profiles,
552
+ i.e., if the corresponding rohcProfile has a value of
553
+ 0x0005. If the corresponding rohcProfile has a value
554
+ other than 0x0005, then this object MUST NOT be
555
+ instantiated.""",
556
+ "reference" :
557
+ """RFC 3242, Section 5.1.2.""",
558
+ }, # column
559
+ "rohcRtpPacketSizeTable" : {
560
+ "nodetype" : "table",
561
+ "moduleName" : "ROHC-RTP-MIB",
562
+ "oid" : "1.3.6.1.2.1.114.1.2",
563
+ "status" : "current",
564
+ "description" :
565
+ """This table lists all allowed, preferred, and used packet
566
+ sizes per compressor context and channel.
567
+
568
+ Note, that the sizes table represents implementation
569
+ parameters that are suggested by RFC 3095 and/or RFC 3242,
570
+ but that are not mandatory.""",
571
+ }, # table
572
+ "rohcRtpPacketSizeEntry" : {
573
+ "nodetype" : "row",
574
+ "moduleName" : "ROHC-RTP-MIB",
575
+ "oid" : "1.3.6.1.2.1.114.1.2.1",
576
+ "status" : "current",
577
+ "linkage" : [
578
+ "rohcChannelID",
579
+ "rohcContextCID",
580
+ "rohcRtpPacketSize",
581
+ ],
582
+ "description" :
583
+ """An entry of a particular packet size.""",
584
+ }, # row
585
+ "rohcRtpPacketSize" : {
586
+ "nodetype" : "column",
587
+ "moduleName" : "ROHC-RTP-MIB",
588
+ "oid" : "1.3.6.1.2.1.114.1.2.1.3",
589
+ "status" : "current",
590
+ "syntax" : {
591
+ "type" : {
592
+ "basetype" : "Unsigned32",
593
+ "ranges" : [
594
+ {
595
+ "min" : "1",
596
+ "max" : "4294967295"
597
+ },
598
+ ],
599
+ "range" : {
600
+ "min" : "1",
601
+ "max" : "4294967295"
602
+ },
603
+ },
604
+ },
605
+ "access" : "noaccess",
606
+ "description" :
607
+ """A packet size used as index.""",
608
+ }, # column
609
+ "rohcRtpPacketSizePreferred" : {
610
+ "nodetype" : "column",
611
+ "moduleName" : "ROHC-RTP-MIB",
612
+ "oid" : "1.3.6.1.2.1.114.1.2.1.4",
613
+ "status" : "current",
614
+ "syntax" : {
615
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
616
+ },
617
+ "access" : "readonly",
618
+ "description" :
619
+ """This object is only applicable to compressor contexts
620
+ using the LLA profile. When retrieved, it will have
621
+ the value true(1) if the packet size is preferred.
622
+ Otherwise, its value will be false(2).
623
+
624
+ The value of this object is only valid for LLA profiles,
625
+ i.e., if the corresponding rohcProfile has a value of
626
+ 0x0005. If the corresponding rohcProfile has a value
627
+ other than 0x0005, then this object MUST NOT be
628
+ instantiated.""",
629
+ "reference" :
630
+ """RFC 3242, Section 5.1.1""",
631
+ }, # column
632
+ "rohcRtpPacketSizeUsed" : {
633
+ "nodetype" : "column",
634
+ "moduleName" : "ROHC-RTP-MIB",
635
+ "oid" : "1.3.6.1.2.1.114.1.2.1.5",
636
+ "status" : "current",
637
+ "syntax" : {
638
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
639
+ },
640
+ "access" : "readonly",
641
+ "description" :
642
+ """This object is only applicable to compressor contexts
643
+ using the UDP, RTP, or ESP profile. When retrieved,
644
+ it will have the value true(1) if the packet size is
645
+ used. Otherwise, its value will be false(2).
646
+
647
+ The value of this object is only valid for UDP, RTP,
648
+ and ESP profiles, i.e., if the corresponding rohcProfile
649
+ has a value of either 0x0001, 0x0002 or 0x0003. If
650
+ the corresponding rohcProfile has a value other than
651
+ 0x0001, 0x0002 or 0x0003, then this object MUST NOT be
652
+ instantiated.""",
653
+ "reference" :
654
+ """RFC 3095, Section 6.3.1""",
655
+ }, # column
656
+ "rohcRtpPacketSizeRestrictedType" : {
657
+ "nodetype" : "column",
658
+ "moduleName" : "ROHC-RTP-MIB",
659
+ "oid" : "1.3.6.1.2.1.114.1.2.1.6",
660
+ "status" : "current",
661
+ "syntax" : {
662
+ "type" : {
663
+ "basetype" : "Enumeration",
664
+ "nhpOnly" : {
665
+ "nodetype" : "namednumber",
666
+ "number" : "1"
667
+ },
668
+ "rhpOnly" : {
669
+ "nodetype" : "namednumber",
670
+ "number" : "2"
671
+ },
672
+ "noRestrictions" : {
673
+ "nodetype" : "namednumber",
674
+ "number" : "3"
675
+ },
676
+ },
677
+ },
678
+ "access" : "readonly",
679
+ "description" :
680
+ """This object is only applicable to preferred packet
681
+
682
+
683
+ sizes of compressor contexts using the LLA profile.
684
+ When retrieved, it will indicate whether the packet
685
+ size is preferred for NHP only, for RHP only, or
686
+ for both of them.
687
+
688
+ The value of this object is only valid for LLA profiles,
689
+ i.e., if the corresponding rohcProfile has a value of
690
+ 0x0005. If the corresponding rohcProfile has a value
691
+ other than 0x0005, then this object MUST NOT be
692
+ instantiated.""",
693
+ "reference" :
694
+ """RFC 3242, Section 5.1.1""",
695
+ }, # column
696
+ "rohcRtpConformance" : {
697
+ "nodetype" : "node",
698
+ "moduleName" : "ROHC-RTP-MIB",
699
+ "oid" : "1.3.6.1.2.1.114.2",
700
+ }, # node
701
+ "rohcRtpCompliances" : {
702
+ "nodetype" : "node",
703
+ "moduleName" : "ROHC-RTP-MIB",
704
+ "oid" : "1.3.6.1.2.1.114.2.1",
705
+ }, # node
706
+ "rohcRtpGroups" : {
707
+ "nodetype" : "node",
708
+ "moduleName" : "ROHC-RTP-MIB",
709
+ "oid" : "1.3.6.1.2.1.114.2.2",
710
+ }, # node
711
+ }, # nodes
712
+
713
+ "groups" : {
714
+ "rohcRtpContextGroup" : {
715
+ "nodetype" : "group",
716
+ "moduleName" : "ROHC-RTP-MIB",
717
+ "oid" : "1.3.6.1.2.1.114.2.2.1",
718
+ "status" : "current",
719
+ "members" : {
720
+ "rohcRtpContextState" : {
721
+ "nodetype" : "member",
722
+ "module" : "ROHC-RTP-MIB"
723
+ },
724
+ "rohcRtpContextMode" : {
725
+ "nodetype" : "member",
726
+ "module" : "ROHC-RTP-MIB"
727
+ },
728
+ "rohcRtpContextAlwaysPad" : {
729
+ "nodetype" : "member",
730
+ "module" : "ROHC-RTP-MIB"
731
+ },
732
+ "rohcRtpContextLargePktsAllowed" : {
733
+ "nodetype" : "member",
734
+ "module" : "ROHC-RTP-MIB"
735
+ },
736
+ "rohcRtpContextVerifyPeriod" : {
737
+ "nodetype" : "member",
738
+ "module" : "ROHC-RTP-MIB"
739
+ },
740
+ }, # members
741
+ "description" :
742
+ """A collection of objects providing information about
743
+ ROHC RTP compressors and decompressors.""",
744
+ }, # group
745
+ "rohcRtpPacketSizesGroup" : {
746
+ "nodetype" : "group",
747
+ "moduleName" : "ROHC-RTP-MIB",
748
+ "oid" : "1.3.6.1.2.1.114.2.2.2",
749
+ "status" : "current",
750
+ "members" : {
751
+ "rohcRtpContextSizesAllowed" : {
752
+ "nodetype" : "member",
753
+ "module" : "ROHC-RTP-MIB"
754
+ },
755
+ "rohcRtpContextSizesUsed" : {
756
+ "nodetype" : "member",
757
+ "module" : "ROHC-RTP-MIB"
758
+ },
759
+ "rohcRtpPacketSizePreferred" : {
760
+ "nodetype" : "member",
761
+ "module" : "ROHC-RTP-MIB"
762
+ },
763
+ "rohcRtpPacketSizeUsed" : {
764
+ "nodetype" : "member",
765
+ "module" : "ROHC-RTP-MIB"
766
+ },
767
+ "rohcRtpPacketSizeRestrictedType" : {
768
+ "nodetype" : "member",
769
+ "module" : "ROHC-RTP-MIB"
770
+ },
771
+ }, # members
772
+ "description" :
773
+ """A collection of objects providing information about
774
+ allowed and used packet sizes at a ROHC RTP compressor.""",
775
+ }, # group
776
+ "rohcRtpStatisticsGroup" : {
777
+ "nodetype" : "group",
778
+ "moduleName" : "ROHC-RTP-MIB",
779
+ "oid" : "1.3.6.1.2.1.114.2.2.3",
780
+ "status" : "current",
781
+ "members" : {
782
+ "rohcRtpContextACKs" : {
783
+ "nodetype" : "member",
784
+ "module" : "ROHC-RTP-MIB"
785
+ },
786
+ "rohcRtpContextNACKs" : {
787
+ "nodetype" : "member",
788
+ "module" : "ROHC-RTP-MIB"
789
+ },
790
+ "rohcRtpContextSNACKs" : {
791
+ "nodetype" : "member",
792
+ "module" : "ROHC-RTP-MIB"
793
+ },
794
+ "rohcRtpContextNHPs" : {
795
+ "nodetype" : "member",
796
+ "module" : "ROHC-RTP-MIB"
797
+ },
798
+ "rohcRtpContextCSPs" : {
799
+ "nodetype" : "member",
800
+ "module" : "ROHC-RTP-MIB"
801
+ },
802
+ "rohcRtpContextCCPs" : {
803
+ "nodetype" : "member",
804
+ "module" : "ROHC-RTP-MIB"
805
+ },
806
+ "rohcRtpContextPktsLostPhysical" : {
807
+ "nodetype" : "member",
808
+ "module" : "ROHC-RTP-MIB"
809
+ },
810
+ "rohcRtpContextPktsLostPreLink" : {
811
+ "nodetype" : "member",
812
+ "module" : "ROHC-RTP-MIB"
813
+ },
814
+ }, # members
815
+ "description" :
816
+ """A collection of objects providing ROHC compressor and
817
+ decompressor statistics.""",
818
+ }, # group
819
+ }, # groups
820
+
821
+ "compliances" : {
822
+ "rohcRtpCompliance" : {
823
+ "nodetype" : "compliance",
824
+ "moduleName" : "ROHC-RTP-MIB",
825
+ "oid" : "1.3.6.1.2.1.114.2.1.1",
826
+ "status" : "current",
827
+ "description" :
828
+ """The compliance statement for SNMP entities that implement
829
+ the ROHC-RTP-MIB.
830
+
831
+ Note that compliance with this compliance
832
+ statement requires compliance with the
833
+ rohcCompliance MODULE-COMPLIANCE statement of the
834
+ ROHC-MIB and with the ifCompliance3 MODULE-COMPLIANCE
835
+ statement of the IF-MIB (RFC2863).""",
836
+ "requires" : {
837
+ "rohcRtpContextGroup" : {
838
+ "nodetype" : "mandatory",
839
+ "module" : "ROHC-RTP-MIB"
840
+ },
841
+ "rohcRtpPacketSizesGroup" : {
842
+ "nodetype" : "optional",
843
+ "module" : "ROHC-RTP-MIB",
844
+ "description" :
845
+ """A compliant implementation does not have to implement
846
+ the rohcRtpPacketSizesGroup.""",
847
+ },
848
+ "rohcRtpStatisticsGroup" : {
849
+ "nodetype" : "optional",
850
+ "module" : "ROHC-RTP-MIB",
851
+ "description" :
852
+ """A compliant implementation does not have to implement
853
+ the rohcRtpStatisticsGroup.""",
854
+ },
855
+ }, # requires
856
+ }, # compliance
857
+ }, # compliances
858
+
859
+ }