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,4335 @@
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 SNMP-REPEATER-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SNMP-REPEATER-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SNMP-REPEATER-MIB",
11
+
12
+ "SNMP-REPEATER-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF HUB MIB Working Group""",
17
+ "contact" :
18
+ """WG E-mail: hubmib@hprnd.rose.hp.com
19
+
20
+ Chair: Dan Romascanu
21
+ Postal: Madge Networks (Israel) Ltd.
22
+ Atidim Technology Park, Bldg. 3
23
+ Tel Aviv 61131, Israel
24
+ Tel: 972-3-6458414, 6458458
25
+ Fax: 972-3-6487146
26
+ E-mail: dromasca@madge.com
27
+
28
+ Editor: Kathryn de Graaf
29
+ Postal: 3Com Corporation
30
+ 118 Turnpike Rd.
31
+ Southborough, MA 01772 USA
32
+ Tel: (508)229-1627
33
+ Fax: (508)490-5882
34
+ E-mail: kdegraaf@isd.3com.com""",
35
+ "description" :
36
+ """Management information for 802.3 repeaters.
37
+
38
+ The following references are used throughout
39
+ this MIB module:
40
+
41
+ [IEEE 802.3 Std]
42
+ refers to IEEE 802.3/ISO 8802-3 Information
43
+ processing systems - Local area networks -
44
+ Part 3: Carrier sense multiple access with
45
+ collision detection (CSMA/CD) access method
46
+ and physical layer specifications (1993).
47
+
48
+ [IEEE 802.3 Mgt]
49
+ refers to IEEE 802.3u-1995, '10 Mb/s &
50
+ 100 Mb/s Management, Section 30,'
51
+ Supplement to ANSI/IEEE 802.3.
52
+
53
+ The following terms are used throughout this
54
+ MIB module. For complete formal definitions,
55
+ the IEEE 802.3 standards should be consulted
56
+ wherever possible:
57
+
58
+ System - A managed entity compliant with this
59
+ MIB, and incorporating at least one managed
60
+ 802.3 repeater.
61
+
62
+ Chassis - An enclosure for one managed repeater,
63
+ part of a managed repeater, or several managed
64
+ repeaters. It typically contains an integral
65
+ power supply and a variable number of available
66
+ module slots.
67
+
68
+ Repeater-unit - The portion of the repeater set
69
+ that is inboard of the physical media interfaces.
70
+ The physical media interfaces (MAUs, AUIs) may be
71
+ physically separated from the repeater-unit, or
72
+ they may be integrated into the same physical
73
+ package.
74
+
75
+ Trivial repeater-unit - An isolated port that can
76
+ gather statistics.
77
+
78
+ Group - A recommended, but optional, entity
79
+ defined by the IEEE 802.3 management standard,
80
+ in order to support a modular numbering scheme.
81
+ The classical example allows an implementor to
82
+ represent field-replaceable units as groups of
83
+ ports, with the port numbering matching the
84
+ modular hardware implementation.
85
+
86
+ System interconnect segment - An internal
87
+ segment allowing interconnection of ports
88
+ belonging to different physical entities
89
+ into the same logical manageable repeater.
90
+ Examples of implementation might be
91
+ backplane busses in modular hubs, or
92
+ chaining cables in stacks of hubs.
93
+ Stack - A scalable system that may include
94
+ managed repeaters, in which modularity is
95
+ achieved by interconnecting a number of
96
+ different chassis.
97
+
98
+ Module - A building block in a modular
99
+ chassis. It typically maps into one 'slot';
100
+ however, the range of configurations may be
101
+ very large, with several modules entering
102
+ one slot, or one module covering several
103
+ slots.""",
104
+ "revisions" : (
105
+ {
106
+ "date" : "1996-09-14 00:00",
107
+ "description" :
108
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
109
+ },
110
+ {
111
+ "date" : "1993-09-01 00:00",
112
+ "description" :
113
+ """Published as RFC 1516""",
114
+ },
115
+ {
116
+ "date" : "1992-10-01 00:00",
117
+ "description" :
118
+ """Published as RFC 1368""",
119
+ },
120
+ ),
121
+ "identity node" : "snmpRptrMod",
122
+ },
123
+
124
+ "imports" : (
125
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
126
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
127
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
128
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
129
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
130
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
131
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
132
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
133
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
134
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
135
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
136
+ {"module" : "SNMPv2-TC", "name" : "MacAddress"},
137
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
138
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
139
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
140
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
141
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
142
+ {"module" : "IF-MIB", "name" : "OwnerString"},
143
+ ),
144
+
145
+ "typedefs" : {
146
+ "OptMacAddr" : {
147
+ "basetype" : "OctetString",
148
+ "status" : "current",
149
+ "ranges" : [
150
+ {
151
+ "min" : "0",
152
+ "max" : "0"
153
+ },
154
+ {
155
+ "min" : "6",
156
+ "max" : "6"
157
+ },
158
+ ],
159
+ "range" : {
160
+ "min" : "0",
161
+ "max" : "6"
162
+ },
163
+ "format" : "1x:",
164
+ "description" :
165
+ """Either a 6 octet address in the `canonical'
166
+ order defined by IEEE 802.1a, i.e., as if it
167
+ were transmitted least significant bit first
168
+ if a value is available or a zero length string.""",
169
+ "reference" :
170
+ """See MacAddress in SNMPv2-TC. The only difference
171
+ is that a zero length string is allowed as a value
172
+ for OptMacAddr and not for MacAddress.""",
173
+ },
174
+ }, # typedefs
175
+
176
+ "nodes" : {
177
+ "snmpDot3RptrMgt" : {
178
+ "nodetype" : "node",
179
+ "moduleName" : "SNMP-REPEATER-MIB",
180
+ "oid" : "1.3.6.1.2.1.22",
181
+ }, # node
182
+ "rptrBasicPackage" : {
183
+ "nodetype" : "node",
184
+ "moduleName" : "SNMP-REPEATER-MIB",
185
+ "oid" : "1.3.6.1.2.1.22.1",
186
+ }, # node
187
+ "rptrRptrInfo" : {
188
+ "nodetype" : "node",
189
+ "moduleName" : "SNMP-REPEATER-MIB",
190
+ "oid" : "1.3.6.1.2.1.22.1.1",
191
+ }, # node
192
+ "rptrGroupCapacity" : {
193
+ "nodetype" : "scalar",
194
+ "moduleName" : "SNMP-REPEATER-MIB",
195
+ "oid" : "1.3.6.1.2.1.22.1.1.1",
196
+ "status" : "deprecated",
197
+ "syntax" : {
198
+ "type" : {
199
+ "basetype" : "Integer32",
200
+ "ranges" : [
201
+ {
202
+ "min" : "1",
203
+ "max" : "2147483647"
204
+ },
205
+ ],
206
+ "range" : {
207
+ "min" : "1",
208
+ "max" : "2147483647"
209
+ },
210
+ },
211
+ },
212
+ "access" : "readonly",
213
+ "description" :
214
+ """********* THIS OBJECT IS DEPRECATED **********
215
+
216
+ The rptrGroupCapacity is the number of groups
217
+ that can be contained within the repeater. Within
218
+ each managed repeater, the groups are uniquely
219
+ numbered in the range from 1 to rptrGroupCapacity.
220
+
221
+ Some groups may not be present in the repeater, in
222
+ which case the actual number of groups present
223
+ will be less than rptrGroupCapacity. The number
224
+ of groups present will never be greater than
225
+ rptrGroupCapacity.
226
+
227
+ Note: In practice, this will generally be the
228
+ number of field-replaceable units (i.e., modules,
229
+ cards, or boards) that can fit in the physical
230
+ repeater enclosure, and the group numbers will
231
+ correspond to numbers marked on the physical
232
+ enclosure.""",
233
+ "reference" :
234
+ """[IEEE 802.3 Mgt], 30.4.1.1.3,
235
+ aRepeaterGroupCapacity.""",
236
+ }, # scalar
237
+ "rptrOperStatus" : {
238
+ "nodetype" : "scalar",
239
+ "moduleName" : "SNMP-REPEATER-MIB",
240
+ "oid" : "1.3.6.1.2.1.22.1.1.2",
241
+ "status" : "deprecated",
242
+ "syntax" : {
243
+ "type" : {
244
+ "basetype" : "Enumeration",
245
+ "other" : {
246
+ "nodetype" : "namednumber",
247
+ "number" : "1"
248
+ },
249
+ "ok" : {
250
+ "nodetype" : "namednumber",
251
+ "number" : "2"
252
+ },
253
+ "rptrFailure" : {
254
+ "nodetype" : "namednumber",
255
+ "number" : "3"
256
+ },
257
+ "groupFailure" : {
258
+ "nodetype" : "namednumber",
259
+ "number" : "4"
260
+ },
261
+ "portFailure" : {
262
+ "nodetype" : "namednumber",
263
+ "number" : "5"
264
+ },
265
+ "generalFailure" : {
266
+ "nodetype" : "namednumber",
267
+ "number" : "6"
268
+ },
269
+ },
270
+ },
271
+ "access" : "readonly",
272
+ "description" :
273
+ """********* THIS OBJECT IS DEPRECATED **********
274
+
275
+ The rptrOperStatus object indicates the
276
+ operational state of the repeater. The
277
+ rptrHealthText object may be consulted for more
278
+ specific information about the state of the
279
+ repeater's health.
280
+
281
+ In the case of multiple kinds of failures (e.g.,
282
+ repeater failure and port failure), the value of
283
+ this attribute shall reflect the highest priority
284
+ failure in the following order, listed highest
285
+ priority first:
286
+
287
+ rptrFailure(3)
288
+ groupFailure(4)
289
+ portFailure(5)
290
+ generalFailure(6).""",
291
+ "reference" :
292
+ """[IEEE 802.3 Mgt], 30.4.1.1.5, aRepeaterHealthState.""",
293
+ }, # scalar
294
+ "rptrHealthText" : {
295
+ "nodetype" : "scalar",
296
+ "moduleName" : "SNMP-REPEATER-MIB",
297
+ "oid" : "1.3.6.1.2.1.22.1.1.3",
298
+ "status" : "deprecated",
299
+ "syntax" : {
300
+ "type" : {
301
+ "basetype" : "OctetString",
302
+ "parent module" : {
303
+ "name" : "SNMPv2-TC",
304
+ "type" : "DisplayString",
305
+ },
306
+ "ranges" : [
307
+ {
308
+ "min" : "0",
309
+ "max" : "255"
310
+ },
311
+ ],
312
+ "range" : {
313
+ "min" : "0",
314
+ "max" : "255"
315
+ },
316
+ },
317
+ },
318
+ "access" : "readonly",
319
+ "description" :
320
+ """********* THIS OBJECT IS DEPRECATED **********
321
+
322
+ The health text object is a text string that
323
+ provides information relevant to the operational
324
+ state of the repeater. Agents may use this string
325
+ to provide detailed information on current
326
+ failures, including how they were detected, and/or
327
+ instructions for problem resolution. The contents
328
+ are agent-specific.""",
329
+ "reference" :
330
+ """[IEEE 802.3 Mgt], 30.4.1.1.6, aRepeaterHealthText.""",
331
+ }, # scalar
332
+ "rptrReset" : {
333
+ "nodetype" : "scalar",
334
+ "moduleName" : "SNMP-REPEATER-MIB",
335
+ "oid" : "1.3.6.1.2.1.22.1.1.4",
336
+ "status" : "deprecated",
337
+ "syntax" : {
338
+ "type" : {
339
+ "basetype" : "Enumeration",
340
+ "noReset" : {
341
+ "nodetype" : "namednumber",
342
+ "number" : "1"
343
+ },
344
+ "reset" : {
345
+ "nodetype" : "namednumber",
346
+ "number" : "2"
347
+ },
348
+ },
349
+ },
350
+ "access" : "readwrite",
351
+ "description" :
352
+ """********* THIS OBJECT IS DEPRECATED **********
353
+
354
+ Setting this object to reset(2) causes a
355
+ transition to the START state of Fig 9-2 in
356
+ section 9 [IEEE 802.3 Std] for a 10Mb/s repeater,
357
+ and the START state of Fig 27-2 in section 27
358
+ of that standard for a 100Mb/s repeater.
359
+
360
+ Setting this object to noReset(1) has no effect.
361
+ The agent will always return the value noReset(1)
362
+ when this object is read.
363
+
364
+ After receiving a request to set this variable to
365
+ reset(2), the agent is allowed to delay the reset
366
+ for a short period. For example, the implementor
367
+ may choose to delay the reset long enough to allow
368
+ the SNMP response to be transmitted. In any
369
+ event, the SNMP response must be transmitted.
370
+
371
+ This action does not reset the management counters
372
+ defined in this document nor does it affect the
373
+ portAdminStatus parameters. Included in this
374
+ action is the execution of a disruptive Self-Test
375
+ with the following characteristics: a) The nature
376
+ of the tests is not specified. b) The test resets
377
+ the repeater but without affecting management
378
+ information about the repeater. c) The test does
379
+ not inject packets onto any segment. d) Packets
380
+ received during the test may or may not be
381
+ transferred. e) The test does not interfere with
382
+ management functions.
383
+
384
+ After performing this self-test, the agent will
385
+ update the repeater health information (including
386
+ rptrOperStatus and rptrHealthText), and send a
387
+ rptrHealth trap.""",
388
+ "reference" :
389
+ """[IEEE 802.3 Mgt], 30.4.1.2.1, acResetRepeater.""",
390
+ }, # scalar
391
+ "rptrNonDisruptTest" : {
392
+ "nodetype" : "scalar",
393
+ "moduleName" : "SNMP-REPEATER-MIB",
394
+ "oid" : "1.3.6.1.2.1.22.1.1.5",
395
+ "status" : "deprecated",
396
+ "syntax" : {
397
+ "type" : {
398
+ "basetype" : "Enumeration",
399
+ "noSelfTest" : {
400
+ "nodetype" : "namednumber",
401
+ "number" : "1"
402
+ },
403
+ "selfTest" : {
404
+ "nodetype" : "namednumber",
405
+ "number" : "2"
406
+ },
407
+ },
408
+ },
409
+ "access" : "readwrite",
410
+ "description" :
411
+ """********* THIS OBJECT IS DEPRECATED **********
412
+
413
+ Setting this object to selfTest(2) causes the
414
+ repeater to perform a agent-specific, non-
415
+ disruptive self-test that has the following
416
+ characteristics: a) The nature of the tests is
417
+ not specified. b) The test does not change the
418
+ state of the repeater or management information
419
+ about the repeater. c) The test does not inject
420
+ packets onto any segment. d) The test does not
421
+ prevent the relay of any packets. e) The test
422
+ does not interfere with management functions.
423
+
424
+ After performing this test, the agent will update
425
+ the repeater health information (including
426
+ rptrOperStatus and rptrHealthText) and send a
427
+ rptrHealth trap.
428
+
429
+ Note that this definition allows returning an
430
+ 'okay' result after doing a trivial test.
431
+
432
+ Setting this object to noSelfTest(1) has no
433
+ effect. The agent will always return the value
434
+ noSelfTest(1) when this object is read.""",
435
+ "reference" :
436
+ """[IEEE 802.3 Mgt], 30.4.1.2.2,
437
+ acExecuteNonDisruptiveSelfTest.""",
438
+ }, # scalar
439
+ "rptrTotalPartitionedPorts" : {
440
+ "nodetype" : "scalar",
441
+ "moduleName" : "SNMP-REPEATER-MIB",
442
+ "oid" : "1.3.6.1.2.1.22.1.1.6",
443
+ "status" : "deprecated",
444
+ "syntax" : {
445
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
446
+ },
447
+ "access" : "readonly",
448
+ "description" :
449
+ """********* THIS OBJECT IS DEPRECATED **********
450
+
451
+ This object returns the total number of ports in
452
+ the repeater whose current state meets all three
453
+ of the following criteria: rptrPortOperStatus
454
+ does not have the value notPresent(3),
455
+ rptrPortAdminStatus is enabled(1), and
456
+ rptrPortAutoPartitionState is autoPartitioned(2).""",
457
+ }, # scalar
458
+ "rptrGroupInfo" : {
459
+ "nodetype" : "node",
460
+ "moduleName" : "SNMP-REPEATER-MIB",
461
+ "oid" : "1.3.6.1.2.1.22.1.2",
462
+ }, # node
463
+ "rptrGroupTable" : {
464
+ "nodetype" : "table",
465
+ "moduleName" : "SNMP-REPEATER-MIB",
466
+ "oid" : "1.3.6.1.2.1.22.1.2.1",
467
+ "status" : "current",
468
+ "description" :
469
+ """Table of descriptive and status information about
470
+ the groups of ports.""",
471
+ }, # table
472
+ "rptrGroupEntry" : {
473
+ "nodetype" : "row",
474
+ "moduleName" : "SNMP-REPEATER-MIB",
475
+ "oid" : "1.3.6.1.2.1.22.1.2.1.1",
476
+ "status" : "current",
477
+ "linkage" : [
478
+ "rptrGroupIndex",
479
+ ],
480
+ "description" :
481
+ """An entry in the table, containing information
482
+ about a single group of ports.""",
483
+ }, # row
484
+ "rptrGroupIndex" : {
485
+ "nodetype" : "column",
486
+ "moduleName" : "SNMP-REPEATER-MIB",
487
+ "oid" : "1.3.6.1.2.1.22.1.2.1.1.1",
488
+ "status" : "current",
489
+ "syntax" : {
490
+ "type" : {
491
+ "basetype" : "Integer32",
492
+ "ranges" : [
493
+ {
494
+ "min" : "1",
495
+ "max" : "2147483647"
496
+ },
497
+ ],
498
+ "range" : {
499
+ "min" : "1",
500
+ "max" : "2147483647"
501
+ },
502
+ },
503
+ },
504
+ "access" : "readonly",
505
+ "description" :
506
+ """This object identifies the group within the
507
+ system for which this entry contains
508
+ information.""",
509
+ "reference" :
510
+ """[IEEE 802.3 Mgt], 30.4.2.1.1, aGroupID.""",
511
+ }, # column
512
+ "rptrGroupDescr" : {
513
+ "nodetype" : "column",
514
+ "moduleName" : "SNMP-REPEATER-MIB",
515
+ "oid" : "1.3.6.1.2.1.22.1.2.1.1.2",
516
+ "status" : "deprecated",
517
+ "syntax" : {
518
+ "type" : {
519
+ "basetype" : "OctetString",
520
+ "parent module" : {
521
+ "name" : "SNMPv2-TC",
522
+ "type" : "DisplayString",
523
+ },
524
+ "ranges" : [
525
+ {
526
+ "min" : "0",
527
+ "max" : "255"
528
+ },
529
+ ],
530
+ "range" : {
531
+ "min" : "0",
532
+ "max" : "255"
533
+ },
534
+ },
535
+ },
536
+ "access" : "readonly",
537
+ "description" :
538
+ """********* THIS OBJECT IS DEPRECATED **********
539
+
540
+ A textual description of the group. This value
541
+ should include the full name and version
542
+ identification of the group's hardware type and
543
+ indicate how the group is differentiated from
544
+ other types of groups in the repeater. Plug-in
545
+ Module, Rev A' or 'Barney Rubble 10BASE-T 4-port
546
+ SIMM socket Version 2.1' are examples of valid
547
+ group descriptions.
548
+
549
+ It is mandatory that this only contain printable
550
+ ASCII characters.""",
551
+ }, # column
552
+ "rptrGroupObjectID" : {
553
+ "nodetype" : "column",
554
+ "moduleName" : "SNMP-REPEATER-MIB",
555
+ "oid" : "1.3.6.1.2.1.22.1.2.1.1.3",
556
+ "status" : "current",
557
+ "syntax" : {
558
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
559
+ },
560
+ "access" : "readonly",
561
+ "description" :
562
+ """The vendor's authoritative identification of the
563
+ group. This value may be allocated within the SMI
564
+ enterprises subtree (1.3.6.1.4.1) and provides a
565
+ straight-forward and unambiguous means for
566
+ determining what kind of group is being managed.
567
+
568
+ For example, this object could take the value
569
+ 1.3.6.1.4.1.4242.1.2.14 if vendor 'Flintstones,
570
+ Inc.' was assigned the subtree 1.3.6.1.4.1.4242,
571
+ and had assigned the identifier
572
+ 1.3.6.1.4.1.4242.1.2.14 to its 'Wilma Flintstone
573
+ 6-Port FOIRL Plug-in Module.'""",
574
+ }, # column
575
+ "rptrGroupOperStatus" : {
576
+ "nodetype" : "column",
577
+ "moduleName" : "SNMP-REPEATER-MIB",
578
+ "oid" : "1.3.6.1.2.1.22.1.2.1.1.4",
579
+ "status" : "current",
580
+ "syntax" : {
581
+ "type" : {
582
+ "basetype" : "Enumeration",
583
+ "other" : {
584
+ "nodetype" : "namednumber",
585
+ "number" : "1"
586
+ },
587
+ "operational" : {
588
+ "nodetype" : "namednumber",
589
+ "number" : "2"
590
+ },
591
+ "malfunctioning" : {
592
+ "nodetype" : "namednumber",
593
+ "number" : "3"
594
+ },
595
+ "notPresent" : {
596
+ "nodetype" : "namednumber",
597
+ "number" : "4"
598
+ },
599
+ "underTest" : {
600
+ "nodetype" : "namednumber",
601
+ "number" : "5"
602
+ },
603
+ "resetInProgress" : {
604
+ "nodetype" : "namednumber",
605
+ "number" : "6"
606
+ },
607
+ },
608
+ },
609
+ "access" : "readonly",
610
+ "description" :
611
+ """An object that indicates the operational status
612
+ of the group.
613
+
614
+ A status of notPresent(4) indicates that the group
615
+ is temporarily or permanently physically and/or
616
+ logically not a part of the repeater. It is an
617
+ implementation-specific matter as to whether the
618
+ agent effectively removes notPresent entries from
619
+ the table.
620
+
621
+ A status of operational(2) indicates that the
622
+ group is functioning, and a status of
623
+ malfunctioning(3) indicates that the group is
624
+ malfunctioning in some way.""",
625
+ }, # column
626
+ "rptrGroupLastOperStatusChange" : {
627
+ "nodetype" : "column",
628
+ "moduleName" : "SNMP-REPEATER-MIB",
629
+ "oid" : "1.3.6.1.2.1.22.1.2.1.1.5",
630
+ "status" : "deprecated",
631
+ "syntax" : {
632
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
633
+ },
634
+ "access" : "readonly",
635
+ "description" :
636
+ """********* THIS OBJECT IS DEPRECATED **********
637
+
638
+ An object that contains the value of sysUpTime at
639
+ the time when the last of the following occurred:
640
+ 1) the agent cold- or warm-started;
641
+ 2) the row for the group was created (such
642
+ as when the group was added to the system); or
643
+ 3) the value of rptrGroupOperStatus for the
644
+ group changed.
645
+
646
+ A value of zero indicates that the group's
647
+ operational status has not changed since the agent
648
+ last restarted.""",
649
+ }, # column
650
+ "rptrGroupPortCapacity" : {
651
+ "nodetype" : "column",
652
+ "moduleName" : "SNMP-REPEATER-MIB",
653
+ "oid" : "1.3.6.1.2.1.22.1.2.1.1.6",
654
+ "status" : "current",
655
+ "syntax" : {
656
+ "type" : {
657
+ "basetype" : "Integer32",
658
+ "ranges" : [
659
+ {
660
+ "min" : "1",
661
+ "max" : "2147483647"
662
+ },
663
+ ],
664
+ "range" : {
665
+ "min" : "1",
666
+ "max" : "2147483647"
667
+ },
668
+ },
669
+ },
670
+ "access" : "readonly",
671
+ "description" :
672
+ """The rptrGroupPortCapacity is the number of ports
673
+ that can be contained within the group. Valid
674
+ range is 1-2147483647. Within each group, the
675
+ ports are uniquely numbered in the range from 1 to
676
+ rptrGroupPortCapacity.
677
+
678
+ Some ports may not be present in the system, in
679
+ which case the actual number of ports present
680
+ will be less than the value of rptrGroupPortCapacity.
681
+ The number of ports present in the group will never
682
+ be greater than the value of rptrGroupPortCapacity.
683
+
684
+ Note: In practice, this will generally be the
685
+ number of ports on a module, card, or board, and
686
+ the port numbers will correspond to numbers marked
687
+ on the physical embodiment.""",
688
+ "reference" :
689
+ """IEEE 802.3 Mgt, 30.4.2.1.2, aGroupPortCapacity.""",
690
+ }, # column
691
+ "rptrPortInfo" : {
692
+ "nodetype" : "node",
693
+ "moduleName" : "SNMP-REPEATER-MIB",
694
+ "oid" : "1.3.6.1.2.1.22.1.3",
695
+ }, # node
696
+ "rptrPortTable" : {
697
+ "nodetype" : "table",
698
+ "moduleName" : "SNMP-REPEATER-MIB",
699
+ "oid" : "1.3.6.1.2.1.22.1.3.1",
700
+ "status" : "current",
701
+ "description" :
702
+ """Table of descriptive and status information about
703
+ the repeater ports in the system. The number of
704
+ entries is independent of the number of repeaters
705
+ in the managed system.""",
706
+ }, # table
707
+ "rptrPortEntry" : {
708
+ "nodetype" : "row",
709
+ "moduleName" : "SNMP-REPEATER-MIB",
710
+ "oid" : "1.3.6.1.2.1.22.1.3.1.1",
711
+ "status" : "current",
712
+ "linkage" : [
713
+ "rptrPortGroupIndex",
714
+ "rptrPortIndex",
715
+ ],
716
+ "description" :
717
+ """An entry in the table, containing information
718
+ about a single port.""",
719
+ }, # row
720
+ "rptrPortGroupIndex" : {
721
+ "nodetype" : "column",
722
+ "moduleName" : "SNMP-REPEATER-MIB",
723
+ "oid" : "1.3.6.1.2.1.22.1.3.1.1.1",
724
+ "status" : "current",
725
+ "syntax" : {
726
+ "type" : {
727
+ "basetype" : "Integer32",
728
+ "ranges" : [
729
+ {
730
+ "min" : "1",
731
+ "max" : "2147483647"
732
+ },
733
+ ],
734
+ "range" : {
735
+ "min" : "1",
736
+ "max" : "2147483647"
737
+ },
738
+ },
739
+ },
740
+ "access" : "readonly",
741
+ "description" :
742
+ """This object identifies the group containing the
743
+ port for which this entry contains information.""",
744
+ }, # column
745
+ "rptrPortIndex" : {
746
+ "nodetype" : "column",
747
+ "moduleName" : "SNMP-REPEATER-MIB",
748
+ "oid" : "1.3.6.1.2.1.22.1.3.1.1.2",
749
+ "status" : "current",
750
+ "syntax" : {
751
+ "type" : {
752
+ "basetype" : "Integer32",
753
+ "ranges" : [
754
+ {
755
+ "min" : "1",
756
+ "max" : "2147483647"
757
+ },
758
+ ],
759
+ "range" : {
760
+ "min" : "1",
761
+ "max" : "2147483647"
762
+ },
763
+ },
764
+ },
765
+ "access" : "readonly",
766
+ "description" :
767
+ """This object identifies the port within the group
768
+ for which this entry contains information. This
769
+ identifies the port independently from the repeater
770
+ it may be attached to. The numbering scheme for
771
+ ports is implementation specific; however, this
772
+ value can never be greater than
773
+ rptrGroupPortCapacity for the associated group.""",
774
+ "reference" :
775
+ """[IEEE 802.3 Mgt], 30.4.3.1.1, aPortID.""",
776
+ }, # column
777
+ "rptrPortAdminStatus" : {
778
+ "nodetype" : "column",
779
+ "moduleName" : "SNMP-REPEATER-MIB",
780
+ "oid" : "1.3.6.1.2.1.22.1.3.1.1.3",
781
+ "status" : "current",
782
+ "syntax" : {
783
+ "type" : {
784
+ "basetype" : "Enumeration",
785
+ "enabled" : {
786
+ "nodetype" : "namednumber",
787
+ "number" : "1"
788
+ },
789
+ "disabled" : {
790
+ "nodetype" : "namednumber",
791
+ "number" : "2"
792
+ },
793
+ },
794
+ },
795
+ "access" : "readwrite",
796
+ "description" :
797
+ """Setting this object to disabled(2) disables the
798
+ port. A disabled port neither transmits nor
799
+ receives. Once disabled, a port must be
800
+ explicitly enabled to restore operation. A port
801
+ which is disabled when power is lost or when a
802
+ reset is exerted shall remain disabled when normal
803
+ operation resumes.
804
+
805
+ The admin status takes precedence over auto-
806
+ partition and functionally operates between the
807
+ auto-partition mechanism and the AUI/PMA.
808
+
809
+ Setting this object to enabled(1) enables the port
810
+ and exerts a BEGIN on the port's auto-partition
811
+ state machine.
812
+
813
+ (In effect, when a port is disabled, the value of
814
+ rptrPortAutoPartitionState for that port is frozen
815
+ until the port is next enabled. When the port
816
+ becomes enabled, the rptrPortAutoPartitionState
817
+ becomes notAutoPartitioned(1), regardless of its
818
+ pre-disabling state.)""",
819
+ "reference" :
820
+ """[IEEE 802.3 Mgt], 30.4.3.1.2, aPortAdminState
821
+ and 30.4.3.2.1, acPortAdminControl.""",
822
+ }, # column
823
+ "rptrPortAutoPartitionState" : {
824
+ "nodetype" : "column",
825
+ "moduleName" : "SNMP-REPEATER-MIB",
826
+ "oid" : "1.3.6.1.2.1.22.1.3.1.1.4",
827
+ "status" : "current",
828
+ "syntax" : {
829
+ "type" : {
830
+ "basetype" : "Enumeration",
831
+ "notAutoPartitioned" : {
832
+ "nodetype" : "namednumber",
833
+ "number" : "1"
834
+ },
835
+ "autoPartitioned" : {
836
+ "nodetype" : "namednumber",
837
+ "number" : "2"
838
+ },
839
+ },
840
+ },
841
+ "access" : "readonly",
842
+ "description" :
843
+ """The autoPartitionState flag indicates whether the
844
+ port is currently partitioned by the repeater's
845
+ auto-partition protection.
846
+
847
+ The conditions that cause port partitioning are
848
+ specified in partition state machine in Sections
849
+ 9 and 27 of [IEEE 802.3 Std]. They are not
850
+ differentiated here.""",
851
+ "reference" :
852
+ """[IEEE 802.3 Mgt], 30.4.3.1.3, aAutoPartitionState.""",
853
+ }, # column
854
+ "rptrPortOperStatus" : {
855
+ "nodetype" : "column",
856
+ "moduleName" : "SNMP-REPEATER-MIB",
857
+ "oid" : "1.3.6.1.2.1.22.1.3.1.1.5",
858
+ "status" : "current",
859
+ "syntax" : {
860
+ "type" : {
861
+ "basetype" : "Enumeration",
862
+ "operational" : {
863
+ "nodetype" : "namednumber",
864
+ "number" : "1"
865
+ },
866
+ "notOperational" : {
867
+ "nodetype" : "namednumber",
868
+ "number" : "2"
869
+ },
870
+ "notPresent" : {
871
+ "nodetype" : "namednumber",
872
+ "number" : "3"
873
+ },
874
+ },
875
+ },
876
+ "access" : "readonly",
877
+ "description" :
878
+ """This object indicates the port's operational
879
+ status. The notPresent(3) status indicates the
880
+ port is physically removed (note this may or may
881
+ not be possible depending on the type of port.)
882
+ The operational(1) status indicates that the port
883
+ is enabled (see rptrPortAdminStatus) and working,
884
+ even though it might be auto-partitioned (see
885
+ rptrPortAutoPartitionState).
886
+
887
+ If this object has the value operational(1) and
888
+ rptrPortAdminStatus is set to disabled(2), it is
889
+ expected that this object's value will soon change
890
+ to notOperational(2).""",
891
+ }, # column
892
+ "rptrPortRptrId" : {
893
+ "nodetype" : "column",
894
+ "moduleName" : "SNMP-REPEATER-MIB",
895
+ "oid" : "1.3.6.1.2.1.22.1.3.1.1.6",
896
+ "status" : "current",
897
+ "syntax" : {
898
+ "type" : {
899
+ "basetype" : "Integer32",
900
+ "ranges" : [
901
+ {
902
+ "min" : "0",
903
+ "max" : "2147483647"
904
+ },
905
+ ],
906
+ "range" : {
907
+ "min" : "0",
908
+ "max" : "2147483647"
909
+ },
910
+ },
911
+ },
912
+ "access" : "readonly",
913
+ "description" :
914
+ """This object identifies the repeater to
915
+ which this port belongs. The repeater
916
+ identified by a particular value of this object
917
+ is the same as that identified by the same
918
+ value of rptrInfoId. A value of zero
919
+ indicates that this port currently is not
920
+ a member of any repeater.""",
921
+ }, # column
922
+ "rptrAllRptrInfo" : {
923
+ "nodetype" : "node",
924
+ "moduleName" : "SNMP-REPEATER-MIB",
925
+ "oid" : "1.3.6.1.2.1.22.1.4",
926
+ }, # node
927
+ "rptrInfoTable" : {
928
+ "nodetype" : "table",
929
+ "moduleName" : "SNMP-REPEATER-MIB",
930
+ "oid" : "1.3.6.1.2.1.22.1.4.1",
931
+ "status" : "current",
932
+ "description" :
933
+ """A table of information about each
934
+ non-trivial repeater. The number of entries
935
+ depends on the physical configuration of the
936
+ managed system.""",
937
+ }, # table
938
+ "rptrInfoEntry" : {
939
+ "nodetype" : "row",
940
+ "moduleName" : "SNMP-REPEATER-MIB",
941
+ "oid" : "1.3.6.1.2.1.22.1.4.1.1",
942
+ "status" : "current",
943
+ "linkage" : [
944
+ "rptrInfoId",
945
+ ],
946
+ "description" :
947
+ """An entry in the table, containing information
948
+ about a single non-trivial repeater.""",
949
+ }, # row
950
+ "rptrInfoId" : {
951
+ "nodetype" : "column",
952
+ "moduleName" : "SNMP-REPEATER-MIB",
953
+ "oid" : "1.3.6.1.2.1.22.1.4.1.1.1",
954
+ "status" : "current",
955
+ "syntax" : {
956
+ "type" : {
957
+ "basetype" : "Integer32",
958
+ "ranges" : [
959
+ {
960
+ "min" : "1",
961
+ "max" : "2147483647"
962
+ },
963
+ ],
964
+ "range" : {
965
+ "min" : "1",
966
+ "max" : "2147483647"
967
+ },
968
+ },
969
+ },
970
+ "access" : "readonly",
971
+ "description" :
972
+ """This object identifies the repeater for which
973
+ this entry contains information.""",
974
+ }, # column
975
+ "rptrInfoRptrType" : {
976
+ "nodetype" : "column",
977
+ "moduleName" : "SNMP-REPEATER-MIB",
978
+ "oid" : "1.3.6.1.2.1.22.1.4.1.1.2",
979
+ "status" : "current",
980
+ "syntax" : {
981
+ "type" : {
982
+ "basetype" : "Enumeration",
983
+ "other" : {
984
+ "nodetype" : "namednumber",
985
+ "number" : "1"
986
+ },
987
+ "tenMb" : {
988
+ "nodetype" : "namednumber",
989
+ "number" : "2"
990
+ },
991
+ "onehundredMbClassI" : {
992
+ "nodetype" : "namednumber",
993
+ "number" : "3"
994
+ },
995
+ "onehundredMbClassII" : {
996
+ "nodetype" : "namednumber",
997
+ "number" : "4"
998
+ },
999
+ },
1000
+ },
1001
+ "access" : "readonly",
1002
+ "description" :
1003
+ """The rptrInfoRptrType returns a value that identifies
1004
+ the CSMA/CD repeater type.""",
1005
+ "reference" :
1006
+ """[IEEE 802.3 Mgt], 30.4.1.1.2, aRepeaterType.""",
1007
+ }, # column
1008
+ "rptrInfoOperStatus" : {
1009
+ "nodetype" : "column",
1010
+ "moduleName" : "SNMP-REPEATER-MIB",
1011
+ "oid" : "1.3.6.1.2.1.22.1.4.1.1.3",
1012
+ "status" : "current",
1013
+ "syntax" : {
1014
+ "type" : {
1015
+ "basetype" : "Enumeration",
1016
+ "other" : {
1017
+ "nodetype" : "namednumber",
1018
+ "number" : "1"
1019
+ },
1020
+ "ok" : {
1021
+ "nodetype" : "namednumber",
1022
+ "number" : "2"
1023
+ },
1024
+ "failure" : {
1025
+ "nodetype" : "namednumber",
1026
+ "number" : "3"
1027
+ },
1028
+ },
1029
+ },
1030
+ "access" : "readonly",
1031
+ "description" :
1032
+ """The rptrInfoOperStatus object indicates the
1033
+ operational state of the repeater.""",
1034
+ "reference" :
1035
+ """[IEEE 802.3 Mgt], 30.4.1.1.5, aRepeaterHealthState.""",
1036
+ }, # column
1037
+ "rptrInfoReset" : {
1038
+ "nodetype" : "column",
1039
+ "moduleName" : "SNMP-REPEATER-MIB",
1040
+ "oid" : "1.3.6.1.2.1.22.1.4.1.1.4",
1041
+ "status" : "current",
1042
+ "syntax" : {
1043
+ "type" : {
1044
+ "basetype" : "Enumeration",
1045
+ "noReset" : {
1046
+ "nodetype" : "namednumber",
1047
+ "number" : "1"
1048
+ },
1049
+ "reset" : {
1050
+ "nodetype" : "namednumber",
1051
+ "number" : "2"
1052
+ },
1053
+ },
1054
+ },
1055
+ "access" : "readwrite",
1056
+ "description" :
1057
+ """Setting this object to reset(2) causes a
1058
+ transition to the START state of Fig 9-2 in
1059
+ section 9 [IEEE 802.3 Std] for a 10Mb/s repeater,
1060
+ and to the START state of Fig 27-2 in section 27
1061
+ of that standard for a 100Mb/s repeater.
1062
+
1063
+ Setting this object to noReset(1) has no effect.
1064
+ The agent will always return the value noReset(1)
1065
+ when this object is read.
1066
+
1067
+ After receiving a request to set this variable to
1068
+ reset(2), the agent is allowed to delay the reset
1069
+ for a short period. For example, the implementor
1070
+ may choose to delay the reset long enough to allow
1071
+ the SNMP response to be transmitted. In any
1072
+ event, the SNMP response must be transmitted.
1073
+
1074
+ This action does not reset the management counters
1075
+ defined in this document nor does it affect the
1076
+ portAdminStatus parameters. Included in this
1077
+ action is the execution of a disruptive Self-Test
1078
+ with the following characteristics: a) The nature
1079
+ of the tests is not specified. b) The test resets
1080
+ the repeater but without affecting management
1081
+ information about the repeater. c) The test does
1082
+ not inject packets onto any segment. d) Packets
1083
+ received during the test may or may not be
1084
+ transferred. e) The test does not interfere with
1085
+ management functions.
1086
+
1087
+ After performing this self-test, the agent will
1088
+ update the repeater health information (including
1089
+ rptrInfoOperStatus), and send a rptrInfoResetEvent
1090
+ notification.""",
1091
+ "reference" :
1092
+ """[IEEE 802.3 Mgt], 30.4.1.2.1, acResetRepeater.""",
1093
+ }, # column
1094
+ "rptrInfoPartitionedPorts" : {
1095
+ "nodetype" : "column",
1096
+ "moduleName" : "SNMP-REPEATER-MIB",
1097
+ "oid" : "1.3.6.1.2.1.22.1.4.1.1.5",
1098
+ "status" : "current",
1099
+ "syntax" : {
1100
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1101
+ },
1102
+ "access" : "readonly",
1103
+ "description" :
1104
+ """This object returns the total number of ports in
1105
+ the repeater whose current state meets all three
1106
+ of the following criteria: rptrPortOperStatus
1107
+ does not have the value notPresent(3),
1108
+ rptrPortAdminStatus is enabled(1), and
1109
+ rptrPortAutoPartitionState is autoPartitioned(2).""",
1110
+ }, # column
1111
+ "rptrInfoLastChange" : {
1112
+ "nodetype" : "column",
1113
+ "moduleName" : "SNMP-REPEATER-MIB",
1114
+ "oid" : "1.3.6.1.2.1.22.1.4.1.1.6",
1115
+ "status" : "current",
1116
+ "syntax" : {
1117
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1118
+ },
1119
+ "access" : "readonly",
1120
+ "description" :
1121
+ """The value of sysUpTime when any of the following
1122
+ conditions occurred:
1123
+ 1) agent cold- or warm-started;
1124
+ 2) this instance of repeater was created
1125
+ (such as when a device or module was
1126
+ added to the system);
1127
+ 3) a change in the value of rptrInfoOperStatus;
1128
+ 4) ports were added or removed as members of
1129
+ the repeater; or
1130
+ 5) any of the counters associated with this
1131
+ repeater had a discontinuity.""",
1132
+ }, # column
1133
+ "rptrMonitorPackage" : {
1134
+ "nodetype" : "node",
1135
+ "moduleName" : "SNMP-REPEATER-MIB",
1136
+ "oid" : "1.3.6.1.2.1.22.2",
1137
+ }, # node
1138
+ "rptrMonitorRptrInfo" : {
1139
+ "nodetype" : "node",
1140
+ "moduleName" : "SNMP-REPEATER-MIB",
1141
+ "oid" : "1.3.6.1.2.1.22.2.1",
1142
+ }, # node
1143
+ "rptrMonitorTransmitCollisions" : {
1144
+ "nodetype" : "scalar",
1145
+ "moduleName" : "SNMP-REPEATER-MIB",
1146
+ "oid" : "1.3.6.1.2.1.22.2.1.1",
1147
+ "status" : "deprecated",
1148
+ "syntax" : {
1149
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1150
+ },
1151
+ "access" : "readonly",
1152
+ "description" :
1153
+ """********* THIS OBJECT IS DEPRECATED **********
1154
+
1155
+ For a clause 9 (10Mb/s) repeater, this counter
1156
+ is incremented every time the repeater state
1157
+ machine enters the TRANSMIT COLLISION state
1158
+ from any state other than ONE PORT LEFT
1159
+ (Ref: Fig 9-2 [IEEE 802.3 Std]).
1160
+
1161
+ For a clause 27 repeater, this counter is
1162
+ incremented every time the repeater core state
1163
+ diagram enters the Jam state as a result of
1164
+ Activity(ALL) > 1 (fig 27-2 [IEEE 802.3 Std]).
1165
+ The approximate minimum time for rollover of this
1166
+ counter is 16 hours in a 10Mb/s repeater and 1.6
1167
+ hours in a 100Mb/s repeater.""",
1168
+ "reference" :
1169
+ """[IEEE 802.3 Mgt], 30.4.1.1.8, aTransmitCollisions.""",
1170
+ }, # scalar
1171
+ "rptrMonitorGroupInfo" : {
1172
+ "nodetype" : "node",
1173
+ "moduleName" : "SNMP-REPEATER-MIB",
1174
+ "oid" : "1.3.6.1.2.1.22.2.2",
1175
+ }, # node
1176
+ "rptrMonitorGroupTable" : {
1177
+ "nodetype" : "table",
1178
+ "moduleName" : "SNMP-REPEATER-MIB",
1179
+ "oid" : "1.3.6.1.2.1.22.2.2.1",
1180
+ "status" : "deprecated",
1181
+ "description" :
1182
+ """********* THIS OBJECT IS DEPRECATED **********
1183
+
1184
+ Table of performance and error statistics for the
1185
+ groups within the repeater. The number of entries
1186
+ is the same as that in the rptrGroupTable.""",
1187
+ }, # table
1188
+ "rptrMonitorGroupEntry" : {
1189
+ "nodetype" : "row",
1190
+ "moduleName" : "SNMP-REPEATER-MIB",
1191
+ "oid" : "1.3.6.1.2.1.22.2.2.1.1",
1192
+ "status" : "deprecated",
1193
+ "linkage" : [
1194
+ "rptrMonitorGroupIndex",
1195
+ ],
1196
+ "description" :
1197
+ """********* THIS OBJECT IS DEPRECATED **********
1198
+
1199
+ An entry in the table, containing total
1200
+ performance and error statistics for a single
1201
+ group. Regular retrieval of the information in
1202
+ this table provides a means of tracking the
1203
+ performance and health of the networked devices
1204
+ attached to this group's ports.
1205
+
1206
+ The counters in this table are redundant in the
1207
+ sense that they are the summations of information
1208
+ already available through other objects. However,
1209
+ these sums provide a considerable optimization of
1210
+ network management traffic over the otherwise
1211
+ necessary retrieval of the individual counters
1212
+ included in each sum.
1213
+
1214
+ Note: Group-level counters are
1215
+ deprecated in this MIB. It is recommended
1216
+ that management applications instead use
1217
+ the repeater-level counters contained in
1218
+ the rptrMonTable.""",
1219
+ }, # row
1220
+ "rptrMonitorGroupIndex" : {
1221
+ "nodetype" : "column",
1222
+ "moduleName" : "SNMP-REPEATER-MIB",
1223
+ "oid" : "1.3.6.1.2.1.22.2.2.1.1.1",
1224
+ "status" : "deprecated",
1225
+ "syntax" : {
1226
+ "type" : {
1227
+ "basetype" : "Integer32",
1228
+ "ranges" : [
1229
+ {
1230
+ "min" : "1",
1231
+ "max" : "2147483647"
1232
+ },
1233
+ ],
1234
+ "range" : {
1235
+ "min" : "1",
1236
+ "max" : "2147483647"
1237
+ },
1238
+ },
1239
+ },
1240
+ "access" : "readonly",
1241
+ "description" :
1242
+ """********* THIS OBJECT IS DEPRECATED **********
1243
+
1244
+ This object identifies the group within the
1245
+ repeater for which this entry contains
1246
+ information.""",
1247
+ }, # column
1248
+ "rptrMonitorGroupTotalFrames" : {
1249
+ "nodetype" : "column",
1250
+ "moduleName" : "SNMP-REPEATER-MIB",
1251
+ "oid" : "1.3.6.1.2.1.22.2.2.1.1.2",
1252
+ "status" : "deprecated",
1253
+ "syntax" : {
1254
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1255
+ },
1256
+ "access" : "readonly",
1257
+ "description" :
1258
+ """********* THIS OBJECT IS DEPRECATED **********
1259
+
1260
+ The total number of frames of valid frame length
1261
+ that have been received on the ports in this group
1262
+ and for which the FCSError and CollisionEvent
1263
+ signals were not asserted. This counter is the
1264
+ summation of the values of the
1265
+ rptrMonitorPortReadableFrames counters for all of
1266
+ the ports in the group.
1267
+
1268
+ This statistic provides one of the parameters
1269
+ necessary for obtaining the packet error rate.
1270
+ The approximate minimum time for rollover of this
1271
+ counter is 80 hours in a 10Mb/s repeater.""",
1272
+ }, # column
1273
+ "rptrMonitorGroupTotalOctets" : {
1274
+ "nodetype" : "column",
1275
+ "moduleName" : "SNMP-REPEATER-MIB",
1276
+ "oid" : "1.3.6.1.2.1.22.2.2.1.1.3",
1277
+ "status" : "deprecated",
1278
+ "syntax" : {
1279
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1280
+ },
1281
+ "access" : "readonly",
1282
+ "description" :
1283
+ """********* THIS OBJECT IS DEPRECATED **********
1284
+
1285
+ The total number of octets contained in the valid
1286
+ frames that have been received on the ports in
1287
+ this group. This counter is the summation of the
1288
+ values of the rptrMonitorPortReadableOctets
1289
+ counters for all of the ports in the group.
1290
+
1291
+ This statistic provides an indicator of the total
1292
+ data transferred. The approximate minimum time
1293
+ for rollover of this counter is 58 minutes in a
1294
+ 10Mb/s repeater.""",
1295
+ }, # column
1296
+ "rptrMonitorGroupTotalErrors" : {
1297
+ "nodetype" : "column",
1298
+ "moduleName" : "SNMP-REPEATER-MIB",
1299
+ "oid" : "1.3.6.1.2.1.22.2.2.1.1.4",
1300
+ "status" : "deprecated",
1301
+ "syntax" : {
1302
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1303
+ },
1304
+ "access" : "readonly",
1305
+ "description" :
1306
+ """********* THIS OBJECT IS DEPRECATED **********
1307
+
1308
+ The total number of errors which have occurred on
1309
+ all of the ports in this group. This counter is
1310
+ the summation of the values of the
1311
+ rptrMonitorPortTotalErrors counters for all of the
1312
+ ports in the group.""",
1313
+ }, # column
1314
+ "rptrMonitorPortInfo" : {
1315
+ "nodetype" : "node",
1316
+ "moduleName" : "SNMP-REPEATER-MIB",
1317
+ "oid" : "1.3.6.1.2.1.22.2.3",
1318
+ }, # node
1319
+ "rptrMonitorPortTable" : {
1320
+ "nodetype" : "table",
1321
+ "moduleName" : "SNMP-REPEATER-MIB",
1322
+ "oid" : "1.3.6.1.2.1.22.2.3.1",
1323
+ "status" : "current",
1324
+ "description" :
1325
+ """Table of performance and error statistics for the
1326
+ ports. The number of entries is the same as that
1327
+ in the rptrPortTable.
1328
+
1329
+ The columnar object rptrMonitorPortLastChange
1330
+ is used to indicate possible discontinuities
1331
+ of counter type columnar objects in the table.""",
1332
+ }, # table
1333
+ "rptrMonitorPortEntry" : {
1334
+ "nodetype" : "row",
1335
+ "moduleName" : "SNMP-REPEATER-MIB",
1336
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1",
1337
+ "status" : "current",
1338
+ "linkage" : [
1339
+ "rptrMonitorPortGroupIndex",
1340
+ "rptrMonitorPortIndex",
1341
+ ],
1342
+ "description" :
1343
+ """An entry in the table, containing performance and
1344
+ error statistics for a single port.""",
1345
+ }, # row
1346
+ "rptrMonitorPortGroupIndex" : {
1347
+ "nodetype" : "column",
1348
+ "moduleName" : "SNMP-REPEATER-MIB",
1349
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.1",
1350
+ "status" : "current",
1351
+ "syntax" : {
1352
+ "type" : {
1353
+ "basetype" : "Integer32",
1354
+ "ranges" : [
1355
+ {
1356
+ "min" : "1",
1357
+ "max" : "2147483647"
1358
+ },
1359
+ ],
1360
+ "range" : {
1361
+ "min" : "1",
1362
+ "max" : "2147483647"
1363
+ },
1364
+ },
1365
+ },
1366
+ "access" : "readonly",
1367
+ "description" :
1368
+ """This object identifies the group containing the
1369
+ port for which this entry contains information.""",
1370
+ }, # column
1371
+ "rptrMonitorPortIndex" : {
1372
+ "nodetype" : "column",
1373
+ "moduleName" : "SNMP-REPEATER-MIB",
1374
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.2",
1375
+ "status" : "current",
1376
+ "syntax" : {
1377
+ "type" : {
1378
+ "basetype" : "Integer32",
1379
+ "ranges" : [
1380
+ {
1381
+ "min" : "1",
1382
+ "max" : "2147483647"
1383
+ },
1384
+ ],
1385
+ "range" : {
1386
+ "min" : "1",
1387
+ "max" : "2147483647"
1388
+ },
1389
+ },
1390
+ },
1391
+ "access" : "readonly",
1392
+ "description" :
1393
+ """This object identifies the port within the group
1394
+ for which this entry contains information.""",
1395
+ "reference" :
1396
+ """[IEEE 802.3 Mgt], 30.4.3.1.1, aPortID.""",
1397
+ }, # column
1398
+ "rptrMonitorPortReadableFrames" : {
1399
+ "nodetype" : "column",
1400
+ "moduleName" : "SNMP-REPEATER-MIB",
1401
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.3",
1402
+ "status" : "current",
1403
+ "syntax" : {
1404
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1405
+ },
1406
+ "access" : "readonly",
1407
+ "description" :
1408
+ """This object is the number of frames of valid
1409
+ frame length that have been received on this port.
1410
+ This counter is incremented by one for each frame
1411
+ received on this port whose OctetCount is greater
1412
+ than or equal to minFrameSize and less than or
1413
+ equal to maxFrameSize (Ref: IEEE 802.3 Std,
1414
+ 4.4.2.1) and for which the FCSError and
1415
+ CollisionEvent signals are not asserted.
1416
+
1417
+ A discontinuity may occur in the value
1418
+ when the value of object
1419
+ rptrMonitorPortLastChange changes.
1420
+
1421
+ This statistic provides one of the parameters
1422
+ necessary for obtaining the packet error rate.
1423
+ The approximate minimum time for rollover of this
1424
+ counter is 80 hours at 10Mb/s.""",
1425
+ "reference" :
1426
+ """[IEEE 802.3 Mgt], 30.4.3.1.4, aReadableFrames.""",
1427
+ }, # column
1428
+ "rptrMonitorPortReadableOctets" : {
1429
+ "nodetype" : "column",
1430
+ "moduleName" : "SNMP-REPEATER-MIB",
1431
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.4",
1432
+ "status" : "current",
1433
+ "syntax" : {
1434
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1435
+ },
1436
+ "access" : "readonly",
1437
+ "description" :
1438
+ """This object is the number of octets contained in
1439
+ valid frames that have been received on this port.
1440
+ This counter is incremented by OctetCount for each
1441
+ frame received on this port which has been
1442
+ determined to be a readable frame (i.e., including
1443
+ FCS octets but excluding framing bits and dribble
1444
+ bits).
1445
+
1446
+ A discontinuity may occur in the value
1447
+ when the value of object
1448
+ rptrMonitorPortLastChange changes.
1449
+
1450
+ This statistic provides an indicator of the total
1451
+ data transferred. The approximate minimum time
1452
+ for rollover of this counter in a 10Mb/s repeater
1453
+ is 58 minutes.
1454
+
1455
+ For ports receiving traffic at a maximum rate in
1456
+ a 100Mb/s repeater, this counter can roll over
1457
+ in less than 6 minutes. Since that amount of time
1458
+ could be less than a management station's poll cycle
1459
+ time, in order to avoid a loss of information a
1460
+ management station is advised to also poll the
1461
+ rptrMonitorPortUpper32Octets object, or to use the
1462
+ 64-bit counter defined by
1463
+ rptrMonitorPortHCReadableOctets instead of the
1464
+ two 32-bit counters.""",
1465
+ "reference" :
1466
+ """[IEEE 802.3 Mgt], 30.4.3.1.5, aReadableOctets.""",
1467
+ }, # column
1468
+ "rptrMonitorPortFCSErrors" : {
1469
+ "nodetype" : "column",
1470
+ "moduleName" : "SNMP-REPEATER-MIB",
1471
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.5",
1472
+ "status" : "current",
1473
+ "syntax" : {
1474
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1475
+ },
1476
+ "access" : "readonly",
1477
+ "description" :
1478
+ """This counter is incremented by one for each frame
1479
+ received on this port with the FCSError signal
1480
+ asserted and the FramingError and CollisionEvent
1481
+ signals deasserted and whose OctetCount is greater
1482
+ than or equal to minFrameSize and less than or
1483
+ equal to maxFrameSize (Ref: 4.4.2.1, IEEE 802.3
1484
+ Std).
1485
+
1486
+ A discontinuity may occur in the value
1487
+ when the value of object
1488
+ rptrMonitorPortLastChange changes.
1489
+
1490
+ The approximate minimum time for rollover of this
1491
+ counter is 80 hours at 10Mb/s.""",
1492
+ "reference" :
1493
+ """[IEEE 802.3 Mgt], 30.4.3.1.6,
1494
+ aFrameCheckSequenceErrors.""",
1495
+ }, # column
1496
+ "rptrMonitorPortAlignmentErrors" : {
1497
+ "nodetype" : "column",
1498
+ "moduleName" : "SNMP-REPEATER-MIB",
1499
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.6",
1500
+ "status" : "current",
1501
+ "syntax" : {
1502
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1503
+ },
1504
+ "access" : "readonly",
1505
+ "description" :
1506
+ """This counter is incremented by one for each frame
1507
+ received on this port with the FCSError and
1508
+ FramingError signals asserted and CollisionEvent
1509
+ signal deasserted and whose OctetCount is greater
1510
+ than or equal to minFrameSize and less than or
1511
+ equal to maxFrameSize (Ref: IEEE 802.3 Std,
1512
+ 4.4.2.1). If rptrMonitorPortAlignmentErrors is
1513
+ incremented then the rptrMonitorPortFCSErrors
1514
+ Counter shall not be incremented for the same
1515
+ frame.
1516
+
1517
+ A discontinuity may occur in the value
1518
+ when the value of object
1519
+ rptrMonitorPortLastChange changes.
1520
+
1521
+ The approximate minimum time for rollover of this
1522
+ counter is 80 hours at 10Mb/s.""",
1523
+ "reference" :
1524
+ """[IEEE 802.3 Mgt], 30.4.3.1.7, aAlignmentErrors.""",
1525
+ }, # column
1526
+ "rptrMonitorPortFrameTooLongs" : {
1527
+ "nodetype" : "column",
1528
+ "moduleName" : "SNMP-REPEATER-MIB",
1529
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.7",
1530
+ "status" : "current",
1531
+ "syntax" : {
1532
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1533
+ },
1534
+ "access" : "readonly",
1535
+ "description" :
1536
+ """This counter is incremented by one for each frame
1537
+ received on this port whose OctetCount is greater
1538
+ than maxFrameSize (Ref: 4.4.2.1, IEEE 802.3 Std).
1539
+ If rptrMonitorPortFrameTooLongs is incremented
1540
+ then neither the rptrMonitorPortAlignmentErrors
1541
+ nor the rptrMonitorPortFCSErrors counter shall be
1542
+ incremented for the frame.
1543
+
1544
+ A discontinuity may occur in the value
1545
+ when the value of object
1546
+ rptrMonitorPortLastChange changes.
1547
+
1548
+ The approximate minimum time for rollover of this
1549
+ counter is 61 days in a 10Mb/s repeater.""",
1550
+ "reference" :
1551
+ """[IEEE 802.3 Mgt], 30.4.3.1.8, aFramesTooLong.""",
1552
+ }, # column
1553
+ "rptrMonitorPortShortEvents" : {
1554
+ "nodetype" : "column",
1555
+ "moduleName" : "SNMP-REPEATER-MIB",
1556
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.8",
1557
+ "status" : "current",
1558
+ "syntax" : {
1559
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1560
+ },
1561
+ "access" : "readonly",
1562
+ "description" :
1563
+ """This counter is incremented by one for each
1564
+ CarrierEvent on this port with ActivityDuration
1565
+ less than ShortEventMaxTime. ShortEventMaxTime is
1566
+ greater than 74 bit times and less than 82 bit
1567
+ times. ShortEventMaxTime has tolerances included
1568
+ to provide for circuit losses between a
1569
+ conformance test point at the AUI and the
1570
+ measurement point within the state machine.
1571
+
1572
+ Notes:
1573
+
1574
+ ShortEvents may indicate externally
1575
+ generated noise hits which will cause the repeater
1576
+ to transmit Runts to its other ports, or propagate
1577
+ a collision (which may be late) back to the
1578
+ transmitting DTE and damaged frames to the rest of
1579
+ the network.
1580
+
1581
+ Implementors may wish to consider selecting the
1582
+ ShortEventMaxTime towards the lower end of the
1583
+ allowed tolerance range to accommodate bit losses
1584
+ suffered through physical channel devices not
1585
+ budgeted for within this standard.
1586
+
1587
+ The significance of this attribute is different
1588
+ in 10 and 100 Mb/s collision domains. Clause 9
1589
+ repeaters perform fragment extension of short
1590
+ events which would be counted as runts on the
1591
+ interconnect ports of other repeaters. Clause
1592
+ 27 repeaters do not perform fragment extension.
1593
+
1594
+ A discontinuity may occur in the value
1595
+ when the value of object
1596
+ rptrMonitorPortLastChange changes.
1597
+
1598
+ The approximate minimum time for rollover of this
1599
+ counter is 16 hours in a 10Mb/s repeater.""",
1600
+ "reference" :
1601
+ """[IEEE 802.3 Mgt], 30.4.3.1.9, aShortEvents.""",
1602
+ }, # column
1603
+ "rptrMonitorPortRunts" : {
1604
+ "nodetype" : "column",
1605
+ "moduleName" : "SNMP-REPEATER-MIB",
1606
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.9",
1607
+ "status" : "current",
1608
+ "syntax" : {
1609
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1610
+ },
1611
+ "access" : "readonly",
1612
+ "description" :
1613
+ """This counter is incremented by one for each
1614
+ CarrierEvent on this port that meets one of the
1615
+ following two conditions. Only one test need be
1616
+ made. a) The ActivityDuration is greater than
1617
+ ShortEventMaxTime and less than ValidPacketMinTime
1618
+ and the CollisionEvent signal is deasserted. b)
1619
+ The OctetCount is less than 64, the
1620
+ ActivityDuration is greater than ShortEventMaxTime
1621
+ and the CollisionEvent signal is deasserted.
1622
+ ValidPacketMinTime is greater than or equal to 552
1623
+ bit times and less than 565 bit times.
1624
+
1625
+ An event whose length is greater than 74 bit times
1626
+ but less than 82 bit times shall increment either
1627
+ the shortEvents counter or the runts counter but
1628
+ not both. A CarrierEvent greater than or equal to
1629
+ 552 bit times but less than 565 bit times may or
1630
+ may not be counted as a runt.
1631
+
1632
+ ValidPacketMinTime has tolerances included to
1633
+ provide for circuit losses between a conformance
1634
+ test point at the AUI and the measurement point
1635
+ within the state machine.
1636
+
1637
+ Runts usually indicate collision fragments, a
1638
+ normal network event. In certain situations
1639
+ associated with large diameter networks a
1640
+ percentage of collision fragments may exceed
1641
+ ValidPacketMinTime.
1642
+ A discontinuity may occur in the value
1643
+ when the value of object
1644
+ rptrMonitorPortLastChange changes.
1645
+
1646
+ The approximate minimum time for rollover of this
1647
+ counter is 16 hours in a 10Mb/s repeater.""",
1648
+ "reference" :
1649
+ """[IEEE 802.3 Mgt], 30.4.3.1.10, aRunts.""",
1650
+ }, # column
1651
+ "rptrMonitorPortCollisions" : {
1652
+ "nodetype" : "column",
1653
+ "moduleName" : "SNMP-REPEATER-MIB",
1654
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.10",
1655
+ "status" : "current",
1656
+ "syntax" : {
1657
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1658
+ },
1659
+ "access" : "readonly",
1660
+ "description" :
1661
+ """For a clause 9 repeater, this counter is
1662
+ incremented by one for any CarrierEvent signal
1663
+ on any port for which the CollisionEvent signal
1664
+ on this port is asserted. For a clause 27
1665
+ repeater port the counter increments on entering
1666
+ the Collision Count Increment state of the
1667
+ partition state diagram (fig 27-8 of
1668
+ [IEEE 802.3 Std]).
1669
+
1670
+ A discontinuity may occur in the value
1671
+ when the value of object
1672
+ rptrMonitorPortLastChange changes.
1673
+
1674
+ The approximate minimum time for rollover of this
1675
+ counter is 16 hours in a 10Mb/s repeater.""",
1676
+ "reference" :
1677
+ """[IEEE 802.3 Mgt], 30.4.3.1.11, aCollisions.""",
1678
+ }, # column
1679
+ "rptrMonitorPortLateEvents" : {
1680
+ "nodetype" : "column",
1681
+ "moduleName" : "SNMP-REPEATER-MIB",
1682
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.11",
1683
+ "status" : "current",
1684
+ "syntax" : {
1685
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1686
+ },
1687
+ "access" : "readonly",
1688
+ "description" :
1689
+ """For a clause 9 repeater port, this counter is
1690
+ incremented by one for each CarrierEvent
1691
+ on this port in which the CollIn(X)
1692
+ variable transitions to the value SQE (Ref:
1693
+ 9.6.6.2, IEEE 802.3 Std) while the
1694
+ ActivityDuration is greater than the
1695
+ LateEventThreshold. For a clause 27 repeater
1696
+ port, this counter is incremented by one on
1697
+ entering the Collision Count Increment state
1698
+ of the partition state diagram (fig 27-8)
1699
+ while the ActivityDuration is greater than
1700
+ the LateEvent- Threshold. Such a CarrierEvent
1701
+ is counted twice, as both a collision and as a
1702
+ lateEvent.
1703
+
1704
+ The LateEventThreshold is greater than 480 bit
1705
+ times and less than 565 bit times.
1706
+ LateEventThreshold has tolerances included to
1707
+ permit an implementation to build a single
1708
+ threshold to serve as both the LateEventThreshold
1709
+ and ValidPacketMinTime threshold.
1710
+
1711
+ A discontinuity may occur in the value
1712
+ when the value of object
1713
+ rptrMonitorPortLastChange changes.
1714
+
1715
+ The approximate minimum time for rollover of this
1716
+ counter is 81 hours in a 10Mb/s repeater.""",
1717
+ "reference" :
1718
+ """[IEEE 802.3 Mgt], 30.4.3.1.12, aLateEvents.""",
1719
+ }, # column
1720
+ "rptrMonitorPortVeryLongEvents" : {
1721
+ "nodetype" : "column",
1722
+ "moduleName" : "SNMP-REPEATER-MIB",
1723
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.12",
1724
+ "status" : "current",
1725
+ "syntax" : {
1726
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1727
+ },
1728
+ "access" : "readonly",
1729
+ "description" :
1730
+ """For a clause 9 repeater port, this counter
1731
+ is incremented by one for each CarrierEvent
1732
+ whose ActivityDuration is greater than the
1733
+ MAU Jabber Lockup Protection timer TW3
1734
+ (Ref: 9.6.1 & 9.6.5, IEEE 802.3 Std).
1735
+
1736
+ For a clause 27 repeater port, this counter
1737
+ is incremented by one on entry to the
1738
+ Rx Jabber state of the receiver timer state
1739
+ diagram (fig 27-7). Other counters may
1740
+ be incremented as appropriate.
1741
+
1742
+ A discontinuity may occur in the value
1743
+ when the value of object
1744
+ rptrMonitorPortLastChange changes.""",
1745
+ "reference" :
1746
+ """[IEEE 802.3 Mgt], 30.4.3.1.13, aVeryLongEvents.""",
1747
+ }, # column
1748
+ "rptrMonitorPortDataRateMismatches" : {
1749
+ "nodetype" : "column",
1750
+ "moduleName" : "SNMP-REPEATER-MIB",
1751
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.13",
1752
+ "status" : "current",
1753
+ "syntax" : {
1754
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1755
+ },
1756
+ "access" : "readonly",
1757
+ "description" :
1758
+ """This counter is incremented by one for each
1759
+ frame received by this port that meets all
1760
+ of the conditions required by only one of the
1761
+ following two measurement methods:
1762
+
1763
+ Measurement method A: 1) The CollisionEvent
1764
+ signal is not asserted (10Mb/s operation) or
1765
+ the Collision Count Increment state of the
1766
+ partition state diagram (fig 27-8 of
1767
+ [IEEE 802.3 Std]) has not been entered
1768
+ (100Mb/s operation). 2) The ActivityDuration
1769
+ is greater than ValidPacketMinTime. 3) The
1770
+ frequency (data rate) is detectably mismatched
1771
+ from the local transmit frequency.
1772
+
1773
+ Measurement method B: 1) The CollisionEvent
1774
+ signal is not asserted (10Mb/s operation)
1775
+ or the Collision Count Increment state of the
1776
+ partition state diagram (fig 27-8 of
1777
+ [IEEE 802.3 Std]) has not been entered
1778
+ (100Mb/s operation). 2) The OctetCount is
1779
+ greater than 63. 3) The frequency (data
1780
+ rate) is detectably mismatched from the local
1781
+ transmit frequency. The exact degree of
1782
+ mismatch is vendor specific and is to be
1783
+ defined by the vendor for conformance testing.
1784
+
1785
+ When this event occurs, other counters whose
1786
+ increment conditions were satisfied may or may not
1787
+ also be incremented, at the implementor's
1788
+ discretion. Whether or not the repeater was able
1789
+ to maintain data integrity is beyond the scope of
1790
+ this standard.
1791
+
1792
+ A discontinuity may occur in the value
1793
+ when the value of object
1794
+ rptrMonitorPortLastChange changes.""",
1795
+ "reference" :
1796
+ """[IEEE 802.3 Mgt], 30.4.3.1.14, aDataRateMismatches.""",
1797
+ }, # column
1798
+ "rptrMonitorPortAutoPartitions" : {
1799
+ "nodetype" : "column",
1800
+ "moduleName" : "SNMP-REPEATER-MIB",
1801
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.14",
1802
+ "status" : "current",
1803
+ "syntax" : {
1804
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1805
+ },
1806
+ "access" : "readonly",
1807
+ "description" :
1808
+ """This counter is incremented by one for
1809
+ each time the repeater has automatically
1810
+ partitioned this port.
1811
+
1812
+ The conditions that cause a clause 9
1813
+ repeater port to partition are specified in
1814
+ the partition state diagram in clause 9 of
1815
+ [IEEE 802.3 Std]. They are not differentiated
1816
+ here. A clause 27 repeater port partitions
1817
+ on entry to the Partition Wait state of the
1818
+ partition state diagram (fig 27-8 in
1819
+ [IEEE 802.3 Std]).
1820
+
1821
+ A discontinuity may occur in the value
1822
+ when the value of object
1823
+ rptrMonitorPortLastChange changes.""",
1824
+ "reference" :
1825
+ """[IEEE 802.3 Mgt], 30.4.3.1.15, aAutoPartitions.""",
1826
+ }, # column
1827
+ "rptrMonitorPortTotalErrors" : {
1828
+ "nodetype" : "column",
1829
+ "moduleName" : "SNMP-REPEATER-MIB",
1830
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.15",
1831
+ "status" : "current",
1832
+ "syntax" : {
1833
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1834
+ },
1835
+ "access" : "readonly",
1836
+ "description" :
1837
+ """The total number of errors which have occurred on
1838
+ this port. This counter is the summation of the
1839
+ values of other error counters (for the same
1840
+ port), namely:
1841
+
1842
+ rptrMonitorPortFCSErrors,
1843
+ rptrMonitorPortAlignmentErrors,
1844
+ rptrMonitorPortFrameTooLongs,
1845
+ rptrMonitorPortShortEvents,
1846
+ rptrMonitorPortLateEvents,
1847
+ rptrMonitorPortVeryLongEvents,
1848
+ rptrMonitorPortDataRateMismatches, and
1849
+ rptrMonitorPortSymbolErrors.
1850
+
1851
+ This counter is redundant in the sense that it is
1852
+ the summation of information already available
1853
+ through other objects. However, it is included
1854
+ specifically because the regular retrieval of this
1855
+ object as a means of tracking the health of a port
1856
+ provides a considerable optimization of network
1857
+ management traffic over the otherwise necessary
1858
+ retrieval of the summed counters.
1859
+
1860
+ Note that rptrMonitorPortRunts is not included
1861
+ in this total; this is because runts usually
1862
+ indicate collision fragments, a normal network
1863
+ event.
1864
+
1865
+ A discontinuity may occur in the value
1866
+ when the value of object
1867
+ rptrMonitorPortLastChange changes.""",
1868
+ }, # column
1869
+ "rptrMonitorPortLastChange" : {
1870
+ "nodetype" : "column",
1871
+ "moduleName" : "SNMP-REPEATER-MIB",
1872
+ "oid" : "1.3.6.1.2.1.22.2.3.1.1.16",
1873
+ "status" : "current",
1874
+ "syntax" : {
1875
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1876
+ },
1877
+ "access" : "readonly",
1878
+ "description" :
1879
+ """The value of sysUpTime when the last of
1880
+ the following occurred:
1881
+ 1) the agent cold- or warm-started;
1882
+ 2) the row for the port was created
1883
+ (such as when a device or module was added
1884
+ to the system); or
1885
+ 3) any condition that would cause one of
1886
+ the counters for the row to experience
1887
+ a discontinuity.""",
1888
+ }, # column
1889
+ "rptrMonitor100PortTable" : {
1890
+ "nodetype" : "table",
1891
+ "moduleName" : "SNMP-REPEATER-MIB",
1892
+ "oid" : "1.3.6.1.2.1.22.2.3.2",
1893
+ "status" : "current",
1894
+ "description" :
1895
+ """Table of additional performance and error
1896
+ statistics for 100Mb/s ports, above and
1897
+ beyond those parameters that apply to both
1898
+ 10 and 100Mbps ports. Entries exist only for
1899
+ ports attached to 100Mbps repeaters.
1900
+
1901
+ The columnar object rptrMonitorPortLastChange
1902
+ is used to indicate possible discontinuities
1903
+ of counter type columnar objects in this table.""",
1904
+ }, # table
1905
+ "rptrMonitor100PortEntry" : {
1906
+ "nodetype" : "row",
1907
+ "moduleName" : "SNMP-REPEATER-MIB",
1908
+ "oid" : "1.3.6.1.2.1.22.2.3.2.1",
1909
+ "status" : "current",
1910
+ "linkage" : [
1911
+ "rptrMonitorPortGroupIndex",
1912
+ "rptrMonitorPortIndex",
1913
+ ],
1914
+ "description" :
1915
+ """An entry in the table, containing performance
1916
+ and error statistics for a single 100Mb/s port.""",
1917
+ }, # row
1918
+ "rptrMonitorPortIsolates" : {
1919
+ "nodetype" : "column",
1920
+ "moduleName" : "SNMP-REPEATER-MIB",
1921
+ "oid" : "1.3.6.1.2.1.22.2.3.2.1.1",
1922
+ "status" : "current",
1923
+ "syntax" : {
1924
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1925
+ },
1926
+ "access" : "readonly",
1927
+ "description" :
1928
+ """This counter is incremented by one each time that
1929
+ the repeater port automatically isolates as a
1930
+ consequence of false carrier events. The conditions
1931
+ which cause a port to automatically isolate are
1932
+ defined by the transition from the False Carrier
1933
+ state to the Link Unstable state of the carrier
1934
+ integrity state diagram (figure 27-9)
1935
+ [IEEE 802.3 Standard].
1936
+
1937
+ Note: Isolates do not affect the value of
1938
+ the PortOperStatus object.
1939
+
1940
+ A discontinuity may occur in the value
1941
+ when the value of object
1942
+ rptrMonitorPortLastChange changes.""",
1943
+ "reference" :
1944
+ """[IEEE 802.3 Mgt], 30.4.3.1.16, aIsolates.""",
1945
+ }, # column
1946
+ "rptrMonitorPortSymbolErrors" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "SNMP-REPEATER-MIB",
1949
+ "oid" : "1.3.6.1.2.1.22.2.3.2.1.2",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1953
+ },
1954
+ "access" : "readonly",
1955
+ "description" :
1956
+ """This counter is incremented by one each time when
1957
+ valid length packet was received at the port and
1958
+ there was at least one occurrence of an invalid
1959
+ data symbol. This can increment only once per valid
1960
+ carrier event. A collision presence at any port of
1961
+ the repeater containing port N, will not cause this
1962
+ attribute to increment.
1963
+
1964
+ A discontinuity may occur in the value
1965
+ when the value of object
1966
+ rptrMonitorPortLastChange changes.
1967
+
1968
+ The approximate minimum time for rollover of this
1969
+ counter is 7.4 hours at 100Mb/s.""",
1970
+ "reference" :
1971
+ """[IEEE 802.3 Mgt], 30.4.3.1.17,
1972
+ aSymbolErrorDuringPacket.""",
1973
+ }, # column
1974
+ "rptrMonitorPortUpper32Octets" : {
1975
+ "nodetype" : "column",
1976
+ "moduleName" : "SNMP-REPEATER-MIB",
1977
+ "oid" : "1.3.6.1.2.1.22.2.3.2.1.3",
1978
+ "status" : "current",
1979
+ "syntax" : {
1980
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1981
+ },
1982
+ "access" : "readonly",
1983
+ "description" :
1984
+ """This object is the number of octets contained in
1985
+ valid frames that have been received on this port,
1986
+ modulo 2**32. That is, it contains the upper 32
1987
+ bits of a 64-bit octets counter, of which the
1988
+ lower 32 bits are contained in the
1989
+ rptrMonitorPortReadableOctets object.
1990
+
1991
+ This two-counter mechanism is provided for those
1992
+ network management protocols that do not support
1993
+ 64-bit counters (e.g. SNMP V1) and are used to
1994
+ manage a repeater type of 100Mb/s.
1995
+
1996
+ Conformance clauses for this MIB are defined such
1997
+ that implementation of this object is not required
1998
+ in a system which does not support 100Mb/s.
1999
+ However, systems with mixed 10 and 100Mb/s ports
2000
+ may implement this object across all ports,
2001
+ including 10Mb/s. If this object is implemented,
2002
+ it must be according to the definition in the first
2003
+ paragraph of this description; that is, the value
2004
+ of this object MUST be a valid count.
2005
+
2006
+ A discontinuity may occur in the value
2007
+ when the value of object
2008
+ rptrMonitorPortLastChange changes.""",
2009
+ }, # column
2010
+ "rptrMonitorPortHCReadableOctets" : {
2011
+ "nodetype" : "column",
2012
+ "moduleName" : "SNMP-REPEATER-MIB",
2013
+ "oid" : "1.3.6.1.2.1.22.2.3.2.1.4",
2014
+ "status" : "current",
2015
+ "syntax" : {
2016
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2017
+ },
2018
+ "access" : "readonly",
2019
+ "description" :
2020
+ """This object is the number of octets contained in
2021
+ valid frames that have been received on this port.
2022
+ This counter is incremented by OctetCount for each
2023
+ frame received on this port which has been
2024
+ determined to be a readable frame (i.e., including
2025
+ FCS octets but excluding framing bits and dribble
2026
+ bits).
2027
+
2028
+ This statistic provides an indicator of the total
2029
+ data transferred.
2030
+
2031
+ This counter is a 64-bit version of rptrMonitor-
2032
+ PortReadableOctets. It should be used by network
2033
+ management protocols which suppport 64-bit counters
2034
+ (e.g. SNMPv2).
2035
+
2036
+ Conformance clauses for this MIB are defined such
2037
+ that implementation of this object is not required
2038
+ in a system which does not support 100Mb/s.
2039
+ However, systems with mixed 10 and 100Mb/s ports
2040
+ may implement this object across all ports,
2041
+ including 10Mb/s. If this object is implemented,
2042
+ it must be according to the definition in the first
2043
+ paragraph of this description; that is, the value
2044
+ of this object MUST be a valid count.
2045
+
2046
+ A discontinuity may occur in the value
2047
+ when the value of object
2048
+ rptrMonitorPortLastChange changes.""",
2049
+ "reference" :
2050
+ """[IEEE 802.3 Mgt], 30.4.3.1.5, aReadableOctets.""",
2051
+ }, # column
2052
+ "rptrMonitorAllRptrInfo" : {
2053
+ "nodetype" : "node",
2054
+ "moduleName" : "SNMP-REPEATER-MIB",
2055
+ "oid" : "1.3.6.1.2.1.22.2.4",
2056
+ }, # node
2057
+ "rptrMonTable" : {
2058
+ "nodetype" : "table",
2059
+ "moduleName" : "SNMP-REPEATER-MIB",
2060
+ "oid" : "1.3.6.1.2.1.22.2.4.1",
2061
+ "status" : "current",
2062
+ "description" :
2063
+ """A table of information about each
2064
+ non-trivial repeater. The number of entries
2065
+ in this table is the same as the number of
2066
+ entries in the rptrInfoTable.
2067
+
2068
+ The columnar object rptrInfoLastChange is
2069
+ used to indicate possible discontinuities of
2070
+ counter type columnar objects in this table.""",
2071
+ }, # table
2072
+ "rptrMonEntry" : {
2073
+ "nodetype" : "row",
2074
+ "moduleName" : "SNMP-REPEATER-MIB",
2075
+ "oid" : "1.3.6.1.2.1.22.2.4.1.1",
2076
+ "status" : "current",
2077
+ "linkage" : [
2078
+ "rptrInfoId",
2079
+ ],
2080
+ "description" :
2081
+ """An entry in the table, containing information
2082
+ about a single non-trivial repeater.""",
2083
+ }, # row
2084
+ "rptrMonTxCollisions" : {
2085
+ "nodetype" : "column",
2086
+ "moduleName" : "SNMP-REPEATER-MIB",
2087
+ "oid" : "1.3.6.1.2.1.22.2.4.1.1.1",
2088
+ "status" : "current",
2089
+ "syntax" : {
2090
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2091
+ },
2092
+ "access" : "readonly",
2093
+ "description" :
2094
+ """For a clause 9 (10Mb/s) repeater, this counter
2095
+ is incremented every time the repeater state
2096
+ machine enters the TRANSMIT COLLISION state
2097
+ from any state other than ONE PORT LEFT
2098
+ (Ref: Fig 9-2 [IEEE 802.3 Std]).
2099
+
2100
+ For a clause 27 repeater, this counter is
2101
+ incremented every time the repeater core state
2102
+ diagram enters the Jam state as a result of
2103
+ Activity(ALL) > 1 (fig 27-2 [IEEE 802.3 Std]).
2104
+
2105
+ The approximate minimum time for rollover of this
2106
+ counter is 16 hours in a 10Mb/s repeater and 1.6
2107
+ hours in a 100Mb/s repeater.""",
2108
+ "reference" :
2109
+ """[IEEE 802.3 Mgt], 30.4.1.1.8, aTransmitCollisions""",
2110
+ }, # column
2111
+ "rptrMonTotalFrames" : {
2112
+ "nodetype" : "column",
2113
+ "moduleName" : "SNMP-REPEATER-MIB",
2114
+ "oid" : "1.3.6.1.2.1.22.2.4.1.1.3",
2115
+ "status" : "current",
2116
+ "syntax" : {
2117
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2118
+ },
2119
+ "access" : "readonly",
2120
+ "description" :
2121
+ """The number of frames of valid frame length
2122
+ that have been received on the ports in this repeater
2123
+ and for which the FCSError and CollisionEvent
2124
+ signals were not asserted. If an implementation
2125
+ can not obtain a count of frames as seen by
2126
+ the repeater itself, this counter may be
2127
+ implemented as the summation of the values of the
2128
+ rptrMonitorPortReadableFrames counters for all of
2129
+ the ports in the repeater.
2130
+
2131
+ This statistic provides one of the parameters
2132
+ necessary for obtaining the packet error rate.
2133
+ The approximate minimum time for rollover of this
2134
+ counter is 80 hours in a 10Mb/s repeater.""",
2135
+ }, # column
2136
+ "rptrMonTotalErrors" : {
2137
+ "nodetype" : "column",
2138
+ "moduleName" : "SNMP-REPEATER-MIB",
2139
+ "oid" : "1.3.6.1.2.1.22.2.4.1.1.4",
2140
+ "status" : "current",
2141
+ "syntax" : {
2142
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2143
+ },
2144
+ "access" : "readonly",
2145
+ "description" :
2146
+ """The total number of errors which have occurred on
2147
+ all of the ports in this repeater. The errors
2148
+ included in this count are the same as those listed
2149
+ for the rptrMonitorPortTotalErrors counter. If an
2150
+ implementation can not obtain a count of these
2151
+ errors as seen by the repeater itself, this counter
2152
+ may be implemented as the summation of the values of
2153
+ the rptrMonitorPortTotalErrors counters for all of
2154
+ the ports in the repeater.""",
2155
+ }, # column
2156
+ "rptrMonTotalOctets" : {
2157
+ "nodetype" : "column",
2158
+ "moduleName" : "SNMP-REPEATER-MIB",
2159
+ "oid" : "1.3.6.1.2.1.22.2.4.1.1.5",
2160
+ "status" : "current",
2161
+ "syntax" : {
2162
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2163
+ },
2164
+ "access" : "readonly",
2165
+ "description" :
2166
+ """The total number of octets contained in the valid
2167
+ frames that have been received on the ports in
2168
+ this group. If an implementation can not obtain
2169
+ a count of octets as seen by the repeater itself,
2170
+ this counter may be the summation of the
2171
+ values of the rptrMonitorPortReadableOctets
2172
+ counters for all of the ports in the group.
2173
+
2174
+ This statistic provides an indicator of the total
2175
+ data transferred. The approximate minimum time
2176
+ for rollover of this counter in a 10Mb/s repeater
2177
+ is 58 minutes divided by the number of ports in
2178
+ the repeater.
2179
+
2180
+ For 100Mb/s repeaters processing traffic at a
2181
+ maximum rate, this counter can roll over in less
2182
+ than 6 minutes divided by the number of ports in
2183
+ the repeater. Since that amount of time could
2184
+ be less than a management station's poll cycle
2185
+ time, in order to avoid a loss of information a
2186
+ management station is advised to also poll the
2187
+ rptrMonUpper32TotalOctets object, or to use the
2188
+ 64-bit counter defined by rptrMonHCTotalOctets
2189
+ instead of the two 32-bit counters.""",
2190
+ }, # column
2191
+ "rptrMon100Table" : {
2192
+ "nodetype" : "table",
2193
+ "moduleName" : "SNMP-REPEATER-MIB",
2194
+ "oid" : "1.3.6.1.2.1.22.2.4.2",
2195
+ "status" : "current",
2196
+ "description" :
2197
+ """A table of additional information about each
2198
+ 100Mb/s repeater, augmenting the entries in
2199
+ the rptrMonTable. Entries exist in this table
2200
+ only for 100Mb/s repeaters.
2201
+
2202
+ The columnar object rptrInfoLastChange is
2203
+ used to indicate possible discontinuities of
2204
+ counter type columnar objects in this table.""",
2205
+ }, # table
2206
+ "rptrMon100Entry" : {
2207
+ "nodetype" : "row",
2208
+ "moduleName" : "SNMP-REPEATER-MIB",
2209
+ "oid" : "1.3.6.1.2.1.22.2.4.2.1",
2210
+ "status" : "current",
2211
+ "linkage" : [
2212
+ "rptrInfoId",
2213
+ ],
2214
+ "description" :
2215
+ """An entry in the table, containing information
2216
+ about a single 100Mbps repeater.""",
2217
+ }, # row
2218
+ "rptrMonUpper32TotalOctets" : {
2219
+ "nodetype" : "column",
2220
+ "moduleName" : "SNMP-REPEATER-MIB",
2221
+ "oid" : "1.3.6.1.2.1.22.2.4.2.1.1",
2222
+ "status" : "current",
2223
+ "syntax" : {
2224
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2225
+ },
2226
+ "access" : "readonly",
2227
+ "description" :
2228
+ """The total number of octets contained in the valid
2229
+ frames that have been received on the ports in
2230
+ this repeater, modulo 2**32. That is, it contains
2231
+ the upper 32 bits of a 64-bit counter, of which
2232
+ the lower 32 bits are contained in the
2233
+ rptrMonTotalOctets object. If an implementation
2234
+ can not obtain a count of octets as seen
2235
+ by the repeater itself, the 64-bit value
2236
+ may be the summation of the values of the
2237
+ rptrMonitorPortReadableOctets counters combined
2238
+ with the corresponding rptrMonitorPortUpper32Octets
2239
+ counters for all of the ports in the repeater.
2240
+
2241
+ This statistic provides an indicator of the total
2242
+ data transferred within the repeater.
2243
+
2244
+ This two-counter mechanism is provided for those
2245
+ network management protocols that do not support
2246
+ 64-bit counters (e.g. SNMP V1) and are used to
2247
+ manage a repeater type of 100Mb/s.
2248
+
2249
+ Conformance clauses for this MIB are defined such
2250
+ that implementation of this object is not required
2251
+ in a system which does not support 100Mb/s.
2252
+ However, systems with mixed 10 and 100Mb/s ports
2253
+ may implement this object across all ports,
2254
+ including 10Mb/s. If this object is implemented,
2255
+ it must be according to the definition in the first
2256
+ paragraph of this description; that is, the value
2257
+ of this object MUST be a valid count.""",
2258
+ }, # column
2259
+ "rptrMonHCTotalOctets" : {
2260
+ "nodetype" : "column",
2261
+ "moduleName" : "SNMP-REPEATER-MIB",
2262
+ "oid" : "1.3.6.1.2.1.22.2.4.2.1.2",
2263
+ "status" : "current",
2264
+ "syntax" : {
2265
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2266
+ },
2267
+ "access" : "readonly",
2268
+ "description" :
2269
+ """The total number of octets contained in the valid
2270
+ frames that have been received on the ports in
2271
+ this group. If a implementation can not obtain
2272
+ a count of octets as seen by the repeater itself,
2273
+ this counter may be the summation of the
2274
+ values of the rptrMonitorPortReadableOctets
2275
+ counters for all of the ports in the group.
2276
+
2277
+ This statistic provides an indicator of the total
2278
+ data transferred.
2279
+
2280
+ This counter is a 64-bit (high-capacity) version
2281
+ of rptrMonUpper32TotalOctets and rptrMonTotalOctets.
2282
+ It should be used by network management protocols
2283
+ which support 64-bit counters (e.g. SNMPv2).
2284
+
2285
+ Conformance clauses for this MIB are defined such
2286
+ that implementation of this object is not required
2287
+ in a system which does not support 100Mb/s.
2288
+ However, systems with mixed 10 and 100Mb/s ports
2289
+ may implement this object across all ports,
2290
+ including 10Mb/s. If this object is implemented,
2291
+ it must be according to the definition in the first
2292
+ paragraph of this description; that is, the value
2293
+ of this object MUST be a valid count.""",
2294
+ }, # column
2295
+ "rptrAddrTrackPackage" : {
2296
+ "nodetype" : "node",
2297
+ "moduleName" : "SNMP-REPEATER-MIB",
2298
+ "oid" : "1.3.6.1.2.1.22.3",
2299
+ }, # node
2300
+ "rptrAddrTrackRptrInfo" : {
2301
+ "nodetype" : "node",
2302
+ "moduleName" : "SNMP-REPEATER-MIB",
2303
+ "oid" : "1.3.6.1.2.1.22.3.1",
2304
+ }, # node
2305
+ "rptrAddrSearchTable" : {
2306
+ "nodetype" : "table",
2307
+ "moduleName" : "SNMP-REPEATER-MIB",
2308
+ "oid" : "1.3.6.1.2.1.22.3.1.1",
2309
+ "status" : "current",
2310
+ "description" :
2311
+ """This table contains one entry per repeater in the
2312
+ system. It defines objects which allow a network
2313
+ management application to instruct an agent to watch
2314
+ for a given MAC address and report which port it
2315
+ was seen on. Only one address search can be in
2316
+ progress on each repeater at any one time. Before
2317
+ starting an address search, a management application
2318
+ should obtain 'ownership' of the entry in
2319
+ rptrAddrSearchTable for the repeater that is to
2320
+ perform the search. This is accomplished with the
2321
+ rptrAddrSearchLock and rptrAddrSearchStatus as
2322
+ follows:
2323
+
2324
+ try_again:
2325
+ get(rptrAddrSearchLock, rptrAddrSearchStatus)
2326
+ while (rptrAddrSearchStatus != notInUse)
2327
+ {
2328
+ /* Loop waiting for objects to be available*/
2329
+ short delay
2330
+ get(rptrAddrSearchLock, rptrAddrSearchStatus)
2331
+ }
2332
+
2333
+ /* Try to claim map objects */
2334
+ lock_value = rptrAddrSearchLock
2335
+ if ( set(rptrAddrSearchLock = lock_value,
2336
+ rptrAddrSearchStatus = inUse,
2337
+ rptrAddrSearchOwner = 'my-IP-address)
2338
+ == FAILURE)
2339
+ /* Another manager got the lock */
2340
+ goto try_again
2341
+
2342
+ /* I have the lock */
2343
+ set (rptrAddrSearchAddress = <search target>)
2344
+
2345
+ wait for rptrAddrSearchState to change from none
2346
+
2347
+ if (rptrAddrSearchState == single)
2348
+ get (rptrAddrSearchGroup, rptrAddrSearchPort)
2349
+ /* release the lock, making sure not to overwrite
2350
+ anyone else's lock */
2351
+ set (rptrAddrSearchLock = lock_value+1,
2352
+ rptrAddrSearchStatus = notInUse,
2353
+ rptrAddrSearchOwner = '')
2354
+
2355
+ A management station first retrieves the values of
2356
+ the appropriate instances of the rptrAddrSearchLock
2357
+ and rptrAddrSearchStatus objects, periodically
2358
+ repeating the retrieval if necessary, until the value
2359
+ of rptrAddrSearchStatus is 'notInUse'. The
2360
+ management station then tries to set the same
2361
+ instance of the rptrAddrSearchLock object to the
2362
+ value it just retrieved, the same instance of the
2363
+ rptrAddrSearchStatus object to 'inUse', and the
2364
+ corresponding instance of rptrAddrSearchOwner to a
2365
+ value indicating itself. If the set operation
2366
+ succeeds, then the management station has obtained
2367
+ ownership of the rptrAddrSearchEntry, and the value
2368
+ of rptrAddrSearchLock is incremented by the agent (as
2369
+ per the semantics of TestAndIncr). Failure of the
2370
+ set operation indicates that some other manager has
2371
+ obtained ownership of the rptrAddrSearchEntry.
2372
+
2373
+ Once ownership is obtained, the management station
2374
+ can proceed with the search operation. Note that the
2375
+ agent will reset rptrAddrSearchStatus to 'notInUse'
2376
+ if it has been in the 'inUse' state for an abnormally
2377
+ long period of time, to prevent a misbehaving manager
2378
+ from permanently locking the entry. It is suggested
2379
+ that this timeout period be between one and five
2380
+ minutes.
2381
+
2382
+ When the management station has completed its search
2383
+ operation, it should free the entry by setting
2384
+ the instance of the rptrAddrSearchLock object to the
2385
+ previous value + 1, the instance of the
2386
+ rptrAddrSearchStatus to 'notInUse', and the instance
2387
+ of rptrAddrSearchOwner to a zero length string. This
2388
+ is done to prevent overwriting another station's
2389
+ lock.""",
2390
+ }, # table
2391
+ "rptrAddrSearchEntry" : {
2392
+ "nodetype" : "row",
2393
+ "moduleName" : "SNMP-REPEATER-MIB",
2394
+ "oid" : "1.3.6.1.2.1.22.3.1.1.1",
2395
+ "status" : "current",
2396
+ "linkage" : [
2397
+ "rptrInfoId",
2398
+ ],
2399
+ "description" :
2400
+ """An entry containing objects for invoking an address
2401
+ search on a repeater.""",
2402
+ }, # row
2403
+ "rptrAddrSearchLock" : {
2404
+ "nodetype" : "column",
2405
+ "moduleName" : "SNMP-REPEATER-MIB",
2406
+ "oid" : "1.3.6.1.2.1.22.3.1.1.1.1",
2407
+ "status" : "current",
2408
+ "syntax" : {
2409
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
2410
+ },
2411
+ "access" : "readwrite",
2412
+ "description" :
2413
+ """This object is used by a management station as an
2414
+ advisory lock for this rptrAddrSearchEntry.""",
2415
+ }, # column
2416
+ "rptrAddrSearchStatus" : {
2417
+ "nodetype" : "column",
2418
+ "moduleName" : "SNMP-REPEATER-MIB",
2419
+ "oid" : "1.3.6.1.2.1.22.3.1.1.1.2",
2420
+ "status" : "current",
2421
+ "syntax" : {
2422
+ "type" : {
2423
+ "basetype" : "Enumeration",
2424
+ "notInUse" : {
2425
+ "nodetype" : "namednumber",
2426
+ "number" : "1"
2427
+ },
2428
+ "inUse" : {
2429
+ "nodetype" : "namednumber",
2430
+ "number" : "2"
2431
+ },
2432
+ },
2433
+ },
2434
+ "access" : "readwrite",
2435
+ "description" :
2436
+ """This object is used to indicate that some management
2437
+ station is currently using this rptrAddrSearchEntry.
2438
+ Cooperating managers should set this object to
2439
+ 'notInUse' when they are finished using this entry.
2440
+ The agent will automatically set the value of this
2441
+ object to 'notInUse' if it has been set to 'inUse'
2442
+ for an unusually long period of time.""",
2443
+ }, # column
2444
+ "rptrAddrSearchAddress" : {
2445
+ "nodetype" : "column",
2446
+ "moduleName" : "SNMP-REPEATER-MIB",
2447
+ "oid" : "1.3.6.1.2.1.22.3.1.1.1.3",
2448
+ "status" : "current",
2449
+ "syntax" : {
2450
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
2451
+ },
2452
+ "access" : "readwrite",
2453
+ "description" :
2454
+ """This object is used to search for a specified MAC
2455
+ address. When this object is set, an address search
2456
+ begins. This automatically sets the corresponding
2457
+ instance of the rptrAddrSearchState object to 'none'
2458
+ and the corresponding instances of the
2459
+ rptrAddrSearchGroup and rptrAddrSearchPort objects to
2460
+ 0.
2461
+
2462
+ When a valid frame is received by this repeater with
2463
+ a source MAC address which matches the current value
2464
+ of rptrAddrSearchAddress, the agent will update the
2465
+ corresponding instances of rptrAddrSearchState,
2466
+ rptrAddrSearchGroup and rptrAddrSearchPort to reflect
2467
+ the current status of the search, and the group and
2468
+ port on which the frame was seen.""",
2469
+ }, # column
2470
+ "rptrAddrSearchState" : {
2471
+ "nodetype" : "column",
2472
+ "moduleName" : "SNMP-REPEATER-MIB",
2473
+ "oid" : "1.3.6.1.2.1.22.3.1.1.1.4",
2474
+ "status" : "current",
2475
+ "syntax" : {
2476
+ "type" : {
2477
+ "basetype" : "Enumeration",
2478
+ "none" : {
2479
+ "nodetype" : "namednumber",
2480
+ "number" : "1"
2481
+ },
2482
+ "single" : {
2483
+ "nodetype" : "namednumber",
2484
+ "number" : "2"
2485
+ },
2486
+ "multiple" : {
2487
+ "nodetype" : "namednumber",
2488
+ "number" : "3"
2489
+ },
2490
+ },
2491
+ },
2492
+ "access" : "readonly",
2493
+ "description" :
2494
+ """The current state of the MAC address search on this
2495
+ repeater. This object is initialized to 'none' when
2496
+ the corresponding instance of rptrAddrSearchAddress
2497
+ is set. If the agent detects the address on exactly
2498
+ one port, it will set this object to 'single', and
2499
+ set the corresponding instances of
2500
+ rptrAddrSearchGroup and rptrAddrSearchPort to reflect
2501
+ the group and port on which the address was heard.
2502
+ If the agent detects the address on more than one
2503
+ port, it will set this object to 'multiple'.""",
2504
+ }, # column
2505
+ "rptrAddrSearchGroup" : {
2506
+ "nodetype" : "column",
2507
+ "moduleName" : "SNMP-REPEATER-MIB",
2508
+ "oid" : "1.3.6.1.2.1.22.3.1.1.1.5",
2509
+ "status" : "current",
2510
+ "syntax" : {
2511
+ "type" : {
2512
+ "basetype" : "Integer32",
2513
+ "ranges" : [
2514
+ {
2515
+ "min" : "0",
2516
+ "max" : "2147483647"
2517
+ },
2518
+ ],
2519
+ "range" : {
2520
+ "min" : "0",
2521
+ "max" : "2147483647"
2522
+ },
2523
+ },
2524
+ },
2525
+ "access" : "readonly",
2526
+ "description" :
2527
+ """The group from which an error-free frame whose
2528
+ source address is equal to the corresponding instance
2529
+ of rptrAddrSearchAddress has been received. The
2530
+ value of this object is undefined when the
2531
+ corresponding instance of rptrAddrSearchState is
2532
+ equal to 'none' or 'multiple'.""",
2533
+ }, # column
2534
+ "rptrAddrSearchPort" : {
2535
+ "nodetype" : "column",
2536
+ "moduleName" : "SNMP-REPEATER-MIB",
2537
+ "oid" : "1.3.6.1.2.1.22.3.1.1.1.6",
2538
+ "status" : "current",
2539
+ "syntax" : {
2540
+ "type" : {
2541
+ "basetype" : "Integer32",
2542
+ "ranges" : [
2543
+ {
2544
+ "min" : "0",
2545
+ "max" : "2147483647"
2546
+ },
2547
+ ],
2548
+ "range" : {
2549
+ "min" : "0",
2550
+ "max" : "2147483647"
2551
+ },
2552
+ },
2553
+ },
2554
+ "access" : "readonly",
2555
+ "description" :
2556
+ """The port rom which an error-free frame whose
2557
+ source address is equal to the corresponding instance
2558
+ of rptrAddrSearchAddress has been received. The
2559
+ value of this object is undefined when the
2560
+ corresponding instance of rptrAddrSearchState is
2561
+ equal to 'none' or 'multiple'.""",
2562
+ }, # column
2563
+ "rptrAddrSearchOwner" : {
2564
+ "nodetype" : "column",
2565
+ "moduleName" : "SNMP-REPEATER-MIB",
2566
+ "oid" : "1.3.6.1.2.1.22.3.1.1.1.7",
2567
+ "status" : "current",
2568
+ "syntax" : {
2569
+ "type" : { "module" :"IF-MIB", "name" : "OwnerString"},
2570
+ },
2571
+ "access" : "readwrite",
2572
+ "description" :
2573
+ """The entity which currently has 'ownership' of this
2574
+ rptrAddrSearchEntry.""",
2575
+ }, # column
2576
+ "rptrAddrTrackGroupInfo" : {
2577
+ "nodetype" : "node",
2578
+ "moduleName" : "SNMP-REPEATER-MIB",
2579
+ "oid" : "1.3.6.1.2.1.22.3.2",
2580
+ }, # node
2581
+ "rptrAddrTrackPortInfo" : {
2582
+ "nodetype" : "node",
2583
+ "moduleName" : "SNMP-REPEATER-MIB",
2584
+ "oid" : "1.3.6.1.2.1.22.3.3",
2585
+ }, # node
2586
+ "rptrAddrTrackTable" : {
2587
+ "nodetype" : "table",
2588
+ "moduleName" : "SNMP-REPEATER-MIB",
2589
+ "oid" : "1.3.6.1.2.1.22.3.3.1",
2590
+ "status" : "current",
2591
+ "description" :
2592
+ """Table of address mapping information about the
2593
+ ports.""",
2594
+ }, # table
2595
+ "rptrAddrTrackEntry" : {
2596
+ "nodetype" : "row",
2597
+ "moduleName" : "SNMP-REPEATER-MIB",
2598
+ "oid" : "1.3.6.1.2.1.22.3.3.1.1",
2599
+ "status" : "current",
2600
+ "linkage" : [
2601
+ "rptrAddrTrackGroupIndex",
2602
+ "rptrAddrTrackPortIndex",
2603
+ ],
2604
+ "description" :
2605
+ """An entry in the table, containing address mapping
2606
+ information about a single port.""",
2607
+ }, # row
2608
+ "rptrAddrTrackGroupIndex" : {
2609
+ "nodetype" : "column",
2610
+ "moduleName" : "SNMP-REPEATER-MIB",
2611
+ "oid" : "1.3.6.1.2.1.22.3.3.1.1.1",
2612
+ "status" : "current",
2613
+ "syntax" : {
2614
+ "type" : {
2615
+ "basetype" : "Integer32",
2616
+ "ranges" : [
2617
+ {
2618
+ "min" : "1",
2619
+ "max" : "2147483647"
2620
+ },
2621
+ ],
2622
+ "range" : {
2623
+ "min" : "1",
2624
+ "max" : "2147483647"
2625
+ },
2626
+ },
2627
+ },
2628
+ "access" : "readonly",
2629
+ "description" :
2630
+ """This object identifies the group containing the
2631
+ port for which this entry contains information.""",
2632
+ }, # column
2633
+ "rptrAddrTrackPortIndex" : {
2634
+ "nodetype" : "column",
2635
+ "moduleName" : "SNMP-REPEATER-MIB",
2636
+ "oid" : "1.3.6.1.2.1.22.3.3.1.1.2",
2637
+ "status" : "current",
2638
+ "syntax" : {
2639
+ "type" : {
2640
+ "basetype" : "Integer32",
2641
+ "ranges" : [
2642
+ {
2643
+ "min" : "1",
2644
+ "max" : "2147483647"
2645
+ },
2646
+ ],
2647
+ "range" : {
2648
+ "min" : "1",
2649
+ "max" : "2147483647"
2650
+ },
2651
+ },
2652
+ },
2653
+ "access" : "readonly",
2654
+ "description" :
2655
+ """This object identifies the port within the group
2656
+ for which this entry contains information.""",
2657
+ "reference" :
2658
+ """[IEEE 802.3 Mgt], 30.4.3.1.1, aPortID.""",
2659
+ }, # column
2660
+ "rptrAddrTrackLastSourceAddress" : {
2661
+ "nodetype" : "column",
2662
+ "moduleName" : "SNMP-REPEATER-MIB",
2663
+ "oid" : "1.3.6.1.2.1.22.3.3.1.1.3",
2664
+ "status" : "deprecated",
2665
+ "syntax" : {
2666
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
2667
+ },
2668
+ "access" : "readonly",
2669
+ "description" :
2670
+ """********* THIS OBJECT IS DEPRECATED **********
2671
+ This object is the SourceAddress of the last
2672
+ readable frame (i.e., counted by
2673
+ rptrMonitorPortReadableFrames) received by this
2674
+ port.
2675
+
2676
+ This object has been deprecated because its value
2677
+ is undefined when no frames have been observed on
2678
+ this port. The replacement object is
2679
+ rptrAddrTrackNewLastSrcAddress.""",
2680
+ "reference" :
2681
+ """[IEEE 802.3 Mgt], 30.4.3.1.18, aLastSourceAddress.""",
2682
+ }, # column
2683
+ "rptrAddrTrackSourceAddrChanges" : {
2684
+ "nodetype" : "column",
2685
+ "moduleName" : "SNMP-REPEATER-MIB",
2686
+ "oid" : "1.3.6.1.2.1.22.3.3.1.1.4",
2687
+ "status" : "current",
2688
+ "syntax" : {
2689
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2690
+ },
2691
+ "access" : "readonly",
2692
+ "description" :
2693
+ """This counter is incremented by one for each time
2694
+ that the rptrAddrTrackLastSourceAddress attribute
2695
+ for this port has changed.
2696
+
2697
+ This may indicate whether a link is connected to a
2698
+ single DTE or another multi-user segment.
2699
+
2700
+ A discontinuity may occur in the value when the
2701
+ value of object rptrMonitorPortLastChange changes.
2702
+
2703
+ The approximate minimum time for rollover of this
2704
+ counter is 81 hours in a 10Mb/s repeater.""",
2705
+ "reference" :
2706
+ """[IEEE 802.3 Mgt], 30.4.3.1.19, aSourceAddressChanges.""",
2707
+ }, # column
2708
+ "rptrAddrTrackNewLastSrcAddress" : {
2709
+ "nodetype" : "column",
2710
+ "moduleName" : "SNMP-REPEATER-MIB",
2711
+ "oid" : "1.3.6.1.2.1.22.3.3.1.1.5",
2712
+ "status" : "current",
2713
+ "syntax" : {
2714
+ "type" : { "module" :"SNMP-REPEATER-MIB", "name" : "OptMacAddr"},
2715
+ },
2716
+ "access" : "readonly",
2717
+ "description" :
2718
+ """This object is the SourceAddress of the last
2719
+ readable frame (i.e., counted by
2720
+ rptrMonitorPortReadableFrames) received by this
2721
+ port. If no frames have been received by this
2722
+ port since the agent began monitoring the port
2723
+ activity, the agent shall return a string of
2724
+ length zero.""",
2725
+ "reference" :
2726
+ """[IEEE 802.3 Mgt], 30.4.3.1.18, aLastSourceAddress.""",
2727
+ }, # column
2728
+ "rptrAddrTrackCapacity" : {
2729
+ "nodetype" : "column",
2730
+ "moduleName" : "SNMP-REPEATER-MIB",
2731
+ "oid" : "1.3.6.1.2.1.22.3.3.1.1.6",
2732
+ "status" : "current",
2733
+ "syntax" : {
2734
+ "type" : { "module" :"", "name" : "Integer32"},
2735
+ },
2736
+ "access" : "readonly",
2737
+ "description" :
2738
+ """The maximum number of addresses that can be
2739
+ detected on this port. This value indicates
2740
+ to the maximum number of entries in the
2741
+ rptrExtAddrTrackTable relative to this port.
2742
+
2743
+ If this object has the value of 1, the agent
2744
+ implements only the LastSourceAddress mechanism
2745
+ described by RFC 1368 or RFC 1516.""",
2746
+ }, # column
2747
+ "rptrExtAddrTrackTable" : {
2748
+ "nodetype" : "table",
2749
+ "moduleName" : "SNMP-REPEATER-MIB",
2750
+ "oid" : "1.3.6.1.2.1.22.3.3.2",
2751
+ "status" : "current",
2752
+ "description" :
2753
+ """A table to extend the address tracking table (i.e.,
2754
+ rptrAddrTrackTable) with a list of source MAC
2755
+ addresses that were recently received on each port.
2756
+ The number of ports is the same as the number
2757
+ of entries in table rptrPortTable. The number of
2758
+ entries in this table depends on the agent/repeater
2759
+ implementation and the number of different
2760
+ addresses received on each port.
2761
+
2762
+ The first entry for each port contains
2763
+ the same MAC address that is given by the
2764
+ rptrAddrTrackNewLastSrcAddress for that port.
2765
+
2766
+ Entries in this table for a particular port are
2767
+ retained when that port is switched from one
2768
+ repeater to another.
2769
+
2770
+ The ordering of MAC addresses listed for a
2771
+ particular port is implementation dependent.""",
2772
+ }, # table
2773
+ "rptrExtAddrTrackEntry" : {
2774
+ "nodetype" : "row",
2775
+ "moduleName" : "SNMP-REPEATER-MIB",
2776
+ "oid" : "1.3.6.1.2.1.22.3.3.2.1",
2777
+ "status" : "current",
2778
+ "linkage" : [
2779
+ "rptrAddrTrackGroupIndex",
2780
+ "rptrAddrTrackPortIndex",
2781
+ "rptrExtAddrTrackMacIndex",
2782
+ ],
2783
+ "description" :
2784
+ """A row in the table of extended address tracking
2785
+ information for ports. Entries can not be directly
2786
+ created or deleted via SNMP operations.""",
2787
+ }, # row
2788
+ "rptrExtAddrTrackMacIndex" : {
2789
+ "nodetype" : "column",
2790
+ "moduleName" : "SNMP-REPEATER-MIB",
2791
+ "oid" : "1.3.6.1.2.1.22.3.3.2.1.1",
2792
+ "status" : "current",
2793
+ "syntax" : {
2794
+ "type" : {
2795
+ "basetype" : "Integer32",
2796
+ "ranges" : [
2797
+ {
2798
+ "min" : "1",
2799
+ "max" : "2147483647"
2800
+ },
2801
+ ],
2802
+ "range" : {
2803
+ "min" : "1",
2804
+ "max" : "2147483647"
2805
+ },
2806
+ },
2807
+ },
2808
+ "access" : "readonly",
2809
+ "description" :
2810
+ """The index of a source MAC address seen on
2811
+ the port.
2812
+
2813
+ The ordering of MAC addresses listed for a
2814
+ particular port is implementation dependent.
2815
+
2816
+ There is no implied relationship between a
2817
+ particular index and a particular MAC
2818
+ address. The index for a particular MAC
2819
+ address may change without notice.""",
2820
+ }, # column
2821
+ "rptrExtAddrTrackSourceAddress" : {
2822
+ "nodetype" : "column",
2823
+ "moduleName" : "SNMP-REPEATER-MIB",
2824
+ "oid" : "1.3.6.1.2.1.22.3.3.2.1.2",
2825
+ "status" : "current",
2826
+ "syntax" : {
2827
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
2828
+ },
2829
+ "access" : "readonly",
2830
+ "description" :
2831
+ """The source MAC address from a readable frame
2832
+ (i.e., counted by rptrMonitorPortReadableFrames)
2833
+ recently received by the port.""",
2834
+ "reference" :
2835
+ """[IEEE 802.3 Mgt], 30.4.3.1.18, aLastSourceAddress.""",
2836
+ }, # column
2837
+ "rptrTopNPackage" : {
2838
+ "nodetype" : "node",
2839
+ "moduleName" : "SNMP-REPEATER-MIB",
2840
+ "oid" : "1.3.6.1.2.1.22.4",
2841
+ }, # node
2842
+ "rptrTopNRptrInfo" : {
2843
+ "nodetype" : "node",
2844
+ "moduleName" : "SNMP-REPEATER-MIB",
2845
+ "oid" : "1.3.6.1.2.1.22.4.1",
2846
+ }, # node
2847
+ "rptrTopNGroupInfo" : {
2848
+ "nodetype" : "node",
2849
+ "moduleName" : "SNMP-REPEATER-MIB",
2850
+ "oid" : "1.3.6.1.2.1.22.4.2",
2851
+ }, # node
2852
+ "rptrTopNPortInfo" : {
2853
+ "nodetype" : "node",
2854
+ "moduleName" : "SNMP-REPEATER-MIB",
2855
+ "oid" : "1.3.6.1.2.1.22.4.3",
2856
+ }, # node
2857
+ "rptrTopNPortControlTable" : {
2858
+ "nodetype" : "table",
2859
+ "moduleName" : "SNMP-REPEATER-MIB",
2860
+ "oid" : "1.3.6.1.2.1.22.4.3.1",
2861
+ "status" : "current",
2862
+ "description" :
2863
+ """A table of control records for reports on the top `N'
2864
+ ports for the rate of a selected counter. The number
2865
+ of entries depends on the configuration of the agent.
2866
+ The maximum number of entries is implementation
2867
+ dependent.""",
2868
+ }, # table
2869
+ "rptrTopNPortControlEntry" : {
2870
+ "nodetype" : "row",
2871
+ "moduleName" : "SNMP-REPEATER-MIB",
2872
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1",
2873
+ "create" : "true",
2874
+ "status" : "current",
2875
+ "linkage" : [
2876
+ "rptrTopNPortControlIndex",
2877
+ ],
2878
+ "description" :
2879
+ """A set of parameters that control the creation of a
2880
+ report of the top N ports according to several metrics.""",
2881
+ }, # row
2882
+ "rptrTopNPortControlIndex" : {
2883
+ "nodetype" : "column",
2884
+ "moduleName" : "SNMP-REPEATER-MIB",
2885
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.1",
2886
+ "status" : "current",
2887
+ "syntax" : {
2888
+ "type" : {
2889
+ "basetype" : "Integer32",
2890
+ "ranges" : [
2891
+ {
2892
+ "min" : "1",
2893
+ "max" : "65535"
2894
+ },
2895
+ ],
2896
+ "range" : {
2897
+ "min" : "1",
2898
+ "max" : "65535"
2899
+ },
2900
+ },
2901
+ },
2902
+ "access" : "readonly",
2903
+ "description" :
2904
+ """An index that uniquely identifies an entry in the
2905
+ rptrTopNPortControl table. Each such entry defines
2906
+ one top N report prepared for a repeater or system.""",
2907
+ }, # column
2908
+ "rptrTopNPortRepeaterId" : {
2909
+ "nodetype" : "column",
2910
+ "moduleName" : "SNMP-REPEATER-MIB",
2911
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.2",
2912
+ "status" : "current",
2913
+ "syntax" : {
2914
+ "type" : {
2915
+ "basetype" : "Integer32",
2916
+ "ranges" : [
2917
+ {
2918
+ "min" : "0",
2919
+ "max" : "2147483647"
2920
+ },
2921
+ ],
2922
+ "range" : {
2923
+ "min" : "0",
2924
+ "max" : "2147483647"
2925
+ },
2926
+ },
2927
+ },
2928
+ "access" : "readwrite",
2929
+ "description" :
2930
+ """Identifies the repeater for which a top N report will
2931
+ be prepared (see rptrInfoId). If the value of this
2932
+ object is positive, only ports assigned to this repeater
2933
+ will be used to form the list in which to order the
2934
+ Top N table. If this value is zero, all ports will be
2935
+ eligible for inclusion on the list.
2936
+
2937
+ The value of this object may not be modified if the
2938
+ associated rptrTopNPortRowStatus object is equal to
2939
+ active(1).
2940
+ If, for a particular row in this table, the repeater
2941
+ specified by the value of this object goes away (is
2942
+ removed from the rptrInfoTable) while the associated
2943
+ rptrTopNPortRowStatus object is equal to active(1),
2944
+ the row in this table is preserved by the agent but
2945
+ the value of rptrTopNPortRowStatus is changed to
2946
+ notInService(2), and the agent may time out the row
2947
+ if appropriate. If the specified repeater comes
2948
+ back (reappears in the rptrInfoTable) before the row
2949
+ has been timed out, the management station must set
2950
+ the value of the rptrTopNPortRowStatus object back
2951
+ to active(1) if desired (the agent doesn't do this
2952
+ automatically).""",
2953
+ }, # column
2954
+ "rptrTopNPortRateBase" : {
2955
+ "nodetype" : "column",
2956
+ "moduleName" : "SNMP-REPEATER-MIB",
2957
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.3",
2958
+ "status" : "current",
2959
+ "syntax" : {
2960
+ "type" : {
2961
+ "basetype" : "Enumeration",
2962
+ "readableFrames" : {
2963
+ "nodetype" : "namednumber",
2964
+ "number" : "1"
2965
+ },
2966
+ "readableOctets" : {
2967
+ "nodetype" : "namednumber",
2968
+ "number" : "2"
2969
+ },
2970
+ "fcsErrors" : {
2971
+ "nodetype" : "namednumber",
2972
+ "number" : "3"
2973
+ },
2974
+ "alignmentErrors" : {
2975
+ "nodetype" : "namednumber",
2976
+ "number" : "4"
2977
+ },
2978
+ "frameTooLongs" : {
2979
+ "nodetype" : "namednumber",
2980
+ "number" : "5"
2981
+ },
2982
+ "shortEvents" : {
2983
+ "nodetype" : "namednumber",
2984
+ "number" : "6"
2985
+ },
2986
+ "runts" : {
2987
+ "nodetype" : "namednumber",
2988
+ "number" : "7"
2989
+ },
2990
+ "collisions" : {
2991
+ "nodetype" : "namednumber",
2992
+ "number" : "8"
2993
+ },
2994
+ "lateEvents" : {
2995
+ "nodetype" : "namednumber",
2996
+ "number" : "9"
2997
+ },
2998
+ "veryLongEvents" : {
2999
+ "nodetype" : "namednumber",
3000
+ "number" : "10"
3001
+ },
3002
+ "dataRateMismatches" : {
3003
+ "nodetype" : "namednumber",
3004
+ "number" : "11"
3005
+ },
3006
+ "autoPartitions" : {
3007
+ "nodetype" : "namednumber",
3008
+ "number" : "12"
3009
+ },
3010
+ "totalErrors" : {
3011
+ "nodetype" : "namednumber",
3012
+ "number" : "13"
3013
+ },
3014
+ "isolates" : {
3015
+ "nodetype" : "namednumber",
3016
+ "number" : "14"
3017
+ },
3018
+ "symbolErrors" : {
3019
+ "nodetype" : "namednumber",
3020
+ "number" : "15"
3021
+ },
3022
+ },
3023
+ },
3024
+ "access" : "readwrite",
3025
+ "description" :
3026
+ """The monitored variable, which the rptrTopNPortRate
3027
+ variable is based upon.
3028
+
3029
+ The value of this object may not be modified if
3030
+ the associated rptrTopNPortRowStatus object has
3031
+ a value of active(1).""",
3032
+ }, # column
3033
+ "rptrTopNPortTimeRemaining" : {
3034
+ "nodetype" : "column",
3035
+ "moduleName" : "SNMP-REPEATER-MIB",
3036
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.4",
3037
+ "status" : "current",
3038
+ "syntax" : {
3039
+ "type" : {
3040
+ "basetype" : "Integer32",
3041
+ "ranges" : [
3042
+ {
3043
+ "min" : "0",
3044
+ "max" : "2147483647"
3045
+ },
3046
+ ],
3047
+ "range" : {
3048
+ "min" : "0",
3049
+ "max" : "2147483647"
3050
+ },
3051
+ },
3052
+ },
3053
+ "access" : "readwrite",
3054
+ "default" : "0",
3055
+ "description" :
3056
+ """The number of seconds left in the report
3057
+ currently being collected. When this object
3058
+ is modified by the management station, a new
3059
+ collection is started, possibly aborting a
3060
+ currently running report. The new value is
3061
+ used as the requested duration of this report,
3062
+ which is loaded into the associated
3063
+ rptrTopNPortDuration object.
3064
+
3065
+ When this object is set to a non-zero value,
3066
+ any associated rptrTopNPortEntries shall be
3067
+ made inaccessible by the agent. While the value
3068
+ of this object is non-zero, it decrements by one
3069
+ per second until it reaches zero. During this
3070
+ time, all associated rptrTopNPortEntries shall
3071
+ remain inaccessible. At the time that this object
3072
+ decrements to zero, the report is made accessible
3073
+ in the rptrTopNPortTable. Thus, the rptrTopNPort
3074
+ table needs to be created only at the end of the
3075
+ collection interval.
3076
+
3077
+ If the value of this object is set to zero
3078
+ while the associated report is running, the
3079
+ running report is aborted and no associated
3080
+ rptrTopNPortEntries are created.""",
3081
+ }, # column
3082
+ "rptrTopNPortDuration" : {
3083
+ "nodetype" : "column",
3084
+ "moduleName" : "SNMP-REPEATER-MIB",
3085
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.5",
3086
+ "status" : "current",
3087
+ "syntax" : {
3088
+ "type" : {
3089
+ "basetype" : "Integer32",
3090
+ "ranges" : [
3091
+ {
3092
+ "min" : "0",
3093
+ "max" : "2147483647"
3094
+ },
3095
+ ],
3096
+ "range" : {
3097
+ "min" : "0",
3098
+ "max" : "2147483647"
3099
+ },
3100
+ },
3101
+ },
3102
+ "access" : "readonly",
3103
+ "description" :
3104
+ """The number of seconds that this report has
3105
+ collected during the last sampling interval,
3106
+ or if this report is currently being collected,
3107
+ the number of seconds that this report is being
3108
+ collected during this sampling interval.
3109
+
3110
+ When the associated rptrTopNPortTimeRemaining
3111
+ object is set, this object shall be set by the
3112
+ agent to the same value and shall not be modified
3113
+ until the next time the rptrTopNPortTimeRemaining
3114
+ is set.
3115
+
3116
+ This value shall be zero if no reports have been
3117
+ requested for this rptrTopNPortControlEntry.""",
3118
+ }, # column
3119
+ "rptrTopNPortRequestedSize" : {
3120
+ "nodetype" : "column",
3121
+ "moduleName" : "SNMP-REPEATER-MIB",
3122
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.6",
3123
+ "status" : "current",
3124
+ "syntax" : {
3125
+ "type" : { "module" :"", "name" : "Integer32"},
3126
+ },
3127
+ "access" : "readwrite",
3128
+ "default" : "10",
3129
+ "description" :
3130
+ """The maximum number of repeater ports requested
3131
+ for the Top N Table.
3132
+
3133
+ When this object is created or modified, the
3134
+ agent should set rptrTopNPortGrantedSize as close
3135
+ to this object as is possible for the particular
3136
+ implementation and available resources.""",
3137
+ }, # column
3138
+ "rptrTopNPortGrantedSize" : {
3139
+ "nodetype" : "column",
3140
+ "moduleName" : "SNMP-REPEATER-MIB",
3141
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.7",
3142
+ "status" : "current",
3143
+ "syntax" : {
3144
+ "type" : {
3145
+ "basetype" : "Integer32",
3146
+ "ranges" : [
3147
+ {
3148
+ "min" : "0",
3149
+ "max" : "65535"
3150
+ },
3151
+ ],
3152
+ "range" : {
3153
+ "min" : "0",
3154
+ "max" : "65535"
3155
+ },
3156
+ },
3157
+ },
3158
+ "access" : "readonly",
3159
+ "description" :
3160
+ """The maximum number of repeater ports in the
3161
+ top N table.
3162
+
3163
+ When the associated rptrTopNPortRequestedSize object is
3164
+ created or modified, the agent should set this object as
3165
+ closely to the requested value as is possible for the
3166
+ particular implementation and available resources. The
3167
+ agent must not lower this value except as a result of a
3168
+ set to the associated rptrTopNPortRequestedSize object.""",
3169
+ }, # column
3170
+ "rptrTopNPortStartTime" : {
3171
+ "nodetype" : "column",
3172
+ "moduleName" : "SNMP-REPEATER-MIB",
3173
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.8",
3174
+ "status" : "current",
3175
+ "syntax" : {
3176
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
3177
+ },
3178
+ "access" : "readonly",
3179
+ "description" :
3180
+ """The value of sysUpTime when this top N report was
3181
+ last started. In other words, this is the time that
3182
+ the associated rptrTopNPortTimeRemaining object was
3183
+ modified to start the requested report.
3184
+
3185
+ If the report has not yet been started, the value
3186
+ of this object is zero.""",
3187
+ }, # column
3188
+ "rptrTopNPortOwner" : {
3189
+ "nodetype" : "column",
3190
+ "moduleName" : "SNMP-REPEATER-MIB",
3191
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.9",
3192
+ "status" : "current",
3193
+ "syntax" : {
3194
+ "type" : { "module" :"IF-MIB", "name" : "OwnerString"},
3195
+ },
3196
+ "access" : "readwrite",
3197
+ "description" :
3198
+ """The entity that configured this entry and is
3199
+ using the resources assigned to it.""",
3200
+ }, # column
3201
+ "rptrTopNPortRowStatus" : {
3202
+ "nodetype" : "column",
3203
+ "moduleName" : "SNMP-REPEATER-MIB",
3204
+ "oid" : "1.3.6.1.2.1.22.4.3.1.1.10",
3205
+ "status" : "current",
3206
+ "syntax" : {
3207
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3208
+ },
3209
+ "access" : "readwrite",
3210
+ "description" :
3211
+ """The status of this row.
3212
+
3213
+ If the value of this object is not equal to
3214
+ active(1), all associated entries in the
3215
+ rptrTopNPortTable shall be deleted by the
3216
+ agent.""",
3217
+ }, # column
3218
+ "rptrTopNPortTable" : {
3219
+ "nodetype" : "table",
3220
+ "moduleName" : "SNMP-REPEATER-MIB",
3221
+ "oid" : "1.3.6.1.2.1.22.4.3.2",
3222
+ "status" : "current",
3223
+ "description" :
3224
+ """A table of reports for the top `N' ports based on
3225
+ setting of associated control table entries. The
3226
+ maximum number of entries depends on the number
3227
+ of entries in table rptrTopNPortControlTable and
3228
+ the value of object rptrTopNPortGrantedSize for
3229
+ each entry.
3230
+
3231
+ For each entry in the rptrTopNPortControlTable,
3232
+ repeater ports with the highest value of
3233
+ rptrTopNPortRate shall be placed in this table
3234
+ in decreasing order of that rate until there is
3235
+ no more room or until there are no more ports.""",
3236
+ }, # table
3237
+ "rptrTopNPortEntry" : {
3238
+ "nodetype" : "row",
3239
+ "moduleName" : "SNMP-REPEATER-MIB",
3240
+ "oid" : "1.3.6.1.2.1.22.4.3.2.1",
3241
+ "status" : "current",
3242
+ "linkage" : [
3243
+ "rptrTopNPortControlIndex",
3244
+ "rptrTopNPortIndex",
3245
+ ],
3246
+ "description" :
3247
+ """A set of statistics for a repeater port that is
3248
+ part of a top N report.""",
3249
+ }, # row
3250
+ "rptrTopNPortIndex" : {
3251
+ "nodetype" : "column",
3252
+ "moduleName" : "SNMP-REPEATER-MIB",
3253
+ "oid" : "1.3.6.1.2.1.22.4.3.2.1.1",
3254
+ "status" : "current",
3255
+ "syntax" : {
3256
+ "type" : {
3257
+ "basetype" : "Integer32",
3258
+ "ranges" : [
3259
+ {
3260
+ "min" : "1",
3261
+ "max" : "65535"
3262
+ },
3263
+ ],
3264
+ "range" : {
3265
+ "min" : "1",
3266
+ "max" : "65535"
3267
+ },
3268
+ },
3269
+ },
3270
+ "access" : "readonly",
3271
+ "description" :
3272
+ """An index that uniquely identifies an entry in
3273
+ the rptrTopNPort table among those in the same
3274
+ report. This index is between 1 and N, where N
3275
+ is the number of entries in this report. Increasing
3276
+ values of rptrTopNPortIndex shall be assigned to
3277
+ entries with decreasing values of rptrTopNPortRate
3278
+ until index N is assigned to the entry with the
3279
+ lowest value of rptrTopNPortRate or there are no
3280
+ more rptrTopNPortEntries.
3281
+
3282
+ No ports are included in a report where their
3283
+ value of rptrTopNPortRate would be zero.""",
3284
+ }, # column
3285
+ "rptrTopNPortGroupIndex" : {
3286
+ "nodetype" : "column",
3287
+ "moduleName" : "SNMP-REPEATER-MIB",
3288
+ "oid" : "1.3.6.1.2.1.22.4.3.2.1.2",
3289
+ "status" : "current",
3290
+ "syntax" : {
3291
+ "type" : {
3292
+ "basetype" : "Integer32",
3293
+ "ranges" : [
3294
+ {
3295
+ "min" : "1",
3296
+ "max" : "2147483647"
3297
+ },
3298
+ ],
3299
+ "range" : {
3300
+ "min" : "1",
3301
+ "max" : "2147483647"
3302
+ },
3303
+ },
3304
+ },
3305
+ "access" : "readonly",
3306
+ "description" :
3307
+ """This object identifes the group containing
3308
+ the port for this entry. (See also object
3309
+ type rptrGroupIndex.)""",
3310
+ }, # column
3311
+ "rptrTopNPortPortIndex" : {
3312
+ "nodetype" : "column",
3313
+ "moduleName" : "SNMP-REPEATER-MIB",
3314
+ "oid" : "1.3.6.1.2.1.22.4.3.2.1.3",
3315
+ "status" : "current",
3316
+ "syntax" : {
3317
+ "type" : {
3318
+ "basetype" : "Integer32",
3319
+ "ranges" : [
3320
+ {
3321
+ "min" : "1",
3322
+ "max" : "2147483647"
3323
+ },
3324
+ ],
3325
+ "range" : {
3326
+ "min" : "1",
3327
+ "max" : "2147483647"
3328
+ },
3329
+ },
3330
+ },
3331
+ "access" : "readonly",
3332
+ "description" :
3333
+ """The index of the repeater port.
3334
+ (See object type rptrPortIndex.)""",
3335
+ }, # column
3336
+ "rptrTopNPortRate" : {
3337
+ "nodetype" : "column",
3338
+ "moduleName" : "SNMP-REPEATER-MIB",
3339
+ "oid" : "1.3.6.1.2.1.22.4.3.2.1.4",
3340
+ "status" : "current",
3341
+ "syntax" : {
3342
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
3343
+ },
3344
+ "access" : "readonly",
3345
+ "description" :
3346
+ """The amount of change in the selected variable
3347
+ during this sampling interval for the identified
3348
+ port. The selected variable is that port's
3349
+ instance of the object selected by
3350
+ rptrTopNPortRateBase.""",
3351
+ }, # column
3352
+ "snmpRptrMod" : {
3353
+ "nodetype" : "node",
3354
+ "moduleName" : "SNMP-REPEATER-MIB",
3355
+ "oid" : "1.3.6.1.2.1.22.5",
3356
+ "status" : "current",
3357
+ }, # node
3358
+ "snmpRptrModConf" : {
3359
+ "nodetype" : "node",
3360
+ "moduleName" : "SNMP-REPEATER-MIB",
3361
+ "oid" : "1.3.6.1.2.1.22.5.1",
3362
+ }, # node
3363
+ "snmpRptrModCompls" : {
3364
+ "nodetype" : "node",
3365
+ "moduleName" : "SNMP-REPEATER-MIB",
3366
+ "oid" : "1.3.6.1.2.1.22.5.1.1",
3367
+ }, # node
3368
+ "snmpRptrModObjGrps" : {
3369
+ "nodetype" : "node",
3370
+ "moduleName" : "SNMP-REPEATER-MIB",
3371
+ "oid" : "1.3.6.1.2.1.22.5.1.2",
3372
+ }, # node
3373
+ "snmpRptrModNotGrps" : {
3374
+ "nodetype" : "node",
3375
+ "moduleName" : "SNMP-REPEATER-MIB",
3376
+ "oid" : "1.3.6.1.2.1.22.5.1.3",
3377
+ }, # node
3378
+ }, # nodes
3379
+
3380
+ "notifications" : {
3381
+ "rptrHealth" : {
3382
+ "nodetype" : "notification",
3383
+ "moduleName" : "SNMP-REPEATER-MIB",
3384
+ "oid" : "1.3.6.1.2.1.22.0.1",
3385
+ "status" : "deprecated",
3386
+ "objects" : {
3387
+ "rptrOperStatus" : {
3388
+ "nodetype" : "object",
3389
+ "module" : "SNMP-REPEATER-MIB"
3390
+ },
3391
+ },
3392
+ "description" :
3393
+ """********* THIS OBJECT IS DEPRECATED **********
3394
+
3395
+ In a system containing a single managed repeater,
3396
+ the rptrHealth notification conveys information
3397
+ related to the operational status of the repeater.
3398
+ It is sent either when the value of
3399
+ rptrOperStatus changes, or upon completion of a
3400
+ non-disruptive test.
3401
+
3402
+ The rptrHealth notification must contain the
3403
+ rptrOperStatus object. The agent may optionally
3404
+ include the rptrHealthText object in the varBind
3405
+ list. See the rptrOperStatus and rptrHealthText
3406
+ objects for descriptions of the information that
3407
+ is sent.
3408
+
3409
+ The agent must throttle the generation of
3410
+ consecutive rptrHealth traps so that there is at
3411
+ least a five-second gap between traps of this
3412
+ type. When traps are throttled, they are dropped,
3413
+ not queued for sending at a future time. (Note
3414
+ that 'generating' a trap means sending to all
3415
+ configured recipients.)""",
3416
+ "reference" :
3417
+ """[IEEE 802.3 Mgt], 30.4.1.3.1, nRepeaterHealth
3418
+ notification.""",
3419
+ }, # notification
3420
+ "rptrGroupChange" : {
3421
+ "nodetype" : "notification",
3422
+ "moduleName" : "SNMP-REPEATER-MIB",
3423
+ "oid" : "1.3.6.1.2.1.22.0.2",
3424
+ "status" : "deprecated",
3425
+ "objects" : {
3426
+ "rptrGroupIndex" : {
3427
+ "nodetype" : "object",
3428
+ "module" : "SNMP-REPEATER-MIB"
3429
+ },
3430
+ },
3431
+ "description" :
3432
+ """********* THIS OBJECT IS DEPRECATED **********
3433
+
3434
+ In a system containing a single managed repeater,
3435
+ this notification is sent when a change occurs in the
3436
+ group structure of the repeater. This occurs only
3437
+ when a group is logically or physically removed
3438
+ from or added to a repeater. The varBind list
3439
+ contains the identifier of the group that was
3440
+ removed or added.
3441
+
3442
+ The agent must throttle the generation of
3443
+ consecutive rptrGroupChange traps for the same
3444
+ group so that there is at least a five-second gap
3445
+ between traps of this type. When traps are
3446
+ throttled, they are dropped, not queued for
3447
+ sending at a future time. (Note that 'generating'
3448
+ a trap means sending to all configured
3449
+ recipients.)""",
3450
+ "reference" :
3451
+ """[IEEE 802.3 Mgt], 30.4.1.3.3, nGroupMapChange
3452
+ notification.""",
3453
+ }, # notification
3454
+ "rptrResetEvent" : {
3455
+ "nodetype" : "notification",
3456
+ "moduleName" : "SNMP-REPEATER-MIB",
3457
+ "oid" : "1.3.6.1.2.1.22.0.3",
3458
+ "status" : "deprecated",
3459
+ "objects" : {
3460
+ "rptrOperStatus" : {
3461
+ "nodetype" : "object",
3462
+ "module" : "SNMP-REPEATER-MIB"
3463
+ },
3464
+ },
3465
+ "description" :
3466
+ """********* THIS OBJECT IS DEPRECATED **********
3467
+
3468
+ In a system containing a single managed repeater-unit,
3469
+ the rptrResetEvent notification conveys information
3470
+ related to the operational status of the repeater.
3471
+ This trap is sent on completion of a repeater
3472
+ reset action. A repeater reset action is defined
3473
+ as an a transition to the START state of Fig 9-2
3474
+ in section 9 [IEEE 802.3 Std], when triggered by a
3475
+ management command (e.g., an SNMP Set on the
3476
+ rptrReset object).
3477
+
3478
+ The agent must throttle the generation of
3479
+ consecutive rptrResetEvent traps so that there is
3480
+ at least a five-second gap between traps of this
3481
+ type. When traps are throttled, they are dropped,
3482
+ not queued for sending at a future time. (Note
3483
+ that 'generating' a trap means sending to all
3484
+ configured recipients.)
3485
+
3486
+ The rptrResetEvent trap is not sent when the agent
3487
+ restarts and sends an SNMP coldStart or warmStart
3488
+ trap. However, it is recommended that a repeater
3489
+ agent send the rptrOperStatus object as an
3490
+ optional object with its coldStart and warmStart
3491
+ trap PDUs.
3492
+
3493
+ The rptrOperStatus object must be included in the
3494
+ varbind list sent with this trap. The agent may
3495
+ optionally include the rptrHealthText object as
3496
+ well.""",
3497
+ "reference" :
3498
+ """[IEEE 802.3 Mgt], 30.4.1.3.2, nRepeaterReset
3499
+ notification.""",
3500
+ }, # notification
3501
+ "rptrInfoHealth" : {
3502
+ "nodetype" : "notification",
3503
+ "moduleName" : "SNMP-REPEATER-MIB",
3504
+ "oid" : "1.3.6.1.2.1.22.0.4",
3505
+ "status" : "current",
3506
+ "objects" : {
3507
+ "rptrInfoOperStatus" : {
3508
+ "nodetype" : "object",
3509
+ "module" : "SNMP-REPEATER-MIB"
3510
+ },
3511
+ },
3512
+ "description" :
3513
+ """In a system containing multiple managed repeaters,
3514
+ the rptrInfoHealth notification conveys information
3515
+ related to the operational status of a repeater.
3516
+ It is sent either when the value of rptrInfoOperStatus
3517
+ changes, or upon completion of a non-disruptive test.
3518
+
3519
+ The agent must throttle the generation of
3520
+ consecutive rptrInfoHealth notifications for
3521
+ the same repeater so that there is at least
3522
+ a five-second gap between notifications of this type.
3523
+ When notifications are throttled, they are dropped,
3524
+ not queued for sending at a future time. (Note
3525
+ that 'generating' a notification means sending
3526
+ to all configured recipients.)""",
3527
+ "reference" :
3528
+ """[IEEE 802.3 Mgt], 30.4.1.3.1, nRepeaterHealth
3529
+ notification.""",
3530
+ }, # notification
3531
+ "rptrInfoResetEvent" : {
3532
+ "nodetype" : "notification",
3533
+ "moduleName" : "SNMP-REPEATER-MIB",
3534
+ "oid" : "1.3.6.1.2.1.22.0.5",
3535
+ "status" : "current",
3536
+ "objects" : {
3537
+ "rptrInfoOperStatus" : {
3538
+ "nodetype" : "object",
3539
+ "module" : "SNMP-REPEATER-MIB"
3540
+ },
3541
+ },
3542
+ "description" :
3543
+ """In a system containing multiple managed
3544
+ repeaters, the rptrInfoResetEvent notification
3545
+ conveys information related to the operational
3546
+ status of a repeater. This notification is sent
3547
+ on completion of a repeater reset action. A
3548
+ repeater reset action is defined as a transition
3549
+ to the START state of Fig 9-2 in section 9 of
3550
+ [IEEE 802.3 Std], when triggered by a management
3551
+ command (e.g., an SNMP Set on the rptrInfoReset
3552
+ object).
3553
+
3554
+ The agent must throttle the generation of
3555
+ consecutive rptrInfoResetEvent notifications for
3556
+ a single repeater so that there is at least
3557
+ a five-second gap between notifications of
3558
+ this type. When notifications are throttled,
3559
+ they are dropped, not queued for sending at
3560
+ a future time. (Note that 'generating' a
3561
+ notification means sending to all configured
3562
+ recipients.)
3563
+
3564
+ The rptrInfoResetEvent is not sent when the
3565
+ agent restarts and sends an SNMP coldStart or
3566
+ warmStart trap. However, it is recommended that
3567
+ a repeater agent send the rptrInfoOperStatus
3568
+ object as an optional object with its coldStart
3569
+ and warmStart trap PDUs.""",
3570
+ "reference" :
3571
+ """[IEEE 802.3 Mgt], 30.4.1.3.2, nRepeaterReset
3572
+ notification.""",
3573
+ }, # notification
3574
+ }, # notifications
3575
+
3576
+ "groups" : {
3577
+ "snmpRptrGrpBasic1516" : {
3578
+ "nodetype" : "group",
3579
+ "moduleName" : "SNMP-REPEATER-MIB",
3580
+ "oid" : "1.3.6.1.2.1.22.5.1.2.1",
3581
+ "status" : "deprecated",
3582
+ "members" : {
3583
+ "rptrGroupCapacity" : {
3584
+ "nodetype" : "member",
3585
+ "module" : "SNMP-REPEATER-MIB"
3586
+ },
3587
+ "rptrOperStatus" : {
3588
+ "nodetype" : "member",
3589
+ "module" : "SNMP-REPEATER-MIB"
3590
+ },
3591
+ "rptrHealthText" : {
3592
+ "nodetype" : "member",
3593
+ "module" : "SNMP-REPEATER-MIB"
3594
+ },
3595
+ "rptrReset" : {
3596
+ "nodetype" : "member",
3597
+ "module" : "SNMP-REPEATER-MIB"
3598
+ },
3599
+ "rptrNonDisruptTest" : {
3600
+ "nodetype" : "member",
3601
+ "module" : "SNMP-REPEATER-MIB"
3602
+ },
3603
+ "rptrTotalPartitionedPorts" : {
3604
+ "nodetype" : "member",
3605
+ "module" : "SNMP-REPEATER-MIB"
3606
+ },
3607
+ "rptrGroupIndex" : {
3608
+ "nodetype" : "member",
3609
+ "module" : "SNMP-REPEATER-MIB"
3610
+ },
3611
+ "rptrGroupDescr" : {
3612
+ "nodetype" : "member",
3613
+ "module" : "SNMP-REPEATER-MIB"
3614
+ },
3615
+ "rptrGroupObjectID" : {
3616
+ "nodetype" : "member",
3617
+ "module" : "SNMP-REPEATER-MIB"
3618
+ },
3619
+ "rptrGroupOperStatus" : {
3620
+ "nodetype" : "member",
3621
+ "module" : "SNMP-REPEATER-MIB"
3622
+ },
3623
+ "rptrGroupLastOperStatusChange" : {
3624
+ "nodetype" : "member",
3625
+ "module" : "SNMP-REPEATER-MIB"
3626
+ },
3627
+ "rptrGroupPortCapacity" : {
3628
+ "nodetype" : "member",
3629
+ "module" : "SNMP-REPEATER-MIB"
3630
+ },
3631
+ "rptrPortGroupIndex" : {
3632
+ "nodetype" : "member",
3633
+ "module" : "SNMP-REPEATER-MIB"
3634
+ },
3635
+ "rptrPortIndex" : {
3636
+ "nodetype" : "member",
3637
+ "module" : "SNMP-REPEATER-MIB"
3638
+ },
3639
+ "rptrPortAdminStatus" : {
3640
+ "nodetype" : "member",
3641
+ "module" : "SNMP-REPEATER-MIB"
3642
+ },
3643
+ "rptrPortAutoPartitionState" : {
3644
+ "nodetype" : "member",
3645
+ "module" : "SNMP-REPEATER-MIB"
3646
+ },
3647
+ "rptrPortOperStatus" : {
3648
+ "nodetype" : "member",
3649
+ "module" : "SNMP-REPEATER-MIB"
3650
+ },
3651
+ }, # members
3652
+ "description" :
3653
+ """********* THIS GROUP IS DEPRECATED **********
3654
+
3655
+ Basic group from RFCs 1368 and 1516.
3656
+
3657
+ NOTE: this object group is DEPRECATED and replaced
3658
+ with snmpRptrGrpBasic.""",
3659
+ }, # group
3660
+ "snmpRptrGrpMonitor1516" : {
3661
+ "nodetype" : "group",
3662
+ "moduleName" : "SNMP-REPEATER-MIB",
3663
+ "oid" : "1.3.6.1.2.1.22.5.1.2.2",
3664
+ "status" : "deprecated",
3665
+ "members" : {
3666
+ "rptrMonitorTransmitCollisions" : {
3667
+ "nodetype" : "member",
3668
+ "module" : "SNMP-REPEATER-MIB"
3669
+ },
3670
+ "rptrMonitorGroupIndex" : {
3671
+ "nodetype" : "member",
3672
+ "module" : "SNMP-REPEATER-MIB"
3673
+ },
3674
+ "rptrMonitorGroupTotalFrames" : {
3675
+ "nodetype" : "member",
3676
+ "module" : "SNMP-REPEATER-MIB"
3677
+ },
3678
+ "rptrMonitorGroupTotalOctets" : {
3679
+ "nodetype" : "member",
3680
+ "module" : "SNMP-REPEATER-MIB"
3681
+ },
3682
+ "rptrMonitorGroupTotalErrors" : {
3683
+ "nodetype" : "member",
3684
+ "module" : "SNMP-REPEATER-MIB"
3685
+ },
3686
+ "rptrMonitorPortGroupIndex" : {
3687
+ "nodetype" : "member",
3688
+ "module" : "SNMP-REPEATER-MIB"
3689
+ },
3690
+ "rptrMonitorPortIndex" : {
3691
+ "nodetype" : "member",
3692
+ "module" : "SNMP-REPEATER-MIB"
3693
+ },
3694
+ "rptrMonitorPortReadableFrames" : {
3695
+ "nodetype" : "member",
3696
+ "module" : "SNMP-REPEATER-MIB"
3697
+ },
3698
+ "rptrMonitorPortReadableOctets" : {
3699
+ "nodetype" : "member",
3700
+ "module" : "SNMP-REPEATER-MIB"
3701
+ },
3702
+ "rptrMonitorPortFCSErrors" : {
3703
+ "nodetype" : "member",
3704
+ "module" : "SNMP-REPEATER-MIB"
3705
+ },
3706
+ "rptrMonitorPortAlignmentErrors" : {
3707
+ "nodetype" : "member",
3708
+ "module" : "SNMP-REPEATER-MIB"
3709
+ },
3710
+ "rptrMonitorPortFrameTooLongs" : {
3711
+ "nodetype" : "member",
3712
+ "module" : "SNMP-REPEATER-MIB"
3713
+ },
3714
+ "rptrMonitorPortShortEvents" : {
3715
+ "nodetype" : "member",
3716
+ "module" : "SNMP-REPEATER-MIB"
3717
+ },
3718
+ "rptrMonitorPortRunts" : {
3719
+ "nodetype" : "member",
3720
+ "module" : "SNMP-REPEATER-MIB"
3721
+ },
3722
+ "rptrMonitorPortCollisions" : {
3723
+ "nodetype" : "member",
3724
+ "module" : "SNMP-REPEATER-MIB"
3725
+ },
3726
+ "rptrMonitorPortLateEvents" : {
3727
+ "nodetype" : "member",
3728
+ "module" : "SNMP-REPEATER-MIB"
3729
+ },
3730
+ "rptrMonitorPortVeryLongEvents" : {
3731
+ "nodetype" : "member",
3732
+ "module" : "SNMP-REPEATER-MIB"
3733
+ },
3734
+ "rptrMonitorPortDataRateMismatches" : {
3735
+ "nodetype" : "member",
3736
+ "module" : "SNMP-REPEATER-MIB"
3737
+ },
3738
+ "rptrMonitorPortAutoPartitions" : {
3739
+ "nodetype" : "member",
3740
+ "module" : "SNMP-REPEATER-MIB"
3741
+ },
3742
+ "rptrMonitorPortTotalErrors" : {
3743
+ "nodetype" : "member",
3744
+ "module" : "SNMP-REPEATER-MIB"
3745
+ },
3746
+ }, # members
3747
+ "description" :
3748
+ """********* THIS GROUP IS DEPRECATED **********
3749
+
3750
+ Monitor group from RFCs 1368 and 1516.
3751
+
3752
+ NOTE: this object group is DEPRECATED and replaced
3753
+ with snmpRptrGrpMonitor.""",
3754
+ }, # group
3755
+ "snmpRptrGrpAddrTrack1368" : {
3756
+ "nodetype" : "group",
3757
+ "moduleName" : "SNMP-REPEATER-MIB",
3758
+ "oid" : "1.3.6.1.2.1.22.5.1.2.3",
3759
+ "status" : "obsolete",
3760
+ "members" : {
3761
+ "rptrAddrTrackGroupIndex" : {
3762
+ "nodetype" : "member",
3763
+ "module" : "SNMP-REPEATER-MIB"
3764
+ },
3765
+ "rptrAddrTrackPortIndex" : {
3766
+ "nodetype" : "member",
3767
+ "module" : "SNMP-REPEATER-MIB"
3768
+ },
3769
+ "rptrAddrTrackLastSourceAddress" : {
3770
+ "nodetype" : "member",
3771
+ "module" : "SNMP-REPEATER-MIB"
3772
+ },
3773
+ "rptrAddrTrackSourceAddrChanges" : {
3774
+ "nodetype" : "member",
3775
+ "module" : "SNMP-REPEATER-MIB"
3776
+ },
3777
+ }, # members
3778
+ "description" :
3779
+ """Address tracking group from RFC 1368.
3780
+
3781
+ NOTE: this object group is OBSOLETE and replaced
3782
+ with snmpRptrGrpAddrTrack1516.""",
3783
+ }, # group
3784
+ "snmpRptrGrpAddrTrack1516" : {
3785
+ "nodetype" : "group",
3786
+ "moduleName" : "SNMP-REPEATER-MIB",
3787
+ "oid" : "1.3.6.1.2.1.22.5.1.2.4",
3788
+ "status" : "deprecated",
3789
+ "members" : {
3790
+ "rptrAddrTrackGroupIndex" : {
3791
+ "nodetype" : "member",
3792
+ "module" : "SNMP-REPEATER-MIB"
3793
+ },
3794
+ "rptrAddrTrackPortIndex" : {
3795
+ "nodetype" : "member",
3796
+ "module" : "SNMP-REPEATER-MIB"
3797
+ },
3798
+ "rptrAddrTrackLastSourceAddress" : {
3799
+ "nodetype" : "member",
3800
+ "module" : "SNMP-REPEATER-MIB"
3801
+ },
3802
+ "rptrAddrTrackSourceAddrChanges" : {
3803
+ "nodetype" : "member",
3804
+ "module" : "SNMP-REPEATER-MIB"
3805
+ },
3806
+ "rptrAddrTrackNewLastSrcAddress" : {
3807
+ "nodetype" : "member",
3808
+ "module" : "SNMP-REPEATER-MIB"
3809
+ },
3810
+ }, # members
3811
+ "description" :
3812
+ """********* THIS GROUP IS DEPRECATED **********
3813
+ Address tracking group from RFC 1516.
3814
+
3815
+ NOTE: this object group is DEPRECATED and
3816
+ replaced with snmpRptrGrpAddrTrack.""",
3817
+ }, # group
3818
+ "snmpRptrGrpBasic" : {
3819
+ "nodetype" : "group",
3820
+ "moduleName" : "SNMP-REPEATER-MIB",
3821
+ "oid" : "1.3.6.1.2.1.22.5.1.2.5",
3822
+ "status" : "current",
3823
+ "members" : {
3824
+ "rptrGroupIndex" : {
3825
+ "nodetype" : "member",
3826
+ "module" : "SNMP-REPEATER-MIB"
3827
+ },
3828
+ "rptrGroupObjectID" : {
3829
+ "nodetype" : "member",
3830
+ "module" : "SNMP-REPEATER-MIB"
3831
+ },
3832
+ "rptrGroupOperStatus" : {
3833
+ "nodetype" : "member",
3834
+ "module" : "SNMP-REPEATER-MIB"
3835
+ },
3836
+ "rptrGroupPortCapacity" : {
3837
+ "nodetype" : "member",
3838
+ "module" : "SNMP-REPEATER-MIB"
3839
+ },
3840
+ "rptrPortGroupIndex" : {
3841
+ "nodetype" : "member",
3842
+ "module" : "SNMP-REPEATER-MIB"
3843
+ },
3844
+ "rptrPortIndex" : {
3845
+ "nodetype" : "member",
3846
+ "module" : "SNMP-REPEATER-MIB"
3847
+ },
3848
+ "rptrPortAdminStatus" : {
3849
+ "nodetype" : "member",
3850
+ "module" : "SNMP-REPEATER-MIB"
3851
+ },
3852
+ "rptrPortAutoPartitionState" : {
3853
+ "nodetype" : "member",
3854
+ "module" : "SNMP-REPEATER-MIB"
3855
+ },
3856
+ "rptrPortOperStatus" : {
3857
+ "nodetype" : "member",
3858
+ "module" : "SNMP-REPEATER-MIB"
3859
+ },
3860
+ "rptrPortRptrId" : {
3861
+ "nodetype" : "member",
3862
+ "module" : "SNMP-REPEATER-MIB"
3863
+ },
3864
+ "rptrInfoId" : {
3865
+ "nodetype" : "member",
3866
+ "module" : "SNMP-REPEATER-MIB"
3867
+ },
3868
+ "rptrInfoRptrType" : {
3869
+ "nodetype" : "member",
3870
+ "module" : "SNMP-REPEATER-MIB"
3871
+ },
3872
+ "rptrInfoOperStatus" : {
3873
+ "nodetype" : "member",
3874
+ "module" : "SNMP-REPEATER-MIB"
3875
+ },
3876
+ "rptrInfoReset" : {
3877
+ "nodetype" : "member",
3878
+ "module" : "SNMP-REPEATER-MIB"
3879
+ },
3880
+ "rptrInfoPartitionedPorts" : {
3881
+ "nodetype" : "member",
3882
+ "module" : "SNMP-REPEATER-MIB"
3883
+ },
3884
+ "rptrInfoLastChange" : {
3885
+ "nodetype" : "member",
3886
+ "module" : "SNMP-REPEATER-MIB"
3887
+ },
3888
+ }, # members
3889
+ "description" :
3890
+ """Basic group for a system with one or more
3891
+ repeater-units in multi-segment (post-RFC 1516)
3892
+ version of the MIB module.""",
3893
+ }, # group
3894
+ "snmpRptrGrpMonitor" : {
3895
+ "nodetype" : "group",
3896
+ "moduleName" : "SNMP-REPEATER-MIB",
3897
+ "oid" : "1.3.6.1.2.1.22.5.1.2.6",
3898
+ "status" : "current",
3899
+ "members" : {
3900
+ "rptrMonitorPortGroupIndex" : {
3901
+ "nodetype" : "member",
3902
+ "module" : "SNMP-REPEATER-MIB"
3903
+ },
3904
+ "rptrMonitorPortIndex" : {
3905
+ "nodetype" : "member",
3906
+ "module" : "SNMP-REPEATER-MIB"
3907
+ },
3908
+ "rptrMonitorPortReadableFrames" : {
3909
+ "nodetype" : "member",
3910
+ "module" : "SNMP-REPEATER-MIB"
3911
+ },
3912
+ "rptrMonitorPortReadableOctets" : {
3913
+ "nodetype" : "member",
3914
+ "module" : "SNMP-REPEATER-MIB"
3915
+ },
3916
+ "rptrMonitorPortFCSErrors" : {
3917
+ "nodetype" : "member",
3918
+ "module" : "SNMP-REPEATER-MIB"
3919
+ },
3920
+ "rptrMonitorPortAlignmentErrors" : {
3921
+ "nodetype" : "member",
3922
+ "module" : "SNMP-REPEATER-MIB"
3923
+ },
3924
+ "rptrMonitorPortFrameTooLongs" : {
3925
+ "nodetype" : "member",
3926
+ "module" : "SNMP-REPEATER-MIB"
3927
+ },
3928
+ "rptrMonitorPortShortEvents" : {
3929
+ "nodetype" : "member",
3930
+ "module" : "SNMP-REPEATER-MIB"
3931
+ },
3932
+ "rptrMonitorPortRunts" : {
3933
+ "nodetype" : "member",
3934
+ "module" : "SNMP-REPEATER-MIB"
3935
+ },
3936
+ "rptrMonitorPortCollisions" : {
3937
+ "nodetype" : "member",
3938
+ "module" : "SNMP-REPEATER-MIB"
3939
+ },
3940
+ "rptrMonitorPortLateEvents" : {
3941
+ "nodetype" : "member",
3942
+ "module" : "SNMP-REPEATER-MIB"
3943
+ },
3944
+ "rptrMonitorPortVeryLongEvents" : {
3945
+ "nodetype" : "member",
3946
+ "module" : "SNMP-REPEATER-MIB"
3947
+ },
3948
+ "rptrMonitorPortDataRateMismatches" : {
3949
+ "nodetype" : "member",
3950
+ "module" : "SNMP-REPEATER-MIB"
3951
+ },
3952
+ "rptrMonitorPortAutoPartitions" : {
3953
+ "nodetype" : "member",
3954
+ "module" : "SNMP-REPEATER-MIB"
3955
+ },
3956
+ "rptrMonitorPortTotalErrors" : {
3957
+ "nodetype" : "member",
3958
+ "module" : "SNMP-REPEATER-MIB"
3959
+ },
3960
+ "rptrMonitorPortLastChange" : {
3961
+ "nodetype" : "member",
3962
+ "module" : "SNMP-REPEATER-MIB"
3963
+ },
3964
+ "rptrMonTxCollisions" : {
3965
+ "nodetype" : "member",
3966
+ "module" : "SNMP-REPEATER-MIB"
3967
+ },
3968
+ "rptrMonTotalFrames" : {
3969
+ "nodetype" : "member",
3970
+ "module" : "SNMP-REPEATER-MIB"
3971
+ },
3972
+ "rptrMonTotalErrors" : {
3973
+ "nodetype" : "member",
3974
+ "module" : "SNMP-REPEATER-MIB"
3975
+ },
3976
+ "rptrMonTotalOctets" : {
3977
+ "nodetype" : "member",
3978
+ "module" : "SNMP-REPEATER-MIB"
3979
+ },
3980
+ }, # members
3981
+ "description" :
3982
+ """Monitor group for a system with one or more
3983
+ repeater-units in multi-segment (post-RFC 1516)
3984
+ version of the MIB module.""",
3985
+ }, # group
3986
+ "snmpRptrGrpMonitor100" : {
3987
+ "nodetype" : "group",
3988
+ "moduleName" : "SNMP-REPEATER-MIB",
3989
+ "oid" : "1.3.6.1.2.1.22.5.1.2.7",
3990
+ "status" : "current",
3991
+ "members" : {
3992
+ "rptrMonitorPortIsolates" : {
3993
+ "nodetype" : "member",
3994
+ "module" : "SNMP-REPEATER-MIB"
3995
+ },
3996
+ "rptrMonitorPortSymbolErrors" : {
3997
+ "nodetype" : "member",
3998
+ "module" : "SNMP-REPEATER-MIB"
3999
+ },
4000
+ "rptrMonitorPortUpper32Octets" : {
4001
+ "nodetype" : "member",
4002
+ "module" : "SNMP-REPEATER-MIB"
4003
+ },
4004
+ "rptrMonUpper32TotalOctets" : {
4005
+ "nodetype" : "member",
4006
+ "module" : "SNMP-REPEATER-MIB"
4007
+ },
4008
+ }, # members
4009
+ "description" :
4010
+ """Monitor group for 100Mb/s ports and repeaters
4011
+ in a system with one or more repeater-units in
4012
+ multi-segment (post-RFC 1516) version of the MIB
4013
+ module. Systems which support Counter64 should
4014
+ also implement snmpRptrGrpMonitor100w64.""",
4015
+ }, # group
4016
+ "snmpRptrGrpMonitor100w64" : {
4017
+ "nodetype" : "group",
4018
+ "moduleName" : "SNMP-REPEATER-MIB",
4019
+ "oid" : "1.3.6.1.2.1.22.5.1.2.8",
4020
+ "status" : "current",
4021
+ "members" : {
4022
+ "rptrMonitorPortHCReadableOctets" : {
4023
+ "nodetype" : "member",
4024
+ "module" : "SNMP-REPEATER-MIB"
4025
+ },
4026
+ "rptrMonHCTotalOctets" : {
4027
+ "nodetype" : "member",
4028
+ "module" : "SNMP-REPEATER-MIB"
4029
+ },
4030
+ }, # members
4031
+ "description" :
4032
+ """Monitor group for 100Mb/s ports and repeaters in a
4033
+ system with one or more repeater-units and support
4034
+ for Counter64.""",
4035
+ }, # group
4036
+ "snmpRptrGrpAddrTrack" : {
4037
+ "nodetype" : "group",
4038
+ "moduleName" : "SNMP-REPEATER-MIB",
4039
+ "oid" : "1.3.6.1.2.1.22.5.1.2.9",
4040
+ "status" : "current",
4041
+ "members" : {
4042
+ "rptrAddrTrackGroupIndex" : {
4043
+ "nodetype" : "member",
4044
+ "module" : "SNMP-REPEATER-MIB"
4045
+ },
4046
+ "rptrAddrTrackPortIndex" : {
4047
+ "nodetype" : "member",
4048
+ "module" : "SNMP-REPEATER-MIB"
4049
+ },
4050
+ "rptrAddrTrackSourceAddrChanges" : {
4051
+ "nodetype" : "member",
4052
+ "module" : "SNMP-REPEATER-MIB"
4053
+ },
4054
+ "rptrAddrTrackNewLastSrcAddress" : {
4055
+ "nodetype" : "member",
4056
+ "module" : "SNMP-REPEATER-MIB"
4057
+ },
4058
+ "rptrAddrTrackCapacity" : {
4059
+ "nodetype" : "member",
4060
+ "module" : "SNMP-REPEATER-MIB"
4061
+ },
4062
+ }, # members
4063
+ "description" :
4064
+ """Passive address tracking group for post-RFC 1516
4065
+ version of the MIB module.""",
4066
+ }, # group
4067
+ "snmpRptrGrpExtAddrTrack" : {
4068
+ "nodetype" : "group",
4069
+ "moduleName" : "SNMP-REPEATER-MIB",
4070
+ "oid" : "1.3.6.1.2.1.22.5.1.2.10",
4071
+ "status" : "current",
4072
+ "members" : {
4073
+ "rptrExtAddrTrackMacIndex" : {
4074
+ "nodetype" : "member",
4075
+ "module" : "SNMP-REPEATER-MIB"
4076
+ },
4077
+ "rptrExtAddrTrackSourceAddress" : {
4078
+ "nodetype" : "member",
4079
+ "module" : "SNMP-REPEATER-MIB"
4080
+ },
4081
+ }, # members
4082
+ "description" :
4083
+ """Extended passive address tracking group for
4084
+ a system with one or more repeater-units in
4085
+ post-RFC 1516 version of the MIB module.""",
4086
+ }, # group
4087
+ "snmpRptrGrpRptrAddrSearch" : {
4088
+ "nodetype" : "group",
4089
+ "moduleName" : "SNMP-REPEATER-MIB",
4090
+ "oid" : "1.3.6.1.2.1.22.5.1.2.11",
4091
+ "status" : "current",
4092
+ "members" : {
4093
+ "rptrAddrSearchLock" : {
4094
+ "nodetype" : "member",
4095
+ "module" : "SNMP-REPEATER-MIB"
4096
+ },
4097
+ "rptrAddrSearchStatus" : {
4098
+ "nodetype" : "member",
4099
+ "module" : "SNMP-REPEATER-MIB"
4100
+ },
4101
+ "rptrAddrSearchAddress" : {
4102
+ "nodetype" : "member",
4103
+ "module" : "SNMP-REPEATER-MIB"
4104
+ },
4105
+ "rptrAddrSearchState" : {
4106
+ "nodetype" : "member",
4107
+ "module" : "SNMP-REPEATER-MIB"
4108
+ },
4109
+ "rptrAddrSearchGroup" : {
4110
+ "nodetype" : "member",
4111
+ "module" : "SNMP-REPEATER-MIB"
4112
+ },
4113
+ "rptrAddrSearchPort" : {
4114
+ "nodetype" : "member",
4115
+ "module" : "SNMP-REPEATER-MIB"
4116
+ },
4117
+ "rptrAddrSearchOwner" : {
4118
+ "nodetype" : "member",
4119
+ "module" : "SNMP-REPEATER-MIB"
4120
+ },
4121
+ }, # members
4122
+ "description" :
4123
+ """Active MAC address search group and topology
4124
+ mapping support for repeaters.""",
4125
+ }, # group
4126
+ "snmpRptrGrpTopNPort" : {
4127
+ "nodetype" : "group",
4128
+ "moduleName" : "SNMP-REPEATER-MIB",
4129
+ "oid" : "1.3.6.1.2.1.22.5.1.2.12",
4130
+ "status" : "current",
4131
+ "members" : {
4132
+ "rptrTopNPortControlIndex" : {
4133
+ "nodetype" : "member",
4134
+ "module" : "SNMP-REPEATER-MIB"
4135
+ },
4136
+ "rptrTopNPortRepeaterId" : {
4137
+ "nodetype" : "member",
4138
+ "module" : "SNMP-REPEATER-MIB"
4139
+ },
4140
+ "rptrTopNPortRateBase" : {
4141
+ "nodetype" : "member",
4142
+ "module" : "SNMP-REPEATER-MIB"
4143
+ },
4144
+ "rptrTopNPortTimeRemaining" : {
4145
+ "nodetype" : "member",
4146
+ "module" : "SNMP-REPEATER-MIB"
4147
+ },
4148
+ "rptrTopNPortDuration" : {
4149
+ "nodetype" : "member",
4150
+ "module" : "SNMP-REPEATER-MIB"
4151
+ },
4152
+ "rptrTopNPortRequestedSize" : {
4153
+ "nodetype" : "member",
4154
+ "module" : "SNMP-REPEATER-MIB"
4155
+ },
4156
+ "rptrTopNPortGrantedSize" : {
4157
+ "nodetype" : "member",
4158
+ "module" : "SNMP-REPEATER-MIB"
4159
+ },
4160
+ "rptrTopNPortStartTime" : {
4161
+ "nodetype" : "member",
4162
+ "module" : "SNMP-REPEATER-MIB"
4163
+ },
4164
+ "rptrTopNPortOwner" : {
4165
+ "nodetype" : "member",
4166
+ "module" : "SNMP-REPEATER-MIB"
4167
+ },
4168
+ "rptrTopNPortRowStatus" : {
4169
+ "nodetype" : "member",
4170
+ "module" : "SNMP-REPEATER-MIB"
4171
+ },
4172
+ "rptrTopNPortIndex" : {
4173
+ "nodetype" : "member",
4174
+ "module" : "SNMP-REPEATER-MIB"
4175
+ },
4176
+ "rptrTopNPortGroupIndex" : {
4177
+ "nodetype" : "member",
4178
+ "module" : "SNMP-REPEATER-MIB"
4179
+ },
4180
+ "rptrTopNPortPortIndex" : {
4181
+ "nodetype" : "member",
4182
+ "module" : "SNMP-REPEATER-MIB"
4183
+ },
4184
+ "rptrTopNPortRate" : {
4185
+ "nodetype" : "member",
4186
+ "module" : "SNMP-REPEATER-MIB"
4187
+ },
4188
+ }, # members
4189
+ "description" :
4190
+ """Top `N' group for repeater ports.""",
4191
+ }, # group
4192
+ }, # groups
4193
+
4194
+ "compliances" : {
4195
+ "snmpRptrModComplRFC1368" : {
4196
+ "nodetype" : "compliance",
4197
+ "moduleName" : "SNMP-REPEATER-MIB",
4198
+ "oid" : "1.3.6.1.2.1.22.5.1.1.1",
4199
+ "status" : "obsolete",
4200
+ "description" :
4201
+ """Compliance for RFC 1368.
4202
+
4203
+ NOTE: this module compliance is OBSOLETE and
4204
+ replaced by snmpRptrModComplRFC1516.""",
4205
+ "requires" : {
4206
+ "snmpRptrGrpBasic1516" : {
4207
+ "nodetype" : "mandatory",
4208
+ "module" : "SNMP-REPEATER-MIB"
4209
+ },
4210
+ "snmpRptrGrpMonitor1516" : {
4211
+ "nodetype" : "optional",
4212
+ "module" : "SNMP-REPEATER-MIB",
4213
+ "description" :
4214
+ """Implementation of this optional group is
4215
+ recommended for systems which have the
4216
+ instrumentation to do performance monitoring.""",
4217
+ },
4218
+ "snmpRptrGrpAddrTrack1368" : {
4219
+ "nodetype" : "optional",
4220
+ "module" : "SNMP-REPEATER-MIB",
4221
+ "description" :
4222
+ """Implementation of this group is
4223
+ recommended for systems which have
4224
+ the necessary instrumentation.""",
4225
+ },
4226
+ }, # requires
4227
+ }, # compliance
4228
+ "snmpRptrModComplRFC1516" : {
4229
+ "nodetype" : "compliance",
4230
+ "moduleName" : "SNMP-REPEATER-MIB",
4231
+ "oid" : "1.3.6.1.2.1.22.5.1.1.2",
4232
+ "status" : "deprecated",
4233
+ "description" :
4234
+ """********* THIS COMPLIANCE IS DEPRECATED **********
4235
+
4236
+ Compliance for RFC 1516 and for backwards
4237
+ compatibility with single-repeater,
4238
+ 10Mb/s-only implementations.""",
4239
+ "requires" : {
4240
+ "snmpRptrGrpBasic1516" : {
4241
+ "nodetype" : "mandatory",
4242
+ "module" : "SNMP-REPEATER-MIB"
4243
+ },
4244
+ "snmpRptrGrpMonitor1516" : {
4245
+ "nodetype" : "optional",
4246
+ "module" : "SNMP-REPEATER-MIB",
4247
+ "description" :
4248
+ """Implementation of this optional group is
4249
+ recommended for systems which have the
4250
+ instrumentation to do performance monitoring.""",
4251
+ },
4252
+ "snmpRptrGrpAddrTrack1516" : {
4253
+ "nodetype" : "optional",
4254
+ "module" : "SNMP-REPEATER-MIB",
4255
+ "description" :
4256
+ """Implementation of this group is
4257
+ recommended for systems which have
4258
+ the necessary instrumentation.""",
4259
+ },
4260
+ }, # requires
4261
+ }, # compliance
4262
+ "snmpRptrModCompl" : {
4263
+ "nodetype" : "compliance",
4264
+ "moduleName" : "SNMP-REPEATER-MIB",
4265
+ "oid" : "1.3.6.1.2.1.22.5.1.1.3",
4266
+ "status" : "current",
4267
+ "description" :
4268
+ """Compliance for the multi-segment version of the
4269
+ MIB module for a system with one or more
4270
+ repeater-units.""",
4271
+ "requires" : {
4272
+ "snmpRptrGrpBasic" : {
4273
+ "nodetype" : "mandatory",
4274
+ "module" : "SNMP-REPEATER-MIB"
4275
+ },
4276
+ "snmpRptrGrpMonitor" : {
4277
+ "nodetype" : "mandatory",
4278
+ "module" : "SNMP-REPEATER-MIB"
4279
+ },
4280
+ "snmpRptrGrpAddrTrack" : {
4281
+ "nodetype" : "mandatory",
4282
+ "module" : "SNMP-REPEATER-MIB"
4283
+ },
4284
+ "snmpRptrGrpMonitor100" : {
4285
+ "nodetype" : "optional",
4286
+ "module" : "SNMP-REPEATER-MIB",
4287
+ "description" :
4288
+ """Implementation of this group is
4289
+ mandatory for managed systems which
4290
+ contain 100Mb/s repeaters.""",
4291
+ },
4292
+ "snmpRptrGrpMonitor100w64" : {
4293
+ "nodetype" : "optional",
4294
+ "module" : "SNMP-REPEATER-MIB",
4295
+ "description" :
4296
+ """Implementation of this group is
4297
+ mandatory for managed systems which
4298
+ contain 100Mb/s repeaters and which
4299
+ can support Counter64.""",
4300
+ },
4301
+ "snmpRptrGrpExtAddrTrack" : {
4302
+ "nodetype" : "optional",
4303
+ "module" : "SNMP-REPEATER-MIB",
4304
+ "description" :
4305
+ """Implementation of this group is
4306
+ recommended for systems which have
4307
+ the necessary instrumentation to track
4308
+ MAC addresses of multiple DTEs attached
4309
+ to a single repeater port.""",
4310
+ },
4311
+ "snmpRptrGrpRptrAddrSearch" : {
4312
+ "nodetype" : "optional",
4313
+ "module" : "SNMP-REPEATER-MIB",
4314
+ "description" :
4315
+ """Implementation of this group is
4316
+ recommended for systems which allow
4317
+ read-write access and which have
4318
+ the necessary instrumentation to
4319
+ search all incoming data streams
4320
+ for a particular MAC address.""",
4321
+ },
4322
+ "snmpRptrGrpTopNPort" : {
4323
+ "nodetype" : "optional",
4324
+ "module" : "SNMP-REPEATER-MIB",
4325
+ "description" :
4326
+ """Implementation of this group is
4327
+ recommended for systems which have
4328
+ the necessary resources to support
4329
+ TopN statistics reporting.""",
4330
+ },
4331
+ }, # requires
4332
+ }, # compliance
4333
+ }, # compliances
4334
+
4335
+ }