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,2695 @@
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 RAQMON-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RAQMON-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RAQMON-MIB",
11
+
12
+ "RAQMON-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RMON MIB Working Group""",
17
+ "contact" :
18
+ """WG Charter:
19
+ http://www.ietf.org/html.charters/rmonmib-charter.html
20
+
21
+ Mailing lists:
22
+ General Discussion: rmonmib@ietf.org
23
+ To Subscribe: rmonmib-requests@ietf.org
24
+ In Body: subscribe your_email_address
25
+
26
+ Chair: Andy Bierman
27
+ Email: ietf@andybierman.com
28
+
29
+ Editor: Dan Romascanu
30
+ Avaya
31
+ Email: dromasca@avaya.com""",
32
+ "description" :
33
+ """Real-Time Application QoS Monitoring MIB.
34
+
35
+ Copyright (c) The Internet Society (2006).
36
+ This version of this MIB module is part of
37
+ RFC 4711; See the RFC itself for full legal notices.""",
38
+ "revisions" : (
39
+ {
40
+ "date" : "2006-10-10 00:00",
41
+ "description" :
42
+ """Initial version, published as RFC 4711.""",
43
+ },
44
+ ),
45
+ "identity node" : "raqmonMIB",
46
+ },
47
+
48
+ "imports" : (
49
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
50
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
51
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
52
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
53
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
57
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
58
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
59
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
60
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
61
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
62
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
63
+ {"module" : "RMON-MIB", "name" : "rmon"},
64
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
65
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
66
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
67
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
68
+ ),
69
+
70
+ "nodes" : {
71
+ "raqmonMIB" : {
72
+ "nodetype" : "node",
73
+ "moduleName" : "RAQMON-MIB",
74
+ "oid" : "1.3.6.1.2.1.16.31",
75
+ "status" : "current",
76
+ }, # node
77
+ "raqmonNotifications" : {
78
+ "nodetype" : "node",
79
+ "moduleName" : "RAQMON-MIB",
80
+ "oid" : "1.3.6.1.2.1.16.31.0",
81
+ }, # node
82
+ "raqmonMIBObjects" : {
83
+ "nodetype" : "node",
84
+ "moduleName" : "RAQMON-MIB",
85
+ "oid" : "1.3.6.1.2.1.16.31.1",
86
+ }, # node
87
+ "raqmonSession" : {
88
+ "nodetype" : "node",
89
+ "moduleName" : "RAQMON-MIB",
90
+ "oid" : "1.3.6.1.2.1.16.31.1.1",
91
+ }, # node
92
+ "raqmonParticipantTable" : {
93
+ "nodetype" : "table",
94
+ "moduleName" : "RAQMON-MIB",
95
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1",
96
+ "status" : "current",
97
+ "description" :
98
+ """This table contains information about participants in
99
+ both active and closed (terminated) sessions.""",
100
+ }, # table
101
+ "raqmonParticipantEntry" : {
102
+ "nodetype" : "row",
103
+ "moduleName" : "RAQMON-MIB",
104
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1",
105
+ "status" : "current",
106
+ "linkage" : [
107
+ "raqmonParticipantStartDate",
108
+ "raqmonParticipantIndex",
109
+ ],
110
+ "description" :
111
+ """Each row contains information for a single session
112
+ (application) run by one participant.
113
+ Indexation by the start time of the session aims
114
+ to ease sorting by management applications. Agents MUST
115
+ NOT report identical start times for any two sessions
116
+ on the same host.
117
+ Rows are removed for inactive sessions
118
+ when implementation-specific age or space limits are
119
+ reached.""",
120
+ }, # row
121
+ "raqmonParticipantStartDate" : {
122
+ "nodetype" : "column",
123
+ "moduleName" : "RAQMON-MIB",
124
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.1",
125
+ "status" : "current",
126
+ "syntax" : {
127
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
128
+ },
129
+ "access" : "noaccess",
130
+ "description" :
131
+ """The date and time of this entry.
132
+ It will be the date and time
133
+ of the first report received.""",
134
+ }, # column
135
+ "raqmonParticipantIndex" : {
136
+ "nodetype" : "column",
137
+ "moduleName" : "RAQMON-MIB",
138
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.2",
139
+ "status" : "current",
140
+ "syntax" : {
141
+ "type" : {
142
+ "basetype" : "Unsigned32",
143
+ "ranges" : [
144
+ {
145
+ "min" : "1",
146
+ "max" : "2147483647"
147
+ },
148
+ ],
149
+ "range" : {
150
+ "min" : "1",
151
+ "max" : "2147483647"
152
+ },
153
+ },
154
+ },
155
+ "access" : "noaccess",
156
+ "description" :
157
+ """The index of the conceptual row, which is for SNMP
158
+ purposes only and has no relation to any protocol value.
159
+
160
+ There is no requirement that these rows be created or
161
+ maintained sequentially. The index will be unique for a
162
+ particular date and time.""",
163
+ }, # column
164
+ "raqmonParticipantReportCaps" : {
165
+ "nodetype" : "column",
166
+ "moduleName" : "RAQMON-MIB",
167
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.3",
168
+ "status" : "current",
169
+ "syntax" : {
170
+ "type" : {
171
+ "basetype" : "Bits",
172
+ "raqmonPartRepDsrcName" : {
173
+ "nodetype" : "namednumber",
174
+ "number" : "0"
175
+ },
176
+ "raqmonPartRepRecvName" : {
177
+ "nodetype" : "namednumber",
178
+ "number" : "1"
179
+ },
180
+ "raqmonPartRepDsrcPort" : {
181
+ "nodetype" : "namednumber",
182
+ "number" : "2"
183
+ },
184
+ "raqmonPartRepRecvPort" : {
185
+ "nodetype" : "namednumber",
186
+ "number" : "3"
187
+ },
188
+ "raqmonPartRepSetupTime" : {
189
+ "nodetype" : "namednumber",
190
+ "number" : "4"
191
+ },
192
+ "raqmonPartRepSetupDelay" : {
193
+ "nodetype" : "namednumber",
194
+ "number" : "5"
195
+ },
196
+ "raqmonPartRepSessionDuration" : {
197
+ "nodetype" : "namednumber",
198
+ "number" : "6"
199
+ },
200
+ "raqmonPartRepSetupStatus" : {
201
+ "nodetype" : "namednumber",
202
+ "number" : "7"
203
+ },
204
+ "raqmonPartRepRTEnd2EndNetDelay" : {
205
+ "nodetype" : "namednumber",
206
+ "number" : "8"
207
+ },
208
+ "raqmonPartRepOWEnd2EndNetDelay" : {
209
+ "nodetype" : "namednumber",
210
+ "number" : "9"
211
+ },
212
+ "raqmonPartApplicationDelay" : {
213
+ "nodetype" : "namednumber",
214
+ "number" : "10"
215
+ },
216
+ "raqmonPartRepIAJitter" : {
217
+ "nodetype" : "namednumber",
218
+ "number" : "11"
219
+ },
220
+ "raqmonPartRepIPDV" : {
221
+ "nodetype" : "namednumber",
222
+ "number" : "12"
223
+ },
224
+ "raqmonPartRepRcvdPackets" : {
225
+ "nodetype" : "namednumber",
226
+ "number" : "13"
227
+ },
228
+ "raqmonPartRepRcvdOctets" : {
229
+ "nodetype" : "namednumber",
230
+ "number" : "14"
231
+ },
232
+ "raqmonPartRepSentPackets" : {
233
+ "nodetype" : "namednumber",
234
+ "number" : "15"
235
+ },
236
+ "raqmonPartRepSentOctets" : {
237
+ "nodetype" : "namednumber",
238
+ "number" : "16"
239
+ },
240
+ "raqmonPartRepCumPacketsLoss" : {
241
+ "nodetype" : "namednumber",
242
+ "number" : "17"
243
+ },
244
+ "raqmonPartRepFractionPacketsLoss" : {
245
+ "nodetype" : "namednumber",
246
+ "number" : "18"
247
+ },
248
+ "raqmonPartRepCumDiscards" : {
249
+ "nodetype" : "namednumber",
250
+ "number" : "19"
251
+ },
252
+ "raqmonPartRepFractionDiscards" : {
253
+ "nodetype" : "namednumber",
254
+ "number" : "20"
255
+ },
256
+ "raqmonPartRepSrcPayloadType" : {
257
+ "nodetype" : "namednumber",
258
+ "number" : "21"
259
+ },
260
+ "raqmonPartRepDestPayloadType" : {
261
+ "nodetype" : "namednumber",
262
+ "number" : "22"
263
+ },
264
+ "raqmonPartRepSrcLayer2Priority" : {
265
+ "nodetype" : "namednumber",
266
+ "number" : "23"
267
+ },
268
+ "raqmonPartRepSrcTosDscp" : {
269
+ "nodetype" : "namednumber",
270
+ "number" : "24"
271
+ },
272
+ "raqmonPartRepDestLayer2Priority" : {
273
+ "nodetype" : "namednumber",
274
+ "number" : "25"
275
+ },
276
+ "raqmonPartRepDestTosDscp" : {
277
+ "nodetype" : "namednumber",
278
+ "number" : "26"
279
+ },
280
+ "raqmonPartRepCPU" : {
281
+ "nodetype" : "namednumber",
282
+ "number" : "27"
283
+ },
284
+ "raqmonPartRepMemory" : {
285
+ "nodetype" : "namednumber",
286
+ "number" : "28"
287
+ },
288
+ "raqmonPartRepAppName" : {
289
+ "nodetype" : "namednumber",
290
+ "number" : "29"
291
+ },
292
+ },
293
+ },
294
+ "access" : "readonly",
295
+ "description" :
296
+ """The Report capabilities of the participant, as perceived
297
+ by the Collector.
298
+
299
+ If the participant can report the Data Source Name as
300
+ defined in [RFC4710], Section 5.3, then the
301
+ raqmonPartRepDsrcName bit will be set.
302
+
303
+ If the participant can report the Receiver Name as
304
+ defined in [RFC4710], Section 5.4, then the
305
+ raqmonPartRepRecvName bit will be set.
306
+
307
+ If the participant can report the Data Source Port as
308
+ defined in [RFC4710], Section 5.5, then the
309
+ raqmonPartRepDsrcPort bit will be set.
310
+
311
+ If the participant can report the Receiver Port as
312
+ defined in [RFC4710], Section 5.6, then the
313
+ raqmonPartRepRecvPort bit will be set.
314
+
315
+ If the participant can report the Session Setup Time as
316
+ defined in [RFC4710], Section 5.7, then the
317
+ raqmonPartRepSetupTime bit will be set.
318
+
319
+ If the participant can report the Session Setup Delay as
320
+ defined in [RFC4710], Section 5.8, then the
321
+ raqmonPartRepSetupDelay bit will be set.
322
+
323
+
324
+
325
+
326
+ If the participant can report the Session Duration as
327
+ defined in [RFC4710], Section 5.9, then the
328
+ raqmonPartRepSessionDuration bit will be set.
329
+
330
+ If the participant can report the Setup Status as
331
+ defined in [RFC4710], Section 5.10, then the
332
+ raqmonPartRepSetupStatus bit will be set.
333
+
334
+ If the participant can report the Round-Trip End-to-end
335
+ Network Delay as defined in [RFC4710], Section 5.11,
336
+ then the raqmonPartRepRTEnd2EndNetDelay bit will be set.
337
+
338
+ If the participant can report the One-way End-to-end
339
+ Network Delay as defined in [RFC4710], Section 5.12,
340
+ then the raqmonPartRepOWEnd2EndNetDelay bit will be set.
341
+
342
+ If the participant can report the Application Delay as
343
+ defined in [RFC4710], Section 5.13, then the
344
+ raqmonPartApplicationDelay bit will be set.
345
+
346
+ If the participant can report the Inter-Arrival Jitter
347
+ as defined in [RFC4710], Section 5.14, then the
348
+ raqmonPartRepIAJitter bit will be set.
349
+
350
+ If the participant can report the IP Packet Delay
351
+ Variation as defined in [RFC4710], Section 5.15, then
352
+ the raqmonPartRepIPDV bit will be set.
353
+
354
+ If the participant can report the number of application
355
+ packets received as defined in [RFC4710], Section 5.16,
356
+ then the raqmonPartRepRcvdPackets bit will be set.
357
+
358
+ If the participant can report the number of application
359
+ octets received as defined in [RFC4710], Section 5.17,
360
+ then the raqmonPartRepRcvdOctets bit will be set.
361
+
362
+ If the participant can report the number of application
363
+ packets sent as defined in [RFC4710], Section 5.18, then
364
+ the raqmonPartRepSentPackets bit will be set.
365
+
366
+ If the participant can report the number of application
367
+ octets sent as defined in [RFC4710], Section 5.19, then
368
+ the raqmonPartRepSentOctets bit will be set.
369
+
370
+ If the participant can report the number of cumulative
371
+ packets lost as defined in [RFC4710], Section 5.20, then
372
+ the raqmonPartRepCumPacketsLoss bit will be set.
373
+
374
+
375
+
376
+
377
+ If the participant can report the fraction of packet
378
+ loss as defined in [RFC4710], Section 5.21, then the
379
+ raqmonPartRepFractionPacketsLoss bit will be set.
380
+
381
+ If the participant can report the number of cumulative
382
+ discards as defined in [RFC4710], Section 5.22, then the
383
+ raqmonPartRepCumDiscards bit will be set.
384
+
385
+ If the participant can report the fraction of discards
386
+ as defined in [RFC4710], Section 5.23, then the
387
+ raqmonPartRepFractionDiscards bit will be set.
388
+
389
+ If the participant can report the Source Payload Type as
390
+ defined in [RFC4710], Section 5.24, then the
391
+ raqmonPartRepSrcPayloadType bit will be set.
392
+
393
+ If the participant can report the Destination Payload
394
+ Type as defined in [RFC4710], Section 5.25, then the
395
+ raqmonPartRepDestPayloadType bit will be set.
396
+
397
+ If the participant can report the Source Layer 2
398
+ Priority as defined in [RFC4710], Section 5.26, then the
399
+ raqmonPartRepSrcLayer2Priority bit will be set.
400
+
401
+ If the participant can report the Source DSCP/ToS value
402
+ as defined in [RFC4710], Section 5.27, then the
403
+ raqmonPartRepSrcToSDscp bit will be set.
404
+
405
+ If the participant can report the Destination Layer 2
406
+ Priority as defined in [RFC4710], Section 5.28, then the
407
+ raqmonPartRepDestLayer2Priority bit will be set.
408
+
409
+ If the participant can report the Destination DSCP/ToS
410
+ Value as defined in [RFC4710], Section 5.29, then the
411
+ raqmonPartRepDestToSDscp bit will be set.
412
+
413
+ If the participant can report the CPU utilization as
414
+ defined in [RFC4710], Section 5.30, then the
415
+ raqmonPartRepCPU bit will be set.
416
+
417
+ If the participant can report the memory utilization as
418
+ defined in [RFC4710], Section 5.31, then the
419
+ raqmonPartRepMemory bit will be set.
420
+
421
+ If the participant can report the Application Name as
422
+ defined in [RFC4710], Section 5.32, then the
423
+ raqmonPartRepAppName bit will be set.
424
+
425
+
426
+
427
+
428
+ The capability of reporting of a specific metric does
429
+ not mandate that the metric must be reported permanently
430
+ by the data source to the respective collector. Some
431
+ data sources MAY be configured not to send a metric, or
432
+ some metrics may not be relevant to the specific
433
+ application.""",
434
+ }, # column
435
+ "raqmonParticipantAddrType" : {
436
+ "nodetype" : "column",
437
+ "moduleName" : "RAQMON-MIB",
438
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.4",
439
+ "status" : "current",
440
+ "syntax" : {
441
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
442
+ },
443
+ "access" : "readonly",
444
+ "description" :
445
+ """The type of the Internet address of the participant for
446
+ this session.""",
447
+ }, # column
448
+ "raqmonParticipantAddr" : {
449
+ "nodetype" : "column",
450
+ "moduleName" : "RAQMON-MIB",
451
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.5",
452
+ "status" : "current",
453
+ "syntax" : {
454
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
455
+ },
456
+ "access" : "readonly",
457
+ "description" :
458
+ """The Internet Address of the participant for this
459
+ session. Formatting of this object is determined
460
+ by the value of raqmonParticipantAddrType.""",
461
+ }, # column
462
+ "raqmonParticipantSendPort" : {
463
+ "nodetype" : "column",
464
+ "moduleName" : "RAQMON-MIB",
465
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.6",
466
+ "status" : "current",
467
+ "syntax" : {
468
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
469
+ },
470
+ "access" : "readonly",
471
+ "description" :
472
+ """Port from which session data is sent.
473
+ If the value was not reported to the collector,
474
+ this object will have the value 0.""",
475
+ "reference" :
476
+ """Section 5.5 of the [RFC4710]""",
477
+ }, # column
478
+ "raqmonParticipantRecvPort" : {
479
+ "nodetype" : "column",
480
+ "moduleName" : "RAQMON-MIB",
481
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.7",
482
+ "status" : "current",
483
+ "syntax" : {
484
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
485
+ },
486
+ "access" : "readonly",
487
+ "description" :
488
+ """Port on which session data is received.
489
+ If the value was not reported to the collector,
490
+ this object will have the value 0.""",
491
+ "reference" :
492
+ """Section 5.6 of the [RFC4710]""",
493
+ }, # column
494
+ "raqmonParticipantSetupDelay" : {
495
+ "nodetype" : "column",
496
+ "moduleName" : "RAQMON-MIB",
497
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.8",
498
+ "status" : "current",
499
+ "syntax" : {
500
+ "type" : {
501
+ "basetype" : "Integer32",
502
+ "ranges" : [
503
+ {
504
+ "min" : "-1",
505
+ "max" : "2147483647"
506
+ },
507
+ ],
508
+ "range" : {
509
+ "min" : "-1",
510
+ "max" : "2147483647"
511
+ },
512
+ },
513
+ },
514
+ "access" : "readonly",
515
+ "units" : "milliseconds",
516
+ "description" :
517
+ """Session setup time.
518
+ If the value was not reported to the collector,
519
+ this object will have the value -1.""",
520
+ "reference" :
521
+ """Section 5.8 of the [RFC4710]""",
522
+ }, # column
523
+ "raqmonParticipantName" : {
524
+ "nodetype" : "column",
525
+ "moduleName" : "RAQMON-MIB",
526
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.9",
527
+ "status" : "current",
528
+ "syntax" : {
529
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
530
+ },
531
+ "access" : "readonly",
532
+ "description" :
533
+ """The data source name for the participant.""",
534
+ "reference" :
535
+ """Section 5.3 of the [RFC4710]""",
536
+ }, # column
537
+ "raqmonParticipantAppName" : {
538
+ "nodetype" : "column",
539
+ "moduleName" : "RAQMON-MIB",
540
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.10",
541
+ "status" : "current",
542
+ "syntax" : {
543
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
544
+ },
545
+ "access" : "readonly",
546
+ "description" :
547
+ """A string giving the name and possibly the version
548
+ of the application generating the stream, e.g.,
549
+ 'videotool 1.2.'
550
+
551
+ This information may be useful for debugging purposes
552
+ and is similar to the Mailer or Mail-System-Version SMTP
553
+ headers. The tool value is expected to remain constant
554
+ for the duration of the session.""",
555
+ "reference" :
556
+ """Section 5.32 of the [RFC4710]""",
557
+ }, # column
558
+ "raqmonParticipantQosCount" : {
559
+ "nodetype" : "column",
560
+ "moduleName" : "RAQMON-MIB",
561
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.11",
562
+ "status" : "current",
563
+ "syntax" : {
564
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
565
+ },
566
+ "access" : "readonly",
567
+ "units" : "entries",
568
+ "description" :
569
+ """The current number of entries in the raqmonQosTable
570
+ for this participant and session.""",
571
+ }, # column
572
+ "raqmonParticipantEndDate" : {
573
+ "nodetype" : "column",
574
+ "moduleName" : "RAQMON-MIB",
575
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.12",
576
+ "status" : "current",
577
+ "syntax" : {
578
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
579
+ },
580
+ "access" : "readonly",
581
+ "description" :
582
+ """The date and time of the most recent report received.""",
583
+ }, # column
584
+ "raqmonParticipantDestPayloadType" : {
585
+ "nodetype" : "column",
586
+ "moduleName" : "RAQMON-MIB",
587
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.13",
588
+ "status" : "current",
589
+ "syntax" : {
590
+ "type" : {
591
+ "basetype" : "Integer32",
592
+ "ranges" : [
593
+ {
594
+ "min" : "-1",
595
+ "max" : "127"
596
+ },
597
+ ],
598
+ "range" : {
599
+ "min" : "-1",
600
+ "max" : "127"
601
+ },
602
+ },
603
+ },
604
+ "access" : "readonly",
605
+ "description" :
606
+ """Destination Payload Type.
607
+ If the value was not reported to the collector,
608
+ this object will have the value -1.""",
609
+ "reference" :
610
+ """RFC 3551 and Section 5.25 of the [RFC4710]""",
611
+ }, # column
612
+ "raqmonParticipantSrcPayloadType" : {
613
+ "nodetype" : "column",
614
+ "moduleName" : "RAQMON-MIB",
615
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.14",
616
+ "status" : "current",
617
+ "syntax" : {
618
+ "type" : {
619
+ "basetype" : "Integer32",
620
+ "ranges" : [
621
+ {
622
+ "min" : "-1",
623
+ "max" : "127"
624
+ },
625
+ ],
626
+ "range" : {
627
+ "min" : "-1",
628
+ "max" : "127"
629
+ },
630
+ },
631
+ },
632
+ "access" : "readonly",
633
+ "description" :
634
+ """Source Payload Type.
635
+ If the value was not reported to the collector,
636
+ this object will have the value -1.""",
637
+ "reference" :
638
+ """RFC 3551 and Section 5.24 of the [RFC4710]""",
639
+ }, # column
640
+ "raqmonParticipantActive" : {
641
+ "nodetype" : "column",
642
+ "moduleName" : "RAQMON-MIB",
643
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.15",
644
+ "status" : "current",
645
+ "syntax" : {
646
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
647
+ },
648
+ "access" : "readonly",
649
+ "description" :
650
+ """Value 'true' indicates that the session
651
+ for this participant is active (open).
652
+ Value 'false' indicates that the session
653
+ is closed (terminated).""",
654
+ }, # column
655
+ "raqmonParticipantPeer" : {
656
+ "nodetype" : "column",
657
+ "moduleName" : "RAQMON-MIB",
658
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.16",
659
+ "status" : "current",
660
+ "syntax" : {
661
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
662
+ },
663
+ "access" : "readonly",
664
+ "description" :
665
+ """The pointer to the corresponding entry in this table for
666
+ the other peer participant. If there is no such entry
667
+ in the participant table of the collector represented by
668
+ this SNMP agent, then the value will be { 0 0 }.""",
669
+ }, # column
670
+ "raqmonParticipantPeerAddrType" : {
671
+ "nodetype" : "column",
672
+ "moduleName" : "RAQMON-MIB",
673
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.17",
674
+ "status" : "current",
675
+ "syntax" : {
676
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
677
+ },
678
+ "access" : "readonly",
679
+ "description" :
680
+ """The type of the Internet address of the peer participant
681
+ for this session.""",
682
+ }, # column
683
+ "raqmonParticipantPeerAddr" : {
684
+ "nodetype" : "column",
685
+ "moduleName" : "RAQMON-MIB",
686
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.18",
687
+ "status" : "current",
688
+ "syntax" : {
689
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
690
+ },
691
+ "access" : "readonly",
692
+ "description" :
693
+ """The Internet Address of the peer participant for this
694
+ session. Formatting of this object is determined by
695
+ the value of raqmonParticipantPeerAddrType.""",
696
+ }, # column
697
+ "raqmonParticipantSrcL2Priority" : {
698
+ "nodetype" : "column",
699
+ "moduleName" : "RAQMON-MIB",
700
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.19",
701
+ "status" : "current",
702
+ "syntax" : {
703
+ "type" : {
704
+ "basetype" : "Integer32",
705
+ "ranges" : [
706
+ {
707
+ "min" : "-1",
708
+ "max" : "7"
709
+ },
710
+ ],
711
+ "range" : {
712
+ "min" : "-1",
713
+ "max" : "7"
714
+ },
715
+ },
716
+ },
717
+ "access" : "readonly",
718
+ "description" :
719
+ """Source Layer 2 Priority.
720
+ If the value was not reported to the collector,
721
+ this object will have the value -1.""",
722
+ "reference" :
723
+ """Section 5.26 of the [RFC4710]""",
724
+ }, # column
725
+ "raqmonParticipantDestL2Priority" : {
726
+ "nodetype" : "column",
727
+ "moduleName" : "RAQMON-MIB",
728
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.20",
729
+ "status" : "current",
730
+ "syntax" : {
731
+ "type" : {
732
+ "basetype" : "Integer32",
733
+ "ranges" : [
734
+ {
735
+ "min" : "-1",
736
+ "max" : "7"
737
+ },
738
+ ],
739
+ "range" : {
740
+ "min" : "-1",
741
+ "max" : "7"
742
+ },
743
+ },
744
+ },
745
+ "access" : "readonly",
746
+ "description" :
747
+ """Destination Layer 2 Priority.
748
+ If the value was not reported to the collector,
749
+ this object will have the value -1.""",
750
+ "reference" :
751
+ """Section 5.28 of the [RFC4710]""",
752
+ }, # column
753
+ "raqmonParticipantSrcDSCP" : {
754
+ "nodetype" : "column",
755
+ "moduleName" : "RAQMON-MIB",
756
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.21",
757
+ "status" : "current",
758
+ "syntax" : {
759
+ "type" : {
760
+ "basetype" : "Integer32",
761
+ "ranges" : [
762
+ {
763
+ "min" : "-1",
764
+ "max" : "63"
765
+ },
766
+ ],
767
+ "range" : {
768
+ "min" : "-1",
769
+ "max" : "63"
770
+ },
771
+ },
772
+ },
773
+ "access" : "readonly",
774
+ "description" :
775
+ """Source Layer 3 DSCP value.
776
+ If the value was not reported to the collector,
777
+ this object will have the value -1.""",
778
+ "reference" :
779
+ """Section 5.27 of the [RFC4710]""",
780
+ }, # column
781
+ "raqmonParticipantDestDSCP" : {
782
+ "nodetype" : "column",
783
+ "moduleName" : "RAQMON-MIB",
784
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.22",
785
+ "status" : "current",
786
+ "syntax" : {
787
+ "type" : {
788
+ "basetype" : "Integer32",
789
+ "ranges" : [
790
+ {
791
+ "min" : "-1",
792
+ "max" : "63"
793
+ },
794
+ ],
795
+ "range" : {
796
+ "min" : "-1",
797
+ "max" : "63"
798
+ },
799
+ },
800
+ },
801
+ "access" : "readonly",
802
+ "description" :
803
+ """Destination Layer 3 DSCP value.""",
804
+ "reference" :
805
+ """Section 5.29 of the [RFC4710]""",
806
+ }, # column
807
+ "raqmonParticipantCpuMean" : {
808
+ "nodetype" : "column",
809
+ "moduleName" : "RAQMON-MIB",
810
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.23",
811
+ "status" : "current",
812
+ "syntax" : {
813
+ "type" : {
814
+ "basetype" : "Integer32",
815
+ "ranges" : [
816
+ {
817
+ "min" : "-1",
818
+ "max" : "100"
819
+ },
820
+ ],
821
+ "range" : {
822
+ "min" : "-1",
823
+ "max" : "100"
824
+ },
825
+ },
826
+ },
827
+ "access" : "readonly",
828
+ "units" : "percents",
829
+ "description" :
830
+ """Mean CPU utilization.
831
+ If the value was not reported to the collector,
832
+ this object will have the value -1.""",
833
+ "reference" :
834
+ """Section 5.30 of the [RFC4710]""",
835
+ }, # column
836
+ "raqmonParticipantCpuMin" : {
837
+ "nodetype" : "column",
838
+ "moduleName" : "RAQMON-MIB",
839
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.24",
840
+ "status" : "current",
841
+ "syntax" : {
842
+ "type" : {
843
+ "basetype" : "Integer32",
844
+ "ranges" : [
845
+ {
846
+ "min" : "-1",
847
+ "max" : "100"
848
+ },
849
+ ],
850
+ "range" : {
851
+ "min" : "-1",
852
+ "max" : "100"
853
+ },
854
+ },
855
+ },
856
+ "access" : "readonly",
857
+ "units" : "percents",
858
+ "description" :
859
+ """Minimum CPU utilization.
860
+ If the value was not reported to the collector,
861
+ this object will have the value -1.""",
862
+ "reference" :
863
+ """Section 5.30 of the [RFC4710]""",
864
+ }, # column
865
+ "raqmonParticipantCpuMax" : {
866
+ "nodetype" : "column",
867
+ "moduleName" : "RAQMON-MIB",
868
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.25",
869
+ "status" : "current",
870
+ "syntax" : {
871
+ "type" : {
872
+ "basetype" : "Integer32",
873
+ "ranges" : [
874
+ {
875
+ "min" : "-1",
876
+ "max" : "100"
877
+ },
878
+ ],
879
+ "range" : {
880
+ "min" : "-1",
881
+ "max" : "100"
882
+ },
883
+ },
884
+ },
885
+ "access" : "readonly",
886
+ "units" : "percents",
887
+ "description" :
888
+ """Maximum CPU utilization.
889
+ If the value was not reported to the collector,
890
+ this object will have the value -1.""",
891
+ "reference" :
892
+ """Section 5.30 of the [RFC4710]""",
893
+ }, # column
894
+ "raqmonParticipantMemoryMean" : {
895
+ "nodetype" : "column",
896
+ "moduleName" : "RAQMON-MIB",
897
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.26",
898
+ "status" : "current",
899
+ "syntax" : {
900
+ "type" : {
901
+ "basetype" : "Integer32",
902
+ "ranges" : [
903
+ {
904
+ "min" : "-1",
905
+ "max" : "100"
906
+ },
907
+ ],
908
+ "range" : {
909
+ "min" : "-1",
910
+ "max" : "100"
911
+ },
912
+ },
913
+ },
914
+ "access" : "readonly",
915
+ "units" : "percents",
916
+ "description" :
917
+ """Mean memory utilization.
918
+ If the value was not reported to the collector,
919
+ this object will have the value -1.""",
920
+ "reference" :
921
+ """Section 5.31 of the [RFC4710]""",
922
+ }, # column
923
+ "raqmonParticipantMemoryMin" : {
924
+ "nodetype" : "column",
925
+ "moduleName" : "RAQMON-MIB",
926
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.27",
927
+ "status" : "current",
928
+ "syntax" : {
929
+ "type" : {
930
+ "basetype" : "Integer32",
931
+ "ranges" : [
932
+ {
933
+ "min" : "-1",
934
+ "max" : "100"
935
+ },
936
+ ],
937
+ "range" : {
938
+ "min" : "-1",
939
+ "max" : "100"
940
+ },
941
+ },
942
+ },
943
+ "access" : "readonly",
944
+ "units" : "percents",
945
+ "description" :
946
+ """Minimum memory utilization.
947
+ If the value was not reported to the collector,
948
+ this object will have the value -1.""",
949
+ "reference" :
950
+ """Section 5.31 of the [RFC4710]""",
951
+ }, # column
952
+ "raqmonParticipantMemoryMax" : {
953
+ "nodetype" : "column",
954
+ "moduleName" : "RAQMON-MIB",
955
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.28",
956
+ "status" : "current",
957
+ "syntax" : {
958
+ "type" : {
959
+ "basetype" : "Integer32",
960
+ "ranges" : [
961
+ {
962
+ "min" : "-1",
963
+ "max" : "100"
964
+ },
965
+ ],
966
+ "range" : {
967
+ "min" : "-1",
968
+ "max" : "100"
969
+ },
970
+ },
971
+ },
972
+ "access" : "readonly",
973
+ "units" : "percents",
974
+ "description" :
975
+ """Maximum memory utilization.
976
+ If the value was not reported to the collector,
977
+ this object will have the value -1.""",
978
+ "reference" :
979
+ """Section 5.31 of the [RFC4710]""",
980
+ }, # column
981
+ "raqmonParticipantNetRTTMean" : {
982
+ "nodetype" : "column",
983
+ "moduleName" : "RAQMON-MIB",
984
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.29",
985
+ "status" : "current",
986
+ "syntax" : {
987
+ "type" : {
988
+ "basetype" : "Integer32",
989
+ "ranges" : [
990
+ {
991
+ "min" : "-1",
992
+ "max" : "2147483647"
993
+ },
994
+ ],
995
+ "range" : {
996
+ "min" : "-1",
997
+ "max" : "2147483647"
998
+ },
999
+ },
1000
+ },
1001
+ "access" : "readonly",
1002
+ "units" : "milliseconds",
1003
+ "description" :
1004
+ """Mean round-trip end-to-end network
1005
+ delay over the entire session.
1006
+ If the value was not reported to the collector,
1007
+ this object will have the value -1.""",
1008
+ "reference" :
1009
+ """Section 5.11 of the [RFC4710]""",
1010
+ }, # column
1011
+ "raqmonParticipantNetRTTMin" : {
1012
+ "nodetype" : "column",
1013
+ "moduleName" : "RAQMON-MIB",
1014
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.30",
1015
+ "status" : "current",
1016
+ "syntax" : {
1017
+ "type" : {
1018
+ "basetype" : "Integer32",
1019
+ "ranges" : [
1020
+ {
1021
+ "min" : "-1",
1022
+ "max" : "2147483647"
1023
+ },
1024
+ ],
1025
+ "range" : {
1026
+ "min" : "-1",
1027
+ "max" : "2147483647"
1028
+ },
1029
+ },
1030
+ },
1031
+ "access" : "readonly",
1032
+ "units" : "milliseconds",
1033
+ "description" :
1034
+ """Minimum round-trip end-to-end network delay
1035
+ over the entire session.
1036
+ If the value was not reported to the collector,
1037
+ this object will have the value -1.""",
1038
+ "reference" :
1039
+ """Section 5.11 of the [RFC4710]""",
1040
+ }, # column
1041
+ "raqmonParticipantNetRTTMax" : {
1042
+ "nodetype" : "column",
1043
+ "moduleName" : "RAQMON-MIB",
1044
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.31",
1045
+ "status" : "current",
1046
+ "syntax" : {
1047
+ "type" : {
1048
+ "basetype" : "Integer32",
1049
+ "ranges" : [
1050
+ {
1051
+ "min" : "-1",
1052
+ "max" : "2147483647"
1053
+ },
1054
+ ],
1055
+ "range" : {
1056
+ "min" : "-1",
1057
+ "max" : "2147483647"
1058
+ },
1059
+ },
1060
+ },
1061
+ "access" : "readonly",
1062
+ "units" : "milliseconds",
1063
+ "description" :
1064
+ """Maximum round-trip end-to-end network delay
1065
+ over the entire session.
1066
+ If the value was not reported to the collector,
1067
+
1068
+
1069
+
1070
+ this object will have the value -1.""",
1071
+ "reference" :
1072
+ """Section 5.11 of the [RFC4710]""",
1073
+ }, # column
1074
+ "raqmonParticipantIAJitterMean" : {
1075
+ "nodetype" : "column",
1076
+ "moduleName" : "RAQMON-MIB",
1077
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.32",
1078
+ "status" : "current",
1079
+ "syntax" : {
1080
+ "type" : {
1081
+ "basetype" : "Integer32",
1082
+ "ranges" : [
1083
+ {
1084
+ "min" : "-1",
1085
+ "max" : "2147483647"
1086
+ },
1087
+ ],
1088
+ "range" : {
1089
+ "min" : "-1",
1090
+ "max" : "2147483647"
1091
+ },
1092
+ },
1093
+ },
1094
+ "access" : "readonly",
1095
+ "units" : "milliseconds",
1096
+ "description" :
1097
+ """Mean inter-arrival jitter over the entire session.
1098
+ If the value was not reported to the collector,
1099
+ this object will have the value -1.""",
1100
+ "reference" :
1101
+ """Section 5.14 of the [RFC4710]""",
1102
+ }, # column
1103
+ "raqmonParticipantIAJitterMin" : {
1104
+ "nodetype" : "column",
1105
+ "moduleName" : "RAQMON-MIB",
1106
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.33",
1107
+ "status" : "current",
1108
+ "syntax" : {
1109
+ "type" : {
1110
+ "basetype" : "Integer32",
1111
+ "ranges" : [
1112
+ {
1113
+ "min" : "-1",
1114
+ "max" : "2147483647"
1115
+ },
1116
+ ],
1117
+ "range" : {
1118
+ "min" : "-1",
1119
+ "max" : "2147483647"
1120
+ },
1121
+ },
1122
+ },
1123
+ "access" : "readonly",
1124
+ "units" : "milliseconds",
1125
+ "description" :
1126
+ """Minimum inter-arrival jitter over the entire session.
1127
+ If the value was not reported to the collector,
1128
+ this object will have the value -1.""",
1129
+ "reference" :
1130
+ """Section 5.14 of the [RFC4710]""",
1131
+ }, # column
1132
+ "raqmonParticipantIAJitterMax" : {
1133
+ "nodetype" : "column",
1134
+ "moduleName" : "RAQMON-MIB",
1135
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.34",
1136
+ "status" : "current",
1137
+ "syntax" : {
1138
+ "type" : {
1139
+ "basetype" : "Integer32",
1140
+ "ranges" : [
1141
+ {
1142
+ "min" : "-1",
1143
+ "max" : "2147483647"
1144
+ },
1145
+ ],
1146
+ "range" : {
1147
+ "min" : "-1",
1148
+ "max" : "2147483647"
1149
+ },
1150
+ },
1151
+ },
1152
+ "access" : "readonly",
1153
+ "units" : "milliseconds",
1154
+ "description" :
1155
+ """Maximum inter-arrival jitter over the entire session.
1156
+ If the value was not reported to the collector,
1157
+ this object will have the value -1.""",
1158
+ "reference" :
1159
+ """Section 5.14 of the [RFC4710]""",
1160
+ }, # column
1161
+ "raqmonParticipantIPDVMean" : {
1162
+ "nodetype" : "column",
1163
+ "moduleName" : "RAQMON-MIB",
1164
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.35",
1165
+ "status" : "current",
1166
+ "syntax" : {
1167
+ "type" : {
1168
+ "basetype" : "Integer32",
1169
+ "ranges" : [
1170
+ {
1171
+ "min" : "-1",
1172
+ "max" : "2147483647"
1173
+ },
1174
+ ],
1175
+ "range" : {
1176
+ "min" : "-1",
1177
+ "max" : "2147483647"
1178
+ },
1179
+ },
1180
+ },
1181
+ "access" : "readonly",
1182
+ "units" : "milliseconds",
1183
+ "description" :
1184
+ """Mean IP packet delay variation over the entire session.
1185
+ If the value was not reported to the collector,
1186
+ this object will have the value -1.""",
1187
+ "reference" :
1188
+ """Section 5.15 of the [RFC4710]""",
1189
+ }, # column
1190
+ "raqmonParticipantIPDVMin" : {
1191
+ "nodetype" : "column",
1192
+ "moduleName" : "RAQMON-MIB",
1193
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.36",
1194
+ "status" : "current",
1195
+ "syntax" : {
1196
+ "type" : {
1197
+ "basetype" : "Integer32",
1198
+ "ranges" : [
1199
+ {
1200
+ "min" : "-1",
1201
+ "max" : "2147483647"
1202
+ },
1203
+ ],
1204
+ "range" : {
1205
+ "min" : "-1",
1206
+ "max" : "2147483647"
1207
+ },
1208
+ },
1209
+ },
1210
+ "access" : "readonly",
1211
+ "units" : "milliseconds",
1212
+ "description" :
1213
+ """Minimum IP packet delay variation over the entire
1214
+ session. If the value was not reported to the
1215
+ collector, this object will have the value -1.""",
1216
+ "reference" :
1217
+ """Section 5.15 of the [RFC4710]""",
1218
+ }, # column
1219
+ "raqmonParticipantIPDVMax" : {
1220
+ "nodetype" : "column",
1221
+ "moduleName" : "RAQMON-MIB",
1222
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.37",
1223
+ "status" : "current",
1224
+ "syntax" : {
1225
+ "type" : {
1226
+ "basetype" : "Integer32",
1227
+ "ranges" : [
1228
+ {
1229
+ "min" : "-1",
1230
+ "max" : "2147483647"
1231
+ },
1232
+ ],
1233
+ "range" : {
1234
+ "min" : "-1",
1235
+ "max" : "2147483647"
1236
+ },
1237
+ },
1238
+ },
1239
+ "access" : "readonly",
1240
+ "units" : "milliseconds",
1241
+ "description" :
1242
+ """Maximum IP packet delay variation over the entire
1243
+ session. If the value was not reported to the
1244
+ collector, this object will have the value -1.""",
1245
+ "reference" :
1246
+ """Section 5.15 of the [RFC4710]""",
1247
+ }, # column
1248
+ "raqmonParticipantNetOwdMean" : {
1249
+ "nodetype" : "column",
1250
+ "moduleName" : "RAQMON-MIB",
1251
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.38",
1252
+ "status" : "current",
1253
+ "syntax" : {
1254
+ "type" : {
1255
+ "basetype" : "Integer32",
1256
+ "ranges" : [
1257
+ {
1258
+ "min" : "-1",
1259
+ "max" : "2147483647"
1260
+ },
1261
+ ],
1262
+ "range" : {
1263
+ "min" : "-1",
1264
+ "max" : "2147483647"
1265
+ },
1266
+ },
1267
+ },
1268
+ "access" : "readonly",
1269
+ "units" : "milliseconds",
1270
+ "description" :
1271
+ """Mean Network one-way delay over the entire session.
1272
+ If the value was not reported to the collector,
1273
+ this object will have the value -1.""",
1274
+ "reference" :
1275
+ """Section 5.12 of the [RFC4710]""",
1276
+ }, # column
1277
+ "raqmonParticipantNetOwdMin" : {
1278
+ "nodetype" : "column",
1279
+ "moduleName" : "RAQMON-MIB",
1280
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.39",
1281
+ "status" : "current",
1282
+ "syntax" : {
1283
+ "type" : {
1284
+ "basetype" : "Integer32",
1285
+ "ranges" : [
1286
+ {
1287
+ "min" : "-1",
1288
+ "max" : "2147483647"
1289
+ },
1290
+ ],
1291
+ "range" : {
1292
+ "min" : "-1",
1293
+ "max" : "2147483647"
1294
+ },
1295
+ },
1296
+ },
1297
+ "access" : "readonly",
1298
+ "units" : "milliseconds",
1299
+ "description" :
1300
+ """Minimum Network one-way delay over the entire session.
1301
+ If the value was not reported to the collector,
1302
+ this object will have the value -1.""",
1303
+ "reference" :
1304
+ """Section 5.12 of the [RFC4710]""",
1305
+ }, # column
1306
+ "raqmonParticipantNetOwdMax" : {
1307
+ "nodetype" : "column",
1308
+ "moduleName" : "RAQMON-MIB",
1309
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.40",
1310
+ "status" : "current",
1311
+ "syntax" : {
1312
+ "type" : {
1313
+ "basetype" : "Integer32",
1314
+ "ranges" : [
1315
+ {
1316
+ "min" : "-1",
1317
+ "max" : "2147483647"
1318
+ },
1319
+ ],
1320
+ "range" : {
1321
+ "min" : "-1",
1322
+ "max" : "2147483647"
1323
+ },
1324
+ },
1325
+ },
1326
+ "access" : "readonly",
1327
+ "units" : "milliseconds",
1328
+ "description" :
1329
+ """Maximum Network one-way delay over the entire session.
1330
+ If the value was not reported to the collector,
1331
+ this object will have the value -1.""",
1332
+ "reference" :
1333
+ """Section 5.1 of the [RFC4710]""",
1334
+ }, # column
1335
+ "raqmonParticipantAppDelayMean" : {
1336
+ "nodetype" : "column",
1337
+ "moduleName" : "RAQMON-MIB",
1338
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.41",
1339
+ "status" : "current",
1340
+ "syntax" : {
1341
+ "type" : {
1342
+ "basetype" : "Integer32",
1343
+ "ranges" : [
1344
+ {
1345
+ "min" : "-1",
1346
+ "max" : "2147483647"
1347
+ },
1348
+ ],
1349
+ "range" : {
1350
+ "min" : "-1",
1351
+ "max" : "2147483647"
1352
+ },
1353
+ },
1354
+ },
1355
+ "access" : "readonly",
1356
+ "units" : "milliseconds",
1357
+ "description" :
1358
+ """Mean application delay over the entire session.
1359
+ If the value was not reported to the collector,
1360
+ this object will have the value -1.""",
1361
+ "reference" :
1362
+ """Section 5.13 of the [RFC4710]""",
1363
+ }, # column
1364
+ "raqmonParticipantAppDelayMin" : {
1365
+ "nodetype" : "column",
1366
+ "moduleName" : "RAQMON-MIB",
1367
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.42",
1368
+ "status" : "current",
1369
+ "syntax" : {
1370
+ "type" : {
1371
+ "basetype" : "Integer32",
1372
+ "ranges" : [
1373
+ {
1374
+ "min" : "-1",
1375
+ "max" : "2147483647"
1376
+ },
1377
+ ],
1378
+ "range" : {
1379
+ "min" : "-1",
1380
+ "max" : "2147483647"
1381
+ },
1382
+ },
1383
+ },
1384
+ "access" : "readonly",
1385
+ "units" : "milliseconds",
1386
+ "description" :
1387
+ """Minimum application delay over the entire session.
1388
+ If the value was not reported to the collector,
1389
+ this object will have the value -1.""",
1390
+ "reference" :
1391
+ """Section 5.13 of the [RFC4710]""",
1392
+ }, # column
1393
+ "raqmonParticipantAppDelayMax" : {
1394
+ "nodetype" : "column",
1395
+ "moduleName" : "RAQMON-MIB",
1396
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.43",
1397
+ "status" : "current",
1398
+ "syntax" : {
1399
+ "type" : {
1400
+ "basetype" : "Integer32",
1401
+ "ranges" : [
1402
+ {
1403
+ "min" : "-1",
1404
+ "max" : "2147483647"
1405
+ },
1406
+ ],
1407
+ "range" : {
1408
+ "min" : "-1",
1409
+ "max" : "2147483647"
1410
+ },
1411
+ },
1412
+ },
1413
+ "access" : "readonly",
1414
+ "units" : "milliseconds",
1415
+ "description" :
1416
+ """Maximum application delay over the entire session.
1417
+ If the value was not reported to the collector,
1418
+ this object will have the value -1.""",
1419
+ "reference" :
1420
+ """Section 5.13 of the [RFC4710]""",
1421
+ }, # column
1422
+ "raqmonParticipantPacketsRcvd" : {
1423
+ "nodetype" : "column",
1424
+ "moduleName" : "RAQMON-MIB",
1425
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.44",
1426
+ "status" : "current",
1427
+ "syntax" : {
1428
+ "type" : {
1429
+ "basetype" : "Integer32",
1430
+ "ranges" : [
1431
+ {
1432
+ "min" : "-1",
1433
+ "max" : "2147483647"
1434
+ },
1435
+ ],
1436
+ "range" : {
1437
+ "min" : "-1",
1438
+ "max" : "2147483647"
1439
+ },
1440
+ },
1441
+ },
1442
+ "access" : "readonly",
1443
+ "units" : "packets",
1444
+ "description" :
1445
+ """Count of packets received for the entire session.
1446
+ If the value was not reported to the collector,
1447
+ this object will have the value -1.""",
1448
+ "reference" :
1449
+ """Section 5.16 of the [RFC4710]""",
1450
+ }, # column
1451
+ "raqmonParticipantPacketsSent" : {
1452
+ "nodetype" : "column",
1453
+ "moduleName" : "RAQMON-MIB",
1454
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.45",
1455
+ "status" : "current",
1456
+ "syntax" : {
1457
+ "type" : {
1458
+ "basetype" : "Integer32",
1459
+ "ranges" : [
1460
+ {
1461
+ "min" : "-1",
1462
+ "max" : "2147483647"
1463
+ },
1464
+ ],
1465
+ "range" : {
1466
+ "min" : "-1",
1467
+ "max" : "2147483647"
1468
+ },
1469
+ },
1470
+ },
1471
+ "access" : "readonly",
1472
+ "units" : "packets",
1473
+ "description" :
1474
+ """Count of packets sent for the entire session.
1475
+ If the value was not reported to the collector,
1476
+ this object will have the value -1.""",
1477
+ "reference" :
1478
+ """Section 5.17 of the [RFC4710]""",
1479
+ }, # column
1480
+ "raqmonParticipantOctetsRcvd" : {
1481
+ "nodetype" : "column",
1482
+ "moduleName" : "RAQMON-MIB",
1483
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.46",
1484
+ "status" : "current",
1485
+ "syntax" : {
1486
+ "type" : {
1487
+ "basetype" : "Integer32",
1488
+ "ranges" : [
1489
+ {
1490
+ "min" : "-1",
1491
+ "max" : "2147483647"
1492
+ },
1493
+ ],
1494
+ "range" : {
1495
+ "min" : "-1",
1496
+ "max" : "2147483647"
1497
+ },
1498
+ },
1499
+ },
1500
+ "access" : "readonly",
1501
+ "units" : "Octets",
1502
+ "description" :
1503
+ """Count of octets received for the entire session.
1504
+ If the value was not reported to the collector,
1505
+ this object will have the value -1.""",
1506
+ "reference" :
1507
+ """Section 5.18 of the [RFC4710]""",
1508
+ }, # column
1509
+ "raqmonParticipantOctetsSent" : {
1510
+ "nodetype" : "column",
1511
+ "moduleName" : "RAQMON-MIB",
1512
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.47",
1513
+ "status" : "current",
1514
+ "syntax" : {
1515
+ "type" : {
1516
+ "basetype" : "Integer32",
1517
+ "ranges" : [
1518
+ {
1519
+ "min" : "-1",
1520
+ "max" : "2147483647"
1521
+ },
1522
+ ],
1523
+ "range" : {
1524
+ "min" : "-1",
1525
+ "max" : "2147483647"
1526
+ },
1527
+ },
1528
+ },
1529
+ "access" : "readonly",
1530
+ "units" : "Octets",
1531
+ "description" :
1532
+ """Count of octets sent for the entire session.
1533
+ If the value was not reported to the collector,
1534
+ this object will have the value -1.""",
1535
+ "reference" :
1536
+ """Section 5.19 of the [RFC4710]""",
1537
+ }, # column
1538
+ "raqmonParticipantLostPackets" : {
1539
+ "nodetype" : "column",
1540
+ "moduleName" : "RAQMON-MIB",
1541
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.48",
1542
+ "status" : "current",
1543
+ "syntax" : {
1544
+ "type" : {
1545
+ "basetype" : "Integer32",
1546
+ "ranges" : [
1547
+ {
1548
+ "min" : "-1",
1549
+ "max" : "2147483647"
1550
+ },
1551
+ ],
1552
+ "range" : {
1553
+ "min" : "-1",
1554
+ "max" : "2147483647"
1555
+ },
1556
+ },
1557
+ },
1558
+ "access" : "readonly",
1559
+ "units" : "packets",
1560
+ "description" :
1561
+ """Count of packets lost by this receiver for the entire
1562
+ session.
1563
+ If the value was not reported to the collector,
1564
+ this object will have the value -1.""",
1565
+ "reference" :
1566
+ """Section 5.20 of the [RFC4710]""",
1567
+ }, # column
1568
+ "raqmonParticipantLostPacketsFrct" : {
1569
+ "nodetype" : "column",
1570
+ "moduleName" : "RAQMON-MIB",
1571
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.49",
1572
+ "status" : "current",
1573
+ "syntax" : {
1574
+ "type" : {
1575
+ "basetype" : "Integer32",
1576
+ "ranges" : [
1577
+ {
1578
+ "min" : "-1",
1579
+ "max" : "100"
1580
+ },
1581
+ ],
1582
+ "range" : {
1583
+ "min" : "-1",
1584
+ "max" : "100"
1585
+ },
1586
+ },
1587
+ },
1588
+ "access" : "readonly",
1589
+ "units" : "percents",
1590
+ "description" :
1591
+ """Fraction of lost packets out of total packets received.
1592
+ If the value was not reported to the collector,
1593
+ this object will have the value -1.""",
1594
+ "reference" :
1595
+ """Section 5.21 of the [RFC4710]""",
1596
+ }, # column
1597
+ "raqmonParticipantDiscards" : {
1598
+ "nodetype" : "column",
1599
+ "moduleName" : "RAQMON-MIB",
1600
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.50",
1601
+ "status" : "current",
1602
+ "syntax" : {
1603
+ "type" : {
1604
+ "basetype" : "Integer32",
1605
+ "ranges" : [
1606
+ {
1607
+ "min" : "-1",
1608
+ "max" : "2147483647"
1609
+ },
1610
+ ],
1611
+ "range" : {
1612
+ "min" : "-1",
1613
+ "max" : "2147483647"
1614
+ },
1615
+ },
1616
+ },
1617
+ "access" : "readonly",
1618
+ "units" : "packets",
1619
+ "description" :
1620
+ """Count of packets discarded by this receiver for the
1621
+ entire session.
1622
+ If the value was not reported to the collector,
1623
+ this object will have the value -1.""",
1624
+ "reference" :
1625
+ """Section 5.22 of the [RFC4710]""",
1626
+ }, # column
1627
+ "raqmonParticipantDiscardsFrct" : {
1628
+ "nodetype" : "column",
1629
+ "moduleName" : "RAQMON-MIB",
1630
+ "oid" : "1.3.6.1.2.1.16.31.1.1.1.1.51",
1631
+ "status" : "current",
1632
+ "syntax" : {
1633
+ "type" : {
1634
+ "basetype" : "Integer32",
1635
+ "ranges" : [
1636
+ {
1637
+ "min" : "-1",
1638
+ "max" : "100"
1639
+ },
1640
+ ],
1641
+ "range" : {
1642
+ "min" : "-1",
1643
+ "max" : "100"
1644
+ },
1645
+ },
1646
+ },
1647
+ "access" : "readonly",
1648
+ "units" : "percents",
1649
+ "description" :
1650
+ """Fraction of discarded packets out of total packets
1651
+ received. If the value was not reported to the
1652
+ collector, this object will have the value -1.""",
1653
+ "reference" :
1654
+ """Section 5.23 of the [RFC4710]""",
1655
+ }, # column
1656
+ "raqmonQosTable" : {
1657
+ "nodetype" : "table",
1658
+ "moduleName" : "RAQMON-MIB",
1659
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2",
1660
+ "status" : "current",
1661
+ "description" :
1662
+ """Table of historical information about quality-of-service
1663
+ data during sessions.""",
1664
+ }, # table
1665
+ "raqmonQosEntry" : {
1666
+ "nodetype" : "row",
1667
+ "moduleName" : "RAQMON-MIB",
1668
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1",
1669
+ "status" : "current",
1670
+ "linkage" : [
1671
+ "raqmonParticipantStartDate",
1672
+ "raqmonParticipantIndex",
1673
+ "raqmonQosTime",
1674
+ ],
1675
+ "description" :
1676
+ """Each entry contains information from a single RAQMON
1677
+ packet, related to a single session
1678
+ (application) run by one participant.
1679
+ Indexation by the start time of the session aims
1680
+ to ease sorting by management applications. Agents MUST
1681
+ NOT report identical start times for any two sessions
1682
+
1683
+
1684
+
1685
+ on the same host.
1686
+ Rows are removed for inactive sessions when
1687
+ implementation-specific time or space limits are
1688
+ reached.""",
1689
+ }, # row
1690
+ "raqmonQosTime" : {
1691
+ "nodetype" : "column",
1692
+ "moduleName" : "RAQMON-MIB",
1693
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.1",
1694
+ "status" : "current",
1695
+ "syntax" : {
1696
+ "type" : {
1697
+ "basetype" : "Unsigned32",
1698
+ "ranges" : [
1699
+ {
1700
+ "min" : "0",
1701
+ "max" : "2147483647"
1702
+ },
1703
+ ],
1704
+ "range" : {
1705
+ "min" : "0",
1706
+ "max" : "2147483647"
1707
+ },
1708
+ },
1709
+ },
1710
+ "access" : "noaccess",
1711
+ "units" : "seconds",
1712
+ "description" :
1713
+ """Time of this entry measured from the start of the
1714
+ corresponding participant session.""",
1715
+ }, # column
1716
+ "raqmonQoSEnd2EndNetDelay" : {
1717
+ "nodetype" : "column",
1718
+ "moduleName" : "RAQMON-MIB",
1719
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.2",
1720
+ "status" : "current",
1721
+ "syntax" : {
1722
+ "type" : {
1723
+ "basetype" : "Integer32",
1724
+ "ranges" : [
1725
+ {
1726
+ "min" : "-1",
1727
+ "max" : "2147483647"
1728
+ },
1729
+ ],
1730
+ "range" : {
1731
+ "min" : "-1",
1732
+ "max" : "2147483647"
1733
+ },
1734
+ },
1735
+ },
1736
+ "access" : "readonly",
1737
+ "units" : "milliseconds",
1738
+ "description" :
1739
+ """The round-trip time.
1740
+ Will contain the previous value if there was no report
1741
+ for this time, or -1 if the value has never
1742
+ been reported.""",
1743
+ "reference" :
1744
+ """Section 5.11 of the [RFC4710]""",
1745
+ }, # column
1746
+ "raqmonQoSInterArrivalJitter" : {
1747
+ "nodetype" : "column",
1748
+ "moduleName" : "RAQMON-MIB",
1749
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.3",
1750
+ "status" : "current",
1751
+ "syntax" : {
1752
+ "type" : {
1753
+ "basetype" : "Integer32",
1754
+ "ranges" : [
1755
+ {
1756
+ "min" : "-1",
1757
+ "max" : "2147483647"
1758
+ },
1759
+ ],
1760
+ "range" : {
1761
+ "min" : "-1",
1762
+ "max" : "2147483647"
1763
+ },
1764
+ },
1765
+ },
1766
+ "access" : "readonly",
1767
+ "units" : "milliseconds",
1768
+ "description" :
1769
+ """An estimate of delay variation as observed by this
1770
+ receiver. Will contain the previous value if there
1771
+ was no report for this time, or -1 if the value
1772
+ has never been reported.""",
1773
+ "reference" :
1774
+ """Section 5.14 of the [RFC4710]""",
1775
+ }, # column
1776
+ "raqmonQosRcvdPackets" : {
1777
+ "nodetype" : "column",
1778
+ "moduleName" : "RAQMON-MIB",
1779
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.4",
1780
+ "status" : "current",
1781
+ "syntax" : {
1782
+ "type" : {
1783
+ "basetype" : "Integer32",
1784
+ "ranges" : [
1785
+ {
1786
+ "min" : "-1",
1787
+ "max" : "2147483647"
1788
+ },
1789
+ ],
1790
+ "range" : {
1791
+ "min" : "-1",
1792
+ "max" : "2147483647"
1793
+ },
1794
+ },
1795
+ },
1796
+ "access" : "readonly",
1797
+ "units" : "packets",
1798
+ "description" :
1799
+ """Count of packets received by this receiver since the
1800
+ previous entry. Will contain the previous value if
1801
+ there was no report for this time, or -1 if the value
1802
+ has never been reported.""",
1803
+ "reference" :
1804
+ """Section 5.16 of the [RFC4710]""",
1805
+ }, # column
1806
+ "raqmonQosRcvdOctets" : {
1807
+ "nodetype" : "column",
1808
+ "moduleName" : "RAQMON-MIB",
1809
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.5",
1810
+ "status" : "current",
1811
+ "syntax" : {
1812
+ "type" : {
1813
+ "basetype" : "Integer32",
1814
+ "ranges" : [
1815
+ {
1816
+ "min" : "-1",
1817
+ "max" : "2147483647"
1818
+ },
1819
+ ],
1820
+ "range" : {
1821
+ "min" : "-1",
1822
+ "max" : "2147483647"
1823
+ },
1824
+ },
1825
+ },
1826
+ "access" : "readonly",
1827
+ "units" : "octets",
1828
+ "description" :
1829
+ """Count of octets received by this receiver since the
1830
+ previous report. Will contain the previous value if
1831
+ there was no report for this time, or -1 if the value
1832
+ has never been reported.""",
1833
+ "reference" :
1834
+ """Section 5.18 of the [RFC4710]""",
1835
+ }, # column
1836
+ "raqmonQosSentPackets" : {
1837
+ "nodetype" : "column",
1838
+ "moduleName" : "RAQMON-MIB",
1839
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.6",
1840
+ "status" : "current",
1841
+ "syntax" : {
1842
+ "type" : {
1843
+ "basetype" : "Integer32",
1844
+ "ranges" : [
1845
+ {
1846
+ "min" : "-1",
1847
+ "max" : "2147483647"
1848
+ },
1849
+ ],
1850
+ "range" : {
1851
+ "min" : "-1",
1852
+ "max" : "2147483647"
1853
+ },
1854
+ },
1855
+ },
1856
+ "access" : "readonly",
1857
+ "units" : "packets",
1858
+ "description" :
1859
+ """Count of packets sent since the previous report.
1860
+ Will contain the previous value if there
1861
+
1862
+
1863
+
1864
+ was no report for this time, or -1 if the value
1865
+ has never been reported.""",
1866
+ "reference" :
1867
+ """Section 5.17 of the [RFC4710]""",
1868
+ }, # column
1869
+ "raqmonQosSentOctets" : {
1870
+ "nodetype" : "column",
1871
+ "moduleName" : "RAQMON-MIB",
1872
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.7",
1873
+ "status" : "current",
1874
+ "syntax" : {
1875
+ "type" : {
1876
+ "basetype" : "Integer32",
1877
+ "ranges" : [
1878
+ {
1879
+ "min" : "-1",
1880
+ "max" : "2147483647"
1881
+ },
1882
+ ],
1883
+ "range" : {
1884
+ "min" : "-1",
1885
+ "max" : "2147483647"
1886
+ },
1887
+ },
1888
+ },
1889
+ "access" : "readonly",
1890
+ "units" : "octets",
1891
+ "description" :
1892
+ """Count of octets sent since the previous report.
1893
+ Will contain the previous value if there
1894
+ was no report for this time, or -1 if the value
1895
+ has never been reported.""",
1896
+ "reference" :
1897
+ """Section 5.19 of the [RFC4710]""",
1898
+ }, # column
1899
+ "raqmonQosLostPackets" : {
1900
+ "nodetype" : "column",
1901
+ "moduleName" : "RAQMON-MIB",
1902
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.8",
1903
+ "status" : "current",
1904
+ "syntax" : {
1905
+ "type" : {
1906
+ "basetype" : "Integer32",
1907
+ "ranges" : [
1908
+ {
1909
+ "min" : "-1",
1910
+ "max" : "2147483647"
1911
+ },
1912
+ ],
1913
+ "range" : {
1914
+ "min" : "-1",
1915
+ "max" : "2147483647"
1916
+ },
1917
+ },
1918
+ },
1919
+ "access" : "readonly",
1920
+ "units" : "packets",
1921
+ "description" :
1922
+ """A count of packets lost as observed by this receiver
1923
+ since the previous report. Will contain the previous
1924
+ value if there was no report for this time, or -1 if
1925
+ the value has never been reported.""",
1926
+ "reference" :
1927
+ """Section 5.20 of the [RFC4710]""",
1928
+ }, # column
1929
+ "raqmonQosSessionStatus" : {
1930
+ "nodetype" : "column",
1931
+ "moduleName" : "RAQMON-MIB",
1932
+ "oid" : "1.3.6.1.2.1.16.31.1.1.2.1.9",
1933
+ "status" : "current",
1934
+ "syntax" : {
1935
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1936
+ },
1937
+ "access" : "readonly",
1938
+ "description" :
1939
+ """The session status. Will contain the previous value
1940
+ if there was no report for this time or the zero-length
1941
+ string if no value was ever reported.""",
1942
+ "reference" :
1943
+ """Section 5.10 of the [RFC4710]""",
1944
+ }, # column
1945
+ "raqmonParticipantAddrTable" : {
1946
+ "nodetype" : "table",
1947
+ "moduleName" : "RAQMON-MIB",
1948
+ "oid" : "1.3.6.1.2.1.16.31.1.1.3",
1949
+ "status" : "current",
1950
+ "description" :
1951
+ """Maps raqmonParticipantAddr to the index of the
1952
+ raqmonParticipantTable. This table allows
1953
+ management applications to find entries
1954
+ sorted by raqmonParticipantAddr rather than
1955
+ raqmonParticipantStartDate.""",
1956
+ }, # table
1957
+ "raqmonParticipantAddrEntry" : {
1958
+ "nodetype" : "row",
1959
+ "moduleName" : "RAQMON-MIB",
1960
+ "oid" : "1.3.6.1.2.1.16.31.1.1.3.1",
1961
+ "status" : "current",
1962
+ "linkage" : [
1963
+ "raqmonParticipantAddrType",
1964
+ "raqmonParticipantAddr",
1965
+ "raqmonParticipantStartDate",
1966
+ "raqmonParticipantIndex",
1967
+ ],
1968
+ "description" :
1969
+ """Each entry corresponds to exactly one entry in the
1970
+ raqmonParticipantEntry: the entry containing the
1971
+ index pair raqmonParticipantStartDate,
1972
+ raqmonParticipantIndex.
1973
+
1974
+ Note that there is no concern about the indexation of
1975
+ this table exceeding the limits defined by RFC 2578,
1976
+ Section 3.5. According to [RFC4710], Section
1977
+ 5.1, only IPv4 and IPv6 addresses can be reported as
1978
+ participant addresses.""",
1979
+ }, # row
1980
+ "raqmonParticipantAddrEndDate" : {
1981
+ "nodetype" : "column",
1982
+ "moduleName" : "RAQMON-MIB",
1983
+ "oid" : "1.3.6.1.2.1.16.31.1.1.3.1.1",
1984
+ "status" : "current",
1985
+ "syntax" : {
1986
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1987
+ },
1988
+ "access" : "readonly",
1989
+ "description" :
1990
+ """The value of raqmonParticipantEndDate for the
1991
+ corresponding raqmonParticipantEntry.""",
1992
+ }, # column
1993
+ "raqmonException" : {
1994
+ "nodetype" : "node",
1995
+ "moduleName" : "RAQMON-MIB",
1996
+ "oid" : "1.3.6.1.2.1.16.31.1.2",
1997
+ }, # node
1998
+ "raqmonSessionExceptionTable" : {
1999
+ "nodetype" : "table",
2000
+ "moduleName" : "RAQMON-MIB",
2001
+ "oid" : "1.3.6.1.2.1.16.31.1.2.2",
2002
+ "status" : "current",
2003
+ "description" :
2004
+ """This table defines thresholds for the management
2005
+ station to get notifications about sessions that
2006
+ encountered poor quality of service.
2007
+
2008
+ The information in this table MUST be persistent
2009
+ across agent reboots.""",
2010
+ }, # table
2011
+ "raqmonSessionExceptionEntry" : {
2012
+ "nodetype" : "row",
2013
+ "moduleName" : "RAQMON-MIB",
2014
+ "oid" : "1.3.6.1.2.1.16.31.1.2.2.1",
2015
+ "create" : "true",
2016
+ "status" : "current",
2017
+ "linkage" : [
2018
+ "raqmonSessionExceptionIndex",
2019
+ ],
2020
+ "description" :
2021
+ """A conceptual row in the raqmonSessionExceptionTable.""",
2022
+ }, # row
2023
+ "raqmonSessionExceptionIndex" : {
2024
+ "nodetype" : "column",
2025
+ "moduleName" : "RAQMON-MIB",
2026
+ "oid" : "1.3.6.1.2.1.16.31.1.2.2.1.2",
2027
+ "status" : "current",
2028
+ "syntax" : {
2029
+ "type" : {
2030
+ "basetype" : "Unsigned32",
2031
+ "ranges" : [
2032
+ {
2033
+ "min" : "1",
2034
+ "max" : "65535"
2035
+ },
2036
+ ],
2037
+ "range" : {
2038
+ "min" : "1",
2039
+ "max" : "65535"
2040
+ },
2041
+ },
2042
+ },
2043
+ "access" : "noaccess",
2044
+ "description" :
2045
+ """An index that uniquely identifies an
2046
+ entry in the raqmonSessionExceptionTable.
2047
+ Management applications can determine unused indices
2048
+ by performing GetNext or GetBulk operations on the
2049
+ Table.""",
2050
+ }, # column
2051
+ "raqmonSessionExceptionIAJitterThreshold" : {
2052
+ "nodetype" : "column",
2053
+ "moduleName" : "RAQMON-MIB",
2054
+ "oid" : "1.3.6.1.2.1.16.31.1.2.2.1.3",
2055
+ "status" : "current",
2056
+ "syntax" : {
2057
+ "type" : { "module" :"", "name" : "Unsigned32"},
2058
+ },
2059
+ "access" : "readwrite",
2060
+ "units" : "milliseconds",
2061
+ "description" :
2062
+ """Threshold for jitter.
2063
+ The value during a session must be greater than or
2064
+ equal to this value for an exception to be created.""",
2065
+ }, # column
2066
+ "raqmonSessionExceptionNetRTTThreshold" : {
2067
+ "nodetype" : "column",
2068
+ "moduleName" : "RAQMON-MIB",
2069
+ "oid" : "1.3.6.1.2.1.16.31.1.2.2.1.4",
2070
+ "status" : "current",
2071
+ "syntax" : {
2072
+ "type" : { "module" :"", "name" : "Unsigned32"},
2073
+ },
2074
+ "access" : "readwrite",
2075
+ "units" : "milliseconds",
2076
+ "description" :
2077
+ """Threshold for round-trip time.
2078
+ The value during a session must be greater than or
2079
+ equal to this value for an exception to be created.""",
2080
+ }, # column
2081
+ "raqmonSessionExceptionLostPacketsThreshold" : {
2082
+ "nodetype" : "column",
2083
+ "moduleName" : "RAQMON-MIB",
2084
+ "oid" : "1.3.6.1.2.1.16.31.1.2.2.1.5",
2085
+ "status" : "current",
2086
+ "syntax" : {
2087
+ "type" : {
2088
+ "basetype" : "Unsigned32",
2089
+ "ranges" : [
2090
+ {
2091
+ "min" : "0",
2092
+ "max" : "1000"
2093
+ },
2094
+ ],
2095
+ "range" : {
2096
+ "min" : "0",
2097
+ "max" : "1000"
2098
+ },
2099
+ },
2100
+ },
2101
+ "access" : "readwrite",
2102
+ "units" : "tenth of a percent",
2103
+ "description" :
2104
+ """Threshold for lost packets in units of tenths
2105
+ of a percent. The value during a session must
2106
+ be greater than or equal to this value for an
2107
+ exception to be created.""",
2108
+ }, # column
2109
+ "raqmonSessionExceptionRowStatus" : {
2110
+ "nodetype" : "column",
2111
+ "moduleName" : "RAQMON-MIB",
2112
+ "oid" : "1.3.6.1.2.1.16.31.1.2.2.1.7",
2113
+ "status" : "current",
2114
+ "syntax" : {
2115
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2116
+ },
2117
+ "access" : "readwrite",
2118
+ "description" :
2119
+ """This object has a value of 'active' when
2120
+ exceptions are being monitored by the system.
2121
+ A newly-created conceptual row must have all
2122
+ the read-create objects initialized before
2123
+ becoming 'active'. A conceptual row that is in
2124
+ the 'notReady' or 'notInService' state MAY be
2125
+ removed after 5 minutes. No writeable objects
2126
+ can be changed while the row is active.""",
2127
+ }, # column
2128
+ "raqmonConfig" : {
2129
+ "nodetype" : "node",
2130
+ "moduleName" : "RAQMON-MIB",
2131
+ "oid" : "1.3.6.1.2.1.16.31.1.3",
2132
+ }, # node
2133
+ "raqmonConfigPort" : {
2134
+ "nodetype" : "scalar",
2135
+ "moduleName" : "RAQMON-MIB",
2136
+ "oid" : "1.3.6.1.2.1.16.31.1.3.1",
2137
+ "status" : "current",
2138
+ "syntax" : {
2139
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
2140
+ },
2141
+ "access" : "readwrite",
2142
+ "description" :
2143
+ """The UDP port to listen on for RAQMON reports,
2144
+ running on transport protocols other than SNMP.
2145
+ If the RAQMON PDU transport protocol is SNMP,
2146
+ a write operation on this object has no effect, as
2147
+ the standard port 162 is always used.
2148
+ The value of this object MUST be persistent across
2149
+ agent reboots.""",
2150
+ }, # scalar
2151
+ "raqmonConfigPduTransport" : {
2152
+ "nodetype" : "scalar",
2153
+ "moduleName" : "RAQMON-MIB",
2154
+ "oid" : "1.3.6.1.2.1.16.31.1.3.2",
2155
+ "status" : "current",
2156
+ "syntax" : {
2157
+ "type" : {
2158
+ "basetype" : "Bits",
2159
+ "other" : {
2160
+ "nodetype" : "namednumber",
2161
+ "number" : "0"
2162
+ },
2163
+ "tcp" : {
2164
+ "nodetype" : "namednumber",
2165
+ "number" : "1"
2166
+ },
2167
+ "snmp" : {
2168
+ "nodetype" : "namednumber",
2169
+ "number" : "2"
2170
+ },
2171
+ },
2172
+ },
2173
+ "access" : "readonly",
2174
+ "description" :
2175
+ """The PDU transport(s) used by this collector.
2176
+ If other(0) is set, the collector supports a
2177
+ transport other than SNMP or TCP.
2178
+ If tcp(1) is set, the collector supports TCP as a
2179
+ transport protocol.
2180
+ If snmp(2) is set, the collector supports SNMP as a
2181
+ transport protocol.""",
2182
+ }, # scalar
2183
+ "raqmonConfigRaqmonPdus" : {
2184
+ "nodetype" : "scalar",
2185
+ "moduleName" : "RAQMON-MIB",
2186
+ "oid" : "1.3.6.1.2.1.16.31.1.3.3",
2187
+ "status" : "current",
2188
+ "syntax" : {
2189
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2190
+ },
2191
+ "access" : "readonly",
2192
+ "units" : "PDUs",
2193
+ "description" :
2194
+ """Count of RAQMON PDUs received by the Collector.""",
2195
+ }, # scalar
2196
+ "raqmonConfigRDSTimeout" : {
2197
+ "nodetype" : "scalar",
2198
+ "moduleName" : "RAQMON-MIB",
2199
+ "oid" : "1.3.6.1.2.1.16.31.1.3.4",
2200
+ "status" : "current",
2201
+ "syntax" : {
2202
+ "type" : { "module" :"", "name" : "Unsigned32"},
2203
+ },
2204
+ "access" : "readwrite",
2205
+ "description" :
2206
+ """The number of seconds since the reception of the
2207
+ last RAQMON PDU from a RDS after which a session
2208
+
2209
+
2210
+
2211
+ between the respective RDS and the collector will be
2212
+ considered terminated.
2213
+ The value of this object MUST be persistent across
2214
+ agent reboots.""",
2215
+ }, # scalar
2216
+ "raqmonConformance" : {
2217
+ "nodetype" : "node",
2218
+ "moduleName" : "RAQMON-MIB",
2219
+ "oid" : "1.3.6.1.2.1.16.31.2",
2220
+ }, # node
2221
+ "raqmonCompliances" : {
2222
+ "nodetype" : "node",
2223
+ "moduleName" : "RAQMON-MIB",
2224
+ "oid" : "1.3.6.1.2.1.16.31.2.1",
2225
+ }, # node
2226
+ "raqmonGroups" : {
2227
+ "nodetype" : "node",
2228
+ "moduleName" : "RAQMON-MIB",
2229
+ "oid" : "1.3.6.1.2.1.16.31.2.2",
2230
+ }, # node
2231
+ }, # nodes
2232
+
2233
+ "notifications" : {
2234
+ "raqmonSessionAlarm" : {
2235
+ "nodetype" : "notification",
2236
+ "moduleName" : "RAQMON-MIB",
2237
+ "oid" : "1.3.6.1.2.1.16.31.0.1",
2238
+ "status" : "current",
2239
+ "objects" : {
2240
+ "raqmonParticipantAddr" : {
2241
+ "nodetype" : "object",
2242
+ "module" : "RAQMON-MIB"
2243
+ },
2244
+ "raqmonParticipantName" : {
2245
+ "nodetype" : "object",
2246
+ "module" : "RAQMON-MIB"
2247
+ },
2248
+ "raqmonParticipantPeerAddrType" : {
2249
+ "nodetype" : "object",
2250
+ "module" : "RAQMON-MIB"
2251
+ },
2252
+ "raqmonParticipantPeerAddr" : {
2253
+ "nodetype" : "object",
2254
+ "module" : "RAQMON-MIB"
2255
+ },
2256
+ "raqmonQoSEnd2EndNetDelay" : {
2257
+ "nodetype" : "object",
2258
+ "module" : "RAQMON-MIB"
2259
+ },
2260
+ "raqmonQoSInterArrivalJitter" : {
2261
+ "nodetype" : "object",
2262
+ "module" : "RAQMON-MIB"
2263
+ },
2264
+ "raqmonQosLostPackets" : {
2265
+ "nodetype" : "object",
2266
+ "module" : "RAQMON-MIB"
2267
+ },
2268
+ "raqmonQosRcvdPackets" : {
2269
+ "nodetype" : "object",
2270
+ "module" : "RAQMON-MIB"
2271
+ },
2272
+ },
2273
+ "description" :
2274
+ """A notification generated by an entry in the
2275
+ raqmonSessionExceptionTable.""",
2276
+ }, # notification
2277
+ }, # notifications
2278
+
2279
+ "groups" : {
2280
+ "raqmonCollectorGroup" : {
2281
+ "nodetype" : "group",
2282
+ "moduleName" : "RAQMON-MIB",
2283
+ "oid" : "1.3.6.1.2.1.16.31.2.2.1",
2284
+ "status" : "current",
2285
+ "members" : {
2286
+ "raqmonParticipantReportCaps" : {
2287
+ "nodetype" : "member",
2288
+ "module" : "RAQMON-MIB"
2289
+ },
2290
+ "raqmonParticipantAddrType" : {
2291
+ "nodetype" : "member",
2292
+ "module" : "RAQMON-MIB"
2293
+ },
2294
+ "raqmonParticipantAddr" : {
2295
+ "nodetype" : "member",
2296
+ "module" : "RAQMON-MIB"
2297
+ },
2298
+ "raqmonParticipantSendPort" : {
2299
+ "nodetype" : "member",
2300
+ "module" : "RAQMON-MIB"
2301
+ },
2302
+ "raqmonParticipantRecvPort" : {
2303
+ "nodetype" : "member",
2304
+ "module" : "RAQMON-MIB"
2305
+ },
2306
+ "raqmonParticipantSetupDelay" : {
2307
+ "nodetype" : "member",
2308
+ "module" : "RAQMON-MIB"
2309
+ },
2310
+ "raqmonParticipantName" : {
2311
+ "nodetype" : "member",
2312
+ "module" : "RAQMON-MIB"
2313
+ },
2314
+ "raqmonParticipantAppName" : {
2315
+ "nodetype" : "member",
2316
+ "module" : "RAQMON-MIB"
2317
+ },
2318
+ "raqmonParticipantQosCount" : {
2319
+ "nodetype" : "member",
2320
+ "module" : "RAQMON-MIB"
2321
+ },
2322
+ "raqmonParticipantEndDate" : {
2323
+ "nodetype" : "member",
2324
+ "module" : "RAQMON-MIB"
2325
+ },
2326
+ "raqmonParticipantDestPayloadType" : {
2327
+ "nodetype" : "member",
2328
+ "module" : "RAQMON-MIB"
2329
+ },
2330
+ "raqmonParticipantSrcPayloadType" : {
2331
+ "nodetype" : "member",
2332
+ "module" : "RAQMON-MIB"
2333
+ },
2334
+ "raqmonParticipantActive" : {
2335
+ "nodetype" : "member",
2336
+ "module" : "RAQMON-MIB"
2337
+ },
2338
+ "raqmonParticipantPeer" : {
2339
+ "nodetype" : "member",
2340
+ "module" : "RAQMON-MIB"
2341
+ },
2342
+ "raqmonParticipantPeerAddrType" : {
2343
+ "nodetype" : "member",
2344
+ "module" : "RAQMON-MIB"
2345
+ },
2346
+ "raqmonParticipantPeerAddr" : {
2347
+ "nodetype" : "member",
2348
+ "module" : "RAQMON-MIB"
2349
+ },
2350
+ "raqmonParticipantSrcL2Priority" : {
2351
+ "nodetype" : "member",
2352
+ "module" : "RAQMON-MIB"
2353
+ },
2354
+ "raqmonParticipantDestL2Priority" : {
2355
+ "nodetype" : "member",
2356
+ "module" : "RAQMON-MIB"
2357
+ },
2358
+ "raqmonParticipantSrcDSCP" : {
2359
+ "nodetype" : "member",
2360
+ "module" : "RAQMON-MIB"
2361
+ },
2362
+ "raqmonParticipantDestDSCP" : {
2363
+ "nodetype" : "member",
2364
+ "module" : "RAQMON-MIB"
2365
+ },
2366
+ "raqmonParticipantCpuMean" : {
2367
+ "nodetype" : "member",
2368
+ "module" : "RAQMON-MIB"
2369
+ },
2370
+ "raqmonParticipantCpuMin" : {
2371
+ "nodetype" : "member",
2372
+ "module" : "RAQMON-MIB"
2373
+ },
2374
+ "raqmonParticipantCpuMax" : {
2375
+ "nodetype" : "member",
2376
+ "module" : "RAQMON-MIB"
2377
+ },
2378
+ "raqmonParticipantMemoryMean" : {
2379
+ "nodetype" : "member",
2380
+ "module" : "RAQMON-MIB"
2381
+ },
2382
+ "raqmonParticipantMemoryMin" : {
2383
+ "nodetype" : "member",
2384
+ "module" : "RAQMON-MIB"
2385
+ },
2386
+ "raqmonParticipantMemoryMax" : {
2387
+ "nodetype" : "member",
2388
+ "module" : "RAQMON-MIB"
2389
+ },
2390
+ "raqmonParticipantNetRTTMean" : {
2391
+ "nodetype" : "member",
2392
+ "module" : "RAQMON-MIB"
2393
+ },
2394
+ "raqmonParticipantNetRTTMin" : {
2395
+ "nodetype" : "member",
2396
+ "module" : "RAQMON-MIB"
2397
+ },
2398
+ "raqmonParticipantNetRTTMax" : {
2399
+ "nodetype" : "member",
2400
+ "module" : "RAQMON-MIB"
2401
+ },
2402
+ "raqmonParticipantIAJitterMean" : {
2403
+ "nodetype" : "member",
2404
+ "module" : "RAQMON-MIB"
2405
+ },
2406
+ "raqmonParticipantIAJitterMin" : {
2407
+ "nodetype" : "member",
2408
+ "module" : "RAQMON-MIB"
2409
+ },
2410
+ "raqmonParticipantIAJitterMax" : {
2411
+ "nodetype" : "member",
2412
+ "module" : "RAQMON-MIB"
2413
+ },
2414
+ "raqmonParticipantIPDVMean" : {
2415
+ "nodetype" : "member",
2416
+ "module" : "RAQMON-MIB"
2417
+ },
2418
+ "raqmonParticipantIPDVMin" : {
2419
+ "nodetype" : "member",
2420
+ "module" : "RAQMON-MIB"
2421
+ },
2422
+ "raqmonParticipantIPDVMax" : {
2423
+ "nodetype" : "member",
2424
+ "module" : "RAQMON-MIB"
2425
+ },
2426
+ "raqmonParticipantNetOwdMean" : {
2427
+ "nodetype" : "member",
2428
+ "module" : "RAQMON-MIB"
2429
+ },
2430
+ "raqmonParticipantNetOwdMin" : {
2431
+ "nodetype" : "member",
2432
+ "module" : "RAQMON-MIB"
2433
+ },
2434
+ "raqmonParticipantNetOwdMax" : {
2435
+ "nodetype" : "member",
2436
+ "module" : "RAQMON-MIB"
2437
+ },
2438
+ "raqmonParticipantAppDelayMean" : {
2439
+ "nodetype" : "member",
2440
+ "module" : "RAQMON-MIB"
2441
+ },
2442
+ "raqmonParticipantAppDelayMin" : {
2443
+ "nodetype" : "member",
2444
+ "module" : "RAQMON-MIB"
2445
+ },
2446
+ "raqmonParticipantAppDelayMax" : {
2447
+ "nodetype" : "member",
2448
+ "module" : "RAQMON-MIB"
2449
+ },
2450
+ "raqmonParticipantPacketsRcvd" : {
2451
+ "nodetype" : "member",
2452
+ "module" : "RAQMON-MIB"
2453
+ },
2454
+ "raqmonParticipantPacketsSent" : {
2455
+ "nodetype" : "member",
2456
+ "module" : "RAQMON-MIB"
2457
+ },
2458
+ "raqmonParticipantOctetsRcvd" : {
2459
+ "nodetype" : "member",
2460
+ "module" : "RAQMON-MIB"
2461
+ },
2462
+ "raqmonParticipantOctetsSent" : {
2463
+ "nodetype" : "member",
2464
+ "module" : "RAQMON-MIB"
2465
+ },
2466
+ "raqmonParticipantLostPackets" : {
2467
+ "nodetype" : "member",
2468
+ "module" : "RAQMON-MIB"
2469
+ },
2470
+ "raqmonParticipantLostPacketsFrct" : {
2471
+ "nodetype" : "member",
2472
+ "module" : "RAQMON-MIB"
2473
+ },
2474
+ "raqmonParticipantDiscards" : {
2475
+ "nodetype" : "member",
2476
+ "module" : "RAQMON-MIB"
2477
+ },
2478
+ "raqmonParticipantDiscardsFrct" : {
2479
+ "nodetype" : "member",
2480
+ "module" : "RAQMON-MIB"
2481
+ },
2482
+ "raqmonQoSEnd2EndNetDelay" : {
2483
+ "nodetype" : "member",
2484
+ "module" : "RAQMON-MIB"
2485
+ },
2486
+ "raqmonQoSInterArrivalJitter" : {
2487
+ "nodetype" : "member",
2488
+ "module" : "RAQMON-MIB"
2489
+ },
2490
+ "raqmonQosRcvdPackets" : {
2491
+ "nodetype" : "member",
2492
+ "module" : "RAQMON-MIB"
2493
+ },
2494
+ "raqmonQosRcvdOctets" : {
2495
+ "nodetype" : "member",
2496
+ "module" : "RAQMON-MIB"
2497
+ },
2498
+ "raqmonQosSentPackets" : {
2499
+ "nodetype" : "member",
2500
+ "module" : "RAQMON-MIB"
2501
+ },
2502
+ "raqmonQosSentOctets" : {
2503
+ "nodetype" : "member",
2504
+ "module" : "RAQMON-MIB"
2505
+ },
2506
+ "raqmonQosLostPackets" : {
2507
+ "nodetype" : "member",
2508
+ "module" : "RAQMON-MIB"
2509
+ },
2510
+ "raqmonQosSessionStatus" : {
2511
+ "nodetype" : "member",
2512
+ "module" : "RAQMON-MIB"
2513
+ },
2514
+ "raqmonParticipantAddrEndDate" : {
2515
+ "nodetype" : "member",
2516
+ "module" : "RAQMON-MIB"
2517
+ },
2518
+ "raqmonConfigPort" : {
2519
+ "nodetype" : "member",
2520
+ "module" : "RAQMON-MIB"
2521
+ },
2522
+ "raqmonSessionExceptionIAJitterThreshold" : {
2523
+ "nodetype" : "member",
2524
+ "module" : "RAQMON-MIB"
2525
+ },
2526
+ "raqmonSessionExceptionNetRTTThreshold" : {
2527
+ "nodetype" : "member",
2528
+ "module" : "RAQMON-MIB"
2529
+ },
2530
+ "raqmonSessionExceptionLostPacketsThreshold" : {
2531
+ "nodetype" : "member",
2532
+ "module" : "RAQMON-MIB"
2533
+ },
2534
+ "raqmonSessionExceptionRowStatus" : {
2535
+ "nodetype" : "member",
2536
+ "module" : "RAQMON-MIB"
2537
+ },
2538
+ "raqmonConfigPduTransport" : {
2539
+ "nodetype" : "member",
2540
+ "module" : "RAQMON-MIB"
2541
+ },
2542
+ "raqmonConfigRaqmonPdus" : {
2543
+ "nodetype" : "member",
2544
+ "module" : "RAQMON-MIB"
2545
+ },
2546
+ "raqmonConfigRDSTimeout" : {
2547
+ "nodetype" : "member",
2548
+ "module" : "RAQMON-MIB"
2549
+ },
2550
+ }, # members
2551
+ "description" :
2552
+ """Objects used in RAQMON by a collector.""",
2553
+ }, # group
2554
+ "raqmonCollectorNotificationsGroup" : {
2555
+ "nodetype" : "group",
2556
+ "moduleName" : "RAQMON-MIB",
2557
+ "oid" : "1.3.6.1.2.1.16.31.2.2.2",
2558
+ "status" : "current",
2559
+ "members" : {
2560
+ "raqmonSessionAlarm" : {
2561
+ "nodetype" : "member",
2562
+ "module" : "RAQMON-MIB"
2563
+ },
2564
+ }, # members
2565
+ "description" :
2566
+ """Notifications emitted by a RAQMON collector.""",
2567
+ }, # group
2568
+ }, # groups
2569
+
2570
+ "compliances" : {
2571
+ "raqmonCompliance" : {
2572
+ "nodetype" : "compliance",
2573
+ "moduleName" : "RAQMON-MIB",
2574
+ "oid" : "1.3.6.1.2.1.16.31.2.1.1",
2575
+ "status" : "current",
2576
+ "description" :
2577
+ """Describes the requirements for conformance to the
2578
+ RAQMON MIB.""",
2579
+ "requires" : {
2580
+ "raqmonCollectorGroup" : {
2581
+ "nodetype" : "mandatory",
2582
+ "module" : "RAQMON-MIB"
2583
+ },
2584
+ "raqmonCollectorNotificationsGroup" : {
2585
+ "nodetype" : "mandatory",
2586
+ "module" : "RAQMON-MIB"
2587
+ },
2588
+ }, # requires
2589
+ "refinements" : {
2590
+ "raqmonParticipantAddrType" : {
2591
+ "module" : "RAQMON-MIB",
2592
+ "syntax" : {
2593
+ "type" : {
2594
+ "basetype" : "Enumeration",
2595
+ "parent module" : {
2596
+ "name" : "INET-ADDRESS-MIB",
2597
+ "type" : "InetAddressType",
2598
+ },
2599
+ "ipv4" : {
2600
+ "nodetype" : "namednumber",
2601
+ "number" : "1"
2602
+ },
2603
+ "ipv6" : {
2604
+ "nodetype" : "namednumber",
2605
+ "number" : "2"
2606
+ },
2607
+ },
2608
+ }, # syntax
2609
+ "description" :
2610
+ """Only IPv4 and IPv6 addresses need to be supported.""",
2611
+ },
2612
+ "raqmonParticipantAddr" : {
2613
+ "module" : "RAQMON-MIB",
2614
+ "syntax" : {
2615
+ "type" : {
2616
+ "basetype" : "OctetString",
2617
+ "parent module" : {
2618
+ "name" : "INET-ADDRESS-MIB",
2619
+ "type" : "InetAddress",
2620
+ },
2621
+ "ranges" : [
2622
+ {
2623
+ "min" : "4",
2624
+ "max" : "4"
2625
+ },
2626
+ {
2627
+ "min" : "16",
2628
+ "max" : "16"
2629
+ },
2630
+ ],
2631
+ "range" : {
2632
+ "min" : "4",
2633
+ "max" : "16"
2634
+ },
2635
+ },
2636
+ }, # syntax
2637
+ "description" :
2638
+ """Only IPv4 and IPv6 addresses need to be supported.""",
2639
+ },
2640
+ "raqmonParticipantPeerAddrType" : {
2641
+ "module" : "RAQMON-MIB",
2642
+ "syntax" : {
2643
+ "type" : {
2644
+ "basetype" : "Enumeration",
2645
+ "parent module" : {
2646
+ "name" : "INET-ADDRESS-MIB",
2647
+ "type" : "InetAddressType",
2648
+ },
2649
+ "ipv4" : {
2650
+ "nodetype" : "namednumber",
2651
+ "number" : "1"
2652
+ },
2653
+ "ipv6" : {
2654
+ "nodetype" : "namednumber",
2655
+ "number" : "2"
2656
+ },
2657
+ },
2658
+ }, # syntax
2659
+ "description" :
2660
+ """Only IPv4 and IPv6 addresses need to be supported.""",
2661
+ },
2662
+ "raqmonParticipantPeerAddr" : {
2663
+ "module" : "RAQMON-MIB",
2664
+ "syntax" : {
2665
+ "type" : {
2666
+ "basetype" : "OctetString",
2667
+ "parent module" : {
2668
+ "name" : "INET-ADDRESS-MIB",
2669
+ "type" : "InetAddress",
2670
+ },
2671
+ "ranges" : [
2672
+ {
2673
+ "min" : "4",
2674
+ "max" : "4"
2675
+ },
2676
+ {
2677
+ "min" : "16",
2678
+ "max" : "16"
2679
+ },
2680
+ ],
2681
+ "range" : {
2682
+ "min" : "4",
2683
+ "max" : "16"
2684
+ },
2685
+ },
2686
+ }, # syntax
2687
+ "description" :
2688
+ """Only IPv4 and IPv6 addresses need to be supported.""",
2689
+ },
2690
+ }, # refinements
2691
+
2692
+ }, # compliance
2693
+ }, # compliances
2694
+
2695
+ }