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,4456 @@
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 HC-RMON-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/HC-RMON-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "HC-RMON-MIB",
11
+
12
+ "HC-RMON-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RMON MIB Working Group""",
17
+ "contact" :
18
+ """Steve Waldbusser
19
+
20
+ Phone: +1-650-948-6500
21
+ Fax: +1-650-745-0671
22
+ Email: waldbusser@nextbeacon.com
23
+
24
+ Andy Bierman
25
+ WG Chair
26
+ abierman@cisco.com
27
+
28
+ RMONMIB WG Mailing List
29
+ rmonmib@ietf.org
30
+ http://www.ietf.org/mailman/listinfo/rmonmib""",
31
+ "description" :
32
+ """The MIB module for managing remote monitoring
33
+ device implementations. This MIB module
34
+ augments the original RMON MIB as specified in
35
+ RFC 2819 and RFC 1513 and RMON-2 MIB as specified in
36
+ RFC 2021.""",
37
+ "revisions" : (
38
+ {
39
+ "date" : "2002-05-08 00:00",
40
+ "description" :
41
+ """The original version of this MIB, published as RFC3273.""",
42
+ },
43
+ ),
44
+ "identity node" : "hcRMON",
45
+ },
46
+
47
+ "imports" : (
48
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
49
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
51
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
52
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
53
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
54
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
55
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
56
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
57
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
58
+ {"module" : "RMON-MIB", "name" : "rmon"},
59
+ {"module" : "RMON-MIB", "name" : "OwnerString"},
60
+ {"module" : "RMON-MIB", "name" : "statistics"},
61
+ {"module" : "RMON-MIB", "name" : "history"},
62
+ {"module" : "RMON-MIB", "name" : "hosts"},
63
+ {"module" : "RMON-MIB", "name" : "hostTopN"},
64
+ {"module" : "RMON-MIB", "name" : "matrix"},
65
+ {"module" : "RMON-MIB", "name" : "etherStatsIndex"},
66
+ {"module" : "RMON-MIB", "name" : "etherHistoryIndex"},
67
+ {"module" : "RMON-MIB", "name" : "etherHistorySampleIndex"},
68
+ {"module" : "RMON-MIB", "name" : "hostIndex"},
69
+ {"module" : "RMON-MIB", "name" : "hostAddress"},
70
+ {"module" : "RMON-MIB", "name" : "hostTimeIndex"},
71
+ {"module" : "RMON-MIB", "name" : "hostTimeCreationOrder"},
72
+ {"module" : "RMON-MIB", "name" : "hostTopNReport"},
73
+ {"module" : "RMON-MIB", "name" : "hostTopNIndex"},
74
+ {"module" : "RMON-MIB", "name" : "matrixSDIndex"},
75
+ {"module" : "RMON-MIB", "name" : "matrixSDSourceAddress"},
76
+ {"module" : "RMON-MIB", "name" : "matrixSDDestAddress"},
77
+ {"module" : "RMON-MIB", "name" : "matrixDSIndex"},
78
+ {"module" : "RMON-MIB", "name" : "matrixDSDestAddress"},
79
+ {"module" : "RMON-MIB", "name" : "matrixDSSourceAddress"},
80
+ {"module" : "RMON-MIB", "name" : "capture"},
81
+ {"module" : "RMON-MIB", "name" : "captureBufferControlIndex"},
82
+ {"module" : "RMON-MIB", "name" : "captureBufferIndex"},
83
+ {"module" : "RMON2-MIB", "name" : "protocolDirLocalIndex"},
84
+ {"module" : "RMON2-MIB", "name" : "protocolDistControlIndex"},
85
+ {"module" : "RMON2-MIB", "name" : "protocolDist"},
86
+ {"module" : "RMON2-MIB", "name" : "hlHostControlIndex"},
87
+ {"module" : "RMON2-MIB", "name" : "nlHost"},
88
+ {"module" : "RMON2-MIB", "name" : "nlHostTimeMark"},
89
+ {"module" : "RMON2-MIB", "name" : "nlHostAddress"},
90
+ {"module" : "RMON2-MIB", "name" : "hlMatrixControlIndex"},
91
+ {"module" : "RMON2-MIB", "name" : "nlMatrix"},
92
+ {"module" : "RMON2-MIB", "name" : "nlMatrixSDTimeMark"},
93
+ {"module" : "RMON2-MIB", "name" : "nlMatrixSDSourceAddress"},
94
+ {"module" : "RMON2-MIB", "name" : "nlMatrixSDDestAddress"},
95
+ {"module" : "RMON2-MIB", "name" : "nlMatrixDSTimeMark"},
96
+ {"module" : "RMON2-MIB", "name" : "nlMatrixDSDestAddress"},
97
+ {"module" : "RMON2-MIB", "name" : "nlMatrixDSSourceAddress"},
98
+ {"module" : "RMON2-MIB", "name" : "nlMatrixTopNControlIndex"},
99
+ {"module" : "RMON2-MIB", "name" : "nlMatrixTopNIndex"},
100
+ {"module" : "RMON2-MIB", "name" : "alHost"},
101
+ {"module" : "RMON2-MIB", "name" : "alHostTimeMark"},
102
+ {"module" : "RMON2-MIB", "name" : "alMatrix"},
103
+ {"module" : "RMON2-MIB", "name" : "alMatrixSDTimeMark"},
104
+ {"module" : "RMON2-MIB", "name" : "alMatrixDSTimeMark"},
105
+ {"module" : "RMON2-MIB", "name" : "alMatrixTopNControlIndex"},
106
+ {"module" : "RMON2-MIB", "name" : "alMatrixTopNIndex"},
107
+ {"module" : "RMON2-MIB", "name" : "usrHistory"},
108
+ {"module" : "RMON2-MIB", "name" : "usrHistoryControlIndex"},
109
+ {"module" : "RMON2-MIB", "name" : "usrHistorySampleIndex"},
110
+ {"module" : "RMON2-MIB", "name" : "usrHistoryObjectIndex"},
111
+ {"module" : "RMON2-MIB", "name" : "rmonConformance"},
112
+ {"module" : "RMON2-MIB", "name" : "ZeroBasedCounter32"},
113
+ {"module" : "RMON2-MIB", "name" : "probeConfig"},
114
+ {"module" : "HCNUM-TC", "name" : "ZeroBasedCounter64"},
115
+ {"module" : "HCNUM-TC", "name" : "CounterBasedGauge64"},
116
+ {"module" : "RMON-MIB", "name" : "rmonEtherStatsGroup"},
117
+ {"module" : "RMON-MIB", "name" : "rmonHistoryControlGroup"},
118
+ {"module" : "RMON-MIB", "name" : "rmonEthernetHistoryGroup"},
119
+ {"module" : "RMON-MIB", "name" : "rmonHostGroup"},
120
+ {"module" : "RMON-MIB", "name" : "rmonHostTopNGroup"},
121
+ {"module" : "RMON-MIB", "name" : "rmonMatrixGroup"},
122
+ {"module" : "RMON-MIB", "name" : "rmonFilterGroup"},
123
+ {"module" : "RMON-MIB", "name" : "rmonPacketCaptureGroup"},
124
+ {"module" : "RMON2-MIB", "name" : "protocolDirectoryGroup"},
125
+ {"module" : "RMON2-MIB", "name" : "protocolDistributionGroup"},
126
+ {"module" : "RMON2-MIB", "name" : "addressMapGroup"},
127
+ {"module" : "RMON2-MIB", "name" : "nlHostGroup"},
128
+ {"module" : "RMON2-MIB", "name" : "nlMatrixGroup"},
129
+ {"module" : "RMON2-MIB", "name" : "usrHistoryGroup"},
130
+ {"module" : "RMON2-MIB", "name" : "probeInformationGroup"},
131
+ {"module" : "RMON2-MIB", "name" : "rmon1EnhancementGroup"},
132
+ {"module" : "RMON2-MIB", "name" : "protocolDirectoryGroup"},
133
+ {"module" : "RMON2-MIB", "name" : "protocolDistributionGroup"},
134
+ {"module" : "RMON2-MIB", "name" : "addressMapGroup"},
135
+ {"module" : "RMON2-MIB", "name" : "nlHostGroup"},
136
+ {"module" : "RMON2-MIB", "name" : "nlMatrixGroup"},
137
+ {"module" : "RMON2-MIB", "name" : "alHostGroup"},
138
+ {"module" : "RMON2-MIB", "name" : "alMatrixGroup"},
139
+ {"module" : "RMON2-MIB", "name" : "usrHistoryGroup"},
140
+ {"module" : "RMON2-MIB", "name" : "probeInformationGroup"},
141
+ {"module" : "RMON2-MIB", "name" : "rmon1EnhancementGroup"},
142
+ ),
143
+
144
+ "nodes" : {
145
+ "etherStatsHighCapacityTable" : {
146
+ "nodetype" : "table",
147
+ "moduleName" : "HC-RMON-MIB",
148
+ "oid" : "1.3.6.1.2.1.16.1.7",
149
+ "status" : "current",
150
+ "description" :
151
+ """Contains the High Capacity RMON extensions to the RMON-1
152
+ etherStatsTable.""",
153
+ }, # table
154
+ "etherStatsHighCapacityEntry" : {
155
+ "nodetype" : "row",
156
+ "moduleName" : "HC-RMON-MIB",
157
+ "oid" : "1.3.6.1.2.1.16.1.7.1",
158
+ "status" : "current",
159
+ "linkage" : [
160
+ "etherStatsIndex",
161
+ ],
162
+ "description" :
163
+ """Contains the High Capacity RMON extensions to the RMON-1
164
+ etherStatsEntry. These objects will be created by the agent
165
+ for all etherStatsEntries it deems appropriate.""",
166
+ }, # row
167
+ "etherStatsHighCapacityOverflowPkts" : {
168
+ "nodetype" : "column",
169
+ "moduleName" : "HC-RMON-MIB",
170
+ "oid" : "1.3.6.1.2.1.16.1.7.1.1",
171
+ "status" : "current",
172
+ "syntax" : {
173
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
174
+ },
175
+ "access" : "readonly",
176
+ "units" : "Packets",
177
+ "description" :
178
+ """The number of times the associated etherStatsPkts
179
+ counter has overflowed.""",
180
+ }, # column
181
+ "etherStatsHighCapacityPkts" : {
182
+ "nodetype" : "column",
183
+ "moduleName" : "HC-RMON-MIB",
184
+ "oid" : "1.3.6.1.2.1.16.1.7.1.2",
185
+ "status" : "current",
186
+ "syntax" : {
187
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
188
+ },
189
+ "access" : "readonly",
190
+ "units" : "Packets",
191
+ "description" :
192
+ """The total number of packets (including bad packets,
193
+ broadcast packets, and multicast packets) received.""",
194
+ }, # column
195
+ "etherStatsHighCapacityOverflowOctets" : {
196
+ "nodetype" : "column",
197
+ "moduleName" : "HC-RMON-MIB",
198
+ "oid" : "1.3.6.1.2.1.16.1.7.1.3",
199
+ "status" : "current",
200
+ "syntax" : {
201
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
202
+ },
203
+ "access" : "readonly",
204
+ "units" : "Octets",
205
+ "description" :
206
+ """The number of times the associated etherStatsOctets
207
+ counter has overflowed.""",
208
+ }, # column
209
+ "etherStatsHighCapacityOctets" : {
210
+ "nodetype" : "column",
211
+ "moduleName" : "HC-RMON-MIB",
212
+ "oid" : "1.3.6.1.2.1.16.1.7.1.4",
213
+ "status" : "current",
214
+ "syntax" : {
215
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
216
+ },
217
+ "access" : "readonly",
218
+ "units" : "Octets",
219
+ "description" :
220
+ """The total number of octets of data (including
221
+ those in bad packets) received on the
222
+ network (excluding framing bits but including
223
+ FCS octets).
224
+
225
+ If the network is half-duplex Fast Ethernet, this
226
+ object can be used as a reasonable estimate of
227
+ utilization. If greater precision is desired, the
228
+ etherStatsHighCapacityPkts and
229
+ etherStatsHighCapacityOctets objects should be sampled
230
+ before and after a common interval. The differences
231
+ in the sampled values are Pkts and Octets,
232
+ respectively, and the number of seconds in the
233
+ interval is Interval. These values
234
+ are used to calculate the Utilization as follows:
235
+
236
+
237
+
238
+
239
+
240
+
241
+ Pkts * (.96 + .64) + (Octets * .08)
242
+ Utilization = -------------------------------------
243
+ Interval * 10,000
244
+
245
+ The result of this equation is the value Utilization
246
+ which is the percent utilization of the ethernet
247
+ segment on a scale of 0 to 100 percent.
248
+
249
+ This table is not appropriate for monitoring full-duplex
250
+ ethernets. If the network is a full-duplex ethernet and the
251
+ mediaIndependentTable is monitoring that network, the
252
+ utilization can be calculated as follows:
253
+
254
+ 1) Determine the utilization of the inbound path by using
255
+ the appropriate equation (for ethernet or fast ethernet)
256
+ to determine the utilization, substituting
257
+ mediaIndependentInPkts for etherStatsHighCapacityPkts, and
258
+ mediaIndependentInOctets for etherStatsHighCapacityOctets.
259
+ Call the resulting utilization inUtilization.
260
+
261
+ 2) Determine the utilization of the outbound path by using
262
+ the same equation to determine the utilization, substituting
263
+ mediaIndependentOutPkts for etherStatsHighCapacityPkts, and
264
+ mediaIndependentOutOctets for etherStatsHighCapacityOctets.
265
+ Call the resulting utilization outUtilization.
266
+
267
+ 3) The utilization is the maximum of inUtilization and
268
+ outUtilization. This metric shows the amount of percentage
269
+ of bandwidth that is left before congestion will be
270
+ experienced on the link.""",
271
+ }, # column
272
+ "etherStatsHighCapacityOverflowPkts64Octets" : {
273
+ "nodetype" : "column",
274
+ "moduleName" : "HC-RMON-MIB",
275
+ "oid" : "1.3.6.1.2.1.16.1.7.1.5",
276
+ "status" : "current",
277
+ "syntax" : {
278
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
279
+ },
280
+ "access" : "readonly",
281
+ "units" : "Packets",
282
+ "description" :
283
+ """The number of times the associated etherStatsPkts64Octets
284
+ counter has overflowed.""",
285
+ }, # column
286
+ "etherStatsHighCapacityPkts64Octets" : {
287
+ "nodetype" : "column",
288
+ "moduleName" : "HC-RMON-MIB",
289
+ "oid" : "1.3.6.1.2.1.16.1.7.1.6",
290
+ "status" : "current",
291
+ "syntax" : {
292
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
293
+ },
294
+ "access" : "readonly",
295
+ "units" : "Packets",
296
+ "description" :
297
+ """The total number of packets (including bad
298
+ packets) received that were 64 octets in length
299
+ (excluding framing bits but including FCS octets).""",
300
+ }, # column
301
+ "etherStatsHighCapacityOverflowPkts65to127Octets" : {
302
+ "nodetype" : "column",
303
+ "moduleName" : "HC-RMON-MIB",
304
+ "oid" : "1.3.6.1.2.1.16.1.7.1.7",
305
+ "status" : "current",
306
+ "syntax" : {
307
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
308
+ },
309
+ "access" : "readonly",
310
+ "units" : "Packets",
311
+ "description" :
312
+ """The number of times the associated etherStatsPkts65to127Octets
313
+ counter has overflowed.""",
314
+ }, # column
315
+ "etherStatsHighCapacityPkts65to127Octets" : {
316
+ "nodetype" : "column",
317
+ "moduleName" : "HC-RMON-MIB",
318
+ "oid" : "1.3.6.1.2.1.16.1.7.1.8",
319
+ "status" : "current",
320
+ "syntax" : {
321
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
322
+ },
323
+ "access" : "readonly",
324
+ "units" : "Packets",
325
+ "description" :
326
+ """The total number of packets (including bad
327
+ packets) received that were between
328
+ 65 and 127 octets in length inclusive
329
+ (excluding framing bits but including FCS octets).""",
330
+ }, # column
331
+ "etherStatsHighCapacityOverflowPkts128to255Octets" : {
332
+ "nodetype" : "column",
333
+ "moduleName" : "HC-RMON-MIB",
334
+ "oid" : "1.3.6.1.2.1.16.1.7.1.9",
335
+ "status" : "current",
336
+ "syntax" : {
337
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
338
+ },
339
+ "access" : "readonly",
340
+ "units" : "Packets",
341
+ "description" :
342
+ """The number of times the associated etherStatsPkts128to255Octets
343
+ counter has overflowed.""",
344
+ }, # column
345
+ "etherStatsHighCapacityPkts128to255Octets" : {
346
+ "nodetype" : "column",
347
+ "moduleName" : "HC-RMON-MIB",
348
+ "oid" : "1.3.6.1.2.1.16.1.7.1.10",
349
+ "status" : "current",
350
+ "syntax" : {
351
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
352
+ },
353
+ "access" : "readonly",
354
+ "units" : "Packets",
355
+ "description" :
356
+ """The total number of packets (including bad
357
+ packets) received that were between
358
+ 128 and 255 octets in length inclusive
359
+ (excluding framing bits but including FCS octets).""",
360
+ }, # column
361
+ "etherStatsHighCapacityOverflowPkts256to511Octets" : {
362
+ "nodetype" : "column",
363
+ "moduleName" : "HC-RMON-MIB",
364
+ "oid" : "1.3.6.1.2.1.16.1.7.1.11",
365
+ "status" : "current",
366
+ "syntax" : {
367
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
368
+ },
369
+ "access" : "readonly",
370
+ "units" : "Packets",
371
+ "description" :
372
+ """The number of times the associated etherStatsPkts256to511Octets
373
+ counter has overflowed.""",
374
+ }, # column
375
+ "etherStatsHighCapacityPkts256to511Octets" : {
376
+ "nodetype" : "column",
377
+ "moduleName" : "HC-RMON-MIB",
378
+ "oid" : "1.3.6.1.2.1.16.1.7.1.12",
379
+ "status" : "current",
380
+ "syntax" : {
381
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
382
+ },
383
+ "access" : "readonly",
384
+ "units" : "Packets",
385
+ "description" :
386
+ """The total number of packets (including bad
387
+ packets) received that were between
388
+ 256 and 511 octets in length inclusive
389
+ (excluding framing bits but including FCS octets).""",
390
+ }, # column
391
+ "etherStatsHighCapacityOverflowPkts512to1023Octets" : {
392
+ "nodetype" : "column",
393
+ "moduleName" : "HC-RMON-MIB",
394
+ "oid" : "1.3.6.1.2.1.16.1.7.1.13",
395
+ "status" : "current",
396
+ "syntax" : {
397
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
398
+ },
399
+ "access" : "readonly",
400
+ "units" : "Packets",
401
+ "description" :
402
+ """The number of times the associated
403
+ etherStatsPkts512to1023Octets counter has overflowed.""",
404
+ }, # column
405
+ "etherStatsHighCapacityPkts512to1023Octets" : {
406
+ "nodetype" : "column",
407
+ "moduleName" : "HC-RMON-MIB",
408
+ "oid" : "1.3.6.1.2.1.16.1.7.1.14",
409
+ "status" : "current",
410
+ "syntax" : {
411
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
412
+ },
413
+ "access" : "readonly",
414
+ "units" : "Packets",
415
+ "description" :
416
+ """The total number of packets (including bad
417
+ packets) received that were between
418
+ 512 and 1023 octets in length inclusive
419
+ (excluding framing bits but including FCS octets).""",
420
+ }, # column
421
+ "etherStatsHighCapacityOverflowPkts1024to1518Octets" : {
422
+ "nodetype" : "column",
423
+ "moduleName" : "HC-RMON-MIB",
424
+ "oid" : "1.3.6.1.2.1.16.1.7.1.15",
425
+ "status" : "current",
426
+ "syntax" : {
427
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
428
+ },
429
+ "access" : "readonly",
430
+ "units" : "Packets",
431
+ "description" :
432
+ """The number of times the associated
433
+ etherStatsPkts1024to1518Octets counter has overflowed.""",
434
+ }, # column
435
+ "etherStatsHighCapacityPkts1024to1518Octets" : {
436
+ "nodetype" : "column",
437
+ "moduleName" : "HC-RMON-MIB",
438
+ "oid" : "1.3.6.1.2.1.16.1.7.1.16",
439
+ "status" : "current",
440
+ "syntax" : {
441
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
442
+ },
443
+ "access" : "readonly",
444
+ "units" : "Packets",
445
+ "description" :
446
+ """The total number of packets (including bad
447
+ packets) received that were between
448
+ 1024 and 1518 octets in length inclusive
449
+ (excluding framing bits but including FCS octets).""",
450
+ }, # column
451
+ "etherHistoryHighCapacityTable" : {
452
+ "nodetype" : "table",
453
+ "moduleName" : "HC-RMON-MIB",
454
+ "oid" : "1.3.6.1.2.1.16.2.6",
455
+ "status" : "current",
456
+ "description" :
457
+ """Contains the High Capacity RMON extensions to the RMON-1
458
+ etherHistoryTable.""",
459
+ }, # table
460
+ "etherHistoryHighCapacityEntry" : {
461
+ "nodetype" : "row",
462
+ "moduleName" : "HC-RMON-MIB",
463
+ "oid" : "1.3.6.1.2.1.16.2.6.1",
464
+ "status" : "current",
465
+ "linkage" : [
466
+ "etherHistoryIndex",
467
+ "etherHistorySampleIndex",
468
+ ],
469
+ "description" :
470
+ """Contains the High Capacity RMON extensions to the RMON-1
471
+ etherHistoryEntry. These objects will be created by the agent
472
+ for all etherHistoryEntries associated with whichever
473
+ historyControlEntries it deems appropriate. (i.e., either all
474
+ etherHistoryHighCapacityEntries associated with a particular
475
+ historyControlEntry will be created, or none of them will
476
+ be.)""",
477
+ }, # row
478
+ "etherHistoryHighCapacityOverflowPkts" : {
479
+ "nodetype" : "column",
480
+ "moduleName" : "HC-RMON-MIB",
481
+ "oid" : "1.3.6.1.2.1.16.2.6.1.1",
482
+ "status" : "current",
483
+ "syntax" : {
484
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
485
+ },
486
+ "access" : "readonly",
487
+ "units" : "Packets",
488
+ "description" :
489
+ """The number of times the associated etherHistoryPkts
490
+ Gauge overflowed during this sampling interval.""",
491
+ }, # column
492
+ "etherHistoryHighCapacityPkts" : {
493
+ "nodetype" : "column",
494
+ "moduleName" : "HC-RMON-MIB",
495
+ "oid" : "1.3.6.1.2.1.16.2.6.1.2",
496
+ "status" : "current",
497
+ "syntax" : {
498
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
499
+ },
500
+ "access" : "readonly",
501
+ "units" : "Packets",
502
+ "description" :
503
+ """The total number of packets (including bad packets,
504
+ broadcast packets, and multicast packets) received during
505
+ this sampling interval.""",
506
+ }, # column
507
+ "etherHistoryHighCapacityOverflowOctets" : {
508
+ "nodetype" : "column",
509
+ "moduleName" : "HC-RMON-MIB",
510
+ "oid" : "1.3.6.1.2.1.16.2.6.1.3",
511
+ "status" : "current",
512
+ "syntax" : {
513
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
514
+ },
515
+ "access" : "readonly",
516
+ "units" : "Octets",
517
+ "description" :
518
+ """The number of times the associated etherHistoryOctets
519
+ counter has overflowed during this sampling interval.""",
520
+ }, # column
521
+ "etherHistoryHighCapacityOctets" : {
522
+ "nodetype" : "column",
523
+ "moduleName" : "HC-RMON-MIB",
524
+ "oid" : "1.3.6.1.2.1.16.2.6.1.4",
525
+ "status" : "current",
526
+ "syntax" : {
527
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
528
+ },
529
+ "access" : "readonly",
530
+ "units" : "Octets",
531
+ "description" :
532
+ """The total number of octets of data (including
533
+ those in bad packets) received on the
534
+ network (excluding framing bits but including
535
+ FCS octets) during this sampling interval.""",
536
+ }, # column
537
+ "hostHighCapacityTable" : {
538
+ "nodetype" : "table",
539
+ "moduleName" : "HC-RMON-MIB",
540
+ "oid" : "1.3.6.1.2.1.16.4.5",
541
+ "status" : "current",
542
+ "description" :
543
+ """Contains the High Capacity RMON extensions to the RMON-1
544
+ hostTable.""",
545
+ }, # table
546
+ "hostHighCapacityEntry" : {
547
+ "nodetype" : "row",
548
+ "moduleName" : "HC-RMON-MIB",
549
+ "oid" : "1.3.6.1.2.1.16.4.5.1",
550
+ "status" : "current",
551
+ "linkage" : [
552
+ "hostIndex",
553
+ "hostAddress",
554
+ ],
555
+ "description" :
556
+ """Contains the High Capacity RMON extensions to the RMON-1
557
+ hostEntry. These objects will be created by the agent
558
+ for all hostEntries associated with whichever
559
+ hostControlEntries it deems appropriate. (i.e., either all
560
+ hostHighCapacityEntries associated with a particular
561
+ hostControlEntry will be created, or none of them will
562
+ be.)""",
563
+ }, # row
564
+ "hostHighCapacityInOverflowPkts" : {
565
+ "nodetype" : "column",
566
+ "moduleName" : "HC-RMON-MIB",
567
+ "oid" : "1.3.6.1.2.1.16.4.5.1.1",
568
+ "status" : "current",
569
+ "syntax" : {
570
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
571
+ },
572
+ "access" : "readonly",
573
+ "units" : "Packets",
574
+ "description" :
575
+ """The number of times the associated hostInPkts
576
+ counter has overflowed.""",
577
+ }, # column
578
+ "hostHighCapacityInPkts" : {
579
+ "nodetype" : "column",
580
+ "moduleName" : "HC-RMON-MIB",
581
+ "oid" : "1.3.6.1.2.1.16.4.5.1.2",
582
+ "status" : "current",
583
+ "syntax" : {
584
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
585
+ },
586
+ "access" : "readonly",
587
+ "units" : "Packets",
588
+ "description" :
589
+ """The number of good packets transmitted to
590
+ this address since it was added to the
591
+ hostHighCapacityTable.""",
592
+ }, # column
593
+ "hostHighCapacityOutOverflowPkts" : {
594
+ "nodetype" : "column",
595
+ "moduleName" : "HC-RMON-MIB",
596
+ "oid" : "1.3.6.1.2.1.16.4.5.1.3",
597
+ "status" : "current",
598
+ "syntax" : {
599
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
600
+ },
601
+ "access" : "readonly",
602
+ "units" : "Packets",
603
+ "description" :
604
+ """The number of times the associated hostOutPkts
605
+ counter has overflowed.""",
606
+ }, # column
607
+ "hostHighCapacityOutPkts" : {
608
+ "nodetype" : "column",
609
+ "moduleName" : "HC-RMON-MIB",
610
+ "oid" : "1.3.6.1.2.1.16.4.5.1.4",
611
+ "status" : "current",
612
+ "syntax" : {
613
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
614
+ },
615
+ "access" : "readonly",
616
+ "units" : "Packets",
617
+ "description" :
618
+ """The number of packets, including bad packets, transmitted
619
+ by this address since it was added to the
620
+ hostHighCapacityTable.""",
621
+ }, # column
622
+ "hostHighCapacityInOverflowOctets" : {
623
+ "nodetype" : "column",
624
+ "moduleName" : "HC-RMON-MIB",
625
+ "oid" : "1.3.6.1.2.1.16.4.5.1.5",
626
+ "status" : "current",
627
+ "syntax" : {
628
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
629
+ },
630
+ "access" : "readonly",
631
+ "units" : "Octets",
632
+ "description" :
633
+ """The number of times the associated hostInOctets
634
+ counter has overflowed.""",
635
+ }, # column
636
+ "hostHighCapacityInOctets" : {
637
+ "nodetype" : "column",
638
+ "moduleName" : "HC-RMON-MIB",
639
+ "oid" : "1.3.6.1.2.1.16.4.5.1.6",
640
+ "status" : "current",
641
+ "syntax" : {
642
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
643
+ },
644
+ "access" : "readonly",
645
+ "units" : "Octets",
646
+ "description" :
647
+ """The number of octets transmitted to this address
648
+ since it was added to the hostHighCapacityTable (excluding
649
+ framing bits but including FCS octets), except for
650
+
651
+
652
+
653
+ those octets in bad packets.""",
654
+ }, # column
655
+ "hostHighCapacityOutOverflowOctets" : {
656
+ "nodetype" : "column",
657
+ "moduleName" : "HC-RMON-MIB",
658
+ "oid" : "1.3.6.1.2.1.16.4.5.1.7",
659
+ "status" : "current",
660
+ "syntax" : {
661
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
662
+ },
663
+ "access" : "readonly",
664
+ "units" : "Octets",
665
+ "description" :
666
+ """The number of times the associated hostOutOctets
667
+ counter has overflowed.""",
668
+ }, # column
669
+ "hostHighCapacityOutOctets" : {
670
+ "nodetype" : "column",
671
+ "moduleName" : "HC-RMON-MIB",
672
+ "oid" : "1.3.6.1.2.1.16.4.5.1.8",
673
+ "status" : "current",
674
+ "syntax" : {
675
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
676
+ },
677
+ "access" : "readonly",
678
+ "units" : "Octets",
679
+ "description" :
680
+ """The number of octets transmitted by this address
681
+ since it was added to the hostHighCapacityTable (excluding
682
+ framing bits but including FCS octets), including
683
+ those octets in bad packets.""",
684
+ }, # column
685
+ "hostTimeHighCapacityTable" : {
686
+ "nodetype" : "table",
687
+ "moduleName" : "HC-RMON-MIB",
688
+ "oid" : "1.3.6.1.2.1.16.4.6",
689
+ "status" : "current",
690
+ "description" :
691
+ """Contains the High Capacity RMON extensions to the RMON-1
692
+ hostTimeTable.""",
693
+ }, # table
694
+ "hostTimeHighCapacityEntry" : {
695
+ "nodetype" : "row",
696
+ "moduleName" : "HC-RMON-MIB",
697
+ "oid" : "1.3.6.1.2.1.16.4.6.1",
698
+ "status" : "current",
699
+ "linkage" : [
700
+ "hostTimeIndex",
701
+ "hostTimeCreationOrder",
702
+ ],
703
+ "description" :
704
+ """Contains the High Capacity RMON extensions to the RMON-1
705
+ hostTimeEntry. These objects will be created by the agent
706
+ for all hostTimeEntries associated with whichever
707
+ hostControlEntries it deems appropriate. (i.e., either all
708
+ hostTimeHighCapacityEntries associated with a particular
709
+ hostControlEntry will be created, or none of them will
710
+ be.)""",
711
+ }, # row
712
+ "hostTimeHighCapacityInOverflowPkts" : {
713
+ "nodetype" : "column",
714
+ "moduleName" : "HC-RMON-MIB",
715
+ "oid" : "1.3.6.1.2.1.16.4.6.1.1",
716
+ "status" : "current",
717
+ "syntax" : {
718
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
719
+ },
720
+ "access" : "readonly",
721
+ "units" : "Packets",
722
+ "description" :
723
+ """The number of times the associated hostTimeInPkts
724
+ counter has overflowed.""",
725
+ }, # column
726
+ "hostTimeHighCapacityInPkts" : {
727
+ "nodetype" : "column",
728
+ "moduleName" : "HC-RMON-MIB",
729
+ "oid" : "1.3.6.1.2.1.16.4.6.1.2",
730
+ "status" : "current",
731
+ "syntax" : {
732
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
733
+ },
734
+ "access" : "readonly",
735
+ "units" : "Packets",
736
+ "description" :
737
+ """The number of good packets transmitted to this address
738
+ since it was added to the hostTimeHighCapacityTable.""",
739
+ }, # column
740
+ "hostTimeHighCapacityOutOverflowPkts" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "HC-RMON-MIB",
743
+ "oid" : "1.3.6.1.2.1.16.4.6.1.3",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
747
+ },
748
+ "access" : "readonly",
749
+ "units" : "Packets",
750
+ "description" :
751
+ """The number of times the associated hostTimeOutPkts
752
+ counter has overflowed.""",
753
+ }, # column
754
+ "hostTimeHighCapacityOutPkts" : {
755
+ "nodetype" : "column",
756
+ "moduleName" : "HC-RMON-MIB",
757
+ "oid" : "1.3.6.1.2.1.16.4.6.1.4",
758
+ "status" : "current",
759
+ "syntax" : {
760
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
761
+ },
762
+ "access" : "readonly",
763
+ "units" : "Packets",
764
+ "description" :
765
+ """The number of packets, including bad packets, transmitted
766
+ by this address since it was added to the
767
+ hostTimeHighCapacityTable.""",
768
+ }, # column
769
+ "hostTimeHighCapacityInOverflowOctets" : {
770
+ "nodetype" : "column",
771
+ "moduleName" : "HC-RMON-MIB",
772
+ "oid" : "1.3.6.1.2.1.16.4.6.1.5",
773
+ "status" : "current",
774
+ "syntax" : {
775
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
776
+ },
777
+ "access" : "readonly",
778
+ "units" : "Octets",
779
+ "description" :
780
+ """The number of times the associated hostTimeInOctets
781
+ counter has overflowed.""",
782
+ }, # column
783
+ "hostTimeHighCapacityInOctets" : {
784
+ "nodetype" : "column",
785
+ "moduleName" : "HC-RMON-MIB",
786
+ "oid" : "1.3.6.1.2.1.16.4.6.1.6",
787
+ "status" : "current",
788
+ "syntax" : {
789
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
790
+ },
791
+ "access" : "readonly",
792
+ "units" : "Octets",
793
+ "description" :
794
+ """The number of octets transmitted to this address
795
+ since it was added to the hostTimeHighCapacityTable
796
+ (excluding framing bits but including FCS octets),
797
+ except for those octets in bad packets.""",
798
+ }, # column
799
+ "hostTimeHighCapacityOutOverflowOctets" : {
800
+ "nodetype" : "column",
801
+ "moduleName" : "HC-RMON-MIB",
802
+ "oid" : "1.3.6.1.2.1.16.4.6.1.7",
803
+ "status" : "current",
804
+ "syntax" : {
805
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
806
+ },
807
+ "access" : "readonly",
808
+ "units" : "Octets",
809
+ "description" :
810
+ """The number of times the associated hostTimeOutOctets
811
+ counter has overflowed.""",
812
+ }, # column
813
+ "hostTimeHighCapacityOutOctets" : {
814
+ "nodetype" : "column",
815
+ "moduleName" : "HC-RMON-MIB",
816
+ "oid" : "1.3.6.1.2.1.16.4.6.1.8",
817
+ "status" : "current",
818
+ "syntax" : {
819
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
820
+ },
821
+ "access" : "readonly",
822
+ "units" : "Octets",
823
+ "description" :
824
+ """The number of octets transmitted by this address since
825
+ it was added to the hostTimeTable (excluding framing
826
+ bits but including FCS octets), including those
827
+
828
+
829
+
830
+ octets in bad packets.""",
831
+ }, # column
832
+ "hostTopNHighCapacityTable" : {
833
+ "nodetype" : "table",
834
+ "moduleName" : "HC-RMON-MIB",
835
+ "oid" : "1.3.6.1.2.1.16.5.3",
836
+ "status" : "current",
837
+ "description" :
838
+ """Contains the High Capacity RMON extensions to the RMON-1
839
+ hostTopNTable when hostTopNRateBase specifies a High Capacity
840
+ TopN Report.""",
841
+ }, # table
842
+ "hostTopNHighCapacityEntry" : {
843
+ "nodetype" : "row",
844
+ "moduleName" : "HC-RMON-MIB",
845
+ "oid" : "1.3.6.1.2.1.16.5.3.1",
846
+ "status" : "current",
847
+ "linkage" : [
848
+ "hostTopNReport",
849
+ "hostTopNIndex",
850
+ ],
851
+ "description" :
852
+ """Contains the High Capacity RMON extensions to the RMON-1
853
+ hostTopNEntry when hostTopNRateBase specifies a High Capacity
854
+ TopN Report. These objects will be created by the agent
855
+ for all hostTopNEntries associated with whichever
856
+ hostTopNControlEntries have a hostTopNRateBase that specify
857
+ a high capacity report.""",
858
+ }, # row
859
+ "hostTopNHighCapacityAddress" : {
860
+ "nodetype" : "column",
861
+ "moduleName" : "HC-RMON-MIB",
862
+ "oid" : "1.3.6.1.2.1.16.5.3.1.1",
863
+ "status" : "current",
864
+ "syntax" : {
865
+ "type" : { "module" :"", "name" : "OctetString"},
866
+ },
867
+ "access" : "readonly",
868
+ "description" :
869
+ """The physical address of this host.""",
870
+ }, # column
871
+ "hostTopNHighCapacityBaseRate" : {
872
+ "nodetype" : "column",
873
+ "moduleName" : "HC-RMON-MIB",
874
+ "oid" : "1.3.6.1.2.1.16.5.3.1.2",
875
+ "status" : "current",
876
+ "syntax" : {
877
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
878
+ },
879
+ "access" : "readonly",
880
+ "description" :
881
+ """The amount of change in the selected variable
882
+ during this sampling interval, modulo 2^32. The
883
+ selected variable is this host's instance of the
884
+ object selected by hostTopNRateBase.""",
885
+ }, # column
886
+ "hostTopNHighCapacityOverflowRate" : {
887
+ "nodetype" : "column",
888
+ "moduleName" : "HC-RMON-MIB",
889
+ "oid" : "1.3.6.1.2.1.16.5.3.1.3",
890
+ "status" : "current",
891
+ "syntax" : {
892
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
893
+ },
894
+ "access" : "readonly",
895
+ "description" :
896
+ """The amount of change in the selected variable
897
+ during this sampling interval, divided by 2^32, truncating
898
+ fractions (i.e., X DIV 2^32). The selected variable is
899
+ this host's instance of the object selected by
900
+ hostTopNRateBase.""",
901
+ }, # column
902
+ "hostTopNHighCapacityRate" : {
903
+ "nodetype" : "column",
904
+ "moduleName" : "HC-RMON-MIB",
905
+ "oid" : "1.3.6.1.2.1.16.5.3.1.4",
906
+ "status" : "current",
907
+ "syntax" : {
908
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
909
+ },
910
+ "access" : "readonly",
911
+ "description" :
912
+ """The amount of change in the selected variable
913
+ during this sampling interval. The selected
914
+ variable is this host's instance of the object
915
+ selected by hostTopNRateBase.""",
916
+ }, # column
917
+ "matrixSDHighCapacityTable" : {
918
+ "nodetype" : "table",
919
+ "moduleName" : "HC-RMON-MIB",
920
+ "oid" : "1.3.6.1.2.1.16.6.5",
921
+ "status" : "current",
922
+ "description" :
923
+ """Contains the High Capacity RMON extensions to the RMON-1
924
+ matrixSDTable.""",
925
+ }, # table
926
+ "matrixSDHighCapacityEntry" : {
927
+ "nodetype" : "row",
928
+ "moduleName" : "HC-RMON-MIB",
929
+ "oid" : "1.3.6.1.2.1.16.6.5.1",
930
+ "status" : "current",
931
+ "linkage" : [
932
+ "matrixSDIndex",
933
+ "matrixSDSourceAddress",
934
+ "matrixSDDestAddress",
935
+ ],
936
+ "description" :
937
+ """Contains the High Capacity RMON extensions to the RMON-1
938
+ matrixSDEntry. These objects will be created by the agent
939
+
940
+
941
+
942
+ for all matrixSDEntries associated with whichever
943
+ matrixControlEntries it deems appropriate. (i.e., either all
944
+ matrixSDHighCapacityEntries associated with a particular
945
+ matrixControlEntry will be created, or none of them will
946
+ be.)""",
947
+ }, # row
948
+ "matrixSDHighCapacityOverflowPkts" : {
949
+ "nodetype" : "column",
950
+ "moduleName" : "HC-RMON-MIB",
951
+ "oid" : "1.3.6.1.2.1.16.6.5.1.1",
952
+ "status" : "current",
953
+ "syntax" : {
954
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
955
+ },
956
+ "access" : "readonly",
957
+ "units" : "Packets",
958
+ "description" :
959
+ """The number of times the associated matrixSDPkts
960
+ counter has overflowed.""",
961
+ }, # column
962
+ "matrixSDHighCapacityPkts" : {
963
+ "nodetype" : "column",
964
+ "moduleName" : "HC-RMON-MIB",
965
+ "oid" : "1.3.6.1.2.1.16.6.5.1.2",
966
+ "status" : "current",
967
+ "syntax" : {
968
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
969
+ },
970
+ "access" : "readonly",
971
+ "units" : "Packets",
972
+ "description" :
973
+ """The number of packets transmitted from the source
974
+ address to the destination address (this number
975
+ includes bad packets).""",
976
+ }, # column
977
+ "matrixSDHighCapacityOverflowOctets" : {
978
+ "nodetype" : "column",
979
+ "moduleName" : "HC-RMON-MIB",
980
+ "oid" : "1.3.6.1.2.1.16.6.5.1.3",
981
+ "status" : "current",
982
+ "syntax" : {
983
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
984
+ },
985
+ "access" : "readonly",
986
+ "units" : "Octets",
987
+ "description" :
988
+ """The number of times the associated matrixSDOctets
989
+ counter has overflowed.""",
990
+ }, # column
991
+ "matrixSDHighCapacityOctets" : {
992
+ "nodetype" : "column",
993
+ "moduleName" : "HC-RMON-MIB",
994
+ "oid" : "1.3.6.1.2.1.16.6.5.1.4",
995
+ "status" : "current",
996
+ "syntax" : {
997
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
998
+ },
999
+ "access" : "readonly",
1000
+ "units" : "Octets",
1001
+ "description" :
1002
+ """The number of octets (excluding framing bits but
1003
+ including FCS octets) contained in all packets
1004
+ transmitted from the source address to the
1005
+ destination address.""",
1006
+ }, # column
1007
+ "matrixDSHighCapacityTable" : {
1008
+ "nodetype" : "table",
1009
+ "moduleName" : "HC-RMON-MIB",
1010
+ "oid" : "1.3.6.1.2.1.16.6.6",
1011
+ "status" : "current",
1012
+ "description" :
1013
+ """Contains the High Capacity RMON extensions to the RMON-1
1014
+ matrixDSTable.""",
1015
+ }, # table
1016
+ "matrixDSHighCapacityEntry" : {
1017
+ "nodetype" : "row",
1018
+ "moduleName" : "HC-RMON-MIB",
1019
+ "oid" : "1.3.6.1.2.1.16.6.6.1",
1020
+ "status" : "current",
1021
+ "linkage" : [
1022
+ "matrixDSIndex",
1023
+ "matrixDSDestAddress",
1024
+ "matrixDSSourceAddress",
1025
+ ],
1026
+ "description" :
1027
+ """Contains the High Capacity RMON extensions to the RMON-1
1028
+ matrixDSEntry. These objects will be created by the agent
1029
+ for all matrixDSEntries associated with whichever
1030
+ matrixControlEntries it deems appropriate. (i.e., either all
1031
+ matrixDSHighCapacityEntries associated with a particular
1032
+ matrixControlEntry will be created, or none of them will
1033
+ be.)""",
1034
+ }, # row
1035
+ "matrixDSHighCapacityOverflowPkts" : {
1036
+ "nodetype" : "column",
1037
+ "moduleName" : "HC-RMON-MIB",
1038
+ "oid" : "1.3.6.1.2.1.16.6.6.1.1",
1039
+ "status" : "current",
1040
+ "syntax" : {
1041
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1042
+ },
1043
+ "access" : "readonly",
1044
+ "units" : "Packets",
1045
+ "description" :
1046
+ """The number of times the associated matrixDSPkts
1047
+ counter has overflowed.""",
1048
+ }, # column
1049
+ "matrixDSHighCapacityPkts" : {
1050
+ "nodetype" : "column",
1051
+ "moduleName" : "HC-RMON-MIB",
1052
+ "oid" : "1.3.6.1.2.1.16.6.6.1.2",
1053
+ "status" : "current",
1054
+ "syntax" : {
1055
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1056
+ },
1057
+ "access" : "readonly",
1058
+ "units" : "Packets",
1059
+ "description" :
1060
+ """The number of packets transmitted from the source
1061
+ address to the destination address (this number
1062
+ includes bad packets).""",
1063
+ }, # column
1064
+ "matrixDSHighCapacityOverflowOctets" : {
1065
+ "nodetype" : "column",
1066
+ "moduleName" : "HC-RMON-MIB",
1067
+ "oid" : "1.3.6.1.2.1.16.6.6.1.3",
1068
+ "status" : "current",
1069
+ "syntax" : {
1070
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1071
+ },
1072
+ "access" : "readonly",
1073
+ "units" : "Octets",
1074
+ "description" :
1075
+ """The number of times the associated matrixDSOctets
1076
+ counter has overflowed.""",
1077
+ }, # column
1078
+ "matrixDSHighCapacityOctets" : {
1079
+ "nodetype" : "column",
1080
+ "moduleName" : "HC-RMON-MIB",
1081
+ "oid" : "1.3.6.1.2.1.16.6.6.1.4",
1082
+ "status" : "current",
1083
+ "syntax" : {
1084
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1085
+ },
1086
+ "access" : "readonly",
1087
+ "units" : "Octets",
1088
+ "description" :
1089
+ """The number of octets (excluding framing bits
1090
+ but including FCS octets) contained in all packets
1091
+ transmitted from the source address to the
1092
+ destination address.""",
1093
+ }, # column
1094
+ "captureBufferHighCapacityTable" : {
1095
+ "nodetype" : "table",
1096
+ "moduleName" : "HC-RMON-MIB",
1097
+ "oid" : "1.3.6.1.2.1.16.8.3",
1098
+ "status" : "current",
1099
+ "description" :
1100
+ """Contains the High Capacity RMON extensions to the RMON-1
1101
+
1102
+
1103
+
1104
+ captureBufferTable.""",
1105
+ }, # table
1106
+ "captureBufferHighCapacityEntry" : {
1107
+ "nodetype" : "row",
1108
+ "moduleName" : "HC-RMON-MIB",
1109
+ "oid" : "1.3.6.1.2.1.16.8.3.1",
1110
+ "status" : "current",
1111
+ "linkage" : [
1112
+ "captureBufferControlIndex",
1113
+ "captureBufferIndex",
1114
+ ],
1115
+ "description" :
1116
+ """Contains the High Capacity RMON extensions to the RMON-1
1117
+ captureBufferEntry. These objects will be created by the agent
1118
+ for all captureBufferEntries associated with whichever
1119
+ bufferControlEntries it deems appropriate. (i.e., either all
1120
+ captureBufferHighCapacityEntries associated with a particular
1121
+ bufferControlEntry will be created, or none of them will
1122
+ be.)""",
1123
+ }, # row
1124
+ "captureBufferPacketHighCapacityTime" : {
1125
+ "nodetype" : "column",
1126
+ "moduleName" : "HC-RMON-MIB",
1127
+ "oid" : "1.3.6.1.2.1.16.8.3.1.1",
1128
+ "status" : "current",
1129
+ "syntax" : {
1130
+ "type" : {
1131
+ "basetype" : "Integer32",
1132
+ "ranges" : [
1133
+ {
1134
+ "min" : "0",
1135
+ "max" : "999999"
1136
+ },
1137
+ ],
1138
+ "range" : {
1139
+ "min" : "0",
1140
+ "max" : "999999"
1141
+ },
1142
+ },
1143
+ },
1144
+ "access" : "readonly",
1145
+ "units" : "nanoseconds",
1146
+ "description" :
1147
+ """The number of nanoseconds that had passed since this capture
1148
+ buffer was first turned on when this packet was captured,
1149
+ modulo 10^6.
1150
+
1151
+ This object is used in conjunction with the
1152
+ captureBufferPacketTime object. This object returns the
1153
+ number of nano-seconds to be added to to number of
1154
+ milli-seconds obtained from the captureBufferPacketTime
1155
+ object, to obtain more accurate inter packet arrival time.""",
1156
+ }, # column
1157
+ "protocolDistStatsHighCapacityTable" : {
1158
+ "nodetype" : "table",
1159
+ "moduleName" : "HC-RMON-MIB",
1160
+ "oid" : "1.3.6.1.2.1.16.12.3",
1161
+ "status" : "current",
1162
+ "description" :
1163
+ """Contains the High Capacity RMON extensions to the RMON-2
1164
+ protocolDistStatsTable.""",
1165
+ }, # table
1166
+ "protocolDistStatsHighCapacityEntry" : {
1167
+ "nodetype" : "row",
1168
+ "moduleName" : "HC-RMON-MIB",
1169
+ "oid" : "1.3.6.1.2.1.16.12.3.1",
1170
+ "status" : "current",
1171
+ "linkage" : [
1172
+ "protocolDistControlIndex",
1173
+ "protocolDirLocalIndex",
1174
+ ],
1175
+ "description" :
1176
+ """Contains the High Capacity RMON extensions to the RMON-2
1177
+ protocolDistStatsTable. These objects will be created by the
1178
+ agent for all protocolDistStatsEntries associated with
1179
+ whichever protocolDistControlEntries it deems appropriate.
1180
+ (i.e., either all protocolDistStatsHighCapacityEntries
1181
+ associated with a particular protocolDistControlEntry will be
1182
+ created, or none of them will be.)""",
1183
+ }, # row
1184
+ "protocolDistStatsHighCapacityOverflowPkts" : {
1185
+ "nodetype" : "column",
1186
+ "moduleName" : "HC-RMON-MIB",
1187
+ "oid" : "1.3.6.1.2.1.16.12.3.1.1",
1188
+ "status" : "current",
1189
+ "syntax" : {
1190
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1191
+ },
1192
+ "access" : "readonly",
1193
+ "units" : "Packets",
1194
+ "description" :
1195
+ """The number of times the associated protocolDistStatsPkts
1196
+ counter has overflowed.""",
1197
+ }, # column
1198
+ "protocolDistStatsHighCapacityPkts" : {
1199
+ "nodetype" : "column",
1200
+ "moduleName" : "HC-RMON-MIB",
1201
+ "oid" : "1.3.6.1.2.1.16.12.3.1.2",
1202
+ "status" : "current",
1203
+ "syntax" : {
1204
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1205
+ },
1206
+ "access" : "readonly",
1207
+ "units" : "Packets",
1208
+ "description" :
1209
+ """The number of packets without errors received of this
1210
+ protocol type. Note that this is the number of link-layer
1211
+ packets, so if a single network-layer packet is fragmented
1212
+ into several link-layer frames, this counter is incremented
1213
+ several times.""",
1214
+ }, # column
1215
+ "protocolDistStatsHighCapacityOverflowOctets" : {
1216
+ "nodetype" : "column",
1217
+ "moduleName" : "HC-RMON-MIB",
1218
+ "oid" : "1.3.6.1.2.1.16.12.3.1.3",
1219
+ "status" : "current",
1220
+ "syntax" : {
1221
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1222
+ },
1223
+ "access" : "readonly",
1224
+ "units" : "Octets",
1225
+ "description" :
1226
+ """The number of times the associated protocolDistStatsOctets
1227
+ counter has overflowed.""",
1228
+ }, # column
1229
+ "protocolDistStatsHighCapacityOctets" : {
1230
+ "nodetype" : "column",
1231
+ "moduleName" : "HC-RMON-MIB",
1232
+ "oid" : "1.3.6.1.2.1.16.12.3.1.4",
1233
+ "status" : "current",
1234
+ "syntax" : {
1235
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1236
+ },
1237
+ "access" : "readonly",
1238
+ "units" : "Octets",
1239
+ "description" :
1240
+ """The number of octets in packets received of this protocol
1241
+ type since it was added to the protocolDistStatsTable
1242
+ (excluding framing bits but including FCS octets), except for
1243
+ those octets in packets that contained errors.
1244
+
1245
+ Note this doesn't count just those octets in the particular
1246
+ protocol frames, but includes the entire packet that contained
1247
+ the protocol.""",
1248
+ }, # column
1249
+ "nlHostHighCapacityTable" : {
1250
+ "nodetype" : "table",
1251
+ "moduleName" : "HC-RMON-MIB",
1252
+ "oid" : "1.3.6.1.2.1.16.14.3",
1253
+ "status" : "current",
1254
+ "description" :
1255
+ """Contains the High Capacity RMON extensions to the RMON-2
1256
+ nlHostTable.""",
1257
+ }, # table
1258
+ "nlHostHighCapacityEntry" : {
1259
+ "nodetype" : "row",
1260
+ "moduleName" : "HC-RMON-MIB",
1261
+ "oid" : "1.3.6.1.2.1.16.14.3.1",
1262
+ "status" : "current",
1263
+ "linkage" : [
1264
+ "hlHostControlIndex",
1265
+ "nlHostTimeMark",
1266
+ "protocolDirLocalIndex",
1267
+ "nlHostAddress",
1268
+ ],
1269
+ "description" :
1270
+ """Contains the High Capacity RMON extensions to the RMON-2
1271
+ nlHostEntry. These objects will be created by the agent
1272
+ for all nlHostEntries associated with whichever
1273
+ hlHostControlEntries it deems appropriate. (i.e., either all
1274
+ nlHostHighCapacityEntries associated with a particular
1275
+ hlHostControlEntry will be created, or none of them will
1276
+ be.)""",
1277
+ }, # row
1278
+ "nlHostHighCapacityInOverflowPkts" : {
1279
+ "nodetype" : "column",
1280
+ "moduleName" : "HC-RMON-MIB",
1281
+ "oid" : "1.3.6.1.2.1.16.14.3.1.1",
1282
+ "status" : "current",
1283
+ "syntax" : {
1284
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1285
+ },
1286
+ "access" : "readonly",
1287
+ "units" : "Packets",
1288
+ "description" :
1289
+ """The number of times the associated nlHostInPkts
1290
+ counter has overflowed.""",
1291
+ }, # column
1292
+ "nlHostHighCapacityInPkts" : {
1293
+ "nodetype" : "column",
1294
+ "moduleName" : "HC-RMON-MIB",
1295
+ "oid" : "1.3.6.1.2.1.16.14.3.1.2",
1296
+ "status" : "current",
1297
+ "syntax" : {
1298
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1299
+ },
1300
+ "access" : "readonly",
1301
+ "units" : "Packets",
1302
+ "description" :
1303
+ """The number of packets without errors transmitted to
1304
+ this address since it was added to the nlHostHighCapacityTable.
1305
+ Note that this is the number of link-layer packets, so if a
1306
+ single network-layer packet is fragmented into several
1307
+ link-layer frames, this counter is incremented several times.""",
1308
+ }, # column
1309
+ "nlHostHighCapacityOutOverflowPkts" : {
1310
+ "nodetype" : "column",
1311
+ "moduleName" : "HC-RMON-MIB",
1312
+ "oid" : "1.3.6.1.2.1.16.14.3.1.3",
1313
+ "status" : "current",
1314
+ "syntax" : {
1315
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1316
+ },
1317
+ "access" : "readonly",
1318
+ "units" : "Packets",
1319
+ "description" :
1320
+ """The number of times the associated nlHostOutPkts
1321
+ counter has overflowed.""",
1322
+ }, # column
1323
+ "nlHostHighCapacityOutPkts" : {
1324
+ "nodetype" : "column",
1325
+ "moduleName" : "HC-RMON-MIB",
1326
+ "oid" : "1.3.6.1.2.1.16.14.3.1.4",
1327
+ "status" : "current",
1328
+ "syntax" : {
1329
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1330
+ },
1331
+ "access" : "readonly",
1332
+ "units" : "Packets",
1333
+ "description" :
1334
+ """The number of packets without errors transmitted by
1335
+ this address since it was added to the nlHostHighCapacityTable.
1336
+ Note that this is the number of link-layer packets, so if a
1337
+ single network-layer packet is fragmented into several
1338
+ link-layer frames, this counter is incremented several times.""",
1339
+ }, # column
1340
+ "nlHostHighCapacityInOverflowOctets" : {
1341
+ "nodetype" : "column",
1342
+ "moduleName" : "HC-RMON-MIB",
1343
+ "oid" : "1.3.6.1.2.1.16.14.3.1.5",
1344
+ "status" : "current",
1345
+ "syntax" : {
1346
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1347
+ },
1348
+ "access" : "readonly",
1349
+ "units" : "Octets",
1350
+ "description" :
1351
+ """The number of times the associated nlHostInOctets
1352
+ counter has overflowed.""",
1353
+ }, # column
1354
+ "nlHostHighCapacityInOctets" : {
1355
+ "nodetype" : "column",
1356
+ "moduleName" : "HC-RMON-MIB",
1357
+ "oid" : "1.3.6.1.2.1.16.14.3.1.6",
1358
+ "status" : "current",
1359
+ "syntax" : {
1360
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1361
+ },
1362
+ "access" : "readonly",
1363
+ "units" : "Octets",
1364
+ "description" :
1365
+ """The number of octets transmitted to this address
1366
+ since it was added to the nlHostHighCapacityTable
1367
+ (excluding framing bits but including FCS octets),
1368
+ excluding those octets in packets that contained
1369
+ errors.
1370
+
1371
+ Note this doesn't count just those octets in the
1372
+ particular protocol frames, but includes the entire
1373
+ packet that contained the protocol.""",
1374
+ }, # column
1375
+ "nlHostHighCapacityOutOverflowOctets" : {
1376
+ "nodetype" : "column",
1377
+ "moduleName" : "HC-RMON-MIB",
1378
+ "oid" : "1.3.6.1.2.1.16.14.3.1.7",
1379
+ "status" : "current",
1380
+ "syntax" : {
1381
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1382
+ },
1383
+ "access" : "readonly",
1384
+ "units" : "Octets",
1385
+ "description" :
1386
+ """The number of times the associated nlHostOutOctets
1387
+ counter has overflowed.""",
1388
+ }, # column
1389
+ "nlHostHighCapacityOutOctets" : {
1390
+ "nodetype" : "column",
1391
+ "moduleName" : "HC-RMON-MIB",
1392
+ "oid" : "1.3.6.1.2.1.16.14.3.1.8",
1393
+ "status" : "current",
1394
+ "syntax" : {
1395
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1396
+ },
1397
+ "access" : "readonly",
1398
+ "units" : "Octets",
1399
+ "description" :
1400
+ """The number of octets transmitted by this address
1401
+ since it was added to the nlHostHighCapacityTable
1402
+ (excluding framing bits but including FCS octets),
1403
+ excluding those octets in packets that contained
1404
+ errors.
1405
+
1406
+ Note this doesn't count just those octets in the
1407
+ particular protocol frames, but includes the entire
1408
+ packet that contained the protocol.""",
1409
+ }, # column
1410
+ "nlMatrixSDHighCapacityTable" : {
1411
+ "nodetype" : "table",
1412
+ "moduleName" : "HC-RMON-MIB",
1413
+ "oid" : "1.3.6.1.2.1.16.15.6",
1414
+ "status" : "current",
1415
+ "description" :
1416
+ """Contains the High Capacity RMON extensions to the RMON-2
1417
+ nlMatrixTable.""",
1418
+ }, # table
1419
+ "nlMatrixSDHighCapacityEntry" : {
1420
+ "nodetype" : "row",
1421
+ "moduleName" : "HC-RMON-MIB",
1422
+ "oid" : "1.3.6.1.2.1.16.15.6.1",
1423
+ "status" : "current",
1424
+ "linkage" : [
1425
+ "hlMatrixControlIndex",
1426
+ "nlMatrixSDTimeMark",
1427
+ "protocolDirLocalIndex",
1428
+ "nlMatrixSDSourceAddress",
1429
+ "nlMatrixSDDestAddress",
1430
+ ],
1431
+ "description" :
1432
+ """Contains the High Capacity RMON extensions to the RMON-2
1433
+ nlMatrixEntry. These objects will be created by the agent
1434
+ for all nlMatrixSDEntries associated with whichever
1435
+ hlMatrixControlEntries it deems appropriate. (i.e., either all
1436
+ nlMatrixSDHighCapacityEntries associated with a particular
1437
+ hlMatrixControlEntry will be created, or none of them will
1438
+ be.)""",
1439
+ }, # row
1440
+ "nlMatrixSDHighCapacityOverflowPkts" : {
1441
+ "nodetype" : "column",
1442
+ "moduleName" : "HC-RMON-MIB",
1443
+ "oid" : "1.3.6.1.2.1.16.15.6.1.1",
1444
+ "status" : "current",
1445
+ "syntax" : {
1446
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1447
+ },
1448
+ "access" : "readonly",
1449
+ "units" : "Packets",
1450
+ "description" :
1451
+ """The number of times the associated nlMatrixSDPkts
1452
+ counter has overflowed.""",
1453
+ }, # column
1454
+ "nlMatrixSDHighCapacityPkts" : {
1455
+ "nodetype" : "column",
1456
+ "moduleName" : "HC-RMON-MIB",
1457
+ "oid" : "1.3.6.1.2.1.16.15.6.1.2",
1458
+ "status" : "current",
1459
+ "syntax" : {
1460
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1461
+ },
1462
+ "access" : "readonly",
1463
+ "units" : "Packets",
1464
+ "description" :
1465
+ """The number of packets without errors transmitted from the
1466
+ source address to the destination address since this entry was
1467
+ added to the nlMatrixSDHighCapacityTable. Note that this is
1468
+ the number of link-layer packets, so if a single network-layer
1469
+ packet is fragmented into several link-layer frames, this
1470
+ counter is incremented several times.""",
1471
+ }, # column
1472
+ "nlMatrixSDHighCapacityOverflowOctets" : {
1473
+ "nodetype" : "column",
1474
+ "moduleName" : "HC-RMON-MIB",
1475
+ "oid" : "1.3.6.1.2.1.16.15.6.1.3",
1476
+ "status" : "current",
1477
+ "syntax" : {
1478
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1479
+ },
1480
+ "access" : "readonly",
1481
+ "units" : "Octets",
1482
+ "description" :
1483
+ """The number of times the associated nlMatrixSDOctets
1484
+ counter has overflowed.""",
1485
+ }, # column
1486
+ "nlMatrixSDHighCapacityOctets" : {
1487
+ "nodetype" : "column",
1488
+ "moduleName" : "HC-RMON-MIB",
1489
+ "oid" : "1.3.6.1.2.1.16.15.6.1.4",
1490
+ "status" : "current",
1491
+ "syntax" : {
1492
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1493
+ },
1494
+ "access" : "readonly",
1495
+ "units" : "Octets",
1496
+ "description" :
1497
+ """The number of octets transmitted from the source address to
1498
+ the destination address since this entry was added to the
1499
+
1500
+
1501
+
1502
+ nlMatrixSDHighCapacityTable (excluding framing bits but
1503
+ including FCS octets), excluding those octets in packets that
1504
+ contained errors.
1505
+
1506
+ Note this doesn't count just those octets in the particular
1507
+ protocol frames, but includes the entire packet that contained
1508
+ the protocol.""",
1509
+ }, # column
1510
+ "nlMatrixDSHighCapacityTable" : {
1511
+ "nodetype" : "table",
1512
+ "moduleName" : "HC-RMON-MIB",
1513
+ "oid" : "1.3.6.1.2.1.16.15.7",
1514
+ "status" : "current",
1515
+ "description" :
1516
+ """Contains the High Capacity RMON extensions to the RMON-2
1517
+ nlMatrixDSTable.""",
1518
+ }, # table
1519
+ "nlMatrixDSHighCapacityEntry" : {
1520
+ "nodetype" : "row",
1521
+ "moduleName" : "HC-RMON-MIB",
1522
+ "oid" : "1.3.6.1.2.1.16.15.7.1",
1523
+ "status" : "current",
1524
+ "linkage" : [
1525
+ "hlMatrixControlIndex",
1526
+ "nlMatrixDSTimeMark",
1527
+ "protocolDirLocalIndex",
1528
+ "nlMatrixDSDestAddress",
1529
+ "nlMatrixDSSourceAddress",
1530
+ ],
1531
+ "description" :
1532
+ """Contains the High Capacity RMON extensions to the RMON-2
1533
+ nlMatrixDSEntry. These objects will be created by the agent
1534
+ for all nlMatrixDSEntries associated with whichever
1535
+ hlmatrixControlEntries it deems appropriate. (i.e., either all
1536
+ nlMatrixDSHighCapacityEntries associated with a particular
1537
+ hlMatrixControlEntry will be created, or none of them will
1538
+ be.)""",
1539
+ }, # row
1540
+ "nlMatrixDSHighCapacityOverflowPkts" : {
1541
+ "nodetype" : "column",
1542
+ "moduleName" : "HC-RMON-MIB",
1543
+ "oid" : "1.3.6.1.2.1.16.15.7.1.1",
1544
+ "status" : "current",
1545
+ "syntax" : {
1546
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1547
+ },
1548
+ "access" : "readonly",
1549
+ "units" : "Packets",
1550
+ "description" :
1551
+ """The number of times the associated nlMatrixDSPkts
1552
+ counter has overflowed.""",
1553
+ }, # column
1554
+ "nlMatrixDSHighCapacityPkts" : {
1555
+ "nodetype" : "column",
1556
+ "moduleName" : "HC-RMON-MIB",
1557
+ "oid" : "1.3.6.1.2.1.16.15.7.1.2",
1558
+ "status" : "current",
1559
+ "syntax" : {
1560
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1561
+ },
1562
+ "access" : "readonly",
1563
+ "units" : "Packets",
1564
+ "description" :
1565
+ """The number of packets without errors transmitted from the
1566
+ source address to the destination address since this entry was
1567
+ added to the nlMatrixDSHighCapacityTable. Note that this is
1568
+ the number of link-layer packets, so if a single network-layer
1569
+ packet is fragmented into several link-layer frames, this
1570
+ counter is incremented several times.""",
1571
+ }, # column
1572
+ "nlMatrixDSHighCapacityOverflowOctets" : {
1573
+ "nodetype" : "column",
1574
+ "moduleName" : "HC-RMON-MIB",
1575
+ "oid" : "1.3.6.1.2.1.16.15.7.1.3",
1576
+ "status" : "current",
1577
+ "syntax" : {
1578
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1579
+ },
1580
+ "access" : "readonly",
1581
+ "units" : "Octets",
1582
+ "description" :
1583
+ """The number of times the associated nlMatrixDSOctets
1584
+ counter has overflowed.""",
1585
+ }, # column
1586
+ "nlMatrixDSHighCapacityOctets" : {
1587
+ "nodetype" : "column",
1588
+ "moduleName" : "HC-RMON-MIB",
1589
+ "oid" : "1.3.6.1.2.1.16.15.7.1.4",
1590
+ "status" : "current",
1591
+ "syntax" : {
1592
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1593
+ },
1594
+ "access" : "readonly",
1595
+ "units" : "Octets",
1596
+ "description" :
1597
+ """The number of octets transmitted from the source address
1598
+ to the destination address since this entry was added to the
1599
+ nlMatrixDSHighCapacityTable (excluding framing bits but
1600
+ including FCS octets), excluding those octets in packets that
1601
+ contained errors.
1602
+
1603
+ Note this doesn't count just those octets in the particular
1604
+ protocol frames, but includes the entire packet that contained
1605
+ the protocol.""",
1606
+ }, # column
1607
+ "nlMatrixTopNHighCapacityTable" : {
1608
+ "nodetype" : "table",
1609
+ "moduleName" : "HC-RMON-MIB",
1610
+ "oid" : "1.3.6.1.2.1.16.15.8",
1611
+ "status" : "current",
1612
+ "description" :
1613
+ """Contains the High Capacity RMON extensions to the RMON-2
1614
+ nlMatrixTopNTable when nlMatrixTopNControlRateBase specifies
1615
+ a High Capacity TopN Report.""",
1616
+ }, # table
1617
+ "nlMatrixTopNHighCapacityEntry" : {
1618
+ "nodetype" : "row",
1619
+ "moduleName" : "HC-RMON-MIB",
1620
+ "oid" : "1.3.6.1.2.1.16.15.8.1",
1621
+ "status" : "current",
1622
+ "linkage" : [
1623
+ "nlMatrixTopNControlIndex",
1624
+ "nlMatrixTopNIndex",
1625
+ ],
1626
+ "description" :
1627
+ """Contains the High Capacity RMON extensions to the RMON-2
1628
+ nlMatrixTopNEntry when nlMatrixTopNControlRateBase specifies
1629
+ a High Capacity TopN Report. These objects will be created by
1630
+ the agent for all nlMatrixTopNEntries associated with whichever
1631
+ nlMatrixTopNControlEntries have a nlMatrixTopNControlRateBase
1632
+ that specify a high capacity report.""",
1633
+ }, # row
1634
+ "nlMatrixTopNHighCapacityProtocolDirLocalIndex" : {
1635
+ "nodetype" : "column",
1636
+ "moduleName" : "HC-RMON-MIB",
1637
+ "oid" : "1.3.6.1.2.1.16.15.8.1.1",
1638
+ "status" : "current",
1639
+ "syntax" : {
1640
+ "type" : {
1641
+ "basetype" : "Integer32",
1642
+ "ranges" : [
1643
+ {
1644
+ "min" : "1",
1645
+ "max" : "2147483647"
1646
+ },
1647
+ ],
1648
+ "range" : {
1649
+ "min" : "1",
1650
+ "max" : "2147483647"
1651
+ },
1652
+ },
1653
+ },
1654
+ "access" : "readonly",
1655
+ "description" :
1656
+ """The protocolDirLocalIndex of the network layer protocol of
1657
+
1658
+
1659
+
1660
+ this entry's network address.""",
1661
+ }, # column
1662
+ "nlMatrixTopNHighCapacitySourceAddress" : {
1663
+ "nodetype" : "column",
1664
+ "moduleName" : "HC-RMON-MIB",
1665
+ "oid" : "1.3.6.1.2.1.16.15.8.1.2",
1666
+ "status" : "current",
1667
+ "syntax" : {
1668
+ "type" : { "module" :"", "name" : "OctetString"},
1669
+ },
1670
+ "access" : "readonly",
1671
+ "description" :
1672
+ """The network layer address of the source host in this
1673
+ conversation.
1674
+
1675
+ This is represented as an octet string with
1676
+ specific semantics and length as identified
1677
+ by the associated nlMatrixTopNProtocolDirLocalIndex.
1678
+
1679
+ For example, if the protocolDirLocalIndex indicates an
1680
+ encapsulation of ip, this object is encoded as a length
1681
+ octet of 4, followed by the 4 octets of the ip address,
1682
+ in network byte order.""",
1683
+ }, # column
1684
+ "nlMatrixTopNHighCapacityDestAddress" : {
1685
+ "nodetype" : "column",
1686
+ "moduleName" : "HC-RMON-MIB",
1687
+ "oid" : "1.3.6.1.2.1.16.15.8.1.3",
1688
+ "status" : "current",
1689
+ "syntax" : {
1690
+ "type" : { "module" :"", "name" : "OctetString"},
1691
+ },
1692
+ "access" : "readonly",
1693
+ "description" :
1694
+ """The network layer address of the destination host in this
1695
+ conversation.
1696
+
1697
+ This is represented as an octet string with
1698
+ specific semantics and length as identified
1699
+ by the associated nlMatrixTopNProtocolDirLocalIndex.
1700
+
1701
+ For example, if the nlMatrixTopNProtocolDirLocalIndex
1702
+ indicates an encapsulation of ip, this object is encoded as a
1703
+ length octet of 4, followed by the 4 octets of the ip address,
1704
+ in network byte order.""",
1705
+ }, # column
1706
+ "nlMatrixTopNHighCapacityBasePktRate" : {
1707
+ "nodetype" : "column",
1708
+ "moduleName" : "HC-RMON-MIB",
1709
+ "oid" : "1.3.6.1.2.1.16.15.8.1.4",
1710
+ "status" : "current",
1711
+ "syntax" : {
1712
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1713
+ },
1714
+ "access" : "readonly",
1715
+ "units" : "Packets",
1716
+ "description" :
1717
+ """The number of packets seen from the source host
1718
+ to the destination host during this sampling interval,
1719
+ modulo 2^32, counted using the rules for counting the
1720
+
1721
+
1722
+
1723
+ nlMatrixSDPkts object.""",
1724
+ }, # column
1725
+ "nlMatrixTopNHighCapacityOverflowPktRate" : {
1726
+ "nodetype" : "column",
1727
+ "moduleName" : "HC-RMON-MIB",
1728
+ "oid" : "1.3.6.1.2.1.16.15.8.1.5",
1729
+ "status" : "current",
1730
+ "syntax" : {
1731
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1732
+ },
1733
+ "access" : "readonly",
1734
+ "units" : "Packets",
1735
+ "description" :
1736
+ """The number of packets seen from the source host
1737
+ to the destination host during this sampling interval,
1738
+ divided by 2^32, truncating fractions (i.e., X DIV 2^32),
1739
+ and counted using the rules for counting the
1740
+ nlMatrixSDPkts object.""",
1741
+ }, # column
1742
+ "nlMatrixTopNHighCapacityPktRate" : {
1743
+ "nodetype" : "column",
1744
+ "moduleName" : "HC-RMON-MIB",
1745
+ "oid" : "1.3.6.1.2.1.16.15.8.1.6",
1746
+ "status" : "current",
1747
+ "syntax" : {
1748
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
1749
+ },
1750
+ "access" : "readonly",
1751
+ "units" : "Packets",
1752
+ "description" :
1753
+ """The number of packets seen from the source host to the
1754
+ destination host during this sampling interval, counted
1755
+ using the rules for counting the nlMatrixSDPkts object.
1756
+ If the value of nlMatrixTopNControlRateBase is
1757
+ nlMatrixTopNHighCapacityPkts, this variable will be
1758
+ used to sort this report.""",
1759
+ }, # column
1760
+ "nlMatrixTopNHighCapacityReverseBasePktRate" : {
1761
+ "nodetype" : "column",
1762
+ "moduleName" : "HC-RMON-MIB",
1763
+ "oid" : "1.3.6.1.2.1.16.15.8.1.7",
1764
+ "status" : "current",
1765
+ "syntax" : {
1766
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1767
+ },
1768
+ "access" : "readonly",
1769
+ "units" : "Packets",
1770
+ "description" :
1771
+ """The number of packets seen from the destination host to the
1772
+ source host during this sampling interval, modulo 2^32, counted
1773
+ using the rules for counting the nlMatrixSDPkts object (note
1774
+ that the corresponding nlMatrixSDPkts object selected is the
1775
+ one whose source address is equal to nlMatrixTopNDestAddress
1776
+ and whose destination address is equal to
1777
+ nlMatrixTopNSourceAddress.)
1778
+
1779
+ Note that if the value of nlMatrixTopNControlRateBase is equal
1780
+ to nlMatrixTopNHighCapacityPkts, the sort of topN entries is
1781
+ based entirely on nlMatrixTopNHighCapacityPktRate, and not on
1782
+ the value of this object.""",
1783
+ }, # column
1784
+ "nlMatrixTopNHighCapacityReverseOverflowPktRate" : {
1785
+ "nodetype" : "column",
1786
+ "moduleName" : "HC-RMON-MIB",
1787
+ "oid" : "1.3.6.1.2.1.16.15.8.1.8",
1788
+ "status" : "current",
1789
+ "syntax" : {
1790
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1791
+ },
1792
+ "access" : "readonly",
1793
+ "units" : "Packets",
1794
+ "description" :
1795
+ """The number of packets seen from the destination host to the
1796
+ source host during this sampling interval, divided by 2^32,
1797
+ truncating fractions (i.e., X DIV 2^32), and counted
1798
+ using the rules for counting the nlMatrixSDPkts object (note
1799
+ that the corresponding nlMatrixSDPkts object selected is the
1800
+ one whose source address is equal to nlMatrixTopNDestAddress
1801
+ and whose destination address is equal to
1802
+ nlMatrixTopNSourceAddress.)
1803
+
1804
+ Note that if the value of nlMatrixTopNControlRateBase is equal
1805
+ to nlMatrixTopNHighCapacityPkts, the sort of topN entries is
1806
+ based entirely on nlMatrixTopNHighCapacityPktRate, and not on
1807
+ the value of this object.""",
1808
+ }, # column
1809
+ "nlMatrixTopNHighCapacityReversePktRate" : {
1810
+ "nodetype" : "column",
1811
+ "moduleName" : "HC-RMON-MIB",
1812
+ "oid" : "1.3.6.1.2.1.16.15.8.1.9",
1813
+ "status" : "current",
1814
+ "syntax" : {
1815
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
1816
+ },
1817
+ "access" : "readonly",
1818
+ "units" : "Packets",
1819
+ "description" :
1820
+ """The number of packets seen from the destination host to the
1821
+ source host during this sampling interval, counted
1822
+ using the rules for counting the nlMatrixSDPkts object (note
1823
+ that the corresponding nlMatrixSDPkts object selected is the
1824
+ one whose source address is equal to nlMatrixTopNDestAddress
1825
+ and whose destination address is equal to
1826
+ nlMatrixTopNSourceAddress.)
1827
+
1828
+ Note that if the value of nlMatrixTopNControlRateBase is equal
1829
+ to nlMatrixTopNHighCapacityPkts, the sort of topN entries is
1830
+ based entirely on nlMatrixTopNHighCapacityPktRate, and not on
1831
+ the value of this object.""",
1832
+ }, # column
1833
+ "nlMatrixTopNHighCapacityBaseOctetRate" : {
1834
+ "nodetype" : "column",
1835
+ "moduleName" : "HC-RMON-MIB",
1836
+ "oid" : "1.3.6.1.2.1.16.15.8.1.10",
1837
+ "status" : "current",
1838
+ "syntax" : {
1839
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1840
+ },
1841
+ "access" : "readonly",
1842
+ "units" : "Octets",
1843
+ "description" :
1844
+ """The number of octets seen from the source host to the
1845
+ destination host during this sampling interval, modulo 2^32,
1846
+ counted using the rules for counting the nlMatrixSDOctets
1847
+ object.""",
1848
+ }, # column
1849
+ "nlMatrixTopNHighCapacityOverflowOctetRate" : {
1850
+ "nodetype" : "column",
1851
+ "moduleName" : "HC-RMON-MIB",
1852
+ "oid" : "1.3.6.1.2.1.16.15.8.1.11",
1853
+ "status" : "current",
1854
+ "syntax" : {
1855
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1856
+ },
1857
+ "access" : "readonly",
1858
+ "units" : "Octets",
1859
+ "description" :
1860
+ """The number of octets seen from the source host
1861
+ to the destination host during this sampling interval,
1862
+ divided by 2^32, truncating fractions (i.e., X DIV 2^32),
1863
+ and counted using the rules for counting the
1864
+ nlMatrixSDOctets object.""",
1865
+ }, # column
1866
+ "nlMatrixTopNHighCapacityOctetRate" : {
1867
+ "nodetype" : "column",
1868
+ "moduleName" : "HC-RMON-MIB",
1869
+ "oid" : "1.3.6.1.2.1.16.15.8.1.12",
1870
+ "status" : "current",
1871
+ "syntax" : {
1872
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
1873
+ },
1874
+ "access" : "readonly",
1875
+ "units" : "Octets",
1876
+ "description" :
1877
+ """The number of octets seen from the source host
1878
+ to the destination host during this sampling interval,
1879
+ counted using the rules for counting the
1880
+ nlMatrixSDOctets object.
1881
+ If the value of nlMatrixTopNControlRateBase is
1882
+ nlMatrixTopNHighCapacityOctets, this variable will be used
1883
+ to sort this report.""",
1884
+ }, # column
1885
+ "nlMatrixTopNHighCapacityReverseBaseOctetRate" : {
1886
+ "nodetype" : "column",
1887
+ "moduleName" : "HC-RMON-MIB",
1888
+ "oid" : "1.3.6.1.2.1.16.15.8.1.13",
1889
+ "status" : "current",
1890
+ "syntax" : {
1891
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1892
+ },
1893
+ "access" : "readonly",
1894
+ "units" : "Octets",
1895
+ "description" :
1896
+ """The number of octets seen from the destination host to the
1897
+ source host during this sampling interval, modulo 2^32, counted
1898
+ using the rules for counting the nlMatrixSDOctets object (note
1899
+ that the corresponding nlMatrixSDOctets object selected is the
1900
+ one whose source address is equal to nlMatrixTopNDestAddress
1901
+ and whose destination address is equal to
1902
+ nlMatrixTopNSourceAddress.)
1903
+
1904
+
1905
+
1906
+ Note that if the value of nlMatrixTopNControlRateBase is equal
1907
+ to nlMatrixTopNHighCapacityOctets, the sort of topN entries is
1908
+ based entirely on nlMatrixTopNHighCapacityOctetRate, and not on
1909
+ the value of this object.""",
1910
+ }, # column
1911
+ "nlMatrixTopNHighCapacityReverseOverflowOctetRate" : {
1912
+ "nodetype" : "column",
1913
+ "moduleName" : "HC-RMON-MIB",
1914
+ "oid" : "1.3.6.1.2.1.16.15.8.1.14",
1915
+ "status" : "current",
1916
+ "syntax" : {
1917
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1918
+ },
1919
+ "access" : "readonly",
1920
+ "units" : "Octets",
1921
+ "description" :
1922
+ """The number of octets seen from the destination host to the
1923
+ source host during this sampling interval, divided by 2^32,
1924
+ truncating fractions (i.e., X DIV 2^32), and counted
1925
+ using the rules for counting the nlMatrixSDOctets object (note
1926
+ that the corresponding nlMatrixSDOctets object selected is the
1927
+ one whose source address is equal to nlMatrixTopNDestAddress
1928
+ and whose destination address is equal to
1929
+ nlMatrixTopNSourceAddress.)
1930
+
1931
+ Note that if the value of nlMatrixTopNControlRateBase is equal
1932
+ to nlMatrixTopNHighCapacityOctets, the sort of topN entries is
1933
+ based entirely on nlMatrixTopNHighCapacityOctetRate, and not on
1934
+ the value of this object.""",
1935
+ }, # column
1936
+ "nlMatrixTopNHighCapacityReverseOctetRate" : {
1937
+ "nodetype" : "column",
1938
+ "moduleName" : "HC-RMON-MIB",
1939
+ "oid" : "1.3.6.1.2.1.16.15.8.1.15",
1940
+ "status" : "current",
1941
+ "syntax" : {
1942
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
1943
+ },
1944
+ "access" : "readonly",
1945
+ "units" : "Octets",
1946
+ "description" :
1947
+ """The number of octets seen from the destination host to the
1948
+ source host during this sampling interval, counted
1949
+ using the rules for counting the nlMatrixSDOctets object (note
1950
+ that the corresponding nlMatrixSDOctets object selected is the
1951
+ one whose source address is equal to nlMatrixTopNDestAddress
1952
+ and whose destination address is equal to
1953
+ nlMatrixTopNSourceAddress.)
1954
+
1955
+ Note that if the value of nlMatrixTopNControlRateBase is equal
1956
+ to nlMatrixTopNHighCapacityOctets, the sort of topN entries is
1957
+ based entirely on nlMatrixTopNHighCapacityOctetRate, and not on
1958
+ the value of this object.""",
1959
+ }, # column
1960
+ "alHostHighCapacityTable" : {
1961
+ "nodetype" : "table",
1962
+ "moduleName" : "HC-RMON-MIB",
1963
+ "oid" : "1.3.6.1.2.1.16.16.2",
1964
+ "status" : "current",
1965
+ "description" :
1966
+ """Contains the High Capacity RMON extensions to the RMON-2
1967
+ alHostTable.""",
1968
+ }, # table
1969
+ "alHostHighCapacityEntry" : {
1970
+ "nodetype" : "row",
1971
+ "moduleName" : "HC-RMON-MIB",
1972
+ "oid" : "1.3.6.1.2.1.16.16.2.1",
1973
+ "status" : "current",
1974
+ "linkage" : [
1975
+ "hlHostControlIndex",
1976
+ "alHostTimeMark",
1977
+ "protocolDirLocalIndex",
1978
+ "nlHostAddress",
1979
+ "protocolDirLocalIndex",
1980
+ ],
1981
+ "description" :
1982
+ """Contains the High Capacity RMON extensions to the RMON-2
1983
+ alHostEntry. These objects will be created by the agent
1984
+ for all alHostEntries associated with whichever
1985
+ hlHostControlEntries it deems appropriate. (i.e., either all
1986
+ alHostHighCapacityEntries associated with a particular
1987
+ hlHostControlEntry will be created, or none of them will
1988
+ be.)""",
1989
+ }, # row
1990
+ "alHostHighCapacityInOverflowPkts" : {
1991
+ "nodetype" : "column",
1992
+ "moduleName" : "HC-RMON-MIB",
1993
+ "oid" : "1.3.6.1.2.1.16.16.2.1.1",
1994
+ "status" : "current",
1995
+ "syntax" : {
1996
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1997
+ },
1998
+ "access" : "readonly",
1999
+ "units" : "Packets",
2000
+ "description" :
2001
+ """The number of times the associated alHostInPkts
2002
+ counter has overflowed.""",
2003
+ }, # column
2004
+ "alHostHighCapacityInPkts" : {
2005
+ "nodetype" : "column",
2006
+ "moduleName" : "HC-RMON-MIB",
2007
+ "oid" : "1.3.6.1.2.1.16.16.2.1.2",
2008
+ "status" : "current",
2009
+ "syntax" : {
2010
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2011
+ },
2012
+ "access" : "readonly",
2013
+ "units" : "Packets",
2014
+ "description" :
2015
+ """The number of packets of this protocol type without errors
2016
+ transmitted to this address since it was added to the
2017
+ alHostHighCapacityTable. Note that this is the number of
2018
+ link-layer packets, so if a single network-layer packet
2019
+ is fragmented into several link-layer frames, this counter
2020
+ is incremented several times.""",
2021
+ }, # column
2022
+ "alHostHighCapacityOutOverflowPkts" : {
2023
+ "nodetype" : "column",
2024
+ "moduleName" : "HC-RMON-MIB",
2025
+ "oid" : "1.3.6.1.2.1.16.16.2.1.3",
2026
+ "status" : "current",
2027
+ "syntax" : {
2028
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2029
+ },
2030
+ "access" : "readonly",
2031
+ "units" : "Packets",
2032
+ "description" :
2033
+ """The number of times the associated alHostOutPkts
2034
+ counter has overflowed.""",
2035
+ }, # column
2036
+ "alHostHighCapacityOutPkts" : {
2037
+ "nodetype" : "column",
2038
+ "moduleName" : "HC-RMON-MIB",
2039
+ "oid" : "1.3.6.1.2.1.16.16.2.1.4",
2040
+ "status" : "current",
2041
+ "syntax" : {
2042
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2043
+ },
2044
+ "access" : "readonly",
2045
+ "units" : "Packets",
2046
+ "description" :
2047
+ """The number of packets of this protocol type without errors
2048
+ transmitted by this address since it was added to the
2049
+ alHostHighCapacityTable. Note that this is the number of
2050
+ link-layer packets, so if a single network-layer packet
2051
+ is fragmented into several link-layer frames, this counter
2052
+ is incremented several times.""",
2053
+ }, # column
2054
+ "alHostHighCapacityInOverflowOctets" : {
2055
+ "nodetype" : "column",
2056
+ "moduleName" : "HC-RMON-MIB",
2057
+ "oid" : "1.3.6.1.2.1.16.16.2.1.5",
2058
+ "status" : "current",
2059
+ "syntax" : {
2060
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2061
+ },
2062
+ "access" : "readonly",
2063
+ "units" : "Octets",
2064
+ "description" :
2065
+ """The number of times the associated alHostInOctets
2066
+ counter has overflowed.""",
2067
+ }, # column
2068
+ "alHostHighCapacityInOctets" : {
2069
+ "nodetype" : "column",
2070
+ "moduleName" : "HC-RMON-MIB",
2071
+ "oid" : "1.3.6.1.2.1.16.16.2.1.6",
2072
+ "status" : "current",
2073
+ "syntax" : {
2074
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2075
+ },
2076
+ "access" : "readonly",
2077
+ "units" : "Octets",
2078
+ "description" :
2079
+ """The number of octets transmitted to this address
2080
+ of this protocol type since it was added to the
2081
+ alHostHighCapacityTable (excluding framing bits but
2082
+ including FCS octets), excluding those octets in
2083
+ packets that contained errors.
2084
+
2085
+ Note this doesn't count just those octets in the particular
2086
+ protocol frames, but includes the entire packet that contained
2087
+ the protocol.""",
2088
+ }, # column
2089
+ "alHostHighCapacityOutOverflowOctets" : {
2090
+ "nodetype" : "column",
2091
+ "moduleName" : "HC-RMON-MIB",
2092
+ "oid" : "1.3.6.1.2.1.16.16.2.1.7",
2093
+ "status" : "current",
2094
+ "syntax" : {
2095
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2096
+ },
2097
+ "access" : "readonly",
2098
+ "units" : "Octets",
2099
+ "description" :
2100
+ """The number of times the associated alHostOutOctets
2101
+ counter has overflowed.""",
2102
+ }, # column
2103
+ "alHostHighCapacityOutOctets" : {
2104
+ "nodetype" : "column",
2105
+ "moduleName" : "HC-RMON-MIB",
2106
+ "oid" : "1.3.6.1.2.1.16.16.2.1.8",
2107
+ "status" : "current",
2108
+ "syntax" : {
2109
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2110
+ },
2111
+ "access" : "readonly",
2112
+ "units" : "Octets",
2113
+ "description" :
2114
+ """The number of octets transmitted by this address
2115
+ of this protocol type since it was added to the
2116
+ alHostHighCapacityTable (excluding framing bits but
2117
+ including FCS octets), excluding those octets in
2118
+ packets that contained errors.
2119
+
2120
+ Note this doesn't count just those octets in the particular
2121
+ protocol frames, but includes the entire packet that contained
2122
+ the protocol.""",
2123
+ }, # column
2124
+ "alMatrixSDHighCapacityTable" : {
2125
+ "nodetype" : "table",
2126
+ "moduleName" : "HC-RMON-MIB",
2127
+ "oid" : "1.3.6.1.2.1.16.17.5",
2128
+ "status" : "current",
2129
+ "description" :
2130
+ """Contains the High Capacity RMON extensions to the RMON-2
2131
+ alMatrixSDTable.""",
2132
+ }, # table
2133
+ "alMatrixSDHighCapacityEntry" : {
2134
+ "nodetype" : "row",
2135
+ "moduleName" : "HC-RMON-MIB",
2136
+ "oid" : "1.3.6.1.2.1.16.17.5.1",
2137
+ "status" : "current",
2138
+ "linkage" : [
2139
+ "hlMatrixControlIndex",
2140
+ "alMatrixSDTimeMark",
2141
+ "protocolDirLocalIndex",
2142
+ "nlMatrixSDSourceAddress",
2143
+ "nlMatrixSDDestAddress",
2144
+ "protocolDirLocalIndex",
2145
+ ],
2146
+ "description" :
2147
+ """Contains the High Capacity RMON extensions to the RMON-2
2148
+ alMatrixSDEntry. These objects will be created by the agent
2149
+ for all alMatrixSDEntries associated with whichever
2150
+ hlMatrixControlEntries it deems appropriate. (i.e., either all
2151
+ alMatrixSDHighCapacityEntries associated with a particular
2152
+ hlMatrixControlEntry will be created, or none of them will
2153
+ be.)""",
2154
+ }, # row
2155
+ "alMatrixSDHighCapacityOverflowPkts" : {
2156
+ "nodetype" : "column",
2157
+ "moduleName" : "HC-RMON-MIB",
2158
+ "oid" : "1.3.6.1.2.1.16.17.5.1.1",
2159
+ "status" : "current",
2160
+ "syntax" : {
2161
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2162
+ },
2163
+ "access" : "readonly",
2164
+ "units" : "Packets",
2165
+ "description" :
2166
+ """The number of times the associated alMatrixSDPkts
2167
+ counter has overflowed.""",
2168
+ }, # column
2169
+ "alMatrixSDHighCapacityPkts" : {
2170
+ "nodetype" : "column",
2171
+ "moduleName" : "HC-RMON-MIB",
2172
+ "oid" : "1.3.6.1.2.1.16.17.5.1.2",
2173
+ "status" : "current",
2174
+ "syntax" : {
2175
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2176
+ },
2177
+ "access" : "readonly",
2178
+ "units" : "Packets",
2179
+ "description" :
2180
+ """The number of good packets of this protocol type
2181
+ transmitted from the source address to the destination address
2182
+ since this entry was added to the alMatrixSDHighCapacityTable.
2183
+ Note that this is the number of link-layer packets, so if a
2184
+ single network-layer packet is fragmented into several
2185
+ link-layer frames, this counter is incremented several times.""",
2186
+ }, # column
2187
+ "alMatrixSDHighCapacityOverflowOctets" : {
2188
+ "nodetype" : "column",
2189
+ "moduleName" : "HC-RMON-MIB",
2190
+ "oid" : "1.3.6.1.2.1.16.17.5.1.3",
2191
+ "status" : "current",
2192
+ "syntax" : {
2193
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2194
+ },
2195
+ "access" : "readonly",
2196
+ "units" : "Octets",
2197
+ "description" :
2198
+ """The number of times the associated alMatrixSDOctets
2199
+ counter has overflowed.""",
2200
+ }, # column
2201
+ "alMatrixSDHighCapacityOctets" : {
2202
+ "nodetype" : "column",
2203
+ "moduleName" : "HC-RMON-MIB",
2204
+ "oid" : "1.3.6.1.2.1.16.17.5.1.4",
2205
+ "status" : "current",
2206
+ "syntax" : {
2207
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2208
+ },
2209
+ "access" : "readonly",
2210
+ "units" : "Octets",
2211
+ "description" :
2212
+ """The number of octets in good packets of this protocol type
2213
+ transmitted from the source address to the destination address
2214
+ since this entry was added to the alMatrixSDHighCapacityTable
2215
+ (excluding framing bits but including FCS octets).
2216
+
2217
+ Note this doesn't count just those octets in the particular
2218
+ protocol frames, but includes the entire packet that contained
2219
+ the protocol.""",
2220
+ }, # column
2221
+ "alMatrixDSHighCapacityTable" : {
2222
+ "nodetype" : "table",
2223
+ "moduleName" : "HC-RMON-MIB",
2224
+ "oid" : "1.3.6.1.2.1.16.17.6",
2225
+ "status" : "current",
2226
+ "description" :
2227
+ """Contains the High Capacity RMON extensions to the RMON-2
2228
+ alMatrixDSTable.""",
2229
+ }, # table
2230
+ "alMatrixDSHighCapacityEntry" : {
2231
+ "nodetype" : "row",
2232
+ "moduleName" : "HC-RMON-MIB",
2233
+ "oid" : "1.3.6.1.2.1.16.17.6.1",
2234
+ "status" : "current",
2235
+ "linkage" : [
2236
+ "hlMatrixControlIndex",
2237
+ "alMatrixDSTimeMark",
2238
+ "protocolDirLocalIndex",
2239
+ "nlMatrixDSDestAddress",
2240
+ "nlMatrixDSSourceAddress",
2241
+ "protocolDirLocalIndex",
2242
+ ],
2243
+ "description" :
2244
+ """Contains the High Capacity RMON extensions to the RMON-2
2245
+ alMatrixSDTable. These objects will be created by the agent
2246
+ for all alMatrixDSEntries associated with whichever
2247
+ hlMatrixControlEntries it deems appropriate. (i.e., either all
2248
+ alMatrixDSHighCapacityEntries associated with a particular
2249
+ hlMatrixControlEntry will be created, or none of them will
2250
+ be.)""",
2251
+ }, # row
2252
+ "alMatrixDSHighCapacityOverflowPkts" : {
2253
+ "nodetype" : "column",
2254
+ "moduleName" : "HC-RMON-MIB",
2255
+ "oid" : "1.3.6.1.2.1.16.17.6.1.1",
2256
+ "status" : "current",
2257
+ "syntax" : {
2258
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2259
+ },
2260
+ "access" : "readonly",
2261
+ "units" : "Packets",
2262
+ "description" :
2263
+ """The number of times the associated alMatrixDSPkts
2264
+ counter has overflowed.""",
2265
+ }, # column
2266
+ "alMatrixDSHighCapacityPkts" : {
2267
+ "nodetype" : "column",
2268
+ "moduleName" : "HC-RMON-MIB",
2269
+ "oid" : "1.3.6.1.2.1.16.17.6.1.2",
2270
+ "status" : "current",
2271
+ "syntax" : {
2272
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2273
+ },
2274
+ "access" : "readonly",
2275
+ "units" : "Packets",
2276
+ "description" :
2277
+ """The number of good packets of this protocol type
2278
+ transmitted from the source address to the destination address
2279
+ since this entry was added to the alMatrixDSHighCapacityTable.
2280
+ Note that this is the number of link-layer packets, so if a
2281
+ single network-layer packet is fragmented into several
2282
+ link-layer frames, this counter is incremented several times.""",
2283
+ }, # column
2284
+ "alMatrixDSHighCapacityOverflowOctets" : {
2285
+ "nodetype" : "column",
2286
+ "moduleName" : "HC-RMON-MIB",
2287
+ "oid" : "1.3.6.1.2.1.16.17.6.1.3",
2288
+ "status" : "current",
2289
+ "syntax" : {
2290
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
2291
+ },
2292
+ "access" : "readonly",
2293
+ "units" : "Octets",
2294
+ "description" :
2295
+ """The number of times the associated alMatrixDSOctets
2296
+ counter has overflowed.""",
2297
+ }, # column
2298
+ "alMatrixDSHighCapacityOctets" : {
2299
+ "nodetype" : "column",
2300
+ "moduleName" : "HC-RMON-MIB",
2301
+ "oid" : "1.3.6.1.2.1.16.17.6.1.4",
2302
+ "status" : "current",
2303
+ "syntax" : {
2304
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
2305
+ },
2306
+ "access" : "readonly",
2307
+ "units" : "Octets",
2308
+ "description" :
2309
+ """The number of octets in good packets of this protocol type
2310
+ transmitted from the source address to the destination address
2311
+ since this entry was added to the alMatrixDSHighCapacityTable
2312
+ (excluding framing bits but including FCS octets).
2313
+
2314
+ Note this doesn't count just those octets in the particular
2315
+ protocol frames, but includes the entire packet that contained
2316
+ the protocol.""",
2317
+ }, # column
2318
+ "alMatrixTopNHighCapacityTable" : {
2319
+ "nodetype" : "table",
2320
+ "moduleName" : "HC-RMON-MIB",
2321
+ "oid" : "1.3.6.1.2.1.16.17.7",
2322
+ "status" : "current",
2323
+ "description" :
2324
+ """Contains the High Capacity RMON extensions to the RMON-2
2325
+ alMatrixTopNTable when alMatrixTopNControlRateBase specifies
2326
+ a High Capacity TopN Report.""",
2327
+ }, # table
2328
+ "alMatrixTopNHighCapacityEntry" : {
2329
+ "nodetype" : "row",
2330
+ "moduleName" : "HC-RMON-MIB",
2331
+ "oid" : "1.3.6.1.2.1.16.17.7.1",
2332
+ "status" : "current",
2333
+ "linkage" : [
2334
+ "alMatrixTopNControlIndex",
2335
+ "alMatrixTopNIndex",
2336
+ ],
2337
+ "description" :
2338
+ """Contains the High Capacity RMON extensions to the RMON-2
2339
+ alMatrixTopNEntry when alMatrixTopNControlRateBase specifies
2340
+ a High Capacity TopN Report. These objects will be created by
2341
+ the agent for all alMatrixTopNEntries associated with whichever
2342
+ alMatrixTopNControlEntries have a alMatrixTopNControlRateBase
2343
+ that specify a high capacity report.""",
2344
+ }, # row
2345
+ "alMatrixTopNHighCapacityProtocolDirLocalIndex" : {
2346
+ "nodetype" : "column",
2347
+ "moduleName" : "HC-RMON-MIB",
2348
+ "oid" : "1.3.6.1.2.1.16.17.7.1.1",
2349
+ "status" : "current",
2350
+ "syntax" : {
2351
+ "type" : {
2352
+ "basetype" : "Integer32",
2353
+ "ranges" : [
2354
+ {
2355
+ "min" : "1",
2356
+ "max" : "2147483647"
2357
+ },
2358
+ ],
2359
+ "range" : {
2360
+ "min" : "1",
2361
+ "max" : "2147483647"
2362
+ },
2363
+ },
2364
+ },
2365
+ "access" : "readonly",
2366
+ "description" :
2367
+ """The protocolDirLocalIndex of the network layer protocol of
2368
+ this entry's network address.""",
2369
+ }, # column
2370
+ "alMatrixTopNHighCapacitySourceAddress" : {
2371
+ "nodetype" : "column",
2372
+ "moduleName" : "HC-RMON-MIB",
2373
+ "oid" : "1.3.6.1.2.1.16.17.7.1.2",
2374
+ "status" : "current",
2375
+ "syntax" : {
2376
+ "type" : { "module" :"", "name" : "OctetString"},
2377
+ },
2378
+ "access" : "readonly",
2379
+ "description" :
2380
+ """The network layer address of the source host in this
2381
+ conversation.
2382
+
2383
+ This is represented as an octet string with
2384
+ specific semantics and length as identified
2385
+ by the associated alMatrixTopNProtocolDirLocalIndex.
2386
+
2387
+ For example, if the alMatrixTopNProtocolDirLocalIndex
2388
+ indicates an encapsulation of ip, this object is encoded as a
2389
+ length octet of 4, followed by the 4 octets of the ip address,
2390
+ in network byte order.""",
2391
+ }, # column
2392
+ "alMatrixTopNHighCapacityDestAddress" : {
2393
+ "nodetype" : "column",
2394
+ "moduleName" : "HC-RMON-MIB",
2395
+ "oid" : "1.3.6.1.2.1.16.17.7.1.3",
2396
+ "status" : "current",
2397
+ "syntax" : {
2398
+ "type" : { "module" :"", "name" : "OctetString"},
2399
+ },
2400
+ "access" : "readonly",
2401
+ "description" :
2402
+ """The network layer address of the destination host in this
2403
+ conversation.
2404
+
2405
+ This is represented as an octet string with
2406
+ specific semantics and length as identified
2407
+ by the associated alMatrixTopNProtocolDirLocalIndex.
2408
+
2409
+ For example, if the alMatrixTopNProtocolDirLocalIndex
2410
+ indicates an encapsulation of ip, this object is encoded as a
2411
+ length octet of 4, followed by the 4 octets of the ip address,
2412
+ in network byte order.""",
2413
+ }, # column
2414
+ "alMatrixTopNHighCapacityAppProtocolDirLocalIndex" : {
2415
+ "nodetype" : "column",
2416
+ "moduleName" : "HC-RMON-MIB",
2417
+ "oid" : "1.3.6.1.2.1.16.17.7.1.4",
2418
+ "status" : "current",
2419
+ "syntax" : {
2420
+ "type" : { "module" :"", "name" : "Integer32"},
2421
+ },
2422
+ "access" : "readonly",
2423
+ "description" :
2424
+ """The type of the protocol counted by this entry.""",
2425
+ }, # column
2426
+ "alMatrixTopNHighCapacityBasePktRate" : {
2427
+ "nodetype" : "column",
2428
+ "moduleName" : "HC-RMON-MIB",
2429
+ "oid" : "1.3.6.1.2.1.16.17.7.1.5",
2430
+ "status" : "current",
2431
+ "syntax" : {
2432
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2433
+ },
2434
+ "access" : "readonly",
2435
+ "units" : "Packets",
2436
+ "description" :
2437
+ """The number of packets seen of this protocol from the
2438
+ source host to the destination host during this sampling
2439
+ interval, modulo 2^32, counted using the rules for counting
2440
+ the alMatrixSDPkts object.""",
2441
+ }, # column
2442
+ "alMatrixTopNHighCapacityOverflowPktRate" : {
2443
+ "nodetype" : "column",
2444
+ "moduleName" : "HC-RMON-MIB",
2445
+ "oid" : "1.3.6.1.2.1.16.17.7.1.6",
2446
+ "status" : "current",
2447
+ "syntax" : {
2448
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2449
+ },
2450
+ "access" : "readonly",
2451
+ "units" : "Packets",
2452
+ "description" :
2453
+ """The number of packets seen of this protocol from the source
2454
+ host to the destination host during this sampling interval,
2455
+ divided by 2^32, truncating fractions (i.e., X DIV 2^32),
2456
+ and counted using the rules for counting the
2457
+ alMatrixSDPkts object.""",
2458
+ }, # column
2459
+ "alMatrixTopNHighCapacityPktRate" : {
2460
+ "nodetype" : "column",
2461
+ "moduleName" : "HC-RMON-MIB",
2462
+ "oid" : "1.3.6.1.2.1.16.17.7.1.7",
2463
+ "status" : "current",
2464
+ "syntax" : {
2465
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
2466
+ },
2467
+ "access" : "readonly",
2468
+ "units" : "Packets",
2469
+ "description" :
2470
+ """The number of packets seen of this protocol from the source
2471
+ host to the destination host during this sampling interval,
2472
+ counted using the rules for counting the
2473
+ alMatrixSDPkts object.
2474
+ If the value of alMatrixTopNControlRateBase is
2475
+ alMatrixTopNTerminalsPkts, alMatrixTopNAllPkts,
2476
+ alMatrixTopNTerminalsHighCapacityPkts, or
2477
+ alMatrixTopNAllHighCapacityPkts, this variable will be used
2478
+ to sort this report.""",
2479
+ }, # column
2480
+ "alMatrixTopNHighCapacityReverseBasePktRate" : {
2481
+ "nodetype" : "column",
2482
+ "moduleName" : "HC-RMON-MIB",
2483
+ "oid" : "1.3.6.1.2.1.16.17.7.1.8",
2484
+ "status" : "current",
2485
+ "syntax" : {
2486
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2487
+ },
2488
+ "access" : "readonly",
2489
+ "units" : "Packets",
2490
+ "description" :
2491
+ """The number of packets seen of this protocol from the
2492
+ destination host to the source host during this sampling
2493
+ interval, modulo 2^32, counted using the rules for counting
2494
+ the alMatrixSDPkts object (note that the corresponding
2495
+ alMatrixSDPkts object selected is the one whose source address
2496
+ is equal to alMatrixTopNDestAddress and whose destination
2497
+ address is equal to alMatrixTopNSourceAddress.)""",
2498
+ }, # column
2499
+ "alMatrixTopNHighCapacityReverseOverflowPktRate" : {
2500
+ "nodetype" : "column",
2501
+ "moduleName" : "HC-RMON-MIB",
2502
+ "oid" : "1.3.6.1.2.1.16.17.7.1.9",
2503
+ "status" : "current",
2504
+ "syntax" : {
2505
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2506
+ },
2507
+ "access" : "readonly",
2508
+ "units" : "Packets",
2509
+ "description" :
2510
+ """The number of packets seen of this protocol from the
2511
+ destination host to the source host during this sampling
2512
+ interval, divided by 2^32, truncating fractions
2513
+ (i.e., X DIV 2^32), and counted using the rules for
2514
+ counting the alMatrixSDPkts object (note that the
2515
+ corresponding alMatrixSDPkts object selected is the
2516
+ one whose source address is equal to alMatrixTopNDestAddress
2517
+ and whose destination address is equal to
2518
+ alMatrixTopNSourceAddress.)""",
2519
+ }, # column
2520
+ "alMatrixTopNHighCapacityReversePktRate" : {
2521
+ "nodetype" : "column",
2522
+ "moduleName" : "HC-RMON-MIB",
2523
+ "oid" : "1.3.6.1.2.1.16.17.7.1.10",
2524
+ "status" : "current",
2525
+ "syntax" : {
2526
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
2527
+ },
2528
+ "access" : "readonly",
2529
+ "units" : "Packets",
2530
+ "description" :
2531
+ """The number of packets seen of this protocol from the
2532
+ destination host to the source host during this sampling
2533
+ interval, counted using the rules for counting the
2534
+ alMatrixSDPkts object (note that the corresponding
2535
+ alMatrixSDPkts object selected is the one whose source address
2536
+ is equal to alMatrixTopNDestAddress and whose destination
2537
+ address is equal to alMatrixTopNSourceAddress.)""",
2538
+ }, # column
2539
+ "alMatrixTopNHighCapacityBaseOctetRate" : {
2540
+ "nodetype" : "column",
2541
+ "moduleName" : "HC-RMON-MIB",
2542
+ "oid" : "1.3.6.1.2.1.16.17.7.1.11",
2543
+ "status" : "current",
2544
+ "syntax" : {
2545
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2546
+ },
2547
+ "access" : "readonly",
2548
+ "units" : "Octets",
2549
+ "description" :
2550
+ """The number of octets seen of this protocol from the source host
2551
+ to the destination host during this sampling interval,
2552
+ modulo 2^32, counted using the rules for counting the
2553
+ alMatrixSDOctets object.""",
2554
+ }, # column
2555
+ "alMatrixTopNHighCapacityOverflowOctetRate" : {
2556
+ "nodetype" : "column",
2557
+ "moduleName" : "HC-RMON-MIB",
2558
+ "oid" : "1.3.6.1.2.1.16.17.7.1.12",
2559
+ "status" : "current",
2560
+ "syntax" : {
2561
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2562
+ },
2563
+ "access" : "readonly",
2564
+ "units" : "Octets",
2565
+ "description" :
2566
+ """The number of octets seen of this protocol from the source host
2567
+ to the destination host during this sampling interval,
2568
+ divided by 2^32, truncating fractions (i.e., X DIV 2^32),
2569
+ and counted using the rules for counting the
2570
+ alMatrixSDOctets object.""",
2571
+ }, # column
2572
+ "alMatrixTopNHighCapacityOctetRate" : {
2573
+ "nodetype" : "column",
2574
+ "moduleName" : "HC-RMON-MIB",
2575
+ "oid" : "1.3.6.1.2.1.16.17.7.1.13",
2576
+ "status" : "current",
2577
+ "syntax" : {
2578
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
2579
+ },
2580
+ "access" : "readonly",
2581
+ "units" : "Octets",
2582
+ "description" :
2583
+ """The number of octets seen of this protocol from the source host
2584
+ to the destination host during this sampling interval,
2585
+
2586
+
2587
+
2588
+ counted using the rules for counting the
2589
+ alMatrixSDOctets object.
2590
+ If the value of alMatrixTopNControlRateBase is
2591
+ alMatrixTopNTerminalsOctets, alMatrixTopNAllOctets,
2592
+ alMatrixTopNTerminalsHighCapacityOctets, or
2593
+ alMatrixTopNAllHighCapacityOctets, this variable will be used
2594
+ to sort this report.""",
2595
+ }, # column
2596
+ "alMatrixTopNHighCapacityReverseBaseOctetRate" : {
2597
+ "nodetype" : "column",
2598
+ "moduleName" : "HC-RMON-MIB",
2599
+ "oid" : "1.3.6.1.2.1.16.17.7.1.14",
2600
+ "status" : "current",
2601
+ "syntax" : {
2602
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2603
+ },
2604
+ "access" : "readonly",
2605
+ "units" : "Octets",
2606
+ "description" :
2607
+ """The number of octets seen of this protocol from the
2608
+ destination host to the source host during this sampling
2609
+ interval, modulo 2^32, counted using the rules for counting
2610
+ the alMatrixSDOctets object (note that the corresponding
2611
+ alMatrixSDOctets object selected is the one whose source
2612
+ address is equal to alMatrixTopNDestAddress and whose
2613
+ destination address is equal to alMatrixTopNSourceAddress.)""",
2614
+ }, # column
2615
+ "alMatrixTopNHighCapacityReverseOverflowOctetRate" : {
2616
+ "nodetype" : "column",
2617
+ "moduleName" : "HC-RMON-MIB",
2618
+ "oid" : "1.3.6.1.2.1.16.17.7.1.15",
2619
+ "status" : "current",
2620
+ "syntax" : {
2621
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2622
+ },
2623
+ "access" : "readonly",
2624
+ "units" : "Octets",
2625
+ "description" :
2626
+ """The number of octets seen of this protocol from the
2627
+ destination host to the source host during this sampling
2628
+ interval, divided by 2^32, truncating fractions (i.e., X DIV
2629
+ 2^32), and counted using the rules for counting the
2630
+ alMatrixSDOctets object (note that the corresponding
2631
+ alMatrixSDOctets object selected is the one whose source
2632
+ address is equal to alMatrixTopNDestAddress and whose
2633
+ destination address is equal to alMatrixTopNSourceAddress.)""",
2634
+ }, # column
2635
+ "alMatrixTopNHighCapacityReverseOctetRate" : {
2636
+ "nodetype" : "column",
2637
+ "moduleName" : "HC-RMON-MIB",
2638
+ "oid" : "1.3.6.1.2.1.16.17.7.1.16",
2639
+ "status" : "current",
2640
+ "syntax" : {
2641
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
2642
+ },
2643
+ "access" : "readonly",
2644
+ "units" : "Octets",
2645
+ "description" :
2646
+ """The number of octets seen of this protocol from the
2647
+ destination host to the source host during this sampling
2648
+
2649
+
2650
+
2651
+ interval, counted using the rules for counting the
2652
+ alMatrixSDOctets object (note that the corresponding
2653
+ alMatrixSDOctets object selected is the one whose source
2654
+ address is equal to alMatrixTopNDestAddress and whose
2655
+ destination address is equal to alMatrixTopNSourceAddress.)""",
2656
+ }, # column
2657
+ "usrHistoryHighCapacityTable" : {
2658
+ "nodetype" : "table",
2659
+ "moduleName" : "HC-RMON-MIB",
2660
+ "oid" : "1.3.6.1.2.1.16.18.4",
2661
+ "status" : "current",
2662
+ "description" :
2663
+ """Contains the High Capacity RMON extensions to the RMON-2
2664
+ usrHistoryTable.""",
2665
+ }, # table
2666
+ "usrHistoryHighCapacityEntry" : {
2667
+ "nodetype" : "row",
2668
+ "moduleName" : "HC-RMON-MIB",
2669
+ "oid" : "1.3.6.1.2.1.16.18.4.1",
2670
+ "status" : "current",
2671
+ "linkage" : [
2672
+ "usrHistoryControlIndex",
2673
+ "usrHistorySampleIndex",
2674
+ "usrHistoryObjectIndex",
2675
+ ],
2676
+ "description" :
2677
+ """Contains the High Capacity RMON extensions to the RMON-2
2678
+ usrHistoryEntry. These objects will be created by the agent
2679
+ for all usrHistoryEntries associated with whichever
2680
+ usrHistoryControlEntries it deems appropriate. (i.e., either all
2681
+ usrHistoryHighCapacityEntries associated with a particular
2682
+ usrHistoryControlEntry will be created, or none of them will
2683
+ be.)""",
2684
+ }, # row
2685
+ "usrHistoryHighCapacityOverflowAbsValue" : {
2686
+ "nodetype" : "column",
2687
+ "moduleName" : "HC-RMON-MIB",
2688
+ "oid" : "1.3.6.1.2.1.16.18.4.1.1",
2689
+ "status" : "current",
2690
+ "syntax" : {
2691
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2692
+ },
2693
+ "access" : "readonly",
2694
+ "description" :
2695
+ """The absolute value (i.e. unsigned value) of the
2696
+ user-specified statistic during the last sampling period,
2697
+ divided by 2^32, truncating fractions (i.e., X DIV 2^32).
2698
+ The value during the current sampling period is not made
2699
+ available until the period is completed.
2700
+
2701
+
2702
+
2703
+
2704
+ To obtain the true value for this sampling interval, the
2705
+ associated instance of usrHistoryValStatus should be checked,
2706
+ and usrHistoryAbsValue adjusted as necessary.
2707
+
2708
+ If the MIB instance could not be accessed during the sampling
2709
+ interval, then this object will have a value of zero and the
2710
+ associated instance of usrHistoryValStatus will be set to
2711
+ 'valueNotAvailable(1)'.""",
2712
+ }, # column
2713
+ "usrHistoryHighCapacityAbsValue" : {
2714
+ "nodetype" : "column",
2715
+ "moduleName" : "HC-RMON-MIB",
2716
+ "oid" : "1.3.6.1.2.1.16.18.4.1.2",
2717
+ "status" : "current",
2718
+ "syntax" : {
2719
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
2720
+ },
2721
+ "access" : "readonly",
2722
+ "description" :
2723
+ """The absolute value (i.e. unsigned value) of the
2724
+ user-specified statistic during the last sampling period. The
2725
+ value during the current sampling period is not made available
2726
+ until the period is completed.
2727
+
2728
+ To obtain the true value for this sampling interval, the
2729
+ associated instance of usrHistoryValStatus should be checked,
2730
+ and usrHistoryHighCapacityAbsValue adjusted as necessary.
2731
+
2732
+ If the MIB instance could not be accessed during the sampling
2733
+ interval, then this object will have a value of zero and the
2734
+ associated instance of usrHistoryValStatus will be set to
2735
+ 'valueNotAvailable(1)'.""",
2736
+ }, # column
2737
+ "hcRMONCapabilities" : {
2738
+ "nodetype" : "scalar",
2739
+ "moduleName" : "HC-RMON-MIB",
2740
+ "oid" : "1.3.6.1.2.1.16.19.16",
2741
+ "status" : "current",
2742
+ "syntax" : {
2743
+ "type" : {
2744
+ "basetype" : "Bits",
2745
+ "mediaIndependentGroup" : {
2746
+ "nodetype" : "namednumber",
2747
+ "number" : "0"
2748
+ },
2749
+ "etherStatsHighCapacityGroup" : {
2750
+ "nodetype" : "namednumber",
2751
+ "number" : "1"
2752
+ },
2753
+ "etherHistoryHighCapacityGroup" : {
2754
+ "nodetype" : "namednumber",
2755
+ "number" : "2"
2756
+ },
2757
+ "hostHighCapacityGroup" : {
2758
+ "nodetype" : "namednumber",
2759
+ "number" : "3"
2760
+ },
2761
+ "hostTopNHighCapacityGroup" : {
2762
+ "nodetype" : "namednumber",
2763
+ "number" : "4"
2764
+ },
2765
+ "matrixHighCapacityGroup" : {
2766
+ "nodetype" : "namednumber",
2767
+ "number" : "5"
2768
+ },
2769
+ "captureBufferHighCapacityGroup" : {
2770
+ "nodetype" : "namednumber",
2771
+ "number" : "6"
2772
+ },
2773
+ "protocolDistributionHighCapacityGroup" : {
2774
+ "nodetype" : "namednumber",
2775
+ "number" : "7"
2776
+ },
2777
+ "nlHostHighCapacityGroup" : {
2778
+ "nodetype" : "namednumber",
2779
+ "number" : "8"
2780
+ },
2781
+ "nlMatrixHighCapacityGroup" : {
2782
+ "nodetype" : "namednumber",
2783
+ "number" : "9"
2784
+ },
2785
+ "nlMatrixTopNHighCapacityGroup" : {
2786
+ "nodetype" : "namednumber",
2787
+ "number" : "10"
2788
+ },
2789
+ "alHostHighCapacityGroup" : {
2790
+ "nodetype" : "namednumber",
2791
+ "number" : "11"
2792
+ },
2793
+ "alMatrixHighCapacityGroup" : {
2794
+ "nodetype" : "namednumber",
2795
+ "number" : "12"
2796
+ },
2797
+ "alMatrixTopNHighCapacityGroup" : {
2798
+ "nodetype" : "namednumber",
2799
+ "number" : "13"
2800
+ },
2801
+ "usrHistoryHighCapacityGroup" : {
2802
+ "nodetype" : "namednumber",
2803
+ "number" : "14"
2804
+ },
2805
+ },
2806
+ },
2807
+ "access" : "readonly",
2808
+ "description" :
2809
+ """An indication of the High Capacity RMON MIB groups supported
2810
+ on at least one interface by this probe.""",
2811
+ }, # scalar
2812
+ "hcRMON" : {
2813
+ "nodetype" : "node",
2814
+ "moduleName" : "HC-RMON-MIB",
2815
+ "oid" : "1.3.6.1.2.1.16.20.5",
2816
+ "status" : "current",
2817
+ }, # node
2818
+ "hcRmonMIBCompliances" : {
2819
+ "nodetype" : "node",
2820
+ "moduleName" : "HC-RMON-MIB",
2821
+ "oid" : "1.3.6.1.2.1.16.20.6",
2822
+ }, # node
2823
+ "hcRmonMIBGroups" : {
2824
+ "nodetype" : "node",
2825
+ "moduleName" : "HC-RMON-MIB",
2826
+ "oid" : "1.3.6.1.2.1.16.20.7",
2827
+ }, # node
2828
+ "mediaIndependentStats" : {
2829
+ "nodetype" : "node",
2830
+ "moduleName" : "HC-RMON-MIB",
2831
+ "oid" : "1.3.6.1.2.1.16.21",
2832
+ }, # node
2833
+ "mediaIndependentTable" : {
2834
+ "nodetype" : "table",
2835
+ "moduleName" : "HC-RMON-MIB",
2836
+ "oid" : "1.3.6.1.2.1.16.21.1",
2837
+ "status" : "current",
2838
+ "description" :
2839
+ """Media independent statistics for promiscuous monitoring of
2840
+ any media.
2841
+
2842
+ The following table defines media independent statistics that
2843
+ provide information for full and/or half-duplex links as well
2844
+ as high capacity links.
2845
+
2846
+ For half-duplex links, or full-duplex-capable links operating
2847
+ in half-duplex mode, the mediaIndependentIn* objects shall be
2848
+ used and the mediaIndependentOut* objects shall not increment.
2849
+
2850
+ For full-duplex links, the mediaIndependentOut* objects shall
2851
+ be present and shall increment. Whenever possible, the probe
2852
+ should count packets moving away from the closest terminating
2853
+ equipment as output packets. Failing that, the probe should
2854
+ count packets moving away from the DTE as output packets.""",
2855
+ }, # table
2856
+ "mediaIndependentEntry" : {
2857
+ "nodetype" : "row",
2858
+ "moduleName" : "HC-RMON-MIB",
2859
+ "oid" : "1.3.6.1.2.1.16.21.1.1",
2860
+ "create" : "true",
2861
+ "status" : "current",
2862
+ "linkage" : [
2863
+ "mediaIndependentIndex",
2864
+ ],
2865
+ "description" :
2866
+ """Media independent statistics for promiscuous monitoring of
2867
+ any media.""",
2868
+ }, # row
2869
+ "mediaIndependentIndex" : {
2870
+ "nodetype" : "column",
2871
+ "moduleName" : "HC-RMON-MIB",
2872
+ "oid" : "1.3.6.1.2.1.16.21.1.1.1",
2873
+ "status" : "current",
2874
+ "syntax" : {
2875
+ "type" : {
2876
+ "basetype" : "Integer32",
2877
+ "ranges" : [
2878
+ {
2879
+ "min" : "1",
2880
+ "max" : "65535"
2881
+ },
2882
+ ],
2883
+ "range" : {
2884
+ "min" : "1",
2885
+ "max" : "65535"
2886
+ },
2887
+ },
2888
+ },
2889
+ "access" : "noaccess",
2890
+ "description" :
2891
+ """The value of this object uniquely identifies this
2892
+ mediaIndependent entry.""",
2893
+ }, # column
2894
+ "mediaIndependentDataSource" : {
2895
+ "nodetype" : "column",
2896
+ "moduleName" : "HC-RMON-MIB",
2897
+ "oid" : "1.3.6.1.2.1.16.21.1.1.2",
2898
+ "status" : "current",
2899
+ "syntax" : {
2900
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
2901
+ },
2902
+ "access" : "readwrite",
2903
+ "description" :
2904
+ """This object identifies the source of the data that
2905
+ this mediaIndependent entry is configured to analyze. This
2906
+ source can be any interface on this device.
2907
+ In order to identify a particular interface, this
2908
+ object shall identify the instance of the ifIndex
2909
+ object, defined in RFC 1213 and RFC 2233 [16,17], for
2910
+ the desired interface. For example, if an entry
2911
+ were to receive data from interface #1, this object
2912
+ would be set to ifIndex.1.
2913
+
2914
+ The statistics in this group reflect all packets
2915
+ on the local network segment attached to the
2916
+ identified interface.
2917
+
2918
+ An agent may or may not be able to tell if
2919
+ fundamental changes to the media of the interface
2920
+ have occurred and necessitate a deletion of
2921
+ this entry. For example, a hot-pluggable ethernet
2922
+ card could be pulled out and replaced by a
2923
+
2924
+
2925
+
2926
+ token-ring card. In such a case, if the agent has
2927
+ such knowledge of the change, it is recommended that
2928
+ it delete this entry.
2929
+
2930
+ This object may not be modified if the associated
2931
+ mediaIndependentStatus object is equal to active(1).""",
2932
+ }, # column
2933
+ "mediaIndependentDropEvents" : {
2934
+ "nodetype" : "column",
2935
+ "moduleName" : "HC-RMON-MIB",
2936
+ "oid" : "1.3.6.1.2.1.16.21.1.1.3",
2937
+ "status" : "current",
2938
+ "syntax" : {
2939
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2940
+ },
2941
+ "access" : "readonly",
2942
+ "units" : "Events",
2943
+ "description" :
2944
+ """The total number of events in which packets
2945
+ were dropped by the probe due to lack of resources.
2946
+ Note that this number is not necessarily the number of
2947
+ packets dropped; it is just the number of times this
2948
+ condition has been detected.""",
2949
+ }, # column
2950
+ "mediaIndependentDroppedFrames" : {
2951
+ "nodetype" : "column",
2952
+ "moduleName" : "HC-RMON-MIB",
2953
+ "oid" : "1.3.6.1.2.1.16.21.1.1.4",
2954
+ "status" : "current",
2955
+ "syntax" : {
2956
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2957
+ },
2958
+ "access" : "readonly",
2959
+ "units" : "Packets",
2960
+ "description" :
2961
+ """The total number of frames which were received by the probe
2962
+ and therefore not accounted for in the
2963
+ mediaIndependentDropEvents, but for which the probe chose not
2964
+ to count for this entry for whatever reason. Most often, this
2965
+ event occurs when the probe is out of some resources and
2966
+ decides to shed load from this collection.
2967
+
2968
+ This count does not include packets that were not counted
2969
+ because they had MAC-layer errors.
2970
+
2971
+ Note that, unlike the dropEvents counter, this number is the
2972
+ exact number of frames dropped.""",
2973
+ }, # column
2974
+ "mediaIndependentInPkts" : {
2975
+ "nodetype" : "column",
2976
+ "moduleName" : "HC-RMON-MIB",
2977
+ "oid" : "1.3.6.1.2.1.16.21.1.1.5",
2978
+ "status" : "current",
2979
+ "syntax" : {
2980
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2981
+ },
2982
+ "access" : "readonly",
2983
+ "units" : "Packets",
2984
+ "description" :
2985
+ """The total number of packets (including bad packets,
2986
+
2987
+
2988
+
2989
+ broadcast packets, and multicast packets) received
2990
+ on a half-duplex link or on the inbound connection of a
2991
+ full-duplex link.""",
2992
+ }, # column
2993
+ "mediaIndependentInOverflowPkts" : {
2994
+ "nodetype" : "column",
2995
+ "moduleName" : "HC-RMON-MIB",
2996
+ "oid" : "1.3.6.1.2.1.16.21.1.1.6",
2997
+ "status" : "current",
2998
+ "syntax" : {
2999
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3000
+ },
3001
+ "access" : "readonly",
3002
+ "units" : "Packets",
3003
+ "description" :
3004
+ """The number of times the associated
3005
+ mediaIndependentInPkts counter has overflowed.""",
3006
+ }, # column
3007
+ "mediaIndependentInHighCapacityPkts" : {
3008
+ "nodetype" : "column",
3009
+ "moduleName" : "HC-RMON-MIB",
3010
+ "oid" : "1.3.6.1.2.1.16.21.1.1.7",
3011
+ "status" : "current",
3012
+ "syntax" : {
3013
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
3014
+ },
3015
+ "access" : "readonly",
3016
+ "units" : "Packets",
3017
+ "description" :
3018
+ """The total number of packets (including bad packets,
3019
+ broadcast packets, and multicast packets) received
3020
+ on a half-duplex link or on the inbound connection of a
3021
+ full-duplex link.""",
3022
+ }, # column
3023
+ "mediaIndependentOutPkts" : {
3024
+ "nodetype" : "column",
3025
+ "moduleName" : "HC-RMON-MIB",
3026
+ "oid" : "1.3.6.1.2.1.16.21.1.1.8",
3027
+ "status" : "current",
3028
+ "syntax" : {
3029
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3030
+ },
3031
+ "access" : "readonly",
3032
+ "units" : "Packets",
3033
+ "description" :
3034
+ """The total number of packets (including bad packets,
3035
+ broadcast packets, and multicast packets) received on a
3036
+ full-duplex link in the direction of the network.""",
3037
+ }, # column
3038
+ "mediaIndependentOutOverflowPkts" : {
3039
+ "nodetype" : "column",
3040
+ "moduleName" : "HC-RMON-MIB",
3041
+ "oid" : "1.3.6.1.2.1.16.21.1.1.9",
3042
+ "status" : "current",
3043
+ "syntax" : {
3044
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3045
+ },
3046
+ "access" : "readonly",
3047
+ "units" : "Packets",
3048
+ "description" :
3049
+ """The number of times the associated
3050
+ mediaIndependentOutPkts counter has overflowed.""",
3051
+ }, # column
3052
+ "mediaIndependentOutHighCapacityPkts" : {
3053
+ "nodetype" : "column",
3054
+ "moduleName" : "HC-RMON-MIB",
3055
+ "oid" : "1.3.6.1.2.1.16.21.1.1.10",
3056
+ "status" : "current",
3057
+ "syntax" : {
3058
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
3059
+ },
3060
+ "access" : "readonly",
3061
+ "units" : "Packets",
3062
+ "description" :
3063
+ """The total number of packets (including bad packets,
3064
+ broadcast packets, and multicast packets) received on a
3065
+ full-duplex link in the direction of the network.""",
3066
+ }, # column
3067
+ "mediaIndependentInOctets" : {
3068
+ "nodetype" : "column",
3069
+ "moduleName" : "HC-RMON-MIB",
3070
+ "oid" : "1.3.6.1.2.1.16.21.1.1.11",
3071
+ "status" : "current",
3072
+ "syntax" : {
3073
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3074
+ },
3075
+ "access" : "readonly",
3076
+ "units" : "Octets",
3077
+ "description" :
3078
+ """The total number of octets of data (including those in bad
3079
+ packets) received (excluding framing bits but including FCS
3080
+ octets) on a half-duplex link or on the inbound connection of
3081
+ a full-duplex link.""",
3082
+ }, # column
3083
+ "mediaIndependentInOverflowOctets" : {
3084
+ "nodetype" : "column",
3085
+ "moduleName" : "HC-RMON-MIB",
3086
+ "oid" : "1.3.6.1.2.1.16.21.1.1.12",
3087
+ "status" : "current",
3088
+ "syntax" : {
3089
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3090
+ },
3091
+ "access" : "readonly",
3092
+ "units" : "Octets",
3093
+ "description" :
3094
+ """The number of times the associated
3095
+ mediaIndependentInOctets counter has overflowed.""",
3096
+ }, # column
3097
+ "mediaIndependentInHighCapacityOctets" : {
3098
+ "nodetype" : "column",
3099
+ "moduleName" : "HC-RMON-MIB",
3100
+ "oid" : "1.3.6.1.2.1.16.21.1.1.13",
3101
+ "status" : "current",
3102
+ "syntax" : {
3103
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
3104
+ },
3105
+ "access" : "readonly",
3106
+ "units" : "Octets",
3107
+ "description" :
3108
+ """The total number of octets of data (including those in bad
3109
+ packets) received (excluding framing bits but
3110
+ including FCS octets) on a half-duplex link or on the inbound
3111
+ connection of a full-duplex link.""",
3112
+ }, # column
3113
+ "mediaIndependentOutOctets" : {
3114
+ "nodetype" : "column",
3115
+ "moduleName" : "HC-RMON-MIB",
3116
+ "oid" : "1.3.6.1.2.1.16.21.1.1.14",
3117
+ "status" : "current",
3118
+ "syntax" : {
3119
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3120
+ },
3121
+ "access" : "readonly",
3122
+ "units" : "Octets",
3123
+ "description" :
3124
+ """The total number of octets of data (including those in bad
3125
+ packets) received on a full-duplex link in the direction of
3126
+ the network (excluding framing bits but including FCS
3127
+ octets).""",
3128
+ }, # column
3129
+ "mediaIndependentOutOverflowOctets" : {
3130
+ "nodetype" : "column",
3131
+ "moduleName" : "HC-RMON-MIB",
3132
+ "oid" : "1.3.6.1.2.1.16.21.1.1.15",
3133
+ "status" : "current",
3134
+ "syntax" : {
3135
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3136
+ },
3137
+ "access" : "readonly",
3138
+ "units" : "Octets",
3139
+ "description" :
3140
+ """The number of times the associated
3141
+ mediaIndependentOutOctets counter has overflowed.""",
3142
+ }, # column
3143
+ "mediaIndependentOutHighCapacityOctets" : {
3144
+ "nodetype" : "column",
3145
+ "moduleName" : "HC-RMON-MIB",
3146
+ "oid" : "1.3.6.1.2.1.16.21.1.1.16",
3147
+ "status" : "current",
3148
+ "syntax" : {
3149
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
3150
+ },
3151
+ "access" : "readonly",
3152
+ "units" : "Octets",
3153
+ "description" :
3154
+ """The total number of octets of data (including those in bad
3155
+ packets) received on a full-duplex link in the direction of
3156
+ the network (excluding framing bits but including FCS
3157
+ octets).""",
3158
+ }, # column
3159
+ "mediaIndependentInNUCastPkts" : {
3160
+ "nodetype" : "column",
3161
+ "moduleName" : "HC-RMON-MIB",
3162
+ "oid" : "1.3.6.1.2.1.16.21.1.1.17",
3163
+ "status" : "current",
3164
+ "syntax" : {
3165
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3166
+ },
3167
+ "access" : "readonly",
3168
+ "units" : "Packets",
3169
+ "description" :
3170
+ """The total number of non-unicast packets (including bad
3171
+ packets) received on a half-duplex link or on the inbound
3172
+ connection of a full-duplex link.""",
3173
+ }, # column
3174
+ "mediaIndependentInNUCastOverflowPkts" : {
3175
+ "nodetype" : "column",
3176
+ "moduleName" : "HC-RMON-MIB",
3177
+ "oid" : "1.3.6.1.2.1.16.21.1.1.18",
3178
+ "status" : "current",
3179
+ "syntax" : {
3180
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3181
+ },
3182
+ "access" : "readonly",
3183
+ "units" : "Packets",
3184
+ "description" :
3185
+ """The number of times the associated
3186
+ mediaIndependentInNUCastPkts counter has overflowed.""",
3187
+ }, # column
3188
+ "mediaIndependentInNUCastHighCapacityPkts" : {
3189
+ "nodetype" : "column",
3190
+ "moduleName" : "HC-RMON-MIB",
3191
+ "oid" : "1.3.6.1.2.1.16.21.1.1.19",
3192
+ "status" : "current",
3193
+ "syntax" : {
3194
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
3195
+ },
3196
+ "access" : "readonly",
3197
+ "units" : "Packets",
3198
+ "description" :
3199
+ """The total number of non-unicast packets (including bad
3200
+ packets) received on a half-duplex link or on the inbound
3201
+ connection of a full-duplex link.""",
3202
+ }, # column
3203
+ "mediaIndependentOutNUCastPkts" : {
3204
+ "nodetype" : "column",
3205
+ "moduleName" : "HC-RMON-MIB",
3206
+ "oid" : "1.3.6.1.2.1.16.21.1.1.20",
3207
+ "status" : "current",
3208
+ "syntax" : {
3209
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3210
+ },
3211
+ "access" : "readonly",
3212
+ "units" : "Packets",
3213
+ "description" :
3214
+ """The total number of non-unicast packets (including bad
3215
+ packets) received on a full-duplex link in the direction of
3216
+ the network.""",
3217
+ }, # column
3218
+ "mediaIndependentOutNUCastOverflowPkts" : {
3219
+ "nodetype" : "column",
3220
+ "moduleName" : "HC-RMON-MIB",
3221
+ "oid" : "1.3.6.1.2.1.16.21.1.1.21",
3222
+ "status" : "current",
3223
+ "syntax" : {
3224
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3225
+ },
3226
+ "access" : "readonly",
3227
+ "units" : "Packets",
3228
+ "description" :
3229
+ """The number of times the associated
3230
+ mediaIndependentOutNUCastPkts counter has overflowed.""",
3231
+ }, # column
3232
+ "mediaIndependentOutNUCastHighCapacityPkts" : {
3233
+ "nodetype" : "column",
3234
+ "moduleName" : "HC-RMON-MIB",
3235
+ "oid" : "1.3.6.1.2.1.16.21.1.1.22",
3236
+ "status" : "current",
3237
+ "syntax" : {
3238
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
3239
+ },
3240
+ "access" : "readonly",
3241
+ "units" : "Packets",
3242
+ "description" :
3243
+ """The total number of packets (including bad packets)
3244
+ received on a full-duplex link in the direction of the
3245
+ network.""",
3246
+ }, # column
3247
+ "mediaIndependentInErrors" : {
3248
+ "nodetype" : "column",
3249
+ "moduleName" : "HC-RMON-MIB",
3250
+ "oid" : "1.3.6.1.2.1.16.21.1.1.23",
3251
+ "status" : "current",
3252
+ "syntax" : {
3253
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3254
+ },
3255
+ "access" : "readonly",
3256
+ "units" : "Packets",
3257
+ "description" :
3258
+ """The total number of bad packets received on a
3259
+ half-duplex link or on the inbound connection of a
3260
+ full-duplex link.""",
3261
+ }, # column
3262
+ "mediaIndependentOutErrors" : {
3263
+ "nodetype" : "column",
3264
+ "moduleName" : "HC-RMON-MIB",
3265
+ "oid" : "1.3.6.1.2.1.16.21.1.1.24",
3266
+ "status" : "current",
3267
+ "syntax" : {
3268
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3269
+ },
3270
+ "access" : "readonly",
3271
+ "units" : "Packets",
3272
+ "description" :
3273
+ """The total number of bad packets received on a full-duplex
3274
+ link in the direction of the network.""",
3275
+ }, # column
3276
+ "mediaIndependentInputSpeed" : {
3277
+ "nodetype" : "column",
3278
+ "moduleName" : "HC-RMON-MIB",
3279
+ "oid" : "1.3.6.1.2.1.16.21.1.1.25",
3280
+ "status" : "current",
3281
+ "syntax" : {
3282
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
3283
+ },
3284
+ "access" : "readonly",
3285
+ "units" : "Kilobits per Second",
3286
+ "description" :
3287
+ """The nominal maximum speed in kilobits per second of this
3288
+ half-duplex link or on the inbound connection of this
3289
+ full-duplex link. If the speed is unknown or there is no fixed
3290
+ maximum (e.g. a compressed link), this value shall be zero.""",
3291
+ }, # column
3292
+ "mediaIndependentOutputSpeed" : {
3293
+ "nodetype" : "column",
3294
+ "moduleName" : "HC-RMON-MIB",
3295
+ "oid" : "1.3.6.1.2.1.16.21.1.1.26",
3296
+ "status" : "current",
3297
+ "syntax" : {
3298
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
3299
+ },
3300
+ "access" : "readonly",
3301
+ "units" : "Kilobits per Second",
3302
+ "description" :
3303
+ """The nominal maximum speed in kilobits per second of this
3304
+ full-duplex link in the direction of the network. If the speed
3305
+ is unknown, the link is half-duplex, or there is no fixed
3306
+ maximum (e.g. a compressed link), this value shall be zero.""",
3307
+ }, # column
3308
+ "mediaIndependentDuplexMode" : {
3309
+ "nodetype" : "column",
3310
+ "moduleName" : "HC-RMON-MIB",
3311
+ "oid" : "1.3.6.1.2.1.16.21.1.1.27",
3312
+ "status" : "current",
3313
+ "syntax" : {
3314
+ "type" : {
3315
+ "basetype" : "Enumeration",
3316
+ "halfduplex" : {
3317
+ "nodetype" : "namednumber",
3318
+ "number" : "1"
3319
+ },
3320
+ "fullduplex" : {
3321
+ "nodetype" : "namednumber",
3322
+ "number" : "2"
3323
+ },
3324
+ },
3325
+ },
3326
+ "access" : "readonly",
3327
+ "description" :
3328
+ """The current mode of this link.
3329
+
3330
+ Note that if the link has full-duplex capabilities but
3331
+ is operating in half-duplex mode, this value will be
3332
+ halfduplex(1).""",
3333
+ }, # column
3334
+ "mediaIndependentDuplexChanges" : {
3335
+ "nodetype" : "column",
3336
+ "moduleName" : "HC-RMON-MIB",
3337
+ "oid" : "1.3.6.1.2.1.16.21.1.1.28",
3338
+ "status" : "current",
3339
+ "syntax" : {
3340
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
3341
+ },
3342
+ "access" : "readonly",
3343
+ "units" : "Events",
3344
+ "description" :
3345
+ """The number of times this link has changed from full-duplex
3346
+ mode to half-duplex mode or from half-duplex mode to
3347
+ full-duplex mode.""",
3348
+ }, # column
3349
+ "mediaIndependentDuplexLastChange" : {
3350
+ "nodetype" : "column",
3351
+ "moduleName" : "HC-RMON-MIB",
3352
+ "oid" : "1.3.6.1.2.1.16.21.1.1.29",
3353
+ "status" : "current",
3354
+ "syntax" : {
3355
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
3356
+ },
3357
+ "access" : "readonly",
3358
+ "description" :
3359
+ """The value of sysUpTime at the time the duplex status
3360
+ of this link last changed.""",
3361
+ }, # column
3362
+ "mediaIndependentOwner" : {
3363
+ "nodetype" : "column",
3364
+ "moduleName" : "HC-RMON-MIB",
3365
+ "oid" : "1.3.6.1.2.1.16.21.1.1.30",
3366
+ "status" : "current",
3367
+ "syntax" : {
3368
+ "type" : { "module" :"RMON-MIB", "name" : "OwnerString"},
3369
+ },
3370
+ "access" : "readwrite",
3371
+ "description" :
3372
+ """The entity that configured this entry and is
3373
+ therefore using the resources assigned to it.""",
3374
+ }, # column
3375
+ "mediaIndependentStatus" : {
3376
+ "nodetype" : "column",
3377
+ "moduleName" : "HC-RMON-MIB",
3378
+ "oid" : "1.3.6.1.2.1.16.21.1.1.31",
3379
+ "status" : "current",
3380
+ "syntax" : {
3381
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3382
+ },
3383
+ "access" : "readwrite",
3384
+ "description" :
3385
+ """The status of this media independent statistics entry.""",
3386
+ }, # column
3387
+ }, # nodes
3388
+
3389
+ "groups" : {
3390
+ "mediaIndependentGroup" : {
3391
+ "nodetype" : "group",
3392
+ "moduleName" : "HC-RMON-MIB",
3393
+ "oid" : "1.3.6.1.2.1.16.20.7.1",
3394
+ "status" : "current",
3395
+ "members" : {
3396
+ "mediaIndependentDataSource" : {
3397
+ "nodetype" : "member",
3398
+ "module" : "HC-RMON-MIB"
3399
+ },
3400
+ "mediaIndependentDropEvents" : {
3401
+ "nodetype" : "member",
3402
+ "module" : "HC-RMON-MIB"
3403
+ },
3404
+ "mediaIndependentDroppedFrames" : {
3405
+ "nodetype" : "member",
3406
+ "module" : "HC-RMON-MIB"
3407
+ },
3408
+ "mediaIndependentInPkts" : {
3409
+ "nodetype" : "member",
3410
+ "module" : "HC-RMON-MIB"
3411
+ },
3412
+ "mediaIndependentInOverflowPkts" : {
3413
+ "nodetype" : "member",
3414
+ "module" : "HC-RMON-MIB"
3415
+ },
3416
+ "mediaIndependentInHighCapacityPkts" : {
3417
+ "nodetype" : "member",
3418
+ "module" : "HC-RMON-MIB"
3419
+ },
3420
+ "mediaIndependentOutPkts" : {
3421
+ "nodetype" : "member",
3422
+ "module" : "HC-RMON-MIB"
3423
+ },
3424
+ "mediaIndependentOutOverflowPkts" : {
3425
+ "nodetype" : "member",
3426
+ "module" : "HC-RMON-MIB"
3427
+ },
3428
+ "mediaIndependentOutHighCapacityPkts" : {
3429
+ "nodetype" : "member",
3430
+ "module" : "HC-RMON-MIB"
3431
+ },
3432
+ "mediaIndependentInOctets" : {
3433
+ "nodetype" : "member",
3434
+ "module" : "HC-RMON-MIB"
3435
+ },
3436
+ "mediaIndependentInOverflowOctets" : {
3437
+ "nodetype" : "member",
3438
+ "module" : "HC-RMON-MIB"
3439
+ },
3440
+ "mediaIndependentInHighCapacityOctets" : {
3441
+ "nodetype" : "member",
3442
+ "module" : "HC-RMON-MIB"
3443
+ },
3444
+ "mediaIndependentOutOctets" : {
3445
+ "nodetype" : "member",
3446
+ "module" : "HC-RMON-MIB"
3447
+ },
3448
+ "mediaIndependentOutOverflowOctets" : {
3449
+ "nodetype" : "member",
3450
+ "module" : "HC-RMON-MIB"
3451
+ },
3452
+ "mediaIndependentOutHighCapacityOctets" : {
3453
+ "nodetype" : "member",
3454
+ "module" : "HC-RMON-MIB"
3455
+ },
3456
+ "mediaIndependentInNUCastPkts" : {
3457
+ "nodetype" : "member",
3458
+ "module" : "HC-RMON-MIB"
3459
+ },
3460
+ "mediaIndependentInNUCastOverflowPkts" : {
3461
+ "nodetype" : "member",
3462
+ "module" : "HC-RMON-MIB"
3463
+ },
3464
+ "mediaIndependentInNUCastHighCapacityPkts" : {
3465
+ "nodetype" : "member",
3466
+ "module" : "HC-RMON-MIB"
3467
+ },
3468
+ "mediaIndependentOutNUCastPkts" : {
3469
+ "nodetype" : "member",
3470
+ "module" : "HC-RMON-MIB"
3471
+ },
3472
+ "mediaIndependentOutNUCastOverflowPkts" : {
3473
+ "nodetype" : "member",
3474
+ "module" : "HC-RMON-MIB"
3475
+ },
3476
+ "mediaIndependentOutNUCastHighCapacityPkts" : {
3477
+ "nodetype" : "member",
3478
+ "module" : "HC-RMON-MIB"
3479
+ },
3480
+ "mediaIndependentInErrors" : {
3481
+ "nodetype" : "member",
3482
+ "module" : "HC-RMON-MIB"
3483
+ },
3484
+ "mediaIndependentOutErrors" : {
3485
+ "nodetype" : "member",
3486
+ "module" : "HC-RMON-MIB"
3487
+ },
3488
+ "mediaIndependentInputSpeed" : {
3489
+ "nodetype" : "member",
3490
+ "module" : "HC-RMON-MIB"
3491
+ },
3492
+ "mediaIndependentOutputSpeed" : {
3493
+ "nodetype" : "member",
3494
+ "module" : "HC-RMON-MIB"
3495
+ },
3496
+ "mediaIndependentDuplexMode" : {
3497
+ "nodetype" : "member",
3498
+ "module" : "HC-RMON-MIB"
3499
+ },
3500
+ "mediaIndependentDuplexChanges" : {
3501
+ "nodetype" : "member",
3502
+ "module" : "HC-RMON-MIB"
3503
+ },
3504
+ "mediaIndependentDuplexLastChange" : {
3505
+ "nodetype" : "member",
3506
+ "module" : "HC-RMON-MIB"
3507
+ },
3508
+ "mediaIndependentOwner" : {
3509
+ "nodetype" : "member",
3510
+ "module" : "HC-RMON-MIB"
3511
+ },
3512
+ "mediaIndependentStatus" : {
3513
+ "nodetype" : "member",
3514
+ "module" : "HC-RMON-MIB"
3515
+ },
3516
+ }, # members
3517
+ "description" :
3518
+ """Collects utilization statistics for any type of network.""",
3519
+ }, # group
3520
+ "etherStatsHighCapacityGroup" : {
3521
+ "nodetype" : "group",
3522
+ "moduleName" : "HC-RMON-MIB",
3523
+ "oid" : "1.3.6.1.2.1.16.20.7.2",
3524
+ "status" : "current",
3525
+ "members" : {
3526
+ "etherStatsHighCapacityOverflowPkts" : {
3527
+ "nodetype" : "member",
3528
+ "module" : "HC-RMON-MIB"
3529
+ },
3530
+ "etherStatsHighCapacityPkts" : {
3531
+ "nodetype" : "member",
3532
+ "module" : "HC-RMON-MIB"
3533
+ },
3534
+ "etherStatsHighCapacityOverflowOctets" : {
3535
+ "nodetype" : "member",
3536
+ "module" : "HC-RMON-MIB"
3537
+ },
3538
+ "etherStatsHighCapacityOctets" : {
3539
+ "nodetype" : "member",
3540
+ "module" : "HC-RMON-MIB"
3541
+ },
3542
+ "etherStatsHighCapacityOverflowPkts64Octets" : {
3543
+ "nodetype" : "member",
3544
+ "module" : "HC-RMON-MIB"
3545
+ },
3546
+ "etherStatsHighCapacityPkts64Octets" : {
3547
+ "nodetype" : "member",
3548
+ "module" : "HC-RMON-MIB"
3549
+ },
3550
+ "etherStatsHighCapacityOverflowPkts65to127Octets" : {
3551
+ "nodetype" : "member",
3552
+ "module" : "HC-RMON-MIB"
3553
+ },
3554
+ "etherStatsHighCapacityPkts65to127Octets" : {
3555
+ "nodetype" : "member",
3556
+ "module" : "HC-RMON-MIB"
3557
+ },
3558
+ "etherStatsHighCapacityOverflowPkts128to255Octets" : {
3559
+ "nodetype" : "member",
3560
+ "module" : "HC-RMON-MIB"
3561
+ },
3562
+ "etherStatsHighCapacityPkts128to255Octets" : {
3563
+ "nodetype" : "member",
3564
+ "module" : "HC-RMON-MIB"
3565
+ },
3566
+ "etherStatsHighCapacityOverflowPkts256to511Octets" : {
3567
+ "nodetype" : "member",
3568
+ "module" : "HC-RMON-MIB"
3569
+ },
3570
+ "etherStatsHighCapacityPkts256to511Octets" : {
3571
+ "nodetype" : "member",
3572
+ "module" : "HC-RMON-MIB"
3573
+ },
3574
+ "etherStatsHighCapacityOverflowPkts512to1023Octets" : {
3575
+ "nodetype" : "member",
3576
+ "module" : "HC-RMON-MIB"
3577
+ },
3578
+ "etherStatsHighCapacityPkts512to1023Octets" : {
3579
+ "nodetype" : "member",
3580
+ "module" : "HC-RMON-MIB"
3581
+ },
3582
+ "etherStatsHighCapacityOverflowPkts1024to1518Octets" : {
3583
+ "nodetype" : "member",
3584
+ "module" : "HC-RMON-MIB"
3585
+ },
3586
+ "etherStatsHighCapacityPkts1024to1518Octets" : {
3587
+ "nodetype" : "member",
3588
+ "module" : "HC-RMON-MIB"
3589
+ },
3590
+ }, # members
3591
+ "description" :
3592
+ """Collects utilization statistics for ethernet networks.""",
3593
+ }, # group
3594
+ "etherHistoryHighCapacityGroup" : {
3595
+ "nodetype" : "group",
3596
+ "moduleName" : "HC-RMON-MIB",
3597
+ "oid" : "1.3.6.1.2.1.16.20.7.3",
3598
+ "status" : "current",
3599
+ "members" : {
3600
+ "etherHistoryHighCapacityOverflowPkts" : {
3601
+ "nodetype" : "member",
3602
+ "module" : "HC-RMON-MIB"
3603
+ },
3604
+ "etherHistoryHighCapacityPkts" : {
3605
+ "nodetype" : "member",
3606
+ "module" : "HC-RMON-MIB"
3607
+ },
3608
+ "etherHistoryHighCapacityOverflowOctets" : {
3609
+ "nodetype" : "member",
3610
+ "module" : "HC-RMON-MIB"
3611
+ },
3612
+ "etherHistoryHighCapacityOctets" : {
3613
+ "nodetype" : "member",
3614
+ "module" : "HC-RMON-MIB"
3615
+ },
3616
+ }, # members
3617
+ "description" :
3618
+ """Collects utilization statistics for ethernet networks.""",
3619
+ }, # group
3620
+ "hostHighCapacityGroup" : {
3621
+ "nodetype" : "group",
3622
+ "moduleName" : "HC-RMON-MIB",
3623
+ "oid" : "1.3.6.1.2.1.16.20.7.4",
3624
+ "status" : "current",
3625
+ "members" : {
3626
+ "hostHighCapacityInOverflowPkts" : {
3627
+ "nodetype" : "member",
3628
+ "module" : "HC-RMON-MIB"
3629
+ },
3630
+ "hostHighCapacityInPkts" : {
3631
+ "nodetype" : "member",
3632
+ "module" : "HC-RMON-MIB"
3633
+ },
3634
+ "hostHighCapacityOutOverflowPkts" : {
3635
+ "nodetype" : "member",
3636
+ "module" : "HC-RMON-MIB"
3637
+ },
3638
+ "hostHighCapacityOutPkts" : {
3639
+ "nodetype" : "member",
3640
+ "module" : "HC-RMON-MIB"
3641
+ },
3642
+ "hostHighCapacityInOverflowOctets" : {
3643
+ "nodetype" : "member",
3644
+ "module" : "HC-RMON-MIB"
3645
+ },
3646
+ "hostHighCapacityInOctets" : {
3647
+ "nodetype" : "member",
3648
+ "module" : "HC-RMON-MIB"
3649
+ },
3650
+ "hostHighCapacityOutOverflowOctets" : {
3651
+ "nodetype" : "member",
3652
+ "module" : "HC-RMON-MIB"
3653
+ },
3654
+ "hostHighCapacityOutOctets" : {
3655
+ "nodetype" : "member",
3656
+ "module" : "HC-RMON-MIB"
3657
+ },
3658
+ "hostTimeHighCapacityInOverflowPkts" : {
3659
+ "nodetype" : "member",
3660
+ "module" : "HC-RMON-MIB"
3661
+ },
3662
+ "hostTimeHighCapacityInPkts" : {
3663
+ "nodetype" : "member",
3664
+ "module" : "HC-RMON-MIB"
3665
+ },
3666
+ "hostTimeHighCapacityOutOverflowPkts" : {
3667
+ "nodetype" : "member",
3668
+ "module" : "HC-RMON-MIB"
3669
+ },
3670
+ "hostTimeHighCapacityOutPkts" : {
3671
+ "nodetype" : "member",
3672
+ "module" : "HC-RMON-MIB"
3673
+ },
3674
+ "hostTimeHighCapacityInOverflowOctets" : {
3675
+ "nodetype" : "member",
3676
+ "module" : "HC-RMON-MIB"
3677
+ },
3678
+ "hostTimeHighCapacityInOctets" : {
3679
+ "nodetype" : "member",
3680
+ "module" : "HC-RMON-MIB"
3681
+ },
3682
+ "hostTimeHighCapacityOutOverflowOctets" : {
3683
+ "nodetype" : "member",
3684
+ "module" : "HC-RMON-MIB"
3685
+ },
3686
+ "hostTimeHighCapacityOutOctets" : {
3687
+ "nodetype" : "member",
3688
+ "module" : "HC-RMON-MIB"
3689
+ },
3690
+ }, # members
3691
+ "description" :
3692
+ """Collects utilization and error statistics per host.""",
3693
+ }, # group
3694
+ "hostTopNHighCapacityGroup" : {
3695
+ "nodetype" : "group",
3696
+ "moduleName" : "HC-RMON-MIB",
3697
+ "oid" : "1.3.6.1.2.1.16.20.7.5",
3698
+ "status" : "current",
3699
+ "members" : {
3700
+ "hostTopNHighCapacityAddress" : {
3701
+ "nodetype" : "member",
3702
+ "module" : "HC-RMON-MIB"
3703
+ },
3704
+ "hostTopNHighCapacityBaseRate" : {
3705
+ "nodetype" : "member",
3706
+ "module" : "HC-RMON-MIB"
3707
+ },
3708
+ "hostTopNHighCapacityOverflowRate" : {
3709
+ "nodetype" : "member",
3710
+ "module" : "HC-RMON-MIB"
3711
+ },
3712
+ "hostTopNHighCapacityRate" : {
3713
+ "nodetype" : "member",
3714
+ "module" : "HC-RMON-MIB"
3715
+ },
3716
+ }, # members
3717
+ "description" :
3718
+ """Prepares sorted reports of utilization and error statistics
3719
+ per host.""",
3720
+ }, # group
3721
+ "matrixHighCapacityGroup" : {
3722
+ "nodetype" : "group",
3723
+ "moduleName" : "HC-RMON-MIB",
3724
+ "oid" : "1.3.6.1.2.1.16.20.7.6",
3725
+ "status" : "current",
3726
+ "members" : {
3727
+ "matrixSDHighCapacityOverflowPkts" : {
3728
+ "nodetype" : "member",
3729
+ "module" : "HC-RMON-MIB"
3730
+ },
3731
+ "matrixSDHighCapacityPkts" : {
3732
+ "nodetype" : "member",
3733
+ "module" : "HC-RMON-MIB"
3734
+ },
3735
+ "matrixSDHighCapacityOverflowOctets" : {
3736
+ "nodetype" : "member",
3737
+ "module" : "HC-RMON-MIB"
3738
+ },
3739
+ "matrixSDHighCapacityOctets" : {
3740
+ "nodetype" : "member",
3741
+ "module" : "HC-RMON-MIB"
3742
+ },
3743
+ "matrixDSHighCapacityOverflowPkts" : {
3744
+ "nodetype" : "member",
3745
+ "module" : "HC-RMON-MIB"
3746
+ },
3747
+ "matrixDSHighCapacityPkts" : {
3748
+ "nodetype" : "member",
3749
+ "module" : "HC-RMON-MIB"
3750
+ },
3751
+ "matrixDSHighCapacityOverflowOctets" : {
3752
+ "nodetype" : "member",
3753
+ "module" : "HC-RMON-MIB"
3754
+ },
3755
+ "matrixDSHighCapacityOctets" : {
3756
+ "nodetype" : "member",
3757
+ "module" : "HC-RMON-MIB"
3758
+ },
3759
+ }, # members
3760
+ "description" :
3761
+ """Collects utilization statistics per conversation.""",
3762
+ }, # group
3763
+ "captureBufferHighCapacityGroup" : {
3764
+ "nodetype" : "group",
3765
+ "moduleName" : "HC-RMON-MIB",
3766
+ "oid" : "1.3.6.1.2.1.16.20.7.7",
3767
+ "status" : "current",
3768
+ "members" : {
3769
+ "captureBufferPacketHighCapacityTime" : {
3770
+ "nodetype" : "member",
3771
+ "module" : "HC-RMON-MIB"
3772
+ },
3773
+ }, # members
3774
+ "description" :
3775
+ """Provides finer granularity time stamps.""",
3776
+ }, # group
3777
+ "protocolDistributionHighCapacityGroup" : {
3778
+ "nodetype" : "group",
3779
+ "moduleName" : "HC-RMON-MIB",
3780
+ "oid" : "1.3.6.1.2.1.16.20.7.8",
3781
+ "status" : "current",
3782
+ "members" : {
3783
+ "protocolDistStatsHighCapacityOverflowPkts" : {
3784
+ "nodetype" : "member",
3785
+ "module" : "HC-RMON-MIB"
3786
+ },
3787
+ "protocolDistStatsHighCapacityPkts" : {
3788
+ "nodetype" : "member",
3789
+ "module" : "HC-RMON-MIB"
3790
+ },
3791
+ "protocolDistStatsHighCapacityOverflowOctets" : {
3792
+ "nodetype" : "member",
3793
+ "module" : "HC-RMON-MIB"
3794
+ },
3795
+ "protocolDistStatsHighCapacityOctets" : {
3796
+ "nodetype" : "member",
3797
+ "module" : "HC-RMON-MIB"
3798
+ },
3799
+ }, # members
3800
+ "description" :
3801
+ """Collects the relative amounts of octets and packets for the
3802
+ different protocols detected on a network segment.""",
3803
+ }, # group
3804
+ "nlHostHighCapacityGroup" : {
3805
+ "nodetype" : "group",
3806
+ "moduleName" : "HC-RMON-MIB",
3807
+ "oid" : "1.3.6.1.2.1.16.20.7.9",
3808
+ "status" : "current",
3809
+ "members" : {
3810
+ "nlHostHighCapacityInOverflowPkts" : {
3811
+ "nodetype" : "member",
3812
+ "module" : "HC-RMON-MIB"
3813
+ },
3814
+ "nlHostHighCapacityInPkts" : {
3815
+ "nodetype" : "member",
3816
+ "module" : "HC-RMON-MIB"
3817
+ },
3818
+ "nlHostHighCapacityOutOverflowPkts" : {
3819
+ "nodetype" : "member",
3820
+ "module" : "HC-RMON-MIB"
3821
+ },
3822
+ "nlHostHighCapacityOutPkts" : {
3823
+ "nodetype" : "member",
3824
+ "module" : "HC-RMON-MIB"
3825
+ },
3826
+ "nlHostHighCapacityInOverflowOctets" : {
3827
+ "nodetype" : "member",
3828
+ "module" : "HC-RMON-MIB"
3829
+ },
3830
+ "nlHostHighCapacityInOctets" : {
3831
+ "nodetype" : "member",
3832
+ "module" : "HC-RMON-MIB"
3833
+ },
3834
+ "nlHostHighCapacityOutOverflowOctets" : {
3835
+ "nodetype" : "member",
3836
+ "module" : "HC-RMON-MIB"
3837
+ },
3838
+ "nlHostHighCapacityOutOctets" : {
3839
+ "nodetype" : "member",
3840
+ "module" : "HC-RMON-MIB"
3841
+ },
3842
+ }, # members
3843
+ "description" :
3844
+ """Counts the amount of traffic sent from and to each network
3845
+ address discovered by the probe.""",
3846
+ }, # group
3847
+ "nlMatrixHighCapacityGroup" : {
3848
+ "nodetype" : "group",
3849
+ "moduleName" : "HC-RMON-MIB",
3850
+ "oid" : "1.3.6.1.2.1.16.20.7.10",
3851
+ "status" : "current",
3852
+ "members" : {
3853
+ "nlMatrixSDHighCapacityOverflowPkts" : {
3854
+ "nodetype" : "member",
3855
+ "module" : "HC-RMON-MIB"
3856
+ },
3857
+ "nlMatrixSDHighCapacityPkts" : {
3858
+ "nodetype" : "member",
3859
+ "module" : "HC-RMON-MIB"
3860
+ },
3861
+ "nlMatrixSDHighCapacityOverflowOctets" : {
3862
+ "nodetype" : "member",
3863
+ "module" : "HC-RMON-MIB"
3864
+ },
3865
+ "nlMatrixSDHighCapacityOctets" : {
3866
+ "nodetype" : "member",
3867
+ "module" : "HC-RMON-MIB"
3868
+ },
3869
+ "nlMatrixDSHighCapacityOverflowPkts" : {
3870
+ "nodetype" : "member",
3871
+ "module" : "HC-RMON-MIB"
3872
+ },
3873
+ "nlMatrixDSHighCapacityPkts" : {
3874
+ "nodetype" : "member",
3875
+ "module" : "HC-RMON-MIB"
3876
+ },
3877
+ "nlMatrixDSHighCapacityOverflowOctets" : {
3878
+ "nodetype" : "member",
3879
+ "module" : "HC-RMON-MIB"
3880
+ },
3881
+ "nlMatrixDSHighCapacityOctets" : {
3882
+ "nodetype" : "member",
3883
+ "module" : "HC-RMON-MIB"
3884
+ },
3885
+ }, # members
3886
+ "description" :
3887
+ """Counts the amount of traffic sent between each pair of
3888
+ network addresses discovered by the probe.""",
3889
+ }, # group
3890
+ "nlMatrixTopNHighCapacityGroup" : {
3891
+ "nodetype" : "group",
3892
+ "moduleName" : "HC-RMON-MIB",
3893
+ "oid" : "1.3.6.1.2.1.16.20.7.11",
3894
+ "status" : "current",
3895
+ "members" : {
3896
+ "nlMatrixTopNHighCapacityProtocolDirLocalIndex" : {
3897
+ "nodetype" : "member",
3898
+ "module" : "HC-RMON-MIB"
3899
+ },
3900
+ "nlMatrixTopNHighCapacitySourceAddress" : {
3901
+ "nodetype" : "member",
3902
+ "module" : "HC-RMON-MIB"
3903
+ },
3904
+ "nlMatrixTopNHighCapacityDestAddress" : {
3905
+ "nodetype" : "member",
3906
+ "module" : "HC-RMON-MIB"
3907
+ },
3908
+ "nlMatrixTopNHighCapacityBasePktRate" : {
3909
+ "nodetype" : "member",
3910
+ "module" : "HC-RMON-MIB"
3911
+ },
3912
+ "nlMatrixTopNHighCapacityOverflowPktRate" : {
3913
+ "nodetype" : "member",
3914
+ "module" : "HC-RMON-MIB"
3915
+ },
3916
+ "nlMatrixTopNHighCapacityPktRate" : {
3917
+ "nodetype" : "member",
3918
+ "module" : "HC-RMON-MIB"
3919
+ },
3920
+ "nlMatrixTopNHighCapacityReverseBasePktRate" : {
3921
+ "nodetype" : "member",
3922
+ "module" : "HC-RMON-MIB"
3923
+ },
3924
+ "nlMatrixTopNHighCapacityReverseOverflowPktRate" : {
3925
+ "nodetype" : "member",
3926
+ "module" : "HC-RMON-MIB"
3927
+ },
3928
+ "nlMatrixTopNHighCapacityReversePktRate" : {
3929
+ "nodetype" : "member",
3930
+ "module" : "HC-RMON-MIB"
3931
+ },
3932
+ "nlMatrixTopNHighCapacityBaseOctetRate" : {
3933
+ "nodetype" : "member",
3934
+ "module" : "HC-RMON-MIB"
3935
+ },
3936
+ "nlMatrixTopNHighCapacityOverflowOctetRate" : {
3937
+ "nodetype" : "member",
3938
+ "module" : "HC-RMON-MIB"
3939
+ },
3940
+ "nlMatrixTopNHighCapacityOctetRate" : {
3941
+ "nodetype" : "member",
3942
+ "module" : "HC-RMON-MIB"
3943
+ },
3944
+ "nlMatrixTopNHighCapacityReverseBaseOctetRate" : {
3945
+ "nodetype" : "member",
3946
+ "module" : "HC-RMON-MIB"
3947
+ },
3948
+ "nlMatrixTopNHighCapacityReverseOverflowOctetRate" : {
3949
+ "nodetype" : "member",
3950
+ "module" : "HC-RMON-MIB"
3951
+ },
3952
+ "nlMatrixTopNHighCapacityReverseOctetRate" : {
3953
+ "nodetype" : "member",
3954
+ "module" : "HC-RMON-MIB"
3955
+ },
3956
+ }, # members
3957
+ "description" :
3958
+ """Prepares sorted reports of the amount of traffic sent between
3959
+ each pair of network addresses discovered by the probe.""",
3960
+ }, # group
3961
+ "alHostHighCapacityGroup" : {
3962
+ "nodetype" : "group",
3963
+ "moduleName" : "HC-RMON-MIB",
3964
+ "oid" : "1.3.6.1.2.1.16.20.7.12",
3965
+ "status" : "current",
3966
+ "members" : {
3967
+ "alHostHighCapacityInOverflowPkts" : {
3968
+ "nodetype" : "member",
3969
+ "module" : "HC-RMON-MIB"
3970
+ },
3971
+ "alHostHighCapacityInPkts" : {
3972
+ "nodetype" : "member",
3973
+ "module" : "HC-RMON-MIB"
3974
+ },
3975
+ "alHostHighCapacityOutOverflowPkts" : {
3976
+ "nodetype" : "member",
3977
+ "module" : "HC-RMON-MIB"
3978
+ },
3979
+ "alHostHighCapacityOutPkts" : {
3980
+ "nodetype" : "member",
3981
+ "module" : "HC-RMON-MIB"
3982
+ },
3983
+ "alHostHighCapacityInOverflowOctets" : {
3984
+ "nodetype" : "member",
3985
+ "module" : "HC-RMON-MIB"
3986
+ },
3987
+ "alHostHighCapacityInOctets" : {
3988
+ "nodetype" : "member",
3989
+ "module" : "HC-RMON-MIB"
3990
+ },
3991
+ "alHostHighCapacityOutOverflowOctets" : {
3992
+ "nodetype" : "member",
3993
+ "module" : "HC-RMON-MIB"
3994
+ },
3995
+ "alHostHighCapacityOutOctets" : {
3996
+ "nodetype" : "member",
3997
+ "module" : "HC-RMON-MIB"
3998
+ },
3999
+ }, # members
4000
+ "description" :
4001
+ """Counts the amount of traffic, by protocol, sent from and to
4002
+ each network address discovered by the probe.""",
4003
+ }, # group
4004
+ "alMatrixHighCapacityGroup" : {
4005
+ "nodetype" : "group",
4006
+ "moduleName" : "HC-RMON-MIB",
4007
+ "oid" : "1.3.6.1.2.1.16.20.7.13",
4008
+ "status" : "current",
4009
+ "members" : {
4010
+ "alMatrixSDHighCapacityOverflowPkts" : {
4011
+ "nodetype" : "member",
4012
+ "module" : "HC-RMON-MIB"
4013
+ },
4014
+ "alMatrixSDHighCapacityPkts" : {
4015
+ "nodetype" : "member",
4016
+ "module" : "HC-RMON-MIB"
4017
+ },
4018
+ "alMatrixSDHighCapacityOverflowOctets" : {
4019
+ "nodetype" : "member",
4020
+ "module" : "HC-RMON-MIB"
4021
+ },
4022
+ "alMatrixSDHighCapacityOctets" : {
4023
+ "nodetype" : "member",
4024
+ "module" : "HC-RMON-MIB"
4025
+ },
4026
+ "alMatrixDSHighCapacityOverflowPkts" : {
4027
+ "nodetype" : "member",
4028
+ "module" : "HC-RMON-MIB"
4029
+ },
4030
+ "alMatrixDSHighCapacityPkts" : {
4031
+ "nodetype" : "member",
4032
+ "module" : "HC-RMON-MIB"
4033
+ },
4034
+ "alMatrixDSHighCapacityOverflowOctets" : {
4035
+ "nodetype" : "member",
4036
+ "module" : "HC-RMON-MIB"
4037
+ },
4038
+ "alMatrixDSHighCapacityOctets" : {
4039
+ "nodetype" : "member",
4040
+ "module" : "HC-RMON-MIB"
4041
+ },
4042
+ }, # members
4043
+ "description" :
4044
+ """Counts the amount of traffic, by protocol, sent between each
4045
+ pair of network addresses discovered by the
4046
+ probe.""",
4047
+ }, # group
4048
+ "alMatrixTopNHighCapacityGroup" : {
4049
+ "nodetype" : "group",
4050
+ "moduleName" : "HC-RMON-MIB",
4051
+ "oid" : "1.3.6.1.2.1.16.20.7.14",
4052
+ "status" : "current",
4053
+ "members" : {
4054
+ "alMatrixTopNHighCapacityProtocolDirLocalIndex" : {
4055
+ "nodetype" : "member",
4056
+ "module" : "HC-RMON-MIB"
4057
+ },
4058
+ "alMatrixTopNHighCapacitySourceAddress" : {
4059
+ "nodetype" : "member",
4060
+ "module" : "HC-RMON-MIB"
4061
+ },
4062
+ "alMatrixTopNHighCapacityDestAddress" : {
4063
+ "nodetype" : "member",
4064
+ "module" : "HC-RMON-MIB"
4065
+ },
4066
+ "alMatrixTopNHighCapacityAppProtocolDirLocalIndex" : {
4067
+ "nodetype" : "member",
4068
+ "module" : "HC-RMON-MIB"
4069
+ },
4070
+ "alMatrixTopNHighCapacityBasePktRate" : {
4071
+ "nodetype" : "member",
4072
+ "module" : "HC-RMON-MIB"
4073
+ },
4074
+ "alMatrixTopNHighCapacityOverflowPktRate" : {
4075
+ "nodetype" : "member",
4076
+ "module" : "HC-RMON-MIB"
4077
+ },
4078
+ "alMatrixTopNHighCapacityPktRate" : {
4079
+ "nodetype" : "member",
4080
+ "module" : "HC-RMON-MIB"
4081
+ },
4082
+ "alMatrixTopNHighCapacityReverseBasePktRate" : {
4083
+ "nodetype" : "member",
4084
+ "module" : "HC-RMON-MIB"
4085
+ },
4086
+ "alMatrixTopNHighCapacityReverseOverflowPktRate" : {
4087
+ "nodetype" : "member",
4088
+ "module" : "HC-RMON-MIB"
4089
+ },
4090
+ "alMatrixTopNHighCapacityReversePktRate" : {
4091
+ "nodetype" : "member",
4092
+ "module" : "HC-RMON-MIB"
4093
+ },
4094
+ "alMatrixTopNHighCapacityBaseOctetRate" : {
4095
+ "nodetype" : "member",
4096
+ "module" : "HC-RMON-MIB"
4097
+ },
4098
+ "alMatrixTopNHighCapacityOverflowOctetRate" : {
4099
+ "nodetype" : "member",
4100
+ "module" : "HC-RMON-MIB"
4101
+ },
4102
+ "alMatrixTopNHighCapacityOctetRate" : {
4103
+ "nodetype" : "member",
4104
+ "module" : "HC-RMON-MIB"
4105
+ },
4106
+ "alMatrixTopNHighCapacityReverseBaseOctetRate" : {
4107
+ "nodetype" : "member",
4108
+ "module" : "HC-RMON-MIB"
4109
+ },
4110
+ "alMatrixTopNHighCapacityReverseOverflowOctetRate" : {
4111
+ "nodetype" : "member",
4112
+ "module" : "HC-RMON-MIB"
4113
+ },
4114
+ "alMatrixTopNHighCapacityReverseOctetRate" : {
4115
+ "nodetype" : "member",
4116
+ "module" : "HC-RMON-MIB"
4117
+ },
4118
+ }, # members
4119
+ "description" :
4120
+ """Prepares sorted reports of the amount of traffic per protocol
4121
+ sent between each pair of network addresses discovered by the
4122
+ probe.""",
4123
+ }, # group
4124
+ "usrHistoryHighCapacityGroup" : {
4125
+ "nodetype" : "group",
4126
+ "moduleName" : "HC-RMON-MIB",
4127
+ "oid" : "1.3.6.1.2.1.16.20.7.15",
4128
+ "status" : "current",
4129
+ "members" : {
4130
+ "usrHistoryHighCapacityOverflowAbsValue" : {
4131
+ "nodetype" : "member",
4132
+ "module" : "HC-RMON-MIB"
4133
+ },
4134
+ "usrHistoryHighCapacityAbsValue" : {
4135
+ "nodetype" : "member",
4136
+ "module" : "HC-RMON-MIB"
4137
+ },
4138
+ }, # members
4139
+ "description" :
4140
+ """Provides user-defined collection of historical information
4141
+ from MIB objects on the probe with scalability to statistics
4142
+ from high-capacity networks.""",
4143
+ }, # group
4144
+ "hcRMONInformationGroup" : {
4145
+ "nodetype" : "group",
4146
+ "moduleName" : "HC-RMON-MIB",
4147
+ "oid" : "1.3.6.1.2.1.16.20.7.16",
4148
+ "status" : "current",
4149
+ "members" : {
4150
+ "hcRMONCapabilities" : {
4151
+ "nodetype" : "member",
4152
+ "module" : "HC-RMON-MIB"
4153
+ },
4154
+ }, # members
4155
+ "description" :
4156
+ """An indication of the high capacity RMON groups supported on
4157
+ at least one interface by this probe.""",
4158
+ }, # group
4159
+ }, # groups
4160
+
4161
+ "compliances" : {
4162
+ "hcMediaIndependentCompliance" : {
4163
+ "nodetype" : "compliance",
4164
+ "moduleName" : "HC-RMON-MIB",
4165
+ "oid" : "1.3.6.1.2.1.16.20.6.1",
4166
+ "status" : "current",
4167
+ "description" :
4168
+ """Describes the requirements for conformance to the
4169
+ High Capacity Media Independent Group.""",
4170
+ "requires" : {
4171
+ "mediaIndependentGroup" : {
4172
+ "nodetype" : "mandatory",
4173
+ "module" : "HC-RMON-MIB"
4174
+ },
4175
+ "hcRMONInformationGroup" : {
4176
+ "nodetype" : "mandatory",
4177
+ "module" : "HC-RMON-MIB"
4178
+ },
4179
+ }, # requires
4180
+ }, # compliance
4181
+ "hcRmon1MIBCompliance" : {
4182
+ "nodetype" : "compliance",
4183
+ "moduleName" : "HC-RMON-MIB",
4184
+ "oid" : "1.3.6.1.2.1.16.20.6.2",
4185
+ "status" : "current",
4186
+ "description" :
4187
+ """Describes the requirements for conformance to the High
4188
+ Capacity RMON-1 MIB""",
4189
+ "requires" : {
4190
+ "etherStatsHighCapacityGroup" : {
4191
+ "nodetype" : "optional",
4192
+ "module" : "HC-RMON-MIB",
4193
+ "description" :
4194
+ """The etherStatsHighCapacityGroup is optional but requires
4195
+ implementation of the rmonEtherStatsGroup.""",
4196
+ },
4197
+ "etherHistoryHighCapacityGroup" : {
4198
+ "nodetype" : "optional",
4199
+ "module" : "HC-RMON-MIB",
4200
+ "description" :
4201
+ """The etherHistoryHighCapacityGroup is optional but
4202
+ requires implementation of the rmonHistoryControlGroup and
4203
+ rmonEthernetHistoryGroup.""",
4204
+ },
4205
+ "hostHighCapacityGroup" : {
4206
+ "nodetype" : "optional",
4207
+ "module" : "HC-RMON-MIB",
4208
+ "description" :
4209
+ """The hostHighCapacityGroup is mandatory when the
4210
+ hostTopNHighCapacityGroup is implemented. This group also
4211
+ requires implementation of the rmonHostGroup.""",
4212
+ },
4213
+ "hostTopNHighCapacityGroup" : {
4214
+ "nodetype" : "optional",
4215
+ "module" : "HC-RMON-MIB",
4216
+ "description" :
4217
+ """The hostTopNHighCapacityGroup is optional but requires
4218
+ implementation of the rmonHostTopNGroup.""",
4219
+ },
4220
+ "matrixHighCapacityGroup" : {
4221
+ "nodetype" : "optional",
4222
+ "module" : "HC-RMON-MIB",
4223
+ "description" :
4224
+ """The matrixHighCapacityGroup is optional but requires
4225
+ implementation of the rmonMatrixGroup.""",
4226
+ },
4227
+ "captureBufferHighCapacityGroup" : {
4228
+ "nodetype" : "optional",
4229
+ "module" : "HC-RMON-MIB",
4230
+ "description" :
4231
+ """The captureBufferHighCapacityGroup is optional but
4232
+ requires implementation of the rmonFilterGroup and
4233
+ rmonPacketCaptureGroup.""",
4234
+ },
4235
+ "rmonEtherStatsGroup" : {
4236
+ "nodetype" : "optional",
4237
+ "module" : "RMON-MIB",
4238
+ "description" :
4239
+ """The RMON Ethernet Statistics Group is mandatory if the
4240
+ etherStatsHighCapacityGroup is implemented.""",
4241
+ },
4242
+ "rmonHistoryControlGroup" : {
4243
+ "nodetype" : "optional",
4244
+ "module" : "RMON-MIB",
4245
+ "description" :
4246
+ """The RMON History Control Group is mandatory if the
4247
+ etherHistoryHighCapacityGroup is implemented.""",
4248
+ },
4249
+ "rmonEthernetHistoryGroup" : {
4250
+ "nodetype" : "optional",
4251
+ "module" : "RMON-MIB",
4252
+ "description" :
4253
+ """The RMON Ethernet History Group is mandatory if the
4254
+ etherHistoryHighCapacityGroup is implemented.""",
4255
+ },
4256
+ "rmonHostGroup" : {
4257
+ "nodetype" : "optional",
4258
+ "module" : "RMON-MIB",
4259
+ "description" :
4260
+ """The RMON Host Group is mandatory if the
4261
+ hostHighCapacityGroup is implemented.""",
4262
+ },
4263
+ "rmonHostTopNGroup" : {
4264
+ "nodetype" : "optional",
4265
+ "module" : "RMON-MIB",
4266
+ "description" :
4267
+ """The RMON Host Top N Group is mandatory if the
4268
+ hostTopNHighCapacityGroup is implemented.""",
4269
+ },
4270
+ "rmonMatrixGroup" : {
4271
+ "nodetype" : "optional",
4272
+ "module" : "RMON-MIB",
4273
+ "description" :
4274
+ """The RMON Matrix Group is mandatory if the
4275
+ matrixHighCapacityGroup is implemented.""",
4276
+ },
4277
+ "rmonFilterGroup" : {
4278
+ "nodetype" : "optional",
4279
+ "module" : "RMON-MIB",
4280
+ "description" :
4281
+ """The RMON Filter Group is mandatory when the
4282
+ captureBufferHighCapacityGroup is implemented.""",
4283
+ },
4284
+ "rmonPacketCaptureGroup" : {
4285
+ "nodetype" : "optional",
4286
+ "module" : "RMON-MIB",
4287
+ "description" :
4288
+ """The RMON Packet Capture Group is mandatory when the
4289
+ captureBufferHighCapacityGroup is implemented.""",
4290
+ },
4291
+ }, # requires
4292
+ }, # compliance
4293
+ "hcRmon2MIBCompliance" : {
4294
+ "nodetype" : "compliance",
4295
+ "moduleName" : "HC-RMON-MIB",
4296
+ "oid" : "1.3.6.1.2.1.16.20.6.3",
4297
+ "status" : "current",
4298
+ "description" :
4299
+ """Describes the requirements for conformance to
4300
+ the High Capacity RMON-2 MIB""",
4301
+ "requires" : {
4302
+ "protocolDistributionHighCapacityGroup" : {
4303
+ "nodetype" : "mandatory",
4304
+ "module" : "HC-RMON-MIB"
4305
+ },
4306
+ "nlHostHighCapacityGroup" : {
4307
+ "nodetype" : "mandatory",
4308
+ "module" : "HC-RMON-MIB"
4309
+ },
4310
+ "nlMatrixHighCapacityGroup" : {
4311
+ "nodetype" : "mandatory",
4312
+ "module" : "HC-RMON-MIB"
4313
+ },
4314
+ "nlMatrixTopNHighCapacityGroup" : {
4315
+ "nodetype" : "mandatory",
4316
+ "module" : "HC-RMON-MIB"
4317
+ },
4318
+ "usrHistoryHighCapacityGroup" : {
4319
+ "nodetype" : "mandatory",
4320
+ "module" : "HC-RMON-MIB"
4321
+ },
4322
+ "hcRMONInformationGroup" : {
4323
+ "nodetype" : "mandatory",
4324
+ "module" : "HC-RMON-MIB"
4325
+ },
4326
+ "protocolDirectoryGroup" : {
4327
+ "nodetype" : "mandatory",
4328
+ "module" : "RMON2-MIB"
4329
+ },
4330
+ "protocolDistributionGroup" : {
4331
+ "nodetype" : "mandatory",
4332
+ "module" : "RMON2-MIB"
4333
+ },
4334
+ "addressMapGroup" : {
4335
+ "nodetype" : "mandatory",
4336
+ "module" : "RMON2-MIB"
4337
+ },
4338
+ "nlHostGroup" : {
4339
+ "nodetype" : "mandatory",
4340
+ "module" : "RMON2-MIB"
4341
+ },
4342
+ "nlMatrixGroup" : {
4343
+ "nodetype" : "mandatory",
4344
+ "module" : "RMON2-MIB"
4345
+ },
4346
+ "usrHistoryGroup" : {
4347
+ "nodetype" : "mandatory",
4348
+ "module" : "RMON2-MIB"
4349
+ },
4350
+ "probeInformationGroup" : {
4351
+ "nodetype" : "mandatory",
4352
+ "module" : "RMON2-MIB"
4353
+ },
4354
+ "rmon1EnhancementGroup" : {
4355
+ "nodetype" : "optional",
4356
+ "module" : "RMON2-MIB",
4357
+ "description" :
4358
+ """The rmon1EnhancementGroup is mandatory for systems which
4359
+ implement RMON [RFC2819]""",
4360
+ },
4361
+ }, # requires
4362
+ }, # compliance
4363
+ "hcRmon2MIBApplicationLayerCompliance" : {
4364
+ "nodetype" : "compliance",
4365
+ "moduleName" : "HC-RMON-MIB",
4366
+ "oid" : "1.3.6.1.2.1.16.20.6.4",
4367
+ "status" : "current",
4368
+ "description" :
4369
+ """Describes the requirements for conformance to
4370
+ the High Capacity RMON-2 MIB with Application Layer
4371
+ Enhancements.""",
4372
+ "requires" : {
4373
+ "protocolDistributionHighCapacityGroup" : {
4374
+ "nodetype" : "mandatory",
4375
+ "module" : "HC-RMON-MIB"
4376
+ },
4377
+ "nlHostHighCapacityGroup" : {
4378
+ "nodetype" : "mandatory",
4379
+ "module" : "HC-RMON-MIB"
4380
+ },
4381
+ "nlMatrixHighCapacityGroup" : {
4382
+ "nodetype" : "mandatory",
4383
+ "module" : "HC-RMON-MIB"
4384
+ },
4385
+ "nlMatrixTopNHighCapacityGroup" : {
4386
+ "nodetype" : "mandatory",
4387
+ "module" : "HC-RMON-MIB"
4388
+ },
4389
+ "alHostHighCapacityGroup" : {
4390
+ "nodetype" : "mandatory",
4391
+ "module" : "HC-RMON-MIB"
4392
+ },
4393
+ "alMatrixHighCapacityGroup" : {
4394
+ "nodetype" : "mandatory",
4395
+ "module" : "HC-RMON-MIB"
4396
+ },
4397
+ "alMatrixTopNHighCapacityGroup" : {
4398
+ "nodetype" : "mandatory",
4399
+ "module" : "HC-RMON-MIB"
4400
+ },
4401
+ "usrHistoryHighCapacityGroup" : {
4402
+ "nodetype" : "mandatory",
4403
+ "module" : "HC-RMON-MIB"
4404
+ },
4405
+ "hcRMONInformationGroup" : {
4406
+ "nodetype" : "mandatory",
4407
+ "module" : "HC-RMON-MIB"
4408
+ },
4409
+ "protocolDirectoryGroup" : {
4410
+ "nodetype" : "mandatory",
4411
+ "module" : "RMON2-MIB"
4412
+ },
4413
+ "protocolDistributionGroup" : {
4414
+ "nodetype" : "mandatory",
4415
+ "module" : "RMON2-MIB"
4416
+ },
4417
+ "addressMapGroup" : {
4418
+ "nodetype" : "mandatory",
4419
+ "module" : "RMON2-MIB"
4420
+ },
4421
+ "nlHostGroup" : {
4422
+ "nodetype" : "mandatory",
4423
+ "module" : "RMON2-MIB"
4424
+ },
4425
+ "nlMatrixGroup" : {
4426
+ "nodetype" : "mandatory",
4427
+ "module" : "RMON2-MIB"
4428
+ },
4429
+ "alHostGroup" : {
4430
+ "nodetype" : "mandatory",
4431
+ "module" : "RMON2-MIB"
4432
+ },
4433
+ "alMatrixGroup" : {
4434
+ "nodetype" : "mandatory",
4435
+ "module" : "RMON2-MIB"
4436
+ },
4437
+ "usrHistoryGroup" : {
4438
+ "nodetype" : "mandatory",
4439
+ "module" : "RMON2-MIB"
4440
+ },
4441
+ "probeInformationGroup" : {
4442
+ "nodetype" : "mandatory",
4443
+ "module" : "RMON2-MIB"
4444
+ },
4445
+ "rmon1EnhancementGroup" : {
4446
+ "nodetype" : "optional",
4447
+ "module" : "RMON2-MIB",
4448
+ "description" :
4449
+ """The rmon1EnhancementGroup is mandatory for systems which
4450
+ implement RMON [RFC2819]""",
4451
+ },
4452
+ }, # requires
4453
+ }, # compliance
4454
+ }, # compliances
4455
+
4456
+ }