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,2548 @@
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 EtherLike-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/EtherLike-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "EtherLike-MIB",
11
+
12
+ "EtherLike-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Ethernet Interfaces and Hub MIB
17
+ Working Group""",
18
+ "contact" :
19
+ """WG E-mail: hubmib@ietf.org
20
+ To subscribe: hubmib-request@ietf.org
21
+
22
+ Chair: Dan Romascanu
23
+ Postal: Avaya Inc.
24
+ Atidum Technology Park, Bldg. 3
25
+ Tel Aviv 61131
26
+ Israel
27
+ Tel: +972 3 645 8414
28
+ E-mail: dromasca@avaya.com
29
+
30
+ Editor: John Flick
31
+ Postal: Hewlett-Packard Company
32
+ 8000 Foothills Blvd. M/S 5557
33
+ Roseville, CA 95747-5557
34
+ USA
35
+ Tel: +1 916 785 4018
36
+ Fax: +1 916 785 1199
37
+ E-mail: johnf@rose.hp.com""",
38
+ "description" :
39
+ """The MIB module to describe generic objects for
40
+ ethernet-like network interfaces.
41
+
42
+ The following reference is used throughout this
43
+ MIB module:
44
+
45
+ [IEEE 802.3 Std] refers to:
46
+ IEEE Std 802.3, 2002 Edition: 'IEEE Standard
47
+
48
+
49
+
50
+ for Information technology -
51
+ Telecommunications and information exchange
52
+ between systems - Local and metropolitan
53
+ area networks - Specific requirements -
54
+ Part 3: Carrier sense multiple access with
55
+ collision detection (CSMA/CD) access method
56
+ and physical layer specifications', as
57
+ amended by IEEE Std 802.3ae-2002:
58
+ 'Amendment: Media Access Control (MAC)
59
+ Parameters, Physical Layer, and Management
60
+ Parameters for 10 Gb/s Operation', August,
61
+ 2002.
62
+
63
+ Of particular interest is Clause 30, '10 Mb/s,
64
+ 100 Mb/s, 1000 Mb/s, and 10 Gb/s Management'.
65
+
66
+ Copyright (C) The Internet Society (2003). This
67
+ version of this MIB module is part of RFC 3635;
68
+ see the RFC itself for full legal notices.""",
69
+ "revisions" : (
70
+ {
71
+ "date" : "2003-09-19 00:00",
72
+ "description" :
73
+ """Updated to include support for 10 Gb/sec
74
+ interfaces. This resulted in the following
75
+ revisions:
76
+
77
+ - Updated dot3StatsAlignmentErrors and
78
+ dot3StatsSymbolErrors DESCRIPTIONs to
79
+ reflect behaviour at 10 Gb/s
80
+ - Added dot3StatsRateControlAbility and
81
+ dot3RateControlStatus for management
82
+ of the Rate Control function in 10 Gb/s
83
+ WAN applications
84
+ - Added 64-bit versions of all counters
85
+ that are used on high-speed ethernet
86
+ interfaces
87
+ - Added object groups to contain the new
88
+ objects
89
+ - Deprecated etherStatsBaseGroup and
90
+ split into etherStatsBaseGroup2 and
91
+ etherStatsHalfDuplexGroup, so that
92
+ interfaces which can only operate at
93
+ full-duplex do not need to implement
94
+ half-duplex-only statistics
95
+ - Deprecated dot3Compliance and replaced
96
+ it with dot3Compliance2, which includes
97
+ the compliance information for the new
98
+ object groups
99
+
100
+
101
+
102
+
103
+ In addition, the dot3Tests and dot3Errors
104
+ object identities have been deprecated,
105
+ since there is no longer a standard method
106
+ for using them.
107
+
108
+ This version published as RFC 3635.""",
109
+ },
110
+ {
111
+ "date" : "1999-08-24 04:00",
112
+ "description" :
113
+ """Updated to include support for 1000 Mb/sec
114
+ interfaces and full-duplex interfaces.
115
+ This version published as RFC 2665.""",
116
+ },
117
+ {
118
+ "date" : "1998-06-03 21:50",
119
+ "description" :
120
+ """Updated to include support for 100 Mb/sec
121
+ interfaces.
122
+ This version published as RFC 2358.""",
123
+ },
124
+ {
125
+ "date" : "1994-02-03 04:00",
126
+ "description" :
127
+ """Initial version, published as RFC 1650.""",
128
+ },
129
+ ),
130
+ "identity node" : "etherMIB",
131
+ },
132
+
133
+ "imports" : (
134
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
135
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
136
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-IDENTITY"},
137
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
138
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
139
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
140
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
141
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
142
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
143
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
144
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
145
+ {"module" : "IF-MIB", "name" : "ifIndex"},
146
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
147
+ ),
148
+
149
+ "nodes" : {
150
+ "dot3" : {
151
+ "nodetype" : "node",
152
+ "moduleName" : "EtherLike-MIB",
153
+ "oid" : "1.3.6.1.2.1.10.7",
154
+ }, # node
155
+ "dot3StatsTable" : {
156
+ "nodetype" : "table",
157
+ "moduleName" : "EtherLike-MIB",
158
+ "oid" : "1.3.6.1.2.1.10.7.2",
159
+ "status" : "current",
160
+ "description" :
161
+ """Statistics for a collection of ethernet-like
162
+ interfaces attached to a particular system.
163
+ There will be one row in this table for each
164
+ ethernet-like interface in the system.""",
165
+ }, # table
166
+ "dot3StatsEntry" : {
167
+ "nodetype" : "row",
168
+ "moduleName" : "EtherLike-MIB",
169
+ "oid" : "1.3.6.1.2.1.10.7.2.1",
170
+ "status" : "current",
171
+ "linkage" : [
172
+ "dot3StatsIndex",
173
+ ],
174
+ "description" :
175
+ """Statistics for a particular interface to an
176
+ ethernet-like medium.""",
177
+ }, # row
178
+ "dot3StatsIndex" : {
179
+ "nodetype" : "column",
180
+ "moduleName" : "EtherLike-MIB",
181
+ "oid" : "1.3.6.1.2.1.10.7.2.1.1",
182
+ "status" : "current",
183
+ "syntax" : {
184
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
185
+ },
186
+ "access" : "readonly",
187
+ "description" :
188
+ """An index value that uniquely identifies an
189
+ interface to an ethernet-like medium. The
190
+ interface identified by a particular value of
191
+ this index is the same interface as identified
192
+ by the same value of ifIndex.""",
193
+ "reference" :
194
+ """RFC 2863, ifIndex""",
195
+ }, # column
196
+ "dot3StatsAlignmentErrors" : {
197
+ "nodetype" : "column",
198
+ "moduleName" : "EtherLike-MIB",
199
+ "oid" : "1.3.6.1.2.1.10.7.2.1.2",
200
+ "status" : "current",
201
+ "syntax" : {
202
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
203
+ },
204
+ "access" : "readonly",
205
+ "description" :
206
+ """A count of frames received on a particular
207
+ interface that are not an integral number of
208
+ octets in length and do not pass the FCS check.
209
+
210
+ The count represented by an instance of this
211
+ object is incremented when the alignmentError
212
+ status is returned by the MAC service to the
213
+ LLC (or other MAC user). Received frames for
214
+ which multiple error conditions pertain are,
215
+ according to the conventions of IEEE 802.3
216
+ Layer Management, counted exclusively according
217
+
218
+
219
+
220
+ to the error status presented to the LLC.
221
+
222
+ This counter does not increment for group
223
+ encoding schemes greater than 4 bits per group.
224
+
225
+ For interfaces operating at 10 Gb/s, this
226
+ counter can roll over in less than 5 minutes if
227
+ it is incrementing at its maximum rate. Since
228
+ that amount of time could be less than a
229
+ management station's poll cycle time, in order
230
+ to avoid a loss of information, a management
231
+ station is advised to poll the
232
+ dot3HCStatsAlignmentErrors object for 10 Gb/s
233
+ or faster interfaces.
234
+
235
+ Discontinuities in the value of this counter can
236
+ occur at re-initialization of the management
237
+ system, and at other times as indicated by the
238
+ value of ifCounterDiscontinuityTime.""",
239
+ "reference" :
240
+ """[IEEE 802.3 Std.], 30.3.1.1.7,
241
+ aAlignmentErrors""",
242
+ }, # column
243
+ "dot3StatsFCSErrors" : {
244
+ "nodetype" : "column",
245
+ "moduleName" : "EtherLike-MIB",
246
+ "oid" : "1.3.6.1.2.1.10.7.2.1.3",
247
+ "status" : "current",
248
+ "syntax" : {
249
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
250
+ },
251
+ "access" : "readonly",
252
+ "description" :
253
+ """A count of frames received on a particular
254
+ interface that are an integral number of octets
255
+ in length but do not pass the FCS check. This
256
+ count does not include frames received with
257
+ frame-too-long or frame-too-short error.
258
+
259
+ The count represented by an instance of this
260
+ object is incremented when the frameCheckError
261
+ status is returned by the MAC service to the
262
+ LLC (or other MAC user). Received frames for
263
+ which multiple error conditions pertain are,
264
+ according to the conventions of IEEE 802.3
265
+ Layer Management, counted exclusively according
266
+ to the error status presented to the LLC.
267
+
268
+ Note: Coding errors detected by the physical
269
+ layer for speeds above 10 Mb/s will cause the
270
+ frame to fail the FCS check.
271
+
272
+ For interfaces operating at 10 Gb/s, this
273
+ counter can roll over in less than 5 minutes if
274
+
275
+
276
+
277
+ it is incrementing at its maximum rate. Since
278
+ that amount of time could be less than a
279
+ management station's poll cycle time, in order
280
+ to avoid a loss of information, a management
281
+ station is advised to poll the
282
+ dot3HCStatsFCSErrors object for 10 Gb/s or
283
+ faster interfaces.
284
+
285
+ Discontinuities in the value of this counter can
286
+ occur at re-initialization of the management
287
+ system, and at other times as indicated by the
288
+ value of ifCounterDiscontinuityTime.""",
289
+ "reference" :
290
+ """[IEEE 802.3 Std.], 30.3.1.1.6,
291
+ aFrameCheckSequenceErrors.""",
292
+ }, # column
293
+ "dot3StatsSingleCollisionFrames" : {
294
+ "nodetype" : "column",
295
+ "moduleName" : "EtherLike-MIB",
296
+ "oid" : "1.3.6.1.2.1.10.7.2.1.4",
297
+ "status" : "current",
298
+ "syntax" : {
299
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
300
+ },
301
+ "access" : "readonly",
302
+ "description" :
303
+ """A count of frames that are involved in a single
304
+ collision, and are subsequently transmitted
305
+ successfully.
306
+
307
+ A frame that is counted by an instance of this
308
+ object is also counted by the corresponding
309
+ instance of either the ifOutUcastPkts,
310
+ ifOutMulticastPkts, or ifOutBroadcastPkts,
311
+ and is not counted by the corresponding
312
+ instance of the dot3StatsMultipleCollisionFrames
313
+ object.
314
+
315
+ This counter does not increment when the
316
+ interface is operating in full-duplex mode.
317
+
318
+ Discontinuities in the value of this counter can
319
+ occur at re-initialization of the management
320
+ system, and at other times as indicated by the
321
+ value of ifCounterDiscontinuityTime.""",
322
+ "reference" :
323
+ """[IEEE 802.3 Std.], 30.3.1.1.3,
324
+ aSingleCollisionFrames.""",
325
+ }, # column
326
+ "dot3StatsMultipleCollisionFrames" : {
327
+ "nodetype" : "column",
328
+ "moduleName" : "EtherLike-MIB",
329
+ "oid" : "1.3.6.1.2.1.10.7.2.1.5",
330
+ "status" : "current",
331
+ "syntax" : {
332
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
333
+ },
334
+ "access" : "readonly",
335
+ "description" :
336
+ """A count of frames that are involved in more
337
+
338
+
339
+
340
+ than one collision and are subsequently
341
+ transmitted successfully.
342
+
343
+ A frame that is counted by an instance of this
344
+ object is also counted by the corresponding
345
+ instance of either the ifOutUcastPkts,
346
+ ifOutMulticastPkts, or ifOutBroadcastPkts,
347
+ and is not counted by the corresponding
348
+ instance of the dot3StatsSingleCollisionFrames
349
+ object.
350
+
351
+ This counter does not increment when the
352
+ interface is operating in full-duplex mode.
353
+
354
+ Discontinuities in the value of this counter can
355
+ occur at re-initialization of the management
356
+ system, and at other times as indicated by the
357
+ value of ifCounterDiscontinuityTime.""",
358
+ "reference" :
359
+ """[IEEE 802.3 Std.], 30.3.1.1.4,
360
+ aMultipleCollisionFrames.""",
361
+ }, # column
362
+ "dot3StatsSQETestErrors" : {
363
+ "nodetype" : "column",
364
+ "moduleName" : "EtherLike-MIB",
365
+ "oid" : "1.3.6.1.2.1.10.7.2.1.6",
366
+ "status" : "current",
367
+ "syntax" : {
368
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
369
+ },
370
+ "access" : "readonly",
371
+ "description" :
372
+ """A count of times that the SQE TEST ERROR
373
+ is received on a particular interface. The
374
+ SQE TEST ERROR is set in accordance with the
375
+ rules for verification of the SQE detection
376
+ mechanism in the PLS Carrier Sense Function as
377
+ described in IEEE Std. 802.3, 2000 Edition,
378
+ section 7.2.4.6.
379
+
380
+ This counter does not increment on interfaces
381
+ operating at speeds greater than 10 Mb/s, or on
382
+ interfaces operating in full-duplex mode.
383
+
384
+ Discontinuities in the value of this counter can
385
+ occur at re-initialization of the management
386
+ system, and at other times as indicated by the
387
+ value of ifCounterDiscontinuityTime.""",
388
+ "reference" :
389
+ """[IEEE 802.3 Std.], 7.2.4.6, also 30.3.2.1.4,
390
+ aSQETestErrors.""",
391
+ }, # column
392
+ "dot3StatsDeferredTransmissions" : {
393
+ "nodetype" : "column",
394
+ "moduleName" : "EtherLike-MIB",
395
+ "oid" : "1.3.6.1.2.1.10.7.2.1.7",
396
+ "status" : "current",
397
+ "syntax" : {
398
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
399
+ },
400
+ "access" : "readonly",
401
+ "description" :
402
+ """A count of frames for which the first
403
+ transmission attempt on a particular interface
404
+ is delayed because the medium is busy.
405
+
406
+ The count represented by an instance of this
407
+ object does not include frames involved in
408
+ collisions.
409
+
410
+ This counter does not increment when the
411
+ interface is operating in full-duplex mode.
412
+
413
+ Discontinuities in the value of this counter can
414
+ occur at re-initialization of the management
415
+ system, and at other times as indicated by the
416
+ value of ifCounterDiscontinuityTime.""",
417
+ "reference" :
418
+ """[IEEE 802.3 Std.], 30.3.1.1.9,
419
+ aFramesWithDeferredXmissions.""",
420
+ }, # column
421
+ "dot3StatsLateCollisions" : {
422
+ "nodetype" : "column",
423
+ "moduleName" : "EtherLike-MIB",
424
+ "oid" : "1.3.6.1.2.1.10.7.2.1.8",
425
+ "status" : "current",
426
+ "syntax" : {
427
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
428
+ },
429
+ "access" : "readonly",
430
+ "description" :
431
+ """The number of times that a collision is
432
+ detected on a particular interface later than
433
+ one slotTime into the transmission of a packet.
434
+
435
+ A (late) collision included in a count
436
+ represented by an instance of this object is
437
+ also considered as a (generic) collision for
438
+ purposes of other collision-related
439
+ statistics.
440
+
441
+ This counter does not increment when the
442
+ interface is operating in full-duplex mode.
443
+
444
+ Discontinuities in the value of this counter can
445
+ occur at re-initialization of the management
446
+ system, and at other times as indicated by the
447
+ value of ifCounterDiscontinuityTime.""",
448
+ "reference" :
449
+ """[IEEE 802.3 Std.], 30.3.1.1.10,
450
+ aLateCollisions.""",
451
+ }, # column
452
+ "dot3StatsExcessiveCollisions" : {
453
+ "nodetype" : "column",
454
+ "moduleName" : "EtherLike-MIB",
455
+ "oid" : "1.3.6.1.2.1.10.7.2.1.9",
456
+ "status" : "current",
457
+ "syntax" : {
458
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
459
+ },
460
+ "access" : "readonly",
461
+ "description" :
462
+ """A count of frames for which transmission on a
463
+ particular interface fails due to excessive
464
+ collisions.
465
+
466
+ This counter does not increment when the
467
+ interface is operating in full-duplex mode.
468
+
469
+ Discontinuities in the value of this counter can
470
+ occur at re-initialization of the management
471
+ system, and at other times as indicated by the
472
+ value of ifCounterDiscontinuityTime.""",
473
+ "reference" :
474
+ """[IEEE 802.3 Std.], 30.3.1.1.11,
475
+ aFramesAbortedDueToXSColls.""",
476
+ }, # column
477
+ "dot3StatsInternalMacTransmitErrors" : {
478
+ "nodetype" : "column",
479
+ "moduleName" : "EtherLike-MIB",
480
+ "oid" : "1.3.6.1.2.1.10.7.2.1.10",
481
+ "status" : "current",
482
+ "syntax" : {
483
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
484
+ },
485
+ "access" : "readonly",
486
+ "description" :
487
+ """A count of frames for which transmission on a
488
+ particular interface fails due to an internal
489
+ MAC sublayer transmit error. A frame is only
490
+ counted by an instance of this object if it is
491
+ not counted by the corresponding instance of
492
+ either the dot3StatsLateCollisions object, the
493
+ dot3StatsExcessiveCollisions object, or the
494
+ dot3StatsCarrierSenseErrors object.
495
+
496
+ The precise meaning of the count represented by
497
+ an instance of this object is implementation-
498
+ specific. In particular, an instance of this
499
+ object may represent a count of transmission
500
+ errors on a particular interface that are not
501
+ otherwise counted.
502
+
503
+ For interfaces operating at 10 Gb/s, this
504
+ counter can roll over in less than 5 minutes if
505
+ it is incrementing at its maximum rate. Since
506
+ that amount of time could be less than a
507
+ management station's poll cycle time, in order
508
+ to avoid a loss of information, a management
509
+ station is advised to poll the
510
+ dot3HCStatsInternalMacTransmitErrors object for
511
+ 10 Gb/s or faster interfaces.
512
+
513
+ Discontinuities in the value of this counter can
514
+
515
+
516
+
517
+ occur at re-initialization of the management
518
+ system, and at other times as indicated by the
519
+ value of ifCounterDiscontinuityTime.""",
520
+ "reference" :
521
+ """[IEEE 802.3 Std.], 30.3.1.1.12,
522
+ aFramesLostDueToIntMACXmitError.""",
523
+ }, # column
524
+ "dot3StatsCarrierSenseErrors" : {
525
+ "nodetype" : "column",
526
+ "moduleName" : "EtherLike-MIB",
527
+ "oid" : "1.3.6.1.2.1.10.7.2.1.11",
528
+ "status" : "current",
529
+ "syntax" : {
530
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
531
+ },
532
+ "access" : "readonly",
533
+ "description" :
534
+ """The number of times that the carrier sense
535
+ condition was lost or never asserted when
536
+ attempting to transmit a frame on a particular
537
+ interface.
538
+
539
+ The count represented by an instance of this
540
+ object is incremented at most once per
541
+ transmission attempt, even if the carrier sense
542
+ condition fluctuates during a transmission
543
+ attempt.
544
+
545
+ This counter does not increment when the
546
+ interface is operating in full-duplex mode.
547
+
548
+ Discontinuities in the value of this counter can
549
+ occur at re-initialization of the management
550
+ system, and at other times as indicated by the
551
+ value of ifCounterDiscontinuityTime.""",
552
+ "reference" :
553
+ """[IEEE 802.3 Std.], 30.3.1.1.13,
554
+ aCarrierSenseErrors.""",
555
+ }, # column
556
+ "dot3StatsFrameTooLongs" : {
557
+ "nodetype" : "column",
558
+ "moduleName" : "EtherLike-MIB",
559
+ "oid" : "1.3.6.1.2.1.10.7.2.1.13",
560
+ "status" : "current",
561
+ "syntax" : {
562
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
563
+ },
564
+ "access" : "readonly",
565
+ "description" :
566
+ """A count of frames received on a particular
567
+ interface that exceed the maximum permitted
568
+ frame size.
569
+
570
+ The count represented by an instance of this
571
+ object is incremented when the frameTooLong
572
+ status is returned by the MAC service to the
573
+ LLC (or other MAC user). Received frames for
574
+ which multiple error conditions pertain are,
575
+
576
+
577
+
578
+ according to the conventions of IEEE 802.3
579
+ Layer Management, counted exclusively according
580
+ to the error status presented to the LLC.
581
+
582
+ For interfaces operating at 10 Gb/s, this
583
+ counter can roll over in less than 80 minutes if
584
+ it is incrementing at its maximum rate. Since
585
+ that amount of time could be less than a
586
+ management station's poll cycle time, in order
587
+ to avoid a loss of information, a management
588
+ station is advised to poll the
589
+ dot3HCStatsFrameTooLongs object for 10 Gb/s
590
+ or faster interfaces.
591
+
592
+ Discontinuities in the value of this counter can
593
+ occur at re-initialization of the management
594
+ system, and at other times as indicated by the
595
+ value of ifCounterDiscontinuityTime.""",
596
+ "reference" :
597
+ """[IEEE 802.3 Std.], 30.3.1.1.25,
598
+ aFrameTooLongErrors.""",
599
+ }, # column
600
+ "dot3StatsInternalMacReceiveErrors" : {
601
+ "nodetype" : "column",
602
+ "moduleName" : "EtherLike-MIB",
603
+ "oid" : "1.3.6.1.2.1.10.7.2.1.16",
604
+ "status" : "current",
605
+ "syntax" : {
606
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
607
+ },
608
+ "access" : "readonly",
609
+ "description" :
610
+ """A count of frames for which reception on a
611
+ particular interface fails due to an internal
612
+ MAC sublayer receive error. A frame is only
613
+ counted by an instance of this object if it is
614
+ not counted by the corresponding instance of
615
+ either the dot3StatsFrameTooLongs object, the
616
+ dot3StatsAlignmentErrors object, or the
617
+ dot3StatsFCSErrors object.
618
+
619
+ The precise meaning of the count represented by
620
+ an instance of this object is implementation-
621
+ specific. In particular, an instance of this
622
+ object may represent a count of receive errors
623
+ on a particular interface that are not
624
+ otherwise counted.
625
+
626
+ For interfaces operating at 10 Gb/s, this
627
+ counter can roll over in less than 5 minutes if
628
+
629
+
630
+
631
+ it is incrementing at its maximum rate. Since
632
+ that amount of time could be less than a
633
+ management station's poll cycle time, in order
634
+ to avoid a loss of information, a management
635
+ station is advised to poll the
636
+ dot3HCStatsInternalMacReceiveErrors object for
637
+ 10 Gb/s or faster interfaces.
638
+
639
+ Discontinuities in the value of this counter can
640
+ occur at re-initialization of the management
641
+ system, and at other times as indicated by the
642
+ value of ifCounterDiscontinuityTime.""",
643
+ "reference" :
644
+ """[IEEE 802.3 Std.], 30.3.1.1.15,
645
+ aFramesLostDueToIntMACRcvError.""",
646
+ }, # column
647
+ "dot3StatsEtherChipSet" : {
648
+ "nodetype" : "column",
649
+ "moduleName" : "EtherLike-MIB",
650
+ "oid" : "1.3.6.1.2.1.10.7.2.1.17",
651
+ "status" : "deprecated",
652
+ "syntax" : {
653
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
654
+ },
655
+ "access" : "readonly",
656
+ "description" :
657
+ """******** THIS OBJECT IS DEPRECATED ********
658
+
659
+ This object contains an OBJECT IDENTIFIER
660
+ which identifies the chipset used to
661
+ realize the interface. Ethernet-like
662
+ interfaces are typically built out of
663
+ several different chips. The MIB implementor
664
+ is presented with a decision of which chip
665
+ to identify via this object. The implementor
666
+ should identify the chip which is usually
667
+ called the Medium Access Control chip.
668
+ If no such chip is easily identifiable,
669
+ the implementor should identify the chip
670
+ which actually gathers the transmit
671
+ and receive statistics and error
672
+ indications. This would allow a
673
+ manager station to correlate the
674
+ statistics and the chip generating
675
+ them, giving it the ability to take
676
+ into account any known anomalies
677
+ in the chip.
678
+
679
+ This object has been deprecated. Implementation
680
+ feedback indicates that it is of limited use for
681
+ debugging network problems in the field, and
682
+ the administrative overhead involved in
683
+ maintaining a registry of chipset OIDs is not
684
+ justified.""",
685
+ }, # column
686
+ "dot3StatsSymbolErrors" : {
687
+ "nodetype" : "column",
688
+ "moduleName" : "EtherLike-MIB",
689
+ "oid" : "1.3.6.1.2.1.10.7.2.1.18",
690
+ "status" : "current",
691
+ "syntax" : {
692
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
693
+ },
694
+ "access" : "readonly",
695
+ "description" :
696
+ """For an interface operating at 100 Mb/s, the
697
+ number of times there was an invalid data symbol
698
+ when a valid carrier was present.
699
+
700
+ For an interface operating in half-duplex mode
701
+ at 1000 Mb/s, the number of times the receiving
702
+ media is non-idle (a carrier event) for a period
703
+ of time equal to or greater than slotTime, and
704
+ during which there was at least one occurrence
705
+ of an event that causes the PHY to indicate
706
+ 'Data reception error' or 'carrier extend error'
707
+ on the GMII.
708
+
709
+ For an interface operating in full-duplex mode
710
+ at 1000 Mb/s, the number of times the receiving
711
+ media is non-idle (a carrier event) for a period
712
+ of time equal to or greater than minFrameSize,
713
+ and during which there was at least one
714
+ occurrence of an event that causes the PHY to
715
+ indicate 'Data reception error' on the GMII.
716
+
717
+ For an interface operating at 10 Gb/s, the
718
+ number of times the receiving media is non-idle
719
+ (a carrier event) for a period of time equal to
720
+ or greater than minFrameSize, and during which
721
+ there was at least one occurrence of an event
722
+ that causes the PHY to indicate 'Receive Error'
723
+ on the XGMII.
724
+
725
+ The count represented by an instance of this
726
+ object is incremented at most once per carrier
727
+ event, even if multiple symbol errors occur
728
+ during the carrier event. This count does
729
+ not increment if a collision is present.
730
+
731
+ This counter does not increment when the
732
+ interface is operating at 10 Mb/s.
733
+
734
+ For interfaces operating at 10 Gb/s, this
735
+ counter can roll over in less than 5 minutes if
736
+ it is incrementing at its maximum rate. Since
737
+ that amount of time could be less than a
738
+
739
+
740
+
741
+ management station's poll cycle time, in order
742
+ to avoid a loss of information, a management
743
+ station is advised to poll the
744
+ dot3HCStatsSymbolErrors object for 10 Gb/s
745
+ or faster interfaces.
746
+
747
+ Discontinuities in the value of this counter can
748
+ occur at re-initialization of the management
749
+ system, and at other times as indicated by the
750
+ value of ifCounterDiscontinuityTime.""",
751
+ "reference" :
752
+ """[IEEE 802.3 Std.], 30.3.2.1.5,
753
+ aSymbolErrorDuringCarrier.""",
754
+ }, # column
755
+ "dot3StatsDuplexStatus" : {
756
+ "nodetype" : "column",
757
+ "moduleName" : "EtherLike-MIB",
758
+ "oid" : "1.3.6.1.2.1.10.7.2.1.19",
759
+ "status" : "current",
760
+ "syntax" : {
761
+ "type" : {
762
+ "basetype" : "Enumeration",
763
+ "unknown" : {
764
+ "nodetype" : "namednumber",
765
+ "number" : "1"
766
+ },
767
+ "halfDuplex" : {
768
+ "nodetype" : "namednumber",
769
+ "number" : "2"
770
+ },
771
+ "fullDuplex" : {
772
+ "nodetype" : "namednumber",
773
+ "number" : "3"
774
+ },
775
+ },
776
+ },
777
+ "access" : "readonly",
778
+ "description" :
779
+ """The current mode of operation of the MAC
780
+ entity. 'unknown' indicates that the current
781
+ duplex mode could not be determined.
782
+
783
+ Management control of the duplex mode is
784
+ accomplished through the MAU MIB. When
785
+ an interface does not support autonegotiation,
786
+ or when autonegotiation is not enabled, the
787
+ duplex mode is controlled using
788
+ ifMauDefaultType. When autonegotiation is
789
+ supported and enabled, duplex mode is controlled
790
+ using ifMauAutoNegAdvertisedBits. In either
791
+ case, the currently operating duplex mode is
792
+ reflected both in this object and in ifMauType.
793
+
794
+ Note that this object provides redundant
795
+ information with ifMauType. Normally, redundant
796
+ objects are discouraged. However, in this
797
+ instance, it allows a management application to
798
+ determine the duplex status of an interface
799
+ without having to know every possible value of
800
+ ifMauType. This was felt to be sufficiently
801
+ valuable to justify the redundancy.""",
802
+ "reference" :
803
+ """[IEEE 802.3 Std.], 30.3.1.1.32,
804
+ aDuplexStatus.""",
805
+ }, # column
806
+ "dot3StatsRateControlAbility" : {
807
+ "nodetype" : "column",
808
+ "moduleName" : "EtherLike-MIB",
809
+ "oid" : "1.3.6.1.2.1.10.7.2.1.20",
810
+ "status" : "current",
811
+ "syntax" : {
812
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
813
+ },
814
+ "access" : "readonly",
815
+ "description" :
816
+ """'true' for interfaces operating at speeds above
817
+ 1000 Mb/s that support Rate Control through
818
+ lowering the average data rate of the MAC
819
+ sublayer, with frame granularity, and 'false'
820
+ otherwise.""",
821
+ "reference" :
822
+ """[IEEE 802.3 Std.], 30.3.1.1.33,
823
+ aRateControlAbility.""",
824
+ }, # column
825
+ "dot3StatsRateControlStatus" : {
826
+ "nodetype" : "column",
827
+ "moduleName" : "EtherLike-MIB",
828
+ "oid" : "1.3.6.1.2.1.10.7.2.1.21",
829
+ "status" : "current",
830
+ "syntax" : {
831
+ "type" : {
832
+ "basetype" : "Enumeration",
833
+ "rateControlOff" : {
834
+ "nodetype" : "namednumber",
835
+ "number" : "1"
836
+ },
837
+ "rateControlOn" : {
838
+ "nodetype" : "namednumber",
839
+ "number" : "2"
840
+ },
841
+ "unknown" : {
842
+ "nodetype" : "namednumber",
843
+ "number" : "3"
844
+ },
845
+ },
846
+ },
847
+ "access" : "readonly",
848
+ "description" :
849
+ """The current Rate Control mode of operation of
850
+ the MAC sublayer of this interface.""",
851
+ "reference" :
852
+ """[IEEE 802.3 Std.], 30.3.1.1.34,
853
+ aRateControlStatus.""",
854
+ }, # column
855
+ "dot3CollTable" : {
856
+ "nodetype" : "table",
857
+ "moduleName" : "EtherLike-MIB",
858
+ "oid" : "1.3.6.1.2.1.10.7.5",
859
+ "status" : "current",
860
+ "description" :
861
+ """A collection of collision histograms for a
862
+ particular set of interfaces.""",
863
+ "reference" :
864
+ """[IEEE 802.3 Std.], 30.3.1.1.30,
865
+ aCollisionFrames.""",
866
+ }, # table
867
+ "dot3CollEntry" : {
868
+ "nodetype" : "row",
869
+ "moduleName" : "EtherLike-MIB",
870
+ "oid" : "1.3.6.1.2.1.10.7.5.1",
871
+ "status" : "current",
872
+ "linkage" : [
873
+ "ifIndex",
874
+ "dot3CollCount",
875
+ ],
876
+ "description" :
877
+ """A cell in the histogram of per-frame
878
+ collisions for a particular interface. An
879
+
880
+
881
+
882
+ instance of this object represents the
883
+ frequency of individual MAC frames for which
884
+ the transmission (successful or otherwise) on a
885
+ particular interface is accompanied by a
886
+ particular number of media collisions.""",
887
+ }, # row
888
+ "dot3CollCount" : {
889
+ "nodetype" : "column",
890
+ "moduleName" : "EtherLike-MIB",
891
+ "oid" : "1.3.6.1.2.1.10.7.5.1.2",
892
+ "status" : "current",
893
+ "syntax" : {
894
+ "type" : {
895
+ "basetype" : "Integer32",
896
+ "ranges" : [
897
+ {
898
+ "min" : "1",
899
+ "max" : "16"
900
+ },
901
+ ],
902
+ "range" : {
903
+ "min" : "1",
904
+ "max" : "16"
905
+ },
906
+ },
907
+ },
908
+ "access" : "noaccess",
909
+ "description" :
910
+ """The number of per-frame media collisions for
911
+ which a particular collision histogram cell
912
+ represents the frequency on a particular
913
+ interface.""",
914
+ }, # column
915
+ "dot3CollFrequencies" : {
916
+ "nodetype" : "column",
917
+ "moduleName" : "EtherLike-MIB",
918
+ "oid" : "1.3.6.1.2.1.10.7.5.1.3",
919
+ "status" : "current",
920
+ "syntax" : {
921
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
922
+ },
923
+ "access" : "readonly",
924
+ "description" :
925
+ """A count of individual MAC frames for which the
926
+ transmission (successful or otherwise) on a
927
+ particular interface occurs after the
928
+ frame has experienced exactly the number
929
+ of collisions in the associated
930
+ dot3CollCount object.
931
+
932
+ For example, a frame which is transmitted
933
+ on interface 77 after experiencing
934
+ exactly 4 collisions would be indicated
935
+ by incrementing only dot3CollFrequencies.77.4.
936
+ No other instance of dot3CollFrequencies would
937
+ be incremented in this example.
938
+
939
+ This counter does not increment when the
940
+ interface is operating in full-duplex mode.
941
+
942
+ Discontinuities in the value of this counter can
943
+
944
+
945
+
946
+ occur at re-initialization of the management
947
+ system, and at other times as indicated by the
948
+ value of ifCounterDiscontinuityTime.""",
949
+ }, # column
950
+ "dot3Tests" : {
951
+ "nodetype" : "node",
952
+ "moduleName" : "EtherLike-MIB",
953
+ "oid" : "1.3.6.1.2.1.10.7.6",
954
+ }, # node
955
+ "dot3TestTdr" : {
956
+ "nodetype" : "node",
957
+ "moduleName" : "EtherLike-MIB",
958
+ "oid" : "1.3.6.1.2.1.10.7.6.1",
959
+ "status" : "deprecated",
960
+ "description" :
961
+ """******** THIS IDENTITY IS DEPRECATED *******
962
+
963
+ The Time-Domain Reflectometry (TDR) test is
964
+ specific to ethernet-like interfaces of type
965
+ 10Base5 and 10Base2. The TDR value may be
966
+ useful in determining the approximate distance
967
+ to a cable fault. It is advisable to repeat
968
+ this test to check for a consistent resulting
969
+ TDR value, to verify that there is a fault.
970
+
971
+ A TDR test returns as its result the time
972
+ interval, measured in 10 MHz ticks or 100 nsec
973
+ units, between the start of TDR test
974
+ transmission and the subsequent detection of a
975
+ collision or deassertion of carrier. On
976
+ successful completion of a TDR test, the result
977
+ is stored as the value of an appropriate
978
+ instance of an appropriate vendor specific MIB
979
+ object, and the OBJECT IDENTIFIER of that
980
+ instance is stored in the appropriate instance
981
+ of the appropriate test result code object
982
+ (thereby indicating where the result has been
983
+ stored).
984
+
985
+ This object identity has been deprecated, since
986
+ the ifTestTable in the IF-MIB was deprecated,
987
+ and there is no longer a standard mechanism for
988
+ initiating an interface test. This left no
989
+ standard way of using this object identity.""",
990
+ }, # node
991
+ "dot3TestLoopBack" : {
992
+ "nodetype" : "node",
993
+ "moduleName" : "EtherLike-MIB",
994
+ "oid" : "1.3.6.1.2.1.10.7.6.2",
995
+ "status" : "deprecated",
996
+ "description" :
997
+ """******** THIS IDENTITY IS DEPRECATED *******
998
+
999
+ This test configures the MAC chip and executes
1000
+ an internal loopback test of memory, data paths,
1001
+ and the MAC chip logic. This loopback test can
1002
+ only be executed if the interface is offline.
1003
+ Once the test has completed, the MAC chip should
1004
+
1005
+
1006
+
1007
+ be reinitialized for network operation, but it
1008
+ should remain offline.
1009
+
1010
+ If an error occurs during a test, the
1011
+ appropriate test result object will be set
1012
+ to indicate a failure. The two OBJECT
1013
+ IDENTIFIER values dot3ErrorInitError and
1014
+ dot3ErrorLoopbackError may be used to provided
1015
+ more information as values for an appropriate
1016
+ test result code object.
1017
+
1018
+ This object identity has been deprecated, since
1019
+ the ifTestTable in the IF-MIB was deprecated,
1020
+ and there is no longer a standard mechanism for
1021
+ initiating an interface test. This left no
1022
+ standard way of using this object identity.""",
1023
+ }, # node
1024
+ "dot3Errors" : {
1025
+ "nodetype" : "node",
1026
+ "moduleName" : "EtherLike-MIB",
1027
+ "oid" : "1.3.6.1.2.1.10.7.7",
1028
+ }, # node
1029
+ "dot3ErrorInitError" : {
1030
+ "nodetype" : "node",
1031
+ "moduleName" : "EtherLike-MIB",
1032
+ "oid" : "1.3.6.1.2.1.10.7.7.1",
1033
+ "status" : "deprecated",
1034
+ "description" :
1035
+ """******** THIS IDENTITY IS DEPRECATED *******
1036
+
1037
+ Couldn't initialize MAC chip for test.
1038
+
1039
+ This object identity has been deprecated, since
1040
+ the ifTestTable in the IF-MIB was deprecated,
1041
+ and there is no longer a standard mechanism for
1042
+ initiating an interface test. This left no
1043
+ standard way of using this object identity.""",
1044
+ }, # node
1045
+ "dot3ErrorLoopbackError" : {
1046
+ "nodetype" : "node",
1047
+ "moduleName" : "EtherLike-MIB",
1048
+ "oid" : "1.3.6.1.2.1.10.7.7.2",
1049
+ "status" : "deprecated",
1050
+ "description" :
1051
+ """******** THIS IDENTITY IS DEPRECATED *******
1052
+
1053
+ Expected data not received (or not received
1054
+ correctly) in loopback test.
1055
+
1056
+ This object identity has been deprecated, since
1057
+ the ifTestTable in the IF-MIB was deprecated,
1058
+ and there is no longer a standard mechanism for
1059
+ initiating an interface test. This left no
1060
+ standard way of using this object identity.""",
1061
+ }, # node
1062
+ "dot3ControlTable" : {
1063
+ "nodetype" : "table",
1064
+ "moduleName" : "EtherLike-MIB",
1065
+ "oid" : "1.3.6.1.2.1.10.7.9",
1066
+ "status" : "current",
1067
+ "description" :
1068
+ """A table of descriptive and status information
1069
+ about the MAC Control sublayer on the
1070
+ ethernet-like interfaces attached to a
1071
+ particular system. There will be one row in
1072
+ this table for each ethernet-like interface in
1073
+ the system which implements the MAC Control
1074
+ sublayer. If some, but not all, of the
1075
+ ethernet-like interfaces in the system implement
1076
+ the MAC Control sublayer, there will be fewer
1077
+ rows in this table than in the dot3StatsTable.""",
1078
+ }, # table
1079
+ "dot3ControlEntry" : {
1080
+ "nodetype" : "row",
1081
+ "moduleName" : "EtherLike-MIB",
1082
+ "oid" : "1.3.6.1.2.1.10.7.9.1",
1083
+ "status" : "current",
1084
+ "linkage" : [
1085
+ "dot3StatsIndex",
1086
+ ],
1087
+ "description" :
1088
+ """An entry in the table, containing information
1089
+ about the MAC Control sublayer on a single
1090
+ ethernet-like interface.""",
1091
+ }, # row
1092
+ "dot3ControlFunctionsSupported" : {
1093
+ "nodetype" : "column",
1094
+ "moduleName" : "EtherLike-MIB",
1095
+ "oid" : "1.3.6.1.2.1.10.7.9.1.1",
1096
+ "status" : "current",
1097
+ "syntax" : {
1098
+ "type" : {
1099
+ "basetype" : "Bits",
1100
+ "pause" : {
1101
+ "nodetype" : "namednumber",
1102
+ "number" : "0"
1103
+ },
1104
+ },
1105
+ },
1106
+ "access" : "readonly",
1107
+ "description" :
1108
+ """A list of the possible MAC Control functions
1109
+ implemented for this interface.""",
1110
+ "reference" :
1111
+ """[IEEE 802.3 Std.], 30.3.3.2,
1112
+ aMACControlFunctionsSupported.""",
1113
+ }, # column
1114
+ "dot3ControlInUnknownOpcodes" : {
1115
+ "nodetype" : "column",
1116
+ "moduleName" : "EtherLike-MIB",
1117
+ "oid" : "1.3.6.1.2.1.10.7.9.1.2",
1118
+ "status" : "current",
1119
+ "syntax" : {
1120
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1121
+ },
1122
+ "access" : "readonly",
1123
+ "description" :
1124
+ """A count of MAC Control frames received on this
1125
+ interface that contain an opcode that is not
1126
+ supported by this device.
1127
+
1128
+ For interfaces operating at 10 Gb/s, this
1129
+ counter can roll over in less than 5 minutes if
1130
+ it is incrementing at its maximum rate. Since
1131
+ that amount of time could be less than a
1132
+ management station's poll cycle time, in order
1133
+ to avoid a loss of information, a management
1134
+ station is advised to poll the
1135
+ dot3HCControlInUnknownOpcodes object for 10 Gb/s
1136
+ or faster interfaces.
1137
+
1138
+ Discontinuities in the value of this counter can
1139
+ occur at re-initialization of the management
1140
+ system, and at other times as indicated by the
1141
+ value of ifCounterDiscontinuityTime.""",
1142
+ "reference" :
1143
+ """[IEEE 802.3 Std.], 30.3.3.5,
1144
+ aUnsupportedOpcodesReceived""",
1145
+ }, # column
1146
+ "dot3HCControlInUnknownOpcodes" : {
1147
+ "nodetype" : "column",
1148
+ "moduleName" : "EtherLike-MIB",
1149
+ "oid" : "1.3.6.1.2.1.10.7.9.1.3",
1150
+ "status" : "current",
1151
+ "syntax" : {
1152
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1153
+ },
1154
+ "access" : "readonly",
1155
+ "description" :
1156
+ """A count of MAC Control frames received on this
1157
+ interface that contain an opcode that is not
1158
+ supported by this device.
1159
+
1160
+ This counter is a 64 bit version of
1161
+ dot3ControlInUnknownOpcodes. It should be used
1162
+ on interfaces operating at 10 Gb/s or faster.
1163
+
1164
+ Discontinuities in the value of this counter can
1165
+ occur at re-initialization of the management
1166
+ system, and at other times as indicated by the
1167
+ value of ifCounterDiscontinuityTime.""",
1168
+ "reference" :
1169
+ """[IEEE 802.3 Std.], 30.3.3.5,
1170
+ aUnsupportedOpcodesReceived""",
1171
+ }, # column
1172
+ "dot3PauseTable" : {
1173
+ "nodetype" : "table",
1174
+ "moduleName" : "EtherLike-MIB",
1175
+ "oid" : "1.3.6.1.2.1.10.7.10",
1176
+ "status" : "current",
1177
+ "description" :
1178
+ """A table of descriptive and status information
1179
+ about the MAC Control PAUSE function on the
1180
+ ethernet-like interfaces attached to a
1181
+ particular system. There will be one row in
1182
+ this table for each ethernet-like interface in
1183
+ the system which supports the MAC Control PAUSE
1184
+ function (i.e., the 'pause' bit in the
1185
+ corresponding instance of
1186
+ dot3ControlFunctionsSupported is set). If some,
1187
+ but not all, of the ethernet-like interfaces in
1188
+ the system implement the MAC Control PAUSE
1189
+ function (for example, if some interfaces only
1190
+ support half-duplex), there will be fewer rows
1191
+ in this table than in the dot3StatsTable.""",
1192
+ }, # table
1193
+ "dot3PauseEntry" : {
1194
+ "nodetype" : "row",
1195
+ "moduleName" : "EtherLike-MIB",
1196
+ "oid" : "1.3.6.1.2.1.10.7.10.1",
1197
+ "status" : "current",
1198
+ "linkage" : [
1199
+ "dot3StatsIndex",
1200
+ ],
1201
+ "description" :
1202
+ """An entry in the table, containing information
1203
+ about the MAC Control PAUSE function on a single
1204
+ ethernet-like interface.""",
1205
+ }, # row
1206
+ "dot3PauseAdminMode" : {
1207
+ "nodetype" : "column",
1208
+ "moduleName" : "EtherLike-MIB",
1209
+ "oid" : "1.3.6.1.2.1.10.7.10.1.1",
1210
+ "status" : "current",
1211
+ "syntax" : {
1212
+ "type" : {
1213
+ "basetype" : "Enumeration",
1214
+ "disabled" : {
1215
+ "nodetype" : "namednumber",
1216
+ "number" : "1"
1217
+ },
1218
+ "enabledXmit" : {
1219
+ "nodetype" : "namednumber",
1220
+ "number" : "2"
1221
+ },
1222
+ "enabledRcv" : {
1223
+ "nodetype" : "namednumber",
1224
+ "number" : "3"
1225
+ },
1226
+ "enabledXmitAndRcv" : {
1227
+ "nodetype" : "namednumber",
1228
+ "number" : "4"
1229
+ },
1230
+ },
1231
+ },
1232
+ "access" : "readwrite",
1233
+ "description" :
1234
+ """This object is used to configure the default
1235
+ administrative PAUSE mode for this interface.
1236
+
1237
+ This object represents the
1238
+ administratively-configured PAUSE mode for this
1239
+ interface. If auto-negotiation is not enabled
1240
+ or is not implemented for the active MAU
1241
+ attached to this interface, the value of this
1242
+ object determines the operational PAUSE mode
1243
+ of the interface whenever it is operating in
1244
+ full-duplex mode. In this case, a set to this
1245
+ object will force the interface into the
1246
+ specified mode.
1247
+
1248
+ If auto-negotiation is implemented and enabled
1249
+ for the MAU attached to this interface, the
1250
+ PAUSE mode for this interface is determined by
1251
+ auto-negotiation, and the value of this object
1252
+ denotes the mode to which the interface will
1253
+ automatically revert if/when auto-negotiation is
1254
+ later disabled. Note that when auto-negotiation
1255
+ is running, administrative control of the PAUSE
1256
+ mode may be accomplished using the
1257
+ ifMauAutoNegCapAdvertisedBits object in the
1258
+ MAU-MIB.
1259
+
1260
+ Note that the value of this object is ignored
1261
+ when the interface is not operating in
1262
+ full-duplex mode.
1263
+
1264
+ An attempt to set this object to
1265
+ 'enabledXmit(2)' or 'enabledRcv(3)' will fail
1266
+ on interfaces that do not support operation
1267
+ at greater than 100 Mb/s.""",
1268
+ }, # column
1269
+ "dot3PauseOperMode" : {
1270
+ "nodetype" : "column",
1271
+ "moduleName" : "EtherLike-MIB",
1272
+ "oid" : "1.3.6.1.2.1.10.7.10.1.2",
1273
+ "status" : "current",
1274
+ "syntax" : {
1275
+ "type" : {
1276
+ "basetype" : "Enumeration",
1277
+ "disabled" : {
1278
+ "nodetype" : "namednumber",
1279
+ "number" : "1"
1280
+ },
1281
+ "enabledXmit" : {
1282
+ "nodetype" : "namednumber",
1283
+ "number" : "2"
1284
+ },
1285
+ "enabledRcv" : {
1286
+ "nodetype" : "namednumber",
1287
+ "number" : "3"
1288
+ },
1289
+ "enabledXmitAndRcv" : {
1290
+ "nodetype" : "namednumber",
1291
+ "number" : "4"
1292
+ },
1293
+ },
1294
+ },
1295
+ "access" : "readonly",
1296
+ "description" :
1297
+ """This object reflects the PAUSE mode currently
1298
+
1299
+
1300
+
1301
+ in use on this interface, as determined by
1302
+ either (1) the result of the auto-negotiation
1303
+ function or (2) if auto-negotiation is not
1304
+ enabled or is not implemented for the active MAU
1305
+ attached to this interface, by the value of
1306
+ dot3PauseAdminMode. Interfaces operating at
1307
+ 100 Mb/s or less will never return
1308
+ 'enabledXmit(2)' or 'enabledRcv(3)'. Interfaces
1309
+ operating in half-duplex mode will always return
1310
+ 'disabled(1)'. Interfaces on which
1311
+ auto-negotiation is enabled but not yet
1312
+ completed should return the value
1313
+ 'disabled(1)'.""",
1314
+ }, # column
1315
+ "dot3InPauseFrames" : {
1316
+ "nodetype" : "column",
1317
+ "moduleName" : "EtherLike-MIB",
1318
+ "oid" : "1.3.6.1.2.1.10.7.10.1.3",
1319
+ "status" : "current",
1320
+ "syntax" : {
1321
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1322
+ },
1323
+ "access" : "readonly",
1324
+ "description" :
1325
+ """A count of MAC Control frames received on this
1326
+ interface with an opcode indicating the PAUSE
1327
+ operation.
1328
+
1329
+ This counter does not increment when the
1330
+ interface is operating in half-duplex mode.
1331
+
1332
+ For interfaces operating at 10 Gb/s, this
1333
+ counter can roll over in less than 5 minutes if
1334
+ it is incrementing at its maximum rate. Since
1335
+ that amount of time could be less than a
1336
+ management station's poll cycle time, in order
1337
+ to avoid a loss of information, a management
1338
+ station is advised to poll the
1339
+ dot3HCInPauseFrames object for 10 Gb/s or
1340
+ faster interfaces.
1341
+
1342
+ Discontinuities in the value of this counter can
1343
+ occur at re-initialization of the management
1344
+ system, and at other times as indicated by the
1345
+ value of ifCounterDiscontinuityTime.""",
1346
+ "reference" :
1347
+ """[IEEE 802.3 Std.], 30.3.4.3,
1348
+ aPAUSEMACCtrlFramesReceived.""",
1349
+ }, # column
1350
+ "dot3OutPauseFrames" : {
1351
+ "nodetype" : "column",
1352
+ "moduleName" : "EtherLike-MIB",
1353
+ "oid" : "1.3.6.1.2.1.10.7.10.1.4",
1354
+ "status" : "current",
1355
+ "syntax" : {
1356
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1357
+ },
1358
+ "access" : "readonly",
1359
+ "description" :
1360
+ """A count of MAC Control frames transmitted on
1361
+ this interface with an opcode indicating the
1362
+ PAUSE operation.
1363
+
1364
+ This counter does not increment when the
1365
+ interface is operating in half-duplex mode.
1366
+
1367
+ For interfaces operating at 10 Gb/s, this
1368
+ counter can roll over in less than 5 minutes if
1369
+ it is incrementing at its maximum rate. Since
1370
+ that amount of time could be less than a
1371
+ management station's poll cycle time, in order
1372
+ to avoid a loss of information, a management
1373
+ station is advised to poll the
1374
+ dot3HCOutPauseFrames object for 10 Gb/s or
1375
+ faster interfaces.
1376
+
1377
+ Discontinuities in the value of this counter can
1378
+ occur at re-initialization of the management
1379
+ system, and at other times as indicated by the
1380
+ value of ifCounterDiscontinuityTime.""",
1381
+ "reference" :
1382
+ """[IEEE 802.3 Std.], 30.3.4.2,
1383
+ aPAUSEMACCtrlFramesTransmitted.""",
1384
+ }, # column
1385
+ "dot3HCInPauseFrames" : {
1386
+ "nodetype" : "column",
1387
+ "moduleName" : "EtherLike-MIB",
1388
+ "oid" : "1.3.6.1.2.1.10.7.10.1.5",
1389
+ "status" : "current",
1390
+ "syntax" : {
1391
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1392
+ },
1393
+ "access" : "readonly",
1394
+ "description" :
1395
+ """A count of MAC Control frames received on this
1396
+ interface with an opcode indicating the PAUSE
1397
+ operation.
1398
+
1399
+ This counter does not increment when the
1400
+ interface is operating in half-duplex mode.
1401
+
1402
+ This counter is a 64 bit version of
1403
+ dot3InPauseFrames. It should be used on
1404
+ interfaces operating at 10 Gb/s or faster.
1405
+
1406
+ Discontinuities in the value of this counter can
1407
+ occur at re-initialization of the management
1408
+ system, and at other times as indicated by the
1409
+ value of ifCounterDiscontinuityTime.""",
1410
+ "reference" :
1411
+ """[IEEE 802.3 Std.], 30.3.4.3,
1412
+ aPAUSEMACCtrlFramesReceived.""",
1413
+ }, # column
1414
+ "dot3HCOutPauseFrames" : {
1415
+ "nodetype" : "column",
1416
+ "moduleName" : "EtherLike-MIB",
1417
+ "oid" : "1.3.6.1.2.1.10.7.10.1.6",
1418
+ "status" : "current",
1419
+ "syntax" : {
1420
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1421
+ },
1422
+ "access" : "readonly",
1423
+ "description" :
1424
+ """A count of MAC Control frames transmitted on
1425
+ this interface with an opcode indicating the
1426
+ PAUSE operation.
1427
+
1428
+ This counter does not increment when the
1429
+ interface is operating in half-duplex mode.
1430
+
1431
+ This counter is a 64 bit version of
1432
+ dot3OutPauseFrames. It should be used on
1433
+ interfaces operating at 10 Gb/s or faster.
1434
+
1435
+ Discontinuities in the value of this counter can
1436
+ occur at re-initialization of the management
1437
+ system, and at other times as indicated by the
1438
+ value of ifCounterDiscontinuityTime.""",
1439
+ "reference" :
1440
+ """[IEEE 802.3 Std.], 30.3.4.2,
1441
+ aPAUSEMACCtrlFramesTransmitted.""",
1442
+ }, # column
1443
+ "dot3HCStatsTable" : {
1444
+ "nodetype" : "table",
1445
+ "moduleName" : "EtherLike-MIB",
1446
+ "oid" : "1.3.6.1.2.1.10.7.11",
1447
+ "status" : "current",
1448
+ "description" :
1449
+ """A table containing 64-bit versions of error
1450
+ counters from the dot3StatsTable. The 32-bit
1451
+ versions of these counters may roll over quite
1452
+ quickly on higher speed ethernet interfaces.
1453
+ The counters that have 64-bit versions in this
1454
+ table are the counters that apply to full-duplex
1455
+ interfaces, since 10 Gb/s and faster
1456
+ ethernet-like interfaces do not support
1457
+ half-duplex, and very few 1000 Mb/s
1458
+ ethernet-like interfaces support half-duplex.
1459
+
1460
+ Entries in this table are recommended for
1461
+ interfaces capable of operating at 1000 Mb/s or
1462
+ faster, and are required for interfaces capable
1463
+ of operating at 10 Gb/s or faster. Lower speed
1464
+ ethernet-like interfaces do not need entries in
1465
+ this table, in which case there may be fewer
1466
+ entries in this table than in the
1467
+ dot3StatsTable. However, implementations
1468
+ containing interfaces with a mix of speeds may
1469
+ choose to implement entries in this table for
1470
+
1471
+
1472
+
1473
+ all ethernet-like interfaces.""",
1474
+ }, # table
1475
+ "dot3HCStatsEntry" : {
1476
+ "nodetype" : "row",
1477
+ "moduleName" : "EtherLike-MIB",
1478
+ "oid" : "1.3.6.1.2.1.10.7.11.1",
1479
+ "status" : "current",
1480
+ "linkage" : [
1481
+ "dot3StatsIndex",
1482
+ ],
1483
+ "description" :
1484
+ """An entry containing 64-bit statistics for a
1485
+ single ethernet-like interface.""",
1486
+ }, # row
1487
+ "dot3HCStatsAlignmentErrors" : {
1488
+ "nodetype" : "column",
1489
+ "moduleName" : "EtherLike-MIB",
1490
+ "oid" : "1.3.6.1.2.1.10.7.11.1.1",
1491
+ "status" : "current",
1492
+ "syntax" : {
1493
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1494
+ },
1495
+ "access" : "readonly",
1496
+ "description" :
1497
+ """A count of frames received on a particular
1498
+ interface that are not an integral number of
1499
+ octets in length and do not pass the FCS check.
1500
+
1501
+ The count represented by an instance of this
1502
+ object is incremented when the alignmentError
1503
+ status is returned by the MAC service to the
1504
+ LLC (or other MAC user). Received frames for
1505
+ which multiple error conditions pertain are,
1506
+ according to the conventions of IEEE 802.3
1507
+ Layer Management, counted exclusively according
1508
+ to the error status presented to the LLC.
1509
+
1510
+ This counter does not increment for group
1511
+ encoding schemes greater than 4 bits per group.
1512
+
1513
+ This counter is a 64 bit version of
1514
+ dot3StatsAlignmentErrors. It should be used
1515
+ on interfaces operating at 10 Gb/s or faster.
1516
+
1517
+ Discontinuities in the value of this counter can
1518
+ occur at re-initialization of the management
1519
+
1520
+
1521
+
1522
+ system, and at other times as indicated by the
1523
+ value of ifCounterDiscontinuityTime.""",
1524
+ "reference" :
1525
+ """[IEEE 802.3 Std.], 30.3.1.1.7,
1526
+ aAlignmentErrors""",
1527
+ }, # column
1528
+ "dot3HCStatsFCSErrors" : {
1529
+ "nodetype" : "column",
1530
+ "moduleName" : "EtherLike-MIB",
1531
+ "oid" : "1.3.6.1.2.1.10.7.11.1.2",
1532
+ "status" : "current",
1533
+ "syntax" : {
1534
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1535
+ },
1536
+ "access" : "readonly",
1537
+ "description" :
1538
+ """A count of frames received on a particular
1539
+ interface that are an integral number of octets
1540
+ in length but do not pass the FCS check. This
1541
+ count does not include frames received with
1542
+ frame-too-long or frame-too-short error.
1543
+
1544
+ The count represented by an instance of this
1545
+ object is incremented when the frameCheckError
1546
+ status is returned by the MAC service to the
1547
+ LLC (or other MAC user). Received frames for
1548
+ which multiple error conditions pertain are,
1549
+ according to the conventions of IEEE 802.3
1550
+ Layer Management, counted exclusively according
1551
+ to the error status presented to the LLC.
1552
+
1553
+ Note: Coding errors detected by the physical
1554
+ layer for speeds above 10 Mb/s will cause the
1555
+ frame to fail the FCS check.
1556
+
1557
+ This counter is a 64 bit version of
1558
+ dot3StatsFCSErrors. It should be used on
1559
+ interfaces operating at 10 Gb/s or faster.
1560
+
1561
+ Discontinuities in the value of this counter can
1562
+ occur at re-initialization of the management
1563
+ system, and at other times as indicated by the
1564
+ value of ifCounterDiscontinuityTime.""",
1565
+ "reference" :
1566
+ """[IEEE 802.3 Std.], 30.3.1.1.6,
1567
+ aFrameCheckSequenceErrors.""",
1568
+ }, # column
1569
+ "dot3HCStatsInternalMacTransmitErrors" : {
1570
+ "nodetype" : "column",
1571
+ "moduleName" : "EtherLike-MIB",
1572
+ "oid" : "1.3.6.1.2.1.10.7.11.1.3",
1573
+ "status" : "current",
1574
+ "syntax" : {
1575
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1576
+ },
1577
+ "access" : "readonly",
1578
+ "description" :
1579
+ """A count of frames for which transmission on a
1580
+ particular interface fails due to an internal
1581
+ MAC sublayer transmit error. A frame is only
1582
+
1583
+
1584
+
1585
+ counted by an instance of this object if it is
1586
+ not counted by the corresponding instance of
1587
+ either the dot3StatsLateCollisions object, the
1588
+ dot3StatsExcessiveCollisions object, or the
1589
+ dot3StatsCarrierSenseErrors object.
1590
+
1591
+ The precise meaning of the count represented by
1592
+ an instance of this object is implementation-
1593
+ specific. In particular, an instance of this
1594
+ object may represent a count of transmission
1595
+ errors on a particular interface that are not
1596
+ otherwise counted.
1597
+
1598
+ This counter is a 64 bit version of
1599
+ dot3StatsInternalMacTransmitErrors. It should
1600
+ be used on interfaces operating at 10 Gb/s or
1601
+ faster.
1602
+
1603
+ Discontinuities in the value of this counter can
1604
+ occur at re-initialization of the management
1605
+ system, and at other times as indicated by the
1606
+ value of ifCounterDiscontinuityTime.""",
1607
+ "reference" :
1608
+ """[IEEE 802.3 Std.], 30.3.1.1.12,
1609
+ aFramesLostDueToIntMACXmitError.""",
1610
+ }, # column
1611
+ "dot3HCStatsFrameTooLongs" : {
1612
+ "nodetype" : "column",
1613
+ "moduleName" : "EtherLike-MIB",
1614
+ "oid" : "1.3.6.1.2.1.10.7.11.1.4",
1615
+ "status" : "current",
1616
+ "syntax" : {
1617
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1618
+ },
1619
+ "access" : "readonly",
1620
+ "description" :
1621
+ """A count of frames received on a particular
1622
+ interface that exceed the maximum permitted
1623
+ frame size.
1624
+
1625
+ The count represented by an instance of this
1626
+ object is incremented when the frameTooLong
1627
+ status is returned by the MAC service to the
1628
+ LLC (or other MAC user). Received frames for
1629
+ which multiple error conditions pertain are,
1630
+ according to the conventions of IEEE 802.3
1631
+ Layer Management, counted exclusively according
1632
+ to the error status presented to the LLC.
1633
+
1634
+ This counter is a 64 bit version of
1635
+ dot3StatsFrameTooLongs. It should be used on
1636
+ interfaces operating at 10 Gb/s or faster.
1637
+
1638
+ Discontinuities in the value of this counter can
1639
+
1640
+
1641
+
1642
+ occur at re-initialization of the management
1643
+ system, and at other times as indicated by the
1644
+ value of ifCounterDiscontinuityTime.""",
1645
+ "reference" :
1646
+ """[IEEE 802.3 Std.], 30.3.1.1.25,
1647
+ aFrameTooLongErrors.""",
1648
+ }, # column
1649
+ "dot3HCStatsInternalMacReceiveErrors" : {
1650
+ "nodetype" : "column",
1651
+ "moduleName" : "EtherLike-MIB",
1652
+ "oid" : "1.3.6.1.2.1.10.7.11.1.5",
1653
+ "status" : "current",
1654
+ "syntax" : {
1655
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1656
+ },
1657
+ "access" : "readonly",
1658
+ "description" :
1659
+ """A count of frames for which reception on a
1660
+ particular interface fails due to an internal
1661
+ MAC sublayer receive error. A frame is only
1662
+ counted by an instance of this object if it is
1663
+ not counted by the corresponding instance of
1664
+ either the dot3StatsFrameTooLongs object, the
1665
+ dot3StatsAlignmentErrors object, or the
1666
+ dot3StatsFCSErrors object.
1667
+
1668
+ The precise meaning of the count represented by
1669
+ an instance of this object is implementation-
1670
+ specific. In particular, an instance of this
1671
+ object may represent a count of receive errors
1672
+ on a particular interface that are not
1673
+ otherwise counted.
1674
+
1675
+ This counter is a 64 bit version of
1676
+ dot3StatsInternalMacReceiveErrors. It should be
1677
+ used on interfaces operating at 10 Gb/s or
1678
+ faster.
1679
+
1680
+ Discontinuities in the value of this counter can
1681
+ occur at re-initialization of the management
1682
+ system, and at other times as indicated by the
1683
+ value of ifCounterDiscontinuityTime.""",
1684
+ "reference" :
1685
+ """[IEEE 802.3 Std.], 30.3.1.1.15,
1686
+ aFramesLostDueToIntMACRcvError.""",
1687
+ }, # column
1688
+ "dot3HCStatsSymbolErrors" : {
1689
+ "nodetype" : "column",
1690
+ "moduleName" : "EtherLike-MIB",
1691
+ "oid" : "1.3.6.1.2.1.10.7.11.1.6",
1692
+ "status" : "current",
1693
+ "syntax" : {
1694
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1695
+ },
1696
+ "access" : "readonly",
1697
+ "description" :
1698
+ """For an interface operating at 100 Mb/s, the
1699
+ number of times there was an invalid data symbol
1700
+ when a valid carrier was present.
1701
+
1702
+
1703
+
1704
+
1705
+ For an interface operating in half-duplex mode
1706
+ at 1000 Mb/s, the number of times the receiving
1707
+ media is non-idle (a carrier event) for a period
1708
+ of time equal to or greater than slotTime, and
1709
+ during which there was at least one occurrence
1710
+ of an event that causes the PHY to indicate
1711
+ 'Data reception error' or 'carrier extend error'
1712
+ on the GMII.
1713
+
1714
+ For an interface operating in full-duplex mode
1715
+ at 1000 Mb/s, the number of times the receiving
1716
+ media is non-idle (a carrier event) for a period
1717
+ of time equal to or greater than minFrameSize,
1718
+ and during which there was at least one
1719
+ occurrence of an event that causes the PHY to
1720
+ indicate 'Data reception error' on the GMII.
1721
+
1722
+ For an interface operating at 10 Gb/s, the
1723
+ number of times the receiving media is non-idle
1724
+ (a carrier event) for a period of time equal to
1725
+ or greater than minFrameSize, and during which
1726
+ there was at least one occurrence of an event
1727
+ that causes the PHY to indicate 'Receive Error'
1728
+ on the XGMII.
1729
+
1730
+ The count represented by an instance of this
1731
+ object is incremented at most once per carrier
1732
+ event, even if multiple symbol errors occur
1733
+ during the carrier event. This count does
1734
+ not increment if a collision is present.
1735
+
1736
+ This counter is a 64 bit version of
1737
+ dot3StatsSymbolErrors. It should be used on
1738
+ interfaces operating at 10 Gb/s or faster.
1739
+
1740
+ Discontinuities in the value of this counter can
1741
+ occur at re-initialization of the management
1742
+ system, and at other times as indicated by the
1743
+ value of ifCounterDiscontinuityTime.""",
1744
+ "reference" :
1745
+ """[IEEE 802.3 Std.], 30.3.2.1.5,
1746
+ aSymbolErrorDuringCarrier.""",
1747
+ }, # column
1748
+ "etherMIB" : {
1749
+ "nodetype" : "node",
1750
+ "moduleName" : "EtherLike-MIB",
1751
+ "oid" : "1.3.6.1.2.1.35",
1752
+ "status" : "current",
1753
+ }, # node
1754
+ "etherMIBObjects" : {
1755
+ "nodetype" : "node",
1756
+ "moduleName" : "EtherLike-MIB",
1757
+ "oid" : "1.3.6.1.2.1.35.1",
1758
+ }, # node
1759
+ "etherConformance" : {
1760
+ "nodetype" : "node",
1761
+ "moduleName" : "EtherLike-MIB",
1762
+ "oid" : "1.3.6.1.2.1.35.2",
1763
+ }, # node
1764
+ "etherGroups" : {
1765
+ "nodetype" : "node",
1766
+ "moduleName" : "EtherLike-MIB",
1767
+ "oid" : "1.3.6.1.2.1.35.2.1",
1768
+ }, # node
1769
+ "etherCompliances" : {
1770
+ "nodetype" : "node",
1771
+ "moduleName" : "EtherLike-MIB",
1772
+ "oid" : "1.3.6.1.2.1.35.2.2",
1773
+ }, # node
1774
+ }, # nodes
1775
+
1776
+ "groups" : {
1777
+ "etherStatsGroup" : {
1778
+ "nodetype" : "group",
1779
+ "moduleName" : "EtherLike-MIB",
1780
+ "oid" : "1.3.6.1.2.1.35.2.1.1",
1781
+ "status" : "deprecated",
1782
+ "members" : {
1783
+ "dot3StatsIndex" : {
1784
+ "nodetype" : "member",
1785
+ "module" : "EtherLike-MIB"
1786
+ },
1787
+ "dot3StatsAlignmentErrors" : {
1788
+ "nodetype" : "member",
1789
+ "module" : "EtherLike-MIB"
1790
+ },
1791
+ "dot3StatsFCSErrors" : {
1792
+ "nodetype" : "member",
1793
+ "module" : "EtherLike-MIB"
1794
+ },
1795
+ "dot3StatsSingleCollisionFrames" : {
1796
+ "nodetype" : "member",
1797
+ "module" : "EtherLike-MIB"
1798
+ },
1799
+ "dot3StatsMultipleCollisionFrames" : {
1800
+ "nodetype" : "member",
1801
+ "module" : "EtherLike-MIB"
1802
+ },
1803
+ "dot3StatsSQETestErrors" : {
1804
+ "nodetype" : "member",
1805
+ "module" : "EtherLike-MIB"
1806
+ },
1807
+ "dot3StatsDeferredTransmissions" : {
1808
+ "nodetype" : "member",
1809
+ "module" : "EtherLike-MIB"
1810
+ },
1811
+ "dot3StatsLateCollisions" : {
1812
+ "nodetype" : "member",
1813
+ "module" : "EtherLike-MIB"
1814
+ },
1815
+ "dot3StatsExcessiveCollisions" : {
1816
+ "nodetype" : "member",
1817
+ "module" : "EtherLike-MIB"
1818
+ },
1819
+ "dot3StatsInternalMacTransmitErrors" : {
1820
+ "nodetype" : "member",
1821
+ "module" : "EtherLike-MIB"
1822
+ },
1823
+ "dot3StatsCarrierSenseErrors" : {
1824
+ "nodetype" : "member",
1825
+ "module" : "EtherLike-MIB"
1826
+ },
1827
+ "dot3StatsFrameTooLongs" : {
1828
+ "nodetype" : "member",
1829
+ "module" : "EtherLike-MIB"
1830
+ },
1831
+ "dot3StatsInternalMacReceiveErrors" : {
1832
+ "nodetype" : "member",
1833
+ "module" : "EtherLike-MIB"
1834
+ },
1835
+ "dot3StatsEtherChipSet" : {
1836
+ "nodetype" : "member",
1837
+ "module" : "EtherLike-MIB"
1838
+ },
1839
+ }, # members
1840
+ "description" :
1841
+ """********* THIS GROUP IS DEPRECATED **********
1842
+
1843
+ A collection of objects providing information
1844
+ applicable to all ethernet-like network
1845
+ interfaces.
1846
+
1847
+ This object group has been deprecated and
1848
+ replaced by etherStatsBaseGroup and
1849
+ etherStatsLowSpeedGroup.""",
1850
+ }, # group
1851
+ "etherCollisionTableGroup" : {
1852
+ "nodetype" : "group",
1853
+ "moduleName" : "EtherLike-MIB",
1854
+ "oid" : "1.3.6.1.2.1.35.2.1.2",
1855
+ "status" : "current",
1856
+ "members" : {
1857
+ "dot3CollFrequencies" : {
1858
+ "nodetype" : "member",
1859
+ "module" : "EtherLike-MIB"
1860
+ },
1861
+ }, # members
1862
+ "description" :
1863
+ """A collection of objects providing a histogram
1864
+ of packets successfully transmitted after
1865
+ experiencing exactly N collisions.""",
1866
+ }, # group
1867
+ "etherStats100MbsGroup" : {
1868
+ "nodetype" : "group",
1869
+ "moduleName" : "EtherLike-MIB",
1870
+ "oid" : "1.3.6.1.2.1.35.2.1.3",
1871
+ "status" : "deprecated",
1872
+ "members" : {
1873
+ "dot3StatsIndex" : {
1874
+ "nodetype" : "member",
1875
+ "module" : "EtherLike-MIB"
1876
+ },
1877
+ "dot3StatsAlignmentErrors" : {
1878
+ "nodetype" : "member",
1879
+ "module" : "EtherLike-MIB"
1880
+ },
1881
+ "dot3StatsFCSErrors" : {
1882
+ "nodetype" : "member",
1883
+ "module" : "EtherLike-MIB"
1884
+ },
1885
+ "dot3StatsSingleCollisionFrames" : {
1886
+ "nodetype" : "member",
1887
+ "module" : "EtherLike-MIB"
1888
+ },
1889
+ "dot3StatsMultipleCollisionFrames" : {
1890
+ "nodetype" : "member",
1891
+ "module" : "EtherLike-MIB"
1892
+ },
1893
+ "dot3StatsDeferredTransmissions" : {
1894
+ "nodetype" : "member",
1895
+ "module" : "EtherLike-MIB"
1896
+ },
1897
+ "dot3StatsLateCollisions" : {
1898
+ "nodetype" : "member",
1899
+ "module" : "EtherLike-MIB"
1900
+ },
1901
+ "dot3StatsExcessiveCollisions" : {
1902
+ "nodetype" : "member",
1903
+ "module" : "EtherLike-MIB"
1904
+ },
1905
+ "dot3StatsInternalMacTransmitErrors" : {
1906
+ "nodetype" : "member",
1907
+ "module" : "EtherLike-MIB"
1908
+ },
1909
+ "dot3StatsCarrierSenseErrors" : {
1910
+ "nodetype" : "member",
1911
+ "module" : "EtherLike-MIB"
1912
+ },
1913
+ "dot3StatsFrameTooLongs" : {
1914
+ "nodetype" : "member",
1915
+ "module" : "EtherLike-MIB"
1916
+ },
1917
+ "dot3StatsInternalMacReceiveErrors" : {
1918
+ "nodetype" : "member",
1919
+ "module" : "EtherLike-MIB"
1920
+ },
1921
+ "dot3StatsEtherChipSet" : {
1922
+ "nodetype" : "member",
1923
+ "module" : "EtherLike-MIB"
1924
+ },
1925
+ "dot3StatsSymbolErrors" : {
1926
+ "nodetype" : "member",
1927
+ "module" : "EtherLike-MIB"
1928
+ },
1929
+ }, # members
1930
+ "description" :
1931
+ """********* THIS GROUP IS DEPRECATED **********
1932
+
1933
+ A collection of objects providing information
1934
+ applicable to 100 Mb/sec ethernet-like network
1935
+ interfaces.
1936
+
1937
+ This object group has been deprecated and
1938
+ replaced by etherStatsBaseGroup and
1939
+ etherStatsHighSpeedGroup.""",
1940
+ }, # group
1941
+ "etherStatsBaseGroup" : {
1942
+ "nodetype" : "group",
1943
+ "moduleName" : "EtherLike-MIB",
1944
+ "oid" : "1.3.6.1.2.1.35.2.1.4",
1945
+ "status" : "deprecated",
1946
+ "members" : {
1947
+ "dot3StatsIndex" : {
1948
+ "nodetype" : "member",
1949
+ "module" : "EtherLike-MIB"
1950
+ },
1951
+ "dot3StatsAlignmentErrors" : {
1952
+ "nodetype" : "member",
1953
+ "module" : "EtherLike-MIB"
1954
+ },
1955
+ "dot3StatsFCSErrors" : {
1956
+ "nodetype" : "member",
1957
+ "module" : "EtherLike-MIB"
1958
+ },
1959
+ "dot3StatsSingleCollisionFrames" : {
1960
+ "nodetype" : "member",
1961
+ "module" : "EtherLike-MIB"
1962
+ },
1963
+ "dot3StatsMultipleCollisionFrames" : {
1964
+ "nodetype" : "member",
1965
+ "module" : "EtherLike-MIB"
1966
+ },
1967
+ "dot3StatsDeferredTransmissions" : {
1968
+ "nodetype" : "member",
1969
+ "module" : "EtherLike-MIB"
1970
+ },
1971
+ "dot3StatsLateCollisions" : {
1972
+ "nodetype" : "member",
1973
+ "module" : "EtherLike-MIB"
1974
+ },
1975
+ "dot3StatsExcessiveCollisions" : {
1976
+ "nodetype" : "member",
1977
+ "module" : "EtherLike-MIB"
1978
+ },
1979
+ "dot3StatsInternalMacTransmitErrors" : {
1980
+ "nodetype" : "member",
1981
+ "module" : "EtherLike-MIB"
1982
+ },
1983
+ "dot3StatsCarrierSenseErrors" : {
1984
+ "nodetype" : "member",
1985
+ "module" : "EtherLike-MIB"
1986
+ },
1987
+ "dot3StatsFrameTooLongs" : {
1988
+ "nodetype" : "member",
1989
+ "module" : "EtherLike-MIB"
1990
+ },
1991
+ "dot3StatsInternalMacReceiveErrors" : {
1992
+ "nodetype" : "member",
1993
+ "module" : "EtherLike-MIB"
1994
+ },
1995
+ }, # members
1996
+ "description" :
1997
+ """********* THIS GROUP IS DEPRECATED **********
1998
+
1999
+ A collection of objects providing information
2000
+ applicable to all ethernet-like network
2001
+ interfaces.
2002
+
2003
+ This object group has been deprecated and
2004
+ replaced by etherStatsBaseGroup2 and
2005
+ etherStatsHalfDuplexGroup, to separate
2006
+ objects which must be implemented by all
2007
+ ethernet-like network interfaces from
2008
+ objects that need only be implemented on
2009
+ ethernet-like network interfaces that are
2010
+ capable of half-duplex operation.""",
2011
+ }, # group
2012
+ "etherStatsLowSpeedGroup" : {
2013
+ "nodetype" : "group",
2014
+ "moduleName" : "EtherLike-MIB",
2015
+ "oid" : "1.3.6.1.2.1.35.2.1.5",
2016
+ "status" : "current",
2017
+ "members" : {
2018
+ "dot3StatsSQETestErrors" : {
2019
+ "nodetype" : "member",
2020
+ "module" : "EtherLike-MIB"
2021
+ },
2022
+ }, # members
2023
+ "description" :
2024
+ """A collection of objects providing information
2025
+
2026
+
2027
+
2028
+ applicable to ethernet-like network interfaces
2029
+ capable of operating at 10 Mb/s or slower in
2030
+ half-duplex mode.""",
2031
+ }, # group
2032
+ "etherStatsHighSpeedGroup" : {
2033
+ "nodetype" : "group",
2034
+ "moduleName" : "EtherLike-MIB",
2035
+ "oid" : "1.3.6.1.2.1.35.2.1.6",
2036
+ "status" : "current",
2037
+ "members" : {
2038
+ "dot3StatsSymbolErrors" : {
2039
+ "nodetype" : "member",
2040
+ "module" : "EtherLike-MIB"
2041
+ },
2042
+ }, # members
2043
+ "description" :
2044
+ """A collection of objects providing information
2045
+ applicable to ethernet-like network interfaces
2046
+ capable of operating at 100 Mb/s or faster.""",
2047
+ }, # group
2048
+ "etherDuplexGroup" : {
2049
+ "nodetype" : "group",
2050
+ "moduleName" : "EtherLike-MIB",
2051
+ "oid" : "1.3.6.1.2.1.35.2.1.7",
2052
+ "status" : "current",
2053
+ "members" : {
2054
+ "dot3StatsDuplexStatus" : {
2055
+ "nodetype" : "member",
2056
+ "module" : "EtherLike-MIB"
2057
+ },
2058
+ }, # members
2059
+ "description" :
2060
+ """A collection of objects providing information
2061
+ about the duplex mode of an ethernet-like
2062
+ network interface.""",
2063
+ }, # group
2064
+ "etherControlGroup" : {
2065
+ "nodetype" : "group",
2066
+ "moduleName" : "EtherLike-MIB",
2067
+ "oid" : "1.3.6.1.2.1.35.2.1.8",
2068
+ "status" : "current",
2069
+ "members" : {
2070
+ "dot3ControlFunctionsSupported" : {
2071
+ "nodetype" : "member",
2072
+ "module" : "EtherLike-MIB"
2073
+ },
2074
+ "dot3ControlInUnknownOpcodes" : {
2075
+ "nodetype" : "member",
2076
+ "module" : "EtherLike-MIB"
2077
+ },
2078
+ }, # members
2079
+ "description" :
2080
+ """A collection of objects providing information
2081
+ about the MAC Control sublayer on ethernet-like
2082
+ network interfaces.""",
2083
+ }, # group
2084
+ "etherControlPauseGroup" : {
2085
+ "nodetype" : "group",
2086
+ "moduleName" : "EtherLike-MIB",
2087
+ "oid" : "1.3.6.1.2.1.35.2.1.9",
2088
+ "status" : "current",
2089
+ "members" : {
2090
+ "dot3PauseAdminMode" : {
2091
+ "nodetype" : "member",
2092
+ "module" : "EtherLike-MIB"
2093
+ },
2094
+ "dot3PauseOperMode" : {
2095
+ "nodetype" : "member",
2096
+ "module" : "EtherLike-MIB"
2097
+ },
2098
+ "dot3InPauseFrames" : {
2099
+ "nodetype" : "member",
2100
+ "module" : "EtherLike-MIB"
2101
+ },
2102
+ "dot3OutPauseFrames" : {
2103
+ "nodetype" : "member",
2104
+ "module" : "EtherLike-MIB"
2105
+ },
2106
+ }, # members
2107
+ "description" :
2108
+ """A collection of objects providing information
2109
+ about and control of the MAC Control PAUSE
2110
+ function on ethernet-like network interfaces.""",
2111
+ }, # group
2112
+ "etherStatsBaseGroup2" : {
2113
+ "nodetype" : "group",
2114
+ "moduleName" : "EtherLike-MIB",
2115
+ "oid" : "1.3.6.1.2.1.35.2.1.10",
2116
+ "status" : "current",
2117
+ "members" : {
2118
+ "dot3StatsIndex" : {
2119
+ "nodetype" : "member",
2120
+ "module" : "EtherLike-MIB"
2121
+ },
2122
+ "dot3StatsAlignmentErrors" : {
2123
+ "nodetype" : "member",
2124
+ "module" : "EtherLike-MIB"
2125
+ },
2126
+ "dot3StatsFCSErrors" : {
2127
+ "nodetype" : "member",
2128
+ "module" : "EtherLike-MIB"
2129
+ },
2130
+ "dot3StatsInternalMacTransmitErrors" : {
2131
+ "nodetype" : "member",
2132
+ "module" : "EtherLike-MIB"
2133
+ },
2134
+ "dot3StatsFrameTooLongs" : {
2135
+ "nodetype" : "member",
2136
+ "module" : "EtherLike-MIB"
2137
+ },
2138
+ "dot3StatsInternalMacReceiveErrors" : {
2139
+ "nodetype" : "member",
2140
+ "module" : "EtherLike-MIB"
2141
+ },
2142
+ }, # members
2143
+ "description" :
2144
+ """A collection of objects providing information
2145
+ applicable to all ethernet-like network
2146
+ interfaces.""",
2147
+ }, # group
2148
+ "etherStatsHalfDuplexGroup" : {
2149
+ "nodetype" : "group",
2150
+ "moduleName" : "EtherLike-MIB",
2151
+ "oid" : "1.3.6.1.2.1.35.2.1.11",
2152
+ "status" : "current",
2153
+ "members" : {
2154
+ "dot3StatsSingleCollisionFrames" : {
2155
+ "nodetype" : "member",
2156
+ "module" : "EtherLike-MIB"
2157
+ },
2158
+ "dot3StatsMultipleCollisionFrames" : {
2159
+ "nodetype" : "member",
2160
+ "module" : "EtherLike-MIB"
2161
+ },
2162
+ "dot3StatsDeferredTransmissions" : {
2163
+ "nodetype" : "member",
2164
+ "module" : "EtherLike-MIB"
2165
+ },
2166
+ "dot3StatsLateCollisions" : {
2167
+ "nodetype" : "member",
2168
+ "module" : "EtherLike-MIB"
2169
+ },
2170
+ "dot3StatsExcessiveCollisions" : {
2171
+ "nodetype" : "member",
2172
+ "module" : "EtherLike-MIB"
2173
+ },
2174
+ "dot3StatsCarrierSenseErrors" : {
2175
+ "nodetype" : "member",
2176
+ "module" : "EtherLike-MIB"
2177
+ },
2178
+ }, # members
2179
+ "description" :
2180
+ """A collection of objects providing information
2181
+ applicable only to half-duplex ethernet-like
2182
+ network interfaces.""",
2183
+ }, # group
2184
+ "etherHCStatsGroup" : {
2185
+ "nodetype" : "group",
2186
+ "moduleName" : "EtherLike-MIB",
2187
+ "oid" : "1.3.6.1.2.1.35.2.1.12",
2188
+ "status" : "current",
2189
+ "members" : {
2190
+ "dot3HCStatsAlignmentErrors" : {
2191
+ "nodetype" : "member",
2192
+ "module" : "EtherLike-MIB"
2193
+ },
2194
+ "dot3HCStatsFCSErrors" : {
2195
+ "nodetype" : "member",
2196
+ "module" : "EtherLike-MIB"
2197
+ },
2198
+ "dot3HCStatsInternalMacTransmitErrors" : {
2199
+ "nodetype" : "member",
2200
+ "module" : "EtherLike-MIB"
2201
+ },
2202
+ "dot3HCStatsFrameTooLongs" : {
2203
+ "nodetype" : "member",
2204
+ "module" : "EtherLike-MIB"
2205
+ },
2206
+ "dot3HCStatsInternalMacReceiveErrors" : {
2207
+ "nodetype" : "member",
2208
+ "module" : "EtherLike-MIB"
2209
+ },
2210
+ "dot3HCStatsSymbolErrors" : {
2211
+ "nodetype" : "member",
2212
+ "module" : "EtherLike-MIB"
2213
+ },
2214
+ }, # members
2215
+ "description" :
2216
+ """A collection of objects providing high-capacity
2217
+ statistics applicable to higher-speed
2218
+ ethernet-like network interfaces.""",
2219
+ }, # group
2220
+ "etherHCControlGroup" : {
2221
+ "nodetype" : "group",
2222
+ "moduleName" : "EtherLike-MIB",
2223
+ "oid" : "1.3.6.1.2.1.35.2.1.13",
2224
+ "status" : "current",
2225
+ "members" : {
2226
+ "dot3HCControlInUnknownOpcodes" : {
2227
+ "nodetype" : "member",
2228
+ "module" : "EtherLike-MIB"
2229
+ },
2230
+ }, # members
2231
+ "description" :
2232
+ """A collection of objects providing high-capacity
2233
+ statistics for the MAC Control sublayer on
2234
+ higher-speed ethernet-like network interfaces.""",
2235
+ }, # group
2236
+ "etherHCControlPauseGroup" : {
2237
+ "nodetype" : "group",
2238
+ "moduleName" : "EtherLike-MIB",
2239
+ "oid" : "1.3.6.1.2.1.35.2.1.14",
2240
+ "status" : "current",
2241
+ "members" : {
2242
+ "dot3HCInPauseFrames" : {
2243
+ "nodetype" : "member",
2244
+ "module" : "EtherLike-MIB"
2245
+ },
2246
+ "dot3HCOutPauseFrames" : {
2247
+ "nodetype" : "member",
2248
+ "module" : "EtherLike-MIB"
2249
+ },
2250
+ }, # members
2251
+ "description" :
2252
+ """A collection of objects providing high-capacity
2253
+ statistics for the MAC Control PAUSE function on
2254
+ higher-speed ethernet-like network interfaces.""",
2255
+ }, # group
2256
+ "etherRateControlGroup" : {
2257
+ "nodetype" : "group",
2258
+ "moduleName" : "EtherLike-MIB",
2259
+ "oid" : "1.3.6.1.2.1.35.2.1.15",
2260
+ "status" : "current",
2261
+ "members" : {
2262
+ "dot3StatsRateControlAbility" : {
2263
+ "nodetype" : "member",
2264
+ "module" : "EtherLike-MIB"
2265
+ },
2266
+ "dot3StatsRateControlStatus" : {
2267
+ "nodetype" : "member",
2268
+ "module" : "EtherLike-MIB"
2269
+ },
2270
+ }, # members
2271
+ "description" :
2272
+ """A collection of objects providing information
2273
+ about the Rate Control function on ethernet-like
2274
+ interfaces.""",
2275
+ }, # group
2276
+ }, # groups
2277
+
2278
+ "compliances" : {
2279
+ "etherCompliance" : {
2280
+ "nodetype" : "compliance",
2281
+ "moduleName" : "EtherLike-MIB",
2282
+ "oid" : "1.3.6.1.2.1.35.2.2.1",
2283
+ "status" : "deprecated",
2284
+ "description" :
2285
+ """******** THIS COMPLIANCE IS DEPRECATED ********
2286
+
2287
+ The compliance statement for managed network
2288
+ entities which have ethernet-like network
2289
+ interfaces.
2290
+
2291
+ This compliance is deprecated and replaced by
2292
+ dot3Compliance.""",
2293
+ "requires" : {
2294
+ "etherStatsGroup" : {
2295
+ "nodetype" : "mandatory",
2296
+ "module" : "EtherLike-MIB"
2297
+ },
2298
+ "etherCollisionTableGroup" : {
2299
+ "nodetype" : "optional",
2300
+ "module" : "EtherLike-MIB",
2301
+ "description" :
2302
+ """This group is optional. It is appropriate
2303
+ for all systems which have the necessary
2304
+ metering. Implementation in such systems is
2305
+ highly recommended.""",
2306
+ },
2307
+ }, # requires
2308
+ }, # compliance
2309
+ "ether100MbsCompliance" : {
2310
+ "nodetype" : "compliance",
2311
+ "moduleName" : "EtherLike-MIB",
2312
+ "oid" : "1.3.6.1.2.1.35.2.2.2",
2313
+ "status" : "deprecated",
2314
+ "description" :
2315
+ """******** THIS COMPLIANCE IS DEPRECATED ********
2316
+
2317
+ The compliance statement for managed network
2318
+ entities which have 100 Mb/sec ethernet-like
2319
+ network interfaces.
2320
+
2321
+ This compliance is deprecated and replaced by
2322
+ dot3Compliance.""",
2323
+ "requires" : {
2324
+ "etherStats100MbsGroup" : {
2325
+ "nodetype" : "mandatory",
2326
+ "module" : "EtherLike-MIB"
2327
+ },
2328
+ "etherCollisionTableGroup" : {
2329
+ "nodetype" : "optional",
2330
+ "module" : "EtherLike-MIB",
2331
+ "description" :
2332
+ """This group is optional. It is appropriate
2333
+ for all systems which have the necessary
2334
+ metering. Implementation in such systems is
2335
+ highly recommended.""",
2336
+ },
2337
+ }, # requires
2338
+ }, # compliance
2339
+ "dot3Compliance" : {
2340
+ "nodetype" : "compliance",
2341
+ "moduleName" : "EtherLike-MIB",
2342
+ "oid" : "1.3.6.1.2.1.35.2.2.3",
2343
+ "status" : "deprecated",
2344
+ "description" :
2345
+ """******** THIS COMPLIANCE IS DEPRECATED ********
2346
+
2347
+ The compliance statement for managed network
2348
+ entities which have ethernet-like network
2349
+ interfaces.
2350
+
2351
+ This compliance is deprecated and replaced by
2352
+ dot3Compliance2.""",
2353
+ "requires" : {
2354
+ "etherStatsBaseGroup" : {
2355
+ "nodetype" : "mandatory",
2356
+ "module" : "EtherLike-MIB"
2357
+ },
2358
+ "etherDuplexGroup" : {
2359
+ "nodetype" : "optional",
2360
+ "module" : "EtherLike-MIB",
2361
+ "description" :
2362
+ """This group is mandatory for all
2363
+ ethernet-like network interfaces which are
2364
+ capable of operating in full-duplex mode.
2365
+ It is highly recommended for all
2366
+ ethernet-like network interfaces.""",
2367
+ },
2368
+ "etherStatsLowSpeedGroup" : {
2369
+ "nodetype" : "optional",
2370
+ "module" : "EtherLike-MIB",
2371
+ "description" :
2372
+ """This group is mandatory for all
2373
+ ethernet-like network interfaces which are
2374
+ capable of operating at 10 Mb/s or slower in
2375
+ half-duplex mode.""",
2376
+ },
2377
+ "etherStatsHighSpeedGroup" : {
2378
+ "nodetype" : "optional",
2379
+ "module" : "EtherLike-MIB",
2380
+ "description" :
2381
+ """This group is mandatory for all
2382
+ ethernet-like network interfaces which are
2383
+ capable of operating at 100 Mb/s or faster.""",
2384
+ },
2385
+ "etherControlGroup" : {
2386
+ "nodetype" : "optional",
2387
+ "module" : "EtherLike-MIB",
2388
+ "description" :
2389
+ """This group is mandatory for all
2390
+ ethernet-like network interfaces that
2391
+ support the MAC Control sublayer.""",
2392
+ },
2393
+ "etherControlPauseGroup" : {
2394
+ "nodetype" : "optional",
2395
+ "module" : "EtherLike-MIB",
2396
+ "description" :
2397
+ """This group is mandatory for all
2398
+ ethernet-like network interfaces that
2399
+ support the MAC Control PAUSE function.""",
2400
+ },
2401
+ "etherCollisionTableGroup" : {
2402
+ "nodetype" : "optional",
2403
+ "module" : "EtherLike-MIB",
2404
+ "description" :
2405
+ """This group is optional. It is appropriate
2406
+ for all ethernet-like network interfaces
2407
+ which are capable of operating in
2408
+ half-duplex mode and have the necessary
2409
+ metering. Implementation in systems with
2410
+
2411
+
2412
+
2413
+ such interfaces is highly recommended.""",
2414
+ },
2415
+ }, # requires
2416
+ }, # compliance
2417
+ "dot3Compliance2" : {
2418
+ "nodetype" : "compliance",
2419
+ "moduleName" : "EtherLike-MIB",
2420
+ "oid" : "1.3.6.1.2.1.35.2.2.4",
2421
+ "status" : "current",
2422
+ "description" :
2423
+ """The compliance statement for managed network
2424
+ entities which have ethernet-like network
2425
+ interfaces.
2426
+
2427
+ Note that compliance with this MIB module
2428
+ requires compliance with the ifCompliance3
2429
+ MODULE-COMPLIANCE statement of the IF-MIB
2430
+ (RFC2863). In addition, compliance with this
2431
+ MIB module requires compliance with the
2432
+ mauModIfCompl3 MODULE-COMPLIANCE statement of
2433
+ the MAU-MIB (RFC3636).""",
2434
+ "requires" : {
2435
+ "etherStatsBaseGroup2" : {
2436
+ "nodetype" : "mandatory",
2437
+ "module" : "EtherLike-MIB"
2438
+ },
2439
+ "etherDuplexGroup" : {
2440
+ "nodetype" : "optional",
2441
+ "module" : "EtherLike-MIB",
2442
+ "description" :
2443
+ """This group is mandatory for all
2444
+ ethernet-like network interfaces which are
2445
+ capable of operating in full-duplex mode.
2446
+ It is highly recommended for all
2447
+ ethernet-like network interfaces.""",
2448
+ },
2449
+ "etherRateControlGroup" : {
2450
+ "nodetype" : "optional",
2451
+ "module" : "EtherLike-MIB",
2452
+ "description" :
2453
+ """This group is mandatory for all
2454
+ ethernet-like network interfaces which are
2455
+ capable of operating at speeds faster than
2456
+ 1000 Mb/s. It is highly recommended for all
2457
+ ethernet-like network interfaces.""",
2458
+ },
2459
+ "etherStatsLowSpeedGroup" : {
2460
+ "nodetype" : "optional",
2461
+ "module" : "EtherLike-MIB",
2462
+ "description" :
2463
+ """This group is mandatory for all
2464
+ ethernet-like network interfaces which are
2465
+ capable of operating at 10 Mb/s or slower in
2466
+ half-duplex mode.""",
2467
+ },
2468
+ "etherStatsHighSpeedGroup" : {
2469
+ "nodetype" : "optional",
2470
+ "module" : "EtherLike-MIB",
2471
+ "description" :
2472
+ """This group is mandatory for all
2473
+ ethernet-like network interfaces which are
2474
+ capable of operating at 100 Mb/s or faster.""",
2475
+ },
2476
+ "etherStatsHalfDuplexGroup" : {
2477
+ "nodetype" : "optional",
2478
+ "module" : "EtherLike-MIB",
2479
+ "description" :
2480
+ """This group is mandatory for all
2481
+ ethernet-like network interfaces which are
2482
+
2483
+
2484
+
2485
+ capable of operating in half-duplex mode.""",
2486
+ },
2487
+ "etherHCStatsGroup" : {
2488
+ "nodetype" : "optional",
2489
+ "module" : "EtherLike-MIB",
2490
+ "description" :
2491
+ """This group is mandatory for all
2492
+ ethernet-like network interfaces which are
2493
+ capable of operating at 10 Gb/s or faster.
2494
+ It is recommended for all ethernet-like
2495
+ network interfaces which are capable of
2496
+ operating at 1000 Mb/s or faster.""",
2497
+ },
2498
+ "etherControlGroup" : {
2499
+ "nodetype" : "optional",
2500
+ "module" : "EtherLike-MIB",
2501
+ "description" :
2502
+ """This group is mandatory for all
2503
+ ethernet-like network interfaces that
2504
+ support the MAC Control sublayer.""",
2505
+ },
2506
+ "etherHCControlGroup" : {
2507
+ "nodetype" : "optional",
2508
+ "module" : "EtherLike-MIB",
2509
+ "description" :
2510
+ """This group is mandatory for all
2511
+ ethernet-like network interfaces that
2512
+ support the MAC Control sublayer and are
2513
+ capable of operating at 10 Gb/s or faster.""",
2514
+ },
2515
+ "etherControlPauseGroup" : {
2516
+ "nodetype" : "optional",
2517
+ "module" : "EtherLike-MIB",
2518
+ "description" :
2519
+ """This group is mandatory for all
2520
+ ethernet-like network interfaces that
2521
+ support the MAC Control PAUSE function.""",
2522
+ },
2523
+ "etherHCControlPauseGroup" : {
2524
+ "nodetype" : "optional",
2525
+ "module" : "EtherLike-MIB",
2526
+ "description" :
2527
+ """This group is mandatory for all
2528
+ ethernet-like network interfaces that
2529
+ support the MAC Control PAUSE function and
2530
+ are capable of operating at 10 Gb/s or
2531
+ faster.""",
2532
+ },
2533
+ "etherCollisionTableGroup" : {
2534
+ "nodetype" : "optional",
2535
+ "module" : "EtherLike-MIB",
2536
+ "description" :
2537
+ """This group is optional. It is appropriate
2538
+ for all ethernet-like network interfaces
2539
+ which are capable of operating in
2540
+ half-duplex mode and have the necessary
2541
+ metering. Implementation in systems with
2542
+ such interfaces is highly recommended.""",
2543
+ },
2544
+ }, # requires
2545
+ }, # compliance
2546
+ }, # compliances
2547
+
2548
+ }