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,2830 @@
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 DOT3-OAM-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DOT3-OAM-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DOT3-OAM-MIB",
11
+
12
+ "DOT3-OAM-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Ethernet Interfaces and Hub MIB Working Group""",
17
+ "contact" :
18
+ """WG Charter:
19
+ http://www.ietf.org/html.charters/hubmib-charter.html
20
+ Mailing lists:
21
+ General Discussion: hubmib@ietf.org
22
+ To Subscribe: hubmib-requests@ietf.org
23
+ In Body: subscribe your_email_address
24
+ Chair: Bert Wijnen
25
+ Alcatel-Lucent
26
+ Email: bwijnen at alcatel-lucent dot com
27
+ Editor: Matt Squire
28
+ Hatteras Networks
29
+ E-mail: msquire at hatterasnetworks dot com""",
30
+ "description" :
31
+ """The MIB module for managing the new Ethernet OAM features
32
+ introduced by the Ethernet in the First Mile taskforce (IEEE
33
+ 802.3ah). The functionality presented here is based on IEEE
34
+ 802.3ah [802.3ah], released in October, 2004. [802.3ah] was
35
+ prepared as an addendum to the standing version of IEEE 802.3
36
+ [802.3-2002]. Since then, [802.3ah] has been
37
+ merged into the base IEEE 802.3 specification in [802.3-2005].
38
+
39
+ In particular, this MIB focuses on the new OAM functions
40
+ introduced in Clause 57 of [802.3ah]. The OAM functionality
41
+ of Clause 57 is controlled by new management attributes
42
+ introduced in Clause 30 of [802.3ah]. The OAM functions are
43
+ not specific to any particular Ethernet physical layer, and
44
+ can be generically applied to any Ethernet interface of
45
+ [802.3-2002].
46
+
47
+ An Ethernet OAM protocol data unit is a valid Ethernet frame
48
+ with a destination MAC address equal to the reserved MAC
49
+ address for Slow Protocols (See 43B of [802.3ah]), a
50
+ lengthOrType field equal to the reserved type for Slow
51
+ Protocols, and a Slow Protocols subtype equal to that of the
52
+ subtype reserved for Ethernet OAM. OAMPDU is used throughout
53
+ this document as an abbreviation for Ethernet OAM protocol
54
+ data unit.
55
+
56
+ The following reference is used throughout this MIB module:
57
+
58
+
59
+
60
+
61
+ [802.3ah] refers to:
62
+ IEEE Std 802.3ah-2004: 'Draft amendment to -
63
+ Information technology - Telecommunications and
64
+ information exchange between systems - Local and
65
+ metropolitan area networks - Specific requirements - Part
66
+ 3: Carrier sense multiple access with collision detection
67
+ (CSMA/CD) access method and physical layer specifications
68
+ - Media Access Control Parameters, Physical Layers and
69
+ Management Parameters for subscriber access networks',
70
+ October 2004.
71
+
72
+ [802.3-2002] refers to:
73
+ IEEE Std 802.3-2002:
74
+ 'Information technology - Telecommunications and
75
+ information exchange between systems - Local and
76
+ metropolitan area networks - Specific requirements - Part
77
+ 3: Carrier sense multiple access with collision detection
78
+ (CSMA/CD) access method and physical layer specifications
79
+ - Media Access Control Parameters, Physical Layers and
80
+ Management Parameters for subscriber access networks',
81
+ March 2002.
82
+
83
+ [802.3-2005] refers to:
84
+ IEEE Std 802.3-2005:
85
+ 'Information technology - Telecommunications and
86
+ information exchange between systems - Local and
87
+ metropolitan area networks - Specific requirements - Part
88
+ 3: Carrier sense multiple access with collision detection
89
+ (CSMA/CD) access method and physical layer specifications
90
+ - Media Access Control Parameters, Physical Layers and
91
+ Management Parameters for subscriber access networks',
92
+ December 2005.
93
+
94
+ [802-2001] refers to:
95
+ 'IEEE Standard for LAN/MAN (Local Area
96
+ Network/Metropolitan Area Network): Overview and
97
+ Architecture', IEEE 802, June 2001.
98
+
99
+ Copyright (c) The IETF Trust (2007). This version of
100
+ this MIB module is part of RFC 4878; See the RFC itself for
101
+ full legal notices. """,
102
+ "revisions" : (
103
+ {
104
+ "date" : "2007-06-14 00:00",
105
+ "description" :
106
+ """Initial version, published as RFC 4878.""",
107
+ },
108
+ ),
109
+ "identity node" : "dot3OamMIB",
110
+ },
111
+
112
+ "imports" : (
113
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
114
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
115
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
116
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
117
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
118
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
119
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
120
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
121
+ {"module" : "SNMPv2-TC", "name" : "MacAddress"},
122
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
123
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
124
+ {"module" : "HCNUM-TC", "name" : "CounterBasedGauge64"},
125
+ {"module" : "IF-MIB", "name" : "ifIndex"},
126
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
127
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
128
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
129
+ ),
130
+
131
+ "typedefs" : {
132
+ "EightOTwoOui" : {
133
+ "basetype" : "OctetString",
134
+ "status" : "current",
135
+ "ranges" : [
136
+ {
137
+ "min" : "3",
138
+ "max" : "3"
139
+ },
140
+ ],
141
+ "range" : {
142
+ "min" : "3",
143
+ "max" : "3"
144
+ },
145
+ "description" :
146
+ """24-bit Organizationally Unique Identifier. Information on
147
+ OUIs can be found in IEEE 802-2001 [802-2001], Clause 9.""",
148
+ },
149
+ }, # typedefs
150
+
151
+ "nodes" : {
152
+ "dot3OamMIB" : {
153
+ "nodetype" : "node",
154
+ "moduleName" : "DOT3-OAM-MIB",
155
+ "oid" : "1.3.6.1.2.1.158",
156
+ "status" : "current",
157
+ }, # node
158
+ "dot3OamNotifications" : {
159
+ "nodetype" : "node",
160
+ "moduleName" : "DOT3-OAM-MIB",
161
+ "oid" : "1.3.6.1.2.1.158.0",
162
+ }, # node
163
+ "dot3OamObjects" : {
164
+ "nodetype" : "node",
165
+ "moduleName" : "DOT3-OAM-MIB",
166
+ "oid" : "1.3.6.1.2.1.158.1",
167
+ }, # node
168
+ "dot3OamTable" : {
169
+ "nodetype" : "table",
170
+ "moduleName" : "DOT3-OAM-MIB",
171
+ "oid" : "1.3.6.1.2.1.158.1.1",
172
+ "status" : "current",
173
+ "description" :
174
+ """This table contains the primary controls and status for the
175
+ OAM capabilities of an Ethernet-like interface. There will be
176
+ one row in this table for each Ethernet-like interface in the
177
+ system that supports the OAM functions defined in [802.3ah].""",
178
+ }, # table
179
+ "dot3OamEntry" : {
180
+ "nodetype" : "row",
181
+ "moduleName" : "DOT3-OAM-MIB",
182
+ "oid" : "1.3.6.1.2.1.158.1.1.1",
183
+ "status" : "current",
184
+ "linkage" : [
185
+ "ifIndex",
186
+ ],
187
+ "description" :
188
+ """An entry in the table that contains information on the
189
+ Ethernet OAM function for a single Ethernet like interface.
190
+ Entries in the table are created automatically for each
191
+ interface supporting Ethernet OAM. The status of the row
192
+ entry can be determined from dot3OamOperStatus.
193
+
194
+ A dot3OamEntry is indexed in the dot3OamTable by the ifIndex
195
+ object of the Interfaces MIB.""",
196
+ }, # row
197
+ "dot3OamAdminState" : {
198
+ "nodetype" : "column",
199
+ "moduleName" : "DOT3-OAM-MIB",
200
+ "oid" : "1.3.6.1.2.1.158.1.1.1.1",
201
+ "status" : "current",
202
+ "syntax" : {
203
+ "type" : {
204
+ "basetype" : "Enumeration",
205
+ "enabled" : {
206
+ "nodetype" : "namednumber",
207
+ "number" : "1"
208
+ },
209
+ "disabled" : {
210
+ "nodetype" : "namednumber",
211
+ "number" : "2"
212
+ },
213
+ },
214
+ },
215
+ "access" : "readwrite",
216
+ "description" :
217
+ """This object is used to provision the default administrative
218
+ OAM mode for this interface. This object represents the
219
+ desired state of OAM for this interface.
220
+
221
+ The dot3OamAdminState always starts in the disabled(2) state
222
+ until an explicit management action or configuration
223
+ information retained by the system causes a transition to the
224
+ enabled(1) state. When enabled(1), Ethernet OAM will attempt
225
+ to operate over this interface.""",
226
+ "reference" :
227
+ """[802.3ah], 30.3.6.1.2""",
228
+ }, # column
229
+ "dot3OamOperStatus" : {
230
+ "nodetype" : "column",
231
+ "moduleName" : "DOT3-OAM-MIB",
232
+ "oid" : "1.3.6.1.2.1.158.1.1.1.2",
233
+ "status" : "current",
234
+ "syntax" : {
235
+ "type" : {
236
+ "basetype" : "Enumeration",
237
+ "disabled" : {
238
+ "nodetype" : "namednumber",
239
+ "number" : "1"
240
+ },
241
+ "linkFault" : {
242
+ "nodetype" : "namednumber",
243
+ "number" : "2"
244
+ },
245
+ "passiveWait" : {
246
+ "nodetype" : "namednumber",
247
+ "number" : "3"
248
+ },
249
+ "activeSendLocal" : {
250
+ "nodetype" : "namednumber",
251
+ "number" : "4"
252
+ },
253
+ "sendLocalAndRemote" : {
254
+ "nodetype" : "namednumber",
255
+ "number" : "5"
256
+ },
257
+ "sendLocalAndRemoteOk" : {
258
+ "nodetype" : "namednumber",
259
+ "number" : "6"
260
+ },
261
+ "oamPeeringLocallyRejected" : {
262
+ "nodetype" : "namednumber",
263
+ "number" : "7"
264
+ },
265
+ "oamPeeringRemotelyRejected" : {
266
+ "nodetype" : "namednumber",
267
+ "number" : "8"
268
+ },
269
+ "operational" : {
270
+ "nodetype" : "namednumber",
271
+ "number" : "9"
272
+ },
273
+ "nonOperHalfDuplex" : {
274
+ "nodetype" : "namednumber",
275
+ "number" : "10"
276
+ },
277
+ },
278
+ },
279
+ "access" : "readonly",
280
+ "description" :
281
+ """At initialization and failure conditions, two OAM entities on
282
+
283
+
284
+
285
+ the same full-duplex Ethernet link begin a discovery phase to
286
+ determine what OAM capabilities may be used on that link. The
287
+ progress of this initialization is controlled by the OA
288
+ sublayer.
289
+
290
+ This value is always disabled(1) if OAM is disabled on this
291
+ interface via the dot3OamAdminState.
292
+
293
+ If the link has detected a fault and is transmitting OAMPDUs
294
+ with a link fault indication, the value is linkFault(2).
295
+ Also, if the interface is not operational (ifOperStatus is
296
+ not up(1)), linkFault(2) is returned. Note that the object
297
+ ifOperStatus may not be up(1) as a result of link failure or
298
+ administrative action (ifAdminState being down(2) or
299
+ testing(3)).
300
+
301
+ The passiveWait(3) state is returned only by OAM entities in
302
+ passive mode (dot3OamMode) and reflects the state in which the
303
+ OAM entity is waiting to see if the peer device is OA
304
+ capable. The activeSendLocal(4) value is used by active mode
305
+ devices (dot3OamMode) and reflects the OAM entity actively
306
+ trying to discover whether the peer has OAM capability but has
307
+ not yet made that determination.
308
+
309
+ The state sendLocalAndRemote(5) reflects that the local OA
310
+ entity has discovered the peer but has not yet accepted or
311
+ rejected the configuration of the peer. The local device can,
312
+ for whatever reason, decide that the peer device is
313
+ unacceptable and decline OAM peering. If the local OAM entity
314
+ rejects the peer OAM entity, the state becomes
315
+ oamPeeringLocallyRejected(7). If the OAM peering is allowed
316
+ by the local device, the state moves to
317
+ sendLocalAndRemoteOk(6). Note that both the
318
+ sendLocalAndRemote(5) and oamPeeringLocallyRejected(7) states
319
+ fall within the state SEND_LOCAL_REMOTE of the Discovery state
320
+ diagram [802.3ah, Figure 57-5], with the difference being
321
+ whether the local OAM client has actively rejected the peering
322
+ or has just not indicated any decision yet. Whether a peering
323
+ decision has been made is indicated via the local flags field
324
+ in the OAMPDU (reflected in the aOAMLocalFlagsField of
325
+ 30.3.6.1.10).
326
+
327
+ If the remote OAM entity rejects the peering, the state
328
+ becomes oamPeeringRemotelyRejected(8). Note that both the
329
+ sendLocalAndRemoteOk(6) and oamPeeringRemotelyRejected(8)
330
+ states fall within the state SEND_LOCAL_REMOTE_OK of the
331
+ Discovery state diagram [802.3ah, Figure 57-5], with the
332
+ difference being whether the remote OAM client has rejected
333
+
334
+
335
+
336
+ the peering or has just not yet decided. This is indicated
337
+ via the remote flags field in the OAMPDU (reflected in the
338
+ aOAMRemoteFlagsField of 30.3.6.1.11).
339
+
340
+ When the local OAM entity learns that both it and the remote
341
+ OAM entity have accepted the peering, the state moves to
342
+ operational(9) corresponding to the SEND_ANY state of the
343
+ Discovery state diagram [802.3ah, Figure 57-5].
344
+
345
+ Since Ethernet OAM functions are not designed to work
346
+ completely over half-duplex interfaces, the value
347
+ nonOperHalfDuplex(10) is returned whenever Ethernet OAM is
348
+ enabled (dot3OamAdminState is enabled(1)), but the interface
349
+ is in half-duplex operation.""",
350
+ "reference" :
351
+ """[802.3ah], 30.3.6.1.4, 30.3.6.1.10, 30.3.6.1.11""",
352
+ }, # column
353
+ "dot3OamMode" : {
354
+ "nodetype" : "column",
355
+ "moduleName" : "DOT3-OAM-MIB",
356
+ "oid" : "1.3.6.1.2.1.158.1.1.1.3",
357
+ "status" : "current",
358
+ "syntax" : {
359
+ "type" : {
360
+ "basetype" : "Enumeration",
361
+ "passive" : {
362
+ "nodetype" : "namednumber",
363
+ "number" : "1"
364
+ },
365
+ "active" : {
366
+ "nodetype" : "namednumber",
367
+ "number" : "2"
368
+ },
369
+ },
370
+ },
371
+ "access" : "readwrite",
372
+ "description" :
373
+ """This object configures the mode of OAM operation for this
374
+ Ethernet-like interface. OAM on Ethernet interfaces may be in
375
+ 'active' mode or 'passive' mode. These two modes differ in
376
+ that active mode provides additional capabilities to initiate
377
+ monitoring activities with the remote OAM peer entity, while
378
+ passive mode generally waits for the peer to initiate OA
379
+ actions with it. As an example, an active OAM entity can put
380
+ the remote OAM entity in a loopback state, where a passive OA
381
+ entity cannot.
382
+
383
+ The default value of dot3OamMode is dependent on the type of
384
+ system on which this Ethernet-like interface resides. The
385
+ default value should be 'active(2)' unless it is known that
386
+ this system should take on a subservient role to the other
387
+ device connected over this interface.
388
+
389
+ Changing this value results in incrementing the configuration
390
+ revision field of locally generated OAMPDUs (30.3.6.1.12) and
391
+ potentially re-doing the OAM discovery process if the
392
+ dot3OamOperStatus was already operational(9).""",
393
+ "reference" :
394
+ """[802.3ah], 30.3.6.1.3""",
395
+ }, # column
396
+ "dot3OamMaxOamPduSize" : {
397
+ "nodetype" : "column",
398
+ "moduleName" : "DOT3-OAM-MIB",
399
+ "oid" : "1.3.6.1.2.1.158.1.1.1.4",
400
+ "status" : "current",
401
+ "syntax" : {
402
+ "type" : {
403
+ "basetype" : "Unsigned32",
404
+ "ranges" : [
405
+ {
406
+ "min" : "64",
407
+ "max" : "1518"
408
+ },
409
+ ],
410
+ "range" : {
411
+ "min" : "64",
412
+ "max" : "1518"
413
+ },
414
+ },
415
+ },
416
+ "access" : "readonly",
417
+ "units" : "octets",
418
+ "description" :
419
+ """The largest OAMPDU that the OAM entity supports. OA
420
+ entities exchange maximum OAMPDU sizes and negotiate to use
421
+ the smaller of the two maximum OAMPDU sizes between the peers.
422
+ This value is determined by the local implementation.""",
423
+ "reference" :
424
+ """[802.3ah], 30.3.6.1.8""",
425
+ }, # column
426
+ "dot3OamConfigRevision" : {
427
+ "nodetype" : "column",
428
+ "moduleName" : "DOT3-OAM-MIB",
429
+ "oid" : "1.3.6.1.2.1.158.1.1.1.5",
430
+ "status" : "current",
431
+ "syntax" : {
432
+ "type" : {
433
+ "basetype" : "Unsigned32",
434
+ "ranges" : [
435
+ {
436
+ "min" : "0",
437
+ "max" : "65535"
438
+ },
439
+ ],
440
+ "range" : {
441
+ "min" : "0",
442
+ "max" : "65535"
443
+ },
444
+ },
445
+ },
446
+ "access" : "readonly",
447
+ "description" :
448
+ """The configuration revision of the OAM entity as reflected in
449
+ the latest OAMPDU sent by the OAM entity. The config revision
450
+ is used by OAM entities to indicate that configuration changes
451
+ have occurred, which might require the peer OAM entity to
452
+ re-evaluate whether OAM peering is allowed.""",
453
+ "reference" :
454
+ """[802.3ah], 30.3.6.1.12""",
455
+ }, # column
456
+ "dot3OamFunctionsSupported" : {
457
+ "nodetype" : "column",
458
+ "moduleName" : "DOT3-OAM-MIB",
459
+ "oid" : "1.3.6.1.2.1.158.1.1.1.6",
460
+ "status" : "current",
461
+ "syntax" : {
462
+ "type" : {
463
+ "basetype" : "Bits",
464
+ "unidirectionalSupport" : {
465
+ "nodetype" : "namednumber",
466
+ "number" : "0"
467
+ },
468
+ "loopbackSupport" : {
469
+ "nodetype" : "namednumber",
470
+ "number" : "1"
471
+ },
472
+ "eventSupport" : {
473
+ "nodetype" : "namednumber",
474
+ "number" : "2"
475
+ },
476
+ "variableSupport" : {
477
+ "nodetype" : "namednumber",
478
+ "number" : "3"
479
+ },
480
+ },
481
+ },
482
+ "access" : "readonly",
483
+ "description" :
484
+ """The OAM functions supported on this Ethernet-like interface.
485
+ OAM consists of separate functional sets beyond the basic
486
+ discovery process that is always required. These functional
487
+ groups can be supported independently by any implementation.
488
+ These values are communicated to the peer via the local
489
+ configuration field of Information OAMPDUs.
490
+
491
+ Setting 'unidirectionalSupport(0)' indicates that the OA
492
+
493
+
494
+
495
+ entity supports the transmission of OAMPDUs on links that are
496
+ operating in unidirectional mode (traffic flowing in one
497
+ direction only). Setting 'loopbackSupport(1)' indicates that
498
+ the OAM entity can initiate and respond to loopback commands.
499
+ Setting 'eventSupport(2)' indicates that the OAM entity can
500
+ send and receive Event Notification OAMPDUs. Setting
501
+ 'variableSupport(3)' indicates that the OAM entity can send
502
+ and receive Variable Request and Response OAMPDUs.""",
503
+ "reference" :
504
+ """[802.3ah], 30.3.6.1.6""",
505
+ }, # column
506
+ "dot3OamPeerTable" : {
507
+ "nodetype" : "table",
508
+ "moduleName" : "DOT3-OAM-MIB",
509
+ "oid" : "1.3.6.1.2.1.158.1.2",
510
+ "status" : "current",
511
+ "description" :
512
+ """This table contains information about the OAM peer for a
513
+ particular Ethernet-like interface. OAM entities communicate
514
+ with a single OAM peer entity on Ethernet links on which OA
515
+ is enabled and operating properly. There is one entry in this
516
+ table for each entry in the dot3OamTable for which information
517
+ on the peer OAM entity is available.""",
518
+ }, # table
519
+ "dot3OamPeerEntry" : {
520
+ "nodetype" : "row",
521
+ "moduleName" : "DOT3-OAM-MIB",
522
+ "oid" : "1.3.6.1.2.1.158.1.2.1",
523
+ "status" : "current",
524
+ "linkage" : [
525
+ "ifIndex",
526
+ ],
527
+ "description" :
528
+ """An entry in the table containing information on the peer OA
529
+ entity for a single Ethernet-like interface.
530
+
531
+ Note that there is at most one OAM peer for each Ethernet-like
532
+ interface. Entries are automatically created when information
533
+ about the OAM peer entity becomes available, and automatically
534
+ deleted when the OAM peer entity is no longer in
535
+ communication. Peer information is not available when
536
+ dot3OamOperStatus is disabled(1), linkFault(2),
537
+ passiveWait(3), activeSendLocal(4), or nonOperHalfDuplex(10).""",
538
+ }, # row
539
+ "dot3OamPeerMacAddress" : {
540
+ "nodetype" : "column",
541
+ "moduleName" : "DOT3-OAM-MIB",
542
+ "oid" : "1.3.6.1.2.1.158.1.2.1.1",
543
+ "status" : "current",
544
+ "syntax" : {
545
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
546
+ },
547
+ "access" : "readonly",
548
+ "description" :
549
+ """The MAC address of the peer OAM entity. The MAC address is
550
+ derived from the most recently received OAMPDU.""",
551
+ "reference" :
552
+ """[802.3ah], 30.3.6.1.5.""",
553
+ }, # column
554
+ "dot3OamPeerVendorOui" : {
555
+ "nodetype" : "column",
556
+ "moduleName" : "DOT3-OAM-MIB",
557
+ "oid" : "1.3.6.1.2.1.158.1.2.1.2",
558
+ "status" : "current",
559
+ "syntax" : {
560
+ "type" : { "module" :"DOT3-OAM-MIB", "name" : "EightOTwoOui"},
561
+ },
562
+ "access" : "readonly",
563
+ "description" :
564
+ """The OUI of the OAM peer as reflected in the latest
565
+ Information OAMPDU received with a Local Information TLV. The
566
+ OUI can be used to identify the vendor of the remote OA
567
+ entity. This value is initialized to three octets of zero
568
+ before any Local Information TLV is received.""",
569
+ "reference" :
570
+ """[802.3ah], 30.3.6.1.16.""",
571
+ }, # column
572
+ "dot3OamPeerVendorInfo" : {
573
+ "nodetype" : "column",
574
+ "moduleName" : "DOT3-OAM-MIB",
575
+ "oid" : "1.3.6.1.2.1.158.1.2.1.3",
576
+ "status" : "current",
577
+ "syntax" : {
578
+ "type" : { "module" :"", "name" : "Unsigned32"},
579
+ },
580
+ "access" : "readonly",
581
+ "description" :
582
+ """The Vendor Info of the OAM peer as reflected in the latest
583
+ Information OAMPDU received with a Local Information TLV.
584
+ The semantics of the Vendor Information field is proprietary
585
+ and specific to the vendor (identified by the
586
+ dot3OamPeerVendorOui). This information could, for example,
587
+
588
+
589
+
590
+ be used to identify a specific product or product family.
591
+ This value is initialized to zero before any Local
592
+ Information TLV is received.""",
593
+ "reference" :
594
+ """[802.3ah], 30.3.6.1.17.""",
595
+ }, # column
596
+ "dot3OamPeerMode" : {
597
+ "nodetype" : "column",
598
+ "moduleName" : "DOT3-OAM-MIB",
599
+ "oid" : "1.3.6.1.2.1.158.1.2.1.4",
600
+ "status" : "current",
601
+ "syntax" : {
602
+ "type" : {
603
+ "basetype" : "Enumeration",
604
+ "passive" : {
605
+ "nodetype" : "namednumber",
606
+ "number" : "1"
607
+ },
608
+ "active" : {
609
+ "nodetype" : "namednumber",
610
+ "number" : "2"
611
+ },
612
+ "unknown" : {
613
+ "nodetype" : "namednumber",
614
+ "number" : "3"
615
+ },
616
+ },
617
+ },
618
+ "access" : "readonly",
619
+ "description" :
620
+ """The mode of the OAM peer as reflected in the latest
621
+ Information OAMPDU received with a Local Information TLV. The
622
+ mode of the peer can be determined from the Configuration
623
+ field in the Local Information TLV of the last Information
624
+ OAMPDU received from the peer. The value is unknown(3)
625
+ whenever no Local Information TLV has been received. The
626
+ values of active(2) and passive(1) are returned when a Local
627
+ Information TLV has been received indicating that the peer is
628
+ in active or passive mode, respectively.""",
629
+ "reference" :
630
+ """[802.3ah], 30.3.6.1.7.""",
631
+ }, # column
632
+ "dot3OamPeerMaxOamPduSize" : {
633
+ "nodetype" : "column",
634
+ "moduleName" : "DOT3-OAM-MIB",
635
+ "oid" : "1.3.6.1.2.1.158.1.2.1.5",
636
+ "status" : "current",
637
+ "syntax" : {
638
+ "type" : {
639
+ "basetype" : "Unsigned32",
640
+ "ranges" : [
641
+ {
642
+ "min" : "0",
643
+ "max" : "0"
644
+ },
645
+ {
646
+ "min" : "64",
647
+ "max" : "1518"
648
+ },
649
+ ],
650
+ "range" : {
651
+ "min" : "0",
652
+ "max" : "1518"
653
+ },
654
+ },
655
+ },
656
+ "access" : "readonly",
657
+ "units" : "octets",
658
+ "description" :
659
+ """The maximum size of OAMPDU supported by the peer as reflected
660
+ in the latest Information OAMPDU received with a Local
661
+ Information TLV. Ethernet OAM on this interface must not use
662
+ OAMPDUs that exceed this size. The maximum OAMPDU size can be
663
+ determined from the PDU Configuration field of the Local
664
+ Information TLV of the last Information OAMPDU received from
665
+ the peer. A value of zero is returned if no Local Information
666
+ TLV has been received. Otherwise, the value of the OAM peer's
667
+ maximum OAMPDU size is returned in this value.""",
668
+ "reference" :
669
+ """[802.3ah], 30.3.6.1.9.""",
670
+ }, # column
671
+ "dot3OamPeerConfigRevision" : {
672
+ "nodetype" : "column",
673
+ "moduleName" : "DOT3-OAM-MIB",
674
+ "oid" : "1.3.6.1.2.1.158.1.2.1.6",
675
+ "status" : "current",
676
+ "syntax" : {
677
+ "type" : {
678
+ "basetype" : "Unsigned32",
679
+ "ranges" : [
680
+ {
681
+ "min" : "0",
682
+ "max" : "65535"
683
+ },
684
+ ],
685
+ "range" : {
686
+ "min" : "0",
687
+ "max" : "65535"
688
+ },
689
+ },
690
+ },
691
+ "access" : "readonly",
692
+ "description" :
693
+ """The configuration revision of the OAM peer as reflected in
694
+ the latest OAMPDU. This attribute is changed by the peer
695
+ whenever it has a local configuration change for Ethernet OA
696
+ on this interface. The configuration revision can be
697
+ determined from the Revision field of the Local Information
698
+ TLV of the most recently received Information OAMPDU with
699
+ a Local Information TLV. A value of zero is returned if
700
+ no Local Information TLV has been received.""",
701
+ "reference" :
702
+ """[802.3ah], 30.3.6.1.13.""",
703
+ }, # column
704
+ "dot3OamPeerFunctionsSupported" : {
705
+ "nodetype" : "column",
706
+ "moduleName" : "DOT3-OAM-MIB",
707
+ "oid" : "1.3.6.1.2.1.158.1.2.1.7",
708
+ "status" : "current",
709
+ "syntax" : {
710
+ "type" : {
711
+ "basetype" : "Bits",
712
+ "unidirectionalSupport" : {
713
+ "nodetype" : "namednumber",
714
+ "number" : "0"
715
+ },
716
+ "loopbackSupport" : {
717
+ "nodetype" : "namednumber",
718
+ "number" : "1"
719
+ },
720
+ "eventSupport" : {
721
+ "nodetype" : "namednumber",
722
+ "number" : "2"
723
+ },
724
+ "variableSupport" : {
725
+ "nodetype" : "namednumber",
726
+ "number" : "3"
727
+ },
728
+ },
729
+ },
730
+ "access" : "readonly",
731
+ "description" :
732
+ """The OAM functions supported on this Ethernet-like interface.
733
+ OAM consists of separate functionality sets above the basic
734
+ discovery process. This value indicates the capabilities of
735
+ the peer OAM entity with respect to these functions. This
736
+ value is initialized so all bits are clear.
737
+
738
+ If unidirectionalSupport(0) is set, then the peer OAM entity
739
+ supports sending OAM frames on Ethernet interfaces when the
740
+ receive path is known to be inoperable. If
741
+ loopbackSupport(1) is set, then the peer OAM entity can send
742
+ and receive OAM loopback commands. If eventSupport(2) is set,
743
+ then the peer OAM entity can send and receive event OAMPDUs to
744
+ signal various error conditions. If variableSupport(3) is
745
+ set, then the peer OAM entity can send and receive variable
746
+ requests to monitor the attribute value as described in Clause
747
+ 57 of [802.3ah].
748
+
749
+ The capabilities of the OAM peer can be determined from the
750
+ configuration field of the Local Information TLV of the most
751
+ recently received Information OAMPDU with a Local Information
752
+ TLV. All zeros are returned if no Local Information TLV has
753
+
754
+
755
+
756
+ yet been received.""",
757
+ "reference" :
758
+ """[802.3ah], REFERENCE 30.3.6.1.7.""",
759
+ }, # column
760
+ "dot3OamLoopbackTable" : {
761
+ "nodetype" : "table",
762
+ "moduleName" : "DOT3-OAM-MIB",
763
+ "oid" : "1.3.6.1.2.1.158.1.3",
764
+ "status" : "current",
765
+ "description" :
766
+ """This table contains controls for the loopback state of the
767
+ local link as well as indicates the status of the loopback
768
+ function. There is one entry in this table for each entry in
769
+ dot3OamTable that supports loopback functionality (where
770
+ dot3OamFunctionsSupported includes the loopbackSupport bit
771
+ set).
772
+
773
+ Loopback can be used to place the remote OAM entity in a state
774
+ where every received frame (except OAMPDUs) is echoed back
775
+ over the same interface on which they were received. In this
776
+ state, at the remote entity, 'normal' traffic is disabled as
777
+ only the looped back frames are transmitted on the interface.
778
+ Loopback is thus an intrusive operation that prohibits normal
779
+ data flow and should be used accordingly.""",
780
+ }, # table
781
+ "dot3OamLoopbackEntry" : {
782
+ "nodetype" : "row",
783
+ "moduleName" : "DOT3-OAM-MIB",
784
+ "oid" : "1.3.6.1.2.1.158.1.3.1",
785
+ "status" : "current",
786
+ "linkage" : [
787
+ "ifIndex",
788
+ ],
789
+ "description" :
790
+ """An entry in the table, containing information on the loopback
791
+ status for a single Ethernet-like interface. Entries in the
792
+ table are automatically created whenever the local OAM entity
793
+ supports loopback capabilities. The loopback status on the
794
+ interface can be determined from the dot3OamLoopbackStatus
795
+ object.""",
796
+ }, # row
797
+ "dot3OamLoopbackStatus" : {
798
+ "nodetype" : "column",
799
+ "moduleName" : "DOT3-OAM-MIB",
800
+ "oid" : "1.3.6.1.2.1.158.1.3.1.1",
801
+ "status" : "current",
802
+ "syntax" : {
803
+ "type" : {
804
+ "basetype" : "Enumeration",
805
+ "noLoopback" : {
806
+ "nodetype" : "namednumber",
807
+ "number" : "1"
808
+ },
809
+ "initiatingLoopback" : {
810
+ "nodetype" : "namednumber",
811
+ "number" : "2"
812
+ },
813
+ "remoteLoopback" : {
814
+ "nodetype" : "namednumber",
815
+ "number" : "3"
816
+ },
817
+ "terminatingLoopback" : {
818
+ "nodetype" : "namednumber",
819
+ "number" : "4"
820
+ },
821
+ "localLoopback" : {
822
+ "nodetype" : "namednumber",
823
+ "number" : "5"
824
+ },
825
+ "unknown" : {
826
+ "nodetype" : "namednumber",
827
+ "number" : "6"
828
+ },
829
+ },
830
+ },
831
+ "access" : "readwrite",
832
+ "description" :
833
+ """The loopback status of the OAM entity. This status is
834
+ determined by a combination of the local parser and
835
+ multiplexer states, the remote parser and multiplexer states,
836
+ as well as by the actions of the local OAM client. When
837
+ operating in normal mode with no loopback in progress, the
838
+ status reads noLoopback(1).
839
+
840
+ The values initiatingLoopback(2) and terminatingLoopback(4)
841
+ can be read or written. The other values can only be read -
842
+ they can never be written. Writing initiatingLoopback causes
843
+ the local OAM entity to start the loopback process with its
844
+ peer. This value can only be written when the status is
845
+ noLoopback(1). Writing the value initiatingLoopback(2) in any
846
+ other state has no effect. When in remoteLoopback(3), writing
847
+ terminatingLoopback(4) causes the local OAM entity to initiate
848
+ the termination of the loopback state. Writing
849
+ terminatingLoopack(4) in any other state has no effect.
850
+
851
+ If the OAM client initiates a loopback and has sent a
852
+ Loopback OAMPDU and is waiting for a response, where the local
853
+ parser and multiplexer states are DISCARD (see [802.3ah,
854
+ 57.2.11.1]), the status is 'initiatingLoopback'. In this
855
+ case, the local OAM entity has yet to receive any
856
+ acknowledgment that the remote OAM entity has received its
857
+ loopback command request.
858
+
859
+
860
+
861
+
862
+ If the local OAM client knows that the remote OAM entity is in
863
+ loopback mode (via the remote state information as described
864
+ in [802.3ah, 57.2.11.1, 30.3.6.1.15]), the status is
865
+ remoteLoopback(3). If the local OAM client is in the process
866
+ of terminating the remote loopback [802.3ah, 57.2.11.3,
867
+ 30.3.6.1.14] with its local multiplexer and parser states in
868
+ DISCARD, the status is terminatingLoopback(4). If the remote
869
+ OAM client has put the local OAM entity in loopback mode as
870
+ indicated by its local parser state, the status is
871
+ localLoopback(5).
872
+
873
+ The unknown(6) status indicates that the parser and
874
+ multiplexer combination is unexpected. This status may be
875
+ returned if the OAM loopback is in a transition state but
876
+ should not persist.
877
+
878
+ The values of this attribute correspond to the following
879
+ values of the local and remote parser and multiplexer states.
880
+
881
+ value LclPrsr LclMux RmtPrsr RmtMux
882
+ noLoopback FWD FWD FWD FWD
883
+ initLoopback DISCARD DISCARD FWD FWD
884
+ rmtLoopback DISCARD FWD LPBK DISCARD
885
+ tmtngLoopback DISCARD DISCARD LPBK DISCARD
886
+ lclLoopback LPBK DISCARD DISCARD FWD
887
+ unknown *** any other combination ***""",
888
+ "reference" :
889
+ """[802.3ah], REFERENCE 57.2.11, 30.3.61.14,
890
+ 30.3.6.1.15""",
891
+ }, # column
892
+ "dot3OamLoopbackIgnoreRx" : {
893
+ "nodetype" : "column",
894
+ "moduleName" : "DOT3-OAM-MIB",
895
+ "oid" : "1.3.6.1.2.1.158.1.3.1.2",
896
+ "status" : "current",
897
+ "syntax" : {
898
+ "type" : {
899
+ "basetype" : "Enumeration",
900
+ "ignore" : {
901
+ "nodetype" : "namednumber",
902
+ "number" : "1"
903
+ },
904
+ "process" : {
905
+ "nodetype" : "namednumber",
906
+ "number" : "2"
907
+ },
908
+ },
909
+ },
910
+ "access" : "readwrite",
911
+ "description" :
912
+ """Since OAM loopback is a disruptive operation (user traffic
913
+ does not pass), this attribute provides a mechanism to provide
914
+ controls over whether received OAM loopback commands are
915
+ processed or ignored. When the value is ignore(1), received
916
+ loopback commands are ignored. When the value is process(2),
917
+ OAM loopback commands are processed. The default value is to
918
+ ignore loopback commands (ignore(1)).""",
919
+ "reference" :
920
+ """[802.3ah], REFERENCE 57.2.11, 30.3.61.14,
921
+ 30.3.6.1.15""",
922
+ }, # column
923
+ "dot3OamStatsTable" : {
924
+ "nodetype" : "table",
925
+ "moduleName" : "DOT3-OAM-MIB",
926
+ "oid" : "1.3.6.1.2.1.158.1.4",
927
+ "status" : "current",
928
+ "description" :
929
+ """This table contains statistics for the OAM function on a
930
+ particular Ethernet-like interface. There is an entry in the
931
+ table for every entry in the dot3OamTable.
932
+
933
+ The counters in this table are defined as 32-bit entries to
934
+ match the counter size as defined in [802.3ah]. Given that
935
+ the OA protocol is a slow protocol, the counters increment at
936
+ a slow rate.""",
937
+ }, # table
938
+ "dot3OamStatsEntry" : {
939
+ "nodetype" : "row",
940
+ "moduleName" : "DOT3-OAM-MIB",
941
+ "oid" : "1.3.6.1.2.1.158.1.4.1",
942
+ "status" : "current",
943
+ "linkage" : [
944
+ "ifIndex",
945
+ ],
946
+ "description" :
947
+ """An entry in the table containing statistics information on
948
+ the Ethernet OAM function for a single Ethernet-like
949
+ interface. Entries are automatically created for every entry
950
+ in the dot3OamTable. Counters are maintained across
951
+ transitions in dot3OamOperStatus.""",
952
+ }, # row
953
+ "dot3OamInformationTx" : {
954
+ "nodetype" : "column",
955
+ "moduleName" : "DOT3-OAM-MIB",
956
+ "oid" : "1.3.6.1.2.1.158.1.4.1.1",
957
+ "status" : "current",
958
+ "syntax" : {
959
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
960
+ },
961
+ "access" : "readonly",
962
+ "units" : "frames",
963
+ "description" :
964
+ """A count of the number of Information OAMPDUs transmitted on
965
+ this interface.
966
+
967
+ Discontinuities of this counter can occur at re-initialization
968
+ of the management system, and at other times as indicated by
969
+ the value of the ifCounterDiscontinuityTime. """,
970
+ "reference" :
971
+ """[802.3ah], 30.3.6.1.20.""",
972
+ }, # column
973
+ "dot3OamInformationRx" : {
974
+ "nodetype" : "column",
975
+ "moduleName" : "DOT3-OAM-MIB",
976
+ "oid" : "1.3.6.1.2.1.158.1.4.1.2",
977
+ "status" : "current",
978
+ "syntax" : {
979
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
980
+ },
981
+ "access" : "readonly",
982
+ "units" : "frames",
983
+ "description" :
984
+ """A count of the number of Information OAMPDUs received on this
985
+ interface.
986
+
987
+ Discontinuities of this counter can occur at re-initialization
988
+ of the management system, and at other times as indicated by
989
+ the value of the ifCounterDiscontinuityTime.""",
990
+ "reference" :
991
+ """[802.3ah], 30.3.6.1.21.""",
992
+ }, # column
993
+ "dot3OamUniqueEventNotificationTx" : {
994
+ "nodetype" : "column",
995
+ "moduleName" : "DOT3-OAM-MIB",
996
+ "oid" : "1.3.6.1.2.1.158.1.4.1.3",
997
+ "status" : "current",
998
+ "syntax" : {
999
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1000
+ },
1001
+ "access" : "readonly",
1002
+ "units" : "frames",
1003
+ "description" :
1004
+ """A count of the number of unique Event OAMPDUs transmitted on
1005
+ this interface. Event Notifications may be sent in duplicate
1006
+ to increase the probability of successfully being received,
1007
+
1008
+
1009
+
1010
+ given the possibility that a frame may be lost in transit.
1011
+ Duplicate Event Notification transmissions are counted by
1012
+ dot3OamDuplicateEventNotificationTx.
1013
+
1014
+ A unique Event Notification OAMPDU is indicated as an Event
1015
+ Notification OAMPDU with a Sequence Number field that is
1016
+ distinct from the previously transmitted Event Notification
1017
+ OAMPDU Sequence Number.
1018
+
1019
+ Discontinuities of this counter can occur at re-initialization
1020
+ of the management system, and at other times as indicated by
1021
+ the value of the ifCounterDiscontinuityTime.""",
1022
+ "reference" :
1023
+ """[802.3ah], 30.3.6.1.22.""",
1024
+ }, # column
1025
+ "dot3OamUniqueEventNotificationRx" : {
1026
+ "nodetype" : "column",
1027
+ "moduleName" : "DOT3-OAM-MIB",
1028
+ "oid" : "1.3.6.1.2.1.158.1.4.1.4",
1029
+ "status" : "current",
1030
+ "syntax" : {
1031
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1032
+ },
1033
+ "access" : "readonly",
1034
+ "units" : "frames",
1035
+ "description" :
1036
+ """A count of the number of unique Event OAMPDUs received on
1037
+ this interface. Event Notification OAMPDUs may be sent in
1038
+ duplicate to increase the probability of successfully being
1039
+ received, given the possibility that a frame may be lost in
1040
+ transit. Duplicate Event Notification receptions are counted
1041
+ by dot3OamDuplicateEventNotificationRx.
1042
+
1043
+ A unique Event Notification OAMPDU is indicated as an Event
1044
+ Notification OAMPDU with a Sequence Number field that is
1045
+ distinct from the previously received Event Notification
1046
+ OAMPDU Sequence Number.
1047
+
1048
+ Discontinuities of this counter can occur at re-initialization
1049
+ of the management system, and at other times as indicated by
1050
+ the value of the ifCounterDiscontinuityTime.""",
1051
+ "reference" :
1052
+ """[802.3ah], 30.3.6.1.24.""",
1053
+ }, # column
1054
+ "dot3OamDuplicateEventNotificationTx" : {
1055
+ "nodetype" : "column",
1056
+ "moduleName" : "DOT3-OAM-MIB",
1057
+ "oid" : "1.3.6.1.2.1.158.1.4.1.5",
1058
+ "status" : "current",
1059
+ "syntax" : {
1060
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1061
+ },
1062
+ "access" : "readonly",
1063
+ "units" : "frames",
1064
+ "description" :
1065
+ """A count of the number of duplicate Event OAMPDUs transmitted
1066
+
1067
+
1068
+
1069
+ on this interface. Event Notification OAMPDUs may be sent in
1070
+ duplicate to increase the probability of successfully being
1071
+ received, given the possibility that a frame may be lost in
1072
+ transit.
1073
+
1074
+ A duplicate Event Notification OAMPDU is indicated as an Event
1075
+ Notification OAMPDU with a Sequence Number field that is
1076
+ identical to the previously transmitted Event Notification
1077
+ OAMPDU Sequence Number.
1078
+
1079
+ Discontinuities of this counter can occur at re-initialization
1080
+ of the management system, and at other times as indicated by
1081
+ the value of the ifCounterDiscontinuityTime.""",
1082
+ "reference" :
1083
+ """[802.3ah], 30.3.6.1.23.""",
1084
+ }, # column
1085
+ "dot3OamDuplicateEventNotificationRx" : {
1086
+ "nodetype" : "column",
1087
+ "moduleName" : "DOT3-OAM-MIB",
1088
+ "oid" : "1.3.6.1.2.1.158.1.4.1.6",
1089
+ "status" : "current",
1090
+ "syntax" : {
1091
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1092
+ },
1093
+ "access" : "readonly",
1094
+ "units" : "frames",
1095
+ "description" :
1096
+ """A count of the number of duplicate Event OAMPDUs received on
1097
+ this interface. Event Notification OAMPDUs may be sent in
1098
+ duplicate to increase the probability of successfully being
1099
+ received, given the possibility that a frame may be lost in
1100
+ transit.
1101
+
1102
+ A duplicate Event Notification OAMPDU is indicated as an Event
1103
+ Notification OAMPDU with a Sequence Number field that is
1104
+ identical to the previously received Event Notification OAMPDU
1105
+ Sequence Number.
1106
+
1107
+ Discontinuities of this counter can occur at re-initialization
1108
+ of the management system, and at other times as indicated by
1109
+ the value of the ifCounterDiscontinuityTime.""",
1110
+ "reference" :
1111
+ """[802.3ah], 30.3.6.1.25.""",
1112
+ }, # column
1113
+ "dot3OamLoopbackControlTx" : {
1114
+ "nodetype" : "column",
1115
+ "moduleName" : "DOT3-OAM-MIB",
1116
+ "oid" : "1.3.6.1.2.1.158.1.4.1.7",
1117
+ "status" : "current",
1118
+ "syntax" : {
1119
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1120
+ },
1121
+ "access" : "readonly",
1122
+ "units" : "frames",
1123
+ "description" :
1124
+ """A count of the number of Loopback Control OAMPDUs transmitted
1125
+
1126
+
1127
+
1128
+ on this interface.
1129
+
1130
+ Discontinuities of this counter can occur at re-initialization
1131
+ of the management system, and at other times as indicated by
1132
+ the value of the ifCounterDiscontinuityTime.""",
1133
+ "reference" :
1134
+ """[802.3ah], 30.3.6.1.26.""",
1135
+ }, # column
1136
+ "dot3OamLoopbackControlRx" : {
1137
+ "nodetype" : "column",
1138
+ "moduleName" : "DOT3-OAM-MIB",
1139
+ "oid" : "1.3.6.1.2.1.158.1.4.1.8",
1140
+ "status" : "current",
1141
+ "syntax" : {
1142
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1143
+ },
1144
+ "access" : "readonly",
1145
+ "units" : "frames",
1146
+ "description" :
1147
+ """A count of the number of Loopback Control OAMPDUs received
1148
+ on this interface.
1149
+
1150
+ Discontinuities of this counter can occur at re-initialization
1151
+ of the management system, and at other times as indicated by
1152
+ the value of the ifCounterDiscontinuityTime.""",
1153
+ "reference" :
1154
+ """[802.3ah], 30.3.6.1.27.""",
1155
+ }, # column
1156
+ "dot3OamVariableRequestTx" : {
1157
+ "nodetype" : "column",
1158
+ "moduleName" : "DOT3-OAM-MIB",
1159
+ "oid" : "1.3.6.1.2.1.158.1.4.1.9",
1160
+ "status" : "current",
1161
+ "syntax" : {
1162
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1163
+ },
1164
+ "access" : "readonly",
1165
+ "units" : "frames",
1166
+ "description" :
1167
+ """A count of the number of Variable Request OAMPDUs transmitted
1168
+ on this interface.
1169
+
1170
+ Discontinuities of this counter can occur at re-initialization
1171
+ of the management system, and at other times as indicated by
1172
+ the value of the ifCounterDiscontinuityTime.""",
1173
+ "reference" :
1174
+ """[802.3ah], 30.3.6.1.28.""",
1175
+ }, # column
1176
+ "dot3OamVariableRequestRx" : {
1177
+ "nodetype" : "column",
1178
+ "moduleName" : "DOT3-OAM-MIB",
1179
+ "oid" : "1.3.6.1.2.1.158.1.4.1.10",
1180
+ "status" : "current",
1181
+ "syntax" : {
1182
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1183
+ },
1184
+ "access" : "readonly",
1185
+ "units" : "frames",
1186
+ "description" :
1187
+ """A count of the number of Variable Request OAMPDUs received on
1188
+
1189
+
1190
+
1191
+ this interface.
1192
+
1193
+ Discontinuities of this counter can occur at re-initialization
1194
+ of the management system, and at other times as indicated by
1195
+ the value of the ifCounterDiscontinuityTime.""",
1196
+ "reference" :
1197
+ """[802.3ah], 30.3.6.1.29.""",
1198
+ }, # column
1199
+ "dot3OamVariableResponseTx" : {
1200
+ "nodetype" : "column",
1201
+ "moduleName" : "DOT3-OAM-MIB",
1202
+ "oid" : "1.3.6.1.2.1.158.1.4.1.11",
1203
+ "status" : "current",
1204
+ "syntax" : {
1205
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1206
+ },
1207
+ "access" : "readonly",
1208
+ "units" : "frames",
1209
+ "description" :
1210
+ """A count of the number of Variable Response OAMPDUs
1211
+ transmitted on this interface.
1212
+
1213
+ Discontinuities of this counter can occur at re-initialization
1214
+ of the management system, and at other times as indicated by
1215
+ the value of the ifCounterDiscontinuityTime.""",
1216
+ "reference" :
1217
+ """[802.3ah], 30.3.6.1.30.""",
1218
+ }, # column
1219
+ "dot3OamVariableResponseRx" : {
1220
+ "nodetype" : "column",
1221
+ "moduleName" : "DOT3-OAM-MIB",
1222
+ "oid" : "1.3.6.1.2.1.158.1.4.1.12",
1223
+ "status" : "current",
1224
+ "syntax" : {
1225
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1226
+ },
1227
+ "access" : "readonly",
1228
+ "units" : "frames",
1229
+ "description" :
1230
+ """A count of the number of Variable Response OAMPDUs received
1231
+ on this interface.
1232
+
1233
+ Discontinuities of this counter can occur at re-initialization
1234
+ of the management system, and at other times as indicated by
1235
+ the value of the ifCounterDiscontinuityTime.""",
1236
+ "reference" :
1237
+ """[802.3ah], 30.3.6.1.31.""",
1238
+ }, # column
1239
+ "dot3OamOrgSpecificTx" : {
1240
+ "nodetype" : "column",
1241
+ "moduleName" : "DOT3-OAM-MIB",
1242
+ "oid" : "1.3.6.1.2.1.158.1.4.1.13",
1243
+ "status" : "current",
1244
+ "syntax" : {
1245
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1246
+ },
1247
+ "access" : "readonly",
1248
+ "units" : "frames",
1249
+ "description" :
1250
+ """A count of the number of Organization Specific OAMPDUs
1251
+
1252
+
1253
+
1254
+ transmitted on this interface.
1255
+
1256
+ Discontinuities of this counter can occur at re-initialization
1257
+ of the management system, and at other times as indicated by
1258
+ the value of the ifCounterDiscontinuityTime.""",
1259
+ "reference" :
1260
+ """[802.3ah], 30.3.6.1.32.""",
1261
+ }, # column
1262
+ "dot3OamOrgSpecificRx" : {
1263
+ "nodetype" : "column",
1264
+ "moduleName" : "DOT3-OAM-MIB",
1265
+ "oid" : "1.3.6.1.2.1.158.1.4.1.14",
1266
+ "status" : "current",
1267
+ "syntax" : {
1268
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1269
+ },
1270
+ "access" : "readonly",
1271
+ "units" : "frames",
1272
+ "description" :
1273
+ """A count of the number of Organization Specific OAMPDUs
1274
+ received on this interface.
1275
+
1276
+ Discontinuities of this counter can occur at re-initialization
1277
+ of the management system, and at other times as indicated by
1278
+ the value of the ifCounterDiscontinuityTime.""",
1279
+ "reference" :
1280
+ """[802.3ah], 30.3.6.1.33.""",
1281
+ }, # column
1282
+ "dot3OamUnsupportedCodesTx" : {
1283
+ "nodetype" : "column",
1284
+ "moduleName" : "DOT3-OAM-MIB",
1285
+ "oid" : "1.3.6.1.2.1.158.1.4.1.15",
1286
+ "status" : "current",
1287
+ "syntax" : {
1288
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1289
+ },
1290
+ "access" : "readonly",
1291
+ "units" : "frames",
1292
+ "description" :
1293
+ """A count of the number of OAMPDUs transmitted on this
1294
+ interface with an unsupported op-code.
1295
+
1296
+ Discontinuities of this counter can occur at re-initialization
1297
+ of the management system, and at other times as indicated by
1298
+ the value of the ifCounterDiscontinuityTime.""",
1299
+ "reference" :
1300
+ """[802.3ah], 30.3.6.1.18.""",
1301
+ }, # column
1302
+ "dot3OamUnsupportedCodesRx" : {
1303
+ "nodetype" : "column",
1304
+ "moduleName" : "DOT3-OAM-MIB",
1305
+ "oid" : "1.3.6.1.2.1.158.1.4.1.16",
1306
+ "status" : "current",
1307
+ "syntax" : {
1308
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1309
+ },
1310
+ "access" : "readonly",
1311
+ "units" : "frames",
1312
+ "description" :
1313
+ """A count of the number of OAMPDUs received on this interface
1314
+
1315
+
1316
+
1317
+ with an unsupported op-code.
1318
+
1319
+ Discontinuities of this counter can occur at re-initialization
1320
+ of the management system, and at other times as indicated by
1321
+ the value of the ifCounterDiscontinuityTime.""",
1322
+ "reference" :
1323
+ """[802.3ah], 30.3.6.1.19.""",
1324
+ }, # column
1325
+ "dot3OamFramesLostDueToOam" : {
1326
+ "nodetype" : "column",
1327
+ "moduleName" : "DOT3-OAM-MIB",
1328
+ "oid" : "1.3.6.1.2.1.158.1.4.1.17",
1329
+ "status" : "current",
1330
+ "syntax" : {
1331
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1332
+ },
1333
+ "access" : "readonly",
1334
+ "units" : "frames",
1335
+ "description" :
1336
+ """A count of the number of frames that were dropped by the OA
1337
+ multiplexer. Since the OAM multiplexer has multiple inputs
1338
+ and a single output, there may be cases where frames are
1339
+ dropped due to transmit resource contention. This counter is
1340
+ incremented whenever a frame is dropped by the OAM layer.
1341
+ Note that any Ethernet frame, not just OAMPDUs, may be dropped
1342
+ by the OAM layer. This can occur when an OAMPDU takes
1343
+ precedence over a 'normal' frame resulting in the 'normal'
1344
+ frame being dropped.
1345
+
1346
+ When this counter is incremented, no other counters in this
1347
+ MIB are incremented.
1348
+
1349
+ Discontinuities of this counter can occur at re-initialization
1350
+ of the management system, and at other times as indicated by
1351
+ the value of the ifCounterDiscontinuityTime.""",
1352
+ "reference" :
1353
+ """[802.3ah], 30.3.6.1.46.""",
1354
+ }, # column
1355
+ "dot3OamEventConfigTable" : {
1356
+ "nodetype" : "table",
1357
+ "moduleName" : "DOT3-OAM-MIB",
1358
+ "oid" : "1.3.6.1.2.1.158.1.5",
1359
+ "status" : "current",
1360
+ "description" :
1361
+ """Ethernet OAM includes the ability to generate and receive
1362
+ Event Notification OAMPDUs to indicate various link problems.
1363
+ This table contains the mechanisms to enable Event
1364
+
1365
+
1366
+
1367
+ Notifications and configure the thresholds to generate the
1368
+ standard Ethernet OAM events. There is one entry in the table
1369
+ for every entry in dot3OamTable that supports OAM events
1370
+ (where dot3OamFunctionsSupported includes the eventSupport
1371
+ bit set). The values in the table are maintained across
1372
+ changes to dot3OamOperStatus.
1373
+
1374
+ The standard threshold crossing events are:
1375
+ - Errored Symbol Period Event. Generated when the number of
1376
+ symbol errors exceeds a threshold within a given window
1377
+ defined by a number of symbols (for example, 1,000 symbols
1378
+ out of 1,000,000 had errors).
1379
+ - Errored Frame Period Event. Generated when the number of
1380
+ frame errors exceeds a threshold within a given window
1381
+ defined by a number of frames (for example, 10 frames out
1382
+ of 1000 had errors).
1383
+ - Errored Frame Event. Generated when the number of frame
1384
+ errors exceeds a threshold within a given window defined
1385
+ by a period of time (for example, 10 frames in 1 second
1386
+ had errors).
1387
+ - Errored Frame Seconds Summary Event. Generated when the
1388
+ number of errored frame seconds exceeds a threshold within
1389
+ a given time period (for example, 10 errored frame seconds
1390
+ within the last 100 seconds). An errored frame second is
1391
+ defined as a 1 second interval which had >0 frame errors.
1392
+ There are other events (dying gasp, critical events) that are
1393
+ not threshold crossing events but which can be
1394
+ enabled/disabled via this table.""",
1395
+ }, # table
1396
+ "dot3OamEventConfigEntry" : {
1397
+ "nodetype" : "row",
1398
+ "moduleName" : "DOT3-OAM-MIB",
1399
+ "oid" : "1.3.6.1.2.1.158.1.5.1",
1400
+ "status" : "current",
1401
+ "linkage" : [
1402
+ "ifIndex",
1403
+ ],
1404
+ "description" :
1405
+ """Entries are automatically created and deleted from this
1406
+ table, and exist whenever the OAM entity supports Ethernet OA
1407
+ events (as indicated by the eventSupport bit in
1408
+ dot3OamFunctionsSuppported). Values in the table are
1409
+ maintained across changes to the value of dot3OamOperStatus.
1410
+
1411
+ Event configuration controls when the local management entity
1412
+ sends Event Notification OAMPDUs to its OAM peer, and when
1413
+ certain event flags are set or cleared in OAMPDUs.""",
1414
+ }, # row
1415
+ "dot3OamErrSymPeriodWindowHi" : {
1416
+ "nodetype" : "column",
1417
+ "moduleName" : "DOT3-OAM-MIB",
1418
+ "oid" : "1.3.6.1.2.1.158.1.5.1.1",
1419
+ "status" : "current",
1420
+ "syntax" : {
1421
+ "type" : { "module" :"", "name" : "Unsigned32"},
1422
+ },
1423
+ "access" : "readwrite",
1424
+ "units" : "2^32 symbols",
1425
+ "description" :
1426
+ """The two objects dot3OamErrSymPeriodWindowHi and
1427
+ dot3OamErrSymPeriodLo together form an unsigned 64-bit
1428
+ integer representing the number of symbols over which this
1429
+ threshold event is defined. This is defined as
1430
+ dot3OamErrSymPeriodWindow = ((2^32)*dot3OamErrSymPeriodWindowHi)
1431
+ + dot3OamErrSymPeriodWindowLo
1432
+
1433
+ If dot3OamErrSymPeriodThreshold symbol errors occur within a
1434
+ window of dot3OamErrSymPeriodWindow symbols, an Event
1435
+ Notification OAMPDU should be generated with an Errored Symbol
1436
+ Period Event TLV indicating that the threshold has been
1437
+ crossed in this window.
1438
+
1439
+ The default value for dot3OamErrSymPeriodWindow is the number
1440
+ of symbols in one second for the underlying physical layer.""",
1441
+ "reference" :
1442
+ """[802.3ah], 30.3.6.1.34""",
1443
+ }, # column
1444
+ "dot3OamErrSymPeriodWindowLo" : {
1445
+ "nodetype" : "column",
1446
+ "moduleName" : "DOT3-OAM-MIB",
1447
+ "oid" : "1.3.6.1.2.1.158.1.5.1.2",
1448
+ "status" : "current",
1449
+ "syntax" : {
1450
+ "type" : { "module" :"", "name" : "Unsigned32"},
1451
+ },
1452
+ "access" : "readwrite",
1453
+ "units" : "symbols",
1454
+ "description" :
1455
+ """The two objects dot3OamErrSymPeriodWindowHi and
1456
+ dot3OamErrSymPeriodWindowLo together form an unsigned 64-bit
1457
+ integer representing the number of symbols over which this
1458
+ threshold event is defined. This is defined as
1459
+
1460
+ dot3OamErrSymPeriodWindow = ((2^32)*dot3OamErrSymPeriodWindowHi)
1461
+ + dot3OamErrSymPeriodWindowLo
1462
+
1463
+ If dot3OamErrSymPeriodThreshold symbol errors occur within a
1464
+ window of dot3OamErrSymPeriodWindow symbols, an Event
1465
+ Notification OAMPDU should be generated with an Errored Symbol
1466
+ Period Event TLV indicating that the threshold has been
1467
+ crossed in this window.
1468
+
1469
+ The default value for dot3OamErrSymPeriodWindow is the number
1470
+ of symbols in one second for the underlying physical layer.""",
1471
+ "reference" :
1472
+ """[802.3ah], 30.3.6.1.34""",
1473
+ }, # column
1474
+ "dot3OamErrSymPeriodThresholdHi" : {
1475
+ "nodetype" : "column",
1476
+ "moduleName" : "DOT3-OAM-MIB",
1477
+ "oid" : "1.3.6.1.2.1.158.1.5.1.3",
1478
+ "status" : "current",
1479
+ "syntax" : {
1480
+ "type" : { "module" :"", "name" : "Unsigned32"},
1481
+ },
1482
+ "access" : "readwrite",
1483
+ "units" : "2^32 symbols",
1484
+ "description" :
1485
+ """The two objects dot3OamErrSymPeriodThresholdHi and
1486
+ dot3OamErrSymPeriodThresholdLo together form an unsigned
1487
+ 64-bit integer representing the number of symbol errors that
1488
+ must occur within a given window to cause this event.
1489
+
1490
+ This is defined as
1491
+
1492
+ dot3OamErrSymPeriodThreshold =
1493
+ ((2^32) * dot3OamErrSymPeriodThresholdHi)
1494
+ + dot3OamErrSymPeriodThresholdLo
1495
+
1496
+ If dot3OamErrSymPeriodThreshold symbol errors occur within a
1497
+ window of dot3OamErrSymPeriodWindow symbols, an Event
1498
+ Notification OAMPDU should be generated with an Errored Symbol
1499
+ Period Event TLV indicating that the threshold has been
1500
+ crossed in this window.
1501
+
1502
+ The default value for dot3OamErrSymPeriodThreshold is one
1503
+ symbol errors. If the threshold value is zero, then an Event
1504
+
1505
+
1506
+
1507
+ Notification OAMPDU is sent periodically (at the end of every
1508
+ window). This can be used as an asynchronous notification to
1509
+ the peer OAM entity of the statistics related to this
1510
+ threshold crossing alarm.""",
1511
+ "reference" :
1512
+ """[802.3ah], 30.3.6.1.34""",
1513
+ }, # column
1514
+ "dot3OamErrSymPeriodThresholdLo" : {
1515
+ "nodetype" : "column",
1516
+ "moduleName" : "DOT3-OAM-MIB",
1517
+ "oid" : "1.3.6.1.2.1.158.1.5.1.4",
1518
+ "status" : "current",
1519
+ "syntax" : {
1520
+ "type" : { "module" :"", "name" : "Unsigned32"},
1521
+ },
1522
+ "access" : "readwrite",
1523
+ "units" : "symbols",
1524
+ "description" :
1525
+ """The two objects dot3OamErrSymPeriodThresholdHi and
1526
+ dot3OamErrSymPeriodThresholdLo together form an unsigned
1527
+ 64-bit integer representing the number of symbol errors that
1528
+ must occur within a given window to cause this event.
1529
+
1530
+ This is defined as
1531
+
1532
+ dot3OamErrSymPeriodThreshold =
1533
+ ((2^32) * dot3OamErrSymPeriodThresholdHi)
1534
+ + dot3OamErrSymPeriodThresholdLo
1535
+
1536
+ If dot3OamErrSymPeriodThreshold symbol errors occur within a
1537
+ window of dot3OamErrSymPeriodWindow symbols, an Event
1538
+ Notification OAMPDU should be generated with an Errored Symbol
1539
+ Period Event TLV indicating that the threshold has been
1540
+ crossed in this window.
1541
+
1542
+ The default value for dot3OamErrSymPeriodThreshold is one
1543
+ symbol error. If the threshold value is zero, then an Event
1544
+ Notification OAMPDU is sent periodically (at the end of every
1545
+ window). This can be used as an asynchronous notification to
1546
+ the peer OAM entity of the statistics related to this
1547
+ threshold crossing alarm.""",
1548
+ "reference" :
1549
+ """[802.3ah], 30.3.6.1.34""",
1550
+ }, # column
1551
+ "dot3OamErrSymPeriodEvNotifEnable" : {
1552
+ "nodetype" : "column",
1553
+ "moduleName" : "DOT3-OAM-MIB",
1554
+ "oid" : "1.3.6.1.2.1.158.1.5.1.5",
1555
+ "status" : "current",
1556
+ "syntax" : {
1557
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1558
+ },
1559
+ "access" : "readwrite",
1560
+ "description" :
1561
+ """If true, the OAM entity should send an Event Notification
1562
+ OAMPDU when an Errored Symbol Period Event occurs.
1563
+
1564
+
1565
+
1566
+
1567
+ By default, this object should have the value true for
1568
+ Ethernet-like interfaces that support OAM. If the OAM layer
1569
+ does not support Event Notifications (as indicated via the
1570
+ dot3OamFunctionsSupported attribute), this value is ignored.""",
1571
+ }, # column
1572
+ "dot3OamErrFramePeriodWindow" : {
1573
+ "nodetype" : "column",
1574
+ "moduleName" : "DOT3-OAM-MIB",
1575
+ "oid" : "1.3.6.1.2.1.158.1.5.1.6",
1576
+ "status" : "current",
1577
+ "syntax" : {
1578
+ "type" : { "module" :"", "name" : "Unsigned32"},
1579
+ },
1580
+ "access" : "readwrite",
1581
+ "units" : "frames",
1582
+ "description" :
1583
+ """The number of frames over which the threshold is defined.
1584
+ The default value of the window is the number of minimum size
1585
+ Ethernet frames that can be received over the physical layer
1586
+ in one second.
1587
+
1588
+ If dot3OamErrFramePeriodThreshold frame errors occur within a
1589
+ window of dot3OamErrFramePeriodWindow frames, an Event
1590
+ Notification OAMPDU should be generated with an Errored Frame
1591
+ Period Event TLV indicating that the threshold has been
1592
+ crossed in this window.""",
1593
+ "reference" :
1594
+ """[802.3ah], 30.3.6.1.38""",
1595
+ }, # column
1596
+ "dot3OamErrFramePeriodThreshold" : {
1597
+ "nodetype" : "column",
1598
+ "moduleName" : "DOT3-OAM-MIB",
1599
+ "oid" : "1.3.6.1.2.1.158.1.5.1.7",
1600
+ "status" : "current",
1601
+ "syntax" : {
1602
+ "type" : { "module" :"", "name" : "Unsigned32"},
1603
+ },
1604
+ "access" : "readwrite",
1605
+ "units" : "frames",
1606
+ "description" :
1607
+ """The number of frame errors that must occur for this event to
1608
+ be triggered. The default value is one frame error. If the
1609
+ threshold value is zero, then an Event Notification OAMPDU is
1610
+ sent periodically (at the end of every window). This can be
1611
+ used as an asynchronous notification to the peer OAM entity of
1612
+ the statistics related to this threshold crossing alarm.
1613
+
1614
+ If dot3OamErrFramePeriodThreshold frame errors occur within a
1615
+ window of dot3OamErrFramePeriodWindow frames, an Event
1616
+ Notification OAMPDU should be generated with an Errored Frame
1617
+ Period Event TLV indicating that the threshold has been
1618
+ crossed in this window.""",
1619
+ "reference" :
1620
+ """[802.3ah], 30.3.6.1.38""",
1621
+ }, # column
1622
+ "dot3OamErrFramePeriodEvNotifEnable" : {
1623
+ "nodetype" : "column",
1624
+ "moduleName" : "DOT3-OAM-MIB",
1625
+ "oid" : "1.3.6.1.2.1.158.1.5.1.8",
1626
+ "status" : "current",
1627
+ "syntax" : {
1628
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1629
+ },
1630
+ "access" : "readwrite",
1631
+ "description" :
1632
+ """If true, the OAM entity should send an Event Notification
1633
+ OAMPDU when an Errored Frame Period Event occurs.
1634
+
1635
+ By default, this object should have the value true for
1636
+ Ethernet-like interfaces that support OAM. If the OAM layer
1637
+ does not support Event Notifications (as indicated via the
1638
+ dot3OamFunctionsSupported attribute), this value is ignored.""",
1639
+ }, # column
1640
+ "dot3OamErrFrameWindow" : {
1641
+ "nodetype" : "column",
1642
+ "moduleName" : "DOT3-OAM-MIB",
1643
+ "oid" : "1.3.6.1.2.1.158.1.5.1.9",
1644
+ "status" : "current",
1645
+ "syntax" : {
1646
+ "type" : { "module" :"", "name" : "Unsigned32"},
1647
+ },
1648
+ "access" : "readwrite",
1649
+ "default" : "10",
1650
+ "units" : "tenths of a second",
1651
+ "description" :
1652
+ """The amount of time (in 100ms increments) over which the
1653
+ threshold is defined. The default value is 10 (1 second).
1654
+
1655
+ If dot3OamErrFrameThreshold frame errors occur within a window
1656
+ of dot3OamErrFrameWindow seconds (measured in tenths of
1657
+ seconds), an Event Notification OAMPDU should be generated
1658
+ with an Errored Frame Event TLV indicating that the threshold
1659
+ has been crossed in this window.""",
1660
+ "reference" :
1661
+ """[802.3ah], 30.3.6.1.36""",
1662
+ }, # column
1663
+ "dot3OamErrFrameThreshold" : {
1664
+ "nodetype" : "column",
1665
+ "moduleName" : "DOT3-OAM-MIB",
1666
+ "oid" : "1.3.6.1.2.1.158.1.5.1.10",
1667
+ "status" : "current",
1668
+ "syntax" : {
1669
+ "type" : { "module" :"", "name" : "Unsigned32"},
1670
+ },
1671
+ "access" : "readwrite",
1672
+ "default" : "1",
1673
+ "units" : "frames",
1674
+ "description" :
1675
+ """The number of frame errors that must occur for this event to
1676
+ be triggered. The default value is one frame error. If the
1677
+ threshold value is zero, then an Event Notification OAMPDU is
1678
+ sent periodically (at the end of every window). This can be
1679
+ used as an asynchronous notification to the peer OAM entity of
1680
+ the statistics related to this threshold crossing alarm.
1681
+
1682
+
1683
+
1684
+
1685
+ If dot3OamErrFrameThreshold frame errors occur within a window
1686
+ of dot3OamErrFrameWindow (in tenths of seconds), an Event
1687
+ Notification OAMPDU should be generated with an Errored Frame
1688
+ Event TLV indicating the threshold has been crossed in this
1689
+ window.""",
1690
+ "reference" :
1691
+ """[802.3ah], 30.3.6.1.36""",
1692
+ }, # column
1693
+ "dot3OamErrFrameEvNotifEnable" : {
1694
+ "nodetype" : "column",
1695
+ "moduleName" : "DOT3-OAM-MIB",
1696
+ "oid" : "1.3.6.1.2.1.158.1.5.1.11",
1697
+ "status" : "current",
1698
+ "syntax" : {
1699
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1700
+ },
1701
+ "access" : "readwrite",
1702
+ "default" : "true",
1703
+ "description" :
1704
+ """If true, the OAM entity should send an Event Notification
1705
+ OAMPDU when an Errored Frame Event occurs.
1706
+
1707
+ By default, this object should have the value true for
1708
+ Ethernet-like interfaces that support OAM. If the OAM layer
1709
+ does not support Event Notifications (as indicated via the
1710
+ dot3OamFunctionsSupported attribute), this value is ignored.""",
1711
+ }, # column
1712
+ "dot3OamErrFrameSecsSummaryWindow" : {
1713
+ "nodetype" : "column",
1714
+ "moduleName" : "DOT3-OAM-MIB",
1715
+ "oid" : "1.3.6.1.2.1.158.1.5.1.12",
1716
+ "status" : "current",
1717
+ "syntax" : {
1718
+ "type" : {
1719
+ "basetype" : "Integer32",
1720
+ "ranges" : [
1721
+ {
1722
+ "min" : "100",
1723
+ "max" : "9000"
1724
+ },
1725
+ ],
1726
+ "range" : {
1727
+ "min" : "100",
1728
+ "max" : "9000"
1729
+ },
1730
+ },
1731
+ },
1732
+ "access" : "readwrite",
1733
+ "default" : "100",
1734
+ "units" : "tenths of a second",
1735
+ "description" :
1736
+ """The amount of time (in 100 ms intervals) over which the
1737
+ threshold is defined. The default value is 100 (10 seconds).
1738
+
1739
+ If dot3OamErrFrameSecsSummaryThreshold frame errors occur
1740
+ within a window of dot3OamErrFrameSecsSummaryWindow (in tenths
1741
+ of seconds), an Event Notification OAMPDU should be generated
1742
+ with an Errored Frame Seconds Summary Event TLV indicating
1743
+ that the threshold has been crossed in this window.""",
1744
+ "reference" :
1745
+ """[802.3ah], 30.3.6.1.40""",
1746
+ }, # column
1747
+ "dot3OamErrFrameSecsSummaryThreshold" : {
1748
+ "nodetype" : "column",
1749
+ "moduleName" : "DOT3-OAM-MIB",
1750
+ "oid" : "1.3.6.1.2.1.158.1.5.1.13",
1751
+ "status" : "current",
1752
+ "syntax" : {
1753
+ "type" : {
1754
+ "basetype" : "Integer32",
1755
+ "ranges" : [
1756
+ {
1757
+ "min" : "1",
1758
+ "max" : "900"
1759
+ },
1760
+ ],
1761
+ "range" : {
1762
+ "min" : "1",
1763
+ "max" : "900"
1764
+ },
1765
+ },
1766
+ },
1767
+ "access" : "readwrite",
1768
+ "default" : "1",
1769
+ "units" : "errored frame seconds",
1770
+ "description" :
1771
+ """The number of errored frame seconds that must occur for this
1772
+ event to be triggered. The default value is one errored frame
1773
+ second. If the threshold value is zero, then an Event
1774
+ Notification OAMPDU is sent periodically (at the end of every
1775
+ window). This can be used as an asynchronous notification to
1776
+ the peer OAM entity of the statistics related to this
1777
+ threshold crossing alarm.
1778
+
1779
+ If dot3OamErrFrameSecsSummaryThreshold frame errors occur
1780
+ within a window of dot3OamErrFrameSecsSummaryWindow (in tenths
1781
+ of seconds), an Event Notification OAMPDU should be generated
1782
+ with an Errored Frame Seconds Summary Event TLV indicating
1783
+ that the threshold has been crossed in this window.""",
1784
+ "reference" :
1785
+ """[802.3ah], 30.3.6.1.40""",
1786
+ }, # column
1787
+ "dot3OamErrFrameSecsEvNotifEnable" : {
1788
+ "nodetype" : "column",
1789
+ "moduleName" : "DOT3-OAM-MIB",
1790
+ "oid" : "1.3.6.1.2.1.158.1.5.1.14",
1791
+ "status" : "current",
1792
+ "syntax" : {
1793
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1794
+ },
1795
+ "access" : "readwrite",
1796
+ "default" : "true",
1797
+ "description" :
1798
+ """If true, the local OAM entity should send an Event
1799
+ Notification OAMPDU when an Errored Frame Seconds Event
1800
+ occurs.
1801
+
1802
+ By default, this object should have the value true for
1803
+ Ethernet-like interfaces that support OAM. If the OAM layer
1804
+ does not support Event Notifications (as indicated via the
1805
+ dot3OamFunctionsSupported attribute), this value is ignored.""",
1806
+ }, # column
1807
+ "dot3OamDyingGaspEnable" : {
1808
+ "nodetype" : "column",
1809
+ "moduleName" : "DOT3-OAM-MIB",
1810
+ "oid" : "1.3.6.1.2.1.158.1.5.1.15",
1811
+ "status" : "current",
1812
+ "syntax" : {
1813
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1814
+ },
1815
+ "access" : "readwrite",
1816
+ "default" : "true",
1817
+ "description" :
1818
+ """If true, the local OAM entity should attempt to indicate a
1819
+ dying gasp via the OAMPDU flags field to its peer OAM entity
1820
+ when a dying gasp event occurs. The exact definition of a
1821
+ dying gasp event is implementation dependent. If the system
1822
+
1823
+
1824
+
1825
+ does not support dying gasp capability, setting this object
1826
+ has no effect, and reading the object should always result in
1827
+ 'false'.
1828
+
1829
+ By default, this object should have the value true for
1830
+ Ethernet-like interfaces that support OAM. If the OAM layer
1831
+ does not support Event Notifications (as indicated via the
1832
+ dot3OamFunctionsSupported attribute), this value is ignored.""",
1833
+ }, # column
1834
+ "dot3OamCriticalEventEnable" : {
1835
+ "nodetype" : "column",
1836
+ "moduleName" : "DOT3-OAM-MIB",
1837
+ "oid" : "1.3.6.1.2.1.158.1.5.1.16",
1838
+ "status" : "current",
1839
+ "syntax" : {
1840
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1841
+ },
1842
+ "access" : "readwrite",
1843
+ "default" : "true",
1844
+ "description" :
1845
+ """If true, the local OAM entity should attempt to indicate a
1846
+ critical event via the OAMPDU flags to its peer OAM entity
1847
+ when a critical event occurs. The exact definition of a
1848
+ critical event is implementation dependent. If the system
1849
+ does not support critical event capability, setting this
1850
+ object has no effect, and reading the object should always
1851
+ result in 'false'.
1852
+
1853
+ By default, this object should have the value true for
1854
+ Ethernet-like interfaces that support OAM. If the OAM layer
1855
+ does not support Event Notifications (as indicated via the
1856
+ dot3OamFunctionsSupported attribute), this value is ignored.""",
1857
+ }, # column
1858
+ "dot3OamEventLogTable" : {
1859
+ "nodetype" : "table",
1860
+ "moduleName" : "DOT3-OAM-MIB",
1861
+ "oid" : "1.3.6.1.2.1.158.1.6",
1862
+ "status" : "current",
1863
+ "description" :
1864
+ """This table records a history of the events that have occurred
1865
+ at the Ethernet OAM level. These events can include locally
1866
+ detected events, which may result in locally generated
1867
+ OAMPDUs, and remotely detected events, which are detected by
1868
+ the OAM peer entity and signaled to the local entity via
1869
+
1870
+
1871
+
1872
+ Ethernet OAM. Ethernet OAM events can be signaled by Event
1873
+ Notification OAMPDUs or by the flags field in any OAMPDU.
1874
+
1875
+ This table contains both threshold crossing events and
1876
+ non-threshold crossing events. The parameters for the
1877
+ threshold window, threshold value, and actual value
1878
+ (dot3OamEventLogWindowXX, dot3OamEventLogThresholdXX,
1879
+ dot3OamEventLogValue) are only applicable to threshold
1880
+ crossing events, and are returned as all F's (2^32 - 1) for
1881
+ non-threshold crossing events.
1882
+
1883
+ Entries in the table are automatically created when such
1884
+ events are detected. The size of the table is implementation
1885
+ dependent. When the table reaches its maximum size, older
1886
+ entries are automatically deleted to make room for newer
1887
+ entries.""",
1888
+ }, # table
1889
+ "dot3OamEventLogEntry" : {
1890
+ "nodetype" : "row",
1891
+ "moduleName" : "DOT3-OAM-MIB",
1892
+ "oid" : "1.3.6.1.2.1.158.1.6.1",
1893
+ "status" : "current",
1894
+ "linkage" : [
1895
+ "ifIndex",
1896
+ "dot3OamEventLogIndex",
1897
+ ],
1898
+ "description" :
1899
+ """An entry in the dot3OamEventLogTable. Entries are
1900
+ automatically created whenever Ethernet OAM events occur at
1901
+ the local OAM entity, and when Event Notification OAMPDUs are
1902
+ received at the local OAM entity (indicating that events have
1903
+ occurred at the peer OAM entity). The size of the table is
1904
+ implementation dependent, but when the table becomes full,
1905
+ older events are automatically deleted to make room for newer
1906
+ events. The table index dot3OamEventLogIndex increments for
1907
+ each new entry, and when the maximum value is reached, the
1908
+ value restarts at zero.""",
1909
+ }, # row
1910
+ "dot3OamEventLogIndex" : {
1911
+ "nodetype" : "column",
1912
+ "moduleName" : "DOT3-OAM-MIB",
1913
+ "oid" : "1.3.6.1.2.1.158.1.6.1.1",
1914
+ "status" : "current",
1915
+ "syntax" : {
1916
+ "type" : {
1917
+ "basetype" : "Unsigned32",
1918
+ "ranges" : [
1919
+ {
1920
+ "min" : "1",
1921
+ "max" : "4294967295"
1922
+ },
1923
+ ],
1924
+ "range" : {
1925
+ "min" : "1",
1926
+ "max" : "4294967295"
1927
+ },
1928
+ },
1929
+ },
1930
+ "access" : "noaccess",
1931
+ "description" :
1932
+ """An arbitrary integer for identifying individual events
1933
+ within the event log. """,
1934
+ }, # column
1935
+ "dot3OamEventLogTimestamp" : {
1936
+ "nodetype" : "column",
1937
+ "moduleName" : "DOT3-OAM-MIB",
1938
+ "oid" : "1.3.6.1.2.1.158.1.6.1.2",
1939
+ "status" : "current",
1940
+ "syntax" : {
1941
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1942
+ },
1943
+ "access" : "readonly",
1944
+ "description" :
1945
+ """The value of sysUpTime at the time of the logged event. For
1946
+ locally generated events, the time of the event can be
1947
+ accurately retrieved from sysUpTime. For remotely generated
1948
+ events, the time of the event is indicated by the reception of
1949
+ the Event Notification OAMPDU indicating that the event
1950
+ occurred on the peer. A system may attempt to adjust the
1951
+ timestamp value to more accurately reflect the time of the
1952
+ event at the peer OAM entity by using other information, such
1953
+ as that found in the timestamp found of the Event Notification
1954
+ TLVs, which provides an indication of the relative time
1955
+ between events at the peer entity. """,
1956
+ }, # column
1957
+ "dot3OamEventLogOui" : {
1958
+ "nodetype" : "column",
1959
+ "moduleName" : "DOT3-OAM-MIB",
1960
+ "oid" : "1.3.6.1.2.1.158.1.6.1.3",
1961
+ "status" : "current",
1962
+ "syntax" : {
1963
+ "type" : { "module" :"DOT3-OAM-MIB", "name" : "EightOTwoOui"},
1964
+ },
1965
+ "access" : "readonly",
1966
+ "description" :
1967
+ """The OUI of the entity defining the object type. All IEEE
1968
+ 802.3 defined events (as appearing in [802.3ah] except for the
1969
+ Organizationally Unique Event TLVs) use the IEEE 802.3 OUI of
1970
+ 0x0180C2. Organizations defining their own Event Notification
1971
+ TLVs include their OUI in the Event Notification TLV that
1972
+ gets reflected here. """,
1973
+ }, # column
1974
+ "dot3OamEventLogType" : {
1975
+ "nodetype" : "column",
1976
+ "moduleName" : "DOT3-OAM-MIB",
1977
+ "oid" : "1.3.6.1.2.1.158.1.6.1.4",
1978
+ "status" : "current",
1979
+ "syntax" : {
1980
+ "type" : { "module" :"", "name" : "Unsigned32"},
1981
+ },
1982
+ "access" : "readonly",
1983
+ "description" :
1984
+ """The type of event that generated this entry in the event log.
1985
+ When the OUI is the IEEE 802.3 OUI of 0x0180C2, the following
1986
+ event types are defined:
1987
+ erroredSymbolEvent(1),
1988
+ erroredFramePeriodEvent(2),
1989
+ erroredFrameEvent(3),
1990
+ erroredFrameSecondsEvent(4),
1991
+ linkFault(256),
1992
+ dyingGaspEvent(257),
1993
+ criticalLinkEvent(258)
1994
+ The first four are considered threshold crossing events, as
1995
+ they are generated when a metric exceeds a given value within
1996
+ a specified window. The other three are not threshold
1997
+ crossing events.
1998
+
1999
+ When the OUI is not 71874 (0x0180C2 in hex), then some other
2000
+ organization has defined the event space. If event subtyping
2001
+ is known to the implementation, it may be reflected here.
2002
+ Otherwise, this value should return all F's (2^32 - 1).""",
2003
+ "reference" :
2004
+ """[802.3ah], 30.3.6.1.10 and 57.5.3.""",
2005
+ }, # column
2006
+ "dot3OamEventLogLocation" : {
2007
+ "nodetype" : "column",
2008
+ "moduleName" : "DOT3-OAM-MIB",
2009
+ "oid" : "1.3.6.1.2.1.158.1.6.1.5",
2010
+ "status" : "current",
2011
+ "syntax" : {
2012
+ "type" : {
2013
+ "basetype" : "Enumeration",
2014
+ "local" : {
2015
+ "nodetype" : "namednumber",
2016
+ "number" : "1"
2017
+ },
2018
+ "remote" : {
2019
+ "nodetype" : "namednumber",
2020
+ "number" : "2"
2021
+ },
2022
+ },
2023
+ },
2024
+ "access" : "readonly",
2025
+ "description" :
2026
+ """Whether this event occurred locally (local(1)), or was
2027
+ received from the OAM peer via Ethernet OAM (remote(2)).""",
2028
+ }, # column
2029
+ "dot3OamEventLogWindowHi" : {
2030
+ "nodetype" : "column",
2031
+ "moduleName" : "DOT3-OAM-MIB",
2032
+ "oid" : "1.3.6.1.2.1.158.1.6.1.6",
2033
+ "status" : "current",
2034
+ "syntax" : {
2035
+ "type" : { "module" :"", "name" : "Unsigned32"},
2036
+ },
2037
+ "access" : "readonly",
2038
+ "description" :
2039
+ """If the event represents a threshold crossing event, the two
2040
+ objects dot3OamEventWindowHi and dot3OamEventWindowLo, form
2041
+ an unsigned 64-bit integer yielding the window over which the
2042
+ value was measured for the threshold crossing event (for
2043
+ example, 5, when 11 occurrences happened in 5 seconds while
2044
+ the threshold was 10). The two objects are combined as:
2045
+
2046
+
2047
+
2048
+
2049
+ dot3OamEventLogWindow = ((2^32) * dot3OamEventLogWindowHi)
2050
+ + dot3OamEventLogWindowLo
2051
+
2052
+ Otherwise, this value is returned as all F's (2^32 - 1) and
2053
+ adds no useful information.""",
2054
+ "reference" :
2055
+ """[802.3ah], 30.3.6.1.37 and 57.5.3.2.""",
2056
+ }, # column
2057
+ "dot3OamEventLogWindowLo" : {
2058
+ "nodetype" : "column",
2059
+ "moduleName" : "DOT3-OAM-MIB",
2060
+ "oid" : "1.3.6.1.2.1.158.1.6.1.7",
2061
+ "status" : "current",
2062
+ "syntax" : {
2063
+ "type" : { "module" :"", "name" : "Unsigned32"},
2064
+ },
2065
+ "access" : "readonly",
2066
+ "description" :
2067
+ """If the event represents a threshold crossing event, the two
2068
+ objects dot3OamEventWindowHi and dot3OamEventWindowLo form an
2069
+ unsigned 64-bit integer yielding the window over which the
2070
+ value was measured for the threshold crossing event (for
2071
+ example, 5, when 11 occurrences happened in 5 seconds while
2072
+ the threshold was 10). The two objects are combined as:
2073
+
2074
+ dot3OamEventLogWindow = ((2^32) * dot3OamEventLogWindowHi)
2075
+ + dot3OamEventLogWindowLo
2076
+
2077
+ Otherwise, this value is returned as all F's (2^32 - 1) and
2078
+ adds no useful information.""",
2079
+ "reference" :
2080
+ """[802.3ah], 30.3.6.1.37 and 57.5.3.2.""",
2081
+ }, # column
2082
+ "dot3OamEventLogThresholdHi" : {
2083
+ "nodetype" : "column",
2084
+ "moduleName" : "DOT3-OAM-MIB",
2085
+ "oid" : "1.3.6.1.2.1.158.1.6.1.8",
2086
+ "status" : "current",
2087
+ "syntax" : {
2088
+ "type" : { "module" :"", "name" : "Unsigned32"},
2089
+ },
2090
+ "access" : "readonly",
2091
+ "description" :
2092
+ """If the event represents a threshold crossing event, the two
2093
+ objects dot3OamEventThresholdHi and dot3OamEventThresholdLo
2094
+ form an unsigned 64-bit integer yielding the value that was
2095
+ crossed for the threshold crossing event (for example, 10,
2096
+ when 11 occurrences happened in 5 seconds while the threshold
2097
+ was 10). The two objects are combined as:
2098
+
2099
+ dot3OamEventLogThreshold = ((2^32) * dot3OamEventLogThresholdHi)
2100
+ + dot3OamEventLogThresholdLo
2101
+
2102
+ Otherwise, this value is returned as all F's (2^32 -1) and
2103
+ adds no useful information.""",
2104
+ "reference" :
2105
+ """[802.3ah], 30.3.6.1.37 and 57.5.3.2.""",
2106
+ }, # column
2107
+ "dot3OamEventLogThresholdLo" : {
2108
+ "nodetype" : "column",
2109
+ "moduleName" : "DOT3-OAM-MIB",
2110
+ "oid" : "1.3.6.1.2.1.158.1.6.1.9",
2111
+ "status" : "current",
2112
+ "syntax" : {
2113
+ "type" : { "module" :"", "name" : "Unsigned32"},
2114
+ },
2115
+ "access" : "readonly",
2116
+ "description" :
2117
+ """If the event represents a threshold crossing event, the two
2118
+ objects dot3OamEventThresholdHi and dot3OamEventThresholdLo
2119
+ form an unsigned 64-bit integer yielding the value that was
2120
+ crossed for the threshold crossing event (for example, 10,
2121
+ when 11 occurrences happened in 5 seconds while the threshold
2122
+ was 10). The two objects are combined as:
2123
+
2124
+ dot3OamEventLogThreshold = ((2^32) * dot3OamEventLogThresholdHi)
2125
+ + dot3OamEventLogThresholdLo
2126
+
2127
+ Otherwise, this value is returned as all F's (2^32 - 1) and
2128
+ adds no useful information.""",
2129
+ "reference" :
2130
+ """[802.3ah], 30.3.6.1.37 and 57.5.3.2.""",
2131
+ }, # column
2132
+ "dot3OamEventLogValue" : {
2133
+ "nodetype" : "column",
2134
+ "moduleName" : "DOT3-OAM-MIB",
2135
+ "oid" : "1.3.6.1.2.1.158.1.6.1.10",
2136
+ "status" : "current",
2137
+ "syntax" : {
2138
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
2139
+ },
2140
+ "access" : "readonly",
2141
+ "description" :
2142
+ """If the event represents a threshold crossing event, this
2143
+ value indicates the value of the parameter within the given
2144
+ window that generated this event (for example, 11, when 11
2145
+ occurrences happened in 5 seconds while the threshold was 10).
2146
+
2147
+ Otherwise, this value is returned as all F's
2148
+ (2^64 - 1) and adds no useful information.""",
2149
+ "reference" :
2150
+ """[802.3ah], 30.3.6.1.37 and 57.5.3.2.""",
2151
+ }, # column
2152
+ "dot3OamEventLogRunningTotal" : {
2153
+ "nodetype" : "column",
2154
+ "moduleName" : "DOT3-OAM-MIB",
2155
+ "oid" : "1.3.6.1.2.1.158.1.6.1.11",
2156
+ "status" : "current",
2157
+ "syntax" : {
2158
+ "type" : { "module" :"HCNUM-TC", "name" : "CounterBasedGauge64"},
2159
+ },
2160
+ "access" : "readonly",
2161
+ "description" :
2162
+ """Each Event Notification TLV contains a running total of the
2163
+ number of times an event has occurred, as well as the number
2164
+ of times an Event Notification for the event has been
2165
+
2166
+
2167
+
2168
+ transmitted. For non-threshold crossing events, the number of
2169
+ events (dot3OamLogRunningTotal) and the number of resultant
2170
+ Event Notifications (dot3OamLogEventTotal) should be
2171
+ identical.
2172
+
2173
+ For threshold crossing events, since multiple occurrences may
2174
+ be required to cross the threshold, these values are likely
2175
+ different. This value represents the total number of times
2176
+ this event has happened since the last reset (for example,
2177
+ 3253, when 3253 symbol errors have occurred since the last
2178
+ reset, which has resulted in 51 symbol error threshold
2179
+ crossing events since the last reset).""",
2180
+ "reference" :
2181
+ """[802.3ah], 30.3.6.1.37 and 57.5.3.2.""",
2182
+ }, # column
2183
+ "dot3OamEventLogEventTotal" : {
2184
+ "nodetype" : "column",
2185
+ "moduleName" : "DOT3-OAM-MIB",
2186
+ "oid" : "1.3.6.1.2.1.158.1.6.1.12",
2187
+ "status" : "current",
2188
+ "syntax" : {
2189
+ "type" : { "module" :"", "name" : "Unsigned32"},
2190
+ },
2191
+ "access" : "readonly",
2192
+ "description" :
2193
+ """Each Event Notification TLV contains a running total of the
2194
+ number of times an event has occurred, as well as the number
2195
+ of times an Event Notification for the event has been
2196
+ transmitted. For non-threshold crossing events, the number of
2197
+ events (dot3OamLogRunningTotal) and the number of resultant
2198
+ Event Notifications (dot3OamLogEventTotal) should be
2199
+ identical.
2200
+
2201
+ For threshold crossing events, since multiple occurrences may
2202
+ be required to cross the threshold, these values are likely
2203
+ different. This value represents the total number of times
2204
+ one or more of these occurrences have resulted in an Event
2205
+ Notification (for example, 51 when 3253 symbol errors have
2206
+ occurred since the last reset, which has resulted in 51 symbol
2207
+ error threshold crossing events since the last reset).""",
2208
+ "reference" :
2209
+ """[802.3ah], 30.3.6.1.37 and 57.5.3.2.""",
2210
+ }, # column
2211
+ "dot3OamConformance" : {
2212
+ "nodetype" : "node",
2213
+ "moduleName" : "DOT3-OAM-MIB",
2214
+ "oid" : "1.3.6.1.2.1.158.2",
2215
+ }, # node
2216
+ "dot3OamGroups" : {
2217
+ "nodetype" : "node",
2218
+ "moduleName" : "DOT3-OAM-MIB",
2219
+ "oid" : "1.3.6.1.2.1.158.2.1",
2220
+ }, # node
2221
+ "dot3OamCompliances" : {
2222
+ "nodetype" : "node",
2223
+ "moduleName" : "DOT3-OAM-MIB",
2224
+ "oid" : "1.3.6.1.2.1.158.2.2",
2225
+ }, # node
2226
+ }, # nodes
2227
+
2228
+ "notifications" : {
2229
+ "dot3OamThresholdEvent" : {
2230
+ "nodetype" : "notification",
2231
+ "moduleName" : "DOT3-OAM-MIB",
2232
+ "oid" : "1.3.6.1.2.1.158.0.1",
2233
+ "status" : "current",
2234
+ "objects" : {
2235
+ "dot3OamEventLogTimestamp" : {
2236
+ "nodetype" : "object",
2237
+ "module" : "DOT3-OAM-MIB"
2238
+ },
2239
+ "dot3OamEventLogOui" : {
2240
+ "nodetype" : "object",
2241
+ "module" : "DOT3-OAM-MIB"
2242
+ },
2243
+ "dot3OamEventLogType" : {
2244
+ "nodetype" : "object",
2245
+ "module" : "DOT3-OAM-MIB"
2246
+ },
2247
+ "dot3OamEventLogLocation" : {
2248
+ "nodetype" : "object",
2249
+ "module" : "DOT3-OAM-MIB"
2250
+ },
2251
+ "dot3OamEventLogWindowHi" : {
2252
+ "nodetype" : "object",
2253
+ "module" : "DOT3-OAM-MIB"
2254
+ },
2255
+ "dot3OamEventLogWindowLo" : {
2256
+ "nodetype" : "object",
2257
+ "module" : "DOT3-OAM-MIB"
2258
+ },
2259
+ "dot3OamEventLogThresholdHi" : {
2260
+ "nodetype" : "object",
2261
+ "module" : "DOT3-OAM-MIB"
2262
+ },
2263
+ "dot3OamEventLogThresholdLo" : {
2264
+ "nodetype" : "object",
2265
+ "module" : "DOT3-OAM-MIB"
2266
+ },
2267
+ "dot3OamEventLogValue" : {
2268
+ "nodetype" : "object",
2269
+ "module" : "DOT3-OAM-MIB"
2270
+ },
2271
+ "dot3OamEventLogRunningTotal" : {
2272
+ "nodetype" : "object",
2273
+ "module" : "DOT3-OAM-MIB"
2274
+ },
2275
+ "dot3OamEventLogEventTotal" : {
2276
+ "nodetype" : "object",
2277
+ "module" : "DOT3-OAM-MIB"
2278
+ },
2279
+ },
2280
+ "description" :
2281
+ """A dot3OamThresholdEvent notification is sent when a local or
2282
+ remote threshold crossing event is detected. A local
2283
+ threshold crossing event is detected by the local entity,
2284
+ while a remote threshold crossing event is detected by the
2285
+ reception of an Ethernet OAM Event Notification OAMPDU
2286
+ that indicates a threshold event.
2287
+
2288
+ This notification should not be sent more than once per
2289
+ second.
2290
+
2291
+ The OAM entity can be derived from extracting the ifIndex from
2292
+ the variable bindings. The objects in the notification
2293
+ correspond to the values in a row instance in the
2294
+ dot3OamEventLogTable.
2295
+
2296
+ The management entity should periodically check
2297
+ dot3OamEventLogTable to detect any missed events.""",
2298
+ }, # notification
2299
+ "dot3OamNonThresholdEvent" : {
2300
+ "nodetype" : "notification",
2301
+ "moduleName" : "DOT3-OAM-MIB",
2302
+ "oid" : "1.3.6.1.2.1.158.0.2",
2303
+ "status" : "current",
2304
+ "objects" : {
2305
+ "dot3OamEventLogTimestamp" : {
2306
+ "nodetype" : "object",
2307
+ "module" : "DOT3-OAM-MIB"
2308
+ },
2309
+ "dot3OamEventLogOui" : {
2310
+ "nodetype" : "object",
2311
+ "module" : "DOT3-OAM-MIB"
2312
+ },
2313
+ "dot3OamEventLogType" : {
2314
+ "nodetype" : "object",
2315
+ "module" : "DOT3-OAM-MIB"
2316
+ },
2317
+ "dot3OamEventLogLocation" : {
2318
+ "nodetype" : "object",
2319
+ "module" : "DOT3-OAM-MIB"
2320
+ },
2321
+ "dot3OamEventLogEventTotal" : {
2322
+ "nodetype" : "object",
2323
+ "module" : "DOT3-OAM-MIB"
2324
+ },
2325
+ },
2326
+ "description" :
2327
+ """A dot3OamNonThresholdEvent notification is sent when a local
2328
+ or remote non-threshold crossing event is detected. A local
2329
+ event is detected by the local entity, while a remote event is
2330
+ detected by the reception of an Ethernet OAM Event
2331
+ Notification OAMPDU that indicates a non-threshold crossing
2332
+ event.
2333
+
2334
+ This notification should not be sent more than once per
2335
+
2336
+
2337
+
2338
+ second.
2339
+
2340
+ The OAM entity can be derived from extracting the ifIndex from
2341
+ the variable bindings. The objects in the notification
2342
+ correspond to the values in a row instance of the
2343
+ dot3OamEventLogTable.
2344
+
2345
+ The management entity should periodically check
2346
+ dot3OamEventLogTable to detect any missed events.""",
2347
+ }, # notification
2348
+ }, # notifications
2349
+
2350
+ "groups" : {
2351
+ "dot3OamControlGroup" : {
2352
+ "nodetype" : "group",
2353
+ "moduleName" : "DOT3-OAM-MIB",
2354
+ "oid" : "1.3.6.1.2.1.158.2.1.1",
2355
+ "status" : "current",
2356
+ "members" : {
2357
+ "dot3OamAdminState" : {
2358
+ "nodetype" : "member",
2359
+ "module" : "DOT3-OAM-MIB"
2360
+ },
2361
+ "dot3OamOperStatus" : {
2362
+ "nodetype" : "member",
2363
+ "module" : "DOT3-OAM-MIB"
2364
+ },
2365
+ "dot3OamMode" : {
2366
+ "nodetype" : "member",
2367
+ "module" : "DOT3-OAM-MIB"
2368
+ },
2369
+ "dot3OamMaxOamPduSize" : {
2370
+ "nodetype" : "member",
2371
+ "module" : "DOT3-OAM-MIB"
2372
+ },
2373
+ "dot3OamConfigRevision" : {
2374
+ "nodetype" : "member",
2375
+ "module" : "DOT3-OAM-MIB"
2376
+ },
2377
+ "dot3OamFunctionsSupported" : {
2378
+ "nodetype" : "member",
2379
+ "module" : "DOT3-OAM-MIB"
2380
+ },
2381
+ }, # members
2382
+ "description" :
2383
+ """A collection of objects providing the abilities,
2384
+ configuration, and status of an Ethernet OAM entity. """,
2385
+ }, # group
2386
+ "dot3OamPeerGroup" : {
2387
+ "nodetype" : "group",
2388
+ "moduleName" : "DOT3-OAM-MIB",
2389
+ "oid" : "1.3.6.1.2.1.158.2.1.2",
2390
+ "status" : "current",
2391
+ "members" : {
2392
+ "dot3OamPeerMacAddress" : {
2393
+ "nodetype" : "member",
2394
+ "module" : "DOT3-OAM-MIB"
2395
+ },
2396
+ "dot3OamPeerVendorOui" : {
2397
+ "nodetype" : "member",
2398
+ "module" : "DOT3-OAM-MIB"
2399
+ },
2400
+ "dot3OamPeerVendorInfo" : {
2401
+ "nodetype" : "member",
2402
+ "module" : "DOT3-OAM-MIB"
2403
+ },
2404
+ "dot3OamPeerMode" : {
2405
+ "nodetype" : "member",
2406
+ "module" : "DOT3-OAM-MIB"
2407
+ },
2408
+ "dot3OamPeerFunctionsSupported" : {
2409
+ "nodetype" : "member",
2410
+ "module" : "DOT3-OAM-MIB"
2411
+ },
2412
+ "dot3OamPeerMaxOamPduSize" : {
2413
+ "nodetype" : "member",
2414
+ "module" : "DOT3-OAM-MIB"
2415
+ },
2416
+ "dot3OamPeerConfigRevision" : {
2417
+ "nodetype" : "member",
2418
+ "module" : "DOT3-OAM-MIB"
2419
+ },
2420
+ }, # members
2421
+ "description" :
2422
+ """A collection of objects providing the abilities,
2423
+ configuration, and status of a peer Ethernet OAM entity. """,
2424
+ }, # group
2425
+ "dot3OamStatsBaseGroup" : {
2426
+ "nodetype" : "group",
2427
+ "moduleName" : "DOT3-OAM-MIB",
2428
+ "oid" : "1.3.6.1.2.1.158.2.1.3",
2429
+ "status" : "current",
2430
+ "members" : {
2431
+ "dot3OamInformationTx" : {
2432
+ "nodetype" : "member",
2433
+ "module" : "DOT3-OAM-MIB"
2434
+ },
2435
+ "dot3OamInformationRx" : {
2436
+ "nodetype" : "member",
2437
+ "module" : "DOT3-OAM-MIB"
2438
+ },
2439
+ "dot3OamUniqueEventNotificationTx" : {
2440
+ "nodetype" : "member",
2441
+ "module" : "DOT3-OAM-MIB"
2442
+ },
2443
+ "dot3OamUniqueEventNotificationRx" : {
2444
+ "nodetype" : "member",
2445
+ "module" : "DOT3-OAM-MIB"
2446
+ },
2447
+ "dot3OamDuplicateEventNotificationTx" : {
2448
+ "nodetype" : "member",
2449
+ "module" : "DOT3-OAM-MIB"
2450
+ },
2451
+ "dot3OamDuplicateEventNotificationRx" : {
2452
+ "nodetype" : "member",
2453
+ "module" : "DOT3-OAM-MIB"
2454
+ },
2455
+ "dot3OamLoopbackControlTx" : {
2456
+ "nodetype" : "member",
2457
+ "module" : "DOT3-OAM-MIB"
2458
+ },
2459
+ "dot3OamLoopbackControlRx" : {
2460
+ "nodetype" : "member",
2461
+ "module" : "DOT3-OAM-MIB"
2462
+ },
2463
+ "dot3OamVariableRequestTx" : {
2464
+ "nodetype" : "member",
2465
+ "module" : "DOT3-OAM-MIB"
2466
+ },
2467
+ "dot3OamVariableRequestRx" : {
2468
+ "nodetype" : "member",
2469
+ "module" : "DOT3-OAM-MIB"
2470
+ },
2471
+ "dot3OamVariableResponseTx" : {
2472
+ "nodetype" : "member",
2473
+ "module" : "DOT3-OAM-MIB"
2474
+ },
2475
+ "dot3OamVariableResponseRx" : {
2476
+ "nodetype" : "member",
2477
+ "module" : "DOT3-OAM-MIB"
2478
+ },
2479
+ "dot3OamOrgSpecificTx" : {
2480
+ "nodetype" : "member",
2481
+ "module" : "DOT3-OAM-MIB"
2482
+ },
2483
+ "dot3OamOrgSpecificRx" : {
2484
+ "nodetype" : "member",
2485
+ "module" : "DOT3-OAM-MIB"
2486
+ },
2487
+ "dot3OamUnsupportedCodesTx" : {
2488
+ "nodetype" : "member",
2489
+ "module" : "DOT3-OAM-MIB"
2490
+ },
2491
+ "dot3OamUnsupportedCodesRx" : {
2492
+ "nodetype" : "member",
2493
+ "module" : "DOT3-OAM-MIB"
2494
+ },
2495
+ "dot3OamFramesLostDueToOam" : {
2496
+ "nodetype" : "member",
2497
+ "module" : "DOT3-OAM-MIB"
2498
+ },
2499
+ }, # members
2500
+ "description" :
2501
+ """A collection of objects providing the statistics for the
2502
+ number of various transmit and receive events for OAM on an
2503
+ Ethernet-like interface. Note that all of these counters must
2504
+ be supported even if the related function (as described in
2505
+ dot3OamFunctionsSupported) is not supported. """,
2506
+ }, # group
2507
+ "dot3OamLoopbackGroup" : {
2508
+ "nodetype" : "group",
2509
+ "moduleName" : "DOT3-OAM-MIB",
2510
+ "oid" : "1.3.6.1.2.1.158.2.1.4",
2511
+ "status" : "current",
2512
+ "members" : {
2513
+ "dot3OamLoopbackStatus" : {
2514
+ "nodetype" : "member",
2515
+ "module" : "DOT3-OAM-MIB"
2516
+ },
2517
+ "dot3OamLoopbackIgnoreRx" : {
2518
+ "nodetype" : "member",
2519
+ "module" : "DOT3-OAM-MIB"
2520
+ },
2521
+ }, # members
2522
+ "description" :
2523
+ """A collection of objects for controlling the OAM remote
2524
+
2525
+
2526
+
2527
+ loopback function. """,
2528
+ }, # group
2529
+ "dot3OamErrSymbolPeriodEventGroup" : {
2530
+ "nodetype" : "group",
2531
+ "moduleName" : "DOT3-OAM-MIB",
2532
+ "oid" : "1.3.6.1.2.1.158.2.1.5",
2533
+ "status" : "current",
2534
+ "members" : {
2535
+ "dot3OamErrSymPeriodWindowHi" : {
2536
+ "nodetype" : "member",
2537
+ "module" : "DOT3-OAM-MIB"
2538
+ },
2539
+ "dot3OamErrSymPeriodWindowLo" : {
2540
+ "nodetype" : "member",
2541
+ "module" : "DOT3-OAM-MIB"
2542
+ },
2543
+ "dot3OamErrSymPeriodThresholdHi" : {
2544
+ "nodetype" : "member",
2545
+ "module" : "DOT3-OAM-MIB"
2546
+ },
2547
+ "dot3OamErrSymPeriodThresholdLo" : {
2548
+ "nodetype" : "member",
2549
+ "module" : "DOT3-OAM-MIB"
2550
+ },
2551
+ "dot3OamErrSymPeriodEvNotifEnable" : {
2552
+ "nodetype" : "member",
2553
+ "module" : "DOT3-OAM-MIB"
2554
+ },
2555
+ }, # members
2556
+ "description" :
2557
+ """A collection of objects for configuring the thresholds for an
2558
+ Errored Symbol Period Event.
2559
+
2560
+ Each [802.3ah] defined Event Notification TLV has its own
2561
+ conformance group because each event can be implemented
2562
+ independently of any other. """,
2563
+ }, # group
2564
+ "dot3OamErrFramePeriodEventGroup" : {
2565
+ "nodetype" : "group",
2566
+ "moduleName" : "DOT3-OAM-MIB",
2567
+ "oid" : "1.3.6.1.2.1.158.2.1.6",
2568
+ "status" : "current",
2569
+ "members" : {
2570
+ "dot3OamErrFramePeriodWindow" : {
2571
+ "nodetype" : "member",
2572
+ "module" : "DOT3-OAM-MIB"
2573
+ },
2574
+ "dot3OamErrFramePeriodThreshold" : {
2575
+ "nodetype" : "member",
2576
+ "module" : "DOT3-OAM-MIB"
2577
+ },
2578
+ "dot3OamErrFramePeriodEvNotifEnable" : {
2579
+ "nodetype" : "member",
2580
+ "module" : "DOT3-OAM-MIB"
2581
+ },
2582
+ }, # members
2583
+ "description" :
2584
+ """A collection of objects for configuring the thresholds for an
2585
+ Errored Frame Period Event.
2586
+
2587
+ Each [802.3ah] defined Event Notification TLV has its own
2588
+ conformance group because each event can be implemented
2589
+ independently of any other. """,
2590
+ }, # group
2591
+ "dot3OamErrFrameEventGroup" : {
2592
+ "nodetype" : "group",
2593
+ "moduleName" : "DOT3-OAM-MIB",
2594
+ "oid" : "1.3.6.1.2.1.158.2.1.7",
2595
+ "status" : "current",
2596
+ "members" : {
2597
+ "dot3OamErrFrameWindow" : {
2598
+ "nodetype" : "member",
2599
+ "module" : "DOT3-OAM-MIB"
2600
+ },
2601
+ "dot3OamErrFrameThreshold" : {
2602
+ "nodetype" : "member",
2603
+ "module" : "DOT3-OAM-MIB"
2604
+ },
2605
+ "dot3OamErrFrameEvNotifEnable" : {
2606
+ "nodetype" : "member",
2607
+ "module" : "DOT3-OAM-MIB"
2608
+ },
2609
+ }, # members
2610
+ "description" :
2611
+ """A collection of objects for configuring the thresholds for an
2612
+ Errored Frame Event.
2613
+
2614
+ Each [802.3ah] defined Event Notification TLV has its own
2615
+ conformance group because each event can be implemented
2616
+ independently of any other. """,
2617
+ }, # group
2618
+ "dot3OamErrFrameSecsSummaryEventGroup" : {
2619
+ "nodetype" : "group",
2620
+ "moduleName" : "DOT3-OAM-MIB",
2621
+ "oid" : "1.3.6.1.2.1.158.2.1.8",
2622
+ "status" : "current",
2623
+ "members" : {
2624
+ "dot3OamErrFrameSecsSummaryWindow" : {
2625
+ "nodetype" : "member",
2626
+ "module" : "DOT3-OAM-MIB"
2627
+ },
2628
+ "dot3OamErrFrameSecsSummaryThreshold" : {
2629
+ "nodetype" : "member",
2630
+ "module" : "DOT3-OAM-MIB"
2631
+ },
2632
+ "dot3OamErrFrameSecsEvNotifEnable" : {
2633
+ "nodetype" : "member",
2634
+ "module" : "DOT3-OAM-MIB"
2635
+ },
2636
+ }, # members
2637
+ "description" :
2638
+ """A collection of objects for configuring the thresholds for an
2639
+ Errored Frame Seconds Summary Event.
2640
+
2641
+ Each [802.3ah] defined Event Notification TLV has its own
2642
+ conformance group because each event can be implemented
2643
+ independently of any other. """,
2644
+ }, # group
2645
+ "dot3OamFlagEventGroup" : {
2646
+ "nodetype" : "group",
2647
+ "moduleName" : "DOT3-OAM-MIB",
2648
+ "oid" : "1.3.6.1.2.1.158.2.1.9",
2649
+ "status" : "current",
2650
+ "members" : {
2651
+ "dot3OamDyingGaspEnable" : {
2652
+ "nodetype" : "member",
2653
+ "module" : "DOT3-OAM-MIB"
2654
+ },
2655
+ "dot3OamCriticalEventEnable" : {
2656
+ "nodetype" : "member",
2657
+ "module" : "DOT3-OAM-MIB"
2658
+ },
2659
+ }, # members
2660
+ "description" :
2661
+ """A collection of objects for configuring the sending OAMPDUs
2662
+ with the critical event flag or dying gasp flag enabled. """,
2663
+ }, # group
2664
+ "dot3OamEventLogGroup" : {
2665
+ "nodetype" : "group",
2666
+ "moduleName" : "DOT3-OAM-MIB",
2667
+ "oid" : "1.3.6.1.2.1.158.2.1.10",
2668
+ "status" : "current",
2669
+ "members" : {
2670
+ "dot3OamEventLogTimestamp" : {
2671
+ "nodetype" : "member",
2672
+ "module" : "DOT3-OAM-MIB"
2673
+ },
2674
+ "dot3OamEventLogOui" : {
2675
+ "nodetype" : "member",
2676
+ "module" : "DOT3-OAM-MIB"
2677
+ },
2678
+ "dot3OamEventLogType" : {
2679
+ "nodetype" : "member",
2680
+ "module" : "DOT3-OAM-MIB"
2681
+ },
2682
+ "dot3OamEventLogLocation" : {
2683
+ "nodetype" : "member",
2684
+ "module" : "DOT3-OAM-MIB"
2685
+ },
2686
+ "dot3OamEventLogWindowHi" : {
2687
+ "nodetype" : "member",
2688
+ "module" : "DOT3-OAM-MIB"
2689
+ },
2690
+ "dot3OamEventLogWindowLo" : {
2691
+ "nodetype" : "member",
2692
+ "module" : "DOT3-OAM-MIB"
2693
+ },
2694
+ "dot3OamEventLogThresholdHi" : {
2695
+ "nodetype" : "member",
2696
+ "module" : "DOT3-OAM-MIB"
2697
+ },
2698
+ "dot3OamEventLogThresholdLo" : {
2699
+ "nodetype" : "member",
2700
+ "module" : "DOT3-OAM-MIB"
2701
+ },
2702
+ "dot3OamEventLogValue" : {
2703
+ "nodetype" : "member",
2704
+ "module" : "DOT3-OAM-MIB"
2705
+ },
2706
+ "dot3OamEventLogRunningTotal" : {
2707
+ "nodetype" : "member",
2708
+ "module" : "DOT3-OAM-MIB"
2709
+ },
2710
+ "dot3OamEventLogEventTotal" : {
2711
+ "nodetype" : "member",
2712
+ "module" : "DOT3-OAM-MIB"
2713
+ },
2714
+ }, # members
2715
+ "description" :
2716
+ """A collection of objects for configuring the thresholds for an
2717
+ Errored Frame Seconds Summary Event and maintaining the event
2718
+ information. """,
2719
+ }, # group
2720
+ "dot3OamNotificationGroup" : {
2721
+ "nodetype" : "group",
2722
+ "moduleName" : "DOT3-OAM-MIB",
2723
+ "oid" : "1.3.6.1.2.1.158.2.1.11",
2724
+ "status" : "current",
2725
+ "members" : {
2726
+ "dot3OamThresholdEvent" : {
2727
+ "nodetype" : "member",
2728
+ "module" : "DOT3-OAM-MIB"
2729
+ },
2730
+ "dot3OamNonThresholdEvent" : {
2731
+ "nodetype" : "member",
2732
+ "module" : "DOT3-OAM-MIB"
2733
+ },
2734
+ }, # members
2735
+ "description" :
2736
+ """A collection of notifications used by Ethernet OAM to signal
2737
+ to a management entity that local or remote events have
2738
+ occurred on a specified Ethernet link. """,
2739
+ }, # group
2740
+ }, # groups
2741
+
2742
+ "compliances" : {
2743
+ "dot3OamCompliance" : {
2744
+ "nodetype" : "compliance",
2745
+ "moduleName" : "DOT3-OAM-MIB",
2746
+ "oid" : "1.3.6.1.2.1.158.2.2.1",
2747
+ "status" : "current",
2748
+ "description" :
2749
+ """The compliance statement for managed entities
2750
+ supporting OAM on Ethernet-like interfaces.""",
2751
+ "requires" : {
2752
+ "dot3OamControlGroup" : {
2753
+ "nodetype" : "mandatory",
2754
+ "module" : "DOT3-OAM-MIB"
2755
+ },
2756
+ "dot3OamPeerGroup" : {
2757
+ "nodetype" : "mandatory",
2758
+ "module" : "DOT3-OAM-MIB"
2759
+ },
2760
+ "dot3OamStatsBaseGroup" : {
2761
+ "nodetype" : "mandatory",
2762
+ "module" : "DOT3-OAM-MIB"
2763
+ },
2764
+ "dot3OamLoopbackGroup" : {
2765
+ "nodetype" : "optional",
2766
+ "module" : "DOT3-OAM-MIB",
2767
+ "description" :
2768
+ """This group is mandatory for all IEEE 802.3 OA
2769
+ implementations that support loopback functionality. """,
2770
+ },
2771
+ "dot3OamErrSymbolPeriodEventGroup" : {
2772
+ "nodetype" : "optional",
2773
+ "module" : "DOT3-OAM-MIB",
2774
+ "description" :
2775
+ """This group is mandatory for all IEEE 802.3 OA
2776
+ implementations that support event functionality. """,
2777
+ },
2778
+ "dot3OamErrFramePeriodEventGroup" : {
2779
+ "nodetype" : "optional",
2780
+ "module" : "DOT3-OAM-MIB",
2781
+ "description" :
2782
+ """This group is mandatory for all IEEE 802.3 OA
2783
+ implementations that support event functionality. """,
2784
+ },
2785
+ "dot3OamErrFrameEventGroup" : {
2786
+ "nodetype" : "optional",
2787
+ "module" : "DOT3-OAM-MIB",
2788
+ "description" :
2789
+ """This group is mandatory for all IEEE 802.3 OA
2790
+ implementations that support event functionality. """,
2791
+ },
2792
+ "dot3OamErrFrameSecsSummaryEventGroup" : {
2793
+ "nodetype" : "optional",
2794
+ "module" : "DOT3-OAM-MIB",
2795
+ "description" :
2796
+ """This group is mandatory for all IEEE 802.3 OA
2797
+ implementations that support event functionality. """,
2798
+ },
2799
+ "dot3OamFlagEventGroup" : {
2800
+ "nodetype" : "optional",
2801
+ "module" : "DOT3-OAM-MIB",
2802
+ "description" :
2803
+ """This group is optional for all IEEE 802.3 OA
2804
+ implementations. The ability to send critical events or dying
2805
+ gasp events is not required in any system.""",
2806
+ },
2807
+ "dot3OamEventLogGroup" : {
2808
+ "nodetype" : "optional",
2809
+ "module" : "DOT3-OAM-MIB",
2810
+ "description" :
2811
+ """This group is optional for all IEEE 802.3 OA
2812
+ implementations. Entries in this table are dependent on what
2813
+ event functionality is supported in the local OA
2814
+ implementation. At least one type of event must be supported
2815
+ for entries to appear in this table. """,
2816
+ },
2817
+ "dot3OamNotificationGroup" : {
2818
+ "nodetype" : "optional",
2819
+ "module" : "DOT3-OAM-MIB",
2820
+ "description" :
2821
+ """This group is optional for all IEEE 802.3 OA
2822
+ implementations. Since the information in the notifications
2823
+ is dependent on the dot3OamEventLogTable, that table must be
2824
+ implemented for notifications. """,
2825
+ },
2826
+ }, # requires
2827
+ }, # compliance
2828
+ }, # compliances
2829
+
2830
+ }