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,1959 @@
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 HPR-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/HPR-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "HPR-MIB",
11
+
12
+ "HPR-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """AIW APPN / HPR MIB SIG""",
17
+ "contact" :
18
+ """
19
+
20
+ Bob Clouston
21
+ Cisco Systems
22
+ 7025 Kit Creek Road
23
+ P.O. Box 14987
24
+ Research Triangle Park, NC 27709, USA
25
+ Tel: 1 919 472 2333
26
+ E-mail: clouston@cisco.com
27
+
28
+ Bob Moore
29
+ IBM Corporation
30
+ 800 Park Offices Drive
31
+ RHJA/664
32
+ P.O. Box 12195
33
+ Research Triangle Park, NC 27709, USA
34
+ Tel: 1 919 254 4436
35
+ E-mail: remoore@ralvm6.vnet.ibm.com""",
36
+ "description" :
37
+ """This is the MIB module for objects used to
38
+ manage network devices with HPR capabilities.""",
39
+ "revisions" : (
40
+ {
41
+ "date" : "1997-05-14 00:00",
42
+ "description" :
43
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
44
+ },
45
+ ),
46
+ "identity node" : "hprMIB",
47
+ },
48
+
49
+ "imports" : (
50
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
51
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
52
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
53
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
57
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
58
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
59
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
60
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
61
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
62
+ {"module" : "SNA-NAU-MIB", "name" : "snanauMIB"},
63
+ {"module" : "APPN-MIB", "name" : "SnaControlPointName"},
64
+ ),
65
+
66
+ "typedefs" : {
67
+ "HprNceTypes" : {
68
+ "basetype" : "Bits",
69
+ "status" : "current",
70
+ "controlPoint" : {
71
+ "nodetype" : "namednumber",
72
+ "number" : "0"
73
+ },
74
+ "logicalUnit" : {
75
+ "nodetype" : "namednumber",
76
+ "number" : "1"
77
+ },
78
+ "boundaryFunction" : {
79
+ "nodetype" : "namednumber",
80
+ "number" : "2"
81
+ },
82
+ "routeSetup" : {
83
+ "nodetype" : "namednumber",
84
+ "number" : "3"
85
+ },
86
+ "description" :
87
+ """A bit string identifying the set of functions provided by a
88
+ network connection endpoint (NCE). The following values are
89
+ defined:
90
+
91
+ bit 0: control point
92
+ bit 1: logical unit
93
+ bit 2: boundary function
94
+ bit 3: route setup""",
95
+ },
96
+ "HprRtpCounter" : {
97
+ "basetype" : "Unsigned32",
98
+ "status" : "current",
99
+ "parent module" : {
100
+ "name" : "SNMPv2-SMI",
101
+ "type" : "Counter32",
102
+ },
103
+ "description" :
104
+ """An object providing statistics for an RTP connection. A
105
+ Management Station can detect discontinuities in this counter
106
+ by monitoring the correspondingly indexed
107
+ hprRtpCounterDisconTime object.""",
108
+ },
109
+ }, # typedefs
110
+
111
+ "nodes" : {
112
+ "hprMIB" : {
113
+ "nodetype" : "node",
114
+ "moduleName" : "HPR-MIB",
115
+ "oid" : "1.3.6.1.2.1.34.6",
116
+ "status" : "current",
117
+ }, # node
118
+ "hprObjects" : {
119
+ "nodetype" : "node",
120
+ "moduleName" : "HPR-MIB",
121
+ "oid" : "1.3.6.1.2.1.34.6.1",
122
+ }, # node
123
+ "hprGlobal" : {
124
+ "nodetype" : "node",
125
+ "moduleName" : "HPR-MIB",
126
+ "oid" : "1.3.6.1.2.1.34.6.1.1",
127
+ }, # node
128
+ "hprNodeCpName" : {
129
+ "nodetype" : "scalar",
130
+ "moduleName" : "HPR-MIB",
131
+ "oid" : "1.3.6.1.2.1.34.6.1.1.1",
132
+ "status" : "current",
133
+ "syntax" : {
134
+ "type" : { "module" :"APPN-MIB", "name" : "SnaControlPointName"},
135
+ },
136
+ "access" : "readonly",
137
+ "description" :
138
+ """Administratively assigned network name for the APPN node
139
+ where this HPR implementation resides. If this object has
140
+ the same value as the appnNodeCpName object in the APPN MIB,
141
+ then the two objects are referring to the same APPN node.""",
142
+ }, # scalar
143
+ "hprOperatorPathSwitchSupport" : {
144
+ "nodetype" : "scalar",
145
+ "moduleName" : "HPR-MIB",
146
+ "oid" : "1.3.6.1.2.1.34.6.1.1.2",
147
+ "status" : "current",
148
+ "syntax" : {
149
+ "type" : {
150
+ "basetype" : "Enumeration",
151
+ "notSupported" : {
152
+ "nodetype" : "namednumber",
153
+ "number" : "1"
154
+ },
155
+ "switchTriggerSupported" : {
156
+ "nodetype" : "namednumber",
157
+ "number" : "2"
158
+ },
159
+ "switchToPathSupported" : {
160
+ "nodetype" : "namednumber",
161
+ "number" : "3"
162
+ },
163
+ },
164
+ },
165
+ "access" : "readonly",
166
+ "description" :
167
+ """This object indicates an implementation's level of support
168
+ for an operator-requested path switch.
169
+
170
+ notSupported(1) - the agent does not support
171
+ operator-requested path switches
172
+ switchTriggerSupported(2) - the agent supports a 'switch
173
+ path now' command from an
174
+ operator, but not a command to
175
+ switch to a specified path
176
+ switchToPathSupported(3) - the agent supports both a
177
+ 'switch path now' command and a
178
+ command to switch to a specified
179
+ path. Note that the latter
180
+ command is not available via
181
+ this MIB; a system that supports
182
+ it must do so via other means,
183
+ such as a local operator
184
+ interface.""",
185
+ }, # scalar
186
+ "hprAnrRouting" : {
187
+ "nodetype" : "node",
188
+ "moduleName" : "HPR-MIB",
189
+ "oid" : "1.3.6.1.2.1.34.6.1.2",
190
+ }, # node
191
+ "hprAnrsAssigned" : {
192
+ "nodetype" : "scalar",
193
+ "moduleName" : "HPR-MIB",
194
+ "oid" : "1.3.6.1.2.1.34.6.1.2.1",
195
+ "status" : "current",
196
+ "syntax" : {
197
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
198
+ },
199
+ "access" : "readonly",
200
+ "units" : "ANR labels",
201
+ "description" :
202
+ """The count of ANR labels assigned by this node since it was
203
+ last re-initialized. A Management Station can detect
204
+ discontinuities in this counter by monitoring the
205
+ appnNodeCounterDisconTime object in the APPN MIB.""",
206
+ }, # scalar
207
+ "hprAnrCounterState" : {
208
+ "nodetype" : "scalar",
209
+ "moduleName" : "HPR-MIB",
210
+ "oid" : "1.3.6.1.2.1.34.6.1.2.2",
211
+ "status" : "current",
212
+ "syntax" : {
213
+ "type" : {
214
+ "basetype" : "Enumeration",
215
+ "notActive" : {
216
+ "nodetype" : "namednumber",
217
+ "number" : "1"
218
+ },
219
+ "active" : {
220
+ "nodetype" : "namednumber",
221
+ "number" : "2"
222
+ },
223
+ },
224
+ },
225
+ "access" : "readwrite",
226
+ "description" :
227
+ """This object is used for a network management station to turn
228
+ on/off the counting of ANR packets in the hprAnrRoutingTable.
229
+ The initial value of this object is an implementation choice.
230
+
231
+ notActive(1) - the counter hprAnrPacketsReceived
232
+ returns no meaningful value
233
+ active(2) - the counter hprAnrPacketsReceived is
234
+ being incremented and is returning
235
+ meaningful values""",
236
+ }, # scalar
237
+ "hprAnrCounterStateTime" : {
238
+ "nodetype" : "scalar",
239
+ "moduleName" : "HPR-MIB",
240
+ "oid" : "1.3.6.1.2.1.34.6.1.2.3",
241
+ "status" : "current",
242
+ "syntax" : {
243
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
244
+ },
245
+ "access" : "readonly",
246
+ "description" :
247
+ """The time when the hprAnrCounterState object last changed its
248
+ value. The initial value returned by this object is the time
249
+ at which the APPN node instrumented with this MIB was last
250
+ brought up.""",
251
+ }, # scalar
252
+ "hprAnrRoutingTable" : {
253
+ "nodetype" : "table",
254
+ "moduleName" : "HPR-MIB",
255
+ "oid" : "1.3.6.1.2.1.34.6.1.2.4",
256
+ "status" : "current",
257
+ "description" :
258
+ """The ANR Routing table provides a means of correlating an
259
+ incoming ANR label (i.e., one assigned by this node) with the
260
+ TG over which a packet containing the label will be forwarded.
261
+ When the ANR label identifies a local NCE, the hprAnrOutTgDest
262
+ and hprAnrOutTgNum objects have no meaning. The table also
263
+ contains an object to count the number of packets received
264
+ with a given ANR label.""",
265
+ }, # table
266
+ "hprAnrRoutingEntry" : {
267
+ "nodetype" : "row",
268
+ "moduleName" : "HPR-MIB",
269
+ "oid" : "1.3.6.1.2.1.34.6.1.2.4.1",
270
+ "status" : "current",
271
+ "linkage" : [
272
+ "hprAnrLabel",
273
+ ],
274
+ "description" :
275
+ """The ANR label is used to index this table.""",
276
+ }, # row
277
+ "hprAnrLabel" : {
278
+ "nodetype" : "column",
279
+ "moduleName" : "HPR-MIB",
280
+ "oid" : "1.3.6.1.2.1.34.6.1.2.4.1.1",
281
+ "status" : "current",
282
+ "syntax" : {
283
+ "type" : {
284
+ "basetype" : "OctetString",
285
+ "ranges" : [
286
+ {
287
+ "min" : "1",
288
+ "max" : "8"
289
+ },
290
+ ],
291
+ "range" : {
292
+ "min" : "1",
293
+ "max" : "8"
294
+ },
295
+ },
296
+ },
297
+ "access" : "noaccess",
298
+ "description" :
299
+ """The first ANR label in an incoming packet.""",
300
+ }, # column
301
+ "hprAnrType" : {
302
+ "nodetype" : "column",
303
+ "moduleName" : "HPR-MIB",
304
+ "oid" : "1.3.6.1.2.1.34.6.1.2.4.1.2",
305
+ "status" : "current",
306
+ "syntax" : {
307
+ "type" : {
308
+ "basetype" : "Enumeration",
309
+ "nce" : {
310
+ "nodetype" : "namednumber",
311
+ "number" : "1"
312
+ },
313
+ "tg" : {
314
+ "nodetype" : "namednumber",
315
+ "number" : "2"
316
+ },
317
+ },
318
+ },
319
+ "access" : "readonly",
320
+ "description" :
321
+ """An object indicating whether an ANR label assigned by this
322
+ node identifies a local NCE or a TG on which outgoing packets
323
+ are forwarded.
324
+
325
+ nce(1) - the ANR label identifies a local NCE. In this
326
+ case the hprAnrOutTgDest and hprAnrOutTgNum
327
+ objects have no meaning.
328
+ tg(2) - the ANR label identifies a TG.""",
329
+ }, # column
330
+ "hprAnrOutTgDest" : {
331
+ "nodetype" : "column",
332
+ "moduleName" : "HPR-MIB",
333
+ "oid" : "1.3.6.1.2.1.34.6.1.2.4.1.3",
334
+ "status" : "current",
335
+ "syntax" : {
336
+ "type" : {
337
+ "basetype" : "OctetString",
338
+ "parent module" : {
339
+ "name" : "SNMPv2-TC",
340
+ "type" : "DisplayString",
341
+ },
342
+ "ranges" : [
343
+ {
344
+ "min" : "0",
345
+ "max" : "0"
346
+ },
347
+ {
348
+ "min" : "3",
349
+ "max" : "17"
350
+ },
351
+ ],
352
+ "range" : {
353
+ "min" : "0",
354
+ "max" : "17"
355
+ },
356
+ },
357
+ },
358
+ "access" : "readonly",
359
+ "description" :
360
+ """Destination node for the TG over which packets with this ANR
361
+ label are forwarded. This is the fully qualified name of an
362
+ APPN network node or end node, formatted according to the
363
+ SnaControlPointName textual convention. If the ANR label
364
+ identifies a local NCE, then this object returns a zero-length
365
+ string.
366
+
367
+ This object corresponds to the appnLocalTgDest object in the
368
+ APPN MIB.""",
369
+ }, # column
370
+ "hprAnrOutTgNum" : {
371
+ "nodetype" : "column",
372
+ "moduleName" : "HPR-MIB",
373
+ "oid" : "1.3.6.1.2.1.34.6.1.2.4.1.4",
374
+ "status" : "current",
375
+ "syntax" : {
376
+ "type" : {
377
+ "basetype" : "Integer32",
378
+ "ranges" : [
379
+ {
380
+ "min" : "0",
381
+ "max" : "255"
382
+ },
383
+ ],
384
+ "range" : {
385
+ "min" : "0",
386
+ "max" : "255"
387
+ },
388
+ },
389
+ },
390
+ "access" : "readonly",
391
+ "description" :
392
+ """Number of the TG over which packets with this ANR label are
393
+ forwarded. If the ANR label identifies a local NCE, then this
394
+ object returns the value 0, since 0 is not a valid TG number
395
+ for a TG that supports HPR.
396
+
397
+ This object corresponds to the appnLocalTgNum object in the
398
+ APPN MIB.""",
399
+ }, # column
400
+ "hprAnrPacketsReceived" : {
401
+ "nodetype" : "column",
402
+ "moduleName" : "HPR-MIB",
403
+ "oid" : "1.3.6.1.2.1.34.6.1.2.4.1.5",
404
+ "status" : "current",
405
+ "syntax" : {
406
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
407
+ },
408
+ "access" : "readonly",
409
+ "units" : "ANR packets",
410
+ "description" :
411
+ """The count of packets received with this ANR label as their
412
+ first label.
413
+
414
+ A Management Station can detect discontinuities in this
415
+ counter by monitoring the hprAnrCounterDisconTime object in
416
+ the same row.""",
417
+ }, # column
418
+ "hprAnrCounterDisconTime" : {
419
+ "nodetype" : "column",
420
+ "moduleName" : "HPR-MIB",
421
+ "oid" : "1.3.6.1.2.1.34.6.1.2.4.1.6",
422
+ "status" : "current",
423
+ "syntax" : {
424
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
425
+ },
426
+ "access" : "readonly",
427
+ "description" :
428
+ """The value of the sysUpTime object when the
429
+ hprAnrPacketsReceived counter for this ANR label last
430
+ experienced a discontinuity. This will be the more recent of
431
+ two times: the time at which the ANR label was associated with
432
+ either an outgoing TG or a local NCE, or the time at which the
433
+ ANR counters were last turned on or off.""",
434
+ }, # column
435
+ "hprTransportUser" : {
436
+ "nodetype" : "node",
437
+ "moduleName" : "HPR-MIB",
438
+ "oid" : "1.3.6.1.2.1.34.6.1.3",
439
+ }, # node
440
+ "hprNceTable" : {
441
+ "nodetype" : "table",
442
+ "moduleName" : "HPR-MIB",
443
+ "oid" : "1.3.6.1.2.1.34.6.1.3.1",
444
+ "status" : "current",
445
+ "description" :
446
+ """The Network Connection Endpoint (NCE) table.""",
447
+ }, # table
448
+ "hprNceEntry" : {
449
+ "nodetype" : "row",
450
+ "moduleName" : "HPR-MIB",
451
+ "oid" : "1.3.6.1.2.1.34.6.1.3.1.1",
452
+ "status" : "current",
453
+ "linkage" : [
454
+ "hprNceId",
455
+ ],
456
+ "description" :
457
+ """The NCE ID is used to index this table.""",
458
+ }, # row
459
+ "hprNceId" : {
460
+ "nodetype" : "column",
461
+ "moduleName" : "HPR-MIB",
462
+ "oid" : "1.3.6.1.2.1.34.6.1.3.1.1.1",
463
+ "status" : "current",
464
+ "syntax" : {
465
+ "type" : {
466
+ "basetype" : "OctetString",
467
+ "ranges" : [
468
+ {
469
+ "min" : "1",
470
+ "max" : "8"
471
+ },
472
+ ],
473
+ "range" : {
474
+ "min" : "1",
475
+ "max" : "8"
476
+ },
477
+ },
478
+ },
479
+ "access" : "noaccess",
480
+ "description" :
481
+ """The Network Connection Endpoint (NCE) ID. NCEs identify
482
+ Control Points (Cp), Logical Units (Lu), HPR Boundary
483
+ Functions (Bf) and Route Setup (Rs) Functions. A value for
484
+ this object can be retrieved from any of the following
485
+ objects in the APPN MIB:
486
+
487
+ - appnLsCpCpNceId
488
+ - appnLsRouteNceId
489
+ - appnLsBfNceId
490
+ - appnIsInRtpNceId
491
+ - appnIsRtpNceId
492
+
493
+ In each case this value identifies a row in this table
494
+ containing information related to that in the APPN MIB.""",
495
+ }, # column
496
+ "hprNceType" : {
497
+ "nodetype" : "column",
498
+ "moduleName" : "HPR-MIB",
499
+ "oid" : "1.3.6.1.2.1.34.6.1.3.1.1.2",
500
+ "status" : "current",
501
+ "syntax" : {
502
+ "type" : { "module" :"HPR-MIB", "name" : "HprNceTypes"},
503
+ },
504
+ "access" : "readonly",
505
+ "description" :
506
+ """A bit string identifying the function types provided by this
507
+ Network Connection Endpoint (NCE).""",
508
+ }, # column
509
+ "hprNceDefault" : {
510
+ "nodetype" : "column",
511
+ "moduleName" : "HPR-MIB",
512
+ "oid" : "1.3.6.1.2.1.34.6.1.3.1.1.3",
513
+ "status" : "current",
514
+ "syntax" : {
515
+ "type" : { "module" :"HPR-MIB", "name" : "HprNceTypes"},
516
+ },
517
+ "access" : "readonly",
518
+ "description" :
519
+ """A bit string identifying the function types for which this
520
+ Network Connection Endpoint (NCE) is the default NCE. While
521
+ default NCEs are not explicitly defined in the architecture,
522
+ some implementations provide them; for such implementations,
523
+ it is useful to make this information available to a
524
+ Management Station.""",
525
+ }, # column
526
+ "hprNceInstanceId" : {
527
+ "nodetype" : "column",
528
+ "moduleName" : "HPR-MIB",
529
+ "oid" : "1.3.6.1.2.1.34.6.1.3.1.1.4",
530
+ "status" : "current",
531
+ "syntax" : {
532
+ "type" : {
533
+ "basetype" : "OctetString",
534
+ "ranges" : [
535
+ {
536
+ "min" : "4",
537
+ "max" : "4"
538
+ },
539
+ ],
540
+ "range" : {
541
+ "min" : "4",
542
+ "max" : "4"
543
+ },
544
+ },
545
+ },
546
+ "access" : "readonly",
547
+ "description" :
548
+ """The NCE instance identifier (NCEII) identifying the current
549
+ instance of this NCE. An NCEII is used to denote different
550
+ instances (IPLs) of an NCE component. Each time an NCE is
551
+ activated (IPL'd), it acquires a different, unique NCEII.""",
552
+ }, # column
553
+ "hprRtp" : {
554
+ "nodetype" : "node",
555
+ "moduleName" : "HPR-MIB",
556
+ "oid" : "1.3.6.1.2.1.34.6.1.4",
557
+ }, # node
558
+ "hprRtpGlobe" : {
559
+ "nodetype" : "node",
560
+ "moduleName" : "HPR-MIB",
561
+ "oid" : "1.3.6.1.2.1.34.6.1.4.1",
562
+ }, # node
563
+ "hprRtpGlobeConnSetups" : {
564
+ "nodetype" : "scalar",
565
+ "moduleName" : "HPR-MIB",
566
+ "oid" : "1.3.6.1.2.1.34.6.1.4.1.1",
567
+ "status" : "current",
568
+ "syntax" : {
569
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
570
+ },
571
+ "access" : "readonly",
572
+ "units" : "RTP connection setups",
573
+ "description" :
574
+ """The count of RTP connection setups in which this node has
575
+ participated, as either sender or receiver, since it was last
576
+ re-initialized. Retries of a setup attempt do not cause the
577
+ counter to be incremented.
578
+
579
+ A Management Station can detect discontinuities in this
580
+ counter by monitoring the appnNodeCounterDisconTime object
581
+ in the APPN MIB.""",
582
+ }, # scalar
583
+ "hprRtpGlobeCtrState" : {
584
+ "nodetype" : "scalar",
585
+ "moduleName" : "HPR-MIB",
586
+ "oid" : "1.3.6.1.2.1.34.6.1.4.1.2",
587
+ "status" : "current",
588
+ "syntax" : {
589
+ "type" : {
590
+ "basetype" : "Enumeration",
591
+ "notActive" : {
592
+ "nodetype" : "namednumber",
593
+ "number" : "1"
594
+ },
595
+ "active" : {
596
+ "nodetype" : "namednumber",
597
+ "number" : "2"
598
+ },
599
+ },
600
+ },
601
+ "access" : "readwrite",
602
+ "description" :
603
+ """This object allows a network management station to turn the
604
+ counters in the hprRtpTable on and off. The initial value of
605
+ this object is an implementation choice.
606
+
607
+ notActive(1) - the counters in the hprRtpTable are
608
+ returning no meaningful values
609
+ active(2) - the counters in the hprRtpTable are
610
+ being incremented and are returning
611
+ meaningful values""",
612
+ }, # scalar
613
+ "hprRtpGlobeCtrStateTime" : {
614
+ "nodetype" : "scalar",
615
+ "moduleName" : "HPR-MIB",
616
+ "oid" : "1.3.6.1.2.1.34.6.1.4.1.3",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
620
+ },
621
+ "access" : "readonly",
622
+ "description" :
623
+ """The time when the value of the hprRtpGlobeCtrState object
624
+ last changed. The initial value returned by this object is
625
+ the time at which the APPN node instrumented with this MIB
626
+ was last brought up.""",
627
+ }, # scalar
628
+ "hprRtpTable" : {
629
+ "nodetype" : "table",
630
+ "moduleName" : "HPR-MIB",
631
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2",
632
+ "status" : "current",
633
+ "description" :
634
+ """The RTP Connection table""",
635
+ }, # table
636
+ "hprRtpEntry" : {
637
+ "nodetype" : "row",
638
+ "moduleName" : "HPR-MIB",
639
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1",
640
+ "status" : "current",
641
+ "linkage" : [
642
+ "hprRtpLocNceId",
643
+ "hprRtpLocTcid",
644
+ ],
645
+ "description" :
646
+ """The local NCE ID and local TCID are used to index this
647
+ table.""",
648
+ }, # row
649
+ "hprRtpLocNceId" : {
650
+ "nodetype" : "column",
651
+ "moduleName" : "HPR-MIB",
652
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.1",
653
+ "status" : "current",
654
+ "syntax" : {
655
+ "type" : {
656
+ "basetype" : "OctetString",
657
+ "ranges" : [
658
+ {
659
+ "min" : "1",
660
+ "max" : "8"
661
+ },
662
+ ],
663
+ "range" : {
664
+ "min" : "1",
665
+ "max" : "8"
666
+ },
667
+ },
668
+ },
669
+ "access" : "noaccess",
670
+ "description" :
671
+ """The local Network Connection Endpoint (NCE) ID of this RTP
672
+ connection. NCEs identify CPs, LUs, Boundary Functions (BFs),
673
+ and Route Setup (RS) components. A value for this object can
674
+ be retrieved from any of the following objects in the APPN
675
+ MIB:
676
+
677
+ - appnLsCpCpNceId
678
+ - appnLsRouteNceId
679
+ - appnLsBfNceId
680
+ - appnIsInRtpNceId
681
+ - appnIsRtpNceId
682
+
683
+ In each case this value identifies a row in this table
684
+ containing information related to that in the APPN MIB.""",
685
+ }, # column
686
+ "hprRtpLocTcid" : {
687
+ "nodetype" : "column",
688
+ "moduleName" : "HPR-MIB",
689
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.2",
690
+ "status" : "current",
691
+ "syntax" : {
692
+ "type" : {
693
+ "basetype" : "OctetString",
694
+ "ranges" : [
695
+ {
696
+ "min" : "8",
697
+ "max" : "8"
698
+ },
699
+ ],
700
+ "range" : {
701
+ "min" : "8",
702
+ "max" : "8"
703
+ },
704
+ },
705
+ },
706
+ "access" : "noaccess",
707
+ "description" :
708
+ """The local TCID of this RTP connection. A value for this
709
+ object can be retrieved from either the appnIsInRtpTcid object
710
+ or the appnIsRtpTcid object the APPN MIB; in each case this
711
+ value identifies a row in this table containing information
712
+ related to that in the APPN MIB.""",
713
+ }, # column
714
+ "hprRtpRemCpName" : {
715
+ "nodetype" : "column",
716
+ "moduleName" : "HPR-MIB",
717
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.3",
718
+ "status" : "current",
719
+ "syntax" : {
720
+ "type" : { "module" :"APPN-MIB", "name" : "SnaControlPointName"},
721
+ },
722
+ "access" : "readonly",
723
+ "description" :
724
+ """Administratively assigned network name for the remote node of
725
+ this RTP connection.""",
726
+ }, # column
727
+ "hprRtpRemNceId" : {
728
+ "nodetype" : "column",
729
+ "moduleName" : "HPR-MIB",
730
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.4",
731
+ "status" : "current",
732
+ "syntax" : {
733
+ "type" : {
734
+ "basetype" : "OctetString",
735
+ "ranges" : [
736
+ {
737
+ "min" : "1",
738
+ "max" : "8"
739
+ },
740
+ ],
741
+ "range" : {
742
+ "min" : "1",
743
+ "max" : "8"
744
+ },
745
+ },
746
+ },
747
+ "access" : "readonly",
748
+ "description" :
749
+ """The remote Network Connection Endpoint (NCE) of this RTP
750
+ connection. NCEs identify CPs, LUs, Boundary Functions (BFs),
751
+ and Route Setup (RS) components.""",
752
+ }, # column
753
+ "hprRtpRemTcid" : {
754
+ "nodetype" : "column",
755
+ "moduleName" : "HPR-MIB",
756
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.5",
757
+ "status" : "current",
758
+ "syntax" : {
759
+ "type" : {
760
+ "basetype" : "OctetString",
761
+ "ranges" : [
762
+ {
763
+ "min" : "8",
764
+ "max" : "8"
765
+ },
766
+ ],
767
+ "range" : {
768
+ "min" : "8",
769
+ "max" : "8"
770
+ },
771
+ },
772
+ },
773
+ "access" : "readonly",
774
+ "description" :
775
+ """The remote TCID of this RTP connection.""",
776
+ }, # column
777
+ "hprRtpPathSwitchTrigger" : {
778
+ "nodetype" : "column",
779
+ "moduleName" : "HPR-MIB",
780
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.6",
781
+ "status" : "current",
782
+ "syntax" : {
783
+ "type" : {
784
+ "basetype" : "Enumeration",
785
+ "ready" : {
786
+ "nodetype" : "namednumber",
787
+ "number" : "1"
788
+ },
789
+ "switchPathNow" : {
790
+ "nodetype" : "namednumber",
791
+ "number" : "2"
792
+ },
793
+ },
794
+ },
795
+ "access" : "readwrite",
796
+ "description" :
797
+ """Object by which a Management Station can trigger an operator-
798
+ requested path switch, by setting the value to
799
+ switchPathNow(2). Setting this object to switchPathNow(2)
800
+ triggers a path switch even if its previous value was already
801
+ switchPathNow(2).
802
+ The value ready(1) is returned on GET operations until a SET
803
+ has been processed; after that the value received on the most
804
+ recent SET is returned.
805
+
806
+ This MIB module provides no support for an operator-requested
807
+ switch to a specified path.""",
808
+ }, # column
809
+ "hprRtpRscv" : {
810
+ "nodetype" : "column",
811
+ "moduleName" : "HPR-MIB",
812
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.7",
813
+ "status" : "current",
814
+ "syntax" : {
815
+ "type" : {
816
+ "basetype" : "OctetString",
817
+ "ranges" : [
818
+ {
819
+ "min" : "0",
820
+ "max" : "255"
821
+ },
822
+ ],
823
+ "range" : {
824
+ "min" : "0",
825
+ "max" : "255"
826
+ },
827
+ },
828
+ },
829
+ "access" : "readonly",
830
+ "description" :
831
+ """The forward Route Selection Control Vector for this RTP
832
+ connection. The format of this vector is described in SNA
833
+ Formats.
834
+
835
+ The value returned in this object during a path switch is
836
+ implementation-dependent: it may be the old path, the new
837
+ path, a zero-length string, or some other valid RSCV string.""",
838
+ }, # column
839
+ "hprRtpTopic" : {
840
+ "nodetype" : "column",
841
+ "moduleName" : "HPR-MIB",
842
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.8",
843
+ "status" : "current",
844
+ "syntax" : {
845
+ "type" : {
846
+ "basetype" : "OctetString",
847
+ "parent module" : {
848
+ "name" : "SNMPv2-TC",
849
+ "type" : "DisplayString",
850
+ },
851
+ "ranges" : [
852
+ {
853
+ "min" : "8",
854
+ "max" : "8"
855
+ },
856
+ ],
857
+ "range" : {
858
+ "min" : "8",
859
+ "max" : "8"
860
+ },
861
+ },
862
+ },
863
+ "access" : "readonly",
864
+ "description" :
865
+ """The topic for this RTP connection. This is used to indicate
866
+ the Class of Service.""",
867
+ }, # column
868
+ "hprRtpState" : {
869
+ "nodetype" : "column",
870
+ "moduleName" : "HPR-MIB",
871
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.9",
872
+ "status" : "current",
873
+ "syntax" : {
874
+ "type" : {
875
+ "basetype" : "Enumeration",
876
+ "rtpListening" : {
877
+ "nodetype" : "namednumber",
878
+ "number" : "1"
879
+ },
880
+ "rtpCalling" : {
881
+ "nodetype" : "namednumber",
882
+ "number" : "2"
883
+ },
884
+ "rtpConnected" : {
885
+ "nodetype" : "namednumber",
886
+ "number" : "3"
887
+ },
888
+ "rtpPathSwitching" : {
889
+ "nodetype" : "namednumber",
890
+ "number" : "4"
891
+ },
892
+ "rtpDisconnecting" : {
893
+ "nodetype" : "namednumber",
894
+ "number" : "5"
895
+ },
896
+ "other" : {
897
+ "nodetype" : "namednumber",
898
+ "number" : "99"
899
+ },
900
+ },
901
+ },
902
+ "access" : "readonly",
903
+ "description" :
904
+ """The state of the RTP connection, from the perspective of the
905
+ local RTP protocol machine:
906
+ rtpListening - connection open; waiting for other end
907
+ to call in
908
+ rtpCalling - connection opened, attempting to call
909
+ out, have not yet received any data
910
+ from other end
911
+ rtpConnected - connection is active; responded to a
912
+ call-in or received other end's TCID
913
+ from a call-out attempt
914
+ rtpPathSwitching - the path switch timer is running;
915
+ attempting to find a new path for this
916
+ connection.
917
+ rtpDisconnecting - no sessions are using this connection;
918
+ in process of bringing it down
919
+ other - the connection is not in any of the
920
+ states listed above.""",
921
+ }, # column
922
+ "hprRtpUpTime" : {
923
+ "nodetype" : "column",
924
+ "moduleName" : "HPR-MIB",
925
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.10",
926
+ "status" : "current",
927
+ "syntax" : {
928
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
929
+ },
930
+ "access" : "readonly",
931
+ "units" : "1/100ths of a second",
932
+ "description" :
933
+ """The length of time the RTP connection has been up, measured
934
+ in 1/100ths of a second.""",
935
+ }, # column
936
+ "hprRtpLivenessTimer" : {
937
+ "nodetype" : "column",
938
+ "moduleName" : "HPR-MIB",
939
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.11",
940
+ "status" : "current",
941
+ "syntax" : {
942
+ "type" : { "module" :"", "name" : "Unsigned32"},
943
+ },
944
+ "access" : "readonly",
945
+ "units" : "1/100ths of a second",
946
+ "description" :
947
+ """The value of the liveness (ALIVE) timer of this RTP
948
+ connection, in units of 1/100th of a second. When this timer
949
+ expires and no packet has arrived from the partner since it
950
+ was last set, packets with Status Request indicators will be
951
+ sent to see if the RTP connection is still alive.""",
952
+ }, # column
953
+ "hprRtpShortReqTimer" : {
954
+ "nodetype" : "column",
955
+ "moduleName" : "HPR-MIB",
956
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.12",
957
+ "status" : "current",
958
+ "syntax" : {
959
+ "type" : { "module" :"", "name" : "Unsigned32"},
960
+ },
961
+ "access" : "readonly",
962
+ "units" : "1/100ths of a second",
963
+ "description" :
964
+ """The value of the RTP SHORT_REQ timer, in units of 1/100 of a
965
+ second. This timer represents the maximum time that a sender
966
+ waits for a reply from a receiver.""",
967
+ }, # column
968
+ "hprRtpPathSwTimer" : {
969
+ "nodetype" : "column",
970
+ "moduleName" : "HPR-MIB",
971
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.13",
972
+ "status" : "current",
973
+ "syntax" : {
974
+ "type" : { "module" :"", "name" : "Unsigned32"},
975
+ },
976
+ "access" : "readonly",
977
+ "units" : "1/100ths of a second",
978
+ "description" :
979
+ """The length of time that RTP should attempt a path switch
980
+ for a connection, in units of 1/100th of a second.""",
981
+ }, # column
982
+ "hprRtpLivenessTimeouts" : {
983
+ "nodetype" : "column",
984
+ "moduleName" : "HPR-MIB",
985
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.14",
986
+ "status" : "current",
987
+ "syntax" : {
988
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
989
+ },
990
+ "access" : "readonly",
991
+ "units" : "liveness timeouts",
992
+ "description" :
993
+ """The count of liveness timeouts for this RTP connection.""",
994
+ }, # column
995
+ "hprRtpShortReqTimeouts" : {
996
+ "nodetype" : "column",
997
+ "moduleName" : "HPR-MIB",
998
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.15",
999
+ "status" : "current",
1000
+ "syntax" : {
1001
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1002
+ },
1003
+ "access" : "readonly",
1004
+ "units" : "short request timeouts",
1005
+ "description" :
1006
+ """The count of short request timeouts for this RTP connection.""",
1007
+ }, # column
1008
+ "hprRtpMaxSendRate" : {
1009
+ "nodetype" : "column",
1010
+ "moduleName" : "HPR-MIB",
1011
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.16",
1012
+ "status" : "current",
1013
+ "syntax" : {
1014
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1015
+ },
1016
+ "access" : "readonly",
1017
+ "units" : "bytes per second",
1018
+ "description" :
1019
+ """The high-water mark for this RTP connection's send rate, in
1020
+ units of bytes per second. This is the high-water mark for
1021
+ the entire life of the connection, not just the high-water
1022
+ mark for the connection's current path.
1023
+ For more details on this and other parameters related to HPR,
1024
+ see the High Performance Routing Architecture Reference.""",
1025
+ }, # column
1026
+ "hprRtpMinSendRate" : {
1027
+ "nodetype" : "column",
1028
+ "moduleName" : "HPR-MIB",
1029
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.17",
1030
+ "status" : "current",
1031
+ "syntax" : {
1032
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1033
+ },
1034
+ "access" : "readonly",
1035
+ "units" : "bytes per second",
1036
+ "description" :
1037
+ """The low-water mark for this RTP connection's send rate, in
1038
+ units of bytes per second. This is the low-water mark for the
1039
+ entire life of the connection, not just the low-water mark for
1040
+ the connection's current path.
1041
+
1042
+ For more details on this and other parameters related to HPR,
1043
+ see the High Performance Routing Architecture Reference.""",
1044
+ }, # column
1045
+ "hprRtpCurSendRate" : {
1046
+ "nodetype" : "column",
1047
+ "moduleName" : "HPR-MIB",
1048
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.18",
1049
+ "status" : "current",
1050
+ "syntax" : {
1051
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1052
+ },
1053
+ "access" : "readonly",
1054
+ "units" : "bytes per second",
1055
+ "description" :
1056
+ """The current send rate for this RTP connection, in units of
1057
+ bytes per second.
1058
+
1059
+ For more details on this and other parameters related to HPR,
1060
+ see the High Performance Routing Architecture Reference.""",
1061
+ }, # column
1062
+ "hprRtpSmRdTripDelay" : {
1063
+ "nodetype" : "column",
1064
+ "moduleName" : "HPR-MIB",
1065
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.19",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1069
+ },
1070
+ "access" : "readonly",
1071
+ "units" : "1/1000ths of a second",
1072
+ "description" :
1073
+ """The smoothed round trip delay for this RTP connection, in
1074
+ units of 1/1000th of a second (ms).
1075
+
1076
+ For more details on this and other parameters related to HPR,
1077
+ see the High Performance Routing Architecture Reference.""",
1078
+ }, # column
1079
+ "hprRtpSendPackets" : {
1080
+ "nodetype" : "column",
1081
+ "moduleName" : "HPR-MIB",
1082
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.20",
1083
+ "status" : "current",
1084
+ "syntax" : {
1085
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1086
+ },
1087
+ "access" : "readonly",
1088
+ "units" : "RTP packets",
1089
+ "description" :
1090
+ """The count of packets successfully sent on this RTP
1091
+ connection.""",
1092
+ }, # column
1093
+ "hprRtpRecvPackets" : {
1094
+ "nodetype" : "column",
1095
+ "moduleName" : "HPR-MIB",
1096
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.21",
1097
+ "status" : "current",
1098
+ "syntax" : {
1099
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1100
+ },
1101
+ "access" : "readonly",
1102
+ "units" : "RTP packets",
1103
+ "description" :
1104
+ """The count of packets received on this RTP connection. The
1105
+ counter is incremented only once if duplicate copies of a
1106
+ packet are received.""",
1107
+ }, # column
1108
+ "hprRtpSendBytes" : {
1109
+ "nodetype" : "column",
1110
+ "moduleName" : "HPR-MIB",
1111
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.22",
1112
+ "status" : "current",
1113
+ "syntax" : {
1114
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1115
+ },
1116
+ "access" : "readonly",
1117
+ "units" : "bytes",
1118
+ "description" :
1119
+ """The count of bytes sent on this RTP connection. Both RTP
1120
+ Transport Header (THDR) bytes and data bytes are included in
1121
+ this count.""",
1122
+ }, # column
1123
+ "hprRtpRecvBytes" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "HPR-MIB",
1126
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.23",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1130
+ },
1131
+ "access" : "readonly",
1132
+ "units" : "bytes",
1133
+ "description" :
1134
+ """The count of bytes received on this RTP connection. Both RTP
1135
+ Transport Header (THDR) bytes and data bytes are included in
1136
+ this count.""",
1137
+ }, # column
1138
+ "hprRtpRetrPackets" : {
1139
+ "nodetype" : "column",
1140
+ "moduleName" : "HPR-MIB",
1141
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.24",
1142
+ "status" : "current",
1143
+ "syntax" : {
1144
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1145
+ },
1146
+ "access" : "readonly",
1147
+ "units" : "RTP packets",
1148
+ "description" :
1149
+ """The count of packets retransmitted on this RTP connection.""",
1150
+ }, # column
1151
+ "hprRtpPacketsDiscarded" : {
1152
+ "nodetype" : "column",
1153
+ "moduleName" : "HPR-MIB",
1154
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.25",
1155
+ "status" : "current",
1156
+ "syntax" : {
1157
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1158
+ },
1159
+ "access" : "readonly",
1160
+ "units" : "RTP packets",
1161
+ "description" :
1162
+ """The count of packets received on this RTP connection and then
1163
+ discarded. A packet may be discarded because it is determined
1164
+ to be a duplicate, or for other reasons.""",
1165
+ }, # column
1166
+ "hprRtpDetectGaps" : {
1167
+ "nodetype" : "column",
1168
+ "moduleName" : "HPR-MIB",
1169
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.26",
1170
+ "status" : "current",
1171
+ "syntax" : {
1172
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1173
+ },
1174
+ "access" : "readonly",
1175
+ "units" : "gaps",
1176
+ "description" :
1177
+ """The count of gaps detected on this RTP connection.""",
1178
+ }, # column
1179
+ "hprRtpRateReqSends" : {
1180
+ "nodetype" : "column",
1181
+ "moduleName" : "HPR-MIB",
1182
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.27",
1183
+ "status" : "current",
1184
+ "syntax" : {
1185
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1186
+ },
1187
+ "access" : "readonly",
1188
+ "units" : "rate requests",
1189
+ "description" :
1190
+ """The count of Rate Requests sent on this RTP connection.""",
1191
+ }, # column
1192
+ "hprRtpOkErrPathSws" : {
1193
+ "nodetype" : "column",
1194
+ "moduleName" : "HPR-MIB",
1195
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.28",
1196
+ "status" : "current",
1197
+ "syntax" : {
1198
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1199
+ },
1200
+ "access" : "readonly",
1201
+ "units" : "path switch attempts",
1202
+ "description" :
1203
+ """The count of successful path switch attempts for this RTP
1204
+ connection due to errors.""",
1205
+ }, # column
1206
+ "hprRtpBadErrPathSws" : {
1207
+ "nodetype" : "column",
1208
+ "moduleName" : "HPR-MIB",
1209
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.29",
1210
+ "status" : "current",
1211
+ "syntax" : {
1212
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1213
+ },
1214
+ "access" : "readonly",
1215
+ "units" : "path switch attempts",
1216
+ "description" :
1217
+ """The count of unsuccessful path switches for this RTP
1218
+ connection due to errors.""",
1219
+ }, # column
1220
+ "hprRtpOkOpPathSws" : {
1221
+ "nodetype" : "column",
1222
+ "moduleName" : "HPR-MIB",
1223
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.30",
1224
+ "status" : "current",
1225
+ "syntax" : {
1226
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1227
+ },
1228
+ "access" : "readonly",
1229
+ "units" : "path switches",
1230
+ "description" :
1231
+ """The count of successful path switches for this RTP connection
1232
+ due to operator requests.""",
1233
+ }, # column
1234
+ "hprRtpBadOpPathSws" : {
1235
+ "nodetype" : "column",
1236
+ "moduleName" : "HPR-MIB",
1237
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.31",
1238
+ "status" : "current",
1239
+ "syntax" : {
1240
+ "type" : { "module" :"HPR-MIB", "name" : "HprRtpCounter"},
1241
+ },
1242
+ "access" : "readonly",
1243
+ "units" : "path switches",
1244
+ "description" :
1245
+ """The count of unsuccessful path switches for this RTP
1246
+ connection due to operator requests. This counter is not
1247
+ incremented by an implementation that does not support
1248
+ operator-requested path switches, even if a Management Station
1249
+ requests such a path switch by setting the
1250
+ hprRtpPathSwitchTrigger object.""",
1251
+ }, # column
1252
+ "hprRtpCounterDisconTime" : {
1253
+ "nodetype" : "column",
1254
+ "moduleName" : "HPR-MIB",
1255
+ "oid" : "1.3.6.1.2.1.34.6.1.4.2.1.32",
1256
+ "status" : "current",
1257
+ "syntax" : {
1258
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1259
+ },
1260
+ "access" : "readonly",
1261
+ "description" :
1262
+ """The value of the sysUpTime object when the counters for this
1263
+ RTP connection last experienced a discontinuity. This will be
1264
+ the more recent of two times: the time at which the
1265
+ connection was established or the time at which the HPR
1266
+ counters were last turned on or off.""",
1267
+ }, # column
1268
+ "hprRtpStatusTable" : {
1269
+ "nodetype" : "table",
1270
+ "moduleName" : "HPR-MIB",
1271
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3",
1272
+ "status" : "current",
1273
+ "description" :
1274
+ """RTP Connection Status Table: This table contains historical
1275
+ information on RTP connections. An entry is created in this
1276
+ table when a path switch is completed, either successfully or
1277
+ unsuccessfully.""",
1278
+ }, # table
1279
+ "hprRtpStatusEntry" : {
1280
+ "nodetype" : "row",
1281
+ "moduleName" : "HPR-MIB",
1282
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1",
1283
+ "status" : "current",
1284
+ "linkage" : [
1285
+ "hprRtpStatusLocNceId",
1286
+ "hprRtpStatusLocTcid",
1287
+ "hprRtpStatusIndex",
1288
+ ],
1289
+ "description" :
1290
+ """This table is indexed by local NCE ID, local TCID, and an
1291
+ integer hprRtpStatusIndex. Thus the primary grouping of table
1292
+ rows is by RTP connection, with the multiple entries for a
1293
+ given RTP connection ordered by time.""",
1294
+ }, # row
1295
+ "hprRtpStatusLocNceId" : {
1296
+ "nodetype" : "column",
1297
+ "moduleName" : "HPR-MIB",
1298
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.1",
1299
+ "status" : "current",
1300
+ "syntax" : {
1301
+ "type" : {
1302
+ "basetype" : "OctetString",
1303
+ "ranges" : [
1304
+ {
1305
+ "min" : "1",
1306
+ "max" : "8"
1307
+ },
1308
+ ],
1309
+ "range" : {
1310
+ "min" : "1",
1311
+ "max" : "8"
1312
+ },
1313
+ },
1314
+ },
1315
+ "access" : "noaccess",
1316
+ "description" :
1317
+ """The local Network Connection Endpoint (NCE) of this RTP
1318
+ connection. NCEs identify CPs, LUs, Boundary Functions (BFs),
1319
+ and Route Setup (RS) components.""",
1320
+ }, # column
1321
+ "hprRtpStatusLocTcid" : {
1322
+ "nodetype" : "column",
1323
+ "moduleName" : "HPR-MIB",
1324
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.2",
1325
+ "status" : "current",
1326
+ "syntax" : {
1327
+ "type" : {
1328
+ "basetype" : "OctetString",
1329
+ "ranges" : [
1330
+ {
1331
+ "min" : "8",
1332
+ "max" : "8"
1333
+ },
1334
+ ],
1335
+ "range" : {
1336
+ "min" : "8",
1337
+ "max" : "8"
1338
+ },
1339
+ },
1340
+ },
1341
+ "access" : "noaccess",
1342
+ "description" :
1343
+ """The local TCID of this RTP connection.""",
1344
+ }, # column
1345
+ "hprRtpStatusIndex" : {
1346
+ "nodetype" : "column",
1347
+ "moduleName" : "HPR-MIB",
1348
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.3",
1349
+ "status" : "current",
1350
+ "syntax" : {
1351
+ "type" : {
1352
+ "basetype" : "Unsigned32",
1353
+ "ranges" : [
1354
+ {
1355
+ "min" : "1",
1356
+ "max" : "4294967295"
1357
+ },
1358
+ ],
1359
+ "range" : {
1360
+ "min" : "1",
1361
+ "max" : "4294967295"
1362
+ },
1363
+ },
1364
+ },
1365
+ "access" : "noaccess",
1366
+ "description" :
1367
+ """Table index. This value begins at one and is incremented
1368
+ when a new entry is added to the table. It is an
1369
+ implementation choice whether to run a single counter for
1370
+ all entries in the table, or to run a separate counter for
1371
+ the entries for each RTP connection. In the unlikely event
1372
+ of a wrap, it is assumed that Management Stations will have
1373
+ the ability to order table entries correctly.""",
1374
+ }, # column
1375
+ "hprRtpStatusStartTime" : {
1376
+ "nodetype" : "column",
1377
+ "moduleName" : "HPR-MIB",
1378
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.4",
1379
+ "status" : "current",
1380
+ "syntax" : {
1381
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1382
+ },
1383
+ "access" : "readonly",
1384
+ "description" :
1385
+ """The time when the path switch began.""",
1386
+ }, # column
1387
+ "hprRtpStatusEndTime" : {
1388
+ "nodetype" : "column",
1389
+ "moduleName" : "HPR-MIB",
1390
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.5",
1391
+ "status" : "current",
1392
+ "syntax" : {
1393
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1394
+ },
1395
+ "access" : "readonly",
1396
+ "description" :
1397
+ """The time when the path switch was ended, either successfully
1398
+ or unsuccessfully.""",
1399
+ }, # column
1400
+ "hprRtpStatusRemCpName" : {
1401
+ "nodetype" : "column",
1402
+ "moduleName" : "HPR-MIB",
1403
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.6",
1404
+ "status" : "current",
1405
+ "syntax" : {
1406
+ "type" : { "module" :"APPN-MIB", "name" : "SnaControlPointName"},
1407
+ },
1408
+ "access" : "readonly",
1409
+ "description" :
1410
+ """Administratively assigned network name for the remote node of
1411
+ this RTP connection.""",
1412
+ }, # column
1413
+ "hprRtpStatusRemNceId" : {
1414
+ "nodetype" : "column",
1415
+ "moduleName" : "HPR-MIB",
1416
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.7",
1417
+ "status" : "current",
1418
+ "syntax" : {
1419
+ "type" : {
1420
+ "basetype" : "OctetString",
1421
+ "ranges" : [
1422
+ {
1423
+ "min" : "1",
1424
+ "max" : "8"
1425
+ },
1426
+ ],
1427
+ "range" : {
1428
+ "min" : "1",
1429
+ "max" : "8"
1430
+ },
1431
+ },
1432
+ },
1433
+ "access" : "readonly",
1434
+ "description" :
1435
+ """The remote Network Connection Endpoint (NCE) of this RTP
1436
+ connection. NCEs identify CPs, LUs, Boundary Functions (BFs),
1437
+ and Route Setup (RS) components.""",
1438
+ }, # column
1439
+ "hprRtpStatusRemTcid" : {
1440
+ "nodetype" : "column",
1441
+ "moduleName" : "HPR-MIB",
1442
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.8",
1443
+ "status" : "current",
1444
+ "syntax" : {
1445
+ "type" : {
1446
+ "basetype" : "OctetString",
1447
+ "ranges" : [
1448
+ {
1449
+ "min" : "8",
1450
+ "max" : "8"
1451
+ },
1452
+ ],
1453
+ "range" : {
1454
+ "min" : "8",
1455
+ "max" : "8"
1456
+ },
1457
+ },
1458
+ },
1459
+ "access" : "readonly",
1460
+ "description" :
1461
+ """The remote TCID of this RTP connection.""",
1462
+ }, # column
1463
+ "hprRtpStatusNewRscv" : {
1464
+ "nodetype" : "column",
1465
+ "moduleName" : "HPR-MIB",
1466
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.9",
1467
+ "status" : "current",
1468
+ "syntax" : {
1469
+ "type" : {
1470
+ "basetype" : "OctetString",
1471
+ "ranges" : [
1472
+ {
1473
+ "min" : "0",
1474
+ "max" : "255"
1475
+ },
1476
+ ],
1477
+ "range" : {
1478
+ "min" : "0",
1479
+ "max" : "255"
1480
+ },
1481
+ },
1482
+ },
1483
+ "access" : "readonly",
1484
+ "description" :
1485
+ """The new Route Selection Control Vector for this RTP
1486
+ connection. A zero-length string indicates that no value is
1487
+ available, perhaps because the implementation does not save
1488
+ RSCVs.""",
1489
+ }, # column
1490
+ "hprRtpStatusOldRscv" : {
1491
+ "nodetype" : "column",
1492
+ "moduleName" : "HPR-MIB",
1493
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.10",
1494
+ "status" : "current",
1495
+ "syntax" : {
1496
+ "type" : {
1497
+ "basetype" : "OctetString",
1498
+ "ranges" : [
1499
+ {
1500
+ "min" : "0",
1501
+ "max" : "255"
1502
+ },
1503
+ ],
1504
+ "range" : {
1505
+ "min" : "0",
1506
+ "max" : "255"
1507
+ },
1508
+ },
1509
+ },
1510
+ "access" : "readonly",
1511
+ "description" :
1512
+ """The old Route Selection Control Vector for this RTP
1513
+ connection. A zero-length string indicates that no value is
1514
+ available, perhaps because the implementation does not save
1515
+ RSCVs.""",
1516
+ }, # column
1517
+ "hprRtpStatusCause" : {
1518
+ "nodetype" : "column",
1519
+ "moduleName" : "HPR-MIB",
1520
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.11",
1521
+ "status" : "current",
1522
+ "syntax" : {
1523
+ "type" : {
1524
+ "basetype" : "Enumeration",
1525
+ "other" : {
1526
+ "nodetype" : "namednumber",
1527
+ "number" : "1"
1528
+ },
1529
+ "rtpConnFail" : {
1530
+ "nodetype" : "namednumber",
1531
+ "number" : "2"
1532
+ },
1533
+ "locLinkFail" : {
1534
+ "nodetype" : "namednumber",
1535
+ "number" : "3"
1536
+ },
1537
+ "remLinkFail" : {
1538
+ "nodetype" : "namednumber",
1539
+ "number" : "4"
1540
+ },
1541
+ "operRequest" : {
1542
+ "nodetype" : "namednumber",
1543
+ "number" : "5"
1544
+ },
1545
+ },
1546
+ },
1547
+ "access" : "readonly",
1548
+ "description" :
1549
+ """The reason for the path switch:
1550
+
1551
+ other(1) - Reason other than those listed below,
1552
+ rtpConnFail(2) - RTP connection failure detected,
1553
+ locLinkFail(3) - Local link failure,
1554
+ remLinkFail(4) - Remote link failure (learned from TDUs),
1555
+ operRequest(5) - Operator requested path switch. """,
1556
+ }, # column
1557
+ "hprRtpStatusLastAttemptResult" : {
1558
+ "nodetype" : "column",
1559
+ "moduleName" : "HPR-MIB",
1560
+ "oid" : "1.3.6.1.2.1.34.6.1.4.3.1.12",
1561
+ "status" : "current",
1562
+ "syntax" : {
1563
+ "type" : {
1564
+ "basetype" : "Enumeration",
1565
+ "successful" : {
1566
+ "nodetype" : "namednumber",
1567
+ "number" : "1"
1568
+ },
1569
+ "initiatorMoving" : {
1570
+ "nodetype" : "namednumber",
1571
+ "number" : "2"
1572
+ },
1573
+ "directorySearchFailed" : {
1574
+ "nodetype" : "namednumber",
1575
+ "number" : "3"
1576
+ },
1577
+ "rscvCalculationFailed" : {
1578
+ "nodetype" : "namednumber",
1579
+ "number" : "4"
1580
+ },
1581
+ "negativeRouteSetupReply" : {
1582
+ "nodetype" : "namednumber",
1583
+ "number" : "5"
1584
+ },
1585
+ "backoutRouteSetupReply" : {
1586
+ "nodetype" : "namednumber",
1587
+ "number" : "6"
1588
+ },
1589
+ "timeoutDuringFirstAttempt" : {
1590
+ "nodetype" : "namednumber",
1591
+ "number" : "7"
1592
+ },
1593
+ "otherUnsuccessful" : {
1594
+ "nodetype" : "namednumber",
1595
+ "number" : "8"
1596
+ },
1597
+ },
1598
+ },
1599
+ "access" : "readonly",
1600
+ "description" :
1601
+ """The result of the last completed path switch attempt. If the
1602
+ path switch is aborted in the middle of a path switch attempt
1603
+ because the path switch timer expires, the result of the
1604
+ previous path switch attempt is reported.
1605
+
1606
+ The values are defined as follows:
1607
+
1608
+ successful(1) - The final path switch
1609
+ attempt was successful.
1610
+ initiatorMoving(2) - The final path switch
1611
+ attempt failed because the
1612
+ initiator is mobile, and
1613
+ there was no active link
1614
+ out of this node.
1615
+ directorySearchFailed(3) - The final path switch
1616
+ attempt failed because a
1617
+ directory search for the
1618
+ destination node's CP name
1619
+ failed.
1620
+ rscvCalculationFailed(4) - The final path switch
1621
+ attempt failed because an
1622
+ RSCV to the node containing
1623
+ the remote RTP endpoint
1624
+ could not be calculated.
1625
+ negativeRouteSetupReply(5) - The final path switch
1626
+ attempt failed because route
1627
+ setup failed for the new
1628
+ path.
1629
+ backoutRouteSetupReply(6) - The final path switch
1630
+ attempt failed because the
1631
+ remote RTP endpoint refused
1632
+ to continue the RTP
1633
+ connection.
1634
+ timeoutDuringFirstAttempt(7) - The path switch timer
1635
+ expired during the first
1636
+ path switch attempt.
1637
+ otherUnsuccessful(8) - The final path switch
1638
+ attempt failed for a reason
1639
+ other than those listed
1640
+ above.""",
1641
+ }, # column
1642
+ "hprConformance" : {
1643
+ "nodetype" : "node",
1644
+ "moduleName" : "HPR-MIB",
1645
+ "oid" : "1.3.6.1.2.1.34.6.2",
1646
+ }, # node
1647
+ "hprCompliances" : {
1648
+ "nodetype" : "node",
1649
+ "moduleName" : "HPR-MIB",
1650
+ "oid" : "1.3.6.1.2.1.34.6.2.1",
1651
+ }, # node
1652
+ "hprGroups" : {
1653
+ "nodetype" : "node",
1654
+ "moduleName" : "HPR-MIB",
1655
+ "oid" : "1.3.6.1.2.1.34.6.2.2",
1656
+ }, # node
1657
+ }, # nodes
1658
+
1659
+ "groups" : {
1660
+ "hprGlobalConfGroup" : {
1661
+ "nodetype" : "group",
1662
+ "moduleName" : "HPR-MIB",
1663
+ "oid" : "1.3.6.1.2.1.34.6.2.2.1",
1664
+ "status" : "current",
1665
+ "members" : {
1666
+ "hprNodeCpName" : {
1667
+ "nodetype" : "member",
1668
+ "module" : "HPR-MIB"
1669
+ },
1670
+ "hprOperatorPathSwitchSupport" : {
1671
+ "nodetype" : "member",
1672
+ "module" : "HPR-MIB"
1673
+ },
1674
+ }, # members
1675
+ "description" :
1676
+ """A collection of objects providing the instrumentation of HPR
1677
+ general information and capabilities.""",
1678
+ }, # group
1679
+ "hprAnrRoutingConfGroup" : {
1680
+ "nodetype" : "group",
1681
+ "moduleName" : "HPR-MIB",
1682
+ "oid" : "1.3.6.1.2.1.34.6.2.2.2",
1683
+ "status" : "current",
1684
+ "members" : {
1685
+ "hprAnrsAssigned" : {
1686
+ "nodetype" : "member",
1687
+ "module" : "HPR-MIB"
1688
+ },
1689
+ "hprAnrCounterState" : {
1690
+ "nodetype" : "member",
1691
+ "module" : "HPR-MIB"
1692
+ },
1693
+ "hprAnrCounterStateTime" : {
1694
+ "nodetype" : "member",
1695
+ "module" : "HPR-MIB"
1696
+ },
1697
+ "hprAnrType" : {
1698
+ "nodetype" : "member",
1699
+ "module" : "HPR-MIB"
1700
+ },
1701
+ "hprAnrOutTgDest" : {
1702
+ "nodetype" : "member",
1703
+ "module" : "HPR-MIB"
1704
+ },
1705
+ "hprAnrOutTgNum" : {
1706
+ "nodetype" : "member",
1707
+ "module" : "HPR-MIB"
1708
+ },
1709
+ "hprAnrPacketsReceived" : {
1710
+ "nodetype" : "member",
1711
+ "module" : "HPR-MIB"
1712
+ },
1713
+ "hprAnrCounterDisconTime" : {
1714
+ "nodetype" : "member",
1715
+ "module" : "HPR-MIB"
1716
+ },
1717
+ }, # members
1718
+ "description" :
1719
+ """A collection of objects providing instrumentation for the
1720
+ node's ANR routing.""",
1721
+ }, # group
1722
+ "hprTransportUserConfGroup" : {
1723
+ "nodetype" : "group",
1724
+ "moduleName" : "HPR-MIB",
1725
+ "oid" : "1.3.6.1.2.1.34.6.2.2.3",
1726
+ "status" : "current",
1727
+ "members" : {
1728
+ "hprNceType" : {
1729
+ "nodetype" : "member",
1730
+ "module" : "HPR-MIB"
1731
+ },
1732
+ "hprNceDefault" : {
1733
+ "nodetype" : "member",
1734
+ "module" : "HPR-MIB"
1735
+ },
1736
+ "hprNceInstanceId" : {
1737
+ "nodetype" : "member",
1738
+ "module" : "HPR-MIB"
1739
+ },
1740
+ }, # members
1741
+ "description" :
1742
+ """A collection of objects providing information on the users of
1743
+ the HPR transport known to the node.""",
1744
+ }, # group
1745
+ "hprRtpConfGroup" : {
1746
+ "nodetype" : "group",
1747
+ "moduleName" : "HPR-MIB",
1748
+ "oid" : "1.3.6.1.2.1.34.6.2.2.4",
1749
+ "status" : "current",
1750
+ "members" : {
1751
+ "hprRtpGlobeConnSetups" : {
1752
+ "nodetype" : "member",
1753
+ "module" : "HPR-MIB"
1754
+ },
1755
+ "hprRtpGlobeCtrState" : {
1756
+ "nodetype" : "member",
1757
+ "module" : "HPR-MIB"
1758
+ },
1759
+ "hprRtpGlobeCtrStateTime" : {
1760
+ "nodetype" : "member",
1761
+ "module" : "HPR-MIB"
1762
+ },
1763
+ "hprRtpRemCpName" : {
1764
+ "nodetype" : "member",
1765
+ "module" : "HPR-MIB"
1766
+ },
1767
+ "hprRtpRemNceId" : {
1768
+ "nodetype" : "member",
1769
+ "module" : "HPR-MIB"
1770
+ },
1771
+ "hprRtpRemTcid" : {
1772
+ "nodetype" : "member",
1773
+ "module" : "HPR-MIB"
1774
+ },
1775
+ "hprRtpPathSwitchTrigger" : {
1776
+ "nodetype" : "member",
1777
+ "module" : "HPR-MIB"
1778
+ },
1779
+ "hprRtpRscv" : {
1780
+ "nodetype" : "member",
1781
+ "module" : "HPR-MIB"
1782
+ },
1783
+ "hprRtpTopic" : {
1784
+ "nodetype" : "member",
1785
+ "module" : "HPR-MIB"
1786
+ },
1787
+ "hprRtpState" : {
1788
+ "nodetype" : "member",
1789
+ "module" : "HPR-MIB"
1790
+ },
1791
+ "hprRtpUpTime" : {
1792
+ "nodetype" : "member",
1793
+ "module" : "HPR-MIB"
1794
+ },
1795
+ "hprRtpLivenessTimer" : {
1796
+ "nodetype" : "member",
1797
+ "module" : "HPR-MIB"
1798
+ },
1799
+ "hprRtpShortReqTimer" : {
1800
+ "nodetype" : "member",
1801
+ "module" : "HPR-MIB"
1802
+ },
1803
+ "hprRtpPathSwTimer" : {
1804
+ "nodetype" : "member",
1805
+ "module" : "HPR-MIB"
1806
+ },
1807
+ "hprRtpLivenessTimeouts" : {
1808
+ "nodetype" : "member",
1809
+ "module" : "HPR-MIB"
1810
+ },
1811
+ "hprRtpShortReqTimeouts" : {
1812
+ "nodetype" : "member",
1813
+ "module" : "HPR-MIB"
1814
+ },
1815
+ "hprRtpMaxSendRate" : {
1816
+ "nodetype" : "member",
1817
+ "module" : "HPR-MIB"
1818
+ },
1819
+ "hprRtpMinSendRate" : {
1820
+ "nodetype" : "member",
1821
+ "module" : "HPR-MIB"
1822
+ },
1823
+ "hprRtpCurSendRate" : {
1824
+ "nodetype" : "member",
1825
+ "module" : "HPR-MIB"
1826
+ },
1827
+ "hprRtpSmRdTripDelay" : {
1828
+ "nodetype" : "member",
1829
+ "module" : "HPR-MIB"
1830
+ },
1831
+ "hprRtpSendPackets" : {
1832
+ "nodetype" : "member",
1833
+ "module" : "HPR-MIB"
1834
+ },
1835
+ "hprRtpRecvPackets" : {
1836
+ "nodetype" : "member",
1837
+ "module" : "HPR-MIB"
1838
+ },
1839
+ "hprRtpSendBytes" : {
1840
+ "nodetype" : "member",
1841
+ "module" : "HPR-MIB"
1842
+ },
1843
+ "hprRtpRecvBytes" : {
1844
+ "nodetype" : "member",
1845
+ "module" : "HPR-MIB"
1846
+ },
1847
+ "hprRtpRetrPackets" : {
1848
+ "nodetype" : "member",
1849
+ "module" : "HPR-MIB"
1850
+ },
1851
+ "hprRtpPacketsDiscarded" : {
1852
+ "nodetype" : "member",
1853
+ "module" : "HPR-MIB"
1854
+ },
1855
+ "hprRtpDetectGaps" : {
1856
+ "nodetype" : "member",
1857
+ "module" : "HPR-MIB"
1858
+ },
1859
+ "hprRtpRateReqSends" : {
1860
+ "nodetype" : "member",
1861
+ "module" : "HPR-MIB"
1862
+ },
1863
+ "hprRtpOkErrPathSws" : {
1864
+ "nodetype" : "member",
1865
+ "module" : "HPR-MIB"
1866
+ },
1867
+ "hprRtpBadErrPathSws" : {
1868
+ "nodetype" : "member",
1869
+ "module" : "HPR-MIB"
1870
+ },
1871
+ "hprRtpOkOpPathSws" : {
1872
+ "nodetype" : "member",
1873
+ "module" : "HPR-MIB"
1874
+ },
1875
+ "hprRtpBadOpPathSws" : {
1876
+ "nodetype" : "member",
1877
+ "module" : "HPR-MIB"
1878
+ },
1879
+ "hprRtpCounterDisconTime" : {
1880
+ "nodetype" : "member",
1881
+ "module" : "HPR-MIB"
1882
+ },
1883
+ "hprRtpStatusStartTime" : {
1884
+ "nodetype" : "member",
1885
+ "module" : "HPR-MIB"
1886
+ },
1887
+ "hprRtpStatusEndTime" : {
1888
+ "nodetype" : "member",
1889
+ "module" : "HPR-MIB"
1890
+ },
1891
+ "hprRtpStatusRemNceId" : {
1892
+ "nodetype" : "member",
1893
+ "module" : "HPR-MIB"
1894
+ },
1895
+ "hprRtpStatusRemTcid" : {
1896
+ "nodetype" : "member",
1897
+ "module" : "HPR-MIB"
1898
+ },
1899
+ "hprRtpStatusRemCpName" : {
1900
+ "nodetype" : "member",
1901
+ "module" : "HPR-MIB"
1902
+ },
1903
+ "hprRtpStatusNewRscv" : {
1904
+ "nodetype" : "member",
1905
+ "module" : "HPR-MIB"
1906
+ },
1907
+ "hprRtpStatusOldRscv" : {
1908
+ "nodetype" : "member",
1909
+ "module" : "HPR-MIB"
1910
+ },
1911
+ "hprRtpStatusCause" : {
1912
+ "nodetype" : "member",
1913
+ "module" : "HPR-MIB"
1914
+ },
1915
+ "hprRtpStatusLastAttemptResult" : {
1916
+ "nodetype" : "member",
1917
+ "module" : "HPR-MIB"
1918
+ },
1919
+ }, # members
1920
+ "description" :
1921
+ """A collection of objects providing the instrumentation for RTP
1922
+ connection end points.""",
1923
+ }, # group
1924
+ }, # groups
1925
+
1926
+ "compliances" : {
1927
+ "hprCompliance" : {
1928
+ "nodetype" : "compliance",
1929
+ "moduleName" : "HPR-MIB",
1930
+ "oid" : "1.3.6.1.2.1.34.6.2.1.1",
1931
+ "status" : "current",
1932
+ "description" :
1933
+ """The compliance statement for the SNMPv2 entities that
1934
+ implement the HPR MIB.""",
1935
+ "requires" : {
1936
+ "hprGlobalConfGroup" : {
1937
+ "nodetype" : "mandatory",
1938
+ "module" : "HPR-MIB"
1939
+ },
1940
+ "hprAnrRoutingConfGroup" : {
1941
+ "nodetype" : "mandatory",
1942
+ "module" : "HPR-MIB"
1943
+ },
1944
+ "hprTransportUserConfGroup" : {
1945
+ "nodetype" : "mandatory",
1946
+ "module" : "HPR-MIB"
1947
+ },
1948
+ "hprRtpConfGroup" : {
1949
+ "nodetype" : "optional",
1950
+ "module" : "HPR-MIB",
1951
+ "description" :
1952
+ """The hprRtpConfGroup is mandatory for HPR implementations
1953
+ supporting the HPR transport tower.""",
1954
+ },
1955
+ }, # requires
1956
+ }, # compliance
1957
+ }, # compliances
1958
+
1959
+ }