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,1613 @@
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-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/ROHC-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "ROHC-MIB",
11
+
12
+ "ROHC-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
+
32
+
33
+
34
+ 69221 Heidelberg
35
+ Germany
36
+ Tel: +49 6221 90511-15
37
+ EMail: quittek@netlab.nec.de""",
38
+ "description" :
39
+ """This MIB module defines a set of basic objects for
40
+ monitoring and configuring robust header compression.
41
+ The module covers information about running instances
42
+ of ROHC (compressors or decompressors) at IP interfaces.
43
+
44
+ Information about compressor contexts and decompressor
45
+ contexts has different structure for different profiles.
46
+ Therefore it is not provided by this MIB module, but by
47
+ individual modules for different profiles.
48
+
49
+ Copyright (C) The Internet Society (2004). The
50
+ initial version of this MIB module was published
51
+ in RFC 3816. For full legal notices see the RFC
52
+ itself or see:
53
+ http://www.ietf.org/copyrights/ianamib.html""",
54
+ "revisions" : (
55
+ {
56
+ "date" : "2004-06-03 00:00",
57
+ "description" :
58
+ """Initial version, published as RFC 3816.""",
59
+ },
60
+ ),
61
+ "identity node" : "rohcMIB",
62
+ },
63
+
64
+ "imports" : (
65
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
66
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
67
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
68
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
69
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
70
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
71
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
72
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
73
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
74
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
75
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
76
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
77
+ {"module" : "IF-MIB", "name" : "ifIndex"},
78
+ ),
79
+
80
+ "typedefs" : {
81
+ "RohcChannelIdentifier" : {
82
+ "basetype" : "Unsigned32",
83
+ "status" : "current",
84
+ "ranges" : [
85
+ {
86
+ "min" : "1",
87
+ "max" : "4294967295"
88
+ },
89
+ ],
90
+ "range" : {
91
+ "min" : "1",
92
+ "max" : "4294967295"
93
+ },
94
+ "format" : "d",
95
+ "description" :
96
+ """A number identifying a channel.
97
+ The value of 0 must not be used as identifier
98
+ of an existing channel.""",
99
+ },
100
+ "RohcChannelIdentifierOrZero" : {
101
+ "basetype" : "Unsigned32",
102
+ "status" : "current",
103
+ "ranges" : [
104
+ {
105
+ "min" : "0",
106
+ "max" : "4294967295"
107
+ },
108
+ ],
109
+ "range" : {
110
+ "min" : "0",
111
+ "max" : "4294967295"
112
+ },
113
+ "format" : "d",
114
+ "description" :
115
+ """A number identifying a channel.
116
+ The value of 0 is indicates that
117
+ no channel is identified.""",
118
+ },
119
+ "RohcCompressionRatio" : {
120
+ "basetype" : "Unsigned32",
121
+ "status" : "current",
122
+ "format" : "d",
123
+ "description" :
124
+ """A number indicating a compression ratio over
125
+
126
+
127
+
128
+ a set of bytes. The value is defined as
129
+ 1000 * bytes(compressed) / bytes(original)
130
+ rounded to the next integer value.
131
+
132
+ Note that compressed sets of bytes can be larger
133
+ than the corresponding uncompressed ones.
134
+ Therefore, the number can be greater than 1000.""",
135
+ },
136
+ }, # typedefs
137
+
138
+ "nodes" : {
139
+ "rohcMIB" : {
140
+ "nodetype" : "node",
141
+ "moduleName" : "ROHC-MIB",
142
+ "oid" : "1.3.6.1.2.1.112",
143
+ "status" : "current",
144
+ }, # node
145
+ "rohcObjects" : {
146
+ "nodetype" : "node",
147
+ "moduleName" : "ROHC-MIB",
148
+ "oid" : "1.3.6.1.2.1.112.1",
149
+ }, # node
150
+ "rohcInstanceObjects" : {
151
+ "nodetype" : "node",
152
+ "moduleName" : "ROHC-MIB",
153
+ "oid" : "1.3.6.1.2.1.112.1.1",
154
+ }, # node
155
+ "rohcChannelTable" : {
156
+ "nodetype" : "table",
157
+ "moduleName" : "ROHC-MIB",
158
+ "oid" : "1.3.6.1.2.1.112.1.1.1",
159
+ "status" : "current",
160
+ "description" :
161
+ """This table lists and describes all ROHC channels
162
+ per interface.""",
163
+ }, # table
164
+ "rohcChannelEntry" : {
165
+ "nodetype" : "row",
166
+ "moduleName" : "ROHC-MIB",
167
+ "oid" : "1.3.6.1.2.1.112.1.1.1.1",
168
+ "status" : "current",
169
+ "linkage" : [
170
+ "ifIndex",
171
+ "rohcChannelID",
172
+ ],
173
+ "description" :
174
+ """An entry describing a particular script. Every script that
175
+ is stored in non-volatile memory is required to appear in
176
+
177
+
178
+
179
+ this script table.
180
+
181
+ Note, that the rohcChannelID identifies the channel
182
+ uniquely. The ifIndex is part of the index of this table
183
+ just in order to allow addressing channels per interface.""",
184
+ }, # row
185
+ "rohcChannelID" : {
186
+ "nodetype" : "column",
187
+ "moduleName" : "ROHC-MIB",
188
+ "oid" : "1.3.6.1.2.1.112.1.1.1.1.2",
189
+ "status" : "current",
190
+ "syntax" : {
191
+ "type" : { "module" :"ROHC-MIB", "name" : "RohcChannelIdentifier"},
192
+ },
193
+ "access" : "noaccess",
194
+ "description" :
195
+ """The locally arbitrary, but unique identifier associated
196
+ with this channel. The value is REQUIRED to be unique
197
+ per ROHC MIB implementation independent of the associated
198
+ interface.
199
+
200
+ The value is REQUIRED to remain constant at least from one
201
+ re-initialization of the entity's network management system
202
+ to the next re-initialization. It is RECOMMENDED that the
203
+ value persist across such re-initializations.""",
204
+ "reference" :
205
+ """RFC 3095, Section 5.1.1""",
206
+ }, # column
207
+ "rohcChannelType" : {
208
+ "nodetype" : "column",
209
+ "moduleName" : "ROHC-MIB",
210
+ "oid" : "1.3.6.1.2.1.112.1.1.1.1.3",
211
+ "status" : "current",
212
+ "syntax" : {
213
+ "type" : {
214
+ "basetype" : "Enumeration",
215
+ "notInUse" : {
216
+ "nodetype" : "namednumber",
217
+ "number" : "1"
218
+ },
219
+ "rohc" : {
220
+ "nodetype" : "namednumber",
221
+ "number" : "2"
222
+ },
223
+ "dedicatedFeedback" : {
224
+ "nodetype" : "namednumber",
225
+ "number" : "3"
226
+ },
227
+ },
228
+ },
229
+ "access" : "readonly",
230
+ "description" :
231
+ """Type of usage of the channel. A channel might be currently
232
+ not in use for ROHC or feedback, it might be in use as
233
+ a ROHC channel carrying packets and optional piggy-backed
234
+ feedback, or it might be used as a dedicated feedback
235
+ channel exclusively carrying feedback.""",
236
+ }, # column
237
+ "rohcChannelFeedbackFor" : {
238
+ "nodetype" : "column",
239
+ "moduleName" : "ROHC-MIB",
240
+ "oid" : "1.3.6.1.2.1.112.1.1.1.1.4",
241
+ "status" : "current",
242
+ "syntax" : {
243
+ "type" : { "module" :"ROHC-MIB", "name" : "RohcChannelIdentifierOrZero"},
244
+ },
245
+ "access" : "readonly",
246
+ "description" :
247
+ """The index of another channel of this interface for which
248
+ the channel serves as feedback channel.
249
+
250
+ If no feedback information is transferred on this channel,
251
+ then the value of this ID is 0. If the channel type is set
252
+ to notInUse(1), then the value of this object must be 0.
253
+ If the channel type is rohc(2) and the value of this object
254
+ is a valid channel ID, then feedback information is
255
+ piggy-backed on the ROHC channel. If the channel type is
256
+ dedicatedFeedback(3), then feedback is transferred on this
257
+ channel and the value of this object MUST be different from
258
+ 0 and MUST identify an existing ROHC channel.""",
259
+ "reference" :
260
+ """RFC 3095, Section 5.1.1""",
261
+ }, # column
262
+ "rohcChannelDescr" : {
263
+ "nodetype" : "column",
264
+ "moduleName" : "ROHC-MIB",
265
+ "oid" : "1.3.6.1.2.1.112.1.1.1.1.5",
266
+ "status" : "current",
267
+ "syntax" : {
268
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
269
+ },
270
+ "access" : "readonly",
271
+ "description" :
272
+ """A textual description of the channel.""",
273
+ }, # column
274
+ "rohcChannelStatus" : {
275
+ "nodetype" : "column",
276
+ "moduleName" : "ROHC-MIB",
277
+ "oid" : "1.3.6.1.2.1.112.1.1.1.1.6",
278
+ "status" : "current",
279
+ "syntax" : {
280
+ "type" : {
281
+ "basetype" : "Enumeration",
282
+ "enabled" : {
283
+ "nodetype" : "namednumber",
284
+ "number" : "1"
285
+ },
286
+ "disabled" : {
287
+ "nodetype" : "namednumber",
288
+ "number" : "2"
289
+ },
290
+ },
291
+ },
292
+ "access" : "readonly",
293
+ "description" :
294
+ """Status of the channel.""",
295
+ }, # column
296
+ "rohcInstanceTable" : {
297
+ "nodetype" : "table",
298
+ "moduleName" : "ROHC-MIB",
299
+ "oid" : "1.3.6.1.2.1.112.1.1.2",
300
+ "status" : "current",
301
+ "description" :
302
+ """This table lists properties of running instances
303
+ of robust header compressors and decompressors
304
+ at IP interfaces. It is indexed by interface number,
305
+ the type of instance (compressor or decompressor),
306
+ and the ID of the channel used by the instance as
307
+ ROHC channel.
308
+
309
+ Note that the rohcChannelID uniquely identifies an
310
+ instance. The ifIndex and rohcInstanceType are part
311
+ of the index, because it simplifies accessing instances
312
+ per interface and for addressing either compressors or
313
+ decompressors only.""",
314
+ }, # table
315
+ "rohcInstanceEntry" : {
316
+ "nodetype" : "row",
317
+ "moduleName" : "ROHC-MIB",
318
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1",
319
+ "status" : "current",
320
+ "linkage" : [
321
+ "ifIndex",
322
+ "rohcInstanceType",
323
+ "rohcChannelID",
324
+ ],
325
+ "description" :
326
+ """An entry describing a particular instance
327
+ of a robust header compressor or decompressor.""",
328
+ }, # row
329
+ "rohcInstanceType" : {
330
+ "nodetype" : "column",
331
+ "moduleName" : "ROHC-MIB",
332
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.2",
333
+ "status" : "current",
334
+ "syntax" : {
335
+ "type" : {
336
+ "basetype" : "Enumeration",
337
+ "compressor" : {
338
+ "nodetype" : "namednumber",
339
+ "number" : "1"
340
+ },
341
+ "decompressor" : {
342
+ "nodetype" : "namednumber",
343
+ "number" : "2"
344
+ },
345
+ },
346
+ },
347
+ "access" : "noaccess",
348
+ "description" :
349
+ """Type of the instance of ROHC. It is either a
350
+ compressor instance or a decompressor instance.""",
351
+ }, # column
352
+ "rohcInstanceFBChannelID" : {
353
+ "nodetype" : "column",
354
+ "moduleName" : "ROHC-MIB",
355
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.4",
356
+ "status" : "current",
357
+ "syntax" : {
358
+ "type" : { "module" :"ROHC-MIB", "name" : "RohcChannelIdentifierOrZero"},
359
+ },
360
+ "access" : "readonly",
361
+ "description" :
362
+ """Identifier of the channel used for feedback.
363
+ If no feedback channel is used, the value of
364
+ this object is 0 .""",
365
+ "reference" :
366
+ """RFC 3095, Section 5.1.1""",
367
+ }, # column
368
+ "rohcInstanceVendor" : {
369
+ "nodetype" : "column",
370
+ "moduleName" : "ROHC-MIB",
371
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.5",
372
+ "status" : "current",
373
+ "syntax" : {
374
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
375
+ },
376
+ "access" : "readonly",
377
+ "description" :
378
+ """An object identifier that identifies the vendor who
379
+ provides the implementation of robust header description.
380
+ This object identifier SHALL point to the object identifier
381
+ directly below the enterprise object identifier
382
+ {1 3 6 1 4 1} allocated for the vendor. The value must be
383
+ the object identifier {0 0} if the vendor is not known.""",
384
+ }, # column
385
+ "rohcInstanceVersion" : {
386
+ "nodetype" : "column",
387
+ "moduleName" : "ROHC-MIB",
388
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.6",
389
+ "status" : "current",
390
+ "syntax" : {
391
+ "type" : {
392
+ "basetype" : "OctetString",
393
+ "parent module" : {
394
+ "name" : "SNMP-FRAMEWORK-MIB",
395
+ "type" : "SnmpAdminString",
396
+ },
397
+ "ranges" : [
398
+ {
399
+ "min" : "0",
400
+ "max" : "32"
401
+ },
402
+ ],
403
+ "range" : {
404
+ "min" : "0",
405
+ "max" : "32"
406
+ },
407
+ },
408
+ },
409
+ "access" : "readonly",
410
+ "description" :
411
+ """The version number of the implementation of robust header
412
+ compression. The zero-length string shall be used if the
413
+ implementation does not have a version number.
414
+
415
+
416
+
417
+
418
+ It is suggested that the version number consist of one or
419
+ more decimal numbers separated by dots, where the first
420
+ number is called the major version number.""",
421
+ }, # column
422
+ "rohcInstanceDescr" : {
423
+ "nodetype" : "column",
424
+ "moduleName" : "ROHC-MIB",
425
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.7",
426
+ "status" : "current",
427
+ "syntax" : {
428
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
429
+ },
430
+ "access" : "readonly",
431
+ "description" :
432
+ """A textual description of the implementation.""",
433
+ }, # column
434
+ "rohcInstanceClockRes" : {
435
+ "nodetype" : "column",
436
+ "moduleName" : "ROHC-MIB",
437
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.8",
438
+ "status" : "current",
439
+ "syntax" : {
440
+ "type" : { "module" :"", "name" : "Unsigned32"},
441
+ },
442
+ "access" : "readonly",
443
+ "units" : "milliseconds",
444
+ "description" :
445
+ """This object indicates the system clock resolution in
446
+ units of milliseconds. A zero (0) value means that there
447
+ is no clock available.""",
448
+ }, # column
449
+ "rohcInstanceMaxCID" : {
450
+ "nodetype" : "column",
451
+ "moduleName" : "ROHC-MIB",
452
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.9",
453
+ "status" : "current",
454
+ "syntax" : {
455
+ "type" : {
456
+ "basetype" : "Unsigned32",
457
+ "ranges" : [
458
+ {
459
+ "min" : "1",
460
+ "max" : "16383"
461
+ },
462
+ ],
463
+ "range" : {
464
+ "min" : "1",
465
+ "max" : "16383"
466
+ },
467
+ },
468
+ },
469
+ "access" : "readonly",
470
+ "description" :
471
+ """The highest context ID number to be used by the
472
+ compressor. Note that this parameter is not coupled to,
473
+ but in effect further constrained by,
474
+ rohcChannelLargeCIDs.""",
475
+ "reference" :
476
+ """RFC 3095, Section 5.1.1""",
477
+ }, # column
478
+ "rohcInstanceLargeCIDs" : {
479
+ "nodetype" : "column",
480
+ "moduleName" : "ROHC-MIB",
481
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.10",
482
+ "status" : "current",
483
+ "syntax" : {
484
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
485
+ },
486
+ "access" : "readonly",
487
+ "description" :
488
+ """When retrieved, this boolean object returns false if
489
+ the short CID representation (0 bytes or 1 prefix byte,
490
+ covering CID 0 to 15) is used; it returns true, if the
491
+ embedded CID representation (1 or 2 embedded CID bytes
492
+ covering CID 0 to 16383) is used.""",
493
+ "reference" :
494
+ """RFC 3095, Section 5.1.1""",
495
+ }, # column
496
+ "rohcInstanceMRRU" : {
497
+ "nodetype" : "column",
498
+ "moduleName" : "ROHC-MIB",
499
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.11",
500
+ "status" : "current",
501
+ "syntax" : {
502
+ "type" : { "module" :"", "name" : "Unsigned32"},
503
+ },
504
+ "access" : "readonly",
505
+ "description" :
506
+ """Maximum reconstructed reception unit. This is the
507
+ size of the largest reconstructed unit in octets that
508
+ the decompressor is expected to reassemble from
509
+ segments (see RFC 3095, Section 5.2.5). Note that this
510
+ size includes the CRC. If MRRU is negotiated to be 0,
511
+ no segment headers are allowed on the channel.""",
512
+ "reference" :
513
+ """RFC 3095, Section 5.1.1""",
514
+ }, # column
515
+ "rohcInstanceContextStorageTime" : {
516
+ "nodetype" : "column",
517
+ "moduleName" : "ROHC-MIB",
518
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.12",
519
+ "status" : "current",
520
+ "syntax" : {
521
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
522
+ },
523
+ "access" : "readwrite",
524
+ "default" : "360000",
525
+ "units" : "centi-seconds",
526
+ "description" :
527
+ """This object indicates the default maximum amount of time
528
+ information on a context belonging to this instance is kept
529
+ as entry in the rohcContextTable after the context is
530
+ expired or terminated. The value of this object is used
531
+ to initialize rohcContexStorageTime object when a new
532
+ context is created.
533
+ Changing the value of an rohcInstanceContextStorageTime
534
+ instance does not affect any entry of the rohcContextTable
535
+ created previously.
536
+ ROHC-MIB implementations SHOULD store the set value of this
537
+ object persistently.""",
538
+ }, # column
539
+ "rohcInstanceStatus" : {
540
+ "nodetype" : "column",
541
+ "moduleName" : "ROHC-MIB",
542
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.13",
543
+ "status" : "current",
544
+ "syntax" : {
545
+ "type" : {
546
+ "basetype" : "Enumeration",
547
+ "enabled" : {
548
+ "nodetype" : "namednumber",
549
+ "number" : "1"
550
+ },
551
+ "disabled" : {
552
+ "nodetype" : "namednumber",
553
+ "number" : "2"
554
+ },
555
+ },
556
+ },
557
+ "access" : "readonly",
558
+ "description" :
559
+ """Status of the instance of ROHC.""",
560
+ }, # column
561
+ "rohcInstanceContextsTotal" : {
562
+ "nodetype" : "column",
563
+ "moduleName" : "ROHC-MIB",
564
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.14",
565
+ "status" : "current",
566
+ "syntax" : {
567
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
568
+ },
569
+ "access" : "readonly",
570
+ "description" :
571
+ """Counter of all contexts created by this instance.
572
+
573
+ Discontinuities in the value of this counter can
574
+ occur at re-initialization of the management
575
+ system, and at other times as indicated by the
576
+ value of ifCounterDiscontinuityTime.""",
577
+ }, # column
578
+ "rohcInstanceContextsCurrent" : {
579
+ "nodetype" : "column",
580
+ "moduleName" : "ROHC-MIB",
581
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.15",
582
+ "status" : "current",
583
+ "syntax" : {
584
+ "type" : { "module" :"", "name" : "Unsigned32"},
585
+ },
586
+ "access" : "readonly",
587
+ "description" :
588
+ """Number of currently active contexts created by this
589
+ instance.""",
590
+ }, # column
591
+ "rohcInstancePackets" : {
592
+ "nodetype" : "column",
593
+ "moduleName" : "ROHC-MIB",
594
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.16",
595
+ "status" : "current",
596
+ "syntax" : {
597
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
598
+ },
599
+ "access" : "readonly",
600
+ "description" :
601
+ """Counter of all packets passing this instance.
602
+
603
+ Discontinuities in the value of this counter can
604
+ occur at re-initialization of the management
605
+ system, and at other times as indicated by the
606
+ value of ifCounterDiscontinuityTime.""",
607
+ }, # column
608
+ "rohcInstanceIRs" : {
609
+ "nodetype" : "column",
610
+ "moduleName" : "ROHC-MIB",
611
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.17",
612
+ "status" : "current",
613
+ "syntax" : {
614
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
615
+ },
616
+ "access" : "readonly",
617
+ "description" :
618
+ """The number of all IR packets that are either sent
619
+ or received by this instance.
620
+
621
+ Discontinuities in the value of this counter can
622
+ occur at re-initialization of the management
623
+ system, and at other times as indicated by the
624
+
625
+
626
+
627
+ value of ifCounterDiscontinuityTime.""",
628
+ "reference" :
629
+ """RFC 3095, Section 5.7.7.1""",
630
+ }, # column
631
+ "rohcInstanceIRDYNs" : {
632
+ "nodetype" : "column",
633
+ "moduleName" : "ROHC-MIB",
634
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.18",
635
+ "status" : "current",
636
+ "syntax" : {
637
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
638
+ },
639
+ "access" : "readonly",
640
+ "description" :
641
+ """The number of all IR-DYN packets that are either sent
642
+ or received by this instance.
643
+
644
+ Discontinuities in the value of this counter can
645
+ occur at re-initialization of the management
646
+ system, and at other times as indicated by the
647
+ value of ifCounterDiscontinuityTime.""",
648
+ "reference" :
649
+ """RFC 3095, Section 5.7.7.2""",
650
+ }, # column
651
+ "rohcInstanceFeedbacks" : {
652
+ "nodetype" : "column",
653
+ "moduleName" : "ROHC-MIB",
654
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.19",
655
+ "status" : "current",
656
+ "syntax" : {
657
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
658
+ },
659
+ "access" : "readonly",
660
+ "description" :
661
+ """The number of all feedbacks that are either sent
662
+ or received by this instance.
663
+
664
+ Discontinuities in the value of this counter can
665
+ occur at re-initialization of the management
666
+ system, and at other times as indicated by the
667
+ value of ifCounterDiscontinuityTime.""",
668
+ }, # column
669
+ "rohcInstanceCompressionRatio" : {
670
+ "nodetype" : "column",
671
+ "moduleName" : "ROHC-MIB",
672
+ "oid" : "1.3.6.1.2.1.112.1.1.2.1.20",
673
+ "status" : "current",
674
+ "syntax" : {
675
+ "type" : { "module" :"ROHC-MIB", "name" : "RohcCompressionRatio"},
676
+ },
677
+ "access" : "readonly",
678
+ "description" :
679
+ """This object indicates the compression ratio so far over all
680
+ packets on the channel served by this instance. The
681
+ compression is computed over all bytes of the IP packets
682
+ including the IP header but excluding all lower layer
683
+ headers.""",
684
+ }, # column
685
+ "rohcProfileTable" : {
686
+ "nodetype" : "table",
687
+ "moduleName" : "ROHC-MIB",
688
+ "oid" : "1.3.6.1.2.1.112.1.1.3",
689
+ "status" : "current",
690
+ "description" :
691
+ """This table lists a set of profiles supported by the
692
+ instance.""",
693
+ "reference" :
694
+ """RFC 3095, Section 5.1.1""",
695
+ }, # table
696
+ "rohcProfileEntry" : {
697
+ "nodetype" : "row",
698
+ "moduleName" : "ROHC-MIB",
699
+ "oid" : "1.3.6.1.2.1.112.1.1.3.1",
700
+ "status" : "current",
701
+ "linkage" : [
702
+ "rohcChannelID",
703
+ "rohcProfile",
704
+ ],
705
+ "description" :
706
+ """An entry describing a particular profile supported by
707
+ the instance. It is indexed by the rohcChannelID
708
+ identifying the instance and by the rohcProfile.""",
709
+ }, # row
710
+ "rohcProfile" : {
711
+ "nodetype" : "column",
712
+ "moduleName" : "ROHC-MIB",
713
+ "oid" : "1.3.6.1.2.1.112.1.1.3.1.2",
714
+ "status" : "current",
715
+ "syntax" : {
716
+ "type" : {
717
+ "basetype" : "Unsigned32",
718
+ "ranges" : [
719
+ {
720
+ "min" : "0",
721
+ "max" : "65535"
722
+ },
723
+ ],
724
+ "range" : {
725
+ "min" : "0",
726
+ "max" : "65535"
727
+ },
728
+ },
729
+ },
730
+ "access" : "noaccess",
731
+ "description" :
732
+ """Identifier of a profile supported. For a listing of
733
+ possible profile values, see the IANA registry for
734
+ 'RObust Header Compression (ROHC) Profile Identifiers'
735
+ at http://www.iana.org/assignments/rohc-pro-ids""",
736
+ }, # column
737
+ "rohcProfileVendor" : {
738
+ "nodetype" : "column",
739
+ "moduleName" : "ROHC-MIB",
740
+ "oid" : "1.3.6.1.2.1.112.1.1.3.1.3",
741
+ "status" : "current",
742
+ "syntax" : {
743
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
744
+ },
745
+ "access" : "readonly",
746
+ "description" :
747
+ """An object identifier that identifies the vendor who
748
+ provides the implementation of robust header description.
749
+ This object identifier SHALL point to the object identifier
750
+ directly below the enterprise object identifier
751
+ {1 3 6 1 4 1} allocated for the vendor. The value must be
752
+ the object identifier {0 0} if the vendor is not known.""",
753
+ }, # column
754
+ "rohcProfileVersion" : {
755
+ "nodetype" : "column",
756
+ "moduleName" : "ROHC-MIB",
757
+ "oid" : "1.3.6.1.2.1.112.1.1.3.1.4",
758
+ "status" : "current",
759
+ "syntax" : {
760
+ "type" : {
761
+ "basetype" : "OctetString",
762
+ "parent module" : {
763
+ "name" : "SNMP-FRAMEWORK-MIB",
764
+ "type" : "SnmpAdminString",
765
+ },
766
+ "ranges" : [
767
+ {
768
+ "min" : "0",
769
+ "max" : "32"
770
+ },
771
+ ],
772
+ "range" : {
773
+ "min" : "0",
774
+ "max" : "32"
775
+ },
776
+ },
777
+ },
778
+ "access" : "readonly",
779
+ "description" :
780
+ """The version number of the implementation of robust header
781
+ compression. The zero-length string shall be used if the
782
+ implementation does not have a version number.
783
+
784
+ It is suggested that the version number consist of one or
785
+ more decimal numbers separated by dots, where the first
786
+ number is called the major version number.""",
787
+ }, # column
788
+ "rohcProfileDescr" : {
789
+ "nodetype" : "column",
790
+ "moduleName" : "ROHC-MIB",
791
+ "oid" : "1.3.6.1.2.1.112.1.1.3.1.5",
792
+ "status" : "current",
793
+ "syntax" : {
794
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
795
+ },
796
+ "access" : "readonly",
797
+ "description" :
798
+ """A textual description of the implementation.""",
799
+ }, # column
800
+ "rohcProfileNegotiated" : {
801
+ "nodetype" : "column",
802
+ "moduleName" : "ROHC-MIB",
803
+ "oid" : "1.3.6.1.2.1.112.1.1.3.1.6",
804
+ "status" : "current",
805
+ "syntax" : {
806
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
807
+ },
808
+ "access" : "readonly",
809
+ "description" :
810
+ """When retrieved, this boolean object returns true
811
+ if the profile has been negotiated to be used at
812
+ the instance, i.e., is supported also be the
813
+ corresponding compressor/decompressor.""",
814
+ }, # column
815
+ "rohcContextTable" : {
816
+ "nodetype" : "table",
817
+ "moduleName" : "ROHC-MIB",
818
+ "oid" : "1.3.6.1.2.1.112.1.2",
819
+ "status" : "current",
820
+ "description" :
821
+ """This table lists and describes all compressor contexts
822
+ per instance.""",
823
+ }, # table
824
+ "rohcContextEntry" : {
825
+ "nodetype" : "row",
826
+ "moduleName" : "ROHC-MIB",
827
+ "oid" : "1.3.6.1.2.1.112.1.2.1",
828
+ "status" : "current",
829
+ "linkage" : [
830
+ "rohcChannelID",
831
+ "rohcContextCID",
832
+ ],
833
+ "description" :
834
+ """An entry describing a particular compressor context.""",
835
+ }, # row
836
+ "rohcContextCID" : {
837
+ "nodetype" : "column",
838
+ "moduleName" : "ROHC-MIB",
839
+ "oid" : "1.3.6.1.2.1.112.1.2.1.2",
840
+ "status" : "current",
841
+ "syntax" : {
842
+ "type" : {
843
+ "basetype" : "Unsigned32",
844
+ "ranges" : [
845
+ {
846
+ "min" : "0",
847
+ "max" : "16383"
848
+ },
849
+ ],
850
+ "range" : {
851
+ "min" : "0",
852
+ "max" : "16383"
853
+ },
854
+ },
855
+ },
856
+ "access" : "noaccess",
857
+ "description" :
858
+ """The context identifier (CID) of this context.""",
859
+ "reference" :
860
+ """RFC 3095, Sections 5.1.1 and 5.1.3""",
861
+ }, # column
862
+ "rohcContextCIDState" : {
863
+ "nodetype" : "column",
864
+ "moduleName" : "ROHC-MIB",
865
+ "oid" : "1.3.6.1.2.1.112.1.2.1.3",
866
+ "status" : "current",
867
+ "syntax" : {
868
+ "type" : {
869
+ "basetype" : "Enumeration",
870
+ "unused" : {
871
+ "nodetype" : "namednumber",
872
+ "number" : "1"
873
+ },
874
+ "active" : {
875
+ "nodetype" : "namednumber",
876
+ "number" : "2"
877
+ },
878
+ "expired" : {
879
+ "nodetype" : "namednumber",
880
+ "number" : "3"
881
+ },
882
+ "terminated" : {
883
+ "nodetype" : "namednumber",
884
+ "number" : "4"
885
+ },
886
+ },
887
+ },
888
+ "access" : "readonly",
889
+ "description" :
890
+ """State of the CID. When a CID is assigned to a context,
891
+ its state changes from `unused' to `active'. The active
892
+ context may stop operation due to some explicit
893
+ signalling or after observing no packet for some specified
894
+ time. In the first case then the CID state changes to
895
+ `terminated', in the latter case it changes to `expired'.
896
+ If the CID is re-used again for another context, the
897
+ state changes back to `active'.""",
898
+ }, # column
899
+ "rohcContextProfile" : {
900
+ "nodetype" : "column",
901
+ "moduleName" : "ROHC-MIB",
902
+ "oid" : "1.3.6.1.2.1.112.1.2.1.4",
903
+ "status" : "current",
904
+ "syntax" : {
905
+ "type" : {
906
+ "basetype" : "Unsigned32",
907
+ "ranges" : [
908
+ {
909
+ "min" : "0",
910
+ "max" : "65535"
911
+ },
912
+ ],
913
+ "range" : {
914
+ "min" : "0",
915
+ "max" : "65535"
916
+ },
917
+ },
918
+ },
919
+ "access" : "readonly",
920
+ "description" :
921
+ """Identifier of the profile for this context.
922
+ The profile is identified by its index in the
923
+ rohcProfileTable for this instance. There MUST exist a
924
+ corresponding entry in the rohcProfileTable using the
925
+ value of rohcContextProfile as second part of the index
926
+ (and using the same rohcChannelID as first part of the
927
+ index).""",
928
+ }, # column
929
+ "rohcContextDecompressorDepth" : {
930
+ "nodetype" : "column",
931
+ "moduleName" : "ROHC-MIB",
932
+ "oid" : "1.3.6.1.2.1.112.1.2.1.5",
933
+ "status" : "current",
934
+ "syntax" : {
935
+ "type" : { "module" :"", "name" : "Unsigned32"},
936
+ },
937
+ "access" : "readonly",
938
+ "description" :
939
+ """This object indicates whether reverse decompression, for
940
+ example as described in RFC 3095, Section 6.1, is used
941
+ on this channel or not, and if used, to what extent.
942
+
943
+
944
+
945
+
946
+ Its value is only valid for decompressor contexts, i.e.,
947
+ if rohcInstanceType has the value decompressor(2). For
948
+ compressor contexts where rohcInstanceType has the value
949
+ compressor(1), the value of this object is irrelevant
950
+ and MUST be set to zero (0).
951
+
952
+ The value of the reverse decompression depth indicates
953
+ the maximum number of packets that are buffered, and thus
954
+ possibly be reverse decompressed by the decompressor.
955
+ A zero (0) value means that reverse decompression is not
956
+ used.""",
957
+ }, # column
958
+ "rohcContextStorageTime" : {
959
+ "nodetype" : "column",
960
+ "moduleName" : "ROHC-MIB",
961
+ "oid" : "1.3.6.1.2.1.112.1.2.1.6",
962
+ "status" : "current",
963
+ "syntax" : {
964
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
965
+ },
966
+ "access" : "readwrite",
967
+ "units" : "centi-seconds",
968
+ "description" :
969
+ """The value of this object specifies how long this row
970
+ can exist in the rohcContextTable after the
971
+ rohcContextCIDState switched to expired(3) or
972
+ terminated(4). This object returns the remaining time
973
+ that the row may exist before it is aged out. The object
974
+ is initialized with the value of the associated
975
+ rohcContextStorageTime object. After expiration or
976
+ termination of the context, the value of this object ticks
977
+ backwards. The entry in the rohcContextTable is destroyed
978
+ when the value reaches 0.
979
+
980
+ The value of this object may be set in order to increase or
981
+ reduce the remaining time that the row may exist. Setting
982
+ the value to 0 will destroy this entry as soon as the
983
+ rochContextCIDState has the value expired(3) or
984
+ terminated(4).
985
+
986
+ Note that there is no guarantee that the row is stored as
987
+ long as this object indicates. In case of limited CID
988
+ space, the instance may re-use a CID before the storage
989
+ time of the corresponding row in rohcContextTable reaches
990
+ the value of 0. In this case the information stored in this
991
+ row is not anymore available.""",
992
+ }, # column
993
+ "rohcContextActivationTime" : {
994
+ "nodetype" : "column",
995
+ "moduleName" : "ROHC-MIB",
996
+ "oid" : "1.3.6.1.2.1.112.1.2.1.7",
997
+ "status" : "current",
998
+ "syntax" : {
999
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1000
+ },
1001
+ "access" : "readonly",
1002
+ "default" : "0x0000000000000000",
1003
+ "description" :
1004
+ """The date and time when the context started to be able to
1005
+ compress packets or decompress packets, respectively.
1006
+ The value '0000000000000000'H is returned if the context
1007
+ has not been activated yet.""",
1008
+ }, # column
1009
+ "rohcContextDeactivationTime" : {
1010
+ "nodetype" : "column",
1011
+ "moduleName" : "ROHC-MIB",
1012
+ "oid" : "1.3.6.1.2.1.112.1.2.1.8",
1013
+ "status" : "current",
1014
+ "syntax" : {
1015
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1016
+ },
1017
+ "access" : "readonly",
1018
+ "default" : "0x0000000000000000",
1019
+ "description" :
1020
+ """The date and time when the context stopped being able to
1021
+ compress packets or decompress packets, respectively,
1022
+ because it expired or was terminated for other reasons.
1023
+ The value '0000000000000000'H is returned if the context
1024
+ has not been deactivated yet.""",
1025
+ }, # column
1026
+ "rohcContextPackets" : {
1027
+ "nodetype" : "column",
1028
+ "moduleName" : "ROHC-MIB",
1029
+ "oid" : "1.3.6.1.2.1.112.1.2.1.9",
1030
+ "status" : "current",
1031
+ "syntax" : {
1032
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1033
+ },
1034
+ "access" : "readonly",
1035
+ "description" :
1036
+ """The number of all packets passing this context.
1037
+
1038
+ Discontinuities in the value of this counter can
1039
+ occur at re-initialization of the management
1040
+ system, and at other times as indicated by the
1041
+ value of ifCounterDiscontinuityTime. For checking
1042
+ ifCounterDiscontinuityTime, the interface index is
1043
+ required. It can be determined by reading the
1044
+ rohcChannelTable.""",
1045
+ }, # column
1046
+ "rohcContextIRs" : {
1047
+ "nodetype" : "column",
1048
+ "moduleName" : "ROHC-MIB",
1049
+ "oid" : "1.3.6.1.2.1.112.1.2.1.10",
1050
+ "status" : "current",
1051
+ "syntax" : {
1052
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1053
+ },
1054
+ "access" : "readonly",
1055
+ "description" :
1056
+ """The number of all IR packets sent or received,
1057
+ respectively, by this context.
1058
+
1059
+ Discontinuities in the value of this counter can
1060
+ occur at re-initialization of the management
1061
+ system, and at other times as indicated by the
1062
+
1063
+
1064
+
1065
+ value of ifCounterDiscontinuityTime. For checking
1066
+ ifCounterDiscontinuityTime, the interface index is
1067
+ required. It can be determined by reading the
1068
+ rohcChannelTable.""",
1069
+ "reference" :
1070
+ """RFC 3095, Section 5.7.7.1""",
1071
+ }, # column
1072
+ "rohcContextIRDYNs" : {
1073
+ "nodetype" : "column",
1074
+ "moduleName" : "ROHC-MIB",
1075
+ "oid" : "1.3.6.1.2.1.112.1.2.1.11",
1076
+ "status" : "current",
1077
+ "syntax" : {
1078
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1079
+ },
1080
+ "access" : "readonly",
1081
+ "description" :
1082
+ """The number of all IR-DYN packets sent or received,
1083
+ respectively, by this context.
1084
+
1085
+ Discontinuities in the value of this counter can
1086
+ occur at re-initialization of the management
1087
+ system, and at other times as indicated by the
1088
+ value of ifCounterDiscontinuityTime. For checking
1089
+ ifCounterDiscontinuityTime, the interface index is
1090
+ required. It can be determined by reading the
1091
+ rohcChannelTable.""",
1092
+ "reference" :
1093
+ """RFC 3095, Section 5.7.7.2""",
1094
+ }, # column
1095
+ "rohcContextFeedbacks" : {
1096
+ "nodetype" : "column",
1097
+ "moduleName" : "ROHC-MIB",
1098
+ "oid" : "1.3.6.1.2.1.112.1.2.1.12",
1099
+ "status" : "current",
1100
+ "syntax" : {
1101
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1102
+ },
1103
+ "access" : "readonly",
1104
+ "description" :
1105
+ """The number of all feedbacks sent or received,
1106
+ respectively, by this context.
1107
+
1108
+ Discontinuities in the value of this counter can
1109
+ occur at re-initialization of the management
1110
+ system, and at other times as indicated by the
1111
+ value of ifCounterDiscontinuityTime. For checking
1112
+ ifCounterDiscontinuityTime, the interface index is
1113
+ required. It can be determined by reading the
1114
+ rohcChannelTable.""",
1115
+ }, # column
1116
+ "rohcContextDecompressorFailures" : {
1117
+ "nodetype" : "column",
1118
+ "moduleName" : "ROHC-MIB",
1119
+ "oid" : "1.3.6.1.2.1.112.1.2.1.13",
1120
+ "status" : "current",
1121
+ "syntax" : {
1122
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1123
+ },
1124
+ "access" : "readonly",
1125
+ "description" :
1126
+ """The number of all decompressor failures so far in this
1127
+ context. The number is only valid for decompressor
1128
+ contexts, i.e., if rohcInstanceType has the value
1129
+ decompressor(2).
1130
+
1131
+ Discontinuities in the value of this counter can
1132
+ occur at re-initialization of the management
1133
+ system, and at other times as indicated by the
1134
+ value of ifCounterDiscontinuityTime. For checking
1135
+ ifCounterDiscontinuityTime, the interface index is
1136
+ required. It can be determined by reading the
1137
+ rohcChannelTable.""",
1138
+ }, # column
1139
+ "rohcContextDecompressorRepairs" : {
1140
+ "nodetype" : "column",
1141
+ "moduleName" : "ROHC-MIB",
1142
+ "oid" : "1.3.6.1.2.1.112.1.2.1.14",
1143
+ "status" : "current",
1144
+ "syntax" : {
1145
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1146
+ },
1147
+ "access" : "readonly",
1148
+ "description" :
1149
+ """The number of all context repairs so far in this
1150
+ context. The number is only valid for decompressor
1151
+ contexts, i.e., if rohcInstanceType has the value
1152
+ decompressor(2).
1153
+
1154
+ Discontinuities in the value of this counter can
1155
+ occur at re-initialization of the management
1156
+ system, and at other times as indicated by the
1157
+ value of ifCounterDiscontinuityTime. For checking
1158
+ ifCounterDiscontinuityTime, the interface index is
1159
+ required. It can be determined by reading the
1160
+ rohcChannelTable.""",
1161
+ }, # column
1162
+ "rohcContextAllPacketsRatio" : {
1163
+ "nodetype" : "column",
1164
+ "moduleName" : "ROHC-MIB",
1165
+ "oid" : "1.3.6.1.2.1.112.1.2.1.15",
1166
+ "status" : "current",
1167
+ "syntax" : {
1168
+ "type" : { "module" :"ROHC-MIB", "name" : "RohcCompressionRatio"},
1169
+ },
1170
+ "access" : "readonly",
1171
+ "description" :
1172
+ """This object indicates the compression ratio so far over all
1173
+ packets passing this context. The compression is computed
1174
+ over all bytes of the IP packets including the IP header
1175
+ but excluding all lower layer headers.""",
1176
+ }, # column
1177
+ "rohcContextAllHeadersRatio" : {
1178
+ "nodetype" : "column",
1179
+ "moduleName" : "ROHC-MIB",
1180
+ "oid" : "1.3.6.1.2.1.112.1.2.1.16",
1181
+ "status" : "current",
1182
+ "syntax" : {
1183
+ "type" : { "module" :"ROHC-MIB", "name" : "RohcCompressionRatio"},
1184
+ },
1185
+ "access" : "readonly",
1186
+ "description" :
1187
+ """This object indicates the compression ratio so far over all
1188
+ packet headers passing this context. The compression is
1189
+ computed over all bytes of all headers that are subject to
1190
+ compression for the used profile.""",
1191
+ }, # column
1192
+ "rohcContextAllPacketsMeanSize" : {
1193
+ "nodetype" : "column",
1194
+ "moduleName" : "ROHC-MIB",
1195
+ "oid" : "1.3.6.1.2.1.112.1.2.1.17",
1196
+ "status" : "current",
1197
+ "syntax" : {
1198
+ "type" : { "module" :"", "name" : "Unsigned32"},
1199
+ },
1200
+ "access" : "readonly",
1201
+ "description" :
1202
+ """This object indicates the mean compressed packet size
1203
+ of all packets passing this context. The packet size
1204
+ includes the IP header and payload but excludes all lower
1205
+ layer headers. The mean value is given in byte rounded
1206
+ to the next integer value.""",
1207
+ }, # column
1208
+ "rohcContextAllHeadersMeanSize" : {
1209
+ "nodetype" : "column",
1210
+ "moduleName" : "ROHC-MIB",
1211
+ "oid" : "1.3.6.1.2.1.112.1.2.1.18",
1212
+ "status" : "current",
1213
+ "syntax" : {
1214
+ "type" : { "module" :"", "name" : "Unsigned32"},
1215
+ },
1216
+ "access" : "readonly",
1217
+ "description" :
1218
+ """This object indicates the mean compressed packet header size
1219
+ of all packets passing this context. The packet header size
1220
+ is the sum of the size of all headers of a packet that are
1221
+ subject to compression for the used profile. The mean value
1222
+ is given in byte rounded to the next integer value.""",
1223
+ }, # column
1224
+ "rohcContextLastPacketsRatio" : {
1225
+ "nodetype" : "column",
1226
+ "moduleName" : "ROHC-MIB",
1227
+ "oid" : "1.3.6.1.2.1.112.1.2.1.19",
1228
+ "status" : "current",
1229
+ "syntax" : {
1230
+ "type" : { "module" :"ROHC-MIB", "name" : "RohcCompressionRatio"},
1231
+ },
1232
+ "access" : "readonly",
1233
+ "description" :
1234
+ """This object indicates the compression ratio
1235
+ concerning the last 16 packets passing this context
1236
+ or concerning all packets passing this context
1237
+ if they are less than 16, so far. The compression is
1238
+ computed over all bytes of the IP packets including the IP
1239
+ header but excluding all lower layer headers.""",
1240
+ }, # column
1241
+ "rohcContextLastHeadersRatio" : {
1242
+ "nodetype" : "column",
1243
+ "moduleName" : "ROHC-MIB",
1244
+ "oid" : "1.3.6.1.2.1.112.1.2.1.20",
1245
+ "status" : "current",
1246
+ "syntax" : {
1247
+ "type" : { "module" :"ROHC-MIB", "name" : "RohcCompressionRatio"},
1248
+ },
1249
+ "access" : "readonly",
1250
+ "description" :
1251
+ """This object indicates the compression ratio concerning the
1252
+ headers of the last 16 packets passing this context or
1253
+ concerning the headers of all packets passing this context
1254
+ if they are less than 16, so far. The compression is
1255
+ computed over all bytes of all headers that are subject to
1256
+ compression for the used profile.""",
1257
+ }, # column
1258
+ "rohcContextLastPacketsMeanSize" : {
1259
+ "nodetype" : "column",
1260
+ "moduleName" : "ROHC-MIB",
1261
+ "oid" : "1.3.6.1.2.1.112.1.2.1.21",
1262
+ "status" : "current",
1263
+ "syntax" : {
1264
+ "type" : { "module" :"", "name" : "Unsigned32"},
1265
+ },
1266
+ "access" : "readonly",
1267
+ "description" :
1268
+ """This object indicates the mean compressed packet size
1269
+ concerning the last 16 packets passing this context or
1270
+ concerning all packets passing this context if they are
1271
+ less than 16, so far. The packet size includes the IP
1272
+ header and payload but excludes all lower layer headers.
1273
+ The mean value is given in byte rounded to the next
1274
+ integer value.""",
1275
+ }, # column
1276
+ "rohcContextLastHeadersMeanSize" : {
1277
+ "nodetype" : "column",
1278
+ "moduleName" : "ROHC-MIB",
1279
+ "oid" : "1.3.6.1.2.1.112.1.2.1.22",
1280
+ "status" : "current",
1281
+ "syntax" : {
1282
+ "type" : { "module" :"", "name" : "Unsigned32"},
1283
+ },
1284
+ "access" : "readonly",
1285
+ "description" :
1286
+ """This object indicates the mean compressed packet header size
1287
+ concerning the last 16 packets passing this context or
1288
+ concerning all packets passing this context if they are
1289
+ less than 16, so far. The packet header size is the sum of
1290
+ the size of all headers of a packet that are subject to
1291
+ compression for the used profile. The mean value is given
1292
+ in byte rounded to the next integer value.""",
1293
+ }, # column
1294
+ "rohcConformance" : {
1295
+ "nodetype" : "node",
1296
+ "moduleName" : "ROHC-MIB",
1297
+ "oid" : "1.3.6.1.2.1.112.2",
1298
+ }, # node
1299
+ "rohcCompliances" : {
1300
+ "nodetype" : "node",
1301
+ "moduleName" : "ROHC-MIB",
1302
+ "oid" : "1.3.6.1.2.1.112.2.1",
1303
+ }, # node
1304
+ "rohcGroups" : {
1305
+ "nodetype" : "node",
1306
+ "moduleName" : "ROHC-MIB",
1307
+ "oid" : "1.3.6.1.2.1.112.2.2",
1308
+ }, # node
1309
+ }, # nodes
1310
+
1311
+ "groups" : {
1312
+ "rohcInstanceGroup" : {
1313
+ "nodetype" : "group",
1314
+ "moduleName" : "ROHC-MIB",
1315
+ "oid" : "1.3.6.1.2.1.112.2.2.2",
1316
+ "status" : "current",
1317
+ "members" : {
1318
+ "rohcChannelType" : {
1319
+ "nodetype" : "member",
1320
+ "module" : "ROHC-MIB"
1321
+ },
1322
+ "rohcChannelFeedbackFor" : {
1323
+ "nodetype" : "member",
1324
+ "module" : "ROHC-MIB"
1325
+ },
1326
+ "rohcChannelDescr" : {
1327
+ "nodetype" : "member",
1328
+ "module" : "ROHC-MIB"
1329
+ },
1330
+ "rohcChannelStatus" : {
1331
+ "nodetype" : "member",
1332
+ "module" : "ROHC-MIB"
1333
+ },
1334
+ "rohcInstanceFBChannelID" : {
1335
+ "nodetype" : "member",
1336
+ "module" : "ROHC-MIB"
1337
+ },
1338
+ "rohcInstanceVendor" : {
1339
+ "nodetype" : "member",
1340
+ "module" : "ROHC-MIB"
1341
+ },
1342
+ "rohcInstanceVersion" : {
1343
+ "nodetype" : "member",
1344
+ "module" : "ROHC-MIB"
1345
+ },
1346
+ "rohcInstanceDescr" : {
1347
+ "nodetype" : "member",
1348
+ "module" : "ROHC-MIB"
1349
+ },
1350
+ "rohcInstanceClockRes" : {
1351
+ "nodetype" : "member",
1352
+ "module" : "ROHC-MIB"
1353
+ },
1354
+ "rohcInstanceMaxCID" : {
1355
+ "nodetype" : "member",
1356
+ "module" : "ROHC-MIB"
1357
+ },
1358
+ "rohcInstanceLargeCIDs" : {
1359
+ "nodetype" : "member",
1360
+ "module" : "ROHC-MIB"
1361
+ },
1362
+ "rohcInstanceMRRU" : {
1363
+ "nodetype" : "member",
1364
+ "module" : "ROHC-MIB"
1365
+ },
1366
+ "rohcInstanceStatus" : {
1367
+ "nodetype" : "member",
1368
+ "module" : "ROHC-MIB"
1369
+ },
1370
+ "rohcProfileVendor" : {
1371
+ "nodetype" : "member",
1372
+ "module" : "ROHC-MIB"
1373
+ },
1374
+ "rohcProfileVersion" : {
1375
+ "nodetype" : "member",
1376
+ "module" : "ROHC-MIB"
1377
+ },
1378
+ "rohcProfileDescr" : {
1379
+ "nodetype" : "member",
1380
+ "module" : "ROHC-MIB"
1381
+ },
1382
+ "rohcProfileNegotiated" : {
1383
+ "nodetype" : "member",
1384
+ "module" : "ROHC-MIB"
1385
+ },
1386
+ }, # members
1387
+ "description" :
1388
+ """A collection of objects providing information about
1389
+ ROHC instances, used channels and available profiles.""",
1390
+ }, # group
1391
+ "rohcStatisticsGroup" : {
1392
+ "nodetype" : "group",
1393
+ "moduleName" : "ROHC-MIB",
1394
+ "oid" : "1.3.6.1.2.1.112.2.2.4",
1395
+ "status" : "current",
1396
+ "members" : {
1397
+ "rohcInstanceContextsTotal" : {
1398
+ "nodetype" : "member",
1399
+ "module" : "ROHC-MIB"
1400
+ },
1401
+ "rohcInstanceContextsCurrent" : {
1402
+ "nodetype" : "member",
1403
+ "module" : "ROHC-MIB"
1404
+ },
1405
+ "rohcInstancePackets" : {
1406
+ "nodetype" : "member",
1407
+ "module" : "ROHC-MIB"
1408
+ },
1409
+ "rohcInstanceIRs" : {
1410
+ "nodetype" : "member",
1411
+ "module" : "ROHC-MIB"
1412
+ },
1413
+ "rohcInstanceIRDYNs" : {
1414
+ "nodetype" : "member",
1415
+ "module" : "ROHC-MIB"
1416
+ },
1417
+ "rohcInstanceFeedbacks" : {
1418
+ "nodetype" : "member",
1419
+ "module" : "ROHC-MIB"
1420
+ },
1421
+ "rohcInstanceCompressionRatio" : {
1422
+ "nodetype" : "member",
1423
+ "module" : "ROHC-MIB"
1424
+ },
1425
+ }, # members
1426
+ "description" :
1427
+ """A collection of objects providing ROHC statistics.""",
1428
+ }, # group
1429
+ "rohcContextGroup" : {
1430
+ "nodetype" : "group",
1431
+ "moduleName" : "ROHC-MIB",
1432
+ "oid" : "1.3.6.1.2.1.112.2.2.5",
1433
+ "status" : "current",
1434
+ "members" : {
1435
+ "rohcContextCIDState" : {
1436
+ "nodetype" : "member",
1437
+ "module" : "ROHC-MIB"
1438
+ },
1439
+ "rohcContextProfile" : {
1440
+ "nodetype" : "member",
1441
+ "module" : "ROHC-MIB"
1442
+ },
1443
+ "rohcContextDecompressorDepth" : {
1444
+ "nodetype" : "member",
1445
+ "module" : "ROHC-MIB"
1446
+ },
1447
+ }, # members
1448
+ "description" :
1449
+ """A collection of objects providing information about
1450
+ ROHC compressor contexts and decompressor contexts.""",
1451
+ }, # group
1452
+ "rohcTimerGroup" : {
1453
+ "nodetype" : "group",
1454
+ "moduleName" : "ROHC-MIB",
1455
+ "oid" : "1.3.6.1.2.1.112.2.2.6",
1456
+ "status" : "current",
1457
+ "members" : {
1458
+ "rohcInstanceContextStorageTime" : {
1459
+ "nodetype" : "member",
1460
+ "module" : "ROHC-MIB"
1461
+ },
1462
+ "rohcContextStorageTime" : {
1463
+ "nodetype" : "member",
1464
+ "module" : "ROHC-MIB"
1465
+ },
1466
+ "rohcContextActivationTime" : {
1467
+ "nodetype" : "member",
1468
+ "module" : "ROHC-MIB"
1469
+ },
1470
+ "rohcContextDeactivationTime" : {
1471
+ "nodetype" : "member",
1472
+ "module" : "ROHC-MIB"
1473
+ },
1474
+ }, # members
1475
+ "description" :
1476
+ """A collection of objects providing statistical information
1477
+ about ROHC compressor contexts and decompressor contexts.""",
1478
+ }, # group
1479
+ "rohcContextStatisticsGroup" : {
1480
+ "nodetype" : "group",
1481
+ "moduleName" : "ROHC-MIB",
1482
+ "oid" : "1.3.6.1.2.1.112.2.2.7",
1483
+ "status" : "current",
1484
+ "members" : {
1485
+ "rohcContextPackets" : {
1486
+ "nodetype" : "member",
1487
+ "module" : "ROHC-MIB"
1488
+ },
1489
+ "rohcContextIRs" : {
1490
+ "nodetype" : "member",
1491
+ "module" : "ROHC-MIB"
1492
+ },
1493
+ "rohcContextIRDYNs" : {
1494
+ "nodetype" : "member",
1495
+ "module" : "ROHC-MIB"
1496
+ },
1497
+ "rohcContextFeedbacks" : {
1498
+ "nodetype" : "member",
1499
+ "module" : "ROHC-MIB"
1500
+ },
1501
+ "rohcContextDecompressorFailures" : {
1502
+ "nodetype" : "member",
1503
+ "module" : "ROHC-MIB"
1504
+ },
1505
+ "rohcContextDecompressorRepairs" : {
1506
+ "nodetype" : "member",
1507
+ "module" : "ROHC-MIB"
1508
+ },
1509
+ "rohcContextAllPacketsRatio" : {
1510
+ "nodetype" : "member",
1511
+ "module" : "ROHC-MIB"
1512
+ },
1513
+ "rohcContextAllHeadersRatio" : {
1514
+ "nodetype" : "member",
1515
+ "module" : "ROHC-MIB"
1516
+ },
1517
+ "rohcContextAllPacketsMeanSize" : {
1518
+ "nodetype" : "member",
1519
+ "module" : "ROHC-MIB"
1520
+ },
1521
+ "rohcContextAllHeadersMeanSize" : {
1522
+ "nodetype" : "member",
1523
+ "module" : "ROHC-MIB"
1524
+ },
1525
+ "rohcContextLastPacketsRatio" : {
1526
+ "nodetype" : "member",
1527
+ "module" : "ROHC-MIB"
1528
+ },
1529
+ "rohcContextLastHeadersRatio" : {
1530
+ "nodetype" : "member",
1531
+ "module" : "ROHC-MIB"
1532
+ },
1533
+ "rohcContextLastPacketsMeanSize" : {
1534
+ "nodetype" : "member",
1535
+ "module" : "ROHC-MIB"
1536
+ },
1537
+ "rohcContextLastHeadersMeanSize" : {
1538
+ "nodetype" : "member",
1539
+ "module" : "ROHC-MIB"
1540
+ },
1541
+ }, # members
1542
+ "description" :
1543
+ """A collection of objects providing statistical information
1544
+ about ROHC compressor contexts and decompressor contexts.""",
1545
+ }, # group
1546
+ }, # groups
1547
+
1548
+ "compliances" : {
1549
+ "rohcCompliance" : {
1550
+ "nodetype" : "compliance",
1551
+ "moduleName" : "ROHC-MIB",
1552
+ "oid" : "1.3.6.1.2.1.112.2.1.1",
1553
+ "status" : "current",
1554
+ "description" :
1555
+ """The compliance statement for SNMP entities that implement
1556
+ the ROHC-MIB.
1557
+
1558
+ Note that compliance with this compliance
1559
+ statement requires compliance with the
1560
+ ifCompliance3 MODULE-COMPLIANCE statement of the
1561
+ IF-MIB (RFC2863).""",
1562
+ "requires" : {
1563
+ "rohcInstanceGroup" : {
1564
+ "nodetype" : "mandatory",
1565
+ "module" : "ROHC-MIB"
1566
+ },
1567
+ "rohcContextGroup" : {
1568
+ "nodetype" : "mandatory",
1569
+ "module" : "ROHC-MIB"
1570
+ },
1571
+ "rohcStatisticsGroup" : {
1572
+ "nodetype" : "optional",
1573
+ "module" : "ROHC-MIB",
1574
+ "description" :
1575
+ """A compliant implementation does not have to implement
1576
+ the rohcStatisticsGroup.""",
1577
+ },
1578
+ "rohcTimerGroup" : {
1579
+ "nodetype" : "optional",
1580
+ "module" : "ROHC-MIB",
1581
+ "description" :
1582
+ """A compliant implementation does not have to implement
1583
+ the rohcTimerGroup.""",
1584
+ },
1585
+ "rohcContextStatisticsGroup" : {
1586
+ "nodetype" : "optional",
1587
+ "module" : "ROHC-MIB",
1588
+ "description" :
1589
+ """A compliant implementation does not have to implement
1590
+ the rohcContextStatisticsGroup.""",
1591
+ },
1592
+ }, # requires
1593
+ "refinements" : {
1594
+ "rohcInstanceContextStorageTime" : {
1595
+ "module" : "ROHC-MIB",
1596
+ "access" : "readonly",
1597
+ "description" :
1598
+ """A compliant implementation does not have to support changing
1599
+ the value of object rohcInstanceContextStorageTime.""",
1600
+ },
1601
+ "rohcContextStorageTime" : {
1602
+ "module" : "ROHC-MIB",
1603
+ "access" : "readonly",
1604
+ "description" :
1605
+ """A compliant implementation does not have to support changing
1606
+ the value of object rohcContextStorageTime.""",
1607
+ },
1608
+ }, # refinements
1609
+
1610
+ }, # compliance
1611
+ }, # compliances
1612
+
1613
+ }