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,1376 @@
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 RTP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RTP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RTP-MIB",
11
+
12
+ "RTP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF AVT Working Group
17
+ Email: rem-conf@es.net""",
18
+ "contact" :
19
+ """Mark Baugher
20
+ Postal: Intel Corporation
21
+ 2111 NE 25th Avenue
22
+ Hillsboro, OR 97124
23
+
24
+
25
+ United States
26
+ Tel: +1 503 466 8406
27
+ Email: mbaugher@passedge.com
28
+
29
+ Bill Strahm
30
+ Postal: Intel Corporation
31
+ 2111 NE 25th Avenue
32
+ Hillsboro, OR 97124
33
+ United States
34
+ Tel: +1 503 264 4632
35
+ Email: bill.strahm@intel.com
36
+
37
+ Irina Suconick
38
+ Postal: Ennovate Networks
39
+ 60 Codman Hill Rd.,
40
+ Boxboro, Ma 01719
41
+ Tel: +1 781-505-2155
42
+ Email: irina@ennovatenetworks.com""",
43
+ "description" :
44
+ """The managed objects of RTP systems. The MIB is
45
+ structured around three types of information.
46
+ 1. General information about RTP sessions such
47
+ as the session address.
48
+ 2. Information about RTP streams being sent to
49
+ an RTP session by a particular sender.
50
+ 3. Information about RTP streams received on an
51
+ RTP session by a particular receiver from a
52
+ particular sender.
53
+ There are two types of RTP Systems, RTP hosts and
54
+ RTP monitors. As described below, certain objects
55
+ are unique to a particular type of RTP System. An
56
+ RTP host may also function as an RTP monitor.
57
+ Refer to RFC 1889, 'RTP: A Transport Protocol for
58
+ Real-Time Applications,' section 3.0, for definitions.""",
59
+ "revisions" : (
60
+ {
61
+ "date" : "2000-10-02 00:00",
62
+ "description" :
63
+ """Initial version of this MIB.
64
+ Published as RFC 2959.""",
65
+ },
66
+ ),
67
+ "identity node" : "rtpMIB",
68
+ },
69
+
70
+ "imports" : (
71
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
72
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
73
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
74
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
75
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
76
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
77
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
78
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
79
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
80
+ {"module" : "SNMPv2-TC", "name" : "TAddress"},
81
+ {"module" : "SNMPv2-TC", "name" : "TDomain"},
82
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
83
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
84
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
85
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
86
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
87
+ {"module" : "SYSAPPL-MIB", "name" : "Utf8String"},
88
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
89
+ ),
90
+
91
+ "nodes" : {
92
+ "rtpMIB" : {
93
+ "nodetype" : "node",
94
+ "moduleName" : "RTP-MIB",
95
+ "oid" : "1.3.6.1.2.1.87",
96
+ "status" : "current",
97
+ }, # node
98
+ "rtpMIBObjects" : {
99
+ "nodetype" : "node",
100
+ "moduleName" : "RTP-MIB",
101
+ "oid" : "1.3.6.1.2.1.87.1",
102
+ }, # node
103
+ "rtpSessionNewIndex" : {
104
+ "nodetype" : "scalar",
105
+ "moduleName" : "RTP-MIB",
106
+ "oid" : "1.3.6.1.2.1.87.1.1",
107
+ "status" : "current",
108
+ "syntax" : {
109
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
110
+ },
111
+ "access" : "readwrite",
112
+ "description" :
113
+ """This object is used to assign values to rtpSessionIndex
114
+ as described in 'Textual Conventions for SMIv2'. For an RTP
115
+ system that supports the creation of rows, the network manager
116
+ would read the object, and then write the value back in
117
+ the Set that creates a new instance of rtpSessionEntry. If
118
+ the Set fails with the code 'inconsistentValue,' then the
119
+ process must be repeated; If the Set succeeds, then the object
120
+ is incremented, and the new instance is created according to
121
+ the manager's directions. However, if the RTP agent is not
122
+ acting as a monitor, only the RTP agent may create conceptual
123
+ rows in the RTP session table.""",
124
+ }, # scalar
125
+ "rtpSessionInverseTable" : {
126
+ "nodetype" : "table",
127
+ "moduleName" : "RTP-MIB",
128
+ "oid" : "1.3.6.1.2.1.87.1.2",
129
+ "status" : "current",
130
+ "description" :
131
+ """Maps rtpSessionDomain, rtpSessionRemAddr, and rtpSessionLocAddr
132
+ TAddress pairs to one or more rtpSessionIndex values, each
133
+ describing a row in the rtpSessionTable. This makes it possible
134
+ to retrieve the row(s) in the rtpSessionTable corresponding to a
135
+ given session without having to walk the entire (potentially
136
+ large) table.""",
137
+ }, # table
138
+ "rtpSessionInverseEntry" : {
139
+ "nodetype" : "row",
140
+ "moduleName" : "RTP-MIB",
141
+ "oid" : "1.3.6.1.2.1.87.1.2.1",
142
+ "status" : "current",
143
+ "linkage" : [
144
+ "rtpSessionDomain",
145
+ "rtpSessionRemAddr",
146
+ "rtpSessionLocAddr",
147
+ "rtpSessionIndex",
148
+ ],
149
+ "description" :
150
+ """Each entry corresponds to exactly one entry in the
151
+ rtpSessionTable - the entry containing the tuple,
152
+ rtpSessionDomain, rtpSessionRemAddr, rtpSessionLocAddr
153
+ and rtpSessionIndex.""",
154
+ }, # row
155
+ "rtpSessionInverseStartTime" : {
156
+ "nodetype" : "column",
157
+ "moduleName" : "RTP-MIB",
158
+ "oid" : "1.3.6.1.2.1.87.1.2.1.1",
159
+ "status" : "current",
160
+ "syntax" : {
161
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
162
+ },
163
+ "access" : "readonly",
164
+ "description" :
165
+ """The value of SysUpTime at the time that this row was
166
+ created.""",
167
+ }, # column
168
+ "rtpSessionTable" : {
169
+ "nodetype" : "table",
170
+ "moduleName" : "RTP-MIB",
171
+ "oid" : "1.3.6.1.2.1.87.1.3",
172
+ "status" : "current",
173
+ "description" :
174
+ """There's one entry in rtpSessionTable for each RTP session
175
+ on which packets are being sent, received, and/or
176
+ monitored.""",
177
+ }, # table
178
+ "rtpSessionEntry" : {
179
+ "nodetype" : "row",
180
+ "moduleName" : "RTP-MIB",
181
+ "oid" : "1.3.6.1.2.1.87.1.3.1",
182
+ "create" : "true",
183
+ "status" : "current",
184
+ "linkage" : [
185
+ "rtpSessionIndex",
186
+ ],
187
+ "description" :
188
+ """Data in rtpSessionTable uniquely identify an RTP session. A
189
+ host RTP agent MUST create a read-only row for each session to
190
+ which packets are being sent or received. Rows MUST be created
191
+ by the RTP Agent at the start of a session when one or more
192
+ senders or receivers are observed. Rows created by an RTP agent
193
+ MUST be deleted when the session is over and there are no
194
+ rtpRcvrEntry and no rtpSenderEntry for this session. An RTP
195
+ session SHOULD be monitored to create management information on
196
+ all RTP streams being sent or received when the
197
+ rtpSessionMonitor has the TruthValue of 'true(1)'. An RTP
198
+ monitor SHOULD permit row creation with the side effect of
199
+ causing the RTP System to join the multicast session for the
200
+ purposes of gathering management information (additional
201
+ conceptual rows are created in the rtpRcvrTable and
202
+ rtpSenderTable). Thus, rtpSessionTable rows SHOULD be created
203
+ for RTP session monitoring purposes. Rows created by a
204
+ management application SHOULD be deleted via SNMP operations by
205
+
206
+
207
+ management applications. Rows created by management operations
208
+ are deleted by management operations by setting
209
+ rtpSessionRowStatus to 'destroy(6)'.""",
210
+ }, # row
211
+ "rtpSessionIndex" : {
212
+ "nodetype" : "column",
213
+ "moduleName" : "RTP-MIB",
214
+ "oid" : "1.3.6.1.2.1.87.1.3.1.1",
215
+ "status" : "current",
216
+ "syntax" : {
217
+ "type" : {
218
+ "basetype" : "Integer32",
219
+ "ranges" : [
220
+ {
221
+ "min" : "1",
222
+ "max" : "2147483647"
223
+ },
224
+ ],
225
+ "range" : {
226
+ "min" : "1",
227
+ "max" : "2147483647"
228
+ },
229
+ },
230
+ },
231
+ "access" : "noaccess",
232
+ "description" :
233
+ """The index of the conceptual row which is for SNMP purposes
234
+ only and has no relation to any protocol value. There is
235
+ no requirement that these rows are created or maintained
236
+ sequentially.""",
237
+ }, # column
238
+ "rtpSessionDomain" : {
239
+ "nodetype" : "column",
240
+ "moduleName" : "RTP-MIB",
241
+ "oid" : "1.3.6.1.2.1.87.1.3.1.2",
242
+ "status" : "current",
243
+ "syntax" : {
244
+ "type" : { "module" :"SNMPv2-TC", "name" : "TDomain"},
245
+ },
246
+ "access" : "readwrite",
247
+ "description" :
248
+ """The transport-layer protocol used for sending or receiving
249
+ the stream of RTP data packets on this session.
250
+ Cannot be changed if rtpSessionRowStatus is 'active'.""",
251
+ }, # column
252
+ "rtpSessionRemAddr" : {
253
+ "nodetype" : "column",
254
+ "moduleName" : "RTP-MIB",
255
+ "oid" : "1.3.6.1.2.1.87.1.3.1.3",
256
+ "status" : "current",
257
+ "syntax" : {
258
+ "type" : { "module" :"SNMPv2-TC", "name" : "TAddress"},
259
+ },
260
+ "access" : "readwrite",
261
+ "description" :
262
+ """The address to which RTP packets are sent by the RTP system.
263
+ In an IP multicast RTP session, this is the single address used
264
+
265
+
266
+ by all senders and receivers of RTP session data. In a unicast
267
+ RTP session this is the unicast address of the remote RTP system.
268
+ 'The destination address pair may be common for all participants,
269
+ as in the case of IP multicast, or may be different for each, as
270
+ in the case of individual unicast network address pairs.' See
271
+ RFC 1889, 'RTP: A Transport Protocol for Real-Time Applications,'
272
+ sec. 3. The transport service is identified by rtpSessionDomain.
273
+ For snmpUDPDomain, this is an IP address and even-numbered UDP
274
+ Port with the RTCP being sent on the next higher odd-numbered
275
+ port, see RFC 1889, sec. 5.""",
276
+ }, # column
277
+ "rtpSessionLocAddr" : {
278
+ "nodetype" : "column",
279
+ "moduleName" : "RTP-MIB",
280
+ "oid" : "1.3.6.1.2.1.87.1.3.1.4",
281
+ "status" : "current",
282
+ "syntax" : {
283
+ "type" : { "module" :"SNMPv2-TC", "name" : "TAddress"},
284
+ },
285
+ "access" : "readonly",
286
+ "description" :
287
+ """The local address used by the RTP system. In an IP multicast
288
+ RTP session, rtpSessionRemAddr will be the same IP multicast
289
+ address as rtpSessionLocAddr. In a unicast RTP session,
290
+ rtpSessionRemAddr and rtpSessionLocAddr will have different
291
+ unicast addresses. See RFC 1889, 'RTP: A Transport Protocol for
292
+ Real-Time Applications,' sec. 3. The transport service is
293
+ identified by rtpSessionDomain. For snmpUDPDomain, this is an IP
294
+ address and even-numbered UDP Port with the RTCP being sent on
295
+ the next higher odd-numbered port, see RFC 1889, sec. 5.""",
296
+ }, # column
297
+ "rtpSessionIfIndex" : {
298
+ "nodetype" : "column",
299
+ "moduleName" : "RTP-MIB",
300
+ "oid" : "1.3.6.1.2.1.87.1.3.1.5",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
304
+ },
305
+ "access" : "readwrite",
306
+ "description" :
307
+ """The ifIndex value is set to the corresponding value
308
+ from IF-MIB (See RFC 2233, 'The Interfaces Group MIB using
309
+ SMIv2'). This is the interface that the RTP stream is being sent
310
+ to or received from, or in the case of an RTP Monitor the
311
+ interface that RTCP packets will be received on. Cannot be
312
+ changed if rtpSessionRowStatus is 'active'.""",
313
+ }, # column
314
+ "rtpSessionSenderJoins" : {
315
+ "nodetype" : "column",
316
+ "moduleName" : "RTP-MIB",
317
+ "oid" : "1.3.6.1.2.1.87.1.3.1.6",
318
+ "status" : "current",
319
+ "syntax" : {
320
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
321
+ },
322
+ "access" : "readonly",
323
+ "description" :
324
+ """The number of senders that have been observed to have
325
+ joined the session since this conceptual row was created
326
+
327
+
328
+ (rtpSessionStartTime). A sender 'joins' an RTP
329
+ session by sending to it. Senders that leave and then
330
+ re-join following an RTCP BYE (see RFC 1889, 'RTP: A
331
+ Transport Protocol for Real-Time Applications,' sec. 6.6)
332
+ or session timeout may be counted twice. Every time a new
333
+ RTP sender is detected either using RTP or RTCP, this counter
334
+ is incremented.""",
335
+ }, # column
336
+ "rtpSessionReceiverJoins" : {
337
+ "nodetype" : "column",
338
+ "moduleName" : "RTP-MIB",
339
+ "oid" : "1.3.6.1.2.1.87.1.3.1.7",
340
+ "status" : "current",
341
+ "syntax" : {
342
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
343
+ },
344
+ "access" : "readonly",
345
+ "description" :
346
+ """The number of receivers that have been been observed to
347
+ have joined this session since this conceptual row was
348
+ created (rtpSessionStartTime). A receiver 'joins' an RTP
349
+ session by sending RTCP Receiver Reports to the session.
350
+ Receivers that leave and then re-join following an RTCP BYE
351
+ (see RFC 1889, 'RTP: A Transport Protocol for Real-Time
352
+ Applications,' sec. 6.6) or session timeout may be counted
353
+ twice.""",
354
+ }, # column
355
+ "rtpSessionByes" : {
356
+ "nodetype" : "column",
357
+ "moduleName" : "RTP-MIB",
358
+ "oid" : "1.3.6.1.2.1.87.1.3.1.8",
359
+ "status" : "current",
360
+ "syntax" : {
361
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
362
+ },
363
+ "access" : "readonly",
364
+ "description" :
365
+ """A count of RTCP BYE (see RFC 1889, 'RTP: A Transport
366
+ Protocol for Real-Time Applications,' sec. 6.6) messages
367
+ received by this entity.""",
368
+ }, # column
369
+ "rtpSessionStartTime" : {
370
+ "nodetype" : "column",
371
+ "moduleName" : "RTP-MIB",
372
+ "oid" : "1.3.6.1.2.1.87.1.3.1.9",
373
+ "status" : "current",
374
+ "syntax" : {
375
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
376
+ },
377
+ "access" : "readonly",
378
+ "description" :
379
+ """The value of SysUpTime at the time that this row was
380
+ created.""",
381
+ }, # column
382
+ "rtpSessionMonitor" : {
383
+ "nodetype" : "column",
384
+ "moduleName" : "RTP-MIB",
385
+ "oid" : "1.3.6.1.2.1.87.1.3.1.10",
386
+ "status" : "current",
387
+ "syntax" : {
388
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
389
+ },
390
+ "access" : "readonly",
391
+ "description" :
392
+ """Boolean, Set to 'true(1)' if remote senders or receivers in
393
+ addition to the local RTP System are to be monitored using RTCP.
394
+ RTP Monitors MUST initialize to 'true(1)' and RTP Hosts SHOULD
395
+ initialize this 'false(2)'. Note that because 'host monitor'
396
+ systems are receiving RTCP from their remote participants they
397
+ MUST set this value to 'true(1)'.""",
398
+ }, # column
399
+ "rtpSessionRowStatus" : {
400
+ "nodetype" : "column",
401
+ "moduleName" : "RTP-MIB",
402
+ "oid" : "1.3.6.1.2.1.87.1.3.1.11",
403
+ "status" : "current",
404
+ "syntax" : {
405
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
406
+ },
407
+ "access" : "readwrite",
408
+ "description" :
409
+ """Value of 'active' when RTP or RTCP messages are being
410
+ sent or received by an RTP System. A newly-created
411
+ conceptual row must have the all read-create objects
412
+ initialized before becoming 'active'.
413
+ A conceptual row that is in the 'notReady' or 'notInService'
414
+ state MAY be removed after 5 minutes.""",
415
+ }, # column
416
+ "rtpSenderInverseTable" : {
417
+ "nodetype" : "table",
418
+ "moduleName" : "RTP-MIB",
419
+ "oid" : "1.3.6.1.2.1.87.1.4",
420
+ "status" : "current",
421
+ "description" :
422
+ """Maps rtpSenderAddr, rtpSessionIndex, to the rtpSenderSSRC
423
+ index of the rtpSenderTable. This table allows management
424
+ applications to find entries sorted by rtpSenderAddr rather than
425
+ sorted by rtpSessionIndex. Given the rtpSessionDomain and
426
+ rtpSenderAddr, a set of rtpSessionIndex and rtpSenderSSRC values
427
+ can be returned from a tree walk. When rtpSessionIndex is
428
+ specified in the SNMP Get-Next operations, one or more
429
+ rtpSenderSSRC values may be returned.""",
430
+ }, # table
431
+ "rtpSenderInverseEntry" : {
432
+ "nodetype" : "row",
433
+ "moduleName" : "RTP-MIB",
434
+ "oid" : "1.3.6.1.2.1.87.1.4.1",
435
+ "status" : "current",
436
+ "linkage" : [
437
+ "rtpSessionDomain",
438
+ "rtpSenderAddr",
439
+ "rtpSessionIndex",
440
+ "rtpSenderSSRC",
441
+ ],
442
+ "description" :
443
+ """Each entry corresponds to exactly one entry in the
444
+ rtpSenderTable - the entry containing the index pair,
445
+ rtpSessionIndex, rtpSenderSSRC.""",
446
+ }, # row
447
+ "rtpSenderInverseStartTime" : {
448
+ "nodetype" : "column",
449
+ "moduleName" : "RTP-MIB",
450
+ "oid" : "1.3.6.1.2.1.87.1.4.1.1",
451
+ "status" : "current",
452
+ "syntax" : {
453
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
454
+ },
455
+ "access" : "readonly",
456
+ "description" :
457
+ """The value of SysUpTime at the time that this row was
458
+ created.""",
459
+ }, # column
460
+ "rtpSenderTable" : {
461
+ "nodetype" : "table",
462
+ "moduleName" : "RTP-MIB",
463
+ "oid" : "1.3.6.1.2.1.87.1.5",
464
+ "status" : "current",
465
+ "description" :
466
+ """Table of information about a sender or senders to an RTP
467
+ Session. RTP sending hosts MUST have an entry in this table
468
+ for each stream being sent. RTP receiving hosts MAY have an
469
+ entry in this table for each sending stream being received by
470
+ this host. RTP monitors MUST create an entry for each observed
471
+ sender to a multicast RTP Session as a side-effect when a
472
+ conceptual row in the rtpSessionTable is made 'active' by a
473
+ manager.""",
474
+ }, # table
475
+ "rtpSenderEntry" : {
476
+ "nodetype" : "row",
477
+ "moduleName" : "RTP-MIB",
478
+ "oid" : "1.3.6.1.2.1.87.1.5.1",
479
+ "status" : "current",
480
+ "linkage" : [
481
+ "rtpSessionIndex",
482
+ "rtpSenderSSRC",
483
+ ],
484
+ "description" :
485
+ """Each entry contains information from a single RTP Sender
486
+ Synchronization Source (SSRC, see RFC 1889 'RTP: A Transport
487
+ Protocol for Real-Time Applications' sec.6). The session is
488
+ identified to the the SNMP entity by rtpSessionIndex.
489
+ Rows are removed by the RTP agent when a BYE is received
490
+ from the sender or when the sender times out (see RFC
491
+ 1889, Sec. 6.2.1) or when the rtpSessionEntry is deleted.""",
492
+ }, # row
493
+ "rtpSenderSSRC" : {
494
+ "nodetype" : "column",
495
+ "moduleName" : "RTP-MIB",
496
+ "oid" : "1.3.6.1.2.1.87.1.5.1.1",
497
+ "status" : "current",
498
+ "syntax" : {
499
+ "type" : { "module" :"", "name" : "Unsigned32"},
500
+ },
501
+ "access" : "noaccess",
502
+ "description" :
503
+ """The RTP SSRC, or synchronization source identifier of the
504
+ sender. The RTP session address plus an SSRC uniquely
505
+ identify a sender to an RTP session (see RFC 1889, 'RTP: A
506
+ Transport Protocol for Real-Time Applications' sec.3).""",
507
+ }, # column
508
+ "rtpSenderCNAME" : {
509
+ "nodetype" : "column",
510
+ "moduleName" : "RTP-MIB",
511
+ "oid" : "1.3.6.1.2.1.87.1.5.1.2",
512
+ "status" : "current",
513
+ "syntax" : {
514
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
515
+ },
516
+ "access" : "readonly",
517
+ "description" :
518
+ """The RTP canonical name of the sender.""",
519
+ }, # column
520
+ "rtpSenderAddr" : {
521
+ "nodetype" : "column",
522
+ "moduleName" : "RTP-MIB",
523
+ "oid" : "1.3.6.1.2.1.87.1.5.1.3",
524
+ "status" : "current",
525
+ "syntax" : {
526
+ "type" : { "module" :"SNMPv2-TC", "name" : "TAddress"},
527
+ },
528
+ "access" : "readonly",
529
+ "description" :
530
+ """The unicast transport source address of the sender. In the
531
+ case of an RTP Monitor this address is the address that the
532
+ sender is using to send its RTCP Sender Reports.""",
533
+ }, # column
534
+ "rtpSenderPackets" : {
535
+ "nodetype" : "column",
536
+ "moduleName" : "RTP-MIB",
537
+ "oid" : "1.3.6.1.2.1.87.1.5.1.4",
538
+ "status" : "current",
539
+ "syntax" : {
540
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
541
+ },
542
+ "access" : "readonly",
543
+ "description" :
544
+ """Count of RTP packets sent by this sender, or observed by
545
+
546
+
547
+ an RTP monitor, since rtpSenderStartTime.""",
548
+ }, # column
549
+ "rtpSenderOctets" : {
550
+ "nodetype" : "column",
551
+ "moduleName" : "RTP-MIB",
552
+ "oid" : "1.3.6.1.2.1.87.1.5.1.5",
553
+ "status" : "current",
554
+ "syntax" : {
555
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
556
+ },
557
+ "access" : "readonly",
558
+ "description" :
559
+ """Count of non-header RTP octets sent by this sender, or observed
560
+ by an RTP monitor, since rtpSenderStartTime.""",
561
+ }, # column
562
+ "rtpSenderTool" : {
563
+ "nodetype" : "column",
564
+ "moduleName" : "RTP-MIB",
565
+ "oid" : "1.3.6.1.2.1.87.1.5.1.6",
566
+ "status" : "current",
567
+ "syntax" : {
568
+ "type" : {
569
+ "basetype" : "OctetString",
570
+ "parent module" : {
571
+ "name" : "SYSAPPL-MIB",
572
+ "type" : "Utf8String",
573
+ },
574
+ "ranges" : [
575
+ {
576
+ "min" : "0",
577
+ "max" : "127"
578
+ },
579
+ ],
580
+ "range" : {
581
+ "min" : "0",
582
+ "max" : "127"
583
+ },
584
+ },
585
+ },
586
+ "access" : "readonly",
587
+ "description" :
588
+ """Name of the application program source of the stream.""",
589
+ }, # column
590
+ "rtpSenderSRs" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "RTP-MIB",
593
+ "oid" : "1.3.6.1.2.1.87.1.5.1.7",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
597
+ },
598
+ "access" : "readonly",
599
+ "description" :
600
+ """A count of the number of RTCP Sender Reports that have
601
+ been sent from this sender, or observed if the RTP entity
602
+ is a monitor, since rtpSenderStartTime.""",
603
+ }, # column
604
+ "rtpSenderSRTime" : {
605
+ "nodetype" : "column",
606
+ "moduleName" : "RTP-MIB",
607
+ "oid" : "1.3.6.1.2.1.87.1.5.1.8",
608
+ "status" : "current",
609
+ "syntax" : {
610
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
611
+ },
612
+ "access" : "readonly",
613
+ "description" :
614
+ """rtpSenderSRTime is the value of SysUpTime at the time that
615
+ the last SR was received from this sender, in the case of a
616
+ monitor or receiving host. Or sent by this sender, in the
617
+ case of a sending host.""",
618
+ }, # column
619
+ "rtpSenderPT" : {
620
+ "nodetype" : "column",
621
+ "moduleName" : "RTP-MIB",
622
+ "oid" : "1.3.6.1.2.1.87.1.5.1.9",
623
+ "status" : "current",
624
+ "syntax" : {
625
+ "type" : {
626
+ "basetype" : "Integer32",
627
+ "ranges" : [
628
+ {
629
+ "min" : "0",
630
+ "max" : "127"
631
+ },
632
+ ],
633
+ "range" : {
634
+ "min" : "0",
635
+ "max" : "127"
636
+ },
637
+ },
638
+ },
639
+ "access" : "readonly",
640
+ "description" :
641
+ """Payload type from the RTP header of the most recently received
642
+ RTP Packet (see RFC 1889, 'RTP: A Transport Protocol for
643
+
644
+
645
+ Real-Time Applications' sec. 5).""",
646
+ }, # column
647
+ "rtpSenderStartTime" : {
648
+ "nodetype" : "column",
649
+ "moduleName" : "RTP-MIB",
650
+ "oid" : "1.3.6.1.2.1.87.1.5.1.10",
651
+ "status" : "current",
652
+ "syntax" : {
653
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
654
+ },
655
+ "access" : "readonly",
656
+ "description" :
657
+ """The value of SysUpTime at the time that this row was
658
+ created.""",
659
+ }, # column
660
+ "rtpRcvrInverseTable" : {
661
+ "nodetype" : "table",
662
+ "moduleName" : "RTP-MIB",
663
+ "oid" : "1.3.6.1.2.1.87.1.6",
664
+ "status" : "current",
665
+ "description" :
666
+ """Maps rtpRcvrAddr and rtpSessionIndex to the rtpRcvrSRCSSRC and
667
+ rtpRcvrSSRC indexes of the rtpRcvrTable. This table allows
668
+ management applications to find entries sorted by rtpRcvrAddr
669
+ rather than by rtpSessionIndex. Given rtpSessionDomain and
670
+ rtpRcvrAddr, a set of rtpSessionIndex, rtpRcvrSRCSSRC, and
671
+ rtpRcvrSSRC values can be returned from a tree walk. When
672
+ rtpSessionIndex is specified in SNMP Get-Next operations, one or
673
+ more rtpRcvrSRCSSRC and rtpRcvrSSRC pairs may be returned.""",
674
+ }, # table
675
+ "rtpRcvrInverseEntry" : {
676
+ "nodetype" : "row",
677
+ "moduleName" : "RTP-MIB",
678
+ "oid" : "1.3.6.1.2.1.87.1.6.1",
679
+ "status" : "current",
680
+ "linkage" : [
681
+ "rtpSessionDomain",
682
+ "rtpRcvrAddr",
683
+ "rtpSessionIndex",
684
+ "rtpRcvrSRCSSRC",
685
+ "rtpRcvrSSRC",
686
+ ],
687
+ "description" :
688
+ """Each entry corresponds to exactly one entry in the
689
+ rtpRcvrTable - the entry containing the index pair,
690
+ rtpSessionIndex, rtpRcvrSSRC.""",
691
+ }, # row
692
+ "rtpRcvrInverseStartTime" : {
693
+ "nodetype" : "column",
694
+ "moduleName" : "RTP-MIB",
695
+ "oid" : "1.3.6.1.2.1.87.1.6.1.1",
696
+ "status" : "current",
697
+ "syntax" : {
698
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
699
+ },
700
+ "access" : "readonly",
701
+ "description" :
702
+ """The value of SysUpTime at the time that this row was
703
+ created.""",
704
+ }, # column
705
+ "rtpRcvrTable" : {
706
+ "nodetype" : "table",
707
+ "moduleName" : "RTP-MIB",
708
+ "oid" : "1.3.6.1.2.1.87.1.7",
709
+ "status" : "current",
710
+ "description" :
711
+ """Table of information about a receiver or receivers of RTP
712
+ session data. RTP hosts that receive RTP session packets
713
+ MUST create an entry in this table for that receiver/sender
714
+ pair. RTP hosts that send RTP session packets MAY create
715
+ an entry in this table for each receiver to their stream
716
+ using RTCP feedback from the RTP group. RTP monitors
717
+ create an entry for each observed RTP session receiver as
718
+ a side effect when a conceptual row in the rtpSessionTable
719
+ is made 'active' by a manager.""",
720
+ }, # table
721
+ "rtpRcvrEntry" : {
722
+ "nodetype" : "row",
723
+ "moduleName" : "RTP-MIB",
724
+ "oid" : "1.3.6.1.2.1.87.1.7.1",
725
+ "status" : "current",
726
+ "linkage" : [
727
+ "rtpSessionIndex",
728
+ "rtpRcvrSRCSSRC",
729
+ "rtpRcvrSSRC",
730
+ ],
731
+ "description" :
732
+ """Each entry contains information from a single RTP
733
+ Synchronization Source that is receiving packets from the
734
+ sender identified by rtpRcvrSRCSSRC (SSRC, see RFC 1889,
735
+ 'RTP: A Transport Protocol for Real-Time Applications'
736
+ sec.6). The session is identified to the the RTP Agent entity
737
+ by rtpSessionIndex. Rows are removed by the RTP agent when
738
+ a BYE is received from the sender or when the sender times
739
+ out (see RFC 1889, Sec. 6.2.1) or when the rtpSessionEntry is
740
+ deleted.""",
741
+ }, # row
742
+ "rtpRcvrSRCSSRC" : {
743
+ "nodetype" : "column",
744
+ "moduleName" : "RTP-MIB",
745
+ "oid" : "1.3.6.1.2.1.87.1.7.1.1",
746
+ "status" : "current",
747
+ "syntax" : {
748
+ "type" : { "module" :"", "name" : "Unsigned32"},
749
+ },
750
+ "access" : "noaccess",
751
+ "description" :
752
+ """The RTP SSRC, or synchronization source identifier of the
753
+ sender. The RTP session address plus an SSRC uniquely
754
+ identify a sender or receiver of an RTP stream (see RFC
755
+ 1889, 'RTP: A Transport Protocol for Real-Time
756
+ Applications' sec.3).""",
757
+ }, # column
758
+ "rtpRcvrSSRC" : {
759
+ "nodetype" : "column",
760
+ "moduleName" : "RTP-MIB",
761
+ "oid" : "1.3.6.1.2.1.87.1.7.1.2",
762
+ "status" : "current",
763
+ "syntax" : {
764
+ "type" : { "module" :"", "name" : "Unsigned32"},
765
+ },
766
+ "access" : "noaccess",
767
+ "description" :
768
+ """The RTP SSRC, or synchronization source identifier of the
769
+ receiver. The RTP session address plus an SSRC uniquely
770
+ identify a receiver of an RTP stream (see RFC 1889, 'RTP:
771
+ A Transport Protocol for Real-Time Applications' sec.3).""",
772
+ }, # column
773
+ "rtpRcvrCNAME" : {
774
+ "nodetype" : "column",
775
+ "moduleName" : "RTP-MIB",
776
+ "oid" : "1.3.6.1.2.1.87.1.7.1.3",
777
+ "status" : "current",
778
+ "syntax" : {
779
+ "type" : { "module" :"SYSAPPL-MIB", "name" : "Utf8String"},
780
+ },
781
+ "access" : "readonly",
782
+ "description" :
783
+ """The RTP canonical name of the receiver.""",
784
+ }, # column
785
+ "rtpRcvrAddr" : {
786
+ "nodetype" : "column",
787
+ "moduleName" : "RTP-MIB",
788
+ "oid" : "1.3.6.1.2.1.87.1.7.1.4",
789
+ "status" : "current",
790
+ "syntax" : {
791
+ "type" : { "module" :"SNMPv2-TC", "name" : "TAddress"},
792
+ },
793
+ "access" : "readonly",
794
+ "description" :
795
+ """The unicast transport address on which the receiver is
796
+ receiving RTP packets and/or RTCP Receiver Reports.""",
797
+ }, # column
798
+ "rtpRcvrRTT" : {
799
+ "nodetype" : "column",
800
+ "moduleName" : "RTP-MIB",
801
+ "oid" : "1.3.6.1.2.1.87.1.7.1.5",
802
+ "status" : "current",
803
+ "syntax" : {
804
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
805
+ },
806
+ "access" : "readonly",
807
+ "description" :
808
+ """The round trip time measurement taken by the source of the
809
+ RTP stream based on the algorithm described on sec. 6 of
810
+ RFC 1889, 'RTP: A Transport Protocol for Real-Time
811
+ Applications.' This algorithm can produce meaningful
812
+ results when the RTP agent has the same clock as the stream
813
+ sender (when the RTP monitor is also the sending host for the
814
+ particular receiver). Otherwise, the entity should return
815
+ 'noSuchInstance' in response to queries against rtpRcvrRTT.""",
816
+ }, # column
817
+ "rtpRcvrLostPackets" : {
818
+ "nodetype" : "column",
819
+ "moduleName" : "RTP-MIB",
820
+ "oid" : "1.3.6.1.2.1.87.1.7.1.6",
821
+ "status" : "current",
822
+ "syntax" : {
823
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
824
+ },
825
+ "access" : "readonly",
826
+ "description" :
827
+ """A count of RTP packets lost as observed by this receiver
828
+ since rtpRcvrStartTime.""",
829
+ }, # column
830
+ "rtpRcvrJitter" : {
831
+ "nodetype" : "column",
832
+ "moduleName" : "RTP-MIB",
833
+ "oid" : "1.3.6.1.2.1.87.1.7.1.7",
834
+ "status" : "current",
835
+ "syntax" : {
836
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
837
+ },
838
+ "access" : "readonly",
839
+ "description" :
840
+ """An estimate of delay variation as observed by this
841
+ receiver. (see RFC 1889, 'RTP: A Transport Protocol
842
+ for Real-Time Applications' sec.6.3.1 and A.8).""",
843
+ }, # column
844
+ "rtpRcvrTool" : {
845
+ "nodetype" : "column",
846
+ "moduleName" : "RTP-MIB",
847
+ "oid" : "1.3.6.1.2.1.87.1.7.1.8",
848
+ "status" : "current",
849
+ "syntax" : {
850
+ "type" : {
851
+ "basetype" : "OctetString",
852
+ "parent module" : {
853
+ "name" : "SYSAPPL-MIB",
854
+ "type" : "Utf8String",
855
+ },
856
+ "ranges" : [
857
+ {
858
+ "min" : "0",
859
+ "max" : "127"
860
+ },
861
+ ],
862
+ "range" : {
863
+ "min" : "0",
864
+ "max" : "127"
865
+ },
866
+ },
867
+ },
868
+ "access" : "readonly",
869
+ "description" :
870
+ """Name of the application program source of the stream.""",
871
+ }, # column
872
+ "rtpRcvrRRs" : {
873
+ "nodetype" : "column",
874
+ "moduleName" : "RTP-MIB",
875
+ "oid" : "1.3.6.1.2.1.87.1.7.1.9",
876
+ "status" : "current",
877
+ "syntax" : {
878
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
879
+ },
880
+ "access" : "readonly",
881
+ "description" :
882
+ """A count of the number of RTCP Receiver Reports that have
883
+ been sent from this receiver, or observed if the RTP entity
884
+ is a monitor, since rtpRcvrStartTime.""",
885
+ }, # column
886
+ "rtpRcvrRRTime" : {
887
+ "nodetype" : "column",
888
+ "moduleName" : "RTP-MIB",
889
+ "oid" : "1.3.6.1.2.1.87.1.7.1.10",
890
+ "status" : "current",
891
+ "syntax" : {
892
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
893
+ },
894
+ "access" : "readonly",
895
+ "description" :
896
+ """rtpRcvrRRTime is the value of SysUpTime at the time that the
897
+ last RTCP Receiver Report was received from this receiver, in
898
+ the case of a monitor or RR receiver (the RTP Sender). It is
899
+ the value of SysUpTime at the time that the last RR was sent by
900
+ this receiver in the case of an RTP receiver sending the RR.""",
901
+ }, # column
902
+ "rtpRcvrPT" : {
903
+ "nodetype" : "column",
904
+ "moduleName" : "RTP-MIB",
905
+ "oid" : "1.3.6.1.2.1.87.1.7.1.11",
906
+ "status" : "current",
907
+ "syntax" : {
908
+ "type" : {
909
+ "basetype" : "Integer32",
910
+ "ranges" : [
911
+ {
912
+ "min" : "0",
913
+ "max" : "127"
914
+ },
915
+ ],
916
+ "range" : {
917
+ "min" : "0",
918
+ "max" : "127"
919
+ },
920
+ },
921
+ },
922
+ "access" : "readonly",
923
+ "description" :
924
+ """Static or dynamic payload type from the RTP header (see
925
+ RFC 1889, 'RTP: A Transport Protocol for Real-Time
926
+ Applications' sec. 5).""",
927
+ }, # column
928
+ "rtpRcvrPackets" : {
929
+ "nodetype" : "column",
930
+ "moduleName" : "RTP-MIB",
931
+ "oid" : "1.3.6.1.2.1.87.1.7.1.12",
932
+ "status" : "current",
933
+ "syntax" : {
934
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
935
+ },
936
+ "access" : "readonly",
937
+ "description" :
938
+ """Count of RTP packets received by this RTP host receiver
939
+ since rtpRcvrStartTime.""",
940
+ }, # column
941
+ "rtpRcvrOctets" : {
942
+ "nodetype" : "column",
943
+ "moduleName" : "RTP-MIB",
944
+ "oid" : "1.3.6.1.2.1.87.1.7.1.13",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
948
+ },
949
+ "access" : "readonly",
950
+ "description" :
951
+ """Count of non-header RTP octets received by this receiving RTP
952
+ host since rtpRcvrStartTime.""",
953
+ }, # column
954
+ "rtpRcvrStartTime" : {
955
+ "nodetype" : "column",
956
+ "moduleName" : "RTP-MIB",
957
+ "oid" : "1.3.6.1.2.1.87.1.7.1.14",
958
+ "status" : "current",
959
+ "syntax" : {
960
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
961
+ },
962
+ "access" : "readonly",
963
+ "description" :
964
+ """The value of SysUpTime at the time that this row was
965
+ created.""",
966
+ }, # column
967
+ "rtpConformance" : {
968
+ "nodetype" : "node",
969
+ "moduleName" : "RTP-MIB",
970
+ "oid" : "1.3.6.1.2.1.87.2",
971
+ }, # node
972
+ "rtpGroups" : {
973
+ "nodetype" : "node",
974
+ "moduleName" : "RTP-MIB",
975
+ "oid" : "1.3.6.1.2.1.87.2.1",
976
+ }, # node
977
+ "rtpCompliances" : {
978
+ "nodetype" : "node",
979
+ "moduleName" : "RTP-MIB",
980
+ "oid" : "1.3.6.1.2.1.87.2.2",
981
+ }, # node
982
+ }, # nodes
983
+
984
+ "groups" : {
985
+ "rtpSystemGroup" : {
986
+ "nodetype" : "group",
987
+ "moduleName" : "RTP-MIB",
988
+ "oid" : "1.3.6.1.2.1.87.2.1.1",
989
+ "status" : "current",
990
+ "members" : {
991
+ "rtpSessionDomain" : {
992
+ "nodetype" : "member",
993
+ "module" : "RTP-MIB"
994
+ },
995
+ "rtpSessionRemAddr" : {
996
+ "nodetype" : "member",
997
+ "module" : "RTP-MIB"
998
+ },
999
+ "rtpSessionIfIndex" : {
1000
+ "nodetype" : "member",
1001
+ "module" : "RTP-MIB"
1002
+ },
1003
+ "rtpSessionSenderJoins" : {
1004
+ "nodetype" : "member",
1005
+ "module" : "RTP-MIB"
1006
+ },
1007
+ "rtpSessionReceiverJoins" : {
1008
+ "nodetype" : "member",
1009
+ "module" : "RTP-MIB"
1010
+ },
1011
+ "rtpSessionStartTime" : {
1012
+ "nodetype" : "member",
1013
+ "module" : "RTP-MIB"
1014
+ },
1015
+ "rtpSessionByes" : {
1016
+ "nodetype" : "member",
1017
+ "module" : "RTP-MIB"
1018
+ },
1019
+ "rtpSessionMonitor" : {
1020
+ "nodetype" : "member",
1021
+ "module" : "RTP-MIB"
1022
+ },
1023
+ "rtpSenderCNAME" : {
1024
+ "nodetype" : "member",
1025
+ "module" : "RTP-MIB"
1026
+ },
1027
+ "rtpSenderAddr" : {
1028
+ "nodetype" : "member",
1029
+ "module" : "RTP-MIB"
1030
+ },
1031
+ "rtpSenderPackets" : {
1032
+ "nodetype" : "member",
1033
+ "module" : "RTP-MIB"
1034
+ },
1035
+ "rtpSenderOctets" : {
1036
+ "nodetype" : "member",
1037
+ "module" : "RTP-MIB"
1038
+ },
1039
+ "rtpSenderTool" : {
1040
+ "nodetype" : "member",
1041
+ "module" : "RTP-MIB"
1042
+ },
1043
+ "rtpSenderSRs" : {
1044
+ "nodetype" : "member",
1045
+ "module" : "RTP-MIB"
1046
+ },
1047
+ "rtpSenderSRTime" : {
1048
+ "nodetype" : "member",
1049
+ "module" : "RTP-MIB"
1050
+ },
1051
+ "rtpSenderStartTime" : {
1052
+ "nodetype" : "member",
1053
+ "module" : "RTP-MIB"
1054
+ },
1055
+ "rtpRcvrCNAME" : {
1056
+ "nodetype" : "member",
1057
+ "module" : "RTP-MIB"
1058
+ },
1059
+ "rtpRcvrAddr" : {
1060
+ "nodetype" : "member",
1061
+ "module" : "RTP-MIB"
1062
+ },
1063
+ "rtpRcvrLostPackets" : {
1064
+ "nodetype" : "member",
1065
+ "module" : "RTP-MIB"
1066
+ },
1067
+ "rtpRcvrJitter" : {
1068
+ "nodetype" : "member",
1069
+ "module" : "RTP-MIB"
1070
+ },
1071
+ "rtpRcvrTool" : {
1072
+ "nodetype" : "member",
1073
+ "module" : "RTP-MIB"
1074
+ },
1075
+ "rtpRcvrRRs" : {
1076
+ "nodetype" : "member",
1077
+ "module" : "RTP-MIB"
1078
+ },
1079
+ "rtpRcvrRRTime" : {
1080
+ "nodetype" : "member",
1081
+ "module" : "RTP-MIB"
1082
+ },
1083
+ "rtpRcvrStartTime" : {
1084
+ "nodetype" : "member",
1085
+ "module" : "RTP-MIB"
1086
+ },
1087
+ }, # members
1088
+ "description" :
1089
+ """Objects available to all RTP Systems.""",
1090
+ }, # group
1091
+ "rtpHostGroup" : {
1092
+ "nodetype" : "group",
1093
+ "moduleName" : "RTP-MIB",
1094
+ "oid" : "1.3.6.1.2.1.87.2.1.2",
1095
+ "status" : "current",
1096
+ "members" : {
1097
+ "rtpSessionLocAddr" : {
1098
+ "nodetype" : "member",
1099
+ "module" : "RTP-MIB"
1100
+ },
1101
+ "rtpSenderPT" : {
1102
+ "nodetype" : "member",
1103
+ "module" : "RTP-MIB"
1104
+ },
1105
+ "rtpRcvrPT" : {
1106
+ "nodetype" : "member",
1107
+ "module" : "RTP-MIB"
1108
+ },
1109
+ "rtpRcvrRTT" : {
1110
+ "nodetype" : "member",
1111
+ "module" : "RTP-MIB"
1112
+ },
1113
+ "rtpRcvrOctets" : {
1114
+ "nodetype" : "member",
1115
+ "module" : "RTP-MIB"
1116
+ },
1117
+ "rtpRcvrPackets" : {
1118
+ "nodetype" : "member",
1119
+ "module" : "RTP-MIB"
1120
+ },
1121
+ }, # members
1122
+ "description" :
1123
+ """Objects that are available to RTP Host systems, but may not
1124
+ be available to RTP Monitor systems.""",
1125
+ }, # group
1126
+ "rtpMonitorGroup" : {
1127
+ "nodetype" : "group",
1128
+ "moduleName" : "RTP-MIB",
1129
+ "oid" : "1.3.6.1.2.1.87.2.1.3",
1130
+ "status" : "current",
1131
+ "members" : {
1132
+ "rtpSessionNewIndex" : {
1133
+ "nodetype" : "member",
1134
+ "module" : "RTP-MIB"
1135
+ },
1136
+ "rtpSessionRowStatus" : {
1137
+ "nodetype" : "member",
1138
+ "module" : "RTP-MIB"
1139
+ },
1140
+ }, # members
1141
+ "description" :
1142
+ """Objects used to create rows in the RTP Session Table. These
1143
+ objects are not needed if the system does not create rows.""",
1144
+ }, # group
1145
+ "rtpInverseGroup" : {
1146
+ "nodetype" : "group",
1147
+ "moduleName" : "RTP-MIB",
1148
+ "oid" : "1.3.6.1.2.1.87.2.1.4",
1149
+ "status" : "current",
1150
+ "members" : {
1151
+ "rtpSessionInverseStartTime" : {
1152
+ "nodetype" : "member",
1153
+ "module" : "RTP-MIB"
1154
+ },
1155
+ "rtpSenderInverseStartTime" : {
1156
+ "nodetype" : "member",
1157
+ "module" : "RTP-MIB"
1158
+ },
1159
+ "rtpRcvrInverseStartTime" : {
1160
+ "nodetype" : "member",
1161
+ "module" : "RTP-MIB"
1162
+ },
1163
+ }, # members
1164
+ "description" :
1165
+ """Objects used in the Inverse Lookup Tables.""",
1166
+ }, # group
1167
+ }, # groups
1168
+
1169
+ "compliances" : {
1170
+ "rtpHostCompliance" : {
1171
+ "nodetype" : "compliance",
1172
+ "moduleName" : "RTP-MIB",
1173
+ "oid" : "1.3.6.1.2.1.87.2.2.1",
1174
+ "status" : "current",
1175
+ "description" :
1176
+ """Host implementations MUST comply.""",
1177
+ "requires" : {
1178
+ "rtpSystemGroup" : {
1179
+ "nodetype" : "mandatory",
1180
+ "module" : "RTP-MIB"
1181
+ },
1182
+ "rtpHostGroup" : {
1183
+ "nodetype" : "mandatory",
1184
+ "module" : "RTP-MIB"
1185
+ },
1186
+ "rtpMonitorGroup" : {
1187
+ "nodetype" : "optional",
1188
+ "module" : "RTP-MIB",
1189
+ "description" :
1190
+ """Host systems my optionally support row creation and deletion.
1191
+ This would allow an RTP Host system to act as an RTP Monitor.""",
1192
+ },
1193
+ "rtpInverseGroup" : {
1194
+ "nodetype" : "optional",
1195
+ "module" : "RTP-MIB",
1196
+ "description" :
1197
+ """Multicast RTP Systems SHOULD implement the optional
1198
+ tables.""",
1199
+ },
1200
+ }, # requires
1201
+ "refinements" : {
1202
+ "rtpSessionNewIndex" : {
1203
+ "module" : "RTP-MIB",
1204
+ "access" : "noaccess",
1205
+ "description" :
1206
+ """RTP system implementations support of
1207
+ row creation and deletion is OPTIONAL so
1208
+ implementation of this object is OPTIONAL.""",
1209
+ },
1210
+ "rtpSessionDomain" : {
1211
+ "module" : "RTP-MIB",
1212
+ "access" : "readonly",
1213
+ "description" :
1214
+ """RTP system implementation support of
1215
+ row creation and deletion is OPTIONAL. When
1216
+ it is not supported so write access is
1217
+ OPTIONAL.""",
1218
+ },
1219
+ "rtpSessionRemAddr" : {
1220
+ "module" : "RTP-MIB",
1221
+ "access" : "readonly",
1222
+ "description" :
1223
+ """Row creation and deletion is OPTIONAL so
1224
+ read-create access to this object is OPTIONAL.""",
1225
+ },
1226
+ "rtpSessionIfIndex" : {
1227
+ "module" : "RTP-MIB",
1228
+ "access" : "readonly",
1229
+ "description" :
1230
+ """Row creation and deletion is OPTIONAL so
1231
+ read-create access to this object is OPTIONAL.""",
1232
+ },
1233
+ "rtpSessionRowStatus" : {
1234
+ "module" : "RTP-MIB",
1235
+ "access" : "noaccess",
1236
+ "description" :
1237
+ """Row creation and deletion is OPTIONAL so
1238
+ read-create access to this object is OPTIONAL.""",
1239
+ },
1240
+ "rtpSessionInverseStartTime" : {
1241
+ "module" : "RTP-MIB",
1242
+ "access" : "noaccess",
1243
+ "description" :
1244
+ """Multicast RTP Systems SHOULD implement the optional
1245
+ tables.""",
1246
+ },
1247
+ "rtpSenderInverseStartTime" : {
1248
+ "module" : "RTP-MIB",
1249
+ "access" : "noaccess",
1250
+ "description" :
1251
+ """Multicast RTP Systems SHOULD implement the optional
1252
+ tables.""",
1253
+ },
1254
+ "rtpRcvrInverseStartTime" : {
1255
+ "module" : "RTP-MIB",
1256
+ "access" : "noaccess",
1257
+ "description" :
1258
+ """Multicast RTP Systems SHOULD implement the optional
1259
+ tables.""",
1260
+ },
1261
+ }, # refinements
1262
+
1263
+ }, # compliance
1264
+ "rtpMonitorCompliance" : {
1265
+ "nodetype" : "compliance",
1266
+ "moduleName" : "RTP-MIB",
1267
+ "oid" : "1.3.6.1.2.1.87.2.2.2",
1268
+ "status" : "current",
1269
+ "description" :
1270
+ """Monitor implementations must comply. RTP Monitors are not
1271
+ required to support creation or deletion.""",
1272
+ "requires" : {
1273
+ "rtpSystemGroup" : {
1274
+ "nodetype" : "mandatory",
1275
+ "module" : "RTP-MIB"
1276
+ },
1277
+ "rtpMonitorGroup" : {
1278
+ "nodetype" : "mandatory",
1279
+ "module" : "RTP-MIB"
1280
+ },
1281
+ "rtpHostGroup" : {
1282
+ "nodetype" : "optional",
1283
+ "module" : "RTP-MIB",
1284
+ "description" :
1285
+ """Monitor implementations may not have access to values in the
1286
+ rtpHostGroup.""",
1287
+ },
1288
+ "rtpInverseGroup" : {
1289
+ "nodetype" : "optional",
1290
+ "module" : "RTP-MIB",
1291
+ "description" :
1292
+ """Multicast RTP Systems SHOULD implement the optional
1293
+ tables.""",
1294
+ },
1295
+ }, # requires
1296
+ "refinements" : {
1297
+ "rtpSessionLocAddr" : {
1298
+ "module" : "RTP-MIB",
1299
+ "access" : "noaccess",
1300
+ "description" :
1301
+ """RTP monitor sourcing of RTP or RTCP data packets
1302
+ is OPTIONAL and implementation of this object is
1303
+ OPTIONAL.""",
1304
+ },
1305
+ "rtpRcvrPT" : {
1306
+ "module" : "RTP-MIB",
1307
+ "access" : "noaccess",
1308
+ "description" :
1309
+ """RTP monitor systems may not support
1310
+ retrieval of the RTP Payload Type from the RTP
1311
+ header (and may receive RTCP messages only). When
1312
+ queried for the payload type information""",
1313
+ },
1314
+ "rtpSenderPT" : {
1315
+ "module" : "RTP-MIB",
1316
+ "access" : "noaccess",
1317
+ "description" :
1318
+ """RTP monitor systems may not support
1319
+ retrieval of the RTP Payload Type from the RTP
1320
+
1321
+
1322
+ header (and may receive RTCP messages only). When
1323
+ queried for the payload type information.""",
1324
+ },
1325
+ "rtpRcvrOctets" : {
1326
+ "module" : "RTP-MIB",
1327
+ "access" : "noaccess",
1328
+ "description" :
1329
+ """RTP monitor systems may receive only the RTCP messages
1330
+ and not the RTP messages that contain the octet count
1331
+ of the RTP message. Thus implementation of this
1332
+ object is OPTIONAL""",
1333
+ },
1334
+ "rtpRcvrPackets" : {
1335
+ "module" : "RTP-MIB",
1336
+ "access" : "noaccess",
1337
+ "description" :
1338
+ """RTP monitor systems may receive only the RTCP messages
1339
+ and not the RTP messages that contain the octet count
1340
+ of the RTP message. Thus implementation of this
1341
+ object is OPTIONAL.""",
1342
+ },
1343
+ "rtpSessionIfIndex" : {
1344
+ "module" : "RTP-MIB",
1345
+ "access" : "readonly",
1346
+ "description" :
1347
+ """Row creation and deletion is OPTIONAL so
1348
+ read-create access to this object is OPTIONAL.""",
1349
+ },
1350
+ "rtpSessionInverseStartTime" : {
1351
+ "module" : "RTP-MIB",
1352
+ "access" : "noaccess",
1353
+ "description" :
1354
+ """Multicast RTP Systems SHOULD implement the optional
1355
+ tables.""",
1356
+ },
1357
+ "rtpSenderInverseStartTime" : {
1358
+ "module" : "RTP-MIB",
1359
+ "access" : "noaccess",
1360
+ "description" :
1361
+ """Multicast RTP Systems SHOULD implement the optional
1362
+ tables.""",
1363
+ },
1364
+ "rtpRcvrInverseStartTime" : {
1365
+ "module" : "RTP-MIB",
1366
+ "access" : "noaccess",
1367
+ "description" :
1368
+ """Multicast RTP Systems SHOULD implement the optional
1369
+ tables.""",
1370
+ },
1371
+ }, # refinements
1372
+
1373
+ }, # compliance
1374
+ }, # compliances
1375
+
1376
+ }