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,3297 @@
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-EPON-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DOT3-EPON-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DOT3-EPON-MIB",
11
+
12
+ "DOT3-EPON-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Ethernet Interfaces and Hub MIB Working
17
+ Group""",
18
+ "contact" :
19
+ """WG charter:
20
+ http://www.ietf.org/html.charters/hubmib-charter.html
21
+ Mailing Lists:
22
+ General Discussion: hubmib@ietf.org
23
+ To Subscribe: hubmib-request@ietf.org
24
+
25
+
26
+
27
+ In Body: subscribe your_email_address
28
+ Chair: Bert Wijnen
29
+ Postal: Lucent Technologies
30
+ Schagen 33
31
+ 3461 GL Linschoten
32
+ Netherlands
33
+ Tel: +31-348-407-775
34
+ E-mail: bwijnen@lucent.com
35
+
36
+ Editor: Lior Khermosh
37
+ Postal: PMC-SIERRA
38
+ Kohav Hertzelia bldg,
39
+ 4 Hasadnaot St.
40
+ Hertzliya Pituach 46120,
41
+ ISRAEL
42
+ P.O.Box 2089 Hertzliya Pituach 46120 Israel
43
+ Tel: +972-9-9628000 Ext: 302
44
+ E-mail: lior_khermosh@pmc-sierra.com""",
45
+ "description" :
46
+ """The objects in this MIB module are used to manage the
47
+ Ethernet in the First Mile (EFM) Ethernet Passive Optical
48
+ Network (EPON) Interfaces as defined in IEEE P802.3ah
49
+ clauses 60, 64, and 65.
50
+ The following reference is used throughout this MIB module:
51
+ [802.3ah] refers to:
52
+ Information technology - Telecommunications and
53
+ information exchange between systems - Local and
54
+ metropolitan area networks - Specific requirements -
55
+ Part 3: Carrier sense multiple access with collision
56
+ detection (CSMA/CD) access method and physical layer
57
+ specifications - Media Access Control Parameters,
58
+ Physical Layers and Management Parameters for subscriber
59
+ access networks. IEEE Std 802.3ah-2004, October 2004.
60
+
61
+ Of particular interest are clause 64 (Multi-Point Control
62
+ Protocol - MPCP), clause 65 (Point-to-Multipoint
63
+ Reconciliation Sublayer - P2MP RS), clause 60 (Ethernet
64
+ Passive Optical Network Physical Medium Dependent - EPON
65
+ PMDs), clause 30, 'Management', and clause 45, 'Management
66
+ Data Input/Output (MDIO) Interface'.
67
+
68
+ Copyright (C) The IETF Trust (2007). This version
69
+ of this MIB module is part of 4837; see the RFC itself for
70
+ full legal notices.
71
+
72
+ Key abbreviations:
73
+ BER - Bit Error Rate
74
+ BW - bandwidth
75
+
76
+
77
+
78
+ CRC - Cyclic Redundancy Check
79
+ EFM - Ethernet First Mile
80
+ EPON - Ethernet Passive Optical Network
81
+ FEC - Forward Error Correction
82
+ LLID - Logical Link Identifier
83
+ MAC - Media Access Control
84
+ Mbps - Megabit per second
85
+ MDIO - Management Data Input/Output
86
+ MPCP - Multi-Point Control Protocol
87
+ OLT - Optical Line Terminal (Server unit of the EPON)
88
+ OMP - Optical Multi-Point
89
+ ONU - Optical Network Unit (Client unit of the EPON)
90
+ P2MP - Point-to-Multipoint
91
+ PHY - Physical Layer
92
+ PMD - Physical Medium Dependent
93
+ PON - Passive Optical Network
94
+ RTT - Round Trip Time
95
+ SLD - Start of LLID Delimiter
96
+ TQ - Time Quanta""",
97
+ "revisions" : (
98
+ {
99
+ "date" : "2007-03-29 00:00",
100
+ "description" :
101
+ """Initial version, published as RFC 4837.""",
102
+ },
103
+ ),
104
+ "identity node" : "dot3EponMIB",
105
+ },
106
+
107
+ "imports" : (
108
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
109
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
110
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
111
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
112
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
113
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
114
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
115
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
116
+ {"module" : "SNMPv2-TC", "name" : "MacAddress"},
117
+ {"module" : "IF-MIB", "name" : "ifIndex"},
118
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
119
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
120
+ ),
121
+
122
+ "nodes" : {
123
+ "dot3EponMIB" : {
124
+ "nodetype" : "node",
125
+ "moduleName" : "DOT3-EPON-MIB",
126
+ "oid" : "1.3.6.1.2.1.155",
127
+ "status" : "current",
128
+ }, # node
129
+ "dot3EponObjects" : {
130
+ "nodetype" : "node",
131
+ "moduleName" : "DOT3-EPON-MIB",
132
+ "oid" : "1.3.6.1.2.1.155.1",
133
+ }, # node
134
+ "dot3EponMpcpObjects" : {
135
+ "nodetype" : "node",
136
+ "moduleName" : "DOT3-EPON-MIB",
137
+ "oid" : "1.3.6.1.2.1.155.1.1",
138
+ }, # node
139
+ "dot3MpcpControlTable" : {
140
+ "nodetype" : "table",
141
+ "moduleName" : "DOT3-EPON-MIB",
142
+ "oid" : "1.3.6.1.2.1.155.1.1.1",
143
+ "status" : "current",
144
+ "description" :
145
+ """A Table of dot3 Multi-Point Control Protocol (MPCP)
146
+ MIB objects. The entries in the table are control and
147
+ status objects of the MPCP.
148
+ Each object has a row for every virtual link denoted by
149
+ the corresponding ifIndex.
150
+ The LLID field, as defined in the [802.3ah], is a 2-byte
151
+ register (15-bit field and a broadcast bit) limiting the
152
+ number of virtual links to 32768. Typically the number
153
+
154
+
155
+
156
+ of expected virtual links in a PON is like the number of
157
+ ONUs, which is 32-64, plus an additional entry for
158
+ broadcast LLID (with a value of 0xffff).""",
159
+ }, # table
160
+ "dot3MpcpControlEntry" : {
161
+ "nodetype" : "row",
162
+ "moduleName" : "DOT3-EPON-MIB",
163
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1",
164
+ "status" : "current",
165
+ "linkage" : [
166
+ "ifIndex",
167
+ ],
168
+ "description" :
169
+ """An entry in the dot3 MPCP Control table.
170
+ Rows exist for an OLT interface and an ONU interface.
171
+ A row in the table is denoted by the ifIndex of the link
172
+ and it is created when the ifIndex is created.
173
+ The rows in the table for an ONU interface are created
174
+ at system initialization.
175
+ The row in the table corresponding to the OLT ifIndex
176
+ and the row corresponding to the broadcast virtual link
177
+ are created at system initialization.
178
+ A row in the table corresponding to the ifIndex of a
179
+ virtual links is created when a virtual link is
180
+ established (ONU registers) and deleted when the virtual
181
+ link is deleted (ONU deregisters).""",
182
+ }, # row
183
+ "dot3MpcpOperStatus" : {
184
+ "nodetype" : "column",
185
+ "moduleName" : "DOT3-EPON-MIB",
186
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.1",
187
+ "status" : "current",
188
+ "syntax" : {
189
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
190
+ },
191
+ "access" : "readonly",
192
+ "description" :
193
+ """This object reflects the operational state of the
194
+ Multi-Point MAC Control sublayer as defined in
195
+
196
+
197
+
198
+ [802.3ah], clause 64. When the value is true(1), the
199
+ interface will act as if the Multi-Point Control Protocol
200
+ is enabled. When the value is false(2), the interface
201
+ will act as if the Multi-Point Control Protocol is
202
+ disabled. The operational state can be changed using the
203
+ dot3MpcpAdminState object.
204
+ This object is applicable for an OLT, with the same
205
+ value for all virtual interfaces, and for an ONU.""",
206
+ "reference" :
207
+ """[802.3ah], 30.3.5.1.2.""",
208
+ }, # column
209
+ "dot3MpcpAdminState" : {
210
+ "nodetype" : "column",
211
+ "moduleName" : "DOT3-EPON-MIB",
212
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.2",
213
+ "status" : "current",
214
+ "syntax" : {
215
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
216
+ },
217
+ "access" : "readwrite",
218
+ "default" : "false",
219
+ "description" :
220
+ """This object is used to define the admin state of the
221
+ Multi-Point MAC Control sublayer, as defined in
222
+ [802.3ah], clause 64, and to reflect its state.
223
+ When selecting the value as true(1), the Multi-Point
224
+ Control Protocol of the interface is enabled.
225
+ When selecting the value as false(2), the Multi-Point
226
+ Control Protocol of the interface is disabled.
227
+ This object reflects the administrative state of the
228
+ Multi-Point Control Protocol of the interface.
229
+ The write operation is not restricted in this document
230
+ and can be done at any time. Changing
231
+ dot3MpcpAdminState state can lead to disabling the
232
+ Multi-Point Control Protocol on the respective interface,
233
+ leading to the interruption of service for the users
234
+ connected to the respective EPON interface.
235
+ This object is applicable for an OLT, with the same
236
+ value for all virtual interfaces, and for an ONU.""",
237
+ "reference" :
238
+ """[802.3ah], 30.3.5.2.1.""",
239
+ }, # column
240
+ "dot3MpcpMode" : {
241
+ "nodetype" : "column",
242
+ "moduleName" : "DOT3-EPON-MIB",
243
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.3",
244
+ "status" : "current",
245
+ "syntax" : {
246
+ "type" : {
247
+ "basetype" : "Enumeration",
248
+ "olt" : {
249
+ "nodetype" : "namednumber",
250
+ "number" : "1"
251
+ },
252
+ "onu" : {
253
+ "nodetype" : "namednumber",
254
+ "number" : "2"
255
+ },
256
+ },
257
+ },
258
+ "access" : "readonly",
259
+ "default" : "olt",
260
+ "description" :
261
+ """This object is used to identify the operational
262
+ state of the Multi-Point MAC Control sublayer as
263
+ defined in [802.3ah], clause 64. Reading olt(1) for an
264
+
265
+
266
+
267
+ OLT (server) mode and onu(2) for an ONU (client) mode.
268
+ This object is used to identify the operational mode
269
+ for the MPCP tables.
270
+ This object is applicable for an OLT, with the same
271
+ value for all virtual interfaces, and for an ONU.""",
272
+ "reference" :
273
+ """[802.3ah], 30.3.5.1.3.""",
274
+ }, # column
275
+ "dot3MpcpSyncTime" : {
276
+ "nodetype" : "column",
277
+ "moduleName" : "DOT3-EPON-MIB",
278
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.4",
279
+ "status" : "current",
280
+ "syntax" : {
281
+ "type" : { "module" :"", "name" : "Unsigned32"},
282
+ },
283
+ "access" : "readonly",
284
+ "units" : "TQ (16nsec)",
285
+ "description" :
286
+ """An object that reports the 'sync lock time' of the
287
+ OLT receiver in increments of Time Quanta (TQ)-16ns
288
+ as defined in [802.3ah], clauses 60, 64, and 65. The
289
+ value returned shall be (sync lock time ns)/16. If
290
+ this value exceeds (2^32-1), the value (2^32-1) shall
291
+ be returned. This object is applicable for an OLT,
292
+ with the same value for all virtual interfaces, and
293
+ for an ONU.""",
294
+ "reference" :
295
+ """[802.3ah], 64.3.3.2.""",
296
+ }, # column
297
+ "dot3MpcpLinkID" : {
298
+ "nodetype" : "column",
299
+ "moduleName" : "DOT3-EPON-MIB",
300
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.5",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : { "module" :"", "name" : "Unsigned32"},
304
+ },
305
+ "access" : "readonly",
306
+ "description" :
307
+ """An object that identifies the Logical Link
308
+ Identifier (LLID) associated with the MAC of the virtual
309
+ link as specified in [802.3ah], clause 65.1.3.2.2.
310
+ This object is applicable for an OLT and an ONU. At the
311
+ OLT, it has a distinct value for each virtual interface.
312
+ The ONU and the corresponding virtual MAC of the OLT,
313
+ for the same virtual link, have the same value.
314
+ Value is assigned when the ONU registers.
315
+ Value is freed when the ONU deregisters.""",
316
+ "reference" :
317
+ """[802.3ah], 30.3.5.1.4.""",
318
+ }, # column
319
+ "dot3MpcpRemoteMACAddress" : {
320
+ "nodetype" : "column",
321
+ "moduleName" : "DOT3-EPON-MIB",
322
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.6",
323
+ "status" : "current",
324
+ "syntax" : {
325
+ "type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
326
+ },
327
+ "access" : "readonly",
328
+ "description" :
329
+ """An object that identifies the source_address
330
+ parameter of the last MPCPDUs passed to the MAC Control.
331
+ This value is updated on reception of a valid frame with
332
+ 1) a destination Field equal to the reserved multicast
333
+ address for MAC Control as specified in [802.3], Annex
334
+ 31A; 2) the lengthOrType field value equal to the reserved
335
+ Type for MAC Control as specified in [802.3], Annex
336
+ 31A; 3) an MPCP subtype value equal to the subtype
337
+ reserved for MPCP as specified in [802.3ah], Annex 31A.
338
+ This object is applicable for an OLT and an ONU. At the
339
+ OLT, it has a distinct value for each virtual interface.
340
+ The value reflects the MAC address of the remote entity
341
+ and therefore the OLT holds a value for each LLID, which
342
+ is the MAC address of the ONU; the ONU has a single
343
+ value that is the OLT MAC address.""",
344
+ "reference" :
345
+ """[802.3ah], 30.3.5.1.5.""",
346
+ }, # column
347
+ "dot3MpcpRegistrationState" : {
348
+ "nodetype" : "column",
349
+ "moduleName" : "DOT3-EPON-MIB",
350
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.7",
351
+ "status" : "current",
352
+ "syntax" : {
353
+ "type" : {
354
+ "basetype" : "Enumeration",
355
+ "unregistered" : {
356
+ "nodetype" : "namednumber",
357
+ "number" : "1"
358
+ },
359
+ "registering" : {
360
+ "nodetype" : "namednumber",
361
+ "number" : "2"
362
+ },
363
+ "registered" : {
364
+ "nodetype" : "namednumber",
365
+ "number" : "3"
366
+ },
367
+ },
368
+ },
369
+ "access" : "readonly",
370
+ "description" :
371
+ """An object that identifies the registration state
372
+ of the Multi-Point MAC Control sublayer as defined in
373
+ [802.3ah], clause 64. When this object has the
374
+ enumeration unregistered(1), the interface is
375
+ unregistered and may be used for registering a link
376
+ partner. When this object has the enumeration
377
+ registering(2), the interface is in the process of
378
+ registering a link-partner. When this object has the
379
+ enumeration registered(3), the interface has an
380
+ established link-partner.
381
+ This object is applicable for an OLT and an ONU. At the
382
+ OLT, it has a distinct value for each virtual interface.""",
383
+ "reference" :
384
+ """[802.3ah], 30.3.5.1.6.""",
385
+ }, # column
386
+ "dot3MpcpTransmitElapsed" : {
387
+ "nodetype" : "column",
388
+ "moduleName" : "DOT3-EPON-MIB",
389
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.8",
390
+ "status" : "current",
391
+ "syntax" : {
392
+ "type" : { "module" :"", "name" : "Unsigned32"},
393
+ },
394
+ "access" : "readonly",
395
+ "units" : "TQ (16nsec)",
396
+ "description" :
397
+ """An object that reports the interval from the last
398
+ MPCP frame transmission in increments of Time Quanta
399
+ (TQ)-16ns. The value returned shall be (interval from
400
+ last MPCP frame transmission in ns)/16. If this value
401
+ exceeds (2^32-1), the value (2^32-1) shall be returned.
402
+ This object is applicable for an OLT and an ONU. At the
403
+ OLT, it has a distinct value for each virtual interface.""",
404
+ "reference" :
405
+ """[802.3ah], 30.3.5.1.19.""",
406
+ }, # column
407
+ "dot3MpcpReceiveElapsed" : {
408
+ "nodetype" : "column",
409
+ "moduleName" : "DOT3-EPON-MIB",
410
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.9",
411
+ "status" : "current",
412
+ "syntax" : {
413
+ "type" : { "module" :"", "name" : "Unsigned32"},
414
+ },
415
+ "access" : "readonly",
416
+ "units" : "TQ (16nsec)",
417
+ "description" :
418
+ """An object that reports the interval from last MPCP frame
419
+ reception in increments of Time Quanta (TQ)-16ns. The
420
+ value returned shall be (interval from last MPCP frame
421
+ reception in ns)/16. If this value exceeds (2^32-1), the
422
+ value (2^32-1) shall be returned.
423
+ This object is applicable for an OLT and an ONU. At the
424
+ OLT, it has a distinct value for each virtual interface.""",
425
+ "reference" :
426
+ """[802.3ah], 30.3.5.1.20.""",
427
+ }, # column
428
+ "dot3MpcpRoundTripTime" : {
429
+ "nodetype" : "column",
430
+ "moduleName" : "DOT3-EPON-MIB",
431
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.10",
432
+ "status" : "current",
433
+ "syntax" : {
434
+ "type" : {
435
+ "basetype" : "Unsigned32",
436
+ "ranges" : [
437
+ {
438
+ "min" : "0",
439
+ "max" : "65535"
440
+ },
441
+ ],
442
+ "range" : {
443
+ "min" : "0",
444
+ "max" : "65535"
445
+ },
446
+ },
447
+ },
448
+ "access" : "readonly",
449
+ "units" : "TQ (16nsec)",
450
+ "description" :
451
+ """An object that reports the MPCP round trip time in
452
+ increments of Time Quanta (TQ)-16ns. The value returned
453
+ shall be (round trip time in ns)/16. If this value
454
+ exceeds (2^16-1), the value (2^16-1) shall be returned.
455
+ This object is applicable for an OLT and an ONU. At the
456
+ OLT, it has a distinct value for each virtual interface.""",
457
+ "reference" :
458
+ """[802.3ah], 30.3.5.1.21.""",
459
+ }, # column
460
+ "dot3MpcpMaximumPendingGrants" : {
461
+ "nodetype" : "column",
462
+ "moduleName" : "DOT3-EPON-MIB",
463
+ "oid" : "1.3.6.1.2.1.155.1.1.1.1.11",
464
+ "status" : "current",
465
+ "syntax" : {
466
+ "type" : {
467
+ "basetype" : "Unsigned32",
468
+ "ranges" : [
469
+ {
470
+ "min" : "0",
471
+ "max" : "255"
472
+ },
473
+ ],
474
+ "range" : {
475
+ "min" : "0",
476
+ "max" : "255"
477
+ },
478
+ },
479
+ },
480
+ "access" : "readonly",
481
+ "description" :
482
+ """An object that reports the maximum number of grants
483
+ that an ONU can store for handling. The maximum number
484
+
485
+
486
+
487
+ of grants that an ONU can store for handling has a
488
+ range of 0 to 255.
489
+ This object is applicable for an OLT and an ONU. At the
490
+ OLT, it has a distinct value for each virtual interface.
491
+ At the OLT, the value should be zero.""",
492
+ "reference" :
493
+ """[802.3ah], 30.3.5.1.24.""",
494
+ }, # column
495
+ "dot3MpcpStatTable" : {
496
+ "nodetype" : "table",
497
+ "moduleName" : "DOT3-EPON-MIB",
498
+ "oid" : "1.3.6.1.2.1.155.1.1.2",
499
+ "status" : "current",
500
+ "description" :
501
+ """This table defines the list of statistics counters of
502
+ an interface implementing the [802.3ah], clause 64 MPCP.
503
+ Each object has a row for every virtual link denoted by
504
+ the corresponding ifIndex.
505
+ The LLID field, as defined in the [802.3ah], is a 2-byte
506
+ register (15-bit field and a broadcast bit) limiting the
507
+ number of virtual links to 32768. Typically the number
508
+ of expected virtual links in a PON is like the number of
509
+ ONUs, which is 32-64, plus an additional entry for
510
+ broadcast LLID (with a value of 0xffff).""",
511
+ }, # table
512
+ "dot3MpcpStatEntry" : {
513
+ "nodetype" : "row",
514
+ "moduleName" : "DOT3-EPON-MIB",
515
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1",
516
+ "status" : "current",
517
+ "linkage" : [
518
+ "ifIndex",
519
+ ],
520
+ "description" :
521
+ """An entry in the table of statistics counters of the
522
+ [802.3ah], clause 64, MPCP interface.
523
+ Rows exist for an OLT interface and an ONU interface.
524
+ A row in the table is denoted by the ifIndex of the link
525
+ and it is created when the ifIndex is created.
526
+ The rows in the table for an ONU interface are created
527
+ at system initialization.
528
+ The row in the table corresponding to the OLT ifIndex
529
+ and the row corresponding to the broadcast virtual link
530
+ are created at system initialization.
531
+ A row in the table corresponding to the ifIndex of a
532
+ virtual link is created when a virtual link is
533
+ established (ONU registers) and deleted when the virtual
534
+ link is deleted (ONU deregisters).""",
535
+ }, # row
536
+ "dot3MpcpMACCtrlFramesTransmitted" : {
537
+ "nodetype" : "column",
538
+ "moduleName" : "DOT3-EPON-MIB",
539
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.1",
540
+ "status" : "current",
541
+ "syntax" : {
542
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
543
+ },
544
+ "access" : "readonly",
545
+ "units" : "frames",
546
+ "description" :
547
+ """A count of MPCP frames passed to the MAC sublayer for
548
+ transmission. This counter is incremented when a
549
+ MA_CONTROL.request service primitive is generated within
550
+ the MAC control sublayer with an opcode indicating an
551
+ MPCP frame.
552
+ This object is applicable for an OLT and an ONU. At the
553
+ OLT it has a distinct value for each virtual interface.
554
+ Discontinuities of this counter can occur at
555
+ re-initialization of the management system, and at other
556
+ times as indicated by the value of the
557
+ ifCounterDiscontinuityTime object of the Interface MIB
558
+ module.""",
559
+ "reference" :
560
+ """[802.3ah], 30.3.5.1.7.""",
561
+ }, # column
562
+ "dot3MpcpMACCtrlFramesReceived" : {
563
+ "nodetype" : "column",
564
+ "moduleName" : "DOT3-EPON-MIB",
565
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.2",
566
+ "status" : "current",
567
+ "syntax" : {
568
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
569
+ },
570
+ "access" : "readonly",
571
+ "units" : "frames",
572
+ "description" :
573
+ """A count of MPCP frames passed by the MAC sublayer to the
574
+ MAC Control sublayer. This counter is incremented when a
575
+ ReceiveFrame function call returns a valid frame with
576
+ 1) a lengthOrType field value equal to the reserved
577
+
578
+
579
+
580
+ Type for 802.3_MAC_Control as specified in clause 31.4.1.3,
581
+ and
582
+ 2) an opcode indicating an MPCP frame.
583
+ This object is applicable for an OLT and an ONU. At the
584
+ OLT, it has a distinct value for each virtual interface.
585
+ Discontinuities of this counter can occur at
586
+ re-initialization of the management system and at other
587
+ times, as indicated by the value of the
588
+ ifCounterDiscontinuityTime object of the Interface MIB
589
+ module.""",
590
+ "reference" :
591
+ """[802.3ah], 30.3.5.1.8.""",
592
+ }, # column
593
+ "dot3MpcpDiscoveryWindowsSent" : {
594
+ "nodetype" : "column",
595
+ "moduleName" : "DOT3-EPON-MIB",
596
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.3",
597
+ "status" : "current",
598
+ "syntax" : {
599
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
600
+ },
601
+ "access" : "readonly",
602
+ "description" :
603
+ """A count of discovery windows generated. The counter is
604
+ incremented by one for each generated discovery window.
605
+ This object is applicable for an OLT and an ONU. At the
606
+ OLT, it has a distinct value for each virtual interface.
607
+ At the ONU, the value should be zero.
608
+ Discontinuities of this counter can occur at
609
+ re-initialization of the management system and at other
610
+ times, as indicated by the value of the
611
+ ifCounterDiscontinuityTime object of the Interface MIB
612
+ module.""",
613
+ "reference" :
614
+ """[802.3ah], 30.3.5.1.22.""",
615
+ }, # column
616
+ "dot3MpcpDiscoveryTimeout" : {
617
+ "nodetype" : "column",
618
+ "moduleName" : "DOT3-EPON-MIB",
619
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.4",
620
+ "status" : "current",
621
+ "syntax" : {
622
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
623
+ },
624
+ "access" : "readonly",
625
+ "description" :
626
+ """A count of the number of times a discovery timeout
627
+ occurs. Increment the counter by one for each discovery
628
+ processing state-machine reset resulting from timeout
629
+ waiting for message arrival.
630
+ This object is applicable for an OLT and an ONU. At the
631
+ OLT, it has a distinct value for each virtual interface.
632
+ Discontinuities of this counter can occur at
633
+ re-initialization of the management system and at other
634
+ times, as indicated by the value of the
635
+ ifCounterDiscontinuityTime object of the Interface MIB
636
+ module.""",
637
+ "reference" :
638
+ """[802.3ah], 30.3.5.1.23.""",
639
+ }, # column
640
+ "dot3MpcpTxRegRequest" : {
641
+ "nodetype" : "column",
642
+ "moduleName" : "DOT3-EPON-MIB",
643
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.5",
644
+ "status" : "current",
645
+ "syntax" : {
646
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
647
+ },
648
+ "access" : "readonly",
649
+ "units" : "frames",
650
+ "description" :
651
+ """A count of the number of times a REGISTER_REQ MPCP
652
+ frame transmission occurs. Increment the counter by one
653
+ for each REGISTER_REQ MPCP frame transmitted as defined
654
+ in [802.3ah], clause 64.
655
+ This object is applicable for an OLT and an ONU. At the
656
+ OLT, it has a distinct value for each virtual interface.
657
+ At the OLT, the value should be zero.
658
+ Discontinuities of this counter can occur at
659
+ re-initialization of the management system and at other
660
+ times, as indicated by the value of the
661
+ ifCounterDiscontinuityTime object of the Interface MIB
662
+ module.""",
663
+ "reference" :
664
+ """[802.3ah], 30.3.5.1.12.""",
665
+ }, # column
666
+ "dot3MpcpRxRegRequest" : {
667
+ "nodetype" : "column",
668
+ "moduleName" : "DOT3-EPON-MIB",
669
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.6",
670
+ "status" : "current",
671
+ "syntax" : {
672
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
673
+ },
674
+ "access" : "readonly",
675
+ "units" : "frames",
676
+ "description" :
677
+ """A count of the number of times a REGISTER_REQ MPCP
678
+ frame reception occurs.
679
+ Increment the counter by one for each REGISTER_REQ MPCP
680
+ frame received as defined in [802.3ah], clause 64.
681
+ This object is applicable for an OLT and an ONU. At the
682
+ OLT, it has a distinct value for each virtual interface.
683
+ At the ONU, the value should be zero.
684
+ Discontinuities of this counter can occur at
685
+ re-initialization of the management system and at other
686
+ times, as indicated by the value of the
687
+ ifCounterDiscontinuityTime object of the Interface MIB
688
+ module.""",
689
+ "reference" :
690
+ """[802.3ah], 30.3.5.1.17.""",
691
+ }, # column
692
+ "dot3MpcpTxRegAck" : {
693
+ "nodetype" : "column",
694
+ "moduleName" : "DOT3-EPON-MIB",
695
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.7",
696
+ "status" : "current",
697
+ "syntax" : {
698
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
699
+ },
700
+ "access" : "readonly",
701
+ "units" : "frames",
702
+ "description" :
703
+ """A count of the number of times a REGISTER_ACK MPCP
704
+ frame transmission occurs. Increment the counter by one
705
+ for each REGISTER_ACK MPCP frame transmitted as defined
706
+ in [802.3ah], clause 64.
707
+ This object is applicable for an OLT and an ONU. At the
708
+ OLT, it has a distinct value for each virtual interface.
709
+ At the OLT, the value should be zero.
710
+ Discontinuities of this counter can occur at
711
+ re-initialization of the management system and at other
712
+ times, as indicated by the value of the
713
+ ifCounterDiscontinuityTime object of the Interface MIB
714
+ module.""",
715
+ "reference" :
716
+ """[802.3ah], 30.3.5.1.10.""",
717
+ }, # column
718
+ "dot3MpcpRxRegAck" : {
719
+ "nodetype" : "column",
720
+ "moduleName" : "DOT3-EPON-MIB",
721
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.8",
722
+ "status" : "current",
723
+ "syntax" : {
724
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
725
+ },
726
+ "access" : "readonly",
727
+ "units" : "frames",
728
+ "description" :
729
+ """A count of the number of times a REGISTER_ACK MPCP
730
+ frame reception occurs.
731
+ Increment the counter by one for each REGISTER_ACK MPCP
732
+ frame received as defined in [802.3ah], clause 64.
733
+ This object is applicable for an OLT and an ONU. At the
734
+ OLT, it has a distinct value for each virtual interface.
735
+ At the ONU, the value should be zero.
736
+ Discontinuities of this counter can occur at
737
+ re-initialization of the management system and at other
738
+ times, as indicated by the value of the
739
+ ifCounterDiscontinuityTime object of the Interface MIB
740
+ module.""",
741
+ "reference" :
742
+ """[802.3ah], 30.3.5.1.15.""",
743
+ }, # column
744
+ "dot3MpcpTxReport" : {
745
+ "nodetype" : "column",
746
+ "moduleName" : "DOT3-EPON-MIB",
747
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.9",
748
+ "status" : "current",
749
+ "syntax" : {
750
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
751
+ },
752
+ "access" : "readonly",
753
+ "units" : "frames",
754
+ "description" :
755
+ """A count of the number of times a REPORT MPCP frame
756
+ transmission occurs. Increment the counter by one for
757
+ each REPORT MPCP frame transmitted as defined in
758
+ [802.3ah], clause 64.
759
+
760
+
761
+
762
+ This object is applicable for an OLT and an ONU. At the
763
+ OLT, it has a distinct value for each virtual interface.
764
+ At the OLT, the value should be zero.
765
+ Discontinuities of this counter can occur at
766
+ re-initialization of the management system and at other
767
+ times, as indicated by the value of the
768
+ ifCounterDiscontinuityTime object of the Interface MIB
769
+ module.""",
770
+ "reference" :
771
+ """[802.3ah], 30.3.5.1.13.""",
772
+ }, # column
773
+ "dot3MpcpRxReport" : {
774
+ "nodetype" : "column",
775
+ "moduleName" : "DOT3-EPON-MIB",
776
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.10",
777
+ "status" : "current",
778
+ "syntax" : {
779
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
780
+ },
781
+ "access" : "readonly",
782
+ "units" : "frames",
783
+ "description" :
784
+ """A count of the number of times a REPORT MPCP frame
785
+ reception occurs.
786
+ Increment the counter by one for each REPORT MPCP frame
787
+ received as defined in [802.3ah], clause 64.
788
+ This object is applicable for an OLT and an ONU. At the
789
+ OLT, it has a distinct value for each virtual interface.
790
+ At the ONU, the value should be zero.
791
+ Discontinuities of this counter can occur at
792
+ re-initialization of the management system and at other
793
+ times, as indicated by the value of the
794
+ ifCounterDiscontinuityTime object of the Interface MIB
795
+ module.""",
796
+ "reference" :
797
+ """[802.3ah], 30.3.5.1.18.""",
798
+ }, # column
799
+ "dot3MpcpTxGate" : {
800
+ "nodetype" : "column",
801
+ "moduleName" : "DOT3-EPON-MIB",
802
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.11",
803
+ "status" : "current",
804
+ "syntax" : {
805
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
806
+ },
807
+ "access" : "readonly",
808
+ "units" : "frames",
809
+ "description" :
810
+ """A count of the number of times a GATE MPCP frame
811
+ transmission occurs.
812
+ Increment the counter by one for each GATE MPCP frame
813
+ transmitted as defined in [802.3ah], clause 64.
814
+ This object is applicable for an OLT and an ONU. At the
815
+ OLT, it has a distinct value for each virtual interface.
816
+ At the ONU, the value should be zero.
817
+ Discontinuities of this counter can occur at
818
+ re-initialization of the management system and at other
819
+ times, as indicated by the value of the
820
+
821
+
822
+
823
+ ifCounterDiscontinuityTime object of the Interface MIB
824
+ module.""",
825
+ "reference" :
826
+ """[802.3ah], 30.3.5.1.9.""",
827
+ }, # column
828
+ "dot3MpcpRxGate" : {
829
+ "nodetype" : "column",
830
+ "moduleName" : "DOT3-EPON-MIB",
831
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.12",
832
+ "status" : "current",
833
+ "syntax" : {
834
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
835
+ },
836
+ "access" : "readonly",
837
+ "units" : "frames",
838
+ "description" :
839
+ """A count of the number of times a GATE MPCP frame
840
+ reception occurs.
841
+ Increment the counter by one for each GATE MPCP frame
842
+ received as defined in [802.3ah], clause 64.
843
+ This object is applicable for an OLT and an ONU. At the
844
+ OLT, it has a distinct value for each virtual interface.
845
+ At the OLT, the value should be zero.
846
+ Discontinuities of this counter can occur at
847
+ re-initialization of the management system and at other
848
+ times, as indicated by the value of the
849
+ ifCounterDiscontinuityTime object of the Interface MIB
850
+ module.""",
851
+ "reference" :
852
+ """[802.3ah], 30.3.5.1.14.""",
853
+ }, # column
854
+ "dot3MpcpTxRegister" : {
855
+ "nodetype" : "column",
856
+ "moduleName" : "DOT3-EPON-MIB",
857
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.13",
858
+ "status" : "current",
859
+ "syntax" : {
860
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
861
+ },
862
+ "access" : "readonly",
863
+ "units" : "frames",
864
+ "description" :
865
+ """A count of the number of times a REGISTER MPCP frame
866
+ transmission occurs.
867
+ Increment the counter by one for each REGISTER MPCP
868
+ frame transmitted as defined in [802.3ah], clause 64.
869
+ This object is applicable for an OLT and an ONU. At the
870
+ OLT, it has a distinct value for each virtual interface.
871
+ At the ONU, the value should be zero.
872
+ Discontinuities of this counter can occur at
873
+ re-initialization of the management system and at other
874
+ times, as indicated by the value of the
875
+ ifCounterDiscontinuityTime object of the Interface MIB
876
+ module.""",
877
+ "reference" :
878
+ """[802.3ah], 30.3.5.1.11.""",
879
+ }, # column
880
+ "dot3MpcpRxRegister" : {
881
+ "nodetype" : "column",
882
+ "moduleName" : "DOT3-EPON-MIB",
883
+ "oid" : "1.3.6.1.2.1.155.1.1.2.1.14",
884
+ "status" : "current",
885
+ "syntax" : {
886
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
887
+ },
888
+ "access" : "readonly",
889
+ "units" : "frames",
890
+ "description" :
891
+ """A count of the number of times a REGISTER MPCP frame
892
+ reception occurs.
893
+ Increment the counter by one for each REGISTER MPCP
894
+ frame received as defined in [802.3ah], clause 64.
895
+ This object is applicable for an OLT and an ONU. At the
896
+ OLT, it has a distinct value for each virtual interface.
897
+ At the OLT, the value should be zero.
898
+ Discontinuities of this counter can occur at
899
+ re-initialization of the management system and at other
900
+ times, as indicated by the value of the
901
+ ifCounterDiscontinuityTime object of the Interface MIB
902
+ module.""",
903
+ "reference" :
904
+ """[802.3ah], 30.3.5.1.16.""",
905
+ }, # column
906
+ "dot3OmpEmulationObjects" : {
907
+ "nodetype" : "node",
908
+ "moduleName" : "DOT3-EPON-MIB",
909
+ "oid" : "1.3.6.1.2.1.155.1.2",
910
+ }, # node
911
+ "dot3OmpEmulationTable" : {
912
+ "nodetype" : "table",
913
+ "moduleName" : "DOT3-EPON-MIB",
914
+ "oid" : "1.3.6.1.2.1.155.1.2.1",
915
+ "status" : "current",
916
+ "description" :
917
+ """A table of dot3 OmpEmulation MIB objects. The table
918
+ contain objects for the management of the OMPEmulation
919
+ sublayer.
920
+ Each object has a row for every virtual link denoted by
921
+ the corresponding ifIndex.
922
+ The LLID field, as defined in the [802.3ah], is a 2-byte
923
+ register (15-bit field and a broadcast bit) limiting the
924
+ number of virtual links to 32768. Typically the number
925
+ of expected virtual links in a PON is like the number of
926
+ ONUs, which is 32-64, plus an additional entry for
927
+ broadcast LLID (with a value of 0xffff).""",
928
+ }, # table
929
+ "dot3OmpEmulationEntry" : {
930
+ "nodetype" : "row",
931
+ "moduleName" : "DOT3-EPON-MIB",
932
+ "oid" : "1.3.6.1.2.1.155.1.2.1.1",
933
+ "status" : "current",
934
+ "linkage" : [
935
+ "ifIndex",
936
+ ],
937
+ "description" :
938
+ """An entry in the dot3 OmpEmulation table.
939
+ Rows exist for an OLT interface and an ONU interface.
940
+ A row in the table is denoted by the ifIndex of the link
941
+ and it is created when the ifIndex is created.
942
+ The rows in the table for an ONU interface are created
943
+ at system initialization.
944
+ The row in the table corresponding to the OLT ifIndex
945
+ and the row corresponding to the broadcast virtual link
946
+ are created at system initialization.
947
+ A row in the table corresponding to the ifIndex of a
948
+ virtual links is created when a virtual link is
949
+ established (ONU registers) and deleted when the virtual
950
+ link is deleted (ONU deregisters).""",
951
+ }, # row
952
+ "dot3OmpEmulationType" : {
953
+ "nodetype" : "column",
954
+ "moduleName" : "DOT3-EPON-MIB",
955
+ "oid" : "1.3.6.1.2.1.155.1.2.1.1.1",
956
+ "status" : "current",
957
+ "syntax" : {
958
+ "type" : {
959
+ "basetype" : "Enumeration",
960
+ "unknown" : {
961
+ "nodetype" : "namednumber",
962
+ "number" : "1"
963
+ },
964
+ "olt" : {
965
+ "nodetype" : "namednumber",
966
+ "number" : "2"
967
+ },
968
+ "onu" : {
969
+ "nodetype" : "namednumber",
970
+ "number" : "3"
971
+ },
972
+ },
973
+ },
974
+ "access" : "readonly",
975
+ "description" :
976
+ """An object that indicates the mode of operation
977
+ of the Reconciliation Sublayer for Point-to-Point
978
+ Emulation (see [802.3ah], clause 65.1). unknown(1) value
979
+ is assigned in initialization; true state or type is not
980
+ yet known. olt(2) value is assigned when the sublayer is
981
+ operating in OLT mode. onu(3) value is assigned when the
982
+ sublayer is operating in ONU mode.
983
+ This object is applicable for an OLT, with the same
984
+ value for all virtual interfaces, and for an ONU.""",
985
+ "reference" :
986
+ """[802.3ah], 30.3.7.1.2.""",
987
+ }, # column
988
+ "dot3OmpEmulationStatTable" : {
989
+ "nodetype" : "table",
990
+ "moduleName" : "DOT3-EPON-MIB",
991
+ "oid" : "1.3.6.1.2.1.155.1.2.2",
992
+ "status" : "current",
993
+ "description" :
994
+ """This table defines the list of statistics counters of
995
+
996
+
997
+
998
+ [802.3ah], clause 65, OMPEmulation sublayer.
999
+ Each object has a row for every virtual link denoted by
1000
+ the corresponding ifIndex.
1001
+ The LLID field, as defined in the [802.3ah], is a 2-byte
1002
+ register (15-bit field and a broadcast bit) limiting the
1003
+ number of virtual links to 32768. Typically the number
1004
+ of expected virtual links in a PON is like the number of
1005
+ ONUs, which is 32-64, plus an additional entry for
1006
+ broadcast LLID (with a value of 0xffff).""",
1007
+ }, # table
1008
+ "dot3OmpEmulationStatEntry" : {
1009
+ "nodetype" : "row",
1010
+ "moduleName" : "DOT3-EPON-MIB",
1011
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1",
1012
+ "status" : "current",
1013
+ "linkage" : [
1014
+ "ifIndex",
1015
+ ],
1016
+ "description" :
1017
+ """An entry in the table of statistics counters of
1018
+ [802.3ah], clause 65, OMPEmulation sublayer.
1019
+ Rows exist for an OLT interface and an ONU interface.
1020
+ A row in the table is denoted by the ifIndex of the link
1021
+ and it is created when the ifIndex is created.
1022
+ The rows in the table for an ONU interface are created
1023
+ at system initialization.
1024
+ The row in the table corresponding to the OLT ifIndex
1025
+ and the row corresponding to the broadcast virtual link
1026
+ are created at system initialization.
1027
+ A row in the table corresponding to the ifIndex of a
1028
+ virtual links is created when a virtual link is
1029
+ established (ONU registers) and deleted when the virtual
1030
+ link is deleted (ONU deregisters).""",
1031
+ }, # row
1032
+ "dot3OmpEmulationSLDErrors" : {
1033
+ "nodetype" : "column",
1034
+ "moduleName" : "DOT3-EPON-MIB",
1035
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.1",
1036
+ "status" : "current",
1037
+ "syntax" : {
1038
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1039
+ },
1040
+ "access" : "readonly",
1041
+ "units" : "frames",
1042
+ "description" :
1043
+ """A count of frames received that do not contain a valid
1044
+ SLD field as defined in [802.3ah], clause 65.1.3.3.1.
1045
+ This object is applicable for an OLT and an ONU. At the
1046
+ OLT, it has a distinct value for each virtual interface.
1047
+ Discontinuities of this counter can occur at
1048
+ re-initialization of the management system and at other
1049
+ times, as indicated by the value of the
1050
+ ifCounterDiscontinuityTime object of the Interface MIB
1051
+ module.""",
1052
+ "reference" :
1053
+ """[802.3ah], 30.3.7.1.3.""",
1054
+ }, # column
1055
+ "dot3OmpEmulationCRC8Errors" : {
1056
+ "nodetype" : "column",
1057
+ "moduleName" : "DOT3-EPON-MIB",
1058
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.2",
1059
+ "status" : "current",
1060
+ "syntax" : {
1061
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1062
+ },
1063
+ "access" : "readonly",
1064
+ "units" : "frames",
1065
+ "description" :
1066
+ """A count of frames received that contain a valid SLD
1067
+ field, as defined in [802.3ah], clause 65.1.3.3.1, but do
1068
+ not pass the CRC-8 check as defined in [802.3ah], clause
1069
+ 65.1.3.3.3.
1070
+ This object is applicable for an OLT and an ONU. At the
1071
+ OLT, it has a distinct value for each virtual interface.
1072
+ Discontinuities of this counter can occur at
1073
+ re-initialization of the management system and at other
1074
+ times, as indicated by the value of the
1075
+ ifCounterDiscontinuityTime object of the Interface MIB
1076
+ module.""",
1077
+ "reference" :
1078
+ """[802.3ah], 30.3.7.1.4.""",
1079
+ }, # column
1080
+ "dot3OmpEmulationBadLLID" : {
1081
+ "nodetype" : "column",
1082
+ "moduleName" : "DOT3-EPON-MIB",
1083
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.3",
1084
+ "status" : "current",
1085
+ "syntax" : {
1086
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1087
+ },
1088
+ "access" : "readonly",
1089
+ "units" : "frames",
1090
+ "description" :
1091
+ """A count of frames received that contain a valid SLD
1092
+ field, as defined in [802.3ah], clause 65.1.3.3.1, and
1093
+ pass the CRC-8 check, as defined in [802.3ah], clause
1094
+ 65.1.3.3.3, but are discarded due to the LLID check as
1095
+ defined in [802.3ah], clause 65.1.3.3.2.
1096
+
1097
+
1098
+
1099
+ This object is applicable for an OLT and an ONU. At the
1100
+ OLT, it has a distinct value for each virtual interface.
1101
+ Discontinuities of this counter can occur at
1102
+ re-initialization of the management system and at other
1103
+ times, as indicated by the value of the
1104
+ ifCounterDiscontinuityTime object of the Interface MIB
1105
+ module.""",
1106
+ "reference" :
1107
+ """[802.3ah], 30.3.7.1.8.""",
1108
+ }, # column
1109
+ "dot3OmpEmulationGoodLLID" : {
1110
+ "nodetype" : "column",
1111
+ "moduleName" : "DOT3-EPON-MIB",
1112
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.4",
1113
+ "status" : "current",
1114
+ "syntax" : {
1115
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1116
+ },
1117
+ "access" : "readonly",
1118
+ "units" : "frames",
1119
+ "description" :
1120
+ """A count of frames received that contain a valid SLD
1121
+ field, as defined in [802.3ah], clause 65.1.3.3.1, and
1122
+ pass the CRC-8 check as defined in [802.3ah], clause
1123
+ 65.1.3.3.3.
1124
+ This object is applicable for an OLT and an ONU. At the
1125
+ OLT, it has a distinct value for each virtual interface.
1126
+ Discontinuities of this counter can occur at
1127
+ re-initialization of the management system and at other
1128
+ times, as indicated by the value of the
1129
+ ifCounterDiscontinuityTime object of the Interface MIB
1130
+ module.""",
1131
+ "reference" :
1132
+ """[802.3ah], 30.3.7.1.5.""",
1133
+ }, # column
1134
+ "dot3OmpEmulationOnuPonCastLLID" : {
1135
+ "nodetype" : "column",
1136
+ "moduleName" : "DOT3-EPON-MIB",
1137
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.5",
1138
+ "status" : "current",
1139
+ "syntax" : {
1140
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1141
+ },
1142
+ "access" : "readonly",
1143
+ "units" : "frames",
1144
+ "description" :
1145
+ """A count of frames received that contain a valid SLD
1146
+ field, as defined in [802.3ah], clause 65.1.3.3.1,
1147
+ pass the CRC-8 check, as defined in [802.3ah], clause
1148
+ 65.1.3.3.3, and meet the rules of acceptance for an
1149
+ ONU defined in [802.3ah], clause 65.1.3.3.2.
1150
+ This object is applicable for an OLT and an ONU. At the
1151
+ OLT, it has a distinct value for each virtual interface.
1152
+ At the OLT, the value should be zero.
1153
+ Discontinuities of this counter can occur at
1154
+ re-initialization of the management system and at other
1155
+ times, as indicated by the value of the
1156
+ ifCounterDiscontinuityTime object of the Interface MIB
1157
+
1158
+
1159
+
1160
+ module.""",
1161
+ "reference" :
1162
+ """[802.3ah], 30.3.7.1.6.""",
1163
+ }, # column
1164
+ "dot3OmpEmulationOltPonCastLLID" : {
1165
+ "nodetype" : "column",
1166
+ "moduleName" : "DOT3-EPON-MIB",
1167
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.6",
1168
+ "status" : "current",
1169
+ "syntax" : {
1170
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1171
+ },
1172
+ "access" : "readonly",
1173
+ "units" : "frames",
1174
+ "description" :
1175
+ """A count of frames received that contain a valid SLD
1176
+ field, as defined in [802.3ah], clause 65.1.3.3.1,
1177
+ pass the CRC-8 check, as defined in [802.3ah], clause
1178
+ 65.1.3.3.3, and meet the rules of acceptance for an
1179
+ OLT defined in [802.3ah], 65.1.3.3.2.
1180
+ This object is applicable for an OLT and an ONU. At the
1181
+ OLT, it has a distinct value for each virtual interface.
1182
+ At the ONU, the value should be zero.
1183
+ Discontinuities of this counter can occur at
1184
+ re-initialization of the management system and at other
1185
+ times, as indicated by the value of the
1186
+ ifCounterDiscontinuityTime object of the Interface MIB
1187
+ module.""",
1188
+ "reference" :
1189
+ """[802.3ah], 30.3.7.1.7.""",
1190
+ }, # column
1191
+ "dot3OmpEmulationBroadcastBitNotOnuLlid" : {
1192
+ "nodetype" : "column",
1193
+ "moduleName" : "DOT3-EPON-MIB",
1194
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.7",
1195
+ "status" : "current",
1196
+ "syntax" : {
1197
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1198
+ },
1199
+ "access" : "readonly",
1200
+ "units" : "frames",
1201
+ "description" :
1202
+ """A count of frames received that contain a valid SLD
1203
+ field, as defined in [802.3ah], clause
1204
+ 65.1.3.3.1, pass the CRC-8 check, as defined in
1205
+ [802.3ah], clause 65.1.3.3.3, and contain the broadcast
1206
+ bit in the LLID and not the ONU's LLID (frame accepted)
1207
+ as defined in [802.3ah], clause 65.
1208
+ This object is applicable for an OLT and an ONU. At the
1209
+ OLT, it has a distinct value for each virtual interface.
1210
+ At the OLT, the value should be zero.
1211
+ Discontinuities of this counter can occur at
1212
+ re-initialization of the management system and at other
1213
+ times, as indicated by the value of the
1214
+ ifCounterDiscontinuityTime object of the Interface MIB
1215
+ module.""",
1216
+ }, # column
1217
+ "dot3OmpEmulationOnuLLIDNotBroadcast" : {
1218
+ "nodetype" : "column",
1219
+ "moduleName" : "DOT3-EPON-MIB",
1220
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.8",
1221
+ "status" : "current",
1222
+ "syntax" : {
1223
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1224
+ },
1225
+ "access" : "readonly",
1226
+ "units" : "frames",
1227
+ "description" :
1228
+ """A count of frames received that contain a valid SLD
1229
+ field, as defined in [802.3ah], clause
1230
+ 65.1.3.3.1, pass the CRC-8 check, as defined in
1231
+ [802.3ah], clause 65.1.3.3.3, and contain the ONU's LLID
1232
+ as defined in [802.3ah], clause 65.
1233
+ This object is applicable for an OLT and an ONU. At the
1234
+ OLT, it has a distinct value for each virtual interface.
1235
+ At the OLT, the value should be zero.
1236
+ Discontinuities of this counter can occur at
1237
+ re-initialization of the management system and at other
1238
+ times, as indicated by the value of the
1239
+ ifCounterDiscontinuityTime object of the Interface MIB
1240
+ module.""",
1241
+ }, # column
1242
+ "dot3OmpEmulationBroadcastBitPlusOnuLlid" : {
1243
+ "nodetype" : "column",
1244
+ "moduleName" : "DOT3-EPON-MIB",
1245
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.9",
1246
+ "status" : "current",
1247
+ "syntax" : {
1248
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1249
+ },
1250
+ "access" : "readonly",
1251
+ "units" : "frames",
1252
+ "description" :
1253
+ """A count of frames received that contain a valid SLD
1254
+ field, as defined in [802.3ah], clause
1255
+ 65.1.3.3.1, pass the CRC-8 check, as defined in
1256
+ [802.3ah], clause 65.1.3.3.3, and contain the broadcast
1257
+ bit in the LLID and match the ONU's LLID (frame
1258
+ reflected) as defined in [802.3ah], clause 65.
1259
+ This object is applicable for an OLT and an ONU. At the
1260
+ OLT, it has a distinct value for each virtual interface.
1261
+ At the OLT, the value should be zero.
1262
+ Discontinuities of this counter can occur at
1263
+ re-initialization of the management system and at other
1264
+ times, as indicated by the value of the
1265
+ ifCounterDiscontinuityTime object of the Interface MIB
1266
+ module.""",
1267
+ }, # column
1268
+ "dot3OmpEmulationNotBroadcastBitNotOnuLlid" : {
1269
+ "nodetype" : "column",
1270
+ "moduleName" : "DOT3-EPON-MIB",
1271
+ "oid" : "1.3.6.1.2.1.155.1.2.2.1.10",
1272
+ "status" : "current",
1273
+ "syntax" : {
1274
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1275
+ },
1276
+ "access" : "readonly",
1277
+ "units" : "frames",
1278
+ "description" :
1279
+ """A count of frames received that contain a valid SLD
1280
+ field, as defined in [802.3ah], clause
1281
+ 65.1.3.3.1, pass the CRC-8 check, as defined in
1282
+ [802.3ah], clause 65.1.3.3.3, and do not contain
1283
+ the ONU's LLID as defined in [802.3ah], clause 65.
1284
+ This object is applicable for an OLT and an ONU. At the
1285
+ OLT, it has a distinct value for each virtual interface.
1286
+ At the OLT, the value should be zero.
1287
+ Discontinuities of this counter can occur at
1288
+ re-initialization of the management system and at other
1289
+ times, as indicated by the value of the
1290
+ ifCounterDiscontinuityTime object of the Interface MIB
1291
+ module.""",
1292
+ }, # column
1293
+ "dot3EponFecObjects" : {
1294
+ "nodetype" : "node",
1295
+ "moduleName" : "DOT3-EPON-MIB",
1296
+ "oid" : "1.3.6.1.2.1.155.1.3",
1297
+ }, # node
1298
+ "dot3EponFecTable" : {
1299
+ "nodetype" : "table",
1300
+ "moduleName" : "DOT3-EPON-MIB",
1301
+ "oid" : "1.3.6.1.2.1.155.1.3.1",
1302
+ "status" : "current",
1303
+ "description" :
1304
+ """A table of dot3 EPON FEC management objects.
1305
+ The entries in the table are control and status objects
1306
+ and statistic counters for the FEC layer.
1307
+ Each object has a row for every virtual link denoted by
1308
+ the corresponding ifIndex.
1309
+ The LLID field, as defined in the [802.3ah], is a 2-byte
1310
+ register (15-bit field and a broadcast bit) limiting the
1311
+ number of virtual links to 32768. Typically the number
1312
+ of expected virtual links in a PON is like the number of
1313
+ ONUs, which is 32-64, plus an additional entry for
1314
+ broadcast LLID (with a value of 0xffff).""",
1315
+ }, # table
1316
+ "dot3EponFecEntry" : {
1317
+ "nodetype" : "row",
1318
+ "moduleName" : "DOT3-EPON-MIB",
1319
+ "oid" : "1.3.6.1.2.1.155.1.3.1.1",
1320
+ "status" : "current",
1321
+ "linkage" : [
1322
+ "ifIndex",
1323
+ ],
1324
+ "description" :
1325
+ """An entry in the dot3 EPON FEC table.
1326
+ Rows exist for an OLT interface and an ONU interface.
1327
+ A row in the table is denoted by the ifIndex of the link
1328
+ and it is created when the ifIndex is created.
1329
+ The rows in the table for an ONU interface are created
1330
+
1331
+
1332
+
1333
+ at system initialization.
1334
+ The row in the table corresponding to the OLT ifIndex
1335
+ and the row corresponding to the broadcast virtual link
1336
+ are created at system initialization.
1337
+ A row in the table corresponding to the ifIndex of a
1338
+ virtual links is created when a virtual link is
1339
+ established (ONU registers) and deleted when the virtual
1340
+ link is deleted (ONU deregisters).""",
1341
+ }, # row
1342
+ "dot3EponFecPCSCodingViolation" : {
1343
+ "nodetype" : "column",
1344
+ "moduleName" : "DOT3-EPON-MIB",
1345
+ "oid" : "1.3.6.1.2.1.155.1.3.1.1.1",
1346
+ "status" : "current",
1347
+ "syntax" : {
1348
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1349
+ },
1350
+ "access" : "readonly",
1351
+ "units" : "octets",
1352
+ "description" :
1353
+ """For a 100 Mbps operation, it is a count of the number of
1354
+ times an invalid code-group is received, other than the
1355
+ /H/ code-group. For a 1000 Mbps operation, it is a count
1356
+ of the number of times an invalid codegroup is received,
1357
+ other than the /V/ code-group. /H/ denotes a special
1358
+ 4b5b codeword of [802.3] 100 Mbps PCS layer (clause 24),
1359
+ and /V/ denotes a special 8b10b codeword of the [802.3]
1360
+ 1000 Mbps PCS layer (clause 36).
1361
+ This object is applicable for an OLT and an ONU. At the
1362
+ OLT, it has a distinct value for each virtual interface.
1363
+ Discontinuities of this counter can occur at
1364
+ re-initialization of the management system and at other
1365
+ times, as indicated by the value of the
1366
+ ifCounterDiscontinuityTime object of the Interface MIB
1367
+ module.""",
1368
+ "reference" :
1369
+ """[802.3ah], 30.5.1.1.12.""",
1370
+ }, # column
1371
+ "dot3EponFecAbility" : {
1372
+ "nodetype" : "column",
1373
+ "moduleName" : "DOT3-EPON-MIB",
1374
+ "oid" : "1.3.6.1.2.1.155.1.3.1.1.2",
1375
+ "status" : "current",
1376
+ "syntax" : {
1377
+ "type" : {
1378
+ "basetype" : "Enumeration",
1379
+ "unknown" : {
1380
+ "nodetype" : "namednumber",
1381
+ "number" : "1"
1382
+ },
1383
+ "supported" : {
1384
+ "nodetype" : "namednumber",
1385
+ "number" : "2"
1386
+ },
1387
+ "unsupported" : {
1388
+ "nodetype" : "namednumber",
1389
+ "number" : "3"
1390
+ },
1391
+ },
1392
+ },
1393
+ "access" : "readonly",
1394
+ "description" :
1395
+ """An object that indicates the support of operation of the
1396
+ optional FEC sublayer of the 1000BASE-PX PHY specified
1397
+ in [802.3ah], clause 65.2.
1398
+ unknown(1) value is assigned in the initialization, for non
1399
+ FEC support state or type not yet known. unsupported(3)
1400
+ value is assigned when the sublayer is not supported.
1401
+ supported(2) value is assigned when the sublayer is
1402
+ supported.
1403
+ This object is applicable for an OLT, with the same
1404
+ value for all virtual interfaces, and for an ONU.
1405
+ The FEC counters will have a zero value when the
1406
+ interface is not supporting FEC.
1407
+ The counters:
1408
+ dot3EponFecPCSCodingViolation - not affected by FEC
1409
+ ability.
1410
+ dot3EponFecCorrectedBlocks - has a zero value when
1411
+ dot3EponFecAbility is unknown(1) and unsupported(3).
1412
+ dot3EponFecUncorrectableBlocks - has a zero value when
1413
+ dot3EponFecAbility is unknown(1) and unsupported(3).
1414
+ dot3EponFecBufferHeadCodingViolation - has a zero value
1415
+ when dot3EponFecAbility is unknown(1) and
1416
+ unsupported(3).""",
1417
+ "reference" :
1418
+ """[802.3ah], 30.5.1.1.13.""",
1419
+ }, # column
1420
+ "dot3EponFecMode" : {
1421
+ "nodetype" : "column",
1422
+ "moduleName" : "DOT3-EPON-MIB",
1423
+ "oid" : "1.3.6.1.2.1.155.1.3.1.1.3",
1424
+ "status" : "current",
1425
+ "syntax" : {
1426
+ "type" : {
1427
+ "basetype" : "Enumeration",
1428
+ "unknown" : {
1429
+ "nodetype" : "namednumber",
1430
+ "number" : "1"
1431
+ },
1432
+ "disabled" : {
1433
+ "nodetype" : "namednumber",
1434
+ "number" : "2"
1435
+ },
1436
+ "enabled" : {
1437
+ "nodetype" : "namednumber",
1438
+ "number" : "3"
1439
+ },
1440
+ },
1441
+ },
1442
+ "access" : "readwrite",
1443
+ "default" : "unknown",
1444
+ "description" :
1445
+ """An object that defines the mode of operation of the
1446
+ optional FEC sublayer of the 1000BASE-PX PHY, specified
1447
+ in [802.3ah], clause 65.2, and reflects its state.
1448
+ A GET operation returns the current mode of operation
1449
+ of the PHY. A SET operation changes the mode of
1450
+ operation of the PHY to the indicated value.
1451
+ unknown(1) value is assigned in the initialization for non
1452
+ FEC support state or type not yet known.
1453
+
1454
+
1455
+
1456
+ disabled(2) value is assigned when the FEC sublayer is
1457
+ operating in disabled mode.
1458
+ enabled(3) value is assigned when the FEC sublayer is
1459
+ operating in FEC mode.
1460
+ The write operation is not restricted in this document
1461
+ and can be done at any time. Changing dot3EponFecMode
1462
+ state can lead to disabling the Forward Error Correction
1463
+ on the respective interface, which can lead to a
1464
+ degradation of the optical link, and therefore may lead
1465
+ to an interruption of service for the users connected to
1466
+ the respective EPON interface.
1467
+ This object is applicable for an OLT and an ONU. At the
1468
+ OLT, it has a distinct value for each virtual interface.
1469
+ The counting of
1470
+ the FEC counters will stop when the FEC of the interface
1471
+ is disabled.
1472
+ The counters:
1473
+ dot3EponFecPCSCodingViolation - not affected by FEC
1474
+ mode.
1475
+ dot3EponFecCorrectedBlocks - stops counting when
1476
+ Rx_FEC is not enabled. (unknown(1) and disabled(2)).
1477
+ dot3EponFecUncorrectableBlocks - stops counting when
1478
+ Rx_FEC is not enabled (unknown(1) and disabled(2)).
1479
+ dot3EponFecBufferHeadCodingViolation - stops counting
1480
+ when Rx_FEC is not enabled (unknown(1) and
1481
+ disabled(2)).
1482
+ The object:
1483
+ dot3EponFecAbility - indicates the FEC ability and
1484
+ is not affected by the dot3EponFecMode object.""",
1485
+ "reference" :
1486
+ """[802.3ah], 30.5.1.1.14.""",
1487
+ }, # column
1488
+ "dot3EponFecCorrectedBlocks" : {
1489
+ "nodetype" : "column",
1490
+ "moduleName" : "DOT3-EPON-MIB",
1491
+ "oid" : "1.3.6.1.2.1.155.1.3.1.1.4",
1492
+ "status" : "current",
1493
+ "syntax" : {
1494
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1495
+ },
1496
+ "access" : "readonly",
1497
+ "description" :
1498
+ """For 10PASS-TS, 2BASE-TL, and 1000BASE-PX PHYs, it is a
1499
+ count of corrected FEC blocks. This counter will not
1500
+ increment for other PHY Types. Increment the counter by
1501
+ one for each received block that is corrected by the FEC
1502
+ function in the PHY.
1503
+ This object is applicable for an OLT and an ONU. At the
1504
+ OLT, it has a distinct value for each virtual interface.
1505
+ Discontinuities of this counter can occur at
1506
+ re-initialization of the management system and at other
1507
+ times, as indicated by the value of the
1508
+
1509
+
1510
+
1511
+ ifCounterDiscontinuityTime object of the Interface MIB
1512
+ module.""",
1513
+ "reference" :
1514
+ """[802.3ah], 30.5.1.1.15.""",
1515
+ }, # column
1516
+ "dot3EponFecUncorrectableBlocks" : {
1517
+ "nodetype" : "column",
1518
+ "moduleName" : "DOT3-EPON-MIB",
1519
+ "oid" : "1.3.6.1.2.1.155.1.3.1.1.5",
1520
+ "status" : "current",
1521
+ "syntax" : {
1522
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1523
+ },
1524
+ "access" : "readonly",
1525
+ "description" :
1526
+ """For 10PASS-TS, 2BASE-TL, and 1000BASE-PX PHYs, it is a
1527
+ count of uncorrectable FEC blocks. This counter will not
1528
+ increment for other PHY Types. Increment the counter by
1529
+ one for each FEC block that is determined to be
1530
+ uncorrectable by the FEC function in the PHY.
1531
+ This object is applicable for an OLT and an ONU. At the
1532
+ OLT, it has a distinct value for each virtual interface.
1533
+ Discontinuities of this counter can occur at
1534
+ re-initialization of the management system and at other
1535
+ times, as indicated by the value of the
1536
+ ifCounterDiscontinuityTime object of the Interface MIB
1537
+ module.""",
1538
+ "reference" :
1539
+ """[802.3ah], 30.5.1.1.16.""",
1540
+ }, # column
1541
+ "dot3EponFecBufferHeadCodingViolation" : {
1542
+ "nodetype" : "column",
1543
+ "moduleName" : "DOT3-EPON-MIB",
1544
+ "oid" : "1.3.6.1.2.1.155.1.3.1.1.6",
1545
+ "status" : "current",
1546
+ "syntax" : {
1547
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1548
+ },
1549
+ "access" : "readonly",
1550
+ "units" : "octets",
1551
+ "description" :
1552
+ """For a 1000 Mbps operation, it is a count of the number of
1553
+ invalid code-group received directly from the link. The
1554
+ value has a meaning only in 1000 Mbps mode and it is
1555
+ zero otherwise.
1556
+ This object is applicable for an OLT and an ONU. At the
1557
+ OLT, it has a distinct value for each virtual interface.
1558
+ Discontinuities of this counter can occur at
1559
+ re-initialization of the management system and at other
1560
+ times, as indicated by the value of the
1561
+ ifCounterDiscontinuityTime object of the Interface MIB
1562
+ module.""",
1563
+ }, # column
1564
+ "dot3ExtPkgObjects" : {
1565
+ "nodetype" : "node",
1566
+ "moduleName" : "DOT3-EPON-MIB",
1567
+ "oid" : "1.3.6.1.2.1.155.1.4",
1568
+ }, # node
1569
+ "dot3ExtPkgControlObjects" : {
1570
+ "nodetype" : "node",
1571
+ "moduleName" : "DOT3-EPON-MIB",
1572
+ "oid" : "1.3.6.1.2.1.155.1.4.1",
1573
+ }, # node
1574
+ "dot3ExtPkgControlTable" : {
1575
+ "nodetype" : "table",
1576
+ "moduleName" : "DOT3-EPON-MIB",
1577
+ "oid" : "1.3.6.1.2.1.155.1.4.1.1",
1578
+ "status" : "current",
1579
+ "description" :
1580
+ """A table of Extended package Control management
1581
+ objects. Entries in the table are control and status
1582
+ indication objects of an EPON interface, which are
1583
+ gathered in an extended package as an addition to the
1584
+ objects based on the [802.3ah], clause 30, attributes.
1585
+ Each object has a row for every virtual link denoted by
1586
+ the corresponding ifIndex.
1587
+ The LLID field, as defined in the [802.3ah], is a 2-byte
1588
+ register (15-bit field and a broadcast bit) limiting the
1589
+ number of virtual links to 32768. Typically the number
1590
+ of expected virtual links in a PON is like the number of
1591
+ ONUs, which is 32-64, plus an additional entry for
1592
+ broadcast LLID (with a value of 0xffff).""",
1593
+ }, # table
1594
+ "dot3ExtPkgControlEntry" : {
1595
+ "nodetype" : "row",
1596
+ "moduleName" : "DOT3-EPON-MIB",
1597
+ "oid" : "1.3.6.1.2.1.155.1.4.1.1.1",
1598
+ "status" : "current",
1599
+ "linkage" : [
1600
+ "ifIndex",
1601
+ ],
1602
+ "description" :
1603
+ """An entry in the Extended package Control table.
1604
+ Rows exist for an OLT interface and an ONU interface.
1605
+ A row in the table is denoted by the ifIndex of the link
1606
+ and it is created when the ifIndex is created.
1607
+ The rows in the table for an ONU interface are created
1608
+ at system initialization.
1609
+ The row in the table corresponding to the OLT ifIndex
1610
+ and the row corresponding to the broadcast virtual link
1611
+ are created at system initialization.
1612
+ A row in the table corresponding to the ifIndex of a
1613
+ virtual links is created when a virtual link is
1614
+ established (ONU registers) and deleted when the virtual
1615
+ link is deleted (ONU deregisters).""",
1616
+ }, # row
1617
+ "dot3ExtPkgObjectReset" : {
1618
+ "nodetype" : "column",
1619
+ "moduleName" : "DOT3-EPON-MIB",
1620
+ "oid" : "1.3.6.1.2.1.155.1.4.1.1.1.1",
1621
+ "status" : "current",
1622
+ "syntax" : {
1623
+ "type" : {
1624
+ "basetype" : "Enumeration",
1625
+ "running" : {
1626
+ "nodetype" : "namednumber",
1627
+ "number" : "1"
1628
+ },
1629
+ "reset" : {
1630
+ "nodetype" : "namednumber",
1631
+ "number" : "2"
1632
+ },
1633
+ },
1634
+ },
1635
+ "access" : "readwrite",
1636
+ "default" : "running",
1637
+ "description" :
1638
+ """This object is used to reset the EPON interface. The
1639
+ interface may be unavailable while the reset occurs and
1640
+ data may be lost.
1641
+ Setting this object to running(1) will cause the
1642
+ interface to enter into running mode. Setting this
1643
+ object to reset(2) will cause the interface to go into
1644
+ reset mode. When getting running(1), the interface is in
1645
+ running mode. When getting reset(2), the interface is in
1646
+ reset mode.
1647
+ The write operation is not restricted in this document
1648
+ and can be done at any time. Changing
1649
+ dot3ExtPkgObjectReset state can lead to a reset of the
1650
+ respective interface, leading to an interruption of
1651
+ service for the users connected to the respective EPON
1652
+ interface.
1653
+ This object is applicable for an OLT and an ONU. At the
1654
+ OLT, it has a distinct value for each virtual interface.
1655
+ A reset for a specific virtual interface resets only
1656
+ this virtual interface and not the physical interface.
1657
+ Thus, a virtual link that is malfunctioning can be
1658
+ reset without affecting the operation of other virtual
1659
+ interfaces.
1660
+ The reset can cause Discontinuities in the values of the
1661
+ counters of the interface, similar to re-initialization
1662
+ of the management system. Discontinuity should be
1663
+ indicated by the ifCounterDiscontinuityTime object of
1664
+ the Interface MIB module.""",
1665
+ }, # column
1666
+ "dot3ExtPkgObjectPowerDown" : {
1667
+ "nodetype" : "column",
1668
+ "moduleName" : "DOT3-EPON-MIB",
1669
+ "oid" : "1.3.6.1.2.1.155.1.4.1.1.1.2",
1670
+ "status" : "current",
1671
+ "syntax" : {
1672
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1673
+ },
1674
+ "access" : "readwrite",
1675
+ "default" : "false",
1676
+ "description" :
1677
+ """This object is used to power down the EPON interface.
1678
+ The interface may be unavailable while the power down
1679
+ occurs and data may be lost.
1680
+ Setting this object to true(1) will cause the interface
1681
+ to enter into power down mode. Setting this object to
1682
+ false(2) will cause the interface to go out of power
1683
+ down mode. When getting true(1), the interface is in
1684
+ power down mode. When getting false(2), the interface is
1685
+ not in power down mode.
1686
+ The write operation is not restricted in this document
1687
+ and can be done at any time. Changing
1688
+ dot3ExtPkgObjectPowerDown state can lead to a power down
1689
+ of the respective interface, leading to an interruption
1690
+ of service of the users connected to the respective EPON
1691
+ interface.
1692
+ This object is applicable for an OLT and an ONU. At the
1693
+ OLT, it has a distinct value for each virtual interface.
1694
+ A power down/up of a specific virtual interface affects
1695
+ only the virtual interface and not the physical
1696
+ interface. Hence a virtual link, which needs a certain
1697
+ handling, can be powered down and then powered up without
1698
+ disrupting the operation of other virtual interfaces.
1699
+ The object is relevant when the admin state of the
1700
+ interface is active as set by the dot3MpcpAdminState.""",
1701
+ }, # column
1702
+ "dot3ExtPkgObjectNumberOfLLIDs" : {
1703
+ "nodetype" : "column",
1704
+ "moduleName" : "DOT3-EPON-MIB",
1705
+ "oid" : "1.3.6.1.2.1.155.1.4.1.1.1.3",
1706
+ "status" : "current",
1707
+ "syntax" : {
1708
+ "type" : { "module" :"", "name" : "Unsigned32"},
1709
+ },
1710
+ "access" : "readonly",
1711
+ "description" :
1712
+ """A read only object that indicates the number of
1713
+ registered LLIDs. The initialization value is 0.
1714
+ This object is applicable for an OLT with the same
1715
+ value for all virtual interfaces and for an ONU.
1716
+ The LLID field, as defined in the [802.3ah], is a 2-byte
1717
+ register (15-bit field and a broadcast bit) limiting the
1718
+ number of virtual links to 32768. Typically the number
1719
+ of expected virtual links in a PON is like the number of
1720
+ ONUs, which is 32-64, plus an additional entry for
1721
+ broadcast LLID (with a value of 0xffff). At the ONU the
1722
+ number of LLIDs for an interface is one.""",
1723
+ }, # column
1724
+ "dot3ExtPkgObjectFecEnabled" : {
1725
+ "nodetype" : "column",
1726
+ "moduleName" : "DOT3-EPON-MIB",
1727
+ "oid" : "1.3.6.1.2.1.155.1.4.1.1.1.4",
1728
+ "status" : "current",
1729
+ "syntax" : {
1730
+ "type" : {
1731
+ "basetype" : "Enumeration",
1732
+ "noFecEnabled" : {
1733
+ "nodetype" : "namednumber",
1734
+ "number" : "1"
1735
+ },
1736
+ "fecTxEnabled" : {
1737
+ "nodetype" : "namednumber",
1738
+ "number" : "2"
1739
+ },
1740
+ "fecRxEnabled" : {
1741
+ "nodetype" : "namednumber",
1742
+ "number" : "3"
1743
+ },
1744
+ "fecTxRxEnabled" : {
1745
+ "nodetype" : "namednumber",
1746
+ "number" : "4"
1747
+ },
1748
+ },
1749
+ },
1750
+ "access" : "readwrite",
1751
+ "default" : "noFecEnabled",
1752
+ "description" :
1753
+ """An object defining the FEC mode of operation of the
1754
+ interface, and indicating its state. The modes defined in
1755
+ this object are extensions to the FEC modes defined in
1756
+ the dot3EponFecMode object.
1757
+ When noFECEnabled(1), the interface does not enable FEC
1758
+ mode.
1759
+ When fecTxEnabled(2), the interface enables the FEC
1760
+ transmit mode.
1761
+ When fecRxEnabled(3), the interface enables the FEC
1762
+ receive mode.
1763
+ When fecTxRxEnabled(4), the interface enables the FEC
1764
+ transmit and receive mode.
1765
+ This object is applicable for an OLT and an ONU. At the
1766
+ OLT, it has a distinct value for each virtual interface.
1767
+ The FEC counters are referring to the receive path. The
1768
+ FEC counters will stop when the FEC receive mode of the
1769
+ interface is disabled, as defined by fecRxEnabled(3)
1770
+ and fecTxRxEnabled(4) values.
1771
+ The counters:
1772
+ dot3EponFecPCSCodingViolation - not affected by FEC
1773
+ mode.
1774
+ dot3EponFecCorrectedBlocks - stops counting when
1775
+ Rx_FEC is not enabled (noFecEnabled(1) and
1776
+ fecTxEnabled(2)).
1777
+ dot3EponFecUncorrectableBlocks - stops counting when
1778
+ Rx_FEC is not enabled (noFecEnabled(1) and
1779
+ fecTxEnabled(2)).
1780
+ dot3EponFecBufferHeadCodingViolation - stops counting
1781
+ when Rx_FEC is not enabled (noFecEnabled(1) and
1782
+ fecTxEnabled(2)).
1783
+ The objects:
1784
+ dot3EponFecAbility - indicates the FEC ability and is
1785
+ not affected by the FEC mode.
1786
+ dot3EponFecMode - indicates the FEC mode for combined RX
1787
+ and TX.
1788
+ The write operation is not restricted in this document
1789
+ and can be done at any time. Changing
1790
+ dot3ExtPkgObjectFecEnabled state can lead to disabling
1791
+ the Forward Error Correction on the respective interface,
1792
+ which can lead to a degradation of the optical link, and
1793
+ therefore may lead to an interruption of service for the
1794
+
1795
+
1796
+
1797
+ users connected to the respective EPON interface.""",
1798
+ }, # column
1799
+ "dot3ExtPkgObjectReportMaximumNumQueues" : {
1800
+ "nodetype" : "column",
1801
+ "moduleName" : "DOT3-EPON-MIB",
1802
+ "oid" : "1.3.6.1.2.1.155.1.4.1.1.1.5",
1803
+ "status" : "current",
1804
+ "syntax" : {
1805
+ "type" : {
1806
+ "basetype" : "Unsigned32",
1807
+ "ranges" : [
1808
+ {
1809
+ "min" : "0",
1810
+ "max" : "7"
1811
+ },
1812
+ ],
1813
+ "range" : {
1814
+ "min" : "0",
1815
+ "max" : "7"
1816
+ },
1817
+ },
1818
+ },
1819
+ "access" : "readonly",
1820
+ "default" : "0",
1821
+ "description" :
1822
+ """An object, that defines the maximal number of queues in
1823
+ the REPORT message as defined in [802.3ah], clause 64. For
1824
+ further information please see the description of the
1825
+ queue table.
1826
+ This object is applicable for an OLT and an ONU. At the
1827
+ OLT, it has a distinct value for each virtual interface.""",
1828
+ }, # column
1829
+ "dot3ExtPkgObjectRegisterAction" : {
1830
+ "nodetype" : "column",
1831
+ "moduleName" : "DOT3-EPON-MIB",
1832
+ "oid" : "1.3.6.1.2.1.155.1.4.1.1.1.6",
1833
+ "status" : "current",
1834
+ "syntax" : {
1835
+ "type" : {
1836
+ "basetype" : "Enumeration",
1837
+ "none" : {
1838
+ "nodetype" : "namednumber",
1839
+ "number" : "1"
1840
+ },
1841
+ "register" : {
1842
+ "nodetype" : "namednumber",
1843
+ "number" : "2"
1844
+ },
1845
+ "deregister" : {
1846
+ "nodetype" : "namednumber",
1847
+ "number" : "3"
1848
+ },
1849
+ "reregister" : {
1850
+ "nodetype" : "namednumber",
1851
+ "number" : "4"
1852
+ },
1853
+ },
1854
+ },
1855
+ "access" : "readwrite",
1856
+ "default" : "none",
1857
+ "description" :
1858
+ """An object configuring the registration state of an
1859
+ interface, and indicating its registration state.
1860
+ Write operation changes the registration state to its new
1861
+ value.
1862
+ Read operation returns the value of the state.
1863
+ The registration state is reflected in this object and in
1864
+ the dot3MpcpRegistrationState object.
1865
+ none(1) indicates an unknown state,
1866
+ register(2) indicates a registered LLID,
1867
+ deregister(3) indicates a deregistered LLID,
1868
+ reregister(4) indicates an LLID that is reregistering.
1869
+ The following list describes the operation of the
1870
+ interface, as specified in the [802.3ah], when a write
1871
+ operation is setting a value.
1872
+ none(1) - not doing any action.
1873
+ register(2) - registering an LLID that has been requested
1874
+ for registration (The LLID is in registering mode.
1875
+ dot3MpcpRegistrationState - registering(2) ).
1876
+ deregister(3) - deregisters an LLID that is registered
1877
+ (dot3MpcpRegistrationState - registered(3) ).
1878
+
1879
+
1880
+
1881
+ reregister(4) - reregister an LLID that is registered
1882
+ (dot3MpcpRegistrationState - registered(3) ).
1883
+ The behavior of an ONU and OLT interfaces, at each one
1884
+ of the detailed operation at each state, is described in
1885
+ the registration state machine of figure 64-22,
1886
+ [802.3ah].
1887
+ This object is applicable for an OLT and an ONU. At the
1888
+ OLT, it has a distinct value for each virtual interface.
1889
+ The write operation is not restricted in this document
1890
+ and can be done at any time. Changing
1891
+ dot3ExtPkgObjectRegisterAction state can lead to a change
1892
+ in the registration state of the respective interface
1893
+ leading to a deregistration and an interruption of
1894
+ service of the users connected to the respective EPON
1895
+ interface.""",
1896
+ }, # column
1897
+ "dot3ExtPkgQueueTable" : {
1898
+ "nodetype" : "table",
1899
+ "moduleName" : "DOT3-EPON-MIB",
1900
+ "oid" : "1.3.6.1.2.1.155.1.4.1.2",
1901
+ "status" : "current",
1902
+ "description" :
1903
+ """A table of the extended package objects for queue
1904
+ management. The [802.3ah] MPCP defines a report message
1905
+ of the occupancy of the transmit queues for the feedback
1906
+ BW request from the ONUs. These queues serve the uplink
1907
+ transmission of the ONU and data is gathered there until
1908
+ the ONU is granted for transmission.
1909
+ The management table of the queues is added here mainly
1910
+ to control the reporting and to gather some statistics
1911
+ of their operation. This table is not duplicating
1912
+ existing management objects of bridging queues,
1913
+ specified in [802.1d], since the existence of a
1914
+ dedicated transmit queuing mechanism is implied in the
1915
+ [802.3ah], and the ONU may be a device that is not a
1916
+ bridge with embedded bridging queues.
1917
+ The format of the REPORT message, as specified
1918
+ in [802.3], is presented below:
1919
+ +-----------------------------------+
1920
+ | Destination Address |
1921
+ +-----------------------------------+
1922
+ | Source Address |
1923
+ +-----------------------------------+
1924
+ | Length/Type |
1925
+ +-----------------------------------+
1926
+ | OpCode |
1927
+ +-----------------------------------+
1928
+
1929
+
1930
+
1931
+ | TimeStamp |
1932
+ +-----------------------------------+
1933
+ | Number of queue Sets |
1934
+ +-----------------------------------+ /|\
1935
+ | Report bitmap | |
1936
+ +-----------------------------------+ |
1937
+ | Queue 0 report | |
1938
+ +-----------------------------------+ | repeated for
1939
+ | Queue 1 report | | every
1940
+ +-----------------------------------+ | queue_set
1941
+ | Queue 2 report | |
1942
+ +-----------------------------------+ |
1943
+ | Queue 3 report | |
1944
+ +-----------------------------------+ |
1945
+ | Queue 4 report | |
1946
+ +-----------------------------------+ |
1947
+ | Queue 5 report | |
1948
+ +-----------------------------------+ |
1949
+ | Queue 6 report | |
1950
+ +-----------------------------------+ |
1951
+ | Queue 7 report | |
1952
+ +-----------------------------------+ \|/
1953
+ | Pad/reserved |
1954
+ +-----------------------------------+
1955
+ | FCS |
1956
+ +-----------------------------------+
1957
+
1958
+ The 'Queue report' field reports the occupancy of each
1959
+ uplink transmission queue.
1960
+ The number of queue sets defines the number of the
1961
+ reported sets, as would be explained in the description
1962
+ of the dot3ExtPkgQueueSetsTable table. For each set the
1963
+ report bitmap defines which queue is present in the
1964
+ report, meaning that although the MPCP REPORT message
1965
+ can report up to 8 queues in a REPORT message, the
1966
+ actual number is flexible. The Queue table has a
1967
+ variable size that is limited by the
1968
+ dot3ExtPkgObjectReportMaximumNumQueues object, as an
1969
+ ONU can have fewer queues to report.
1970
+ The entries in the table are control and status
1971
+ indication objects for managing the queues of an EPON
1972
+ interface that are gathered in an extended package as
1973
+ an addition to the objects that are based on the
1974
+ [802.3ah] attributes.
1975
+ Each object has a row for every virtual link and for
1976
+ every queue in the report.
1977
+ The LLID field, as defined in the [802.3ah], is a 2-byte
1978
+ register (15-bit field and a broadcast bit) limiting the
1979
+
1980
+
1981
+
1982
+ number of virtual links to 32768. Typically the number
1983
+ of expected virtual links in a PON is like the number of
1984
+ ONUs, which is 32-64, plus an additional entry for
1985
+ broadcast LLID (with a value of 0xffff).
1986
+ The number of queues is between 0 and 7 and limited by
1987
+ dot3ExtPkgObjectReportMaximumNumQueues.""",
1988
+ }, # table
1989
+ "dot3ExtPkgQueueEntry" : {
1990
+ "nodetype" : "row",
1991
+ "moduleName" : "DOT3-EPON-MIB",
1992
+ "oid" : "1.3.6.1.2.1.155.1.4.1.2.1",
1993
+ "status" : "current",
1994
+ "linkage" : [
1995
+ "ifIndex",
1996
+ "dot3QueueIndex",
1997
+ ],
1998
+ "description" :
1999
+ """An entry in the Extended package Queue table. At the
2000
+ OLT, the rows exist for each ifIndex and dot3QueueIndex.
2001
+ At the ONU, rows exist for the single ifIndex for each
2002
+ dot3QueueIndex.
2003
+ Rows in the table are created when the ifIndex of the
2004
+ link is created. A set of rows per queue are added for
2005
+ each ifIndex, denoted by the dot3QueueIndex.
2006
+ A set of rows per queue in the table, for an ONU
2007
+ interface, are created at the system initialization.
2008
+ A set of rows per queue in the table, corresponding to
2009
+ the OLT ifIndex and a set of rows per queue
2010
+ corresponding to the broadcast virtual link, are
2011
+ created at the system initialization.
2012
+ A set of rows per queue in the table, corresponding to
2013
+ the ifIndex of a virtual link, are created when the
2014
+ virtual link is established (ONU registers), and deleted
2015
+ when the virtual link is deleted (ONU deregisters).""",
2016
+ }, # row
2017
+ "dot3QueueIndex" : {
2018
+ "nodetype" : "column",
2019
+ "moduleName" : "DOT3-EPON-MIB",
2020
+ "oid" : "1.3.6.1.2.1.155.1.4.1.2.1.1",
2021
+ "status" : "current",
2022
+ "syntax" : {
2023
+ "type" : {
2024
+ "basetype" : "Unsigned32",
2025
+ "ranges" : [
2026
+ {
2027
+ "min" : "0",
2028
+ "max" : "7"
2029
+ },
2030
+ ],
2031
+ "range" : {
2032
+ "min" : "0",
2033
+ "max" : "7"
2034
+ },
2035
+ },
2036
+ },
2037
+ "access" : "noaccess",
2038
+ "description" :
2039
+ """An object that identifies an index for the queue table
2040
+ reflecting the queue index of the queues that are
2041
+ reported in the MPCP REPORT message as defined in
2042
+ [802.3ah], clause 64.
2043
+ The number of queues is between 0 and 7, and limited by
2044
+ dot3ExtPkgObjectReportMaximumNumQueues.""",
2045
+ }, # column
2046
+ "dot3ExtPkgObjectReportNumThreshold" : {
2047
+ "nodetype" : "column",
2048
+ "moduleName" : "DOT3-EPON-MIB",
2049
+ "oid" : "1.3.6.1.2.1.155.1.4.1.2.1.2",
2050
+ "status" : "current",
2051
+ "syntax" : {
2052
+ "type" : {
2053
+ "basetype" : "Unsigned32",
2054
+ "ranges" : [
2055
+ {
2056
+ "min" : "0",
2057
+ "max" : "7"
2058
+ },
2059
+ ],
2060
+ "range" : {
2061
+ "min" : "0",
2062
+ "max" : "7"
2063
+ },
2064
+ },
2065
+ },
2066
+ "access" : "readwrite",
2067
+ "default" : "0",
2068
+ "description" :
2069
+ """An object that defines the number of thresholds for each
2070
+ queue in the REPORT message as defined in [802.3ah],
2071
+ clause 64.
2072
+ Each queue_set reporting will provide information on the
2073
+ queue occupancy of frames below the matching Threshold.
2074
+ Read operation reflects the number of thresholds.
2075
+ Write operation sets the number of thresholds for each
2076
+ queue.
2077
+ The write operation is not restricted in this document
2078
+ and can be done at any time. Value cannot exceed the
2079
+ maximal value defined by the
2080
+ dot3ExtPkgObjectReportMaximumNumThreshold object.
2081
+ Changing dot3ExtPkgObjectReportNumThreshold can lead to
2082
+ a change in the reporting of the ONU interface and
2083
+ therefore to a change in the bandwidth allocation of the
2084
+ respective interface. This change may lead a degradation
2085
+ or an interruption of service of the users connected to
2086
+ the respective EPON interface.
2087
+ This object is applicable for an OLT and an ONU. At the
2088
+ OLT, it has a distinct value for each virtual interface
2089
+ and for each queue. At the ONU, it has a distinct value
2090
+ for each queue.""",
2091
+ }, # column
2092
+ "dot3ExtPkgObjectReportMaximumNumThreshold" : {
2093
+ "nodetype" : "column",
2094
+ "moduleName" : "DOT3-EPON-MIB",
2095
+ "oid" : "1.3.6.1.2.1.155.1.4.1.2.1.3",
2096
+ "status" : "current",
2097
+ "syntax" : {
2098
+ "type" : {
2099
+ "basetype" : "Unsigned32",
2100
+ "ranges" : [
2101
+ {
2102
+ "min" : "0",
2103
+ "max" : "7"
2104
+ },
2105
+ ],
2106
+ "range" : {
2107
+ "min" : "0",
2108
+ "max" : "7"
2109
+ },
2110
+ },
2111
+ },
2112
+ "access" : "readonly",
2113
+ "default" : "0",
2114
+ "description" :
2115
+ """An object, that defines the maximal number of thresholds
2116
+ for each queue in the REPORT message as defined in
2117
+ [802.3ah], clause 64. Each queue_set reporting will
2118
+ provide information on the queue occupancy of frames
2119
+ below the matching Threshold.
2120
+
2121
+
2122
+
2123
+ This object is applicable for an OLT and an ONU. At the
2124
+ OLT, it has a distinct value for each virtual interface
2125
+ and for each queue. At the ONU, it has a distinct value
2126
+ for each queue.""",
2127
+ }, # column
2128
+ "dot3ExtPkgStatTxFramesQueue" : {
2129
+ "nodetype" : "column",
2130
+ "moduleName" : "DOT3-EPON-MIB",
2131
+ "oid" : "1.3.6.1.2.1.155.1.4.1.2.1.4",
2132
+ "status" : "current",
2133
+ "syntax" : {
2134
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2135
+ },
2136
+ "access" : "readonly",
2137
+ "units" : "frames",
2138
+ "description" :
2139
+ """A count of the number of times a frame transmission
2140
+ occurs from the corresponding 'Queue'.
2141
+ Increment the counter by one for each frame transmitted,
2142
+ which is an output of the 'Queue'.
2143
+ The 'Queue' marking matches the REPORT MPCP message
2144
+ Queue field as defined in [802.3ah], clause 64.
2145
+ This object is applicable for an OLT and an ONU. At the
2146
+ OLT, it has a distinct value for each virtual interface
2147
+ and for each queue. At the ONU, it has a distinct value
2148
+ for each queue.
2149
+ At the OLT the value should be zero.
2150
+ Discontinuities of this counter can occur at
2151
+ re-initialization of the management system and at other
2152
+ times, as indicated by the value of the
2153
+ ifCounterDiscontinuityTime object of the Interface MIB
2154
+ module.""",
2155
+ }, # column
2156
+ "dot3ExtPkgStatRxFramesQueue" : {
2157
+ "nodetype" : "column",
2158
+ "moduleName" : "DOT3-EPON-MIB",
2159
+ "oid" : "1.3.6.1.2.1.155.1.4.1.2.1.5",
2160
+ "status" : "current",
2161
+ "syntax" : {
2162
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2163
+ },
2164
+ "access" : "readonly",
2165
+ "units" : "frames",
2166
+ "description" :
2167
+ """A count of the number of times a frame reception
2168
+ occurs from the corresponding 'Queue'.
2169
+ Increment the counter by one for each frame received,
2170
+ which is an input to the corresponding 'Queue'.
2171
+ The 'Queue' marking matches the REPORT MPCP message
2172
+ Queue field as defined in [802.3ah], clause 64.
2173
+ This object is applicable for an OLT and an ONU. At the
2174
+ OLT, it has a distinct value for each virtual interface
2175
+ and for each queue. At the ONU, it has a distinct value
2176
+ for each queue.
2177
+ Discontinuities of this counter can occur at
2178
+
2179
+
2180
+
2181
+ re-initialization of the management system and at other
2182
+ times, as indicated by the value of the
2183
+ ifCounterDiscontinuityTime object of the Interface MIB
2184
+ module.""",
2185
+ }, # column
2186
+ "dot3ExtPkgStatDroppedFramesQueue" : {
2187
+ "nodetype" : "column",
2188
+ "moduleName" : "DOT3-EPON-MIB",
2189
+ "oid" : "1.3.6.1.2.1.155.1.4.1.2.1.6",
2190
+ "status" : "current",
2191
+ "syntax" : {
2192
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2193
+ },
2194
+ "access" : "readonly",
2195
+ "units" : "frames",
2196
+ "description" :
2197
+ """A count of the number of times a frame drop
2198
+ occurs from the corresponding 'Queue'.
2199
+ Increment the counter by one for each frame dropped
2200
+ from the corresponding 'Queue'.
2201
+ The 'Queue' marking matches the REPORT MPCP message
2202
+ Queue field as defined in [802.3ah], clause 64.
2203
+ This object is applicable for an OLT and an ONU. At the
2204
+ OLT, it has a distinct value for each virtual interface
2205
+ and for each queue. At the ONU, it has a distinct value
2206
+ for each queue.
2207
+ At the OLT, the value should be zero.
2208
+ Discontinuities of this counter can occur at
2209
+ re-initialization of the management system and at other
2210
+ times, as indicated by the value of the
2211
+ ifCounterDiscontinuityTime object of the Interface MIB
2212
+ module.""",
2213
+ }, # column
2214
+ "dot3ExtPkgQueueSetsTable" : {
2215
+ "nodetype" : "table",
2216
+ "moduleName" : "DOT3-EPON-MIB",
2217
+ "oid" : "1.3.6.1.2.1.155.1.4.1.3",
2218
+ "status" : "current",
2219
+ "description" :
2220
+ """A table of Extended package objects used for the
2221
+ management of the queue_sets. Entries are control and
2222
+ status indication objects of an EPON interface, which
2223
+ are gathered in an extended package as an addition to
2224
+ the objects based on the [802.3ah] attributes. The
2225
+ objects in this table are specific for the queue_sets,
2226
+ which are reported in the MPCP REPORT message as defined
2227
+ in [802.3ah], clause 64.
2228
+ The [802.3ah] MPCP defines a report message of the
2229
+ occupancy of the transmit queues for the feedback BW
2230
+ request from the ONUs. These queues serve the uplink
2231
+ transmission of the ONU and data is gathered there until
2232
+ the ONU is granted for transmission.
2233
+
2234
+
2235
+
2236
+ The management table of the queues_sets is added here
2237
+ mainly to control the reporting and to gather some
2238
+ statistics of their operation. This table is not
2239
+ duplicating existing management objects of bridging
2240
+ queues, specified in [802.1d], since the existence of a
2241
+ dedicated transmit queuing mechanism is implied in the
2242
+ [802.3ah], and the ONU may be a device that is not a
2243
+ bridge with embedded bridging queues.
2244
+ The format of the REPORT message, as specified
2245
+ in [802.3], is presented below:
2246
+ +-----------------------------------+
2247
+ | Destination Address |
2248
+ +-----------------------------------+
2249
+ | Source Address |
2250
+ +-----------------------------------+
2251
+ | Length/Type |
2252
+ +-----------------------------------+
2253
+ | OpCode |
2254
+ +-----------------------------------+
2255
+ | TimeStamp |
2256
+ +-----------------------------------+
2257
+ | Number of queue Sets |
2258
+ +-----------------------------------+ /|\
2259
+ | Report bitmap | |
2260
+ +-----------------------------------+ |
2261
+ | Queue 0 report | |
2262
+ +-----------------------------------+ | repeated for
2263
+ | Queue 1 report | | every
2264
+ +-----------------------------------+ | queue_set
2265
+ | Queue 2 report | |
2266
+ +-----------------------------------+ |
2267
+ | Queue 3 report | |
2268
+ +-----------------------------------+ |
2269
+ | Queue 4 report | |
2270
+ +-----------------------------------+ |
2271
+ | Queue 5 report | |
2272
+ +-----------------------------------+ |
2273
+ | Queue 6 report | |
2274
+ +-----------------------------------+ |
2275
+ | Queue 7 report | |
2276
+ +-----------------------------------+ \|/
2277
+ | Pad/reserved |
2278
+ +-----------------------------------+
2279
+ | FCS |
2280
+ +-----------------------------------+
2281
+
2282
+ As can be seen from the message format, the ONU
2283
+ interface reports of the status of up to 8 queues
2284
+
2285
+
2286
+
2287
+ and it can report in a single MPCP REPORT message
2288
+ of a few sets of queues.
2289
+ The number of queue_sets defines the number of the
2290
+ reported sets, and it can reach a value of up to 8.
2291
+ It means that an ONU can hold a variable number of
2292
+ sets between 0 and 7.
2293
+ The dot3ExtPkgQueueSetsTable table has a variable
2294
+ queue_set size that is limited by the
2295
+ dot3ExtPkgObjectReportMaximumNumThreshold object as an
2296
+ ONU can have fewer queue_sets to report.
2297
+ The 'Queue report' field reports the occupancy of each
2298
+ uplink transmission queue. The queue_sets can be used to
2299
+ report the occupancy of the queues in a few levels as to
2300
+ allow granting, in an accurate manner, of only part of
2301
+ the data available in the queues. A Threshold is
2302
+ defined for each queue_set to define the level of the
2303
+ queue that is counted for the report of the occupancy.
2304
+ The threshold is reflected in the queue_set table by the
2305
+ dot3ExtPkgObjectReportThreshold object.
2306
+ For each queue set, the report bitmap defines which
2307
+ queues are present in the report, meaning that
2308
+ although the MPCP REPORT message can report of up to 8
2309
+ queues in a REPORT message, the actual number is
2310
+ flexible.
2311
+ The dot3ExtPkgQueueSetsTable table has a variable queue
2312
+ size that is limited by the
2313
+ dot3ExtPkgObjectReportMaximumNumQueues object as an ONU
2314
+ can have fewer queues to report.
2315
+ Each object has a row for every virtual link, for each
2316
+ queue in the report and for each queue_set in the queue.
2317
+ The LLID field, as defined in the [802.3ah], is a 2-byte
2318
+ register (15-bit field and a broadcast bit) limiting the
2319
+ number of virtual links to 32768. Typically the number
2320
+ of expected virtual links in a PON is like the number of
2321
+ ONUs, which is 32-64, plus an additional entry for
2322
+ broadcast LLID (with a value of 0xffff).
2323
+ The number of queues is between 0 and 7 and limited by
2324
+ dot3ExtPkgObjectReportMaximumNumQueues.
2325
+ The number of queues_sets is between 0 and 7 and limited
2326
+ by dot3ExtPkgObjectReportMaximumNumThreshold.""",
2327
+ }, # table
2328
+ "dot3ExtPkgQueueSetsEntry" : {
2329
+ "nodetype" : "row",
2330
+ "moduleName" : "DOT3-EPON-MIB",
2331
+ "oid" : "1.3.6.1.2.1.155.1.4.1.3.1",
2332
+ "status" : "current",
2333
+ "linkage" : [
2334
+ "ifIndex",
2335
+ "dot3QueueSetQueueIndex",
2336
+ "dot3QueueSetIndex",
2337
+ ],
2338
+ "description" :
2339
+ """An entry in the Extended package queue_set table. At
2340
+
2341
+
2342
+
2343
+ the OLT, the rows exist for each ifIndex,
2344
+ dot3QueueSetQueueIndex and dot3QueueSetIndex. At the
2345
+ ONU, rows exist for the single ifIndex, for each
2346
+ dot3QueueSetQueueIndex and dot3QueueSetIndex.
2347
+ Rows in the table are created when the ifIndex of the
2348
+ link is created. A set of rows per queue and per
2349
+ queue_set are added for each ifIndex, denoted by
2350
+ dot3QueueSetIndex and dot3QueueSetQueueIndex.
2351
+ A set of rows per queue and per queue_set in the table,
2352
+ for an ONU interface are created at system
2353
+ initialization.
2354
+ A set of rows per queue and per queue_Set in the table,
2355
+ corresponding to the OLT ifIndex and a set of rows per
2356
+ queue and per queue_set, corresponding to the broadcast
2357
+ virtual link, are created at system initialization.
2358
+ A set of rows per queue and per queue_set in the table,
2359
+ corresponding to the ifIndex of a virtual link are
2360
+ created when the virtual link is established (ONU
2361
+ registers) and deleted when the virtual link is deleted
2362
+ (ONU deregisters).""",
2363
+ }, # row
2364
+ "dot3QueueSetQueueIndex" : {
2365
+ "nodetype" : "column",
2366
+ "moduleName" : "DOT3-EPON-MIB",
2367
+ "oid" : "1.3.6.1.2.1.155.1.4.1.3.1.1",
2368
+ "status" : "current",
2369
+ "syntax" : {
2370
+ "type" : {
2371
+ "basetype" : "Unsigned32",
2372
+ "ranges" : [
2373
+ {
2374
+ "min" : "0",
2375
+ "max" : "7"
2376
+ },
2377
+ ],
2378
+ "range" : {
2379
+ "min" : "0",
2380
+ "max" : "7"
2381
+ },
2382
+ },
2383
+ },
2384
+ "access" : "noaccess",
2385
+ "description" :
2386
+ """An object that identifies the queue index for the
2387
+ dot3ExtPkgQueueSetsTable table. The queues are reported
2388
+ in the MPCP REPORT message as defined in [802.3ah],
2389
+ clause 64.
2390
+ The number of queues is between 0 and 7, and limited by
2391
+ dot3ExtPkgObjectReportMaximumNumQueues.
2392
+ Value corresponds to the dot3QueueIndex of the queue
2393
+ table.""",
2394
+ }, # column
2395
+ "dot3QueueSetIndex" : {
2396
+ "nodetype" : "column",
2397
+ "moduleName" : "DOT3-EPON-MIB",
2398
+ "oid" : "1.3.6.1.2.1.155.1.4.1.3.1.2",
2399
+ "status" : "current",
2400
+ "syntax" : {
2401
+ "type" : {
2402
+ "basetype" : "Unsigned32",
2403
+ "ranges" : [
2404
+ {
2405
+ "min" : "0",
2406
+ "max" : "7"
2407
+ },
2408
+ ],
2409
+ "range" : {
2410
+ "min" : "0",
2411
+ "max" : "7"
2412
+ },
2413
+ },
2414
+ },
2415
+ "access" : "noaccess",
2416
+ "description" :
2417
+ """An object that identifies the queue_set index for the
2418
+ dot3ExtPkgQueueSetsTable table. The queues are reported
2419
+ in the MPCP REPORT message as defined in [802.3ah],
2420
+ clause 64.
2421
+ The number of queues_sets is between 0 and 7, and
2422
+ limited by dot3ExtPkgObjectReportMaximumNumThreshold.""",
2423
+ }, # column
2424
+ "dot3ExtPkgObjectReportThreshold" : {
2425
+ "nodetype" : "column",
2426
+ "moduleName" : "DOT3-EPON-MIB",
2427
+ "oid" : "1.3.6.1.2.1.155.1.4.1.3.1.3",
2428
+ "status" : "current",
2429
+ "syntax" : {
2430
+ "type" : { "module" :"", "name" : "Unsigned32"},
2431
+ },
2432
+ "access" : "readwrite",
2433
+ "default" : "0",
2434
+ "units" : "TQ (16nsec)",
2435
+ "description" :
2436
+ """An object that defines the value of a threshold report
2437
+ for each queue_set in the REPORT message as defined in
2438
+ [802.3ah], clause 64. The number of sets for each queue
2439
+ is dot3ExtPkgObjectReportNumThreshold.
2440
+ In the REPORT message, each queue_set reporting will
2441
+ provide information on the occupancy of the queues for
2442
+ frames below the matching Threshold.
2443
+ The value returned shall be in Time quanta (TQ), which
2444
+ is 16nsec or 2 octets increments.
2445
+ Read operation provides the threshold value. Write
2446
+ operation sets the value of the threshold.
2447
+ The write operation is not restricted in this document
2448
+ and can be done at any time. Changing
2449
+ dot3ExtPkgObjectReportThreshold can lead to a change in
2450
+ the reporting of the ONU interface and therefore to a
2451
+ change in the bandwidth allocation of the respective
2452
+ interface. This change may lead a degradation or an
2453
+ interruption of service for the users connected to the
2454
+ respective EPON interface.
2455
+ This object is applicable for an OLT and an ONU. At the
2456
+ OLT, it has a distinct value for each virtual interface,
2457
+ for each queue and for each queue_set. At the ONU, it has
2458
+ a distinct value for each queue and for each queue_set.""",
2459
+ }, # column
2460
+ "dot3ExtPkgOptIfTable" : {
2461
+ "nodetype" : "table",
2462
+ "moduleName" : "DOT3-EPON-MIB",
2463
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5",
2464
+ "status" : "current",
2465
+ "description" :
2466
+ """This table defines the control and status indication
2467
+ objects for the optical interface of the EPON interface.
2468
+ Each object has a row for every virtual link denoted by
2469
+ the corresponding ifIndex.
2470
+ The LLID field, as defined in the [802.3ah], is a 2-byte
2471
+ register (15-bit field and a broadcast bit) limiting the
2472
+ number of virtual links to 32768. Typically the number
2473
+ of expected virtual links in a PON is like the number of
2474
+ ONUs, which is 32-64, plus an additional entry for
2475
+ broadcast LLID (with a value of 0xffff).
2476
+ Although the optical interface is a physical interface,
2477
+ there is a row in the table for each virtual interface.
2478
+ The reason for having a separate row for each virtual
2479
+ link is that the OLT has a separate link for each one of
2480
+ the ONUs. For instance, ONUs could be in different
2481
+ distances with different link budgets and different
2482
+ receive powers, therefore having different power alarms.
2483
+ It is quite similar to a case of different physical
2484
+ interfaces.""",
2485
+ }, # table
2486
+ "dot3ExtPkgOptIfEntry" : {
2487
+ "nodetype" : "row",
2488
+ "moduleName" : "DOT3-EPON-MIB",
2489
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1",
2490
+ "status" : "current",
2491
+ "linkage" : [
2492
+ "ifIndex",
2493
+ ],
2494
+ "description" :
2495
+ """An entry in the optical interface table of the EPON
2496
+ interface.
2497
+ Rows exist for an OLT interface and an ONU interface.
2498
+ A row in the table is denoted by the ifIndex of the link
2499
+ and it is created when the ifIndex is created.
2500
+ The rows in the table for an ONU interface are created
2501
+ at system initialization.
2502
+ The row in the table corresponding to the OLT ifIndex
2503
+ and the row corresponding to the broadcast virtual link
2504
+ are created at system initialization.
2505
+ A row in the table corresponding to the ifIndex of a
2506
+ virtual links is created when a virtual link is
2507
+ established (ONU registers) and deleted when the virtual
2508
+ link is deleted (ONU deregisters).""",
2509
+ }, # row
2510
+ "dot3ExtPkgOptIfSuspectedFlag" : {
2511
+ "nodetype" : "column",
2512
+ "moduleName" : "DOT3-EPON-MIB",
2513
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.1",
2514
+ "status" : "current",
2515
+ "syntax" : {
2516
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2517
+ },
2518
+ "access" : "readonly",
2519
+ "description" :
2520
+ """This object is a reliability indication.
2521
+ If true, the data in this entry may be unreliable.
2522
+ This object is applicable for an OLT and an ONU. At the
2523
+ OLT, it has a distinct value for each virtual interface.""",
2524
+ }, # column
2525
+ "dot3ExtPkgOptIfInputPower" : {
2526
+ "nodetype" : "column",
2527
+ "moduleName" : "DOT3-EPON-MIB",
2528
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.2",
2529
+ "status" : "current",
2530
+ "syntax" : {
2531
+ "type" : { "module" :"", "name" : "Integer32"},
2532
+ },
2533
+ "access" : "readonly",
2534
+ "units" : "0.1 dbm",
2535
+ "description" :
2536
+ """The optical power monitored at the input.
2537
+ This object is applicable for an OLT and an ONU. At the
2538
+ OLT, it has a distinct value for each virtual interface.""",
2539
+ }, # column
2540
+ "dot3ExtPkgOptIfLowInputPower" : {
2541
+ "nodetype" : "column",
2542
+ "moduleName" : "DOT3-EPON-MIB",
2543
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.3",
2544
+ "status" : "current",
2545
+ "syntax" : {
2546
+ "type" : { "module" :"", "name" : "Integer32"},
2547
+ },
2548
+ "access" : "readonly",
2549
+ "units" : "0.1 dbm",
2550
+ "description" :
2551
+ """The lowest optical power monitored at the input during the
2552
+ current 15-minute interval.
2553
+ This object is applicable for an OLT and an ONU. At the
2554
+ OLT, it has a distinct value for each virtual interface.""",
2555
+ }, # column
2556
+ "dot3ExtPkgOptIfHighInputPower" : {
2557
+ "nodetype" : "column",
2558
+ "moduleName" : "DOT3-EPON-MIB",
2559
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.4",
2560
+ "status" : "current",
2561
+ "syntax" : {
2562
+ "type" : { "module" :"", "name" : "Integer32"},
2563
+ },
2564
+ "access" : "readonly",
2565
+ "units" : "0.1 dbm",
2566
+ "description" :
2567
+ """The highest optical power monitored at the input during the
2568
+ current 15-minute interval.
2569
+ This object is applicable for an OLT and an ONU. At the
2570
+ OLT, it has a distinct value for each virtual interface.""",
2571
+ }, # column
2572
+ "dot3ExtPkgOptIfLowerInputPowerThreshold" : {
2573
+ "nodetype" : "column",
2574
+ "moduleName" : "DOT3-EPON-MIB",
2575
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.5",
2576
+ "status" : "current",
2577
+ "syntax" : {
2578
+ "type" : { "module" :"", "name" : "Integer32"},
2579
+ },
2580
+ "access" : "readwrite",
2581
+ "units" : "0.1 dbm",
2582
+ "description" :
2583
+ """The lower limit threshold on input power. If
2584
+ dot3ExtPkgOptIfInputPower drops to this value or below,
2585
+ a Threshold Crossing Alert (TCA) should be sent.
2586
+ Reading will present the threshold value. Writing will
2587
+ set the value of the threshold.
2588
+ The write operation is not restricted in this document
2589
+ and can be done at any time. Changing
2590
+ dot3ExtPkgOptIfLowerInputPowerThreshold can lead to a Threshold
2591
+ Crossing Alert (TCA) being sent for the respective interface.
2592
+ This alert may be leading to an interruption of service for the
2593
+ users connected to the respective EPON interface, depending on
2594
+ the system action on such an alert.
2595
+ This object is applicable for an OLT and an ONU. At the
2596
+ OLT, it has a distinct value for each virtual interface.""",
2597
+ }, # column
2598
+ "dot3ExtPkgOptIfUpperInputPowerThreshold" : {
2599
+ "nodetype" : "column",
2600
+ "moduleName" : "DOT3-EPON-MIB",
2601
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.6",
2602
+ "status" : "current",
2603
+ "syntax" : {
2604
+ "type" : { "module" :"", "name" : "Integer32"},
2605
+ },
2606
+ "access" : "readwrite",
2607
+ "units" : "0.1 dbm",
2608
+ "description" :
2609
+ """The upper limit threshold on input power. If
2610
+ dot3ExtPkgOptIfInputPower reaches or exceeds this value,
2611
+ a Threshold Crossing Alert (TCA) should be sent.
2612
+ Reading will present the threshold value. Writing will
2613
+ set the value of the threshold.
2614
+ The write operation is not restricted in this document
2615
+ and can be done at any time. Changing
2616
+ dot3ExtPkgOptIfUpperInputPowerThreshold can lead to a Threshold
2617
+
2618
+
2619
+
2620
+ Crossing Alert (TCA) being sent for the respective interface.
2621
+ This alert may be leading to an interruption of service for the
2622
+ users connected to the respective EPON interface, depending on
2623
+ the system action on such an alert.
2624
+ This object is applicable for an OLT and an ONU. At the
2625
+ OLT, it has a distinct value for each virtual interface.""",
2626
+ }, # column
2627
+ "dot3ExtPkgOptIfOutputPower" : {
2628
+ "nodetype" : "column",
2629
+ "moduleName" : "DOT3-EPON-MIB",
2630
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.7",
2631
+ "status" : "current",
2632
+ "syntax" : {
2633
+ "type" : { "module" :"", "name" : "Integer32"},
2634
+ },
2635
+ "access" : "readonly",
2636
+ "units" : "0.1 dbm",
2637
+ "description" :
2638
+ """The optical power monitored at the output.
2639
+ This object is applicable for an OLT and an ONU. At the
2640
+ OLT, it has a distinct value for each virtual interface.""",
2641
+ }, # column
2642
+ "dot3ExtPkgOptIfLowOutputPower" : {
2643
+ "nodetype" : "column",
2644
+ "moduleName" : "DOT3-EPON-MIB",
2645
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.8",
2646
+ "status" : "current",
2647
+ "syntax" : {
2648
+ "type" : { "module" :"", "name" : "Integer32"},
2649
+ },
2650
+ "access" : "readonly",
2651
+ "units" : "0.1 dbm",
2652
+ "description" :
2653
+ """The lowest optical power monitored at the output during the
2654
+ current 15-minute interval.
2655
+ This object is applicable for an OLT and an ONU. At the
2656
+ OLT, it has a distinct value for each virtual interface.""",
2657
+ }, # column
2658
+ "dot3ExtPkgOptIfHighOutputPower" : {
2659
+ "nodetype" : "column",
2660
+ "moduleName" : "DOT3-EPON-MIB",
2661
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.9",
2662
+ "status" : "current",
2663
+ "syntax" : {
2664
+ "type" : { "module" :"", "name" : "Integer32"},
2665
+ },
2666
+ "access" : "readonly",
2667
+ "units" : "0.1 dbm",
2668
+ "description" :
2669
+ """The highest optical power monitored at the output during the
2670
+ current 15-minute interval.
2671
+ This object is applicable for an OLT and an ONU. At the
2672
+ OLT, it has a distinct value for each virtual interface.""",
2673
+ }, # column
2674
+ "dot3ExtPkgOptIfLowerOutputPowerThreshold" : {
2675
+ "nodetype" : "column",
2676
+ "moduleName" : "DOT3-EPON-MIB",
2677
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.10",
2678
+ "status" : "current",
2679
+ "syntax" : {
2680
+ "type" : { "module" :"", "name" : "Integer32"},
2681
+ },
2682
+ "access" : "readwrite",
2683
+ "units" : "0.1 dbm",
2684
+ "description" :
2685
+ """The lower limit threshold on output power. If
2686
+ dot3ExtPkgOptIfOutputPower drops to this value or below,
2687
+ a Threshold Crossing Alert (TCA) should be sent.
2688
+ Reading will present the threshold value. Writing will
2689
+ set the value of the threshold.
2690
+ The write operation is not restricted in this document
2691
+ and can be done at any time. Changing
2692
+ dot3ExtPkgOptIfLowerOutputPowerThreshold can lead to a Threshold
2693
+ Crossing Alert (TCA) being sent for the respective interface.
2694
+ This alert may be leading to an interruption of service for the
2695
+ users connected to the respective EPON interface, depending on
2696
+ the system action on such an alert.
2697
+ This object is applicable for an OLT and an ONU. At the
2698
+ OLT, it has a distinct value for each virtual interface.""",
2699
+ }, # column
2700
+ "dot3ExtPkgOptIfUpperOutputPowerThreshold" : {
2701
+ "nodetype" : "column",
2702
+ "moduleName" : "DOT3-EPON-MIB",
2703
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.11",
2704
+ "status" : "current",
2705
+ "syntax" : {
2706
+ "type" : { "module" :"", "name" : "Integer32"},
2707
+ },
2708
+ "access" : "readwrite",
2709
+ "units" : "0.1 dbm",
2710
+ "description" :
2711
+ """The upper limit threshold on output power. If
2712
+ dot3ExtPkgOptIfOutputPower reaches or exceeds this value,
2713
+ a Threshold Crossing Alert (TCA) should be sent.
2714
+ Reading will present the threshold value. Writing will
2715
+ set the value of the threshold.
2716
+ The write operation is not restricted in this document
2717
+ and can be done at any time. Changing
2718
+ dot3ExtPkgOptIfUpperOutputPowerThreshold can lead to a Threshold
2719
+ Crossing Alert (TCA) being sent for the respective interface.
2720
+ This alert may be leading to an interruption of service of the
2721
+ users connected to the respective EPON interface, depending on
2722
+ the system action on such an alert.
2723
+ This object is applicable for an OLT and an ONU. At the
2724
+ OLT, it has a distinct value for each virtual interface.""",
2725
+ }, # column
2726
+ "dot3ExtPkgOptIfSignalDetect" : {
2727
+ "nodetype" : "column",
2728
+ "moduleName" : "DOT3-EPON-MIB",
2729
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.12",
2730
+ "status" : "current",
2731
+ "syntax" : {
2732
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2733
+ },
2734
+ "access" : "readonly",
2735
+ "default" : "false",
2736
+ "description" :
2737
+ """When getting true(1), there is a valid optical signal at
2738
+ the receive that is above the optical power level for
2739
+ signal detection. When getting false(2) the optical
2740
+ signal at the receive is below the optical power level
2741
+
2742
+
2743
+
2744
+ for signal detection.
2745
+ This object is applicable for an OLT and an ONU. At the
2746
+ OLT, it has a distinct value for each virtual interface.""",
2747
+ }, # column
2748
+ "dot3ExtPkgOptIfTransmitAlarm" : {
2749
+ "nodetype" : "column",
2750
+ "moduleName" : "DOT3-EPON-MIB",
2751
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.13",
2752
+ "status" : "current",
2753
+ "syntax" : {
2754
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2755
+ },
2756
+ "access" : "readonly",
2757
+ "default" : "false",
2758
+ "description" :
2759
+ """When getting true(1) there is a non-valid optical signal
2760
+ at the transmit of the interface, either a higher level
2761
+ or lower level than expected. When getting false(2) the
2762
+ optical signal at the transmit is valid and in the
2763
+ required range.
2764
+ This object is applicable for an OLT and an ONU. At the
2765
+ OLT, it has a distinct value for each virtual interface.""",
2766
+ }, # column
2767
+ "dot3ExtPkgOptIfTransmitEnable" : {
2768
+ "nodetype" : "column",
2769
+ "moduleName" : "DOT3-EPON-MIB",
2770
+ "oid" : "1.3.6.1.2.1.155.1.4.1.5.1.14",
2771
+ "status" : "current",
2772
+ "syntax" : {
2773
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2774
+ },
2775
+ "access" : "readwrite",
2776
+ "default" : "false",
2777
+ "description" :
2778
+ """Setting this object to true(1) will cause the optical
2779
+ interface to start transmission (according to the
2780
+ control protocol specified for the logical interface).
2781
+ Setting this object to false(2) will cause the
2782
+ interface to stop the optical transmission.
2783
+ When getting true(1), the optical interface is in
2784
+ transmitting mode (obeying to the logical control
2785
+ protocol).
2786
+ When getting false(2), the optical interface is not in
2787
+ transmitting mode.
2788
+ The write operation is not restricted in this document
2789
+ and can be done at any time. Changing
2790
+ dot3ExtPkgOptIfTransmitEnable state can lead to a halt
2791
+ in the optical transmission of the respective interface
2792
+ leading to an interruption of service of the users
2793
+ connected to the respective EPON interface.
2794
+ The object is relevant when the admin state of the
2795
+ interface is active as set by the dot3MpcpAdminState.
2796
+ This object is applicable for an OLT and an ONU. At the
2797
+ OLT it, has a distinct value for each virtual interface.""",
2798
+ }, # column
2799
+ "dot3EponConformance" : {
2800
+ "nodetype" : "node",
2801
+ "moduleName" : "DOT3-EPON-MIB",
2802
+ "oid" : "1.3.6.1.2.1.155.2",
2803
+ }, # node
2804
+ "dot3EponGroups" : {
2805
+ "nodetype" : "node",
2806
+ "moduleName" : "DOT3-EPON-MIB",
2807
+ "oid" : "1.3.6.1.2.1.155.2.1",
2808
+ }, # node
2809
+ "dot3EponCompliances" : {
2810
+ "nodetype" : "node",
2811
+ "moduleName" : "DOT3-EPON-MIB",
2812
+ "oid" : "1.3.6.1.2.1.155.2.2",
2813
+ }, # node
2814
+ }, # nodes
2815
+
2816
+ "groups" : {
2817
+ "dot3MpcpGroupBase" : {
2818
+ "nodetype" : "group",
2819
+ "moduleName" : "DOT3-EPON-MIB",
2820
+ "oid" : "1.3.6.1.2.1.155.2.1.1",
2821
+ "status" : "current",
2822
+ "members" : {
2823
+ "dot3MpcpOperStatus" : {
2824
+ "nodetype" : "member",
2825
+ "module" : "DOT3-EPON-MIB"
2826
+ },
2827
+ "dot3MpcpAdminState" : {
2828
+ "nodetype" : "member",
2829
+ "module" : "DOT3-EPON-MIB"
2830
+ },
2831
+ "dot3MpcpMode" : {
2832
+ "nodetype" : "member",
2833
+ "module" : "DOT3-EPON-MIB"
2834
+ },
2835
+ "dot3MpcpSyncTime" : {
2836
+ "nodetype" : "member",
2837
+ "module" : "DOT3-EPON-MIB"
2838
+ },
2839
+ "dot3MpcpLinkID" : {
2840
+ "nodetype" : "member",
2841
+ "module" : "DOT3-EPON-MIB"
2842
+ },
2843
+ "dot3MpcpRemoteMACAddress" : {
2844
+ "nodetype" : "member",
2845
+ "module" : "DOT3-EPON-MIB"
2846
+ },
2847
+ "dot3MpcpRegistrationState" : {
2848
+ "nodetype" : "member",
2849
+ "module" : "DOT3-EPON-MIB"
2850
+ },
2851
+ "dot3MpcpMaximumPendingGrants" : {
2852
+ "nodetype" : "member",
2853
+ "module" : "DOT3-EPON-MIB"
2854
+ },
2855
+ "dot3MpcpTransmitElapsed" : {
2856
+ "nodetype" : "member",
2857
+ "module" : "DOT3-EPON-MIB"
2858
+ },
2859
+ "dot3MpcpReceiveElapsed" : {
2860
+ "nodetype" : "member",
2861
+ "module" : "DOT3-EPON-MIB"
2862
+ },
2863
+ "dot3MpcpRoundTripTime" : {
2864
+ "nodetype" : "member",
2865
+ "module" : "DOT3-EPON-MIB"
2866
+ },
2867
+ }, # members
2868
+ "description" :
2869
+ """A collection of objects of dot3 Mpcp Control entity state
2870
+ definition. Objects are per LLID.""",
2871
+ }, # group
2872
+ "dot3MpcpGroupStat" : {
2873
+ "nodetype" : "group",
2874
+ "moduleName" : "DOT3-EPON-MIB",
2875
+ "oid" : "1.3.6.1.2.1.155.2.1.2",
2876
+ "status" : "current",
2877
+ "members" : {
2878
+ "dot3MpcpMACCtrlFramesTransmitted" : {
2879
+ "nodetype" : "member",
2880
+ "module" : "DOT3-EPON-MIB"
2881
+ },
2882
+ "dot3MpcpMACCtrlFramesReceived" : {
2883
+ "nodetype" : "member",
2884
+ "module" : "DOT3-EPON-MIB"
2885
+ },
2886
+ "dot3MpcpDiscoveryWindowsSent" : {
2887
+ "nodetype" : "member",
2888
+ "module" : "DOT3-EPON-MIB"
2889
+ },
2890
+ "dot3MpcpDiscoveryTimeout" : {
2891
+ "nodetype" : "member",
2892
+ "module" : "DOT3-EPON-MIB"
2893
+ },
2894
+ "dot3MpcpTxRegRequest" : {
2895
+ "nodetype" : "member",
2896
+ "module" : "DOT3-EPON-MIB"
2897
+ },
2898
+ "dot3MpcpRxRegRequest" : {
2899
+ "nodetype" : "member",
2900
+ "module" : "DOT3-EPON-MIB"
2901
+ },
2902
+ "dot3MpcpTxRegAck" : {
2903
+ "nodetype" : "member",
2904
+ "module" : "DOT3-EPON-MIB"
2905
+ },
2906
+ "dot3MpcpRxRegAck" : {
2907
+ "nodetype" : "member",
2908
+ "module" : "DOT3-EPON-MIB"
2909
+ },
2910
+ "dot3MpcpTxReport" : {
2911
+ "nodetype" : "member",
2912
+ "module" : "DOT3-EPON-MIB"
2913
+ },
2914
+ "dot3MpcpRxReport" : {
2915
+ "nodetype" : "member",
2916
+ "module" : "DOT3-EPON-MIB"
2917
+ },
2918
+ "dot3MpcpTxGate" : {
2919
+ "nodetype" : "member",
2920
+ "module" : "DOT3-EPON-MIB"
2921
+ },
2922
+ "dot3MpcpRxGate" : {
2923
+ "nodetype" : "member",
2924
+ "module" : "DOT3-EPON-MIB"
2925
+ },
2926
+ "dot3MpcpTxRegister" : {
2927
+ "nodetype" : "member",
2928
+ "module" : "DOT3-EPON-MIB"
2929
+ },
2930
+ "dot3MpcpRxRegister" : {
2931
+ "nodetype" : "member",
2932
+ "module" : "DOT3-EPON-MIB"
2933
+ },
2934
+ }, # members
2935
+ "description" :
2936
+ """A collection of objects of dot3 Mpcp Statistics.
2937
+ Objects are per LLID.""",
2938
+ }, # group
2939
+ "dot3OmpeGroupID" : {
2940
+ "nodetype" : "group",
2941
+ "moduleName" : "DOT3-EPON-MIB",
2942
+ "oid" : "1.3.6.1.2.1.155.2.1.3",
2943
+ "status" : "current",
2944
+ "members" : {
2945
+ "dot3OmpEmulationType" : {
2946
+ "nodetype" : "member",
2947
+ "module" : "DOT3-EPON-MIB"
2948
+ },
2949
+ }, # members
2950
+ "description" :
2951
+ """A collection of objects of dot3 OMP emulation entity
2952
+ state definition. Objects are per LLID.""",
2953
+ }, # group
2954
+ "dot3OmpeGroupStat" : {
2955
+ "nodetype" : "group",
2956
+ "moduleName" : "DOT3-EPON-MIB",
2957
+ "oid" : "1.3.6.1.2.1.155.2.1.4",
2958
+ "status" : "current",
2959
+ "members" : {
2960
+ "dot3OmpEmulationSLDErrors" : {
2961
+ "nodetype" : "member",
2962
+ "module" : "DOT3-EPON-MIB"
2963
+ },
2964
+ "dot3OmpEmulationCRC8Errors" : {
2965
+ "nodetype" : "member",
2966
+ "module" : "DOT3-EPON-MIB"
2967
+ },
2968
+ "dot3OmpEmulationBadLLID" : {
2969
+ "nodetype" : "member",
2970
+ "module" : "DOT3-EPON-MIB"
2971
+ },
2972
+ "dot3OmpEmulationGoodLLID" : {
2973
+ "nodetype" : "member",
2974
+ "module" : "DOT3-EPON-MIB"
2975
+ },
2976
+ "dot3OmpEmulationOnuPonCastLLID" : {
2977
+ "nodetype" : "member",
2978
+ "module" : "DOT3-EPON-MIB"
2979
+ },
2980
+ "dot3OmpEmulationOltPonCastLLID" : {
2981
+ "nodetype" : "member",
2982
+ "module" : "DOT3-EPON-MIB"
2983
+ },
2984
+ "dot3OmpEmulationBroadcastBitNotOnuLlid" : {
2985
+ "nodetype" : "member",
2986
+ "module" : "DOT3-EPON-MIB"
2987
+ },
2988
+ "dot3OmpEmulationOnuLLIDNotBroadcast" : {
2989
+ "nodetype" : "member",
2990
+ "module" : "DOT3-EPON-MIB"
2991
+ },
2992
+ "dot3OmpEmulationBroadcastBitPlusOnuLlid" : {
2993
+ "nodetype" : "member",
2994
+ "module" : "DOT3-EPON-MIB"
2995
+ },
2996
+ "dot3OmpEmulationNotBroadcastBitNotOnuLlid" : {
2997
+ "nodetype" : "member",
2998
+ "module" : "DOT3-EPON-MIB"
2999
+ },
3000
+ }, # members
3001
+ "description" :
3002
+ """A collection of objects of dot3 OMP emulation
3003
+ Statistics. Objects are per LLID.""",
3004
+ }, # group
3005
+ "dot3EponFecGroupAll" : {
3006
+ "nodetype" : "group",
3007
+ "moduleName" : "DOT3-EPON-MIB",
3008
+ "oid" : "1.3.6.1.2.1.155.2.1.5",
3009
+ "status" : "current",
3010
+ "members" : {
3011
+ "dot3EponFecPCSCodingViolation" : {
3012
+ "nodetype" : "member",
3013
+ "module" : "DOT3-EPON-MIB"
3014
+ },
3015
+ "dot3EponFecAbility" : {
3016
+ "nodetype" : "member",
3017
+ "module" : "DOT3-EPON-MIB"
3018
+ },
3019
+ "dot3EponFecMode" : {
3020
+ "nodetype" : "member",
3021
+ "module" : "DOT3-EPON-MIB"
3022
+ },
3023
+ "dot3EponFecCorrectedBlocks" : {
3024
+ "nodetype" : "member",
3025
+ "module" : "DOT3-EPON-MIB"
3026
+ },
3027
+ "dot3EponFecUncorrectableBlocks" : {
3028
+ "nodetype" : "member",
3029
+ "module" : "DOT3-EPON-MIB"
3030
+ },
3031
+ "dot3EponFecBufferHeadCodingViolation" : {
3032
+ "nodetype" : "member",
3033
+ "module" : "DOT3-EPON-MIB"
3034
+ },
3035
+ }, # members
3036
+ "description" :
3037
+ """A collection of objects of dot3 FEC group control and
3038
+ statistics. Objects are per LLID.""",
3039
+ }, # group
3040
+ "dot3ExtPkgGroupControl" : {
3041
+ "nodetype" : "group",
3042
+ "moduleName" : "DOT3-EPON-MIB",
3043
+ "oid" : "1.3.6.1.2.1.155.2.1.6",
3044
+ "status" : "current",
3045
+ "members" : {
3046
+ "dot3ExtPkgObjectReset" : {
3047
+ "nodetype" : "member",
3048
+ "module" : "DOT3-EPON-MIB"
3049
+ },
3050
+ "dot3ExtPkgObjectPowerDown" : {
3051
+ "nodetype" : "member",
3052
+ "module" : "DOT3-EPON-MIB"
3053
+ },
3054
+ "dot3ExtPkgObjectNumberOfLLIDs" : {
3055
+ "nodetype" : "member",
3056
+ "module" : "DOT3-EPON-MIB"
3057
+ },
3058
+ "dot3ExtPkgObjectFecEnabled" : {
3059
+ "nodetype" : "member",
3060
+ "module" : "DOT3-EPON-MIB"
3061
+ },
3062
+ "dot3ExtPkgObjectReportMaximumNumQueues" : {
3063
+ "nodetype" : "member",
3064
+ "module" : "DOT3-EPON-MIB"
3065
+ },
3066
+ "dot3ExtPkgObjectRegisterAction" : {
3067
+ "nodetype" : "member",
3068
+ "module" : "DOT3-EPON-MIB"
3069
+ },
3070
+ }, # members
3071
+ "description" :
3072
+ """A collection of objects of dot3ExtPkg control
3073
+ definition. Objects are per LLID.""",
3074
+ }, # group
3075
+ "dot3ExtPkgGroupQueue" : {
3076
+ "nodetype" : "group",
3077
+ "moduleName" : "DOT3-EPON-MIB",
3078
+ "oid" : "1.3.6.1.2.1.155.2.1.7",
3079
+ "status" : "current",
3080
+ "members" : {
3081
+ "dot3ExtPkgObjectReportNumThreshold" : {
3082
+ "nodetype" : "member",
3083
+ "module" : "DOT3-EPON-MIB"
3084
+ },
3085
+ "dot3ExtPkgObjectReportMaximumNumThreshold" : {
3086
+ "nodetype" : "member",
3087
+ "module" : "DOT3-EPON-MIB"
3088
+ },
3089
+ "dot3ExtPkgStatTxFramesQueue" : {
3090
+ "nodetype" : "member",
3091
+ "module" : "DOT3-EPON-MIB"
3092
+ },
3093
+ "dot3ExtPkgStatRxFramesQueue" : {
3094
+ "nodetype" : "member",
3095
+ "module" : "DOT3-EPON-MIB"
3096
+ },
3097
+ "dot3ExtPkgStatDroppedFramesQueue" : {
3098
+ "nodetype" : "member",
3099
+ "module" : "DOT3-EPON-MIB"
3100
+ },
3101
+ }, # members
3102
+ "description" :
3103
+ """A collection of objects of dot3ExtPkg Queue
3104
+ control. Objects are per LLID, per queue.""",
3105
+ }, # group
3106
+ "dot3ExtPkgGroupQueueSets" : {
3107
+ "nodetype" : "group",
3108
+ "moduleName" : "DOT3-EPON-MIB",
3109
+ "oid" : "1.3.6.1.2.1.155.2.1.8",
3110
+ "status" : "current",
3111
+ "members" : {
3112
+ "dot3ExtPkgObjectReportThreshold" : {
3113
+ "nodetype" : "member",
3114
+ "module" : "DOT3-EPON-MIB"
3115
+ },
3116
+ }, # members
3117
+ "description" :
3118
+ """A collection of objects of dot3ExtPkg queue_set
3119
+ control. Objects are per LLID, per queue, per
3120
+ queue_set.""",
3121
+ }, # group
3122
+ "dot3ExtPkgGroupOptIf" : {
3123
+ "nodetype" : "group",
3124
+ "moduleName" : "DOT3-EPON-MIB",
3125
+ "oid" : "1.3.6.1.2.1.155.2.1.9",
3126
+ "status" : "current",
3127
+ "members" : {
3128
+ "dot3ExtPkgOptIfSuspectedFlag" : {
3129
+ "nodetype" : "member",
3130
+ "module" : "DOT3-EPON-MIB"
3131
+ },
3132
+ "dot3ExtPkgOptIfInputPower" : {
3133
+ "nodetype" : "member",
3134
+ "module" : "DOT3-EPON-MIB"
3135
+ },
3136
+ "dot3ExtPkgOptIfLowInputPower" : {
3137
+ "nodetype" : "member",
3138
+ "module" : "DOT3-EPON-MIB"
3139
+ },
3140
+ "dot3ExtPkgOptIfHighInputPower" : {
3141
+ "nodetype" : "member",
3142
+ "module" : "DOT3-EPON-MIB"
3143
+ },
3144
+ "dot3ExtPkgOptIfLowerInputPowerThreshold" : {
3145
+ "nodetype" : "member",
3146
+ "module" : "DOT3-EPON-MIB"
3147
+ },
3148
+ "dot3ExtPkgOptIfUpperInputPowerThreshold" : {
3149
+ "nodetype" : "member",
3150
+ "module" : "DOT3-EPON-MIB"
3151
+ },
3152
+ "dot3ExtPkgOptIfOutputPower" : {
3153
+ "nodetype" : "member",
3154
+ "module" : "DOT3-EPON-MIB"
3155
+ },
3156
+ "dot3ExtPkgOptIfLowOutputPower" : {
3157
+ "nodetype" : "member",
3158
+ "module" : "DOT3-EPON-MIB"
3159
+ },
3160
+ "dot3ExtPkgOptIfHighOutputPower" : {
3161
+ "nodetype" : "member",
3162
+ "module" : "DOT3-EPON-MIB"
3163
+ },
3164
+ "dot3ExtPkgOptIfLowerOutputPowerThreshold" : {
3165
+ "nodetype" : "member",
3166
+ "module" : "DOT3-EPON-MIB"
3167
+ },
3168
+ "dot3ExtPkgOptIfUpperOutputPowerThreshold" : {
3169
+ "nodetype" : "member",
3170
+ "module" : "DOT3-EPON-MIB"
3171
+ },
3172
+ "dot3ExtPkgOptIfSignalDetect" : {
3173
+ "nodetype" : "member",
3174
+ "module" : "DOT3-EPON-MIB"
3175
+ },
3176
+ "dot3ExtPkgOptIfTransmitAlarm" : {
3177
+ "nodetype" : "member",
3178
+ "module" : "DOT3-EPON-MIB"
3179
+ },
3180
+ "dot3ExtPkgOptIfTransmitEnable" : {
3181
+ "nodetype" : "member",
3182
+ "module" : "DOT3-EPON-MIB"
3183
+ },
3184
+ }, # members
3185
+ "description" :
3186
+ """A collection of objects of control and status indication
3187
+ of the optical interface.
3188
+ Objects are per LLID.""",
3189
+ }, # group
3190
+ }, # groups
3191
+
3192
+ "compliances" : {
3193
+ "dot3MPCPCompliance" : {
3194
+ "nodetype" : "compliance",
3195
+ "moduleName" : "DOT3-EPON-MIB",
3196
+ "oid" : "1.3.6.1.2.1.155.2.2.1",
3197
+ "status" : "current",
3198
+ "description" :
3199
+ """The compliance statement for Multi-Point
3200
+ Control Protocol interfaces.""",
3201
+ "requires" : {
3202
+ "dot3MpcpGroupBase" : {
3203
+ "nodetype" : "mandatory",
3204
+ "module" : "DOT3-EPON-MIB"
3205
+ },
3206
+ "dot3MpcpGroupStat" : {
3207
+ "nodetype" : "optional",
3208
+ "module" : "DOT3-EPON-MIB",
3209
+ "description" :
3210
+ """This group is mandatory for all MPCP supporting
3211
+ interfaces for statistics collection.""",
3212
+ },
3213
+ }, # requires
3214
+ }, # compliance
3215
+ "dot3OmpeCompliance" : {
3216
+ "nodetype" : "compliance",
3217
+ "moduleName" : "DOT3-EPON-MIB",
3218
+ "oid" : "1.3.6.1.2.1.155.2.2.2",
3219
+ "status" : "current",
3220
+ "description" :
3221
+ """The compliance statement for OMPEmulation
3222
+ interfaces.""",
3223
+ "requires" : {
3224
+ "dot3OmpeGroupID" : {
3225
+ "nodetype" : "mandatory",
3226
+ "module" : "DOT3-EPON-MIB"
3227
+ },
3228
+ "dot3OmpeGroupStat" : {
3229
+ "nodetype" : "optional",
3230
+ "module" : "DOT3-EPON-MIB",
3231
+ "description" :
3232
+ """This group is mandatory for all OMPemulation
3233
+ supporting interfaces for statistics collection.""",
3234
+ },
3235
+ }, # requires
3236
+ }, # compliance
3237
+ "dot3EponFecCompliance" : {
3238
+ "nodetype" : "compliance",
3239
+ "moduleName" : "DOT3-EPON-MIB",
3240
+ "oid" : "1.3.6.1.2.1.155.2.2.3",
3241
+ "status" : "current",
3242
+ "description" :
3243
+ """The compliance statement for FEC EPON interfaces.
3244
+
3245
+
3246
+
3247
+ This group is mandatory for all FEC supporting
3248
+ interfaces for control and statistics collection.""",
3249
+ "requires" : {
3250
+ "dot3EponFecGroupAll" : {
3251
+ "nodetype" : "mandatory",
3252
+ "module" : "DOT3-EPON-MIB"
3253
+ },
3254
+ }, # requires
3255
+ }, # compliance
3256
+ "dot3ExtPkgCompliance" : {
3257
+ "nodetype" : "compliance",
3258
+ "moduleName" : "DOT3-EPON-MIB",
3259
+ "oid" : "1.3.6.1.2.1.155.2.2.4",
3260
+ "status" : "current",
3261
+ "description" :
3262
+ """The compliance statement for EPON Interfaces
3263
+ using the extended package.""",
3264
+ "requires" : {
3265
+ "dot3ExtPkgGroupControl" : {
3266
+ "nodetype" : "mandatory",
3267
+ "module" : "DOT3-EPON-MIB"
3268
+ },
3269
+ "dot3ExtPkgGroupQueue" : {
3270
+ "nodetype" : "optional",
3271
+ "module" : "DOT3-EPON-MIB",
3272
+ "description" :
3273
+ """ This group is mandatory for all EPON interfaces
3274
+ supporting REPORT queue management of the extended
3275
+ package.""",
3276
+ },
3277
+ "dot3ExtPkgGroupQueueSets" : {
3278
+ "nodetype" : "optional",
3279
+ "module" : "DOT3-EPON-MIB",
3280
+ "description" :
3281
+ """ This group is mandatory for all EPON interfaces
3282
+ supporting REPORT queue_sets management of the
3283
+ extended package.""",
3284
+ },
3285
+ "dot3ExtPkgGroupOptIf" : {
3286
+ "nodetype" : "optional",
3287
+ "module" : "DOT3-EPON-MIB",
3288
+ "description" :
3289
+ """This group is mandatory for all EPON interfaces
3290
+ supporting optical interfaces management,
3291
+ of the extended package.""",
3292
+ },
3293
+ }, # requires
3294
+ }, # compliance
3295
+ }, # compliances
3296
+
3297
+ }