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,2820 @@
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 TOKEN-RING-RMON-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TOKEN-RING-RMON-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TOKEN-RING-RMON-MIB",
11
+
12
+ "TOKEN-RING-RMON-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv1",
15
+ },
16
+
17
+ "imports" : (
18
+ {"module" : "RFC1155-SMI", "name" : "Counter"},
19
+ {"module" : "RFC1155-SMI", "name" : "TimeTicks"},
20
+ {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
21
+ {"module" : "RFC1271-MIB", "name" : "OwnerString"},
22
+ {"module" : "RFC1271-MIB", "name" : "EntryStatus"},
23
+ {"module" : "RFC1271-MIB", "name" : "rmon"},
24
+ {"module" : "RFC1271-MIB", "name" : "statistics"},
25
+ {"module" : "RFC1271-MIB", "name" : "history"},
26
+ ),
27
+
28
+ "typedefs" : {
29
+ "MacAddress" : {
30
+ "basetype" : "OctetString",
31
+ "ranges" : [
32
+ {
33
+ "min" : "6",
34
+ "max" : "6"
35
+ },
36
+ ],
37
+ "range" : {
38
+ "min" : "6",
39
+ "max" : "6"
40
+ },
41
+ },
42
+ "TimeInterval" : {
43
+ "basetype" : "Integer32",
44
+ },
45
+ }, # typedefs
46
+
47
+ "nodes" : {
48
+ "tokenRingMLStatsTable" : {
49
+ "nodetype" : "table",
50
+ "moduleName" : "TOKEN-RING-RMON-MIB",
51
+ "oid" : "1.3.6.1.2.1.16.1.2",
52
+ "status" : "current",
53
+ "description" :
54
+ """A list of Mac-Layer Token Ring statistics
55
+ entries.""",
56
+ }, # table
57
+ "tokenRingMLStatsEntry" : {
58
+ "nodetype" : "row",
59
+ "moduleName" : "TOKEN-RING-RMON-MIB",
60
+ "oid" : "1.3.6.1.2.1.16.1.2.1",
61
+ "status" : "current",
62
+ "linkage" : [
63
+ "tokenRingMLStatsIndex",
64
+ ],
65
+ "description" :
66
+ """A collection of Mac-Layer statistics kept for a
67
+ particular Token Ring interface.""",
68
+ }, # row
69
+ "tokenRingMLStatsIndex" : {
70
+ "nodetype" : "column",
71
+ "moduleName" : "TOKEN-RING-RMON-MIB",
72
+ "oid" : "1.3.6.1.2.1.16.1.2.1.1",
73
+ "status" : "current",
74
+ "syntax" : {
75
+ "type" : {
76
+ "basetype" : "Integer32",
77
+ "ranges" : [
78
+ {
79
+ "min" : "1",
80
+ "max" : "65535"
81
+ },
82
+ ],
83
+ "range" : {
84
+ "min" : "1",
85
+ "max" : "65535"
86
+ },
87
+ },
88
+ },
89
+ "access" : "readonly",
90
+ "description" :
91
+ """The value of this object uniquely identifies this
92
+ tokenRingMLStats entry.""",
93
+ }, # column
94
+ "tokenRingMLStatsDataSource" : {
95
+ "nodetype" : "column",
96
+ "moduleName" : "TOKEN-RING-RMON-MIB",
97
+ "oid" : "1.3.6.1.2.1.16.1.2.1.2",
98
+ "status" : "current",
99
+ "syntax" : {
100
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
101
+ },
102
+ "access" : "readwrite",
103
+ "description" :
104
+ """This object identifies the source of the data
105
+ that this tokenRingMLStats entry is configured to
106
+ analyze. This source can be any tokenRing
107
+ interface on this device. In order to identify a
108
+ particular interface, this object shall identify
109
+ the instance of the ifIndex object, defined in
110
+ MIB-II [3], for the desired interface. For
111
+ example, if an entry were to receive data from
112
+ interface #1, this object would be set to
113
+ ifIndex.1.
114
+
115
+ The statistics in this group reflect all error
116
+ reports on the local network segment attached to
117
+ the identified interface.
118
+
119
+ This object may not be modified if the associated
120
+ tokenRingMLStatsStatus object is equal to
121
+ valid(1).""",
122
+ }, # column
123
+ "tokenRingMLStatsDropEvents" : {
124
+ "nodetype" : "column",
125
+ "moduleName" : "TOKEN-RING-RMON-MIB",
126
+ "oid" : "1.3.6.1.2.1.16.1.2.1.3",
127
+ "status" : "current",
128
+ "syntax" : {
129
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
130
+ },
131
+ "access" : "readonly",
132
+ "description" :
133
+ """The total number of events in which packets were
134
+ dropped by the probe due to lack of resources.
135
+ Note that this number is not necessarily the
136
+ number of packets dropped; it is just the number
137
+ of times this condition has been detected. This
138
+ value is the same as the corresponding
139
+ tokenRingPStatsDropEvents.""",
140
+ }, # column
141
+ "tokenRingMLStatsMacOctets" : {
142
+ "nodetype" : "column",
143
+ "moduleName" : "TOKEN-RING-RMON-MIB",
144
+ "oid" : "1.3.6.1.2.1.16.1.2.1.4",
145
+ "status" : "current",
146
+ "syntax" : {
147
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
148
+ },
149
+ "access" : "readonly",
150
+ "description" :
151
+ """The total number of octets of data in MAC packets
152
+ (excluding those that were not good frames)
153
+ received on the network (excluding framing bits
154
+ but including FCS octets).""",
155
+ }, # column
156
+ "tokenRingMLStatsMacPkts" : {
157
+ "nodetype" : "column",
158
+ "moduleName" : "TOKEN-RING-RMON-MIB",
159
+ "oid" : "1.3.6.1.2.1.16.1.2.1.5",
160
+ "status" : "current",
161
+ "syntax" : {
162
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
163
+ },
164
+ "access" : "readonly",
165
+ "description" :
166
+ """The total number of MAC packets (excluding
167
+ packets that were not good frames) received.""",
168
+ }, # column
169
+ "tokenRingMLStatsRingPurgeEvents" : {
170
+ "nodetype" : "column",
171
+ "moduleName" : "TOKEN-RING-RMON-MIB",
172
+ "oid" : "1.3.6.1.2.1.16.1.2.1.6",
173
+ "status" : "current",
174
+ "syntax" : {
175
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
176
+ },
177
+ "access" : "readonly",
178
+ "description" :
179
+ """The total number of times that the ring enters
180
+ the ring purge state from normal ring state. The
181
+ ring purge state that comes in response to the
182
+ claim token or beacon state is not counted.""",
183
+ }, # column
184
+ "tokenRingMLStatsRingPurgePkts" : {
185
+ "nodetype" : "column",
186
+ "moduleName" : "TOKEN-RING-RMON-MIB",
187
+ "oid" : "1.3.6.1.2.1.16.1.2.1.7",
188
+ "status" : "current",
189
+ "syntax" : {
190
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
191
+ },
192
+ "access" : "readonly",
193
+ "description" :
194
+ """The total number of ring purge MAC packets
195
+ detected by probe.""",
196
+ }, # column
197
+ "tokenRingMLStatsBeaconEvents" : {
198
+ "nodetype" : "column",
199
+ "moduleName" : "TOKEN-RING-RMON-MIB",
200
+ "oid" : "1.3.6.1.2.1.16.1.2.1.8",
201
+ "status" : "current",
202
+ "syntax" : {
203
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
204
+ },
205
+ "access" : "readonly",
206
+ "description" :
207
+ """The total number of times that the ring enters a
208
+ beaconing state (beaconFrameStreamingState,
209
+ beaconBitStreamingState,
210
+ beaconSetRecoveryModeState, or
211
+ beaconRingSignalLossState) from a non-beaconing
212
+ state. Note that a change of the source address
213
+ of the beacon packet does not constitute a new
214
+ beacon event.""",
215
+ }, # column
216
+ "tokenRingMLStatsBeaconTime" : {
217
+ "nodetype" : "column",
218
+ "moduleName" : "TOKEN-RING-RMON-MIB",
219
+ "oid" : "1.3.6.1.2.1.16.1.2.1.9",
220
+ "status" : "current",
221
+ "syntax" : {
222
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "TimeInterval"},
223
+ },
224
+ "access" : "readonly",
225
+ "description" :
226
+ """The total amount of time that the ring has been
227
+ in the beaconing state.""",
228
+ }, # column
229
+ "tokenRingMLStatsBeaconPkts" : {
230
+ "nodetype" : "column",
231
+ "moduleName" : "TOKEN-RING-RMON-MIB",
232
+ "oid" : "1.3.6.1.2.1.16.1.2.1.10",
233
+ "status" : "current",
234
+ "syntax" : {
235
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
236
+ },
237
+ "access" : "readonly",
238
+ "description" :
239
+ """The total number of beacon MAC packets detected
240
+ by the probe.""",
241
+ }, # column
242
+ "tokenRingMLStatsClaimTokenEvents" : {
243
+ "nodetype" : "column",
244
+ "moduleName" : "TOKEN-RING-RMON-MIB",
245
+ "oid" : "1.3.6.1.2.1.16.1.2.1.11",
246
+ "status" : "current",
247
+ "syntax" : {
248
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
249
+ },
250
+ "access" : "readonly",
251
+ "description" :
252
+ """The total number of times that the ring enters
253
+ the claim token state from normal ring state or
254
+ ring purge state. The claim token state that
255
+ comes in response to a beacon state is not
256
+ counted.""",
257
+ }, # column
258
+ "tokenRingMLStatsClaimTokenPkts" : {
259
+ "nodetype" : "column",
260
+ "moduleName" : "TOKEN-RING-RMON-MIB",
261
+ "oid" : "1.3.6.1.2.1.16.1.2.1.12",
262
+ "status" : "current",
263
+ "syntax" : {
264
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
265
+ },
266
+ "access" : "readonly",
267
+ "description" :
268
+ """The total number of claim token MAC packets
269
+ detected by the probe.""",
270
+ }, # column
271
+ "tokenRingMLStatsNAUNChanges" : {
272
+ "nodetype" : "column",
273
+ "moduleName" : "TOKEN-RING-RMON-MIB",
274
+ "oid" : "1.3.6.1.2.1.16.1.2.1.13",
275
+ "status" : "current",
276
+ "syntax" : {
277
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
278
+ },
279
+ "access" : "readonly",
280
+ "description" :
281
+ """The total number of NAUN changes detected by the
282
+ probe.""",
283
+ }, # column
284
+ "tokenRingMLStatsLineErrors" : {
285
+ "nodetype" : "column",
286
+ "moduleName" : "TOKEN-RING-RMON-MIB",
287
+ "oid" : "1.3.6.1.2.1.16.1.2.1.14",
288
+ "status" : "current",
289
+ "syntax" : {
290
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
291
+ },
292
+ "access" : "readonly",
293
+ "description" :
294
+ """The total number of line errors reported in error
295
+ reporting packets detected by the probe.""",
296
+ }, # column
297
+ "tokenRingMLStatsInternalErrors" : {
298
+ "nodetype" : "column",
299
+ "moduleName" : "TOKEN-RING-RMON-MIB",
300
+ "oid" : "1.3.6.1.2.1.16.1.2.1.15",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
304
+ },
305
+ "access" : "readonly",
306
+ "description" :
307
+ """The total number of adapter internal errors
308
+ reported in error reporting packets detected by
309
+ the probe.""",
310
+ }, # column
311
+ "tokenRingMLStatsBurstErrors" : {
312
+ "nodetype" : "column",
313
+ "moduleName" : "TOKEN-RING-RMON-MIB",
314
+ "oid" : "1.3.6.1.2.1.16.1.2.1.16",
315
+ "status" : "current",
316
+ "syntax" : {
317
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
318
+ },
319
+ "access" : "readonly",
320
+ "description" :
321
+ """The total number of burst errors reported in
322
+ error reporting packets detected by the probe.""",
323
+ }, # column
324
+ "tokenRingMLStatsACErrors" : {
325
+ "nodetype" : "column",
326
+ "moduleName" : "TOKEN-RING-RMON-MIB",
327
+ "oid" : "1.3.6.1.2.1.16.1.2.1.17",
328
+ "status" : "current",
329
+ "syntax" : {
330
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
331
+ },
332
+ "access" : "readonly",
333
+ "description" :
334
+ """The total number of AC (Address Copied) errors
335
+ reported in error reporting packets detected by
336
+ the probe.""",
337
+ }, # column
338
+ "tokenRingMLStatsAbortErrors" : {
339
+ "nodetype" : "column",
340
+ "moduleName" : "TOKEN-RING-RMON-MIB",
341
+ "oid" : "1.3.6.1.2.1.16.1.2.1.18",
342
+ "status" : "current",
343
+ "syntax" : {
344
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
345
+ },
346
+ "access" : "readonly",
347
+ "description" :
348
+ """The total number of abort delimiters reported in
349
+ error reporting packets detected by the probe.""",
350
+ }, # column
351
+ "tokenRingMLStatsLostFrameErrors" : {
352
+ "nodetype" : "column",
353
+ "moduleName" : "TOKEN-RING-RMON-MIB",
354
+ "oid" : "1.3.6.1.2.1.16.1.2.1.19",
355
+ "status" : "current",
356
+ "syntax" : {
357
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
358
+ },
359
+ "access" : "readonly",
360
+ "description" :
361
+ """The total number of lost frame errors reported in
362
+ error reporting packets detected by the probe.""",
363
+ }, # column
364
+ "tokenRingMLStatsCongestionErrors" : {
365
+ "nodetype" : "column",
366
+ "moduleName" : "TOKEN-RING-RMON-MIB",
367
+ "oid" : "1.3.6.1.2.1.16.1.2.1.20",
368
+ "status" : "current",
369
+ "syntax" : {
370
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
371
+ },
372
+ "access" : "readonly",
373
+ "description" :
374
+ """The total number of receive congestion errors
375
+ reported in error reporting packets detected by
376
+ the probe.""",
377
+ }, # column
378
+ "tokenRingMLStatsFrameCopiedErrors" : {
379
+ "nodetype" : "column",
380
+ "moduleName" : "TOKEN-RING-RMON-MIB",
381
+ "oid" : "1.3.6.1.2.1.16.1.2.1.21",
382
+ "status" : "current",
383
+ "syntax" : {
384
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
385
+ },
386
+ "access" : "readonly",
387
+ "description" :
388
+ """The total number of frame copied errors reported
389
+ in error reporting packets detected by the probe.""",
390
+ }, # column
391
+ "tokenRingMLStatsFrequencyErrors" : {
392
+ "nodetype" : "column",
393
+ "moduleName" : "TOKEN-RING-RMON-MIB",
394
+ "oid" : "1.3.6.1.2.1.16.1.2.1.22",
395
+ "status" : "current",
396
+ "syntax" : {
397
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
398
+ },
399
+ "access" : "readonly",
400
+ "description" :
401
+ """The total number of frequency errors reported in
402
+ error reporting packets detected by the probe.""",
403
+ }, # column
404
+ "tokenRingMLStatsTokenErrors" : {
405
+ "nodetype" : "column",
406
+ "moduleName" : "TOKEN-RING-RMON-MIB",
407
+ "oid" : "1.3.6.1.2.1.16.1.2.1.23",
408
+ "status" : "current",
409
+ "syntax" : {
410
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
411
+ },
412
+ "access" : "readonly",
413
+ "description" :
414
+ """The total number of token errors reported in
415
+ error reporting packets detected by the probe.""",
416
+ }, # column
417
+ "tokenRingMLStatsSoftErrorReports" : {
418
+ "nodetype" : "column",
419
+ "moduleName" : "TOKEN-RING-RMON-MIB",
420
+ "oid" : "1.3.6.1.2.1.16.1.2.1.24",
421
+ "status" : "current",
422
+ "syntax" : {
423
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
424
+ },
425
+ "access" : "readonly",
426
+ "description" :
427
+ """The total number of soft error report frames
428
+ detected by the probe.""",
429
+ }, # column
430
+ "tokenRingMLStatsRingPollEvents" : {
431
+ "nodetype" : "column",
432
+ "moduleName" : "TOKEN-RING-RMON-MIB",
433
+ "oid" : "1.3.6.1.2.1.16.1.2.1.25",
434
+ "status" : "current",
435
+ "syntax" : {
436
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
437
+ },
438
+ "access" : "readonly",
439
+ "description" :
440
+ """The total number of ring poll events detected by
441
+ the probe (i.e. the number of ring polls initiated
442
+ by the active monitor that were detected).""",
443
+ }, # column
444
+ "tokenRingMLStatsOwner" : {
445
+ "nodetype" : "column",
446
+ "moduleName" : "TOKEN-RING-RMON-MIB",
447
+ "oid" : "1.3.6.1.2.1.16.1.2.1.26",
448
+ "status" : "current",
449
+ "syntax" : {
450
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
451
+ },
452
+ "access" : "readwrite",
453
+ "description" :
454
+ """The entity that configured this entry and is
455
+ therefore using the resources assigned to it.""",
456
+ }, # column
457
+ "tokenRingMLStatsStatus" : {
458
+ "nodetype" : "column",
459
+ "moduleName" : "TOKEN-RING-RMON-MIB",
460
+ "oid" : "1.3.6.1.2.1.16.1.2.1.27",
461
+ "status" : "current",
462
+ "syntax" : {
463
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
464
+ },
465
+ "access" : "readwrite",
466
+ "description" :
467
+ """The status of this tokenRingMLStats entry.""",
468
+ }, # column
469
+ "tokenRingPStatsTable" : {
470
+ "nodetype" : "table",
471
+ "moduleName" : "TOKEN-RING-RMON-MIB",
472
+ "oid" : "1.3.6.1.2.1.16.1.3",
473
+ "status" : "current",
474
+ "description" :
475
+ """A list of promiscuous Token Ring statistics
476
+ entries.""",
477
+ }, # table
478
+ "tokenRingPStatsEntry" : {
479
+ "nodetype" : "row",
480
+ "moduleName" : "TOKEN-RING-RMON-MIB",
481
+ "oid" : "1.3.6.1.2.1.16.1.3.1",
482
+ "status" : "current",
483
+ "linkage" : [
484
+ "tokenRingPStatsIndex",
485
+ ],
486
+ "description" :
487
+ """A collection of promiscuous statistics kept for
488
+ non-MAC packets on a particular Token Ring
489
+ interface.""",
490
+ }, # row
491
+ "tokenRingPStatsIndex" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "TOKEN-RING-RMON-MIB",
494
+ "oid" : "1.3.6.1.2.1.16.1.3.1.1",
495
+ "status" : "current",
496
+ "syntax" : {
497
+ "type" : {
498
+ "basetype" : "Integer32",
499
+ "ranges" : [
500
+ {
501
+ "min" : "1",
502
+ "max" : "65535"
503
+ },
504
+ ],
505
+ "range" : {
506
+ "min" : "1",
507
+ "max" : "65535"
508
+ },
509
+ },
510
+ },
511
+ "access" : "readonly",
512
+ "description" :
513
+ """The value of this object uniquely identifies this
514
+ tokenRingPStats entry.""",
515
+ }, # column
516
+ "tokenRingPStatsDataSource" : {
517
+ "nodetype" : "column",
518
+ "moduleName" : "TOKEN-RING-RMON-MIB",
519
+ "oid" : "1.3.6.1.2.1.16.1.3.1.2",
520
+ "status" : "current",
521
+ "syntax" : {
522
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
523
+ },
524
+ "access" : "readwrite",
525
+ "description" :
526
+ """This object identifies the source of the data
527
+ that this tokenRingPStats entry is configured to
528
+ analyze. This source can be any tokenRing
529
+ interface on this device. In order to identify a
530
+ particular interface, this object shall identify
531
+ the instance of the ifIndex object, defined in
532
+ MIB-II [3], for the desired interface. For
533
+ example, if an entry were to receive data from
534
+ interface #1, this object would be set to
535
+ ifIndex.1.
536
+
537
+ The statistics in this group reflect all non-MAC
538
+ packets on the local network segment attached to
539
+ the identified interface.
540
+
541
+ This object may not be modified if the associated
542
+ tokenRingPStatsStatus object is equal to
543
+ valid(1).""",
544
+ }, # column
545
+ "tokenRingPStatsDropEvents" : {
546
+ "nodetype" : "column",
547
+ "moduleName" : "TOKEN-RING-RMON-MIB",
548
+ "oid" : "1.3.6.1.2.1.16.1.3.1.3",
549
+ "status" : "current",
550
+ "syntax" : {
551
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
552
+ },
553
+ "access" : "readonly",
554
+ "description" :
555
+ """The total number of events in which packets were
556
+ dropped by the probe due to lack of resources.
557
+ Note that this number is not necessarily the
558
+ number of packets dropped; it is just the number
559
+ of times this condition has been detected. This
560
+ value is the same as the corresponding
561
+ tokenRingMLStatsDropEvents""",
562
+ }, # column
563
+ "tokenRingPStatsDataOctets" : {
564
+ "nodetype" : "column",
565
+ "moduleName" : "TOKEN-RING-RMON-MIB",
566
+ "oid" : "1.3.6.1.2.1.16.1.3.1.4",
567
+ "status" : "current",
568
+ "syntax" : {
569
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
570
+ },
571
+ "access" : "readonly",
572
+ "description" :
573
+ """The total number of octets of data in good frames
574
+ received on the network (excluding framing bits
575
+ but including FCS octets) in non-MAC packets.""",
576
+ }, # column
577
+ "tokenRingPStatsDataPkts" : {
578
+ "nodetype" : "column",
579
+ "moduleName" : "TOKEN-RING-RMON-MIB",
580
+ "oid" : "1.3.6.1.2.1.16.1.3.1.5",
581
+ "status" : "current",
582
+ "syntax" : {
583
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
584
+ },
585
+ "access" : "readonly",
586
+ "description" :
587
+ """The total number of non-MAC packets in good
588
+ frames. received.""",
589
+ }, # column
590
+ "tokenRingPStatsDataBroadcastPkts" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "TOKEN-RING-RMON-MIB",
593
+ "oid" : "1.3.6.1.2.1.16.1.3.1.6",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
597
+ },
598
+ "access" : "readonly",
599
+ "description" :
600
+ """The total number of good non-MAC frames received
601
+ that were directed to an LLC broadcast address
602
+ (0xFFFFFFFFFFFF or 0xC000FFFFFFFF).""",
603
+ }, # column
604
+ "tokenRingPStatsDataMulticastPkts" : {
605
+ "nodetype" : "column",
606
+ "moduleName" : "TOKEN-RING-RMON-MIB",
607
+ "oid" : "1.3.6.1.2.1.16.1.3.1.7",
608
+ "status" : "current",
609
+ "syntax" : {
610
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
611
+ },
612
+ "access" : "readonly",
613
+ "description" :
614
+ """The total number of good non-MAC frames received
615
+ that were directed to a local or global multicast
616
+ or functional address. Note that this number does
617
+ not include packets directed to the broadcast
618
+ address.""",
619
+ }, # column
620
+ "tokenRingPStatsDataPkts18to63Octets" : {
621
+ "nodetype" : "column",
622
+ "moduleName" : "TOKEN-RING-RMON-MIB",
623
+ "oid" : "1.3.6.1.2.1.16.1.3.1.8",
624
+ "status" : "current",
625
+ "syntax" : {
626
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
627
+ },
628
+ "access" : "readonly",
629
+ "description" :
630
+ """The total number of good non-MAC frames received
631
+ that were between 18 and 63 octets in length
632
+ inclusive, excluding framing bits but including
633
+ FCS octets.""",
634
+ }, # column
635
+ "tokenRingPStatsDataPkts64to127Octets" : {
636
+ "nodetype" : "column",
637
+ "moduleName" : "TOKEN-RING-RMON-MIB",
638
+ "oid" : "1.3.6.1.2.1.16.1.3.1.9",
639
+ "status" : "current",
640
+ "syntax" : {
641
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
642
+ },
643
+ "access" : "readonly",
644
+ "description" :
645
+ """The total number of good non-MAC frames received
646
+ that were between 64 and 127 octets in length
647
+ inclusive, excluding framing bits but including
648
+ FCS octets.""",
649
+ }, # column
650
+ "tokenRingPStatsDataPkts128to255Octets" : {
651
+ "nodetype" : "column",
652
+ "moduleName" : "TOKEN-RING-RMON-MIB",
653
+ "oid" : "1.3.6.1.2.1.16.1.3.1.10",
654
+ "status" : "current",
655
+ "syntax" : {
656
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
657
+ },
658
+ "access" : "readonly",
659
+ "description" :
660
+ """The total number of good non-MAC frames received
661
+ that were between 128 and 255 octets in length
662
+ inclusive, excluding framing bits but including
663
+ FCS octets.""",
664
+ }, # column
665
+ "tokenRingPStatsDataPkts256to511Octets" : {
666
+ "nodetype" : "column",
667
+ "moduleName" : "TOKEN-RING-RMON-MIB",
668
+ "oid" : "1.3.6.1.2.1.16.1.3.1.11",
669
+ "status" : "current",
670
+ "syntax" : {
671
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
672
+ },
673
+ "access" : "readonly",
674
+ "description" :
675
+ """The total number of good non-MAC frames received
676
+ that were between 256 and 511 octets in length
677
+ inclusive, excluding framing bits but including
678
+ FCS octets.""",
679
+ }, # column
680
+ "tokenRingPStatsDataPkts512to1023Octets" : {
681
+ "nodetype" : "column",
682
+ "moduleName" : "TOKEN-RING-RMON-MIB",
683
+ "oid" : "1.3.6.1.2.1.16.1.3.1.12",
684
+ "status" : "current",
685
+ "syntax" : {
686
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
687
+ },
688
+ "access" : "readonly",
689
+ "description" :
690
+ """The total number of good non-MAC frames received
691
+ that were between 512 and 1023 octets in length
692
+ inclusive, excluding framing bits but including
693
+ FCS octets.""",
694
+ }, # column
695
+ "tokenRingPStatsDataPkts1024to2047Octets" : {
696
+ "nodetype" : "column",
697
+ "moduleName" : "TOKEN-RING-RMON-MIB",
698
+ "oid" : "1.3.6.1.2.1.16.1.3.1.13",
699
+ "status" : "current",
700
+ "syntax" : {
701
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
702
+ },
703
+ "access" : "readonly",
704
+ "description" :
705
+ """The total number of good non-MAC frames received
706
+ that were between 1024 and 2047 octets in length
707
+ inclusive, excluding framing bits but including
708
+ FCS octets.""",
709
+ }, # column
710
+ "tokenRingPStatsDataPkts2048to4095Octets" : {
711
+ "nodetype" : "column",
712
+ "moduleName" : "TOKEN-RING-RMON-MIB",
713
+ "oid" : "1.3.6.1.2.1.16.1.3.1.14",
714
+ "status" : "current",
715
+ "syntax" : {
716
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
717
+ },
718
+ "access" : "readonly",
719
+ "description" :
720
+ """The total number of good non-MAC frames received
721
+ that were between 2048 and 4095 octets in length
722
+ inclusive, excluding framing bits but including
723
+ FCS octets.""",
724
+ }, # column
725
+ "tokenRingPStatsDataPkts4096to8191Octets" : {
726
+ "nodetype" : "column",
727
+ "moduleName" : "TOKEN-RING-RMON-MIB",
728
+ "oid" : "1.3.6.1.2.1.16.1.3.1.15",
729
+ "status" : "current",
730
+ "syntax" : {
731
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
732
+ },
733
+ "access" : "readonly",
734
+ "description" :
735
+ """The total number of good non-MAC frames received
736
+ that were between 4096 and 8191 octets in length
737
+ inclusive, excluding framing bits but including
738
+ FCS octets.""",
739
+ }, # column
740
+ "tokenRingPStatsDataPkts8192to18000Octets" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "TOKEN-RING-RMON-MIB",
743
+ "oid" : "1.3.6.1.2.1.16.1.3.1.16",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
747
+ },
748
+ "access" : "readonly",
749
+ "description" :
750
+ """The total number of good non-MAC frames received
751
+ that were between 8192 and 18000 octets in length
752
+ inclusive, excluding framing bits but including
753
+ FCS octets.""",
754
+ }, # column
755
+ "tokenRingPStatsDataPktsGreaterThan18000Octets" : {
756
+ "nodetype" : "column",
757
+ "moduleName" : "TOKEN-RING-RMON-MIB",
758
+ "oid" : "1.3.6.1.2.1.16.1.3.1.17",
759
+ "status" : "current",
760
+ "syntax" : {
761
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
762
+ },
763
+ "access" : "readonly",
764
+ "description" :
765
+ """The total number of good non-MAC frames received
766
+ that were greater than 18000 octets in length,
767
+ excluding framing bits but including FCS octets.""",
768
+ }, # column
769
+ "tokenRingPStatsOwner" : {
770
+ "nodetype" : "column",
771
+ "moduleName" : "TOKEN-RING-RMON-MIB",
772
+ "oid" : "1.3.6.1.2.1.16.1.3.1.18",
773
+ "status" : "current",
774
+ "syntax" : {
775
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
776
+ },
777
+ "access" : "readwrite",
778
+ "description" :
779
+ """The entity that configured this entry and is
780
+ therefore using the resources assigned to it.""",
781
+ }, # column
782
+ "tokenRingPStatsStatus" : {
783
+ "nodetype" : "column",
784
+ "moduleName" : "TOKEN-RING-RMON-MIB",
785
+ "oid" : "1.3.6.1.2.1.16.1.3.1.19",
786
+ "status" : "current",
787
+ "syntax" : {
788
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
789
+ },
790
+ "access" : "readwrite",
791
+ "description" :
792
+ """The status of this tokenRingPStats entry.""",
793
+ }, # column
794
+ "tokenRingMLHistoryTable" : {
795
+ "nodetype" : "table",
796
+ "moduleName" : "TOKEN-RING-RMON-MIB",
797
+ "oid" : "1.3.6.1.2.1.16.2.3",
798
+ "status" : "current",
799
+ "description" :
800
+ """A list of Mac-Layer Token Ring statistics
801
+ entries.""",
802
+ }, # table
803
+ "tokenRingMLHistoryEntry" : {
804
+ "nodetype" : "row",
805
+ "moduleName" : "TOKEN-RING-RMON-MIB",
806
+ "oid" : "1.3.6.1.2.1.16.2.3.1",
807
+ "status" : "current",
808
+ "linkage" : [
809
+ "tokenRingMLHistoryIndex",
810
+ "tokenRingMLHistorySampleIndex",
811
+ ],
812
+ "description" :
813
+ """A collection of Mac-Layer statistics kept for a
814
+ particular Token Ring interface.""",
815
+ }, # row
816
+ "tokenRingMLHistoryIndex" : {
817
+ "nodetype" : "column",
818
+ "moduleName" : "TOKEN-RING-RMON-MIB",
819
+ "oid" : "1.3.6.1.2.1.16.2.3.1.1",
820
+ "status" : "current",
821
+ "syntax" : {
822
+ "type" : {
823
+ "basetype" : "Integer32",
824
+ "ranges" : [
825
+ {
826
+ "min" : "1",
827
+ "max" : "65535"
828
+ },
829
+ ],
830
+ "range" : {
831
+ "min" : "1",
832
+ "max" : "65535"
833
+ },
834
+ },
835
+ },
836
+ "access" : "readonly",
837
+ "description" :
838
+ """The history of which this entry is a part. The
839
+ history identified by a particular value of this
840
+ index is the same history as identified by the
841
+ same value of historyControlIndex.""",
842
+ }, # column
843
+ "tokenRingMLHistorySampleIndex" : {
844
+ "nodetype" : "column",
845
+ "moduleName" : "TOKEN-RING-RMON-MIB",
846
+ "oid" : "1.3.6.1.2.1.16.2.3.1.2",
847
+ "status" : "current",
848
+ "syntax" : {
849
+ "type" : { "module" :"", "name" : "Integer32"},
850
+ },
851
+ "access" : "readonly",
852
+ "description" :
853
+ """An index that uniquely identifies the particular
854
+ Mac-Layer sample this entry represents among all
855
+ Mac-Layer samples associated with the same
856
+ historyControlEntry. This index starts at 1 and
857
+ increases by one as each new sample is taken.""",
858
+ }, # column
859
+ "tokenRingMLHistoryIntervalStart" : {
860
+ "nodetype" : "column",
861
+ "moduleName" : "TOKEN-RING-RMON-MIB",
862
+ "oid" : "1.3.6.1.2.1.16.2.3.1.3",
863
+ "status" : "current",
864
+ "syntax" : {
865
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
866
+ },
867
+ "access" : "readonly",
868
+ "description" :
869
+ """The value of sysUpTime at the start of the
870
+ interval over which this sample was measured. If
871
+ the probe keeps track of the time of day, it
872
+ should start the first sample of the history at a
873
+ time such that when the next hour of the day
874
+ begins, a sample is started at that instant. Note
875
+ that following this rule may require the probe to
876
+ delay collecting the first sample of the history,
877
+ as each sample must be of the same interval. Also
878
+ note that the sample which is currently being
879
+ collected is not accessible in this table until
880
+ the end of its interval.""",
881
+ }, # column
882
+ "tokenRingMLHistoryDropEvents" : {
883
+ "nodetype" : "column",
884
+ "moduleName" : "TOKEN-RING-RMON-MIB",
885
+ "oid" : "1.3.6.1.2.1.16.2.3.1.4",
886
+ "status" : "current",
887
+ "syntax" : {
888
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
889
+ },
890
+ "access" : "readonly",
891
+ "description" :
892
+ """The total number of events in which packets were
893
+ dropped by the probe due to lack of resources
894
+ during this sampling interval. Note that this
895
+ number is not necessarily the number of packets
896
+ dropped, it is just the number of times this
897
+ condition has been detected.""",
898
+ }, # column
899
+ "tokenRingMLHistoryMacOctets" : {
900
+ "nodetype" : "column",
901
+ "moduleName" : "TOKEN-RING-RMON-MIB",
902
+ "oid" : "1.3.6.1.2.1.16.2.3.1.5",
903
+ "status" : "current",
904
+ "syntax" : {
905
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
906
+ },
907
+ "access" : "readonly",
908
+ "description" :
909
+ """The total number of octets of data in MAC packets
910
+ (excluding those that were not good frames)
911
+ received on the network during this sampling
912
+ interval (excluding framing bits but including FCS
913
+ octets).""",
914
+ }, # column
915
+ "tokenRingMLHistoryMacPkts" : {
916
+ "nodetype" : "column",
917
+ "moduleName" : "TOKEN-RING-RMON-MIB",
918
+ "oid" : "1.3.6.1.2.1.16.2.3.1.6",
919
+ "status" : "current",
920
+ "syntax" : {
921
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
922
+ },
923
+ "access" : "readonly",
924
+ "description" :
925
+ """The total number of MAC packets (excluding those
926
+ that were not good frames) received during this
927
+ sampling interval.""",
928
+ }, # column
929
+ "tokenRingMLHistoryRingPurgeEvents" : {
930
+ "nodetype" : "column",
931
+ "moduleName" : "TOKEN-RING-RMON-MIB",
932
+ "oid" : "1.3.6.1.2.1.16.2.3.1.7",
933
+ "status" : "current",
934
+ "syntax" : {
935
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
936
+ },
937
+ "access" : "readonly",
938
+ "description" :
939
+ """The total number of times that the ring entered
940
+ the ring purge state from normal ring state during
941
+ this sampling interval. The ring purge state that
942
+ comes from the claim token or beacon state is not
943
+ counted.""",
944
+ }, # column
945
+ "tokenRingMLHistoryRingPurgePkts" : {
946
+ "nodetype" : "column",
947
+ "moduleName" : "TOKEN-RING-RMON-MIB",
948
+ "oid" : "1.3.6.1.2.1.16.2.3.1.8",
949
+ "status" : "current",
950
+ "syntax" : {
951
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
952
+ },
953
+ "access" : "readonly",
954
+ "description" :
955
+ """The total number of Ring Purge MAC packets
956
+ detected by the probe during this sampling
957
+ interval.""",
958
+ }, # column
959
+ "tokenRingMLHistoryBeaconEvents" : {
960
+ "nodetype" : "column",
961
+ "moduleName" : "TOKEN-RING-RMON-MIB",
962
+ "oid" : "1.3.6.1.2.1.16.2.3.1.9",
963
+ "status" : "current",
964
+ "syntax" : {
965
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
966
+ },
967
+ "access" : "readonly",
968
+ "description" :
969
+ """The total number of times that the ring enters a
970
+ beaconing state (beaconFrameStreamingState,
971
+ beaconBitStreamingState,
972
+ beaconSetRecoveryModeState, or
973
+ beaconRingSignalLossState) during this sampling
974
+ interval. Note that a change of the source
975
+ address of the beacon packet does not constitute a
976
+ new beacon event.""",
977
+ }, # column
978
+ "tokenRingMLHistoryBeaconTime" : {
979
+ "nodetype" : "column",
980
+ "moduleName" : "TOKEN-RING-RMON-MIB",
981
+ "oid" : "1.3.6.1.2.1.16.2.3.1.10",
982
+ "status" : "current",
983
+ "syntax" : {
984
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "TimeInterval"},
985
+ },
986
+ "access" : "readonly",
987
+ "description" :
988
+ """The amount of time that the ring has been in the
989
+ beaconing state during this sampling interval.""",
990
+ }, # column
991
+ "tokenRingMLHistoryBeaconPkts" : {
992
+ "nodetype" : "column",
993
+ "moduleName" : "TOKEN-RING-RMON-MIB",
994
+ "oid" : "1.3.6.1.2.1.16.2.3.1.11",
995
+ "status" : "current",
996
+ "syntax" : {
997
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
998
+ },
999
+ "access" : "readonly",
1000
+ "description" :
1001
+ """The total number of beacon MAC packets detected
1002
+ by the probe during this sampling interval.""",
1003
+ }, # column
1004
+ "tokenRingMLHistoryClaimTokenEvents" : {
1005
+ "nodetype" : "column",
1006
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1007
+ "oid" : "1.3.6.1.2.1.16.2.3.1.12",
1008
+ "status" : "current",
1009
+ "syntax" : {
1010
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1011
+ },
1012
+ "access" : "readonly",
1013
+ "description" :
1014
+ """The total number of times that the ring enters
1015
+ the claim token state from normal ring state or
1016
+ ring purge state during this sampling interval.
1017
+ The claim token state that comes from the beacon
1018
+ state is not counted.""",
1019
+ }, # column
1020
+ "tokenRingMLHistoryClaimTokenPkts" : {
1021
+ "nodetype" : "column",
1022
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1023
+ "oid" : "1.3.6.1.2.1.16.2.3.1.13",
1024
+ "status" : "current",
1025
+ "syntax" : {
1026
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1027
+ },
1028
+ "access" : "readonly",
1029
+ "description" :
1030
+ """The total number of claim token MAC packets
1031
+ detected by the probe during this sampling
1032
+ interval.""",
1033
+ }, # column
1034
+ "tokenRingMLHistoryNAUNChanges" : {
1035
+ "nodetype" : "column",
1036
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1037
+ "oid" : "1.3.6.1.2.1.16.2.3.1.14",
1038
+ "status" : "current",
1039
+ "syntax" : {
1040
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1041
+ },
1042
+ "access" : "readonly",
1043
+ "description" :
1044
+ """The total number of NAUN changes detected by the
1045
+ probe during this sampling interval.""",
1046
+ }, # column
1047
+ "tokenRingMLHistoryLineErrors" : {
1048
+ "nodetype" : "column",
1049
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1050
+ "oid" : "1.3.6.1.2.1.16.2.3.1.15",
1051
+ "status" : "current",
1052
+ "syntax" : {
1053
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1054
+ },
1055
+ "access" : "readonly",
1056
+ "description" :
1057
+ """The total number of line errors reported in error
1058
+ reporting packets detected by the probe during
1059
+ this sampling interval.""",
1060
+ }, # column
1061
+ "tokenRingMLHistoryInternalErrors" : {
1062
+ "nodetype" : "column",
1063
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1064
+ "oid" : "1.3.6.1.2.1.16.2.3.1.16",
1065
+ "status" : "current",
1066
+ "syntax" : {
1067
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1068
+ },
1069
+ "access" : "readonly",
1070
+ "description" :
1071
+ """The total number of adapter internal errors
1072
+ reported in error reporting packets detected by
1073
+ the probe during this sampling interval.""",
1074
+ }, # column
1075
+ "tokenRingMLHistoryBurstErrors" : {
1076
+ "nodetype" : "column",
1077
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1078
+ "oid" : "1.3.6.1.2.1.16.2.3.1.17",
1079
+ "status" : "current",
1080
+ "syntax" : {
1081
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1082
+ },
1083
+ "access" : "readonly",
1084
+ "description" :
1085
+ """The total number of burst errors reported in
1086
+ error reporting packets detected by the probe
1087
+ during this sampling interval.""",
1088
+ }, # column
1089
+ "tokenRingMLHistoryACErrors" : {
1090
+ "nodetype" : "column",
1091
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1092
+ "oid" : "1.3.6.1.2.1.16.2.3.1.18",
1093
+ "status" : "current",
1094
+ "syntax" : {
1095
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1096
+ },
1097
+ "access" : "readonly",
1098
+ "description" :
1099
+ """The total number of AC (Address Copied) errors
1100
+ reported in error reporting packets detected by
1101
+ the probe during this sampling interval.""",
1102
+ }, # column
1103
+ "tokenRingMLHistoryAbortErrors" : {
1104
+ "nodetype" : "column",
1105
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1106
+ "oid" : "1.3.6.1.2.1.16.2.3.1.19",
1107
+ "status" : "current",
1108
+ "syntax" : {
1109
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1110
+ },
1111
+ "access" : "readonly",
1112
+ "description" :
1113
+ """The total number of abort delimiters reported in
1114
+ error reporting packets detected by the probe
1115
+ during this sampling interval.""",
1116
+ }, # column
1117
+ "tokenRingMLHistoryLostFrameErrors" : {
1118
+ "nodetype" : "column",
1119
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1120
+ "oid" : "1.3.6.1.2.1.16.2.3.1.20",
1121
+ "status" : "current",
1122
+ "syntax" : {
1123
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1124
+ },
1125
+ "access" : "readonly",
1126
+ "description" :
1127
+ """The total number of lost frame errors reported in
1128
+ error reporting packets detected by the probe
1129
+ during this sampling interval.""",
1130
+ }, # column
1131
+ "tokenRingMLHistoryCongestionErrors" : {
1132
+ "nodetype" : "column",
1133
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1134
+ "oid" : "1.3.6.1.2.1.16.2.3.1.21",
1135
+ "status" : "current",
1136
+ "syntax" : {
1137
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1138
+ },
1139
+ "access" : "readonly",
1140
+ "description" :
1141
+ """The total number of receive congestion errors
1142
+ reported in error reporting packets detected by
1143
+ the probe during this sampling interval.""",
1144
+ }, # column
1145
+ "tokenRingMLHistoryFrameCopiedErrors" : {
1146
+ "nodetype" : "column",
1147
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1148
+ "oid" : "1.3.6.1.2.1.16.2.3.1.22",
1149
+ "status" : "current",
1150
+ "syntax" : {
1151
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1152
+ },
1153
+ "access" : "readonly",
1154
+ "description" :
1155
+ """The total number of frame copied errors reported
1156
+ in error reporting packets detected by the probe
1157
+ during this sampling interval.""",
1158
+ }, # column
1159
+ "tokenRingMLHistoryFrequencyErrors" : {
1160
+ "nodetype" : "column",
1161
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1162
+ "oid" : "1.3.6.1.2.1.16.2.3.1.23",
1163
+ "status" : "current",
1164
+ "syntax" : {
1165
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1166
+ },
1167
+ "access" : "readonly",
1168
+ "description" :
1169
+ """The total number of frequency errors reported in
1170
+ error reporting packets detected by the probe
1171
+ during this sampling interval.""",
1172
+ }, # column
1173
+ "tokenRingMLHistoryTokenErrors" : {
1174
+ "nodetype" : "column",
1175
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1176
+ "oid" : "1.3.6.1.2.1.16.2.3.1.24",
1177
+ "status" : "current",
1178
+ "syntax" : {
1179
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1180
+ },
1181
+ "access" : "readonly",
1182
+ "description" :
1183
+ """The total number of token errors reported in
1184
+ error reporting packets detected by the probe
1185
+ during this sampling interval.""",
1186
+ }, # column
1187
+ "tokenRingMLHistorySoftErrorReports" : {
1188
+ "nodetype" : "column",
1189
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1190
+ "oid" : "1.3.6.1.2.1.16.2.3.1.25",
1191
+ "status" : "current",
1192
+ "syntax" : {
1193
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1194
+ },
1195
+ "access" : "readonly",
1196
+ "description" :
1197
+ """The total number of soft error report frames
1198
+ detected by the probe during this sampling
1199
+ interval.""",
1200
+ }, # column
1201
+ "tokenRingMLHistoryRingPollEvents" : {
1202
+ "nodetype" : "column",
1203
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1204
+ "oid" : "1.3.6.1.2.1.16.2.3.1.26",
1205
+ "status" : "current",
1206
+ "syntax" : {
1207
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1208
+ },
1209
+ "access" : "readonly",
1210
+ "description" :
1211
+ """The total number of ring poll events detected by
1212
+ the probe during this sampling interval.""",
1213
+ }, # column
1214
+ "tokenRingMLHistoryActiveStations" : {
1215
+ "nodetype" : "column",
1216
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1217
+ "oid" : "1.3.6.1.2.1.16.2.3.1.27",
1218
+ "status" : "current",
1219
+ "syntax" : {
1220
+ "type" : { "module" :"", "name" : "Integer32"},
1221
+ },
1222
+ "access" : "readonly",
1223
+ "description" :
1224
+ """The maximum number of active stations on the ring
1225
+ detected by the probe during this sampling
1226
+ interval.""",
1227
+ }, # column
1228
+ "tokenRingPHistoryTable" : {
1229
+ "nodetype" : "table",
1230
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1231
+ "oid" : "1.3.6.1.2.1.16.2.4",
1232
+ "status" : "current",
1233
+ "description" :
1234
+ """A list of promiscuous Token Ring statistics
1235
+ entries.""",
1236
+ }, # table
1237
+ "tokenRingPHistoryEntry" : {
1238
+ "nodetype" : "row",
1239
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1240
+ "oid" : "1.3.6.1.2.1.16.2.4.1",
1241
+ "status" : "current",
1242
+ "linkage" : [
1243
+ "tokenRingPHistoryIndex",
1244
+ "tokenRingPHistorySampleIndex",
1245
+ ],
1246
+ "description" :
1247
+ """A collection of promiscuous statistics kept for a
1248
+ particular Token Ring interface.""",
1249
+ }, # row
1250
+ "tokenRingPHistoryIndex" : {
1251
+ "nodetype" : "column",
1252
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1253
+ "oid" : "1.3.6.1.2.1.16.2.4.1.1",
1254
+ "status" : "current",
1255
+ "syntax" : {
1256
+ "type" : {
1257
+ "basetype" : "Integer32",
1258
+ "ranges" : [
1259
+ {
1260
+ "min" : "1",
1261
+ "max" : "65535"
1262
+ },
1263
+ ],
1264
+ "range" : {
1265
+ "min" : "1",
1266
+ "max" : "65535"
1267
+ },
1268
+ },
1269
+ },
1270
+ "access" : "readonly",
1271
+ "description" :
1272
+ """The history of which this entry is a part. The
1273
+ history identified by a particular value of this
1274
+ index is the same history as identified by the
1275
+ same value of historyControlIndex.""",
1276
+ }, # column
1277
+ "tokenRingPHistorySampleIndex" : {
1278
+ "nodetype" : "column",
1279
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1280
+ "oid" : "1.3.6.1.2.1.16.2.4.1.2",
1281
+ "status" : "current",
1282
+ "syntax" : {
1283
+ "type" : { "module" :"", "name" : "Integer32"},
1284
+ },
1285
+ "access" : "readonly",
1286
+ "description" :
1287
+ """An index that uniquely identifies the particular
1288
+ sample this entry represents among all samples
1289
+ associated with the same historyControlEntry.
1290
+ This index starts at 1 and increases by one as
1291
+ each new sample is taken.""",
1292
+ }, # column
1293
+ "tokenRingPHistoryIntervalStart" : {
1294
+ "nodetype" : "column",
1295
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1296
+ "oid" : "1.3.6.1.2.1.16.2.4.1.3",
1297
+ "status" : "current",
1298
+ "syntax" : {
1299
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
1300
+ },
1301
+ "access" : "readonly",
1302
+ "description" :
1303
+ """The value of sysUpTime at the start of the
1304
+ interval over which this sample was measured. If
1305
+ the probe keeps track of the time of day, it
1306
+ should start the first sample of the history at a
1307
+ time such that when the next hour of the day
1308
+ begins, a sample is started at that instant. Note
1309
+ that following this rule may require the probe to
1310
+ delay collecting the first sample of the history,
1311
+ as each sample must be of the same interval. Also
1312
+ note that the sample which is currently being
1313
+ collected is not accessible in this table until
1314
+ the end of its interval.""",
1315
+ }, # column
1316
+ "tokenRingPHistoryDropEvents" : {
1317
+ "nodetype" : "column",
1318
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1319
+ "oid" : "1.3.6.1.2.1.16.2.4.1.4",
1320
+ "status" : "current",
1321
+ "syntax" : {
1322
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1323
+ },
1324
+ "access" : "readonly",
1325
+ "description" :
1326
+ """The total number of events in which packets were
1327
+ dropped by the probe due to lack of resources
1328
+ during this sampling interval. Note that this
1329
+ number is not necessarily the number of packets
1330
+ dropped, it is just the number of times this
1331
+ condition has been detected.""",
1332
+ }, # column
1333
+ "tokenRingPHistoryDataOctets" : {
1334
+ "nodetype" : "column",
1335
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1336
+ "oid" : "1.3.6.1.2.1.16.2.4.1.5",
1337
+ "status" : "current",
1338
+ "syntax" : {
1339
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1340
+ },
1341
+ "access" : "readonly",
1342
+ "description" :
1343
+ """The total number of octets of data in good frames
1344
+ received on the network (excluding framing bits
1345
+ but including FCS octets) in non-MAC packets
1346
+ during this sampling interval.""",
1347
+ }, # column
1348
+ "tokenRingPHistoryDataPkts" : {
1349
+ "nodetype" : "column",
1350
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1351
+ "oid" : "1.3.6.1.2.1.16.2.4.1.6",
1352
+ "status" : "current",
1353
+ "syntax" : {
1354
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1355
+ },
1356
+ "access" : "readonly",
1357
+ "description" :
1358
+ """The total number of good non-MAC frames received
1359
+ during this sampling interval.""",
1360
+ }, # column
1361
+ "tokenRingPHistoryDataBroadcastPkts" : {
1362
+ "nodetype" : "column",
1363
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1364
+ "oid" : "1.3.6.1.2.1.16.2.4.1.7",
1365
+ "status" : "current",
1366
+ "syntax" : {
1367
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1368
+ },
1369
+ "access" : "readonly",
1370
+ "description" :
1371
+ """The total number of good non-MAC frames received
1372
+ during this sampling interval that were directed
1373
+ to an LLC broadcast address (0xFFFFFFFFFFFF or
1374
+ 0xC000FFFFFFFF).""",
1375
+ }, # column
1376
+ "tokenRingPHistoryDataMulticastPkts" : {
1377
+ "nodetype" : "column",
1378
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1379
+ "oid" : "1.3.6.1.2.1.16.2.4.1.8",
1380
+ "status" : "current",
1381
+ "syntax" : {
1382
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1383
+ },
1384
+ "access" : "readonly",
1385
+ "description" :
1386
+ """The total number of good non-MAC frames received
1387
+ during this sampling interval that were directed
1388
+ to a local or global multicast or functional
1389
+ address. Note that this number does not include
1390
+ packets directed to the broadcast address.""",
1391
+ }, # column
1392
+ "tokenRingPHistoryDataPkts18to63Octets" : {
1393
+ "nodetype" : "column",
1394
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1395
+ "oid" : "1.3.6.1.2.1.16.2.4.1.9",
1396
+ "status" : "current",
1397
+ "syntax" : {
1398
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1399
+ },
1400
+ "access" : "readonly",
1401
+ "description" :
1402
+ """The total number of good non-MAC frames received
1403
+ during this sampling interval that were between 18
1404
+ and 63 octets in length inclusive, excluding
1405
+ framing bits but including FCS octets.""",
1406
+ }, # column
1407
+ "tokenRingPHistoryDataPkts64to127Octets" : {
1408
+ "nodetype" : "column",
1409
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1410
+ "oid" : "1.3.6.1.2.1.16.2.4.1.10",
1411
+ "status" : "current",
1412
+ "syntax" : {
1413
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1414
+ },
1415
+ "access" : "readonly",
1416
+ "description" :
1417
+ """The total number of good non-MAC frames received
1418
+ during this sampling interval that were between 64
1419
+ and 127 octets in length inclusive, excluding
1420
+ framing bits but including FCS octets.""",
1421
+ }, # column
1422
+ "tokenRingPHistoryDataPkts128to255Octets" : {
1423
+ "nodetype" : "column",
1424
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1425
+ "oid" : "1.3.6.1.2.1.16.2.4.1.11",
1426
+ "status" : "current",
1427
+ "syntax" : {
1428
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1429
+ },
1430
+ "access" : "readonly",
1431
+ "description" :
1432
+ """The total number of good non-MAC frames received
1433
+ during this sampling interval that were between
1434
+ 128 and 255 octets in length inclusive, excluding
1435
+ framing bits but including FCS octets.""",
1436
+ }, # column
1437
+ "tokenRingPHistoryDataPkts256to511Octets" : {
1438
+ "nodetype" : "column",
1439
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1440
+ "oid" : "1.3.6.1.2.1.16.2.4.1.12",
1441
+ "status" : "current",
1442
+ "syntax" : {
1443
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1444
+ },
1445
+ "access" : "readonly",
1446
+ "description" :
1447
+ """The total number of good non-MAC frames received
1448
+ during this sampling interval that were between
1449
+ 256 and 511 octets in length inclusive, excluding
1450
+ framing bits but including FCS octets.""",
1451
+ }, # column
1452
+ "tokenRingPHistoryDataPkts512to1023Octets" : {
1453
+ "nodetype" : "column",
1454
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1455
+ "oid" : "1.3.6.1.2.1.16.2.4.1.13",
1456
+ "status" : "current",
1457
+ "syntax" : {
1458
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1459
+ },
1460
+ "access" : "readonly",
1461
+ "description" :
1462
+ """The total number of good non-MAC frames received
1463
+ during this sampling interval that were between
1464
+ 512 and 1023 octets in length inclusive, excluding
1465
+ framing bits but including FCS octets.""",
1466
+ }, # column
1467
+ "tokenRingPHistoryDataPkts1024to2047Octets" : {
1468
+ "nodetype" : "column",
1469
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1470
+ "oid" : "1.3.6.1.2.1.16.2.4.1.14",
1471
+ "status" : "current",
1472
+ "syntax" : {
1473
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1474
+ },
1475
+ "access" : "readonly",
1476
+ "description" :
1477
+ """The total number of good non-MAC frames received
1478
+ during this sampling interval that were between
1479
+ 1024 and 2047 octets in length inclusive,
1480
+ excluding framing bits but including FCS octets.""",
1481
+ }, # column
1482
+ "tokenRingPHistoryDataPkts2048to4095Octets" : {
1483
+ "nodetype" : "column",
1484
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1485
+ "oid" : "1.3.6.1.2.1.16.2.4.1.15",
1486
+ "status" : "current",
1487
+ "syntax" : {
1488
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1489
+ },
1490
+ "access" : "readonly",
1491
+ "description" :
1492
+ """The total number of good non-MAC frames received
1493
+ during this sampling interval that were between
1494
+ 2048 and 4095 octets in length inclusive,
1495
+ excluding framing bits but including FCS octets.""",
1496
+ }, # column
1497
+ "tokenRingPHistoryDataPkts4096to8191Octets" : {
1498
+ "nodetype" : "column",
1499
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1500
+ "oid" : "1.3.6.1.2.1.16.2.4.1.16",
1501
+ "status" : "current",
1502
+ "syntax" : {
1503
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1504
+ },
1505
+ "access" : "readonly",
1506
+ "description" :
1507
+ """The total number of good non-MAC frames received
1508
+ during this sampling interval that were between
1509
+ 4096 and 8191 octets in length inclusive,
1510
+ excluding framing bits but including FCS octets.""",
1511
+ }, # column
1512
+ "tokenRingPHistoryDataPkts8192to18000Octets" : {
1513
+ "nodetype" : "column",
1514
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1515
+ "oid" : "1.3.6.1.2.1.16.2.4.1.17",
1516
+ "status" : "current",
1517
+ "syntax" : {
1518
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1519
+ },
1520
+ "access" : "readonly",
1521
+ "description" :
1522
+ """The total number of good non-MAC frames received
1523
+ during this sampling interval that were between
1524
+ 8192 and 18000 octets in length inclusive,
1525
+ excluding framing bits but including FCS octets.""",
1526
+ }, # column
1527
+ "tokenRingPHistoryDataPktsGreaterThan18000Octets" : {
1528
+ "nodetype" : "column",
1529
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1530
+ "oid" : "1.3.6.1.2.1.16.2.4.1.18",
1531
+ "status" : "current",
1532
+ "syntax" : {
1533
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1534
+ },
1535
+ "access" : "readonly",
1536
+ "description" :
1537
+ """The total number of good non-MAC frames received
1538
+ during this sampling interval that were greater
1539
+ than 18000 octets in length, excluding framing
1540
+ bits but including FCS octets.""",
1541
+ }, # column
1542
+ "tokenRing" : {
1543
+ "nodetype" : "node",
1544
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1545
+ "oid" : "1.3.6.1.2.1.16.10",
1546
+ }, # node
1547
+ "ringStationControlTable" : {
1548
+ "nodetype" : "table",
1549
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1550
+ "oid" : "1.3.6.1.2.1.16.10.1",
1551
+ "status" : "current",
1552
+ "description" :
1553
+ """A list of ringStation table control entries.""",
1554
+ }, # table
1555
+ "ringStationControlEntry" : {
1556
+ "nodetype" : "row",
1557
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1558
+ "oid" : "1.3.6.1.2.1.16.10.1.1",
1559
+ "status" : "current",
1560
+ "linkage" : [
1561
+ "ringStationControlIfIndex",
1562
+ ],
1563
+ "description" :
1564
+ """A list of parameters that set up the discovery of
1565
+ stations on a particular interface and the
1566
+ collection of statistics about these stations.""",
1567
+ }, # row
1568
+ "ringStationControlIfIndex" : {
1569
+ "nodetype" : "column",
1570
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1571
+ "oid" : "1.3.6.1.2.1.16.10.1.1.1",
1572
+ "status" : "current",
1573
+ "syntax" : {
1574
+ "type" : {
1575
+ "basetype" : "Integer32",
1576
+ "ranges" : [
1577
+ {
1578
+ "min" : "1",
1579
+ "max" : "65535"
1580
+ },
1581
+ ],
1582
+ "range" : {
1583
+ "min" : "1",
1584
+ "max" : "65535"
1585
+ },
1586
+ },
1587
+ },
1588
+ "access" : "readonly",
1589
+ "description" :
1590
+ """The value of this object uniquely identifies the
1591
+ interface on this remote network monitoring device
1592
+ from which ringStation data is collected. The
1593
+ interface identified by a particular value of this
1594
+ object is the same interface as identified by the
1595
+ same value of the ifIndex object, defined in MIB-
1596
+ II [3].""",
1597
+ }, # column
1598
+ "ringStationControlTableSize" : {
1599
+ "nodetype" : "column",
1600
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1601
+ "oid" : "1.3.6.1.2.1.16.10.1.1.2",
1602
+ "status" : "current",
1603
+ "syntax" : {
1604
+ "type" : { "module" :"", "name" : "Integer32"},
1605
+ },
1606
+ "access" : "readonly",
1607
+ "description" :
1608
+ """The number of ringStationEntries in the
1609
+ ringStationTable associated with this
1610
+ ringStationControlEntry.""",
1611
+ }, # column
1612
+ "ringStationControlActiveStations" : {
1613
+ "nodetype" : "column",
1614
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1615
+ "oid" : "1.3.6.1.2.1.16.10.1.1.3",
1616
+ "status" : "current",
1617
+ "syntax" : {
1618
+ "type" : { "module" :"", "name" : "Integer32"},
1619
+ },
1620
+ "access" : "readonly",
1621
+ "description" :
1622
+ """The number of active ringStationEntries in the
1623
+ ringStationTable associated with this
1624
+ ringStationControlEntry.""",
1625
+ }, # column
1626
+ "ringStationControlRingState" : {
1627
+ "nodetype" : "column",
1628
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1629
+ "oid" : "1.3.6.1.2.1.16.10.1.1.4",
1630
+ "status" : "current",
1631
+ "syntax" : {
1632
+ "type" : {
1633
+ "basetype" : "Enumeration",
1634
+ "normalOperation" : {
1635
+ "nodetype" : "namednumber",
1636
+ "number" : "1"
1637
+ },
1638
+ "ringPurgeState" : {
1639
+ "nodetype" : "namednumber",
1640
+ "number" : "2"
1641
+ },
1642
+ "claimTokenState" : {
1643
+ "nodetype" : "namednumber",
1644
+ "number" : "3"
1645
+ },
1646
+ "beaconFrameStreamingState" : {
1647
+ "nodetype" : "namednumber",
1648
+ "number" : "4"
1649
+ },
1650
+ "beaconBitStreamingState" : {
1651
+ "nodetype" : "namednumber",
1652
+ "number" : "5"
1653
+ },
1654
+ "beaconRingSignalLossState" : {
1655
+ "nodetype" : "namednumber",
1656
+ "number" : "6"
1657
+ },
1658
+ "beaconSetRecoveryModeState" : {
1659
+ "nodetype" : "namednumber",
1660
+ "number" : "7"
1661
+ },
1662
+ },
1663
+ },
1664
+ "access" : "readonly",
1665
+ "description" :
1666
+ """The current status of this ring.""",
1667
+ }, # column
1668
+ "ringStationControlBeaconSender" : {
1669
+ "nodetype" : "column",
1670
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1671
+ "oid" : "1.3.6.1.2.1.16.10.1.1.5",
1672
+ "status" : "current",
1673
+ "syntax" : {
1674
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "MacAddress"},
1675
+ },
1676
+ "access" : "readonly",
1677
+ "description" :
1678
+ """The address of the sender of the last beacon
1679
+ frame received by the probe on this ring. If no
1680
+ beacon frames have been received, this object
1681
+ shall be equal to six octets of zero.""",
1682
+ }, # column
1683
+ "ringStationControlBeaconNAUN" : {
1684
+ "nodetype" : "column",
1685
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1686
+ "oid" : "1.3.6.1.2.1.16.10.1.1.6",
1687
+ "status" : "current",
1688
+ "syntax" : {
1689
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "MacAddress"},
1690
+ },
1691
+ "access" : "readonly",
1692
+ "description" :
1693
+ """The address of the NAUN in the last beacon frame
1694
+ received by the probe on this ring. If no beacon
1695
+ frames have been received, this object shall be
1696
+ equal to six octets of zero.""",
1697
+ }, # column
1698
+ "ringStationControlActiveMonitor" : {
1699
+ "nodetype" : "column",
1700
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1701
+ "oid" : "1.3.6.1.2.1.16.10.1.1.7",
1702
+ "status" : "current",
1703
+ "syntax" : {
1704
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "MacAddress"},
1705
+ },
1706
+ "access" : "readonly",
1707
+ "description" :
1708
+ """The address of the Active Monitor on this
1709
+ segment. If this address is unknown, this object
1710
+ shall be equal to six octets of zero.""",
1711
+ }, # column
1712
+ "ringStationControlOrderChanges" : {
1713
+ "nodetype" : "column",
1714
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1715
+ "oid" : "1.3.6.1.2.1.16.10.1.1.8",
1716
+ "status" : "current",
1717
+ "syntax" : {
1718
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1719
+ },
1720
+ "access" : "readonly",
1721
+ "description" :
1722
+ """The number of add and delete events in the
1723
+ ringStationOrderTable optionally associated with
1724
+ this ringStationControlEntry.""",
1725
+ }, # column
1726
+ "ringStationControlOwner" : {
1727
+ "nodetype" : "column",
1728
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1729
+ "oid" : "1.3.6.1.2.1.16.10.1.1.9",
1730
+ "status" : "current",
1731
+ "syntax" : {
1732
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
1733
+ },
1734
+ "access" : "readwrite",
1735
+ "description" :
1736
+ """The entity that configured this entry and is
1737
+ therefore using the resources assigned to it.""",
1738
+ }, # column
1739
+ "ringStationControlStatus" : {
1740
+ "nodetype" : "column",
1741
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1742
+ "oid" : "1.3.6.1.2.1.16.10.1.1.10",
1743
+ "status" : "current",
1744
+ "syntax" : {
1745
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
1746
+ },
1747
+ "access" : "readwrite",
1748
+ "description" :
1749
+ """The status of this ringStationControl entry.
1750
+
1751
+ If this object is not equal to valid(1), all
1752
+ associated entries in the ringStationTable shall
1753
+ be deleted by the agent.""",
1754
+ }, # column
1755
+ "ringStationTable" : {
1756
+ "nodetype" : "table",
1757
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1758
+ "oid" : "1.3.6.1.2.1.16.10.2",
1759
+ "status" : "current",
1760
+ "description" :
1761
+ """A list of ring station entries. An entry will
1762
+ exist for each station that is now or has
1763
+ previously been detected as physically present on
1764
+ this ring.""",
1765
+ }, # table
1766
+ "ringStationEntry" : {
1767
+ "nodetype" : "row",
1768
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1769
+ "oid" : "1.3.6.1.2.1.16.10.2.1",
1770
+ "status" : "current",
1771
+ "linkage" : [
1772
+ "ringStationIfIndex",
1773
+ "ringStationMacAddress",
1774
+ ],
1775
+ "description" :
1776
+ """A collection of statistics for a particular
1777
+ station that has been discovered on a ring
1778
+ monitored by this device.""",
1779
+ }, # row
1780
+ "ringStationIfIndex" : {
1781
+ "nodetype" : "column",
1782
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1783
+ "oid" : "1.3.6.1.2.1.16.10.2.1.1",
1784
+ "status" : "current",
1785
+ "syntax" : {
1786
+ "type" : { "module" :"", "name" : "Integer32"},
1787
+ },
1788
+ "access" : "readonly",
1789
+ "description" :
1790
+ """The value of this object uniquely identifies the
1791
+ interface on this remote network monitoring device
1792
+ on which this station was detected. The interface
1793
+ identified by a particular value of this object is
1794
+ the same interface as identified by the same value
1795
+ of the ifIndex object, defined in MIB-II [3].""",
1796
+ }, # column
1797
+ "ringStationMacAddress" : {
1798
+ "nodetype" : "column",
1799
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1800
+ "oid" : "1.3.6.1.2.1.16.10.2.1.2",
1801
+ "status" : "current",
1802
+ "syntax" : {
1803
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "MacAddress"},
1804
+ },
1805
+ "access" : "readonly",
1806
+ "description" :
1807
+ """The physical address of this station.""",
1808
+ }, # column
1809
+ "ringStationLastNAUN" : {
1810
+ "nodetype" : "column",
1811
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1812
+ "oid" : "1.3.6.1.2.1.16.10.2.1.3",
1813
+ "status" : "current",
1814
+ "syntax" : {
1815
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "MacAddress"},
1816
+ },
1817
+ "access" : "readonly",
1818
+ "description" :
1819
+ """The physical address of last known NAUN of this
1820
+ station.""",
1821
+ }, # column
1822
+ "ringStationStationStatus" : {
1823
+ "nodetype" : "column",
1824
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1825
+ "oid" : "1.3.6.1.2.1.16.10.2.1.4",
1826
+ "status" : "current",
1827
+ "syntax" : {
1828
+ "type" : {
1829
+ "basetype" : "Enumeration",
1830
+ "active" : {
1831
+ "nodetype" : "namednumber",
1832
+ "number" : "1"
1833
+ },
1834
+ "inactive" : {
1835
+ "nodetype" : "namednumber",
1836
+ "number" : "2"
1837
+ },
1838
+ "forcedRemoval" : {
1839
+ "nodetype" : "namednumber",
1840
+ "number" : "3"
1841
+ },
1842
+ },
1843
+ },
1844
+ "access" : "readonly",
1845
+ "description" :
1846
+ """The status of this station on the ring.""",
1847
+ }, # column
1848
+ "ringStationLastEnterTime" : {
1849
+ "nodetype" : "column",
1850
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1851
+ "oid" : "1.3.6.1.2.1.16.10.2.1.5",
1852
+ "status" : "current",
1853
+ "syntax" : {
1854
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
1855
+ },
1856
+ "access" : "readonly",
1857
+ "description" :
1858
+ """The value of sysUpTime at the time this station
1859
+ last entered the ring. If the time is unknown,
1860
+ this value shall be zero.""",
1861
+ }, # column
1862
+ "ringStationLastExitTime" : {
1863
+ "nodetype" : "column",
1864
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1865
+ "oid" : "1.3.6.1.2.1.16.10.2.1.6",
1866
+ "status" : "current",
1867
+ "syntax" : {
1868
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
1869
+ },
1870
+ "access" : "readonly",
1871
+ "description" :
1872
+ """The value of sysUpTime at the time the probe
1873
+ detected that this station last exited the ring.
1874
+ If the time is unknown, this value shall be zero.""",
1875
+ }, # column
1876
+ "ringStationDuplicateAddresses" : {
1877
+ "nodetype" : "column",
1878
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1879
+ "oid" : "1.3.6.1.2.1.16.10.2.1.7",
1880
+ "status" : "current",
1881
+ "syntax" : {
1882
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1883
+ },
1884
+ "access" : "readonly",
1885
+ "description" :
1886
+ """The number of times this station experienced a
1887
+ duplicate address error.""",
1888
+ }, # column
1889
+ "ringStationInLineErrors" : {
1890
+ "nodetype" : "column",
1891
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1892
+ "oid" : "1.3.6.1.2.1.16.10.2.1.8",
1893
+ "status" : "current",
1894
+ "syntax" : {
1895
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1896
+ },
1897
+ "access" : "readonly",
1898
+ "description" :
1899
+ """The total number of line errors reported by this
1900
+ station in error reporting packets detected by the
1901
+ probe.""",
1902
+ }, # column
1903
+ "ringStationOutLineErrors" : {
1904
+ "nodetype" : "column",
1905
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1906
+ "oid" : "1.3.6.1.2.1.16.10.2.1.9",
1907
+ "status" : "current",
1908
+ "syntax" : {
1909
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1910
+ },
1911
+ "access" : "readonly",
1912
+ "description" :
1913
+ """The total number of line errors reported in error
1914
+ reporting packets sent by the nearest active
1915
+ downstream neighbor of this station and detected
1916
+ by the probe.""",
1917
+ }, # column
1918
+ "ringStationInternalErrors" : {
1919
+ "nodetype" : "column",
1920
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1921
+ "oid" : "1.3.6.1.2.1.16.10.2.1.10",
1922
+ "status" : "current",
1923
+ "syntax" : {
1924
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1925
+ },
1926
+ "access" : "readonly",
1927
+ "description" :
1928
+ """The total number of adapter internal errors
1929
+ reported by this station in error reporting
1930
+ packets detected by the probe.""",
1931
+ }, # column
1932
+ "ringStationInBurstErrors" : {
1933
+ "nodetype" : "column",
1934
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1935
+ "oid" : "1.3.6.1.2.1.16.10.2.1.11",
1936
+ "status" : "current",
1937
+ "syntax" : {
1938
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1939
+ },
1940
+ "access" : "readonly",
1941
+ "description" :
1942
+ """The total number of burst errors reported by this
1943
+ station in error reporting packets detected by the
1944
+ probe.""",
1945
+ }, # column
1946
+ "ringStationOutBurstErrors" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1949
+ "oid" : "1.3.6.1.2.1.16.10.2.1.12",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1953
+ },
1954
+ "access" : "readonly",
1955
+ "description" :
1956
+ """The total number of burst errors reported in
1957
+ error reporting packets sent by the nearest active
1958
+ downstream neighbor of this station and detected
1959
+ by the probe.""",
1960
+ }, # column
1961
+ "ringStationACErrors" : {
1962
+ "nodetype" : "column",
1963
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1964
+ "oid" : "1.3.6.1.2.1.16.10.2.1.13",
1965
+ "status" : "current",
1966
+ "syntax" : {
1967
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1968
+ },
1969
+ "access" : "readonly",
1970
+ "description" :
1971
+ """The total number of AC (Address Copied) errors
1972
+ reported in error reporting packets sent by the
1973
+ nearest active downstream neighbor of this station
1974
+ and detected by the probe.""",
1975
+ }, # column
1976
+ "ringStationAbortErrors" : {
1977
+ "nodetype" : "column",
1978
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1979
+ "oid" : "1.3.6.1.2.1.16.10.2.1.14",
1980
+ "status" : "current",
1981
+ "syntax" : {
1982
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1983
+ },
1984
+ "access" : "readonly",
1985
+ "description" :
1986
+ """The total number of abort delimiters reported by
1987
+ this station in error reporting packets detected
1988
+ by the probe.""",
1989
+ }, # column
1990
+ "ringStationLostFrameErrors" : {
1991
+ "nodetype" : "column",
1992
+ "moduleName" : "TOKEN-RING-RMON-MIB",
1993
+ "oid" : "1.3.6.1.2.1.16.10.2.1.15",
1994
+ "status" : "current",
1995
+ "syntax" : {
1996
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1997
+ },
1998
+ "access" : "readonly",
1999
+ "description" :
2000
+ """The total number of lost frame errors reported by
2001
+ this station in error reporting packets detected
2002
+ by the probe.""",
2003
+ }, # column
2004
+ "ringStationCongestionErrors" : {
2005
+ "nodetype" : "column",
2006
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2007
+ "oid" : "1.3.6.1.2.1.16.10.2.1.16",
2008
+ "status" : "current",
2009
+ "syntax" : {
2010
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2011
+ },
2012
+ "access" : "readonly",
2013
+ "description" :
2014
+ """The total number of receive congestion errors
2015
+ reported by this station in error reporting
2016
+ packets detected by the probe.""",
2017
+ }, # column
2018
+ "ringStationFrameCopiedErrors" : {
2019
+ "nodetype" : "column",
2020
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2021
+ "oid" : "1.3.6.1.2.1.16.10.2.1.17",
2022
+ "status" : "current",
2023
+ "syntax" : {
2024
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2025
+ },
2026
+ "access" : "readonly",
2027
+ "description" :
2028
+ """The total number of frame copied errors reported
2029
+ by this station in error reporting packets
2030
+ detected by the probe.""",
2031
+ }, # column
2032
+ "ringStationFrequencyErrors" : {
2033
+ "nodetype" : "column",
2034
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2035
+ "oid" : "1.3.6.1.2.1.16.10.2.1.18",
2036
+ "status" : "current",
2037
+ "syntax" : {
2038
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2039
+ },
2040
+ "access" : "readonly",
2041
+ "description" :
2042
+ """The total number of frequency errors reported by
2043
+ this station in error reporting packets detected
2044
+ by the probe.""",
2045
+ }, # column
2046
+ "ringStationTokenErrors" : {
2047
+ "nodetype" : "column",
2048
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2049
+ "oid" : "1.3.6.1.2.1.16.10.2.1.19",
2050
+ "status" : "current",
2051
+ "syntax" : {
2052
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2053
+ },
2054
+ "access" : "readonly",
2055
+ "description" :
2056
+ """The total number of token errors reported by this
2057
+ station in error reporting frames detected by the
2058
+ probe.""",
2059
+ }, # column
2060
+ "ringStationInBeaconErrors" : {
2061
+ "nodetype" : "column",
2062
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2063
+ "oid" : "1.3.6.1.2.1.16.10.2.1.20",
2064
+ "status" : "current",
2065
+ "syntax" : {
2066
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2067
+ },
2068
+ "access" : "readonly",
2069
+ "description" :
2070
+ """The total number of beacon frames sent by this
2071
+ station and detected by the probe.""",
2072
+ }, # column
2073
+ "ringStationOutBeaconErrors" : {
2074
+ "nodetype" : "column",
2075
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2076
+ "oid" : "1.3.6.1.2.1.16.10.2.1.21",
2077
+ "status" : "current",
2078
+ "syntax" : {
2079
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2080
+ },
2081
+ "access" : "readonly",
2082
+ "description" :
2083
+ """The total number of beacon frames detected by the
2084
+ probe that name this station as the NAUN.""",
2085
+ }, # column
2086
+ "ringStationInsertions" : {
2087
+ "nodetype" : "column",
2088
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2089
+ "oid" : "1.3.6.1.2.1.16.10.2.1.22",
2090
+ "status" : "current",
2091
+ "syntax" : {
2092
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2093
+ },
2094
+ "access" : "readonly",
2095
+ "description" :
2096
+ """The number of times the probe detected this
2097
+ station inserting onto the ring.""",
2098
+ }, # column
2099
+ "ringStationOrderTable" : {
2100
+ "nodetype" : "table",
2101
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2102
+ "oid" : "1.3.6.1.2.1.16.10.3",
2103
+ "status" : "current",
2104
+ "description" :
2105
+ """A list of ring station entries for stations in
2106
+ the ring poll, ordered by their ring-order.""",
2107
+ }, # table
2108
+ "ringStationOrderEntry" : {
2109
+ "nodetype" : "row",
2110
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2111
+ "oid" : "1.3.6.1.2.1.16.10.3.1",
2112
+ "status" : "current",
2113
+ "linkage" : [
2114
+ "ringStationOrderIfIndex",
2115
+ "ringStationOrderOrderIndex",
2116
+ ],
2117
+ "description" :
2118
+ """A collection of statistics for a particular
2119
+ station that is active on a ring monitored by this
2120
+ device. This table will contain information for
2121
+ every interface that has a
2122
+ ringStationControlStatus equal to valid.""",
2123
+ }, # row
2124
+ "ringStationOrderIfIndex" : {
2125
+ "nodetype" : "column",
2126
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2127
+ "oid" : "1.3.6.1.2.1.16.10.3.1.1",
2128
+ "status" : "current",
2129
+ "syntax" : {
2130
+ "type" : { "module" :"", "name" : "Integer32"},
2131
+ },
2132
+ "access" : "readonly",
2133
+ "description" :
2134
+ """The value of this object uniquely identifies the
2135
+ interface on this remote network monitoring device
2136
+ on which this station was detected. The interface
2137
+ identified by a particular value of this object is
2138
+ the same interface as identified by the same value
2139
+ of the ifIndex object, defined in MIB-II [3].""",
2140
+ }, # column
2141
+ "ringStationOrderOrderIndex" : {
2142
+ "nodetype" : "column",
2143
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2144
+ "oid" : "1.3.6.1.2.1.16.10.3.1.2",
2145
+ "status" : "current",
2146
+ "syntax" : {
2147
+ "type" : { "module" :"", "name" : "Integer32"},
2148
+ },
2149
+ "access" : "readonly",
2150
+ "description" :
2151
+ """This index denotes the location of this station
2152
+ with respect to other stations on the ring. This
2153
+ index is one more than the number of hops
2154
+ downstream that this station is from the rmon
2155
+ probe. The rmon probe itself gets the value one.""",
2156
+ }, # column
2157
+ "ringStationOrderMacAddress" : {
2158
+ "nodetype" : "column",
2159
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2160
+ "oid" : "1.3.6.1.2.1.16.10.3.1.3",
2161
+ "status" : "current",
2162
+ "syntax" : {
2163
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "MacAddress"},
2164
+ },
2165
+ "access" : "readonly",
2166
+ "description" :
2167
+ """The physical address of this station.""",
2168
+ }, # column
2169
+ "ringStationConfigControlTable" : {
2170
+ "nodetype" : "table",
2171
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2172
+ "oid" : "1.3.6.1.2.1.16.10.4",
2173
+ "status" : "current",
2174
+ "description" :
2175
+ """A list of ring station configuration control
2176
+ entries.""",
2177
+ }, # table
2178
+ "ringStationConfigControlEntry" : {
2179
+ "nodetype" : "row",
2180
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2181
+ "oid" : "1.3.6.1.2.1.16.10.4.1",
2182
+ "status" : "current",
2183
+ "linkage" : [
2184
+ "ringStationConfigControlIfIndex",
2185
+ "ringStationConfigControlMacAddress",
2186
+ ],
2187
+ "description" :
2188
+ """This entry controls active management of stations
2189
+ by the probe. One entry exists in this table for
2190
+ each active station in the ringStationTable.""",
2191
+ }, # row
2192
+ "ringStationConfigControlIfIndex" : {
2193
+ "nodetype" : "column",
2194
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2195
+ "oid" : "1.3.6.1.2.1.16.10.4.1.1",
2196
+ "status" : "current",
2197
+ "syntax" : {
2198
+ "type" : { "module" :"", "name" : "Integer32"},
2199
+ },
2200
+ "access" : "readonly",
2201
+ "description" :
2202
+ """The value of this object uniquely identifies the
2203
+ interface on this remote network monitoring device
2204
+ on which this station was detected. The interface
2205
+ identified by a particular value of this object is
2206
+ the same interface as identified by the same value
2207
+ of the ifIndex object, defined in MIB-II [3].""",
2208
+ }, # column
2209
+ "ringStationConfigControlMacAddress" : {
2210
+ "nodetype" : "column",
2211
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2212
+ "oid" : "1.3.6.1.2.1.16.10.4.1.2",
2213
+ "status" : "current",
2214
+ "syntax" : {
2215
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "MacAddress"},
2216
+ },
2217
+ "access" : "readonly",
2218
+ "description" :
2219
+ """The physical address of this station.""",
2220
+ }, # column
2221
+ "ringStationConfigControlRemove" : {
2222
+ "nodetype" : "column",
2223
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2224
+ "oid" : "1.3.6.1.2.1.16.10.4.1.3",
2225
+ "status" : "current",
2226
+ "syntax" : {
2227
+ "type" : {
2228
+ "basetype" : "Enumeration",
2229
+ "stable" : {
2230
+ "nodetype" : "namednumber",
2231
+ "number" : "1"
2232
+ },
2233
+ "removing" : {
2234
+ "nodetype" : "namednumber",
2235
+ "number" : "2"
2236
+ },
2237
+ },
2238
+ },
2239
+ "access" : "readwrite",
2240
+ "description" :
2241
+ """Setting this object to `removing(2)' causes a
2242
+ Remove Station MAC frame to be sent. The agent
2243
+ will set this object to `stable(1)' after
2244
+ processing the request.""",
2245
+ }, # column
2246
+ "ringStationConfigControlUpdateStats" : {
2247
+ "nodetype" : "column",
2248
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2249
+ "oid" : "1.3.6.1.2.1.16.10.4.1.4",
2250
+ "status" : "current",
2251
+ "syntax" : {
2252
+ "type" : {
2253
+ "basetype" : "Enumeration",
2254
+ "stable" : {
2255
+ "nodetype" : "namednumber",
2256
+ "number" : "1"
2257
+ },
2258
+ "updating" : {
2259
+ "nodetype" : "namednumber",
2260
+ "number" : "2"
2261
+ },
2262
+ },
2263
+ },
2264
+ "access" : "readwrite",
2265
+ "description" :
2266
+ """Setting this object to `updating(2)' causes the
2267
+ configuration information associate with this
2268
+ entry to be updated. The agent will set this
2269
+ object to `stable(1)' after processing the
2270
+ request.""",
2271
+ }, # column
2272
+ "ringStationConfigTable" : {
2273
+ "nodetype" : "table",
2274
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2275
+ "oid" : "1.3.6.1.2.1.16.10.5",
2276
+ "status" : "current",
2277
+ "description" :
2278
+ """A list of configuration entries for stations on a
2279
+ ring monitored by this probe.""",
2280
+ }, # table
2281
+ "ringStationConfigEntry" : {
2282
+ "nodetype" : "row",
2283
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2284
+ "oid" : "1.3.6.1.2.1.16.10.5.1",
2285
+ "status" : "current",
2286
+ "linkage" : [
2287
+ "ringStationConfigIfIndex",
2288
+ "ringStationConfigMacAddress",
2289
+ ],
2290
+ "description" :
2291
+ """A collection of statistics for a particular
2292
+ station that has been discovered on a ring
2293
+ monitored by this probe.""",
2294
+ }, # row
2295
+ "ringStationConfigIfIndex" : {
2296
+ "nodetype" : "column",
2297
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2298
+ "oid" : "1.3.6.1.2.1.16.10.5.1.1",
2299
+ "status" : "current",
2300
+ "syntax" : {
2301
+ "type" : { "module" :"", "name" : "Integer32"},
2302
+ },
2303
+ "access" : "readonly",
2304
+ "description" :
2305
+ """The value of this object uniquely identifies the
2306
+ interface on this remote network monitoring device
2307
+ on which this station was detected. The interface
2308
+ identified by a particular value of this object is
2309
+ the same interface as identified by the same value
2310
+ of the ifIndex object, defined in MIB-II [3].""",
2311
+ }, # column
2312
+ "ringStationConfigMacAddress" : {
2313
+ "nodetype" : "column",
2314
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2315
+ "oid" : "1.3.6.1.2.1.16.10.5.1.2",
2316
+ "status" : "current",
2317
+ "syntax" : {
2318
+ "type" : { "module" :"TOKEN-RING-RMON-MIB", "name" : "MacAddress"},
2319
+ },
2320
+ "access" : "readonly",
2321
+ "description" :
2322
+ """The physical address of this station.""",
2323
+ }, # column
2324
+ "ringStationConfigUpdateTime" : {
2325
+ "nodetype" : "column",
2326
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2327
+ "oid" : "1.3.6.1.2.1.16.10.5.1.3",
2328
+ "status" : "current",
2329
+ "syntax" : {
2330
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
2331
+ },
2332
+ "access" : "readonly",
2333
+ "description" :
2334
+ """The value of sysUpTime at the time this
2335
+ configuration information was last updated
2336
+ (completely).""",
2337
+ }, # column
2338
+ "ringStationConfigLocation" : {
2339
+ "nodetype" : "column",
2340
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2341
+ "oid" : "1.3.6.1.2.1.16.10.5.1.4",
2342
+ "status" : "current",
2343
+ "syntax" : {
2344
+ "type" : {
2345
+ "basetype" : "OctetString",
2346
+ "ranges" : [
2347
+ {
2348
+ "min" : "4",
2349
+ "max" : "4"
2350
+ },
2351
+ ],
2352
+ "range" : {
2353
+ "min" : "4",
2354
+ "max" : "4"
2355
+ },
2356
+ },
2357
+ },
2358
+ "access" : "readonly",
2359
+ "description" :
2360
+ """The assigned physical location of this station.""",
2361
+ }, # column
2362
+ "ringStationConfigMicrocode" : {
2363
+ "nodetype" : "column",
2364
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2365
+ "oid" : "1.3.6.1.2.1.16.10.5.1.5",
2366
+ "status" : "current",
2367
+ "syntax" : {
2368
+ "type" : {
2369
+ "basetype" : "OctetString",
2370
+ "ranges" : [
2371
+ {
2372
+ "min" : "10",
2373
+ "max" : "10"
2374
+ },
2375
+ ],
2376
+ "range" : {
2377
+ "min" : "10",
2378
+ "max" : "10"
2379
+ },
2380
+ },
2381
+ },
2382
+ "access" : "readonly",
2383
+ "description" :
2384
+ """The microcode EC level of this station.""",
2385
+ }, # column
2386
+ "ringStationConfigGroupAddress" : {
2387
+ "nodetype" : "column",
2388
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2389
+ "oid" : "1.3.6.1.2.1.16.10.5.1.6",
2390
+ "status" : "current",
2391
+ "syntax" : {
2392
+ "type" : {
2393
+ "basetype" : "OctetString",
2394
+ "ranges" : [
2395
+ {
2396
+ "min" : "4",
2397
+ "max" : "4"
2398
+ },
2399
+ ],
2400
+ "range" : {
2401
+ "min" : "4",
2402
+ "max" : "4"
2403
+ },
2404
+ },
2405
+ },
2406
+ "access" : "readonly",
2407
+ "description" :
2408
+ """The low-order 4 octets of the group address
2409
+ recognized by this station.""",
2410
+ }, # column
2411
+ "ringStationConfigFunctionalAddress" : {
2412
+ "nodetype" : "column",
2413
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2414
+ "oid" : "1.3.6.1.2.1.16.10.5.1.7",
2415
+ "status" : "current",
2416
+ "syntax" : {
2417
+ "type" : {
2418
+ "basetype" : "OctetString",
2419
+ "ranges" : [
2420
+ {
2421
+ "min" : "4",
2422
+ "max" : "4"
2423
+ },
2424
+ ],
2425
+ "range" : {
2426
+ "min" : "4",
2427
+ "max" : "4"
2428
+ },
2429
+ },
2430
+ },
2431
+ "access" : "readonly",
2432
+ "description" :
2433
+ """the functional addresses recognized by this
2434
+ station.""",
2435
+ }, # column
2436
+ "sourceRoutingStatsTable" : {
2437
+ "nodetype" : "table",
2438
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2439
+ "oid" : "1.3.6.1.2.1.16.10.6",
2440
+ "status" : "current",
2441
+ "description" :
2442
+ """A list of source routing statistics entries.""",
2443
+ }, # table
2444
+ "sourceRoutingStatsEntry" : {
2445
+ "nodetype" : "row",
2446
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2447
+ "oid" : "1.3.6.1.2.1.16.10.6.1",
2448
+ "status" : "current",
2449
+ "linkage" : [
2450
+ "sourceRoutingStatsIfIndex",
2451
+ ],
2452
+ "description" :
2453
+ """A collection of source routing statistics kept
2454
+ for a particular Token Ring interface.""",
2455
+ }, # row
2456
+ "sourceRoutingStatsIfIndex" : {
2457
+ "nodetype" : "column",
2458
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2459
+ "oid" : "1.3.6.1.2.1.16.10.6.1.1",
2460
+ "status" : "current",
2461
+ "syntax" : {
2462
+ "type" : { "module" :"", "name" : "Integer32"},
2463
+ },
2464
+ "access" : "readonly",
2465
+ "description" :
2466
+ """The value of this object uniquely identifies the
2467
+ interface on this remote network monitoring device
2468
+ on which source routing statistics will be
2469
+ detected. The interface identified by a
2470
+ particular value of this object is the same
2471
+ interface as identified by the same value of the
2472
+ ifIndex object, defined in MIB-II [3].""",
2473
+ }, # column
2474
+ "sourceRoutingStatsRingNumber" : {
2475
+ "nodetype" : "column",
2476
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2477
+ "oid" : "1.3.6.1.2.1.16.10.6.1.2",
2478
+ "status" : "current",
2479
+ "syntax" : {
2480
+ "type" : { "module" :"", "name" : "Integer32"},
2481
+ },
2482
+ "access" : "readonly",
2483
+ "description" :
2484
+ """The ring number of the ring monitored by this
2485
+ entry. When any object in this entry is created,
2486
+ the probe will attempt to discover the ring
2487
+ number. Only after the ring number is discovered
2488
+ will this object be created. After creating an
2489
+ object in this entry, the management station
2490
+ should poll this object to detect when it is
2491
+ created. Only after this object is created can
2492
+ the management station set the
2493
+ sourceRoutingStatsStatus entry to valid(1).""",
2494
+ }, # column
2495
+ "sourceRoutingStatsInFrames" : {
2496
+ "nodetype" : "column",
2497
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2498
+ "oid" : "1.3.6.1.2.1.16.10.6.1.3",
2499
+ "status" : "current",
2500
+ "syntax" : {
2501
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2502
+ },
2503
+ "access" : "readonly",
2504
+ "description" :
2505
+ """The count of frames sent into this ring from
2506
+ another ring.""",
2507
+ }, # column
2508
+ "sourceRoutingStatsOutFrames" : {
2509
+ "nodetype" : "column",
2510
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2511
+ "oid" : "1.3.6.1.2.1.16.10.6.1.4",
2512
+ "status" : "current",
2513
+ "syntax" : {
2514
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2515
+ },
2516
+ "access" : "readonly",
2517
+ "description" :
2518
+ """The count of frames sent from this ring to
2519
+ another ring.""",
2520
+ }, # column
2521
+ "sourceRoutingStatsThroughFrames" : {
2522
+ "nodetype" : "column",
2523
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2524
+ "oid" : "1.3.6.1.2.1.16.10.6.1.5",
2525
+ "status" : "current",
2526
+ "syntax" : {
2527
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2528
+ },
2529
+ "access" : "readonly",
2530
+ "description" :
2531
+ """The count of frames sent from another ring,
2532
+ through this ring, to another ring.""",
2533
+ }, # column
2534
+ "sourceRoutingStatsAllRoutesBroadcastFrames" : {
2535
+ "nodetype" : "column",
2536
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2537
+ "oid" : "1.3.6.1.2.1.16.10.6.1.6",
2538
+ "status" : "current",
2539
+ "syntax" : {
2540
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2541
+ },
2542
+ "access" : "readonly",
2543
+ "description" :
2544
+ """The total number of good frames received that
2545
+ were All Routes Broadcast.""",
2546
+ }, # column
2547
+ "sourceRoutingStatsSingleRouteBroadcastFrames" : {
2548
+ "nodetype" : "column",
2549
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2550
+ "oid" : "1.3.6.1.2.1.16.10.6.1.7",
2551
+ "status" : "current",
2552
+ "syntax" : {
2553
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2554
+ },
2555
+ "access" : "readonly",
2556
+ "description" :
2557
+ """The total number of good frames received that
2558
+ were Single Route Broadcast.""",
2559
+ }, # column
2560
+ "sourceRoutingStatsInOctets" : {
2561
+ "nodetype" : "column",
2562
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2563
+ "oid" : "1.3.6.1.2.1.16.10.6.1.8",
2564
+ "status" : "current",
2565
+ "syntax" : {
2566
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2567
+ },
2568
+ "access" : "readonly",
2569
+ "description" :
2570
+ """The count of octets in good frames sent into this
2571
+ ring from another ring.""",
2572
+ }, # column
2573
+ "sourceRoutingStatsOutOctets" : {
2574
+ "nodetype" : "column",
2575
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2576
+ "oid" : "1.3.6.1.2.1.16.10.6.1.9",
2577
+ "status" : "current",
2578
+ "syntax" : {
2579
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2580
+ },
2581
+ "access" : "readonly",
2582
+ "description" :
2583
+ """The count of octets in good frames sent from this
2584
+ ring to another ring.""",
2585
+ }, # column
2586
+ "sourceRoutingStatsThroughOctets" : {
2587
+ "nodetype" : "column",
2588
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2589
+ "oid" : "1.3.6.1.2.1.16.10.6.1.10",
2590
+ "status" : "current",
2591
+ "syntax" : {
2592
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2593
+ },
2594
+ "access" : "readonly",
2595
+ "description" :
2596
+ """The count of octets in good frames sent another
2597
+ ring, through this ring, to another ring.""",
2598
+ }, # column
2599
+ "sourceRoutingStatsAllRoutesBroadcastOctets" : {
2600
+ "nodetype" : "column",
2601
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2602
+ "oid" : "1.3.6.1.2.1.16.10.6.1.11",
2603
+ "status" : "current",
2604
+ "syntax" : {
2605
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2606
+ },
2607
+ "access" : "readonly",
2608
+ "description" :
2609
+ """The total number of octets in good frames
2610
+ received that were All Routes Broadcast.""",
2611
+ }, # column
2612
+ "sourceRoutingStatsSingleRoutesBroadcastOctets" : {
2613
+ "nodetype" : "column",
2614
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2615
+ "oid" : "1.3.6.1.2.1.16.10.6.1.12",
2616
+ "status" : "current",
2617
+ "syntax" : {
2618
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2619
+ },
2620
+ "access" : "readonly",
2621
+ "description" :
2622
+ """The total number of octets in good frames
2623
+ received that were Single Route Broadcast.""",
2624
+ }, # column
2625
+ "sourceRoutingStatsLocalLLCFrames" : {
2626
+ "nodetype" : "column",
2627
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2628
+ "oid" : "1.3.6.1.2.1.16.10.6.1.13",
2629
+ "status" : "current",
2630
+ "syntax" : {
2631
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2632
+ },
2633
+ "access" : "readonly",
2634
+ "description" :
2635
+ """The total number of frames received who had no
2636
+ RIF field (or had a RIF field that only included
2637
+ the local ring's number) and were not All Route
2638
+ Broadcast Frames.""",
2639
+ }, # column
2640
+ "sourceRoutingStats1HopFrames" : {
2641
+ "nodetype" : "column",
2642
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2643
+ "oid" : "1.3.6.1.2.1.16.10.6.1.14",
2644
+ "status" : "current",
2645
+ "syntax" : {
2646
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2647
+ },
2648
+ "access" : "readonly",
2649
+ "description" :
2650
+ """The total number of frames received whose route
2651
+ had 1 hop, were not All Route Broadcast Frames,
2652
+ and whose source or destination were on this ring
2653
+ (i.e. frames that had a RIF field and had this
2654
+ ring number in the first or last entry of the RIF
2655
+ field).""",
2656
+ }, # column
2657
+ "sourceRoutingStats2HopsFrames" : {
2658
+ "nodetype" : "column",
2659
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2660
+ "oid" : "1.3.6.1.2.1.16.10.6.1.15",
2661
+ "status" : "current",
2662
+ "syntax" : {
2663
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2664
+ },
2665
+ "access" : "readonly",
2666
+ "description" :
2667
+ """The total number of frames received whose route
2668
+ had 2 hops, were not All Route Broadcast Frames,
2669
+ and whose source or destination were on this ring
2670
+ (i.e. frames that had a RIF field and had this
2671
+ ring number in the first or last entry of the RIF
2672
+ field).""",
2673
+ }, # column
2674
+ "sourceRoutingStats3HopsFrames" : {
2675
+ "nodetype" : "column",
2676
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2677
+ "oid" : "1.3.6.1.2.1.16.10.6.1.16",
2678
+ "status" : "current",
2679
+ "syntax" : {
2680
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2681
+ },
2682
+ "access" : "readonly",
2683
+ "description" :
2684
+ """The total number of frames received whose route
2685
+ had 3 hops, were not All Route Broadcast Frames,
2686
+ and whose source or destination were on this ring
2687
+ (i.e. frames that had a RIF field and had this
2688
+ ring number in the first or last entry of the RIF
2689
+ field).""",
2690
+ }, # column
2691
+ "sourceRoutingStats4HopsFrames" : {
2692
+ "nodetype" : "column",
2693
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2694
+ "oid" : "1.3.6.1.2.1.16.10.6.1.17",
2695
+ "status" : "current",
2696
+ "syntax" : {
2697
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2698
+ },
2699
+ "access" : "readonly",
2700
+ "description" :
2701
+ """The total number of frames received whose route
2702
+ had 4 hops, were not All Route Broadcast Frames,
2703
+ and whose source or destination were on this ring
2704
+ (i.e. frames that had a RIF field and had this
2705
+ ring number in the first or last entry of the RIF
2706
+ field).""",
2707
+ }, # column
2708
+ "sourceRoutingStats5HopsFrames" : {
2709
+ "nodetype" : "column",
2710
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2711
+ "oid" : "1.3.6.1.2.1.16.10.6.1.18",
2712
+ "status" : "current",
2713
+ "syntax" : {
2714
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2715
+ },
2716
+ "access" : "readonly",
2717
+ "description" :
2718
+ """The total number of frames received whose route
2719
+ had 5 hops, were not All Route Broadcast Frames,
2720
+ and whose source or destination were on this ring
2721
+ (i.e. frames that had a RIF field and had this
2722
+ ring number in the first or last entry of the RIF
2723
+ field).""",
2724
+ }, # column
2725
+ "sourceRoutingStats6HopsFrames" : {
2726
+ "nodetype" : "column",
2727
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2728
+ "oid" : "1.3.6.1.2.1.16.10.6.1.19",
2729
+ "status" : "current",
2730
+ "syntax" : {
2731
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2732
+ },
2733
+ "access" : "readonly",
2734
+ "description" :
2735
+ """The total number of frames received whose route
2736
+ had 6 hops, were not All Route Broadcast Frames,
2737
+ and whose source or destination were on this ring
2738
+ (i.e. frames that had a RIF field and had this
2739
+ ring number in the first or last entry of the RIF
2740
+ field).""",
2741
+ }, # column
2742
+ "sourceRoutingStats7HopsFrames" : {
2743
+ "nodetype" : "column",
2744
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2745
+ "oid" : "1.3.6.1.2.1.16.10.6.1.20",
2746
+ "status" : "current",
2747
+ "syntax" : {
2748
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2749
+ },
2750
+ "access" : "readonly",
2751
+ "description" :
2752
+ """The total number of frames received whose route
2753
+ had 7 hops, were not All Route Broadcast Frames,
2754
+ and whose source or destination were on this ring
2755
+ (i.e. frames that had a RIF field and had this
2756
+ ring number in the first or last entry of the RIF
2757
+ field).""",
2758
+ }, # column
2759
+ "sourceRoutingStats8HopsFrames" : {
2760
+ "nodetype" : "column",
2761
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2762
+ "oid" : "1.3.6.1.2.1.16.10.6.1.21",
2763
+ "status" : "current",
2764
+ "syntax" : {
2765
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2766
+ },
2767
+ "access" : "readonly",
2768
+ "description" :
2769
+ """The total number of frames received whose route
2770
+ had 8 hops, were not All Route Broadcast Frames,
2771
+ and whose source or destination were on this ring
2772
+ (i.e. frames that had a RIF field and had this
2773
+ ring number in the first or last entry of the RIF
2774
+ field).""",
2775
+ }, # column
2776
+ "sourceRoutingStatsMoreThan8HopsFrames" : {
2777
+ "nodetype" : "column",
2778
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2779
+ "oid" : "1.3.6.1.2.1.16.10.6.1.22",
2780
+ "status" : "current",
2781
+ "syntax" : {
2782
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2783
+ },
2784
+ "access" : "readonly",
2785
+ "description" :
2786
+ """The total number of frames received whose route
2787
+ had more than 8 hops, were not All Route Broadcast
2788
+ Frames, and whose source or destination were on
2789
+ this ring (i.e. frames that had a RIF field and
2790
+ had this ring number in the first or last entry of
2791
+ the RIF field).""",
2792
+ }, # column
2793
+ "sourceRoutingStatsOwner" : {
2794
+ "nodetype" : "column",
2795
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2796
+ "oid" : "1.3.6.1.2.1.16.10.6.1.23",
2797
+ "status" : "current",
2798
+ "syntax" : {
2799
+ "type" : { "module" :"RFC1271-MIB", "name" : "OwnerString"},
2800
+ },
2801
+ "access" : "readwrite",
2802
+ "description" :
2803
+ """The entity that configured this entry and is
2804
+ therefore using the resources assigned to it.""",
2805
+ }, # column
2806
+ "sourceRoutingStatsStatus" : {
2807
+ "nodetype" : "column",
2808
+ "moduleName" : "TOKEN-RING-RMON-MIB",
2809
+ "oid" : "1.3.6.1.2.1.16.10.6.1.24",
2810
+ "status" : "current",
2811
+ "syntax" : {
2812
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
2813
+ },
2814
+ "access" : "readwrite",
2815
+ "description" :
2816
+ """The status of this sourceRoutingStats entry.""",
2817
+ }, # column
2818
+ }, # nodes
2819
+
2820
+ }