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,2669 @@
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 DOT12-RPTR-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DOT12-RPTR-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DOT12-RPTR-MIB",
11
+
12
+ "DOT12-RPTR-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF 100VG-AnyLAN Working Group""",
17
+ "contact" :
18
+ """WG E-mail: vgmib@hprnd.rose.hp.com
19
+
20
+ Chair: Jeff Johnson
21
+ Postal: RedBack Networks
22
+ 2570 North First Street, Suite 410
23
+ San Jose, CA 95131
24
+ Tel: +1 408 571 2699
25
+ Fax: +1 408 571 2698
26
+ E-mail: jeff@redbacknetworks.com
27
+
28
+ Editor: John Flick
29
+ Postal: Hewlett Packard Company
30
+ 8000 Foothills Blvd. M/S 5556
31
+ Roseville, CA 95747-5556
32
+ Tel: +1 916 785 4018
33
+ Fax: +1 916 785 3583
34
+ E-mail: johnf@hprnd.rose.hp.com""",
35
+ "description" :
36
+ """This MIB module describes objects for managing
37
+ IEEE 802.12 repeaters.""",
38
+ "revisions" : (
39
+ {
40
+ "date" : "1997-05-19 22:56",
41
+ "description" :
42
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
43
+ },
44
+ ),
45
+ "identity node" : "vgRptrMIB",
46
+ },
47
+
48
+ "imports" : (
49
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
51
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
52
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
53
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
54
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
55
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
56
+ {"module" : "SNMPv2-TC", "name" : "MacAddress"},
57
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
58
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
59
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
60
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
61
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
62
+ {"module" : "SNMP-REPEATER-MIB", "name" : "snmpRptrGrpRptrAddrSearch"},
63
+ ),
64
+
65
+ "nodes" : {
66
+ "vgRptrMIB" : {
67
+ "nodetype" : "node",
68
+ "moduleName" : "DOT12-RPTR-MIB",
69
+ "oid" : "1.3.6.1.2.1.53",
70
+ "status" : "current",
71
+ }, # node
72
+ "vgRptrObjects" : {
73
+ "nodetype" : "node",
74
+ "moduleName" : "DOT12-RPTR-MIB",
75
+ "oid" : "1.3.6.1.2.1.53.1",
76
+ }, # node
77
+ "vgRptrBasic" : {
78
+ "nodetype" : "node",
79
+ "moduleName" : "DOT12-RPTR-MIB",
80
+ "oid" : "1.3.6.1.2.1.53.1.1",
81
+ }, # node
82
+ "vgRptrBasicRptr" : {
83
+ "nodetype" : "node",
84
+ "moduleName" : "DOT12-RPTR-MIB",
85
+ "oid" : "1.3.6.1.2.1.53.1.1.1",
86
+ }, # node
87
+ "vgRptrInfoTable" : {
88
+ "nodetype" : "table",
89
+ "moduleName" : "DOT12-RPTR-MIB",
90
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1",
91
+ "status" : "current",
92
+ "description" :
93
+ """A table of information about each 802.12 repeater
94
+ in the managed system.""",
95
+ }, # table
96
+ "vgRptrInfoEntry" : {
97
+ "nodetype" : "row",
98
+ "moduleName" : "DOT12-RPTR-MIB",
99
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1",
100
+ "status" : "current",
101
+ "linkage" : [
102
+ "vgRptrInfoIndex",
103
+ ],
104
+ "description" :
105
+ """An entry in the table, containing information
106
+ about a single repeater.""",
107
+ }, # row
108
+ "vgRptrInfoIndex" : {
109
+ "nodetype" : "column",
110
+ "moduleName" : "DOT12-RPTR-MIB",
111
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.1",
112
+ "status" : "current",
113
+ "syntax" : {
114
+ "type" : {
115
+ "basetype" : "Integer32",
116
+ "ranges" : [
117
+ {
118
+ "min" : "1",
119
+ "max" : "2147483647"
120
+ },
121
+ ],
122
+ "range" : {
123
+ "min" : "1",
124
+ "max" : "2147483647"
125
+ },
126
+ },
127
+ },
128
+ "access" : "noaccess",
129
+ "description" :
130
+ """A unique identifier for the repeater for which
131
+ this entry contains information. The numbering
132
+ scheme for repeaters is implementation specific.""",
133
+ "reference" :
134
+ """IEEE Standard 802.12-1995, 13.2.4.2.1,
135
+ aRepeaterID.""",
136
+ }, # column
137
+ "vgRptrInfoMACAddress" : {
138
+ "nodetype" : "column",
139
+ "moduleName" : "DOT12-RPTR-MIB",
140
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.2",
141
+ "status" : "current",
142
+ "syntax" : {
143
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
144
+ },
145
+ "access" : "readonly",
146
+ "description" :
147
+ """The MAC address used by the repeater when it
148
+ initiates training on the uplink port. Repeaters
149
+ are allowed to train with an assigned MAC address
150
+ or a null (all zeroes) MAC address.""",
151
+ "reference" :
152
+ """IEEE Standard 802.12-1995, 13.2.4.2.1,
153
+ aMACAddress.""",
154
+ }, # column
155
+ "vgRptrInfoCurrentFramingType" : {
156
+ "nodetype" : "column",
157
+ "moduleName" : "DOT12-RPTR-MIB",
158
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.3",
159
+ "status" : "current",
160
+ "syntax" : {
161
+ "type" : {
162
+ "basetype" : "Enumeration",
163
+ "frameType88023" : {
164
+ "nodetype" : "namednumber",
165
+ "number" : "1"
166
+ },
167
+ "frameType88025" : {
168
+ "nodetype" : "namednumber",
169
+ "number" : "2"
170
+ },
171
+ },
172
+ },
173
+ "access" : "readonly",
174
+ "description" :
175
+ """The type of framing (802.3 or 802.5) currently
176
+ in use by the repeater.""",
177
+ "reference" :
178
+ """IEEE Standard 802.12-1995, 13.2.4.2.1,
179
+ aCurrentFramingType.""",
180
+ }, # column
181
+ "vgRptrInfoDesiredFramingType" : {
182
+ "nodetype" : "column",
183
+ "moduleName" : "DOT12-RPTR-MIB",
184
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.4",
185
+ "status" : "current",
186
+ "syntax" : {
187
+ "type" : {
188
+ "basetype" : "Enumeration",
189
+ "frameType88023" : {
190
+ "nodetype" : "namednumber",
191
+ "number" : "1"
192
+ },
193
+ "frameType88025" : {
194
+ "nodetype" : "namednumber",
195
+ "number" : "2"
196
+ },
197
+ },
198
+ },
199
+ "access" : "readwrite",
200
+ "description" :
201
+ """The type of framing which will be used by the
202
+ repeater after the next time it is reset.
203
+
204
+ The value of this object should be preserved
205
+ across repeater resets and power failures.""",
206
+ "reference" :
207
+ """IEEE Standard 802.12-1995, 13.2.4.2.1,
208
+ aDesiredFramingType.""",
209
+ }, # column
210
+ "vgRptrInfoFramingCapability" : {
211
+ "nodetype" : "column",
212
+ "moduleName" : "DOT12-RPTR-MIB",
213
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.5",
214
+ "status" : "current",
215
+ "syntax" : {
216
+ "type" : {
217
+ "basetype" : "Enumeration",
218
+ "frameType88023" : {
219
+ "nodetype" : "namednumber",
220
+ "number" : "1"
221
+ },
222
+ "frameType88025" : {
223
+ "nodetype" : "namednumber",
224
+ "number" : "2"
225
+ },
226
+ "frameTypeEither" : {
227
+ "nodetype" : "namednumber",
228
+ "number" : "3"
229
+ },
230
+ },
231
+ },
232
+ "access" : "readonly",
233
+ "description" :
234
+ """The type of framing this repeater is capable of
235
+ supporting.""",
236
+ "reference" :
237
+ """IEEE Standard 802.12-1995, 13.2.4.2.1,
238
+ aFramingCapability.""",
239
+ }, # column
240
+ "vgRptrInfoTrainingVersion" : {
241
+ "nodetype" : "column",
242
+ "moduleName" : "DOT12-RPTR-MIB",
243
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.6",
244
+ "status" : "current",
245
+ "syntax" : {
246
+ "type" : {
247
+ "basetype" : "Integer32",
248
+ "ranges" : [
249
+ {
250
+ "min" : "0",
251
+ "max" : "7"
252
+ },
253
+ ],
254
+ "range" : {
255
+ "min" : "0",
256
+ "max" : "7"
257
+ },
258
+ },
259
+ },
260
+ "access" : "readonly",
261
+ "description" :
262
+ """The highest version bits (vvv bits) supported by
263
+ the repeater during training.""",
264
+ "reference" :
265
+ """IEEE Standard 802.12-1995, 13.2.4.2.1,
266
+ aRMACVersion.""",
267
+ }, # column
268
+ "vgRptrInfoOperStatus" : {
269
+ "nodetype" : "column",
270
+ "moduleName" : "DOT12-RPTR-MIB",
271
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.7",
272
+ "status" : "current",
273
+ "syntax" : {
274
+ "type" : {
275
+ "basetype" : "Enumeration",
276
+ "other" : {
277
+ "nodetype" : "namednumber",
278
+ "number" : "1"
279
+ },
280
+ "ok" : {
281
+ "nodetype" : "namednumber",
282
+ "number" : "2"
283
+ },
284
+ "generalFailure" : {
285
+ "nodetype" : "namednumber",
286
+ "number" : "3"
287
+ },
288
+ },
289
+ },
290
+ "access" : "readonly",
291
+ "description" :
292
+ """The vgRptrInfoOperStatus object indicates the
293
+ operational state of the repeater.""",
294
+ "reference" :
295
+ """IEEE Standard 802.12-1995, 13.2.4.2.1,
296
+ aRepeaterHealthState.""",
297
+ }, # column
298
+ "vgRptrInfoReset" : {
299
+ "nodetype" : "column",
300
+ "moduleName" : "DOT12-RPTR-MIB",
301
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.8",
302
+ "status" : "current",
303
+ "syntax" : {
304
+ "type" : {
305
+ "basetype" : "Enumeration",
306
+ "noReset" : {
307
+ "nodetype" : "namednumber",
308
+ "number" : "1"
309
+ },
310
+ "reset" : {
311
+ "nodetype" : "namednumber",
312
+ "number" : "2"
313
+ },
314
+ },
315
+ },
316
+ "access" : "readwrite",
317
+ "description" :
318
+ """Setting this object to reset(2) causes the
319
+ repeater to transition to its initial state as
320
+ specified in clause 12 [IEEE Std 802.12].
321
+ Setting this object to noReset(1) has no effect.
322
+ The agent will always return the value noReset(1)
323
+ when this object is read.
324
+
325
+ After receiving a request to set this variable to
326
+ reset(2), the agent is allowed to delay the reset
327
+ for a short period. For example, the implementor
328
+ may choose to delay the reset long enough to
329
+ allow the SNMP response to be transmitted. In
330
+ any event, the SNMP response must be transmitted.
331
+
332
+ This action does not reset the management
333
+ counters defined in this document nor does it
334
+ affect the vgRptrPortAdminStatus parameters.
335
+ Included in this action is the execution of a
336
+ disruptive Self-Test with the following
337
+ characteristics:
338
+
339
+ 1) The nature of the tests is not specified.
340
+ 2) The test resets the repeater but without
341
+ affecting configurable management
342
+ information about the repeater.
343
+ 3) Packets received during the test may or
344
+ may not be transferred.
345
+ 4) The test does not interfere with
346
+ management functions.
347
+
348
+ After performing this self-test, the agent will
349
+ update the repeater health information (including
350
+ vgRptrInfoOperStatus), and send a
351
+ vgRptrResetEvent.""",
352
+ "reference" :
353
+ """IEEE Standard 802.12-1995, 13.2.4.2.2,
354
+ acResetRepeater.""",
355
+ }, # column
356
+ "vgRptrInfoLastChange" : {
357
+ "nodetype" : "column",
358
+ "moduleName" : "DOT12-RPTR-MIB",
359
+ "oid" : "1.3.6.1.2.1.53.1.1.1.1.1.9",
360
+ "status" : "current",
361
+ "syntax" : {
362
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
363
+ },
364
+ "access" : "readonly",
365
+ "description" :
366
+ """The value of sysUpTime when any of the following
367
+ conditions occurred:
368
+
369
+ 1) agent cold- or warm-started;
370
+ 2) this instance of repeater was created
371
+ (such as when a device or module was
372
+ added to the system);
373
+ 3) a change in the value of
374
+ vgRptrInfoOperStatus;
375
+ 4) ports were added or removed as members of
376
+ the repeater; or
377
+ 5) any of the counters associated with this
378
+ repeater had a discontinuity.""",
379
+ }, # column
380
+ "vgRptrBasicGroup" : {
381
+ "nodetype" : "node",
382
+ "moduleName" : "DOT12-RPTR-MIB",
383
+ "oid" : "1.3.6.1.2.1.53.1.1.2",
384
+ }, # node
385
+ "vgRptrBasicGroupTable" : {
386
+ "nodetype" : "table",
387
+ "moduleName" : "DOT12-RPTR-MIB",
388
+ "oid" : "1.3.6.1.2.1.53.1.1.2.1",
389
+ "status" : "current",
390
+ "description" :
391
+ """A table containing information about groups of
392
+ ports.""",
393
+ }, # table
394
+ "vgRptrBasicGroupEntry" : {
395
+ "nodetype" : "row",
396
+ "moduleName" : "DOT12-RPTR-MIB",
397
+ "oid" : "1.3.6.1.2.1.53.1.1.2.1.1",
398
+ "status" : "current",
399
+ "linkage" : [
400
+ "vgRptrGroupIndex",
401
+ ],
402
+ "description" :
403
+ """An entry in the vgRptrBasicGroupTable, containing
404
+ information about a single group of ports.""",
405
+ }, # row
406
+ "vgRptrGroupIndex" : {
407
+ "nodetype" : "column",
408
+ "moduleName" : "DOT12-RPTR-MIB",
409
+ "oid" : "1.3.6.1.2.1.53.1.1.2.1.1.1",
410
+ "status" : "current",
411
+ "syntax" : {
412
+ "type" : {
413
+ "basetype" : "Integer32",
414
+ "ranges" : [
415
+ {
416
+ "min" : "1",
417
+ "max" : "2146483647"
418
+ },
419
+ ],
420
+ "range" : {
421
+ "min" : "1",
422
+ "max" : "2146483647"
423
+ },
424
+ },
425
+ },
426
+ "access" : "noaccess",
427
+ "description" :
428
+ """This object identifies the group within the
429
+ system for which this entry contains information.
430
+ The numbering scheme for groups is implementation
431
+ specific.""",
432
+ "reference" :
433
+ """IEEE Standard 802.12-1995, 13.2.4.4.1,
434
+ aGroupID.""",
435
+ }, # column
436
+ "vgRptrGroupObjectID" : {
437
+ "nodetype" : "column",
438
+ "moduleName" : "DOT12-RPTR-MIB",
439
+ "oid" : "1.3.6.1.2.1.53.1.1.2.1.1.2",
440
+ "status" : "current",
441
+ "syntax" : {
442
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
443
+ },
444
+ "access" : "readonly",
445
+ "description" :
446
+ """The vendor's authoritative identification of the
447
+ group. This value may be allocated within the
448
+ SMI enterprises subtree (1.3.6.1.4.1) and
449
+ provides a straight-forward and unambiguous means
450
+ for determining what kind of group is being
451
+ managed.
452
+
453
+ For example, this object could take the value
454
+ 1.3.6.1.4.1.4242.1.2.14 if vendor 'Flintstones,
455
+ Inc.' was assigned the subtree 1.3.6.1.4.1.4242,
456
+ and had assigned the identifier
457
+ 1.3.6.1.4.1.4242.1.2.14 to its 'Wilma Flintstone
458
+ 6-Port Plug-in Module.'""",
459
+ }, # column
460
+ "vgRptrGroupOperStatus" : {
461
+ "nodetype" : "column",
462
+ "moduleName" : "DOT12-RPTR-MIB",
463
+ "oid" : "1.3.6.1.2.1.53.1.1.2.1.1.3",
464
+ "status" : "current",
465
+ "syntax" : {
466
+ "type" : {
467
+ "basetype" : "Enumeration",
468
+ "other" : {
469
+ "nodetype" : "namednumber",
470
+ "number" : "1"
471
+ },
472
+ "operational" : {
473
+ "nodetype" : "namednumber",
474
+ "number" : "2"
475
+ },
476
+ "malfunctioning" : {
477
+ "nodetype" : "namednumber",
478
+ "number" : "3"
479
+ },
480
+ "notPresent" : {
481
+ "nodetype" : "namednumber",
482
+ "number" : "4"
483
+ },
484
+ "underTest" : {
485
+ "nodetype" : "namednumber",
486
+ "number" : "5"
487
+ },
488
+ "resetInProgress" : {
489
+ "nodetype" : "namednumber",
490
+ "number" : "6"
491
+ },
492
+ },
493
+ },
494
+ "access" : "readonly",
495
+ "description" :
496
+ """An object that indicates the operational status
497
+ of the group.
498
+
499
+ A status of notPresent(4) indicates that the
500
+ group is temporarily or permanently physically
501
+ and/or logically not a part of the system. It
502
+ is an implementation-specific matter as to
503
+ whether the agent effectively removes notPresent
504
+ entries from the table.
505
+
506
+ A status of operational(2) indicates that the
507
+ group is functioning, and a status of
508
+ malfunctioning(3) indicates that the group is
509
+ malfunctioning in some way.""",
510
+ }, # column
511
+ "vgRptrGroupPortCapacity" : {
512
+ "nodetype" : "column",
513
+ "moduleName" : "DOT12-RPTR-MIB",
514
+ "oid" : "1.3.6.1.2.1.53.1.1.2.1.1.4",
515
+ "status" : "current",
516
+ "syntax" : {
517
+ "type" : {
518
+ "basetype" : "Integer32",
519
+ "ranges" : [
520
+ {
521
+ "min" : "1",
522
+ "max" : "2146483647"
523
+ },
524
+ ],
525
+ "range" : {
526
+ "min" : "1",
527
+ "max" : "2146483647"
528
+ },
529
+ },
530
+ },
531
+ "access" : "readonly",
532
+ "description" :
533
+ """The vgRptrGroupPortCapacity is the number of
534
+ ports that can be contained within the group.
535
+ Valid range is 1-2147483647. Within each group,
536
+ the ports are uniquely numbered in the range from
537
+ 1 to vgRptrGroupPortCapacity.
538
+
539
+ Some ports may not be present in the system, in
540
+ which case the actual number of ports present will
541
+ be less than the value of vgRptrGroupPortCapacity.
542
+ The number of ports present is never greater than
543
+ the value of vgRptrGroupPortCapacity.
544
+
545
+ Note: In practice, this will generally be the
546
+ number of ports on a module, card, or board, and
547
+ the port numbers will correspond to numbers marked
548
+ on the physical embodiment.""",
549
+ "reference" :
550
+ """IEEE Standard 802.12-1995, 13.2.4.4.1,
551
+ aGroupPortCapacity.""",
552
+ }, # column
553
+ "vgRptrGroupCablesBundled" : {
554
+ "nodetype" : "column",
555
+ "moduleName" : "DOT12-RPTR-MIB",
556
+ "oid" : "1.3.6.1.2.1.53.1.1.2.1.1.5",
557
+ "status" : "current",
558
+ "syntax" : {
559
+ "type" : {
560
+ "basetype" : "Enumeration",
561
+ "someCablesBundled" : {
562
+ "nodetype" : "namednumber",
563
+ "number" : "1"
564
+ },
565
+ "noCablesBundled" : {
566
+ "nodetype" : "namednumber",
567
+ "number" : "2"
568
+ },
569
+ },
570
+ },
571
+ "access" : "readwrite",
572
+ "description" :
573
+ """This object is used to indicate whether there are
574
+ any four-pair UTP links connected to this group
575
+ that are contained in a cable bundle with multiple
576
+ four-pair groups (e.g. a 25-pair bundle). Bundled
577
+ cable may only be used for repeater-to-end node
578
+ links where the end node is not in promiscuous
579
+ mode.
580
+
581
+ When a broadcast or multicast packet is received
582
+ from a port on this group that is not a
583
+ promiscuous or cascaded port, the packet will be
584
+ buffered completely before being repeated if
585
+ this object is set to 'someCablesBundled(1)'.
586
+ When this object is equal to 'noCablesBundled(2)',
587
+ all packets received from ports on this group will
588
+ be repeated as the frame is being received.
589
+
590
+ Note that the value 'someCablesBundled(1)' will
591
+ work in the vast majority of all installations,
592
+ regardless of whether or not any cables are
593
+ physically in a bundle, since packets received
594
+ from promiscuous and cascaded ports automatically
595
+ avoid the store and forward. The main situation
596
+ in which 'noCablesBundled(2)' is beneficial is
597
+ when there is a large amount of multicast traffic
598
+ and the cables are not in a bundle.
599
+
600
+ The value of this object should be preserved
601
+ across repeater resets and power failures.""",
602
+ "reference" :
603
+ """IEEE Standard 802.12-1995, 13.2.4.4.1,
604
+ aGroupCablesBundled.""",
605
+ }, # column
606
+ "vgRptrBasicPort" : {
607
+ "nodetype" : "node",
608
+ "moduleName" : "DOT12-RPTR-MIB",
609
+ "oid" : "1.3.6.1.2.1.53.1.1.3",
610
+ }, # node
611
+ "vgRptrBasicPortTable" : {
612
+ "nodetype" : "table",
613
+ "moduleName" : "DOT12-RPTR-MIB",
614
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1",
615
+ "status" : "current",
616
+ "description" :
617
+ """A table containing configuration and status
618
+ information about 802.12 repeater ports in the
619
+ system. The number of entries is independent of
620
+ the number of repeaters in the managed system.""",
621
+ }, # table
622
+ "vgRptrBasicPortEntry" : {
623
+ "nodetype" : "row",
624
+ "moduleName" : "DOT12-RPTR-MIB",
625
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1",
626
+ "status" : "current",
627
+ "linkage" : [
628
+ "vgRptrGroupIndex",
629
+ "vgRptrPortIndex",
630
+ ],
631
+ "description" :
632
+ """An entry in the vgRptrBasicPortTable, containing
633
+ information about a single port.""",
634
+ }, # row
635
+ "vgRptrPortIndex" : {
636
+ "nodetype" : "column",
637
+ "moduleName" : "DOT12-RPTR-MIB",
638
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.1",
639
+ "status" : "current",
640
+ "syntax" : {
641
+ "type" : {
642
+ "basetype" : "Integer32",
643
+ "ranges" : [
644
+ {
645
+ "min" : "1",
646
+ "max" : "2147483647"
647
+ },
648
+ ],
649
+ "range" : {
650
+ "min" : "1",
651
+ "max" : "2147483647"
652
+ },
653
+ },
654
+ },
655
+ "access" : "noaccess",
656
+ "description" :
657
+ """This object identifies the port within the group
658
+ for which this entry contains information. This
659
+ identifies the port independently from the
660
+ repeater it may be attached to. The numbering
661
+ scheme for ports is implementation specific;
662
+ however, this value can never be greater than
663
+ vgRptrGroupPortCapacity for the associated group.""",
664
+ "reference" :
665
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
666
+ aPortID.""",
667
+ }, # column
668
+ "vgRptrPortType" : {
669
+ "nodetype" : "column",
670
+ "moduleName" : "DOT12-RPTR-MIB",
671
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.2",
672
+ "status" : "current",
673
+ "syntax" : {
674
+ "type" : {
675
+ "basetype" : "Enumeration",
676
+ "cascadeExternal" : {
677
+ "nodetype" : "namednumber",
678
+ "number" : "1"
679
+ },
680
+ "cascadeInternal" : {
681
+ "nodetype" : "namednumber",
682
+ "number" : "2"
683
+ },
684
+ "localExternal" : {
685
+ "nodetype" : "namednumber",
686
+ "number" : "3"
687
+ },
688
+ "localInternal" : {
689
+ "nodetype" : "namednumber",
690
+ "number" : "4"
691
+ },
692
+ },
693
+ },
694
+ "access" : "readonly",
695
+ "description" :
696
+ """Describes the type of port. One of the
697
+ following:
698
+
699
+ cascadeExternal - Port is an uplink with
700
+ physical connections which
701
+ are externally visible
702
+ cascadeInternal - Port is an uplink with
703
+ physical connections which
704
+ are not externally visible,
705
+ such as a connection to an
706
+ internal backplane in a
707
+ chassis
708
+ localExternal - Port is a downlink or local
709
+ port with externally
710
+ visible connections
711
+ localInternal - Port is a downlink or local
712
+ port with connections which
713
+ are not externally visible,
714
+ such as a connection to an
715
+ internal agent
716
+
717
+ 'internal' is used to identify ports which place
718
+ traffic into the repeater, but do not have any
719
+ external connections. Note that both DTE and
720
+ cascaded repeater downlinks are considered
721
+ 'local' ports.""",
722
+ "reference" :
723
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
724
+ aPortType.""",
725
+ }, # column
726
+ "vgRptrPortAdminStatus" : {
727
+ "nodetype" : "column",
728
+ "moduleName" : "DOT12-RPTR-MIB",
729
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.3",
730
+ "status" : "current",
731
+ "syntax" : {
732
+ "type" : {
733
+ "basetype" : "Enumeration",
734
+ "enabled" : {
735
+ "nodetype" : "namednumber",
736
+ "number" : "1"
737
+ },
738
+ "disabled" : {
739
+ "nodetype" : "namednumber",
740
+ "number" : "2"
741
+ },
742
+ },
743
+ },
744
+ "access" : "readwrite",
745
+ "description" :
746
+ """Port enable/disable function. Enabling a
747
+ disabled port will cause training to be
748
+ initiated by the training initiator (the slave
749
+ mode device) on the link. Setting this object to
750
+ disabled(2) disables the port.
751
+
752
+ A disabled port neither transmits nor receives.
753
+ Once disabled, a port must be explicitly enabled
754
+ to restore operation. A port which is disabled
755
+ when power is lost or when a reset is exerted
756
+ shall remain disabled when normal operation
757
+ resumes.
758
+
759
+ The value of this object should be preserved
760
+ across repeater resets and power failures.""",
761
+ "reference" :
762
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
763
+ aPortAdministrativeState.""",
764
+ }, # column
765
+ "vgRptrPortOperStatus" : {
766
+ "nodetype" : "column",
767
+ "moduleName" : "DOT12-RPTR-MIB",
768
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.4",
769
+ "status" : "current",
770
+ "syntax" : {
771
+ "type" : {
772
+ "basetype" : "Enumeration",
773
+ "active" : {
774
+ "nodetype" : "namednumber",
775
+ "number" : "1"
776
+ },
777
+ "inactive" : {
778
+ "nodetype" : "namednumber",
779
+ "number" : "2"
780
+ },
781
+ "training" : {
782
+ "nodetype" : "namednumber",
783
+ "number" : "3"
784
+ },
785
+ },
786
+ },
787
+ "access" : "readonly",
788
+ "description" :
789
+ """Current status for the port as specified by the
790
+ PORT_META_STATE in the port process module of
791
+ clause 12 [IEEE Std 802.12].
792
+
793
+ During initialization or any link warning
794
+ conditions, vgRptrPortStatus will be
795
+ 'inactive(2)'.
796
+
797
+ When Training_Up is received by the repeater on a
798
+ local port (or when Training_Down is received on
799
+ a cascade port), vgRptrPortStatus will change to
800
+ 'training(3)' and vgRptrTrainingResult can be
801
+ monitored to see the detailed status regarding
802
+ training.
803
+
804
+ When 24 consecutive good FCS packets are exchanged
805
+ and the configuration bits are OK,
806
+ vgRptrPortStatus will change to 'active(1)'.
807
+
808
+ A disabled port shall have a port status of
809
+ 'inactive(2)'.""",
810
+ "reference" :
811
+ """IEEE Standard 802.12, 13.2.4.5.1,
812
+ aPortStatus.""",
813
+ }, # column
814
+ "vgRptrPortSupportedPromiscMode" : {
815
+ "nodetype" : "column",
816
+ "moduleName" : "DOT12-RPTR-MIB",
817
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.5",
818
+ "status" : "current",
819
+ "syntax" : {
820
+ "type" : {
821
+ "basetype" : "Enumeration",
822
+ "singleModeOnly" : {
823
+ "nodetype" : "namednumber",
824
+ "number" : "1"
825
+ },
826
+ "singleOrPromiscMode" : {
827
+ "nodetype" : "namednumber",
828
+ "number" : "2"
829
+ },
830
+ "promiscModeOnly" : {
831
+ "nodetype" : "namednumber",
832
+ "number" : "3"
833
+ },
834
+ },
835
+ },
836
+ "access" : "readonly",
837
+ "description" :
838
+ """This object describes whether the port hardware
839
+ is capable of supporting promiscuous mode, single
840
+ address mode (i.e., repeater filters unicasts not
841
+ addressed to the end station attached to this
842
+ port), or both. A port for which vgRptrPortType
843
+ is equal to 'cascadeInternal' or 'cascadeExternal'
844
+ will always have a value of 'promiscModeOnly' for
845
+ this object.""",
846
+ "reference" :
847
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
848
+ aSupportedPromiscMode.""",
849
+ }, # column
850
+ "vgRptrPortSupportedCascadeMode" : {
851
+ "nodetype" : "column",
852
+ "moduleName" : "DOT12-RPTR-MIB",
853
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.6",
854
+ "status" : "current",
855
+ "syntax" : {
856
+ "type" : {
857
+ "basetype" : "Enumeration",
858
+ "endNodesOnly" : {
859
+ "nodetype" : "namednumber",
860
+ "number" : "1"
861
+ },
862
+ "endNodesOrRepeaters" : {
863
+ "nodetype" : "namednumber",
864
+ "number" : "2"
865
+ },
866
+ "cascadePort" : {
867
+ "nodetype" : "namednumber",
868
+ "number" : "3"
869
+ },
870
+ },
871
+ },
872
+ "access" : "readonly",
873
+ "description" :
874
+ """This object describes whether the port hardware
875
+ is capable of supporting cascaded repeaters, end
876
+ nodes, or both. A port for which vgRptrPortType
877
+ is equal to 'cascadeInternal' or
878
+ 'cascadeExternal' will always have a value of
879
+ 'cascadePort' for this object.""",
880
+ "reference" :
881
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
882
+ aSupportedCascadeMode.""",
883
+ }, # column
884
+ "vgRptrPortAllowedTrainType" : {
885
+ "nodetype" : "column",
886
+ "moduleName" : "DOT12-RPTR-MIB",
887
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.7",
888
+ "status" : "current",
889
+ "syntax" : {
890
+ "type" : {
891
+ "basetype" : "Enumeration",
892
+ "allowEndNodesOnly" : {
893
+ "nodetype" : "namednumber",
894
+ "number" : "1"
895
+ },
896
+ "allowPromiscuousEndNodes" : {
897
+ "nodetype" : "namednumber",
898
+ "number" : "2"
899
+ },
900
+ "allowEndNodesOrRepeaters" : {
901
+ "nodetype" : "namednumber",
902
+ "number" : "3"
903
+ },
904
+ "allowAnything" : {
905
+ "nodetype" : "namednumber",
906
+ "number" : "4"
907
+ },
908
+ },
909
+ },
910
+ "access" : "readwrite",
911
+ "description" :
912
+ """This security object is set by the network
913
+ manager to configure what type of device is
914
+ permitted to connect to the port. One of the
915
+ following values:
916
+ allowEndNodesOnly - only non-
917
+ promiscuous end
918
+ nodes permitted.
919
+ allowPromiscuousEndNodes - promiscuous or
920
+ non-promiscuous
921
+ end nodes
922
+ permitted
923
+ allowEndNodesOrRepeaters - repeaters or non-
924
+ promiscuous end
925
+ nodes permitted
926
+ allowAnything - repeaters,
927
+ promiscuous or
928
+ non-promiscuous
929
+ end nodes
930
+ permitted
931
+
932
+ For a port for which vgRptrPortType is equal to
933
+ 'cascadeInternal' or 'cascadeExternal', the
934
+ corresponding instance of this object may not be
935
+ set to 'allowEndNodesOnly' or
936
+ 'allowPromiscuousEndNodes'.
937
+
938
+ The agent must reject a SET of this object if the
939
+ value includes no capabilities that are
940
+ supported by this port's hardware, as defined by
941
+ the values of the corresponding instances of
942
+ vgRptrPortSupportedPromiscMode and
943
+ vgRptrPortSupportedCascadeMode.
944
+
945
+ Note that vgRptrPortSupportPromiscMode and
946
+ vgRptrPortSupportedCascadeMode represent what the
947
+ port hardware is capable of supporting.
948
+ vgRptrPortAllowedTrainType is used for setting an
949
+ administrative policy for a port. The actual set
950
+ of training configurations that will be allowed
951
+ to succeed on a port is the intersection of what
952
+ the hardware will support and what is
953
+ administratively allowed. The above requirement
954
+ on what values may be set to this object says that
955
+ the intersection of what is supported and what is
956
+ allowed must be non-empty. In other words, it
957
+ must not result in a situation in which nothing
958
+ would be allowed to train on that port. However,
959
+ a value can be set to this object as long as the
960
+ combination of this object and what is supported
961
+ by the hardware would still leave at least one
962
+ configuration that could successfully train on the
963
+ port.
964
+ The value of this object should be preserved
965
+ across repeater resets and power failures.""",
966
+ "reference" :
967
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
968
+ aAllowableTrainingType.""",
969
+ }, # column
970
+ "vgRptrPortLastTrainConfig" : {
971
+ "nodetype" : "column",
972
+ "moduleName" : "DOT12-RPTR-MIB",
973
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.8",
974
+ "status" : "current",
975
+ "syntax" : {
976
+ "type" : {
977
+ "basetype" : "OctetString",
978
+ "ranges" : [
979
+ {
980
+ "min" : "2",
981
+ "max" : "2"
982
+ },
983
+ ],
984
+ "range" : {
985
+ "min" : "2",
986
+ "max" : "2"
987
+ },
988
+ },
989
+ },
990
+ "access" : "readonly",
991
+ "description" :
992
+ """This object is a 16 bit field. For local ports,
993
+ this object contains the requested configuration
994
+ field from the most recent error-free training
995
+ request frame sent by the device connected to
996
+ the port. For cascade ports, this object contains
997
+ the responder's allowed configuration field from
998
+ the most recent error-free training response frame
999
+ received in response to training initiated by this
1000
+ repeater. The format of the current version of
1001
+ this field is described in section 3.2. Please
1002
+ refer to the most recent version of the IEEE
1003
+ 802.12 standard for the most up-to-date definition
1004
+ of the format of this object.""",
1005
+ "reference" :
1006
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1007
+ aLastTrainingConfig.""",
1008
+ }, # column
1009
+ "vgRptrPortTrainingResult" : {
1010
+ "nodetype" : "column",
1011
+ "moduleName" : "DOT12-RPTR-MIB",
1012
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.9",
1013
+ "status" : "current",
1014
+ "syntax" : {
1015
+ "type" : {
1016
+ "basetype" : "OctetString",
1017
+ "ranges" : [
1018
+ {
1019
+ "min" : "3",
1020
+ "max" : "3"
1021
+ },
1022
+ ],
1023
+ "range" : {
1024
+ "min" : "3",
1025
+ "max" : "3"
1026
+ },
1027
+ },
1028
+ },
1029
+ "access" : "readonly",
1030
+ "description" :
1031
+ """This 18 bit field is used to indicate the result
1032
+ of training. It contains two bits which indicate
1033
+ if error-free training frames have been received,
1034
+ and it also contains the 16 bits of the allowed
1035
+ configuration field from the most recent
1036
+ error-free training response frame on the port.
1037
+
1038
+ First Octet: Second and Third Octets:
1039
+ 7 6 5 4 3 2 1 0
1040
+ +-+-+-+-+-+-+-+-+-----------------------------+
1041
+ |0|0|0|0|0|0|V|G| allowed configuration field |
1042
+ +-+-+-+-+-+-+-+-+-----------------------------+
1043
+ V: Valid: set when at least one error-free
1044
+ training frame has been received.
1045
+ Indicates the 16 training configuration
1046
+ bits in vgRptrPortLastTrainConfig and
1047
+ vgRptrPortTrainingResult contain valid
1048
+ information. This bit is cleared when
1049
+ vgRptrPortStatus transitions to the
1050
+ 'inactive' or 'training' state.
1051
+ G: LinkGood: indicates the link hardware is
1052
+ OK. Set if 24 consecutive error-free
1053
+ training packets have been exchanged.
1054
+ Cleared when a training packet with
1055
+ errors is received, or when
1056
+ vgRptrPortStatus transitions to the
1057
+ 'inactive' or 'training' state.
1058
+
1059
+ The format of the current version of the allowed
1060
+ configuration field is described in section 3.2.
1061
+ Please refer to the most recent version of the
1062
+ IEEE 802.12 standard for the most up-to-date
1063
+ definition of the format of this field.
1064
+
1065
+ If the port is in training, a management station
1066
+ can examine this object to see if any training
1067
+ packets have been passed successfully. If there
1068
+ have been any good training packets, the Valid
1069
+ bit will be set and the management station can
1070
+ examine the allowed configuration field to see if
1071
+ there is a duplicate address, configuration, or
1072
+ security problem.
1073
+
1074
+ Note that on a repeater local port, this repeater
1075
+ generates the training response bits, while on
1076
+ a cascade port, the device at the upper end of
1077
+ the link originated the training response bits.""",
1078
+ "reference" :
1079
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1080
+ aTrainingResult.""",
1081
+ }, # column
1082
+ "vgRptrPortPriorityEnable" : {
1083
+ "nodetype" : "column",
1084
+ "moduleName" : "DOT12-RPTR-MIB",
1085
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.10",
1086
+ "status" : "current",
1087
+ "syntax" : {
1088
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1089
+ },
1090
+ "access" : "readwrite",
1091
+ "description" :
1092
+ """A configuration flag used to determine whether
1093
+ the repeater will service high priority requests
1094
+ received on the port as high priority or normal
1095
+ priority. When 'false', high priority requests
1096
+ on this port will be serviced as normal priority.
1097
+
1098
+ The setting of this object has no effect on a
1099
+ cascade port. Also note that the setting of this
1100
+ object has no effect on a port connected to a
1101
+ cascaded repeater. In both of these cases, this
1102
+ setting is treated as always 'true'. The value
1103
+ 'false' only has an effect when the port is a
1104
+ localInternal or localExternal port connected to
1105
+ an end node.
1106
+
1107
+ The value of this object should be preserved
1108
+ across repeater resets and power failures.""",
1109
+ "reference" :
1110
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1111
+ aPriorityEnable.""",
1112
+ }, # column
1113
+ "vgRptrPortRptrInfoIndex" : {
1114
+ "nodetype" : "column",
1115
+ "moduleName" : "DOT12-RPTR-MIB",
1116
+ "oid" : "1.3.6.1.2.1.53.1.1.3.1.1.11",
1117
+ "status" : "current",
1118
+ "syntax" : {
1119
+ "type" : {
1120
+ "basetype" : "Integer32",
1121
+ "ranges" : [
1122
+ {
1123
+ "min" : "0",
1124
+ "max" : "2147483647"
1125
+ },
1126
+ ],
1127
+ "range" : {
1128
+ "min" : "0",
1129
+ "max" : "2147483647"
1130
+ },
1131
+ },
1132
+ },
1133
+ "access" : "readonly",
1134
+ "description" :
1135
+ """This object identifies the repeater that this
1136
+ port is currently mapped to. The repeater
1137
+ identified by a particular value of this object
1138
+ is the same as that identified by the same value
1139
+ of vgRptrInfoIndex. A value of zero indicates
1140
+ that this port is not currently mapped to any
1141
+ repeater.""",
1142
+ }, # column
1143
+ "vgRptrMonitor" : {
1144
+ "nodetype" : "node",
1145
+ "moduleName" : "DOT12-RPTR-MIB",
1146
+ "oid" : "1.3.6.1.2.1.53.1.2",
1147
+ }, # node
1148
+ "vgRptrMonRepeater" : {
1149
+ "nodetype" : "node",
1150
+ "moduleName" : "DOT12-RPTR-MIB",
1151
+ "oid" : "1.3.6.1.2.1.53.1.2.1",
1152
+ }, # node
1153
+ "vgRptrMonitorTable" : {
1154
+ "nodetype" : "table",
1155
+ "moduleName" : "DOT12-RPTR-MIB",
1156
+ "oid" : "1.3.6.1.2.1.53.1.2.1.1",
1157
+ "status" : "current",
1158
+ "description" :
1159
+ """A table of performance and error statistics for
1160
+ each repeater in the system. The instance of the
1161
+ vgRptrInfoLastChange associated with a repeater
1162
+ is used to indicate possible discontinuities of
1163
+ the counters in this table that are associated
1164
+ with the same repeater.""",
1165
+ }, # table
1166
+ "vgRptrMonitorEntry" : {
1167
+ "nodetype" : "row",
1168
+ "moduleName" : "DOT12-RPTR-MIB",
1169
+ "oid" : "1.3.6.1.2.1.53.1.2.1.1.1",
1170
+ "status" : "current",
1171
+ "linkage" : [
1172
+ "vgRptrInfoIndex",
1173
+ ],
1174
+ "description" :
1175
+ """An entry in the table, containing statistics
1176
+ for a single repeater.""",
1177
+ }, # row
1178
+ "vgRptrMonTotalReadableFrames" : {
1179
+ "nodetype" : "column",
1180
+ "moduleName" : "DOT12-RPTR-MIB",
1181
+ "oid" : "1.3.6.1.2.1.53.1.2.1.1.1.1",
1182
+ "status" : "current",
1183
+ "syntax" : {
1184
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1185
+ },
1186
+ "access" : "readonly",
1187
+ "description" :
1188
+ """The total number of good frames of valid frame
1189
+ length that have been received on all ports in
1190
+ this repeater. If an implementation cannot
1191
+ obtain a count of frames as seen by the repeater
1192
+ itself, this counter may be implemented as the
1193
+ summation of the values of the
1194
+ vgRptrPortReadableFrames counters for all of the
1195
+ ports in this repeater.
1196
+
1197
+ This counter may experience a discontinuity when
1198
+ the value of the corresponding instance of
1199
+ vgRptrInfoLastChange changes.""",
1200
+ }, # column
1201
+ "vgRptrMonTotalReadableOctets" : {
1202
+ "nodetype" : "column",
1203
+ "moduleName" : "DOT12-RPTR-MIB",
1204
+ "oid" : "1.3.6.1.2.1.53.1.2.1.1.1.2",
1205
+ "status" : "current",
1206
+ "syntax" : {
1207
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1208
+ },
1209
+ "access" : "readonly",
1210
+ "description" :
1211
+ """The total number of octets contained in good
1212
+ frames that have been received on all ports in
1213
+ this repeater. If an implementation cannot
1214
+ obtain a count of octets as seen by the repeater
1215
+ itself, this counter may be implemented as the
1216
+ summation of the values of the
1217
+ vgRptrPortReadableOctets counters for all of the
1218
+ ports in this repeater.
1219
+
1220
+ Note that this counter can roll over very
1221
+ quickly. A management station is advised to
1222
+ also poll the vgRptrReadableOctetRollovers
1223
+ object, or to use the 64-bit counter defined by
1224
+ vgRptrMonHCTotalReadableOctets instead of the
1225
+ two 32-bit counters.
1226
+
1227
+ This two-counter mechanism is provided for those
1228
+ network management protocols that do not support
1229
+ 64-bit counters (e.g. SNMPv1). Note that
1230
+ retrieval of these two counters in the same PDU
1231
+ is NOT guaranteed to be atomic.
1232
+
1233
+ This counter may experience a discontinuity when
1234
+ the value of the corresponding instance of
1235
+ vgRptrInfoLastChange changes.""",
1236
+ }, # column
1237
+ "vgRptrMonReadableOctetRollovers" : {
1238
+ "nodetype" : "column",
1239
+ "moduleName" : "DOT12-RPTR-MIB",
1240
+ "oid" : "1.3.6.1.2.1.53.1.2.1.1.1.3",
1241
+ "status" : "current",
1242
+ "syntax" : {
1243
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1244
+ },
1245
+ "access" : "readonly",
1246
+ "description" :
1247
+ """The total number of times that the associated
1248
+ instance of the vgRptrMonTotalReadableOctets
1249
+ counter has rolled over.
1250
+
1251
+ This two-counter mechanism is provided for those
1252
+ network management protocols that do not support
1253
+ 64-bit counters (e.g. SNMPv1). Note that
1254
+ retrieval of these two counters in the same PDU
1255
+ is NOT guaranteed to be atomic.
1256
+
1257
+ This counter may experience a discontinuity when
1258
+ the value of the corresponding instance of
1259
+ vgRptrInfoLastChange changes.""",
1260
+ }, # column
1261
+ "vgRptrMonHCTotalReadableOctets" : {
1262
+ "nodetype" : "column",
1263
+ "moduleName" : "DOT12-RPTR-MIB",
1264
+ "oid" : "1.3.6.1.2.1.53.1.2.1.1.1.4",
1265
+ "status" : "current",
1266
+ "syntax" : {
1267
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1268
+ },
1269
+ "access" : "readonly",
1270
+ "description" :
1271
+ """The total number of octets contained in good
1272
+ frames that have been received on all ports in
1273
+ this repeater. If an implementation cannot
1274
+ obtain a count of octets as seen by the repeater
1275
+ itself, this counter may be implemented as the
1276
+ summation of the values of the
1277
+ vgRptrPortHCReadableOctets counters for all of the
1278
+ ports in this repeater.
1279
+
1280
+ This counter is a 64 bit version of
1281
+ vgRptrMonTotalReadableOctets. It should be used
1282
+ by Network Management protocols which support 64
1283
+ bit counters (e.g. SNMPv2).
1284
+
1285
+ This counter may experience a discontinuity when
1286
+ the value of the corresponding instance of
1287
+ vgRptrInfoLastChange changes.""",
1288
+ }, # column
1289
+ "vgRptrMonTotalErrors" : {
1290
+ "nodetype" : "column",
1291
+ "moduleName" : "DOT12-RPTR-MIB",
1292
+ "oid" : "1.3.6.1.2.1.53.1.2.1.1.1.5",
1293
+ "status" : "current",
1294
+ "syntax" : {
1295
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1296
+ },
1297
+ "access" : "readonly",
1298
+ "description" :
1299
+ """The total number of errors which have occurred on
1300
+ all of the ports in this repeater. If an
1301
+ implementation cannot obtain a count of these
1302
+ errors as seen by the repeater itself, this
1303
+ counter may be implemented as the summation of the
1304
+ values of the vgRptrPortIPMFrames,
1305
+ vgRptrPortOversizeFrames, and
1306
+ vgRptrPortDataErrorFrames counters for all of the
1307
+ ports in this repeater.
1308
+
1309
+ This counter may experience a discontinuity when
1310
+ the value of the corresponding instance of
1311
+ vgRptrInfoLastChange changes.""",
1312
+ }, # column
1313
+ "vgRptrMonGroup" : {
1314
+ "nodetype" : "node",
1315
+ "moduleName" : "DOT12-RPTR-MIB",
1316
+ "oid" : "1.3.6.1.2.1.53.1.2.2",
1317
+ }, # node
1318
+ "vgRptrMonPort" : {
1319
+ "nodetype" : "node",
1320
+ "moduleName" : "DOT12-RPTR-MIB",
1321
+ "oid" : "1.3.6.1.2.1.53.1.2.3",
1322
+ }, # node
1323
+ "vgRptrMonPortTable" : {
1324
+ "nodetype" : "table",
1325
+ "moduleName" : "DOT12-RPTR-MIB",
1326
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1",
1327
+ "status" : "current",
1328
+ "description" :
1329
+ """A table of performance and error statistics for
1330
+ the ports. The columnar object
1331
+ vgRptrPortLastChange is used to indicate possible
1332
+ discontinuities of counter type columnar objects
1333
+ in this table.""",
1334
+ }, # table
1335
+ "vgRptrMonPortEntry" : {
1336
+ "nodetype" : "row",
1337
+ "moduleName" : "DOT12-RPTR-MIB",
1338
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1",
1339
+ "status" : "current",
1340
+ "linkage" : [
1341
+ "vgRptrGroupIndex",
1342
+ "vgRptrPortIndex",
1343
+ ],
1344
+ "description" :
1345
+ """An entry in the vgRptrMonPortTable, containing
1346
+ performance and error statistics for a single
1347
+ port.""",
1348
+ }, # row
1349
+ "vgRptrPortReadableFrames" : {
1350
+ "nodetype" : "column",
1351
+ "moduleName" : "DOT12-RPTR-MIB",
1352
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.1",
1353
+ "status" : "current",
1354
+ "syntax" : {
1355
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1356
+ },
1357
+ "access" : "readonly",
1358
+ "description" :
1359
+ """This object is the number of good frames of
1360
+ valid frame length that have been received on
1361
+ this port. This counter is incremented by one
1362
+ for each frame received on the port which is not
1363
+ counted by any of the following error counters:
1364
+ vgRptrPortIPMFrames, vgRptrPortOversizeFrames,
1365
+ vgRptrPortNullAddressedFrames, or
1366
+ vgRptrPortDataErrorFrames.
1367
+
1368
+ This counter may experience a discontinuity when
1369
+ the value of the corresponding instance of
1370
+ vgRptrPortLastChange changes.""",
1371
+ "reference" :
1372
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1373
+ aReadableFramesReceived.""",
1374
+ }, # column
1375
+ "vgRptrPortReadableOctets" : {
1376
+ "nodetype" : "column",
1377
+ "moduleName" : "DOT12-RPTR-MIB",
1378
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.2",
1379
+ "status" : "current",
1380
+ "syntax" : {
1381
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1382
+ },
1383
+ "access" : "readonly",
1384
+ "description" :
1385
+ """This object is a count of the number of octets
1386
+ contained in good frames that have been received
1387
+ on this port. This counter is incremented by
1388
+ OctetCount for each frame received on this port
1389
+ which has been determined to be a readable frame
1390
+ (i.e. each frame counted by
1391
+ vgRptrPortReadableFrames).
1392
+
1393
+ Note that this counter can roll over very
1394
+ quickly. A management station is advised to
1395
+ also poll the vgRptrPortReadOctetRollovers
1396
+ object, or to use the 64-bit counter defined by
1397
+ vgRptrPortHCReadableOctets instead of the two
1398
+ 32-bit counters.
1399
+
1400
+ This two-counter mechanism is provided for those
1401
+ network management protocols that do not support
1402
+ 64-bit counters (e.g. SNMPv1). Note that
1403
+ retrieval of these two counters in the same PDU
1404
+ is NOT guaranteed to be atomic.
1405
+ This counter may experience a discontinuity when
1406
+ the value of the corresponding instance of
1407
+ vgRptrPortLastChange changes.""",
1408
+ "reference" :
1409
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1410
+ aReadableOctetsReceived.""",
1411
+ }, # column
1412
+ "vgRptrPortReadOctetRollovers" : {
1413
+ "nodetype" : "column",
1414
+ "moduleName" : "DOT12-RPTR-MIB",
1415
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.3",
1416
+ "status" : "current",
1417
+ "syntax" : {
1418
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1419
+ },
1420
+ "access" : "readonly",
1421
+ "description" :
1422
+ """This object is a count of the number of times
1423
+ that the associated instance of the
1424
+ vgRptrPortReadableOctets counter has rolled over.
1425
+
1426
+ This two-counter mechanism is provided for those
1427
+ network management protocols that do not support
1428
+ 64-bit counters (e.g. SNMPv1). Note that
1429
+ retrieval of these two counters in the same PDU
1430
+ is NOT guaranteed to be atomic.
1431
+
1432
+ This counter may experience a discontinuity when
1433
+ the value of the corresponding instance of
1434
+ vgRptrPortLastChange changes.""",
1435
+ "reference" :
1436
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1437
+ aReadableOctetsReceived.""",
1438
+ }, # column
1439
+ "vgRptrPortHCReadableOctets" : {
1440
+ "nodetype" : "column",
1441
+ "moduleName" : "DOT12-RPTR-MIB",
1442
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.4",
1443
+ "status" : "current",
1444
+ "syntax" : {
1445
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1446
+ },
1447
+ "access" : "readonly",
1448
+ "description" :
1449
+ """This object is a count of the number of octets
1450
+ contained in good frames that have been received
1451
+ on this port. This counter is incremented by
1452
+ OctetCount for each frame received on this port
1453
+ which has been determined to be a readable frame
1454
+ (i.e. each frame counted by
1455
+ vgRptrPortReadableFrames).
1456
+
1457
+ This counter is a 64 bit version of
1458
+ vgRptrPortReadableOctets. It should be used by
1459
+ Network Management protocols which support 64 bit
1460
+ counters (e.g. SNMPv2).
1461
+ This counter may experience a discontinuity when
1462
+ the value of the corresponding instance of
1463
+ vgRptrPortLastChange changes.""",
1464
+ "reference" :
1465
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1466
+ aReadableOctetsReceived.""",
1467
+ }, # column
1468
+ "vgRptrPortUnreadableOctets" : {
1469
+ "nodetype" : "column",
1470
+ "moduleName" : "DOT12-RPTR-MIB",
1471
+ "oid" : "1.3.6.1.2.1.53.1.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 object is a count of the number of octets
1479
+ contained in invalid frames that have been
1480
+ received on this port. This counter is
1481
+ incremented by OctetCount for each frame received
1482
+ on this port which is counted by
1483
+ vgRptrPortIPMFrames, vgRptrPortOversizeFrames,
1484
+ vgRptrPortNullAddressedFrames, or
1485
+ vgRptrPortDataErrorFrames. This counter can be
1486
+ combined with vgRptrPortReadableOctets to
1487
+ calculate network utilization.
1488
+
1489
+ Note that this counter can roll over very
1490
+ quickly. A management station is advised to
1491
+ also poll the vgRptrPortUnreadOctetRollovers
1492
+ object, or to use the 64-bit counter defined by
1493
+ vgRptrPortHCUnreadableOctets instead of the two
1494
+ 32-bit counters.
1495
+
1496
+ This two-counter mechanism is provided for those
1497
+ network management protocols that do not support
1498
+ 64-bit counters (e.g. SNMPv1). Note that
1499
+ retrieval of these two counters in the same PDU
1500
+ is NOT guaranteed to be atomic.
1501
+
1502
+ This counter may experience a discontinuity when
1503
+ the value of the corresponding instance of
1504
+ vgRptrPortLastChange changes.""",
1505
+ "reference" :
1506
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1507
+ aOctetsInUnreadableFramesRcvd.""",
1508
+ }, # column
1509
+ "vgRptrPortUnreadOctetRollovers" : {
1510
+ "nodetype" : "column",
1511
+ "moduleName" : "DOT12-RPTR-MIB",
1512
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.6",
1513
+ "status" : "current",
1514
+ "syntax" : {
1515
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1516
+ },
1517
+ "access" : "readonly",
1518
+ "description" :
1519
+ """This object is a count of the number of times
1520
+ that the associated instance of the
1521
+ vgRptrPortUnreadableOctets counter has rolled
1522
+ over.
1523
+
1524
+ This two-counter mechanism is provided for those
1525
+ network management protocols that do not support
1526
+ 64-bit counters (e.g. SNMPv1). Note that
1527
+ retrieval of these two counters in the same PDU
1528
+ is NOT guaranteed to be atomic.
1529
+
1530
+ This counter may experience a discontinuity when
1531
+ the value of the corresponding instance of
1532
+ vgRptrPortLastChange changes.""",
1533
+ "reference" :
1534
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1535
+ aOctetsInUnreadableFramesRcvd.""",
1536
+ }, # column
1537
+ "vgRptrPortHCUnreadableOctets" : {
1538
+ "nodetype" : "column",
1539
+ "moduleName" : "DOT12-RPTR-MIB",
1540
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.7",
1541
+ "status" : "current",
1542
+ "syntax" : {
1543
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1544
+ },
1545
+ "access" : "readonly",
1546
+ "description" :
1547
+ """This object is a count of the number of octets
1548
+ contained in invalid frames that have been
1549
+ received on this port. This counter is
1550
+ incremented by OctetCount for each frame received
1551
+ on this port which is counted by
1552
+ vgRptrPortIPMFrames, vgRptrPortOversizeFrames,
1553
+ vgRptrPortNullAddressedFrames, or
1554
+ vgRptrPortDataErrorFrames. This counter can be
1555
+ combined with vgRptrPortHCReadableOctets to
1556
+ calculate network utilization.
1557
+
1558
+ This counter is a 64 bit version of
1559
+ vgRptrPortUnreadableOctets. It should be used
1560
+ by Network Management protocols which support 64
1561
+ bit counters (e.g. SNMPv2).
1562
+
1563
+ This counter may experience a discontinuity when
1564
+ the value of the corresponding instance of
1565
+ vgRptrPortLastChange changes.""",
1566
+ "reference" :
1567
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1568
+ aOctetsInUnreadableFramesRcvd.""",
1569
+ }, # column
1570
+ "vgRptrPortHighPriorityFrames" : {
1571
+ "nodetype" : "column",
1572
+ "moduleName" : "DOT12-RPTR-MIB",
1573
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.8",
1574
+ "status" : "current",
1575
+ "syntax" : {
1576
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1577
+ },
1578
+ "access" : "readonly",
1579
+ "description" :
1580
+ """This object is a count of high priority frames
1581
+ that have been received on this port. This
1582
+ counter is incremented by one for each high
1583
+ priority frame received on this port. This
1584
+ counter includes both good and bad high priority
1585
+ frames, as well as high priority training frames.
1586
+ This counter does not include normal priority
1587
+ frames which were priority promoted.
1588
+
1589
+ This counter may experience a discontinuity when
1590
+ the value of the corresponding instance of
1591
+ vgRptrPortLastChange changes.""",
1592
+ "reference" :
1593
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1594
+ aHighPriorityFramesReceived.""",
1595
+ }, # column
1596
+ "vgRptrPortHighPriorityOctets" : {
1597
+ "nodetype" : "column",
1598
+ "moduleName" : "DOT12-RPTR-MIB",
1599
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.9",
1600
+ "status" : "current",
1601
+ "syntax" : {
1602
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1603
+ },
1604
+ "access" : "readonly",
1605
+ "description" :
1606
+ """This object is a count of the number of octets
1607
+ contained in high priority frames that have been
1608
+ received on this port. This counter is
1609
+ incremented by OctetCount for each frame received
1610
+ on this port which is counted by
1611
+ vgRptrPortHighPriorityFrames.
1612
+
1613
+ Note that this counter can roll over very
1614
+ quickly. A management station is advised to
1615
+ also poll the vgRptrPortHighPriOctetRollovers
1616
+ object, or to use the 64-bit counter defined by
1617
+ vgRptrPortHCHighPriorityOctets instead of the two
1618
+ 32-bit counters.
1619
+
1620
+ This two-counter mechanism is provided for those
1621
+ network management protocols that do not support
1622
+ 64-bit counters (e.g. SNMPv1). Note that
1623
+ retrieval of these two counters in the same PDU
1624
+ is NOT guaranteed to be atomic.
1625
+ This counter may experience a discontinuity when
1626
+ the value of the corresponding instance of
1627
+ vgRptrPortLastChange changes.""",
1628
+ "reference" :
1629
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1630
+ aHighPriorityOctetsReceived.""",
1631
+ }, # column
1632
+ "vgRptrPortHighPriOctetRollovers" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "DOT12-RPTR-MIB",
1635
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.10",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1639
+ },
1640
+ "access" : "readonly",
1641
+ "description" :
1642
+ """This object is a count of the number of times
1643
+ that the associated instance of the
1644
+ vgRptrPortHighPriorityOctets counter has rolled
1645
+ over.
1646
+
1647
+ This two-counter mechanism is provided for those
1648
+ network management protocols that do not support
1649
+ 64-bit counters (e.g. SNMPv1). Note that
1650
+ retrieval of these two counters in the same PDU
1651
+ is NOT guaranteed to be atomic.
1652
+
1653
+ This counter may experience a discontinuity when
1654
+ the value of the corresponding instance of
1655
+ vgRptrPortLastChange changes.""",
1656
+ "reference" :
1657
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1658
+ aHighPriorityOctetsReceived.""",
1659
+ }, # column
1660
+ "vgRptrPortHCHighPriorityOctets" : {
1661
+ "nodetype" : "column",
1662
+ "moduleName" : "DOT12-RPTR-MIB",
1663
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.11",
1664
+ "status" : "current",
1665
+ "syntax" : {
1666
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1667
+ },
1668
+ "access" : "readonly",
1669
+ "description" :
1670
+ """This object is a count of the number of octets
1671
+ contained in high priority frames that have been
1672
+ received on this port. This counter is
1673
+ incremented by OctetCount for each frame received
1674
+ on this port which is counted by
1675
+ vgRptrPortHighPriorityFrames.
1676
+
1677
+ This counter is a 64 bit version of
1678
+ vgRptrPortHighPriorityOctets. It should be used
1679
+ by Network Management protocols which support
1680
+ 64 bit counters (e.g. SNMPv2).
1681
+ This counter may experience a discontinuity when
1682
+ the value of the corresponding instance of
1683
+ vgRptrPortLastChange changes.""",
1684
+ "reference" :
1685
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1686
+ aHighPriorityOctetsReceived.""",
1687
+ }, # column
1688
+ "vgRptrPortNormPriorityFrames" : {
1689
+ "nodetype" : "column",
1690
+ "moduleName" : "DOT12-RPTR-MIB",
1691
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.12",
1692
+ "status" : "current",
1693
+ "syntax" : {
1694
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1695
+ },
1696
+ "access" : "readonly",
1697
+ "description" :
1698
+ """This object is a count of normal priority frames
1699
+ that have been received on this port. This
1700
+ counter is incremented by one for each normal
1701
+ priority frame received on this port. This
1702
+ counter includes both good and bad normal
1703
+ priority frames, as well as normal priority
1704
+ training frames and normal priority frames which
1705
+ were priority promoted.
1706
+
1707
+ This counter may experience a discontinuity when
1708
+ the value of the corresponding instance of
1709
+ vgRptrPortLastChange changes.""",
1710
+ "reference" :
1711
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1712
+ aNormalPriorityFramesReceived.""",
1713
+ }, # column
1714
+ "vgRptrPortNormPriorityOctets" : {
1715
+ "nodetype" : "column",
1716
+ "moduleName" : "DOT12-RPTR-MIB",
1717
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.13",
1718
+ "status" : "current",
1719
+ "syntax" : {
1720
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1721
+ },
1722
+ "access" : "readonly",
1723
+ "description" :
1724
+ """This object is a count of the number of octets
1725
+ contained in normal priority frames that have
1726
+ been received on this port. This counter is
1727
+ incremented by OctetCount for each frame received
1728
+ on this port which is counted by
1729
+ vgRptrPortNormPriorityFrames.
1730
+
1731
+ Note that this counter can roll over very
1732
+ quickly. A management station is advised to
1733
+ also poll the vgRptrPortNormPriOctetRollovers
1734
+ object, or to use the 64-bit counter defined by
1735
+ vgRptrPortHCNormPriorityOctets instead of the two
1736
+ 32-bit counters.
1737
+ This two-counter mechanism is provided for those
1738
+ network management protocols that do not support
1739
+ 64-bit counters (e.g. SNMPv1). Note that
1740
+ retrieval of these two counters in the same PDU
1741
+ is NOT guaranteed to be atomic.
1742
+
1743
+ This counter may experience a discontinuity when
1744
+ the value of the corresponding instance of
1745
+ vgRptrPortLastChange changes.""",
1746
+ "reference" :
1747
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1748
+ aNormalPriorityOctetsReceived.""",
1749
+ }, # column
1750
+ "vgRptrPortNormPriOctetRollovers" : {
1751
+ "nodetype" : "column",
1752
+ "moduleName" : "DOT12-RPTR-MIB",
1753
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.14",
1754
+ "status" : "current",
1755
+ "syntax" : {
1756
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1757
+ },
1758
+ "access" : "readonly",
1759
+ "description" :
1760
+ """This object is a count of the number of times
1761
+ that the associated instance of the
1762
+ vgRptrPortNormPriorityOctets counter has rolled
1763
+ over.
1764
+
1765
+ This two-counter mechanism is provided for those
1766
+ network management protocols that do not support
1767
+ 64-bit counters (e.g. SNMPv1). Note that
1768
+ retrieval of these two counters in the same PDU
1769
+ is NOT guaranteed to be atomic.
1770
+
1771
+ This counter may experience a discontinuity when
1772
+ the value of the corresponding instance of
1773
+ vgRptrPortLastChange changes.""",
1774
+ "reference" :
1775
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1776
+ aNormalPriorityOctetsReceived.""",
1777
+ }, # column
1778
+ "vgRptrPortHCNormPriorityOctets" : {
1779
+ "nodetype" : "column",
1780
+ "moduleName" : "DOT12-RPTR-MIB",
1781
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.15",
1782
+ "status" : "current",
1783
+ "syntax" : {
1784
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1785
+ },
1786
+ "access" : "readonly",
1787
+ "description" :
1788
+ """This object is a count of the number of octets
1789
+ contained in normal priority frames that have
1790
+ been received on this port. This counter is
1791
+ incremented by OctetCount for each frame received
1792
+ on this port which is counted by
1793
+ vgRptrPortNormPriorityFrames.
1794
+
1795
+ This counter is a 64 bit version of
1796
+ vgRptrPortNormPriorityOctets. It should be used
1797
+ by Network Management protocols which support
1798
+ 64 bit counters (e.g. SNMPv2).
1799
+
1800
+ This counter may experience a discontinuity when
1801
+ the value of the corresponding instance of
1802
+ vgRptrPortLastChange changes.""",
1803
+ "reference" :
1804
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1805
+ aNormalPriorityOctetsReceived.""",
1806
+ }, # column
1807
+ "vgRptrPortBroadcastFrames" : {
1808
+ "nodetype" : "column",
1809
+ "moduleName" : "DOT12-RPTR-MIB",
1810
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.16",
1811
+ "status" : "current",
1812
+ "syntax" : {
1813
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1814
+ },
1815
+ "access" : "readonly",
1816
+ "description" :
1817
+ """This object is a count of broadcast packets that
1818
+ have been received on this port. This counter is
1819
+ incremented by one for each readable frame
1820
+ received on this port whose destination MAC
1821
+ address is the broadcast address. Frames
1822
+ counted by this counter are also counted by
1823
+ vgRptrPortReadableFrames.
1824
+
1825
+ This counter may experience a discontinuity when
1826
+ the value of the corresponding instance of
1827
+ vgRptrPortLastChange changes.""",
1828
+ "reference" :
1829
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1830
+ aBroadcastFramesReceived.""",
1831
+ }, # column
1832
+ "vgRptrPortMulticastFrames" : {
1833
+ "nodetype" : "column",
1834
+ "moduleName" : "DOT12-RPTR-MIB",
1835
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.17",
1836
+ "status" : "current",
1837
+ "syntax" : {
1838
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1839
+ },
1840
+ "access" : "readonly",
1841
+ "description" :
1842
+ """This object is a count of multicast packets that
1843
+ have been received on this port. This counter is
1844
+ incremented by one for each readable frame
1845
+ received on this port whose destination MAC
1846
+ address has the group address bit set, but is not
1847
+ the broadcast address. Frames counted by this
1848
+ counter are also counted by
1849
+ vgRptrPortReadableFrames, but not by
1850
+ vgRptrPortBroadcastFrames. Note that when the
1851
+ value of the instance vgRptrInfoCurrentFramingType
1852
+ for the repeater that this port is associated
1853
+ with is equal to 'frameType88025', this count
1854
+ includes packets addressed to functional
1855
+ addresses.
1856
+
1857
+ This counter may experience a discontinuity when
1858
+ the value of the corresponding instance of
1859
+ vgRptrPortLastChange changes.""",
1860
+ "reference" :
1861
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1862
+ aMulticastFramesReceived.""",
1863
+ }, # column
1864
+ "vgRptrPortNullAddressedFrames" : {
1865
+ "nodetype" : "column",
1866
+ "moduleName" : "DOT12-RPTR-MIB",
1867
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.18",
1868
+ "status" : "current",
1869
+ "syntax" : {
1870
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1871
+ },
1872
+ "access" : "readonly",
1873
+ "description" :
1874
+ """This object is a count of null addressed packets
1875
+ that have been received on this port. This
1876
+ counter is incremented by one for each frame
1877
+ received on this port with a destination MAC
1878
+ address consisting of all zero bits. Both void
1879
+ and training frames are included in this
1880
+ counter.
1881
+
1882
+ This counter may experience a discontinuity when
1883
+ the value of the corresponding instance of
1884
+ vgRptrPortLastChange changes.""",
1885
+ "reference" :
1886
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1887
+ aNullAddressedFramesReceived.""",
1888
+ }, # column
1889
+ "vgRptrPortIPMFrames" : {
1890
+ "nodetype" : "column",
1891
+ "moduleName" : "DOT12-RPTR-MIB",
1892
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.19",
1893
+ "status" : "current",
1894
+ "syntax" : {
1895
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1896
+ },
1897
+ "access" : "readonly",
1898
+ "description" :
1899
+ """This object is a count of the number of frames
1900
+ that have been received on this port with an
1901
+ invalid packet marker and no PMI errors. A
1902
+ repeater will write an invalid packet marker to
1903
+ the end of a frame containing errors as it is
1904
+ forwarded through the repeater to the other
1905
+ ports. This counter is incremented by one for
1906
+ each frame received on this port which has had an
1907
+ invalid packet marker added to the end of the
1908
+ frame.
1909
+
1910
+ This counter indicates problems occurring in the
1911
+ domain of other repeaters, as opposed to problems
1912
+ with cables or devices directly attached to this
1913
+ repeater.
1914
+
1915
+ This counter may experience a discontinuity when
1916
+ the value of the corresponding instance of
1917
+ vgRptrPortLastChange changes.""",
1918
+ "reference" :
1919
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1920
+ aIPMFramesReceived.""",
1921
+ }, # column
1922
+ "vgRptrPortOversizeFrames" : {
1923
+ "nodetype" : "column",
1924
+ "moduleName" : "DOT12-RPTR-MIB",
1925
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.20",
1926
+ "status" : "current",
1927
+ "syntax" : {
1928
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1929
+ },
1930
+ "access" : "readonly",
1931
+ "description" :
1932
+ """This object is a count of oversize frames
1933
+ received on this port. This counter is
1934
+ incremented by one for each frame received on
1935
+ this port whose OctetCount is larger than the
1936
+ maximum legal frame size.
1937
+
1938
+ The frame size which causes this counter to
1939
+ increment is dependent on the current value of
1940
+ vgRptrInfoCurrentFramingType for the repeater that
1941
+ the port is associated with. When
1942
+ vgRptrInfoCurrentFramingType is equal to
1943
+ frameType88023 this counter will increment for
1944
+ frames that are 1519 octets or larger. When
1945
+ vgRptrInfoCurrentFramingType is equal to
1946
+ frameType88025 this counter will increment for
1947
+ frames that are 4521 octets or larger.
1948
+
1949
+ This counter may experience a discontinuity when
1950
+ the value of the corresponding instance of
1951
+ vgRptrPortLastChange changes.""",
1952
+ "reference" :
1953
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1954
+ aOversizeFramesReceived.""",
1955
+ }, # column
1956
+ "vgRptrPortDataErrorFrames" : {
1957
+ "nodetype" : "column",
1958
+ "moduleName" : "DOT12-RPTR-MIB",
1959
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.21",
1960
+ "status" : "current",
1961
+ "syntax" : {
1962
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1963
+ },
1964
+ "access" : "readonly",
1965
+ "description" :
1966
+ """This object is a count of errored frames
1967
+ received on this port. This counter is
1968
+ incremented by one for each frame received on
1969
+ this port with any of the following errors: bad
1970
+ FCS (with no IPM), PMI errors (excluding frames
1971
+ with an IPM error as the only PMI error), or
1972
+ undersize (with no IPM). Does not include
1973
+ packets counted by vgRptrPortIPMFrames,
1974
+ vgRptrPortOversizeFrames, or
1975
+ vgRptrPortNullAddressedFrames.
1976
+
1977
+ This counter indicates problems with cables or
1978
+ devices directly connected to this repeater, while
1979
+ vgRptrPortIPMFrames indicates problems occurring
1980
+ in the domain of other repeaters.
1981
+
1982
+ This counter may experience a discontinuity when
1983
+ the value of the corresponding instance of
1984
+ vgRptrPortLastChange changes.""",
1985
+ "reference" :
1986
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
1987
+ aDataErrorFramesReceived.""",
1988
+ }, # column
1989
+ "vgRptrPortPriorityPromotions" : {
1990
+ "nodetype" : "column",
1991
+ "moduleName" : "DOT12-RPTR-MIB",
1992
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.22",
1993
+ "status" : "current",
1994
+ "syntax" : {
1995
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1996
+ },
1997
+ "access" : "readonly",
1998
+ "description" :
1999
+ """This counter is incremented by one each time the
2000
+ priority promotion timer has expired on this port
2001
+ and a normal priority frame is priority
2002
+ promoted.
2003
+
2004
+ This counter may experience a discontinuity when
2005
+ the value of the corresponding instance of
2006
+ vgRptrPortLastChange changes.""",
2007
+ "reference" :
2008
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
2009
+ aPriorityPromotions.""",
2010
+ }, # column
2011
+ "vgRptrPortTransitionToTrainings" : {
2012
+ "nodetype" : "column",
2013
+ "moduleName" : "DOT12-RPTR-MIB",
2014
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.23",
2015
+ "status" : "current",
2016
+ "syntax" : {
2017
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2018
+ },
2019
+ "access" : "readonly",
2020
+ "description" :
2021
+ """This counter is incremented by one each time the
2022
+ vgRptrPortStatus object for this port transitions
2023
+ into the 'training' state.
2024
+
2025
+ This counter may experience a discontinuity when
2026
+ the value of the corresponding instance of
2027
+ vgRptrPortLastChange changes.""",
2028
+ "reference" :
2029
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
2030
+ aTransitionsIntoTraining.""",
2031
+ }, # column
2032
+ "vgRptrPortLastChange" : {
2033
+ "nodetype" : "column",
2034
+ "moduleName" : "DOT12-RPTR-MIB",
2035
+ "oid" : "1.3.6.1.2.1.53.1.2.3.1.1.24",
2036
+ "status" : "current",
2037
+ "syntax" : {
2038
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2039
+ },
2040
+ "access" : "readonly",
2041
+ "description" :
2042
+ """The value of sysUpTime when the last of the
2043
+ following occurred:
2044
+ 1) the agent cold- or warm-started;
2045
+ 2) the row for the port was created
2046
+ (such as when a device or module was
2047
+ added to the system); or
2048
+ 3) any condition that would cause one of
2049
+ the counters for the row to experience
2050
+ a discontinuity.""",
2051
+ }, # column
2052
+ "vgRptrAddrTrack" : {
2053
+ "nodetype" : "node",
2054
+ "moduleName" : "DOT12-RPTR-MIB",
2055
+ "oid" : "1.3.6.1.2.1.53.1.3",
2056
+ }, # node
2057
+ "vgRptrAddrTrackRptr" : {
2058
+ "nodetype" : "node",
2059
+ "moduleName" : "DOT12-RPTR-MIB",
2060
+ "oid" : "1.3.6.1.2.1.53.1.3.1",
2061
+ }, # node
2062
+ "vgRptrAddrTrackGroup" : {
2063
+ "nodetype" : "node",
2064
+ "moduleName" : "DOT12-RPTR-MIB",
2065
+ "oid" : "1.3.6.1.2.1.53.1.3.2",
2066
+ }, # node
2067
+ "vgRptrAddrTrackPort" : {
2068
+ "nodetype" : "node",
2069
+ "moduleName" : "DOT12-RPTR-MIB",
2070
+ "oid" : "1.3.6.1.2.1.53.1.3.3",
2071
+ }, # node
2072
+ "vgRptrAddrTrackTable" : {
2073
+ "nodetype" : "table",
2074
+ "moduleName" : "DOT12-RPTR-MIB",
2075
+ "oid" : "1.3.6.1.2.1.53.1.3.3.1",
2076
+ "status" : "current",
2077
+ "description" :
2078
+ """Table of address mapping information about the
2079
+ ports.""",
2080
+ }, # table
2081
+ "vgRptrAddrTrackEntry" : {
2082
+ "nodetype" : "row",
2083
+ "moduleName" : "DOT12-RPTR-MIB",
2084
+ "oid" : "1.3.6.1.2.1.53.1.3.3.1.1",
2085
+ "status" : "current",
2086
+ "linkage" : [
2087
+ "vgRptrGroupIndex",
2088
+ "vgRptrPortIndex",
2089
+ ],
2090
+ "description" :
2091
+ """An entry in the table, containing address mapping
2092
+ information about a single port.""",
2093
+ }, # row
2094
+ "vgRptrAddrLastTrainedAddress" : {
2095
+ "nodetype" : "column",
2096
+ "moduleName" : "DOT12-RPTR-MIB",
2097
+ "oid" : "1.3.6.1.2.1.53.1.3.3.1.1.1",
2098
+ "status" : "current",
2099
+ "syntax" : {
2100
+ "type" : {
2101
+ "basetype" : "OctetString",
2102
+ "ranges" : [
2103
+ {
2104
+ "min" : "0",
2105
+ "max" : "0"
2106
+ },
2107
+ {
2108
+ "min" : "6",
2109
+ "max" : "6"
2110
+ },
2111
+ ],
2112
+ "range" : {
2113
+ "min" : "0",
2114
+ "max" : "6"
2115
+ },
2116
+ },
2117
+ },
2118
+ "access" : "readonly",
2119
+ "description" :
2120
+ """This object is the MAC address of the last
2121
+ station which succeeded in training on this port.
2122
+ A cascaded repeater may train using the null
2123
+ address. If no stations have succeeded in
2124
+ training on this port since the agent began
2125
+ monitoring the port activity, the agent shall
2126
+ return a string of length zero.""",
2127
+ "reference" :
2128
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
2129
+ aLastTrainedAddress.""",
2130
+ }, # column
2131
+ "vgRptrAddrTrainedAddrChanges" : {
2132
+ "nodetype" : "column",
2133
+ "moduleName" : "DOT12-RPTR-MIB",
2134
+ "oid" : "1.3.6.1.2.1.53.1.3.3.1.1.2",
2135
+ "status" : "current",
2136
+ "syntax" : {
2137
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2138
+ },
2139
+ "access" : "readonly",
2140
+ "description" :
2141
+ """This counter is incremented by one for each time
2142
+ that the vgRptrAddrLastTrainedAddress object for
2143
+ this port changes.""",
2144
+ "reference" :
2145
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
2146
+ aTrainedAddressChanges.""",
2147
+ }, # column
2148
+ "vgRptrRptrDetectedDupAddress" : {
2149
+ "nodetype" : "column",
2150
+ "moduleName" : "DOT12-RPTR-MIB",
2151
+ "oid" : "1.3.6.1.2.1.53.1.3.3.1.1.3",
2152
+ "status" : "current",
2153
+ "syntax" : {
2154
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2155
+ },
2156
+ "access" : "readonly",
2157
+ "description" :
2158
+ """This object is used to indicate that the
2159
+ repeater detected an error-free training frame on
2160
+ this port with a non-null source MAC address which
2161
+ matches the value of vgRptrAddrLastTrainedAddress
2162
+ of another active port in the same repeater. This
2163
+ is reset to 'false' when an error-free training
2164
+ frame is received with a non-null source MAC
2165
+ address which does not match
2166
+ vgRptrAddrLastTrainedAddress of another port which
2167
+ is active in the same repeater.
2168
+
2169
+ For the cascade port, this object will be 'true'
2170
+ if the 'D' bit in the most recently received
2171
+ error-free training response frame was set,
2172
+ indicating the device at the other end of the link
2173
+ believes that this repeater's cascade port is
2174
+ using a duplicate address. This may be because
2175
+ the device at the other end of the link detected a
2176
+ duplicate address itself, or, if the other device
2177
+ is also a repeater, it could be because
2178
+ vgRptrMgrDetectedDupAddress was set to 'true' on
2179
+ the port that this repeater's cascade port is
2180
+ connected to.""",
2181
+ "reference" :
2182
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
2183
+ aLocalRptrDetectedDupAddr.""",
2184
+ }, # column
2185
+ "vgRptrMgrDetectedDupAddress" : {
2186
+ "nodetype" : "column",
2187
+ "moduleName" : "DOT12-RPTR-MIB",
2188
+ "oid" : "1.3.6.1.2.1.53.1.3.3.1.1.4",
2189
+ "status" : "current",
2190
+ "syntax" : {
2191
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2192
+ },
2193
+ "access" : "readwrite",
2194
+ "description" :
2195
+ """This object can be set by a management station
2196
+ when it detects that there is a duplicate MAC
2197
+ address. This object is OR'd with
2198
+ vgRptrRptrDetectedDupAddress to form the value of
2199
+ the 'D' bit in training response frames on this
2200
+ port.
2201
+
2202
+ The purpose of this object is to provide a means
2203
+ for network management software to inform an end
2204
+ station that it is using a duplicate station
2205
+ address. Setting this object does not affect the
2206
+ current state of the link; the end station will
2207
+ not be informed of the duplicate address until it
2208
+ retrains for some reason. Note that regardless
2209
+ of its station address, the end station will not
2210
+ be able to train successfully until the network
2211
+ management software has set this object back to
2212
+ 'false'. Although this object exists on
2213
+ cascade ports, it does not perform any function
2214
+ since this repeater is the initiator of training
2215
+ on a cascade port.""",
2216
+ "reference" :
2217
+ """IEEE Standard 802.12-1995, 13.2.4.5.1,
2218
+ aCentralMgmtDetectedDupAddr.""",
2219
+ }, # column
2220
+ "vgRptrTraps" : {
2221
+ "nodetype" : "node",
2222
+ "moduleName" : "DOT12-RPTR-MIB",
2223
+ "oid" : "1.3.6.1.2.1.53.2",
2224
+ }, # node
2225
+ "vgRptrTrapPrefix" : {
2226
+ "nodetype" : "node",
2227
+ "moduleName" : "DOT12-RPTR-MIB",
2228
+ "oid" : "1.3.6.1.2.1.53.2.0",
2229
+ }, # node
2230
+ "vgRptrConformance" : {
2231
+ "nodetype" : "node",
2232
+ "moduleName" : "DOT12-RPTR-MIB",
2233
+ "oid" : "1.3.6.1.2.1.53.3",
2234
+ }, # node
2235
+ "vgRptrCompliances" : {
2236
+ "nodetype" : "node",
2237
+ "moduleName" : "DOT12-RPTR-MIB",
2238
+ "oid" : "1.3.6.1.2.1.53.3.1",
2239
+ }, # node
2240
+ "vgRptrGroups" : {
2241
+ "nodetype" : "node",
2242
+ "moduleName" : "DOT12-RPTR-MIB",
2243
+ "oid" : "1.3.6.1.2.1.53.3.2",
2244
+ }, # node
2245
+ }, # nodes
2246
+
2247
+ "notifications" : {
2248
+ "vgRptrHealth" : {
2249
+ "nodetype" : "notification",
2250
+ "moduleName" : "DOT12-RPTR-MIB",
2251
+ "oid" : "1.3.6.1.2.1.53.2.0.1",
2252
+ "status" : "current",
2253
+ "objects" : {
2254
+ "vgRptrInfoOperStatus" : {
2255
+ "nodetype" : "object",
2256
+ "module" : "DOT12-RPTR-MIB"
2257
+ },
2258
+ },
2259
+ "description" :
2260
+ """A vgRptrHealth trap conveys information related
2261
+ to the operational state of a repeater. This trap
2262
+ is sent when the value of an instance of
2263
+ vgRptrInfoOperStatus changes. The vgRptrHealth
2264
+ trap is not sent as a result of powering up a
2265
+ repeater.
2266
+
2267
+ The vgRptrHealth trap must contain the instance of
2268
+ the vgRptrInfoOperStatus object associated with
2269
+ the affected repeater.
2270
+
2271
+ The agent must throttle the generation of
2272
+ consecutive vgRptrHealth traps so that there is at
2273
+ least a five-second gap between traps of this
2274
+ type. When traps are throttled, they are dropped,
2275
+ not queued for sending at a future time. (Note
2276
+ that 'generating' a trap means sending to all
2277
+ configured recipients.)""",
2278
+ "reference" :
2279
+ """IEEE 802.12, Layer Management, 13.2.4.2.3,
2280
+ nRepeaterHealth.""",
2281
+ }, # notification
2282
+ "vgRptrResetEvent" : {
2283
+ "nodetype" : "notification",
2284
+ "moduleName" : "DOT12-RPTR-MIB",
2285
+ "oid" : "1.3.6.1.2.1.53.2.0.2",
2286
+ "status" : "current",
2287
+ "objects" : {
2288
+ "vgRptrInfoOperStatus" : {
2289
+ "nodetype" : "object",
2290
+ "module" : "DOT12-RPTR-MIB"
2291
+ },
2292
+ },
2293
+ "description" :
2294
+ """A vgRptrResetEvent trap conveys information
2295
+ related to the operational state of a repeater.
2296
+ This trap is sent on completion of a repeater
2297
+ reset action. A repeater reset action is defined
2298
+ as a transition to its initial state as specified
2299
+ in clause 12 [IEEE Std 802.12] when triggered by
2300
+ a management command.
2301
+
2302
+ The vgRptrResetEvent trap is not sent when the
2303
+ agent restarts and sends an SNMP coldStart or
2304
+ warmStart trap.
2305
+
2306
+ The vgRptrResetEvent trap must contain the
2307
+ instance of the vgRptrInfoOperStatus object
2308
+ associated with the affected repeater.
2309
+
2310
+ The agent must throttle the generation of
2311
+ consecutive vgRptrResetEvent traps so that there
2312
+ is at least a five-second gap between traps of
2313
+ this type. When traps are throttled, they are
2314
+ dropped, not queued for sending at a future time.
2315
+ (Note that 'generating' a trap means sending to
2316
+ all configured recipients.)""",
2317
+ "reference" :
2318
+ """IEEE 802.12, Layer Management, 13.2.4.2.3,
2319
+ nRepeaterReset.""",
2320
+ }, # notification
2321
+ }, # notifications
2322
+
2323
+ "groups" : {
2324
+ "vgRptrConfigGroup" : {
2325
+ "nodetype" : "group",
2326
+ "moduleName" : "DOT12-RPTR-MIB",
2327
+ "oid" : "1.3.6.1.2.1.53.3.2.1",
2328
+ "status" : "current",
2329
+ "members" : {
2330
+ "vgRptrInfoMACAddress" : {
2331
+ "nodetype" : "member",
2332
+ "module" : "DOT12-RPTR-MIB"
2333
+ },
2334
+ "vgRptrInfoCurrentFramingType" : {
2335
+ "nodetype" : "member",
2336
+ "module" : "DOT12-RPTR-MIB"
2337
+ },
2338
+ "vgRptrInfoDesiredFramingType" : {
2339
+ "nodetype" : "member",
2340
+ "module" : "DOT12-RPTR-MIB"
2341
+ },
2342
+ "vgRptrInfoFramingCapability" : {
2343
+ "nodetype" : "member",
2344
+ "module" : "DOT12-RPTR-MIB"
2345
+ },
2346
+ "vgRptrInfoTrainingVersion" : {
2347
+ "nodetype" : "member",
2348
+ "module" : "DOT12-RPTR-MIB"
2349
+ },
2350
+ "vgRptrInfoOperStatus" : {
2351
+ "nodetype" : "member",
2352
+ "module" : "DOT12-RPTR-MIB"
2353
+ },
2354
+ "vgRptrInfoReset" : {
2355
+ "nodetype" : "member",
2356
+ "module" : "DOT12-RPTR-MIB"
2357
+ },
2358
+ "vgRptrInfoLastChange" : {
2359
+ "nodetype" : "member",
2360
+ "module" : "DOT12-RPTR-MIB"
2361
+ },
2362
+ "vgRptrGroupObjectID" : {
2363
+ "nodetype" : "member",
2364
+ "module" : "DOT12-RPTR-MIB"
2365
+ },
2366
+ "vgRptrGroupOperStatus" : {
2367
+ "nodetype" : "member",
2368
+ "module" : "DOT12-RPTR-MIB"
2369
+ },
2370
+ "vgRptrGroupPortCapacity" : {
2371
+ "nodetype" : "member",
2372
+ "module" : "DOT12-RPTR-MIB"
2373
+ },
2374
+ "vgRptrGroupCablesBundled" : {
2375
+ "nodetype" : "member",
2376
+ "module" : "DOT12-RPTR-MIB"
2377
+ },
2378
+ "vgRptrPortType" : {
2379
+ "nodetype" : "member",
2380
+ "module" : "DOT12-RPTR-MIB"
2381
+ },
2382
+ "vgRptrPortAdminStatus" : {
2383
+ "nodetype" : "member",
2384
+ "module" : "DOT12-RPTR-MIB"
2385
+ },
2386
+ "vgRptrPortOperStatus" : {
2387
+ "nodetype" : "member",
2388
+ "module" : "DOT12-RPTR-MIB"
2389
+ },
2390
+ "vgRptrPortSupportedPromiscMode" : {
2391
+ "nodetype" : "member",
2392
+ "module" : "DOT12-RPTR-MIB"
2393
+ },
2394
+ "vgRptrPortSupportedCascadeMode" : {
2395
+ "nodetype" : "member",
2396
+ "module" : "DOT12-RPTR-MIB"
2397
+ },
2398
+ "vgRptrPortAllowedTrainType" : {
2399
+ "nodetype" : "member",
2400
+ "module" : "DOT12-RPTR-MIB"
2401
+ },
2402
+ "vgRptrPortLastTrainConfig" : {
2403
+ "nodetype" : "member",
2404
+ "module" : "DOT12-RPTR-MIB"
2405
+ },
2406
+ "vgRptrPortTrainingResult" : {
2407
+ "nodetype" : "member",
2408
+ "module" : "DOT12-RPTR-MIB"
2409
+ },
2410
+ "vgRptrPortPriorityEnable" : {
2411
+ "nodetype" : "member",
2412
+ "module" : "DOT12-RPTR-MIB"
2413
+ },
2414
+ "vgRptrPortRptrInfoIndex" : {
2415
+ "nodetype" : "member",
2416
+ "module" : "DOT12-RPTR-MIB"
2417
+ },
2418
+ }, # members
2419
+ "description" :
2420
+ """A collection of objects for managing the status
2421
+ and configuration of IEEE 802.12 repeaters.""",
2422
+ }, # group
2423
+ "vgRptrStatsGroup" : {
2424
+ "nodetype" : "group",
2425
+ "moduleName" : "DOT12-RPTR-MIB",
2426
+ "oid" : "1.3.6.1.2.1.53.3.2.2",
2427
+ "status" : "current",
2428
+ "members" : {
2429
+ "vgRptrMonTotalReadableFrames" : {
2430
+ "nodetype" : "member",
2431
+ "module" : "DOT12-RPTR-MIB"
2432
+ },
2433
+ "vgRptrMonTotalReadableOctets" : {
2434
+ "nodetype" : "member",
2435
+ "module" : "DOT12-RPTR-MIB"
2436
+ },
2437
+ "vgRptrMonReadableOctetRollovers" : {
2438
+ "nodetype" : "member",
2439
+ "module" : "DOT12-RPTR-MIB"
2440
+ },
2441
+ "vgRptrMonTotalErrors" : {
2442
+ "nodetype" : "member",
2443
+ "module" : "DOT12-RPTR-MIB"
2444
+ },
2445
+ "vgRptrPortReadableFrames" : {
2446
+ "nodetype" : "member",
2447
+ "module" : "DOT12-RPTR-MIB"
2448
+ },
2449
+ "vgRptrPortReadableOctets" : {
2450
+ "nodetype" : "member",
2451
+ "module" : "DOT12-RPTR-MIB"
2452
+ },
2453
+ "vgRptrPortReadOctetRollovers" : {
2454
+ "nodetype" : "member",
2455
+ "module" : "DOT12-RPTR-MIB"
2456
+ },
2457
+ "vgRptrPortUnreadableOctets" : {
2458
+ "nodetype" : "member",
2459
+ "module" : "DOT12-RPTR-MIB"
2460
+ },
2461
+ "vgRptrPortUnreadOctetRollovers" : {
2462
+ "nodetype" : "member",
2463
+ "module" : "DOT12-RPTR-MIB"
2464
+ },
2465
+ "vgRptrPortHighPriorityFrames" : {
2466
+ "nodetype" : "member",
2467
+ "module" : "DOT12-RPTR-MIB"
2468
+ },
2469
+ "vgRptrPortHighPriorityOctets" : {
2470
+ "nodetype" : "member",
2471
+ "module" : "DOT12-RPTR-MIB"
2472
+ },
2473
+ "vgRptrPortHighPriOctetRollovers" : {
2474
+ "nodetype" : "member",
2475
+ "module" : "DOT12-RPTR-MIB"
2476
+ },
2477
+ "vgRptrPortNormPriorityFrames" : {
2478
+ "nodetype" : "member",
2479
+ "module" : "DOT12-RPTR-MIB"
2480
+ },
2481
+ "vgRptrPortNormPriorityOctets" : {
2482
+ "nodetype" : "member",
2483
+ "module" : "DOT12-RPTR-MIB"
2484
+ },
2485
+ "vgRptrPortNormPriOctetRollovers" : {
2486
+ "nodetype" : "member",
2487
+ "module" : "DOT12-RPTR-MIB"
2488
+ },
2489
+ "vgRptrPortBroadcastFrames" : {
2490
+ "nodetype" : "member",
2491
+ "module" : "DOT12-RPTR-MIB"
2492
+ },
2493
+ "vgRptrPortMulticastFrames" : {
2494
+ "nodetype" : "member",
2495
+ "module" : "DOT12-RPTR-MIB"
2496
+ },
2497
+ "vgRptrPortNullAddressedFrames" : {
2498
+ "nodetype" : "member",
2499
+ "module" : "DOT12-RPTR-MIB"
2500
+ },
2501
+ "vgRptrPortIPMFrames" : {
2502
+ "nodetype" : "member",
2503
+ "module" : "DOT12-RPTR-MIB"
2504
+ },
2505
+ "vgRptrPortOversizeFrames" : {
2506
+ "nodetype" : "member",
2507
+ "module" : "DOT12-RPTR-MIB"
2508
+ },
2509
+ "vgRptrPortDataErrorFrames" : {
2510
+ "nodetype" : "member",
2511
+ "module" : "DOT12-RPTR-MIB"
2512
+ },
2513
+ "vgRptrPortPriorityPromotions" : {
2514
+ "nodetype" : "member",
2515
+ "module" : "DOT12-RPTR-MIB"
2516
+ },
2517
+ "vgRptrPortTransitionToTrainings" : {
2518
+ "nodetype" : "member",
2519
+ "module" : "DOT12-RPTR-MIB"
2520
+ },
2521
+ "vgRptrPortLastChange" : {
2522
+ "nodetype" : "member",
2523
+ "module" : "DOT12-RPTR-MIB"
2524
+ },
2525
+ }, # members
2526
+ "description" :
2527
+ """A collection of objects for providing statistics
2528
+ for IEEE 802.12 repeaters. Systems which support
2529
+ Counter64 should also implement
2530
+ vgRptrStats64Group.""",
2531
+ }, # group
2532
+ "vgRptrStats64Group" : {
2533
+ "nodetype" : "group",
2534
+ "moduleName" : "DOT12-RPTR-MIB",
2535
+ "oid" : "1.3.6.1.2.1.53.3.2.3",
2536
+ "status" : "current",
2537
+ "members" : {
2538
+ "vgRptrMonHCTotalReadableOctets" : {
2539
+ "nodetype" : "member",
2540
+ "module" : "DOT12-RPTR-MIB"
2541
+ },
2542
+ "vgRptrPortHCReadableOctets" : {
2543
+ "nodetype" : "member",
2544
+ "module" : "DOT12-RPTR-MIB"
2545
+ },
2546
+ "vgRptrPortHCUnreadableOctets" : {
2547
+ "nodetype" : "member",
2548
+ "module" : "DOT12-RPTR-MIB"
2549
+ },
2550
+ "vgRptrPortHCHighPriorityOctets" : {
2551
+ "nodetype" : "member",
2552
+ "module" : "DOT12-RPTR-MIB"
2553
+ },
2554
+ "vgRptrPortHCNormPriorityOctets" : {
2555
+ "nodetype" : "member",
2556
+ "module" : "DOT12-RPTR-MIB"
2557
+ },
2558
+ }, # members
2559
+ "description" :
2560
+ """A collection of objects for providing statistics
2561
+ for IEEE 802.12 repeaters in a system that
2562
+ supports Counter64.""",
2563
+ }, # group
2564
+ "vgRptrAddrGroup" : {
2565
+ "nodetype" : "group",
2566
+ "moduleName" : "DOT12-RPTR-MIB",
2567
+ "oid" : "1.3.6.1.2.1.53.3.2.4",
2568
+ "status" : "current",
2569
+ "members" : {
2570
+ "vgRptrAddrLastTrainedAddress" : {
2571
+ "nodetype" : "member",
2572
+ "module" : "DOT12-RPTR-MIB"
2573
+ },
2574
+ "vgRptrAddrTrainedAddrChanges" : {
2575
+ "nodetype" : "member",
2576
+ "module" : "DOT12-RPTR-MIB"
2577
+ },
2578
+ "vgRptrRptrDetectedDupAddress" : {
2579
+ "nodetype" : "member",
2580
+ "module" : "DOT12-RPTR-MIB"
2581
+ },
2582
+ "vgRptrMgrDetectedDupAddress" : {
2583
+ "nodetype" : "member",
2584
+ "module" : "DOT12-RPTR-MIB"
2585
+ },
2586
+ }, # members
2587
+ "description" :
2588
+ """A collection of objects for tracking addresses
2589
+ on IEEE 802.12 repeaters.""",
2590
+ }, # group
2591
+ "vgRptrNotificationsGroup" : {
2592
+ "nodetype" : "group",
2593
+ "moduleName" : "DOT12-RPTR-MIB",
2594
+ "oid" : "1.3.6.1.2.1.53.3.2.5",
2595
+ "status" : "current",
2596
+ "members" : {
2597
+ "vgRptrHealth" : {
2598
+ "nodetype" : "member",
2599
+ "module" : "DOT12-RPTR-MIB"
2600
+ },
2601
+ "vgRptrResetEvent" : {
2602
+ "nodetype" : "member",
2603
+ "module" : "DOT12-RPTR-MIB"
2604
+ },
2605
+ }, # members
2606
+ "description" :
2607
+ """A collection of notifications used to indicate
2608
+ 802.12 repeater general status changes.""",
2609
+ }, # group
2610
+ }, # groups
2611
+
2612
+ "compliances" : {
2613
+ "vgRptrCompliance" : {
2614
+ "nodetype" : "compliance",
2615
+ "moduleName" : "DOT12-RPTR-MIB",
2616
+ "oid" : "1.3.6.1.2.1.53.3.1.1",
2617
+ "status" : "current",
2618
+ "description" :
2619
+ """The compliance statement for managed 802.12
2620
+ repeaters.""",
2621
+ "requires" : {
2622
+ "vgRptrConfigGroup" : {
2623
+ "nodetype" : "mandatory",
2624
+ "module" : "DOT12-RPTR-MIB"
2625
+ },
2626
+ "vgRptrStatsGroup" : {
2627
+ "nodetype" : "mandatory",
2628
+ "module" : "DOT12-RPTR-MIB"
2629
+ },
2630
+ "vgRptrAddrGroup" : {
2631
+ "nodetype" : "mandatory",
2632
+ "module" : "DOT12-RPTR-MIB"
2633
+ },
2634
+ "vgRptrNotificationsGroup" : {
2635
+ "nodetype" : "mandatory",
2636
+ "module" : "DOT12-RPTR-MIB"
2637
+ },
2638
+ "vgRptrStats64Group" : {
2639
+ "nodetype" : "optional",
2640
+ "module" : "DOT12-RPTR-MIB",
2641
+ "description" :
2642
+ """Implementation of this group is recommended
2643
+ for systems which can support Counter64.""",
2644
+ },
2645
+ "snmpRptrGrpRptrAddrSearch" : {
2646
+ "nodetype" : "optional",
2647
+ "module" : "SNMP-REPEATER-MIB",
2648
+ "description" :
2649
+ """Implementation of this group is recommended
2650
+ for systems which have the necessary
2651
+ instrumentation to search all incoming data
2652
+ streams for a particular source MAC address.""",
2653
+ },
2654
+ }, # requires
2655
+ "refinements" : {
2656
+ "vgRptrInfoDesiredFramingType" : {
2657
+ "module" : "DOT12-RPTR-MIB",
2658
+ "access" : "readonly",
2659
+ "description" :
2660
+ """Write access to this object is not required
2661
+ in a repeater system that does not support
2662
+ configuration of framing types.""",
2663
+ },
2664
+ }, # refinements
2665
+
2666
+ }, # compliance
2667
+ }, # compliances
2668
+
2669
+ }