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,1724 @@
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 ADSL-LINE-EXT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/ADSL-LINE-EXT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "ADSL-LINE-EXT-MIB",
11
+
12
+ "ADSL-LINE-EXT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF ADSL MIB Working Group""",
17
+ "contact" :
18
+ """
19
+ Faye Ly
20
+ Pedestal Networks
21
+ 6503 Dumbarton Circle,
22
+ Fremont, CA 94555
23
+ Tel: +1 510-578-0158
24
+ Fax: +1 510-744-5152
25
+ E-Mail: faye@pedestalnetworks.com
26
+
27
+ Gregory Bathrick
28
+ Nokia Networks
29
+ 2235 Mercury Way,
30
+ Fax: +1 707-535-7300
31
+ E-Mail: greg.bathrick@nokia.com
32
+
33
+ General Discussion:adslmib@ietf.org
34
+ To Subscribe: https://www1.ietf.org/mailman/listinfo/adslmib
35
+ Archive: https://www1.ietf.org/mailman/listinfo/adslmib""",
36
+ "description" :
37
+ """Copyright (C) The Internet Society (2002). This version of
38
+ this MIB module is part of RFC 3440; see the RFC itself for
39
+ full legal notices.
40
+
41
+ This MIB Module is a supplement to the ADSL-LINE-MIB
42
+ [RFC2662].""",
43
+ "revisions" : (
44
+ {
45
+ "date" : "2002-12-10 00:00",
46
+ "description" :
47
+ """Initial Version, published as RFC 3440. This MIB
48
+ module supplements the ADSL-LINE-MIB [RFC2662].""",
49
+ },
50
+ ),
51
+ "identity node" : "adslExtMIB",
52
+ },
53
+
54
+ "imports" : (
55
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
57
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
58
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
59
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
60
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
61
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
62
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
63
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
64
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
65
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
66
+ {"module" : "ADSL-TC-MIB", "name" : "AdslPerfCurrDayCount"},
67
+ {"module" : "ADSL-TC-MIB", "name" : "AdslPerfPrevDayCount"},
68
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
69
+ {"module" : "ADSL-LINE-MIB", "name" : "adslLineAlarmConfProfileEntry"},
70
+ {"module" : "ADSL-LINE-MIB", "name" : "adslLineConfProfileEntry"},
71
+ {"module" : "ADSL-LINE-MIB", "name" : "adslAturIntervalEntry"},
72
+ {"module" : "ADSL-LINE-MIB", "name" : "adslAturPerfDataEntry"},
73
+ {"module" : "ADSL-LINE-MIB", "name" : "adslAtucIntervalEntry"},
74
+ {"module" : "ADSL-LINE-MIB", "name" : "adslAtucPerfDataEntry"},
75
+ {"module" : "ADSL-LINE-MIB", "name" : "adslLineEntry"},
76
+ {"module" : "ADSL-LINE-MIB", "name" : "adslMIB"},
77
+ ),
78
+
79
+ "typedefs" : {
80
+ "AdslTransmissionModeType" : {
81
+ "basetype" : "Bits",
82
+ "status" : "current",
83
+ "ansit1413" : {
84
+ "nodetype" : "namednumber",
85
+ "number" : "0"
86
+ },
87
+ "etsi" : {
88
+ "nodetype" : "namednumber",
89
+ "number" : "1"
90
+ },
91
+ "q9921PotsNonOverlapped" : {
92
+ "nodetype" : "namednumber",
93
+ "number" : "2"
94
+ },
95
+ "q9921PotsOverlapped" : {
96
+ "nodetype" : "namednumber",
97
+ "number" : "3"
98
+ },
99
+ "q9921IsdnNonOverlapped" : {
100
+ "nodetype" : "namednumber",
101
+ "number" : "4"
102
+ },
103
+ "q9921isdnOverlapped" : {
104
+ "nodetype" : "namednumber",
105
+ "number" : "5"
106
+ },
107
+ "q9921tcmIsdnNonOverlapped" : {
108
+ "nodetype" : "namednumber",
109
+ "number" : "6"
110
+ },
111
+ "q9921tcmIsdnOverlapped" : {
112
+ "nodetype" : "namednumber",
113
+ "number" : "7"
114
+ },
115
+ "q9922potsNonOverlapeed" : {
116
+ "nodetype" : "namednumber",
117
+ "number" : "8"
118
+ },
119
+ "q9922potsOverlapped" : {
120
+ "nodetype" : "namednumber",
121
+ "number" : "9"
122
+ },
123
+ "q9922tcmIsdnNonOverlapped" : {
124
+ "nodetype" : "namednumber",
125
+ "number" : "10"
126
+ },
127
+ "q9922tcmIsdnOverlapped" : {
128
+ "nodetype" : "namednumber",
129
+ "number" : "11"
130
+ },
131
+ "q9921tcmIsdnSymmetric" : {
132
+ "nodetype" : "namednumber",
133
+ "number" : "12"
134
+ },
135
+ "description" :
136
+ """A set of ADSL line transmission modes, with one bit
137
+ per mode. The notes (F) and (L) denote Full-Rate
138
+ and G.Lite respectively:
139
+ Bit 00 : Regional Std. (ANSI T1.413) (F)
140
+ Bit 01 : Regional Std. (ETSI DTS/TM06006) (F)
141
+ Bit 02 : G.992.1 POTS non-overlapped (F)
142
+ Bit 03 : G.992.1 POTS overlapped (F)
143
+ Bit 04 : G.992.1 ISDN non-overlapped (F)
144
+ Bit 05 : G.992.1 ISDN overlapped (F)
145
+ Bit 06 : G.992.1 TCM-ISDN non-overlapped (F)
146
+ Bit 07 : G.992.1 TCM-ISDN overlapped (F)
147
+ Bit 08 : G.992.2 POTS non-overlapped (L)
148
+ Bit 09 : G.992.2 POTS overlapped (L)
149
+ Bit 10 : G.992.2 with TCM-ISDN non-overlapped (L)
150
+ Bit 11 : G.992.2 with TCM-ISDN overlapped (L)
151
+ Bit 12 : G.992.1 TCM-ISDN symmetric (F)""",
152
+ },
153
+ }, # typedefs
154
+
155
+ "nodes" : {
156
+ "adslExtMIB" : {
157
+ "nodetype" : "node",
158
+ "moduleName" : "ADSL-LINE-EXT-MIB",
159
+ "oid" : "1.3.6.1.2.1.10.94.3",
160
+ "status" : "current",
161
+ }, # node
162
+ "adslExtMibObjects" : {
163
+ "nodetype" : "node",
164
+ "moduleName" : "ADSL-LINE-EXT-MIB",
165
+ "oid" : "1.3.6.1.2.1.10.94.3.1",
166
+ }, # node
167
+ "adslLineExtTable" : {
168
+ "nodetype" : "table",
169
+ "moduleName" : "ADSL-LINE-EXT-MIB",
170
+ "oid" : "1.3.6.1.2.1.10.94.3.1.17",
171
+ "status" : "current",
172
+ "description" :
173
+ """This table is an extension of RFC 2662. It
174
+ contains ADSL line configuration and
175
+ monitoring information. This includes the ADSL
176
+ line's capabilities and actual ADSL transmission
177
+ system.""",
178
+ }, # table
179
+ "adslLineExtEntry" : {
180
+ "nodetype" : "row",
181
+ "moduleName" : "ADSL-LINE-EXT-MIB",
182
+ "oid" : "1.3.6.1.2.1.10.94.3.1.17.1",
183
+ "status" : "current",
184
+ "linkage" : [
185
+ { "ADSL-LINE-MIB" : {
186
+ "indexkind" : "augments",
187
+ "relatedNode" : "adslLineEntry",
188
+ }},
189
+ ],
190
+ "description" :
191
+ """An entry extends the adslLineEntry defined in
192
+ [RFC2662]. Each entry corresponds to an ADSL
193
+ line.""",
194
+ }, # row
195
+ "adslLineTransAtucCap" : {
196
+ "nodetype" : "column",
197
+ "moduleName" : "ADSL-LINE-EXT-MIB",
198
+ "oid" : "1.3.6.1.2.1.10.94.3.1.17.1.1",
199
+ "status" : "current",
200
+ "syntax" : {
201
+ "type" : { "module" :"ADSL-LINE-EXT-MIB", "name" : "AdslTransmissionModeType"},
202
+ },
203
+ "access" : "readonly",
204
+ "description" :
205
+ """The transmission modes, represented by a
206
+ bitmask that the ATU-C is capable of
207
+ supporting. The modes available are limited
208
+ by the design of the equipment.""",
209
+ "reference" :
210
+ """Section 7.3.2 ITU G.997.1""",
211
+ }, # column
212
+ "adslLineTransAtucConfig" : {
213
+ "nodetype" : "column",
214
+ "moduleName" : "ADSL-LINE-EXT-MIB",
215
+ "oid" : "1.3.6.1.2.1.10.94.3.1.17.1.2",
216
+ "status" : "current",
217
+ "syntax" : {
218
+ "type" : { "module" :"ADSL-LINE-EXT-MIB", "name" : "AdslTransmissionModeType"},
219
+ },
220
+ "access" : "readwrite",
221
+ "description" :
222
+ """The transmission modes, represented by a bitmask,
223
+ currently enabled by the ATU-C. The manager can
224
+ only set those modes that are supported by the
225
+
226
+
227
+
228
+ ATU-C. An ATU-C's supported modes are provided by
229
+ AdslLineTransAtucCap.""",
230
+ "reference" :
231
+ """Section 7.3.2 ITU G.997.1""",
232
+ }, # column
233
+ "adslLineTransAtucActual" : {
234
+ "nodetype" : "column",
235
+ "moduleName" : "ADSL-LINE-EXT-MIB",
236
+ "oid" : "1.3.6.1.2.1.10.94.3.1.17.1.3",
237
+ "status" : "current",
238
+ "syntax" : {
239
+ "type" : { "module" :"ADSL-LINE-EXT-MIB", "name" : "AdslTransmissionModeType"},
240
+ },
241
+ "access" : "readonly",
242
+ "description" :
243
+ """The actual transmission mode of the ATU-C.
244
+ During ADSL line initialization, the ADSL
245
+ Transceiver Unit - Remote terminal end (ATU-R)
246
+ will determine the mode used for the link.
247
+ This value will be limited a single transmission
248
+ mode that is a subset of those modes enabled
249
+ by the ATU-C and denoted by
250
+ adslLineTransAtucConfig. After an initialization
251
+ has occurred, its mode is saved as the 'Current'
252
+ mode and is persistence should the link go
253
+ down. This object returns 0 (i.e. BITS with no
254
+ mode bit set) if the mode is not known.""",
255
+ "reference" :
256
+ """Section 7.3.2 ITU G.997.1 """,
257
+ }, # column
258
+ "adslLineGlitePowerState" : {
259
+ "nodetype" : "column",
260
+ "moduleName" : "ADSL-LINE-EXT-MIB",
261
+ "oid" : "1.3.6.1.2.1.10.94.3.1.17.1.4",
262
+ "status" : "current",
263
+ "syntax" : {
264
+ "type" : {
265
+ "basetype" : "Enumeration",
266
+ "none" : {
267
+ "nodetype" : "namednumber",
268
+ "number" : "1"
269
+ },
270
+ "l0" : {
271
+ "nodetype" : "namednumber",
272
+ "number" : "2"
273
+ },
274
+ "l1" : {
275
+ "nodetype" : "namednumber",
276
+ "number" : "3"
277
+ },
278
+ "l3" : {
279
+ "nodetype" : "namednumber",
280
+ "number" : "4"
281
+ },
282
+ },
283
+ },
284
+ "access" : "readonly",
285
+ "description" :
286
+ """The value of this object specifies the power
287
+ state of this interface. L0 is power on, L1 is
288
+ power on but reduced and L3 is power off. Power
289
+ state cannot be configured by an operator but it
290
+ can be viewed via the ifOperStatus object for the
291
+ managed ADSL interface. The value of the object
292
+ ifOperStatus is set to down(2) if the ADSL
293
+ interface is in power state L3 and is set to up(1)
294
+ if the ADSL line interface is in power state L0 or
295
+ L1. If the object adslLineTransAtucActual is set to
296
+ a G.992.2 (G.Lite)-type transmission mode, the
297
+ value of this object will be one of the valid power
298
+ states: L0(2), L1(3), or L3(4). Otherwise, its
299
+
300
+
301
+
302
+ value will be none(1).""",
303
+ }, # column
304
+ "adslLineConfProfileDualLite" : {
305
+ "nodetype" : "column",
306
+ "moduleName" : "ADSL-LINE-EXT-MIB",
307
+ "oid" : "1.3.6.1.2.1.10.94.3.1.17.1.5",
308
+ "status" : "current",
309
+ "syntax" : {
310
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
311
+ },
312
+ "access" : "readwrite",
313
+ "description" :
314
+ """This object extends the definition an ADSL line and
315
+ associated channels (when applicable) for cases
316
+ when it is configured in dual mode, and operating
317
+ in a G.Lite-type mode as denoted by
318
+ adslLineTransAtucActual. Dual mode exists when the
319
+ object, adslLineTransAtucConfig, is configured with
320
+ one or more full-rate modes and one or more G.Lite
321
+ modes simultaneously.
322
+
323
+ When 'dynamic' profiles are implemented, the value
324
+ of object is equal to the index of the applicable
325
+ row in the ADSL Line Configuration Profile Table,
326
+ AdslLineConfProfileTable defined in ADSL-MIB
327
+ [RFC2662].
328
+
329
+ In the case when dual-mode has not been enabled,
330
+ the value of the object will be equal to the value
331
+ of the object adslLineConfProfile [RFC2662].
332
+
333
+ When `static' profiles are implemented, in much
334
+ like the case of the object,
335
+ adslLineConfProfileName [RFC2662], this object's
336
+ value will need to algorithmically represent the
337
+ characteristics of the line. In this case, the
338
+ value of the line's ifIndex plus a value indicating
339
+ the line mode type (e.g., G.Lite, Full-rate) will
340
+ be used. Therefore, the profile's name is a string
341
+ concatenating the ifIndex and one of the follow
342
+ values: Full or Lite. This string will be
343
+ fixed-length (i.e., 14) with leading zero(s). For
344
+ example, the profile name for ifIndex that equals
345
+ '15' and is a full rate line, it will be
346
+ '0000000015Full'.""",
347
+ "reference" :
348
+ """Section 5.4 Profiles, RFC 2662""",
349
+ }, # column
350
+ "adslAtucPerfDataExtTable" : {
351
+ "nodetype" : "table",
352
+ "moduleName" : "ADSL-LINE-EXT-MIB",
353
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18",
354
+ "status" : "current",
355
+ "description" :
356
+ """This table extends adslAtucPerfDataTable [RFC2662]
357
+ with additional ADSL physical line counter
358
+ information such as unavailable seconds-line and
359
+ severely errored seconds-line.""",
360
+ }, # table
361
+ "adslAtucPerfDataExtEntry" : {
362
+ "nodetype" : "row",
363
+ "moduleName" : "ADSL-LINE-EXT-MIB",
364
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1",
365
+ "status" : "current",
366
+ "linkage" : [
367
+ { "ADSL-LINE-MIB" : {
368
+ "indexkind" : "augments",
369
+ "relatedNode" : "adslAtucPerfDataEntry",
370
+ }},
371
+ ],
372
+ "description" :
373
+ """An entry extends the adslAtucPerfDataEntry defined
374
+ in [RFC2662]. Each entry corresponds to an ADSL
375
+ line.""",
376
+ }, # row
377
+ "adslAtucPerfStatFastR" : {
378
+ "nodetype" : "column",
379
+ "moduleName" : "ADSL-LINE-EXT-MIB",
380
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.1",
381
+ "status" : "current",
382
+ "syntax" : {
383
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
384
+ },
385
+ "access" : "readonly",
386
+ "units" : "line retrains",
387
+ "description" :
388
+ """The value of this object reports the count of
389
+ the number of fast line bs since last
390
+ agent reset.""",
391
+ "reference" :
392
+ """ITU G.997.1 Section 7.4.15.1 """,
393
+ }, # column
394
+ "adslAtucPerfStatFailedFastR" : {
395
+ "nodetype" : "column",
396
+ "moduleName" : "ADSL-LINE-EXT-MIB",
397
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.2",
398
+ "status" : "current",
399
+ "syntax" : {
400
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
401
+ },
402
+ "access" : "readonly",
403
+ "units" : "line retrains",
404
+ "description" :
405
+ """The value of this object reports the count of
406
+ the number of failed fast line retrains since
407
+ last agent reset.""",
408
+ "reference" :
409
+ """ITU G.997.1 Section 7.4.15.2 """,
410
+ }, # column
411
+ "adslAtucPerfStatSesL" : {
412
+ "nodetype" : "column",
413
+ "moduleName" : "ADSL-LINE-EXT-MIB",
414
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.3",
415
+ "status" : "current",
416
+ "syntax" : {
417
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
418
+ },
419
+ "access" : "readonly",
420
+ "units" : "seconds",
421
+ "description" :
422
+ """The value of this object reports the count of
423
+ the number of severely errored seconds-line since
424
+ last agent reset.""",
425
+ "reference" :
426
+ """ITU G.997.1 Section 7.2.1.1.7 """,
427
+ }, # column
428
+ "adslAtucPerfStatUasL" : {
429
+ "nodetype" : "column",
430
+ "moduleName" : "ADSL-LINE-EXT-MIB",
431
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.4",
432
+ "status" : "current",
433
+ "syntax" : {
434
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
435
+ },
436
+ "access" : "readonly",
437
+ "units" : "seconds",
438
+ "description" :
439
+ """The value of this object reports the count of
440
+ the number of unavailable seconds-line since
441
+ last agent reset.""",
442
+ "reference" :
443
+ """ITU G.997.1 Section 7.2.1.1.9 """,
444
+ }, # column
445
+ "adslAtucPerfCurr15MinFastR" : {
446
+ "nodetype" : "column",
447
+ "moduleName" : "ADSL-LINE-EXT-MIB",
448
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.5",
449
+ "status" : "current",
450
+ "syntax" : {
451
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
452
+ },
453
+ "access" : "readonly",
454
+ "units" : "seconds",
455
+ "description" :
456
+ """For the current 15-minute interval,
457
+ adslAtucPerfCurr15MinFastR reports the current
458
+ number of seconds during which there have been
459
+
460
+
461
+
462
+ fast retrains.""",
463
+ "reference" :
464
+ """ITU G.997.1 Section 7.4.15.1 """,
465
+ }, # column
466
+ "adslAtucPerfCurr15MinFailedFastR" : {
467
+ "nodetype" : "column",
468
+ "moduleName" : "ADSL-LINE-EXT-MIB",
469
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.6",
470
+ "status" : "current",
471
+ "syntax" : {
472
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
473
+ },
474
+ "access" : "readonly",
475
+ "units" : "seconds",
476
+ "description" :
477
+ """For the current 15-minute interval,
478
+ adslAtucPerfCurr15MinFailedFastR reports the
479
+ current number of seconds during which there
480
+ have been failed fast retrains.""",
481
+ "reference" :
482
+ """ITU G.997.1 Section 7.4.15.2 """,
483
+ }, # column
484
+ "adslAtucPerfCurr15MinSesL" : {
485
+ "nodetype" : "column",
486
+ "moduleName" : "ADSL-LINE-EXT-MIB",
487
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.7",
488
+ "status" : "current",
489
+ "syntax" : {
490
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
491
+ },
492
+ "access" : "readonly",
493
+ "units" : "seconds",
494
+ "description" :
495
+ """For the current 15-minute interval,
496
+ adslAtucPerfCurr15MinSesL reports the current
497
+ number of seconds during which there have been
498
+ severely errored seconds-line.""",
499
+ "reference" :
500
+ """ITU G.997.1 Section 7.2.1.1.7 """,
501
+ }, # column
502
+ "adslAtucPerfCurr15MinUasL" : {
503
+ "nodetype" : "column",
504
+ "moduleName" : "ADSL-LINE-EXT-MIB",
505
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.8",
506
+ "status" : "current",
507
+ "syntax" : {
508
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
509
+ },
510
+ "access" : "readonly",
511
+ "units" : "seconds",
512
+ "description" :
513
+ """For the current 15-minute interval,
514
+ adslAtucPerfCurr15MinUasL reports the current
515
+ number of seconds during which there have been
516
+ unavailable seconds-line.""",
517
+ "reference" :
518
+ """ITU G.997.1 Section 7.2.1.1.9 """,
519
+ }, # column
520
+ "adslAtucPerfCurr1DayFastR" : {
521
+ "nodetype" : "column",
522
+ "moduleName" : "ADSL-LINE-EXT-MIB",
523
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.9",
524
+ "status" : "current",
525
+ "syntax" : {
526
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfCurrDayCount"},
527
+ },
528
+ "access" : "readonly",
529
+ "units" : "seconds",
530
+ "description" :
531
+ """For the current day as measured by
532
+ adslAtucPerfCurr1DayTimeElapsed [RFC2662],
533
+ adslAtucPerfCurr1DayFastR reports the number
534
+ of seconds during which there have been
535
+ fast retrains.""",
536
+ "reference" :
537
+ """ITU G.997.1 Section 7.4.15.1 """,
538
+ }, # column
539
+ "adslAtucPerfCurr1DayFailedFastR" : {
540
+ "nodetype" : "column",
541
+ "moduleName" : "ADSL-LINE-EXT-MIB",
542
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.10",
543
+ "status" : "current",
544
+ "syntax" : {
545
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfCurrDayCount"},
546
+ },
547
+ "access" : "readonly",
548
+ "units" : "seconds",
549
+ "description" :
550
+ """For the current day as measured by
551
+ adslAtucPerfCurr1DayTimeElapsed [RFC2662],
552
+ adslAtucPerfCurr1DayFailedFastR reports the
553
+ number of seconds during which there have been
554
+ failed fast retrains.""",
555
+ "reference" :
556
+ """ITU G.997.1 Section 7.4.15.2 """,
557
+ }, # column
558
+ "adslAtucPerfCurr1DaySesL" : {
559
+ "nodetype" : "column",
560
+ "moduleName" : "ADSL-LINE-EXT-MIB",
561
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.11",
562
+ "status" : "current",
563
+ "syntax" : {
564
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfCurrDayCount"},
565
+ },
566
+ "access" : "readonly",
567
+ "units" : "seconds",
568
+ "description" :
569
+ """For the current day as measured by
570
+ adslAtucPerfCurr1DayTimeElapsed [RFC2662],
571
+ adslAtucPerfCurr1DaySesL reports the
572
+ number of seconds during which there have been
573
+ severely errored seconds-line.""",
574
+ "reference" :
575
+ """ITU G.997.1 Section 7.2.1.1.7 """,
576
+ }, # column
577
+ "adslAtucPerfCurr1DayUasL" : {
578
+ "nodetype" : "column",
579
+ "moduleName" : "ADSL-LINE-EXT-MIB",
580
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.12",
581
+ "status" : "current",
582
+ "syntax" : {
583
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfCurrDayCount"},
584
+ },
585
+ "access" : "readonly",
586
+ "units" : "seconds",
587
+ "description" :
588
+ """For the current day as measured by
589
+ adslAtucPerfCurr1DayTimeElapsed [RFC2662],
590
+ adslAtucPerfCurr1DayUasL reports the
591
+ number of seconds during which there have been
592
+ unavailable seconds-line.""",
593
+ "reference" :
594
+ """ITU G.997.1 Section 7.2.1.1.9 """,
595
+ }, # column
596
+ "adslAtucPerfPrev1DayFastR" : {
597
+ "nodetype" : "column",
598
+ "moduleName" : "ADSL-LINE-EXT-MIB",
599
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.13",
600
+ "status" : "current",
601
+ "syntax" : {
602
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfPrevDayCount"},
603
+ },
604
+ "access" : "readonly",
605
+ "units" : "seconds",
606
+ "description" :
607
+ """For the previous day, adslAtucPerfPrev1DayFastR
608
+ reports the number of seconds during which there
609
+ were fast retrains.""",
610
+ "reference" :
611
+ """ITU G.997.1 Section 7.4.15.1 """,
612
+ }, # column
613
+ "adslAtucPerfPrev1DayFailedFastR" : {
614
+ "nodetype" : "column",
615
+ "moduleName" : "ADSL-LINE-EXT-MIB",
616
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.14",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfPrevDayCount"},
620
+ },
621
+ "access" : "readonly",
622
+ "units" : "seconds",
623
+ "description" :
624
+ """For the previous day,
625
+ adslAtucPerfPrev1DayFailedFastR reports the number
626
+ of seconds during which there were failed fast
627
+ retrains.""",
628
+ "reference" :
629
+ """ITU G.997.1 Section 7.4.15.2 """,
630
+ }, # column
631
+ "adslAtucPerfPrev1DaySesL" : {
632
+ "nodetype" : "column",
633
+ "moduleName" : "ADSL-LINE-EXT-MIB",
634
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.15",
635
+ "status" : "current",
636
+ "syntax" : {
637
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfPrevDayCount"},
638
+ },
639
+ "access" : "readonly",
640
+ "units" : "seconds",
641
+ "description" :
642
+ """For the previous day, adslAtucPerfPrev1DaySesL
643
+ reports the number of seconds during which there
644
+ were severely errored seconds-line.""",
645
+ "reference" :
646
+ """ITU G.997.1 Section 7.2.1.1.7 """,
647
+ }, # column
648
+ "adslAtucPerfPrev1DayUasL" : {
649
+ "nodetype" : "column",
650
+ "moduleName" : "ADSL-LINE-EXT-MIB",
651
+ "oid" : "1.3.6.1.2.1.10.94.3.1.18.1.16",
652
+ "status" : "current",
653
+ "syntax" : {
654
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfPrevDayCount"},
655
+ },
656
+ "access" : "readonly",
657
+ "units" : "seconds",
658
+ "description" :
659
+ """For the previous day, adslAtucPerfPrev1DayUasL
660
+ reports the number of seconds during which there
661
+
662
+
663
+
664
+ were unavailable seconds-line.""",
665
+ "reference" :
666
+ """ITU G.997.1 Section 7.2.1.1.9 """,
667
+ }, # column
668
+ "adslAtucIntervalExtTable" : {
669
+ "nodetype" : "table",
670
+ "moduleName" : "ADSL-LINE-EXT-MIB",
671
+ "oid" : "1.3.6.1.2.1.10.94.3.1.19",
672
+ "status" : "current",
673
+ "description" :
674
+ """This table provides one row for each ATU-C
675
+ performance data collection interval for
676
+ ADSL physical interfaces whose
677
+ IfEntries' ifType is equal to adsl(94).""",
678
+ }, # table
679
+ "adslAtucIntervalExtEntry" : {
680
+ "nodetype" : "row",
681
+ "moduleName" : "ADSL-LINE-EXT-MIB",
682
+ "oid" : "1.3.6.1.2.1.10.94.3.1.19.1",
683
+ "status" : "current",
684
+ "linkage" : [
685
+ { "ADSL-LINE-MIB" : {
686
+ "indexkind" : "augments",
687
+ "relatedNode" : "adslAtucIntervalEntry",
688
+ }},
689
+ ],
690
+ "description" :
691
+ """An entry in the
692
+ adslAtucIntervalExtTable.""",
693
+ }, # row
694
+ "adslAtucIntervalFastR" : {
695
+ "nodetype" : "column",
696
+ "moduleName" : "ADSL-LINE-EXT-MIB",
697
+ "oid" : "1.3.6.1.2.1.10.94.3.1.19.1.1",
698
+ "status" : "current",
699
+ "syntax" : {
700
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
701
+ },
702
+ "access" : "readonly",
703
+ "units" : "seconds",
704
+ "description" :
705
+ """For the current interval, adslAtucIntervalFastR
706
+ reports the current number of seconds during which
707
+ there have been fast retrains.""",
708
+ }, # column
709
+ "adslAtucIntervalFailedFastR" : {
710
+ "nodetype" : "column",
711
+ "moduleName" : "ADSL-LINE-EXT-MIB",
712
+ "oid" : "1.3.6.1.2.1.10.94.3.1.19.1.2",
713
+ "status" : "current",
714
+ "syntax" : {
715
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
716
+ },
717
+ "access" : "readonly",
718
+ "units" : "seconds",
719
+ "description" :
720
+ """For the each interval, adslAtucIntervalFailedFastR
721
+ reports the number of seconds during which
722
+ there have been failed fast retrains.""",
723
+ }, # column
724
+ "adslAtucIntervalSesL" : {
725
+ "nodetype" : "column",
726
+ "moduleName" : "ADSL-LINE-EXT-MIB",
727
+ "oid" : "1.3.6.1.2.1.10.94.3.1.19.1.3",
728
+ "status" : "current",
729
+ "syntax" : {
730
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
731
+ },
732
+ "access" : "readonly",
733
+ "units" : "seconds",
734
+ "description" :
735
+ """For the each interval, adslAtucIntervalSesL
736
+ reports the number of seconds during which
737
+ there have been severely errored seconds-line.""",
738
+ }, # column
739
+ "adslAtucIntervalUasL" : {
740
+ "nodetype" : "column",
741
+ "moduleName" : "ADSL-LINE-EXT-MIB",
742
+ "oid" : "1.3.6.1.2.1.10.94.3.1.19.1.4",
743
+ "status" : "current",
744
+ "syntax" : {
745
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
746
+ },
747
+ "access" : "readonly",
748
+ "units" : "seconds",
749
+ "description" :
750
+ """For the each interval, adslAtucIntervalUasL
751
+ reports the number of seconds during which
752
+ there have been unavailable seconds-line.""",
753
+ }, # column
754
+ "adslAturPerfDataExtTable" : {
755
+ "nodetype" : "table",
756
+ "moduleName" : "ADSL-LINE-EXT-MIB",
757
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20",
758
+ "status" : "current",
759
+ "description" :
760
+ """This table contains ADSL physical line counters
761
+ not defined in the adslAturPerfDataTable
762
+ from the ADSL-LINE-MIB [RFC2662].""",
763
+ }, # table
764
+ "adslAturPerfDataExtEntry" : {
765
+ "nodetype" : "row",
766
+ "moduleName" : "ADSL-LINE-EXT-MIB",
767
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1",
768
+ "status" : "current",
769
+ "linkage" : [
770
+ { "ADSL-LINE-MIB" : {
771
+ "indexkind" : "augments",
772
+ "relatedNode" : "adslAturPerfDataEntry",
773
+ }},
774
+ ],
775
+ "description" :
776
+ """An entry extends the adslAturPerfDataEntry defined
777
+ in [RFC2662]. Each entry corresponds to an ADSL
778
+ line.""",
779
+ }, # row
780
+ "adslAturPerfStatSesL" : {
781
+ "nodetype" : "column",
782
+ "moduleName" : "ADSL-LINE-EXT-MIB",
783
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1.1",
784
+ "status" : "current",
785
+ "syntax" : {
786
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
787
+ },
788
+ "access" : "readonly",
789
+ "units" : "seconds",
790
+ "description" :
791
+ """The value of this object reports the count of
792
+ severely errored second-line since the last agent
793
+ reset.""",
794
+ "reference" :
795
+ """ITU G.997.1 Section 7.2.1.1.7 """,
796
+ }, # column
797
+ "adslAturPerfStatUasL" : {
798
+ "nodetype" : "column",
799
+ "moduleName" : "ADSL-LINE-EXT-MIB",
800
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1.2",
801
+ "status" : "current",
802
+ "syntax" : {
803
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
804
+ },
805
+ "access" : "readonly",
806
+ "units" : "seconds",
807
+ "description" :
808
+ """The value of this object reports the count of
809
+ unavailable seconds-line since the last agent
810
+ reset.""",
811
+ "reference" :
812
+ """ITU G.997.1 Section 7.2.1.2.9 """,
813
+ }, # column
814
+ "adslAturPerfCurr15MinSesL" : {
815
+ "nodetype" : "column",
816
+ "moduleName" : "ADSL-LINE-EXT-MIB",
817
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1.3",
818
+ "status" : "current",
819
+ "syntax" : {
820
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
821
+ },
822
+ "access" : "readonly",
823
+ "units" : "seconds",
824
+ "description" :
825
+ """For the current 15-minute interval,
826
+ adslAturPerfCurr15MinSesL reports the current
827
+ number of seconds during which there have been
828
+ severely errored seconds-line.""",
829
+ "reference" :
830
+ """ITU G.997.1 Section 7.2.1.2.7 """,
831
+ }, # column
832
+ "adslAturPerfCurr15MinUasL" : {
833
+ "nodetype" : "column",
834
+ "moduleName" : "ADSL-LINE-EXT-MIB",
835
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1.4",
836
+ "status" : "current",
837
+ "syntax" : {
838
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
839
+ },
840
+ "access" : "readonly",
841
+ "units" : "seconds",
842
+ "description" :
843
+ """For the current 15-minute interval,
844
+ adslAturPerfCurr15MinUasL reports the current
845
+ number of seconds during which there have been
846
+ available seconds-line.""",
847
+ "reference" :
848
+ """ITU G.997.1 Section 7.2.1.2.9 """,
849
+ }, # column
850
+ "adslAturPerfCurr1DaySesL" : {
851
+ "nodetype" : "column",
852
+ "moduleName" : "ADSL-LINE-EXT-MIB",
853
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1.5",
854
+ "status" : "current",
855
+ "syntax" : {
856
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfCurrDayCount"},
857
+ },
858
+ "access" : "readonly",
859
+ "units" : "seconds",
860
+ "description" :
861
+ """For the current day as measured by
862
+ adslAturPerfCurr1DayTimeElapsed [RFC2662],
863
+ adslAturPerfCurr1DaySesL reports the
864
+ number of seconds during which there have been
865
+ severely errored seconds-line.""",
866
+ "reference" :
867
+ """ITU G.997.1 Section 7.2.1.2.7 """,
868
+ }, # column
869
+ "adslAturPerfCurr1DayUasL" : {
870
+ "nodetype" : "column",
871
+ "moduleName" : "ADSL-LINE-EXT-MIB",
872
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1.6",
873
+ "status" : "current",
874
+ "syntax" : {
875
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfCurrDayCount"},
876
+ },
877
+ "access" : "readonly",
878
+ "units" : "seconds",
879
+ "description" :
880
+ """For the current day as measured by
881
+ adslAturPerfCurr1DayTimeElapsed [RFC2662],
882
+ adslAturPerfCurr1DayUasL reports the
883
+ number of seconds during which there have been
884
+ unavailable seconds-line.""",
885
+ "reference" :
886
+ """ITU G.997.1 Section 7.2.1.2.9 """,
887
+ }, # column
888
+ "adslAturPerfPrev1DaySesL" : {
889
+ "nodetype" : "column",
890
+ "moduleName" : "ADSL-LINE-EXT-MIB",
891
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1.7",
892
+ "status" : "current",
893
+ "syntax" : {
894
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfPrevDayCount"},
895
+ },
896
+ "access" : "readonly",
897
+ "units" : "seconds",
898
+ "description" :
899
+ """For the previous day, adslAturPerfPrev1DaySesL
900
+ reports the number of seconds during which there
901
+ were severely errored seconds-line.""",
902
+ "reference" :
903
+ """ITU G.997.1 Section 7.2.1.2.7 """,
904
+ }, # column
905
+ "adslAturPerfPrev1DayUasL" : {
906
+ "nodetype" : "column",
907
+ "moduleName" : "ADSL-LINE-EXT-MIB",
908
+ "oid" : "1.3.6.1.2.1.10.94.3.1.20.1.8",
909
+ "status" : "current",
910
+ "syntax" : {
911
+ "type" : { "module" :"ADSL-TC-MIB", "name" : "AdslPerfPrevDayCount"},
912
+ },
913
+ "access" : "readonly",
914
+ "units" : "seconds",
915
+ "description" :
916
+ """For the previous day, adslAturPerfPrev1DayUasL
917
+ reports the number of seconds during which there
918
+ were severely errored seconds-line.""",
919
+ "reference" :
920
+ """ITU G.997.1 Section 7.2.1.2.9 """,
921
+ }, # column
922
+ "adslAturIntervalExtTable" : {
923
+ "nodetype" : "table",
924
+ "moduleName" : "ADSL-LINE-EXT-MIB",
925
+ "oid" : "1.3.6.1.2.1.10.94.3.1.21",
926
+ "status" : "current",
927
+ "description" :
928
+ """This table provides one row for each ATU-R
929
+ performance data collection interval for
930
+ ADSL physical interfaces whose
931
+ IfEntries' ifType is equal to adsl(94).""",
932
+ }, # table
933
+ "adslAturIntervalExtEntry" : {
934
+ "nodetype" : "row",
935
+ "moduleName" : "ADSL-LINE-EXT-MIB",
936
+ "oid" : "1.3.6.1.2.1.10.94.3.1.21.1",
937
+ "status" : "current",
938
+ "linkage" : [
939
+ { "ADSL-LINE-MIB" : {
940
+ "indexkind" : "augments",
941
+ "relatedNode" : "adslAturIntervalEntry",
942
+ }},
943
+ ],
944
+ "description" :
945
+ """An entry in the
946
+ adslAturIntervalExtTable.""",
947
+ }, # row
948
+ "adslAturIntervalSesL" : {
949
+ "nodetype" : "column",
950
+ "moduleName" : "ADSL-LINE-EXT-MIB",
951
+ "oid" : "1.3.6.1.2.1.10.94.3.1.21.1.1",
952
+ "status" : "current",
953
+ "syntax" : {
954
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
955
+ },
956
+ "access" : "readonly",
957
+ "units" : "seconds",
958
+ "description" :
959
+ """For the each interval, adslAturIntervalSesL
960
+ reports the number of seconds during which
961
+ there have been severely errored seconds-line.""",
962
+ }, # column
963
+ "adslAturIntervalUasL" : {
964
+ "nodetype" : "column",
965
+ "moduleName" : "ADSL-LINE-EXT-MIB",
966
+ "oid" : "1.3.6.1.2.1.10.94.3.1.21.1.2",
967
+ "status" : "current",
968
+ "syntax" : {
969
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
970
+ },
971
+ "access" : "readonly",
972
+ "units" : "seconds",
973
+ "description" :
974
+ """For the each interval, adslAturIntervalUasL
975
+ reports the number of seconds during which
976
+ there have been unavailable seconds-line.""",
977
+ }, # column
978
+ "adslConfProfileExtTable" : {
979
+ "nodetype" : "table",
980
+ "moduleName" : "ADSL-LINE-EXT-MIB",
981
+ "oid" : "1.3.6.1.2.1.10.94.3.1.22",
982
+ "status" : "current",
983
+ "description" :
984
+ """The adslConfProfileExtTable extends the ADSL line
985
+ profile configuration information in the
986
+ adslLineConfProfileTable from the ADSL-LINE-MIB
987
+ [RFC2662] by adding the ability to configure the
988
+ ADSL physical line mode.""",
989
+ }, # table
990
+ "adslConfProfileExtEntry" : {
991
+ "nodetype" : "row",
992
+ "moduleName" : "ADSL-LINE-EXT-MIB",
993
+ "oid" : "1.3.6.1.2.1.10.94.3.1.22.1",
994
+ "create" : "true",
995
+ "status" : "current",
996
+ "linkage" : [
997
+ { "ADSL-LINE-MIB" : {
998
+ "indexkind" : "augments",
999
+ "relatedNode" : "adslLineConfProfileEntry",
1000
+ }},
1001
+ ],
1002
+ "description" :
1003
+ """An entry extends the adslLineConfProfileEntry
1004
+ defined in [RFC2662]. Each entry corresponds to an
1005
+ ADSL line profile.""",
1006
+ }, # row
1007
+ "adslConfProfileLineType" : {
1008
+ "nodetype" : "column",
1009
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1010
+ "oid" : "1.3.6.1.2.1.10.94.3.1.22.1.1",
1011
+ "status" : "current",
1012
+ "syntax" : {
1013
+ "type" : {
1014
+ "basetype" : "Enumeration",
1015
+ "noChannel" : {
1016
+ "nodetype" : "namednumber",
1017
+ "number" : "1"
1018
+ },
1019
+ "fastOnly" : {
1020
+ "nodetype" : "namednumber",
1021
+ "number" : "2"
1022
+ },
1023
+ "interleavedOnly" : {
1024
+ "nodetype" : "namednumber",
1025
+ "number" : "3"
1026
+ },
1027
+ "fastOrInterleaved" : {
1028
+ "nodetype" : "namednumber",
1029
+ "number" : "4"
1030
+ },
1031
+ "fastAndInterleaved" : {
1032
+ "nodetype" : "namednumber",
1033
+ "number" : "5"
1034
+ },
1035
+ },
1036
+ },
1037
+ "access" : "readwrite",
1038
+ "default" : "fastOnly",
1039
+ "description" :
1040
+ """This object is used to configure the ADSL physical
1041
+ line mode. It has following valid values:
1042
+
1043
+ noChannel(1), when no channels exist.
1044
+ fastOnly(2), when only fast channel exists.
1045
+ interleavedOnly(3), when only interleaved channel
1046
+ exist.
1047
+ fastOrInterleaved(4), when either fast or
1048
+ interleaved channels can exist, but only one
1049
+ at any time.
1050
+ fastAndInterleaved(5), when both the fast channel
1051
+ and the interleaved channel exist.
1052
+
1053
+ In the case when no value has been set, the default
1054
+ Value is noChannel(1).""",
1055
+ }, # column
1056
+ "adslAlarmConfProfileExtTable" : {
1057
+ "nodetype" : "table",
1058
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1059
+ "oid" : "1.3.6.1.2.1.10.94.3.1.23",
1060
+ "status" : "current",
1061
+ "description" :
1062
+ """This table extends the
1063
+ adslLineAlarmConfProfileTable and provides
1064
+ threshold parameters for all the counters defined
1065
+ in this MIB module.""",
1066
+ }, # table
1067
+ "adslAlarmConfProfileExtEntry" : {
1068
+ "nodetype" : "row",
1069
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1070
+ "oid" : "1.3.6.1.2.1.10.94.3.1.23.1",
1071
+ "create" : "true",
1072
+ "status" : "current",
1073
+ "linkage" : [
1074
+ { "ADSL-LINE-MIB" : {
1075
+ "indexkind" : "augments",
1076
+ "relatedNode" : "adslLineAlarmConfProfileEntry",
1077
+ }},
1078
+ ],
1079
+ "description" :
1080
+ """An entry extends the adslLineAlarmConfProfileTable
1081
+ defined in [RFC2662]. Each entry corresponds to
1082
+ an ADSL alarm profile.""",
1083
+ }, # row
1084
+ "adslAtucThreshold15MinFailedFastR" : {
1085
+ "nodetype" : "column",
1086
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1087
+ "oid" : "1.3.6.1.2.1.10.94.3.1.23.1.1",
1088
+ "status" : "current",
1089
+ "syntax" : {
1090
+ "type" : {
1091
+ "basetype" : "Integer32",
1092
+ "ranges" : [
1093
+ {
1094
+ "min" : "0",
1095
+ "max" : "900"
1096
+ },
1097
+ ],
1098
+ "range" : {
1099
+ "min" : "0",
1100
+ "max" : "900"
1101
+ },
1102
+ },
1103
+ },
1104
+ "access" : "readwrite",
1105
+ "default" : "0",
1106
+ "units" : "seconds",
1107
+ "description" :
1108
+ """The first time the value of the corresponding
1109
+ instance of adslAtucPerfCurr15MinFailedFastR
1110
+ reaches or exceeds this value within a given
1111
+ 15-minute performance data collection period,
1112
+ an adslAtucFailedFastRThreshTrap notification
1113
+ will be generated. The value '0' will disable
1114
+ the notification. The default value of this
1115
+ object is '0'.""",
1116
+ }, # column
1117
+ "adslAtucThreshold15MinSesL" : {
1118
+ "nodetype" : "column",
1119
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1120
+ "oid" : "1.3.6.1.2.1.10.94.3.1.23.1.2",
1121
+ "status" : "current",
1122
+ "syntax" : {
1123
+ "type" : {
1124
+ "basetype" : "Integer32",
1125
+ "ranges" : [
1126
+ {
1127
+ "min" : "0",
1128
+ "max" : "900"
1129
+ },
1130
+ ],
1131
+ "range" : {
1132
+ "min" : "0",
1133
+ "max" : "900"
1134
+ },
1135
+ },
1136
+ },
1137
+ "access" : "readwrite",
1138
+ "default" : "0",
1139
+ "units" : "seconds",
1140
+ "description" :
1141
+ """The first time the value of the corresponding
1142
+ instance of adslAtucPerf15MinSesL reaches or
1143
+ exceeds this value within a given 15-minute
1144
+ performance data collection period, an
1145
+ adslAtucSesLThreshTrap notification will be
1146
+ generated. The value '0' will disable the
1147
+ notification. The default value of this
1148
+ object is '0'.""",
1149
+ }, # column
1150
+ "adslAtucThreshold15MinUasL" : {
1151
+ "nodetype" : "column",
1152
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1153
+ "oid" : "1.3.6.1.2.1.10.94.3.1.23.1.3",
1154
+ "status" : "current",
1155
+ "syntax" : {
1156
+ "type" : {
1157
+ "basetype" : "Integer32",
1158
+ "ranges" : [
1159
+ {
1160
+ "min" : "0",
1161
+ "max" : "900"
1162
+ },
1163
+ ],
1164
+ "range" : {
1165
+ "min" : "0",
1166
+ "max" : "900"
1167
+ },
1168
+ },
1169
+ },
1170
+ "access" : "readwrite",
1171
+ "default" : "0",
1172
+ "units" : "seconds",
1173
+ "description" :
1174
+ """The first time the value of the corresponding
1175
+ instance of adslAtucPerf15MinUasL reaches or
1176
+ exceeds this value within a given 15-minute
1177
+ performance data collection period, an
1178
+ adslAtucUasLThreshTrap notification will be
1179
+ generated. The value '0' will disable the
1180
+ notification. The default value of this
1181
+ object is '0'.""",
1182
+ }, # column
1183
+ "adslAturThreshold15MinSesL" : {
1184
+ "nodetype" : "column",
1185
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1186
+ "oid" : "1.3.6.1.2.1.10.94.3.1.23.1.4",
1187
+ "status" : "current",
1188
+ "syntax" : {
1189
+ "type" : {
1190
+ "basetype" : "Integer32",
1191
+ "ranges" : [
1192
+ {
1193
+ "min" : "0",
1194
+ "max" : "900"
1195
+ },
1196
+ ],
1197
+ "range" : {
1198
+ "min" : "0",
1199
+ "max" : "900"
1200
+ },
1201
+ },
1202
+ },
1203
+ "access" : "readwrite",
1204
+ "default" : "0",
1205
+ "units" : "seconds",
1206
+ "description" :
1207
+ """The first time the value of the corresponding
1208
+ instance of adslAturPerf15MinSesL reaches or
1209
+ exceeds this value within a given 15-minute
1210
+ performance data collection period, an
1211
+ adslAturSesLThreshTrap notification will be
1212
+ generated. The value '0' will disable the
1213
+ notification. The default value of this
1214
+ object is '0'.""",
1215
+ }, # column
1216
+ "adslAturThreshold15MinUasL" : {
1217
+ "nodetype" : "column",
1218
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1219
+ "oid" : "1.3.6.1.2.1.10.94.3.1.23.1.5",
1220
+ "status" : "current",
1221
+ "syntax" : {
1222
+ "type" : {
1223
+ "basetype" : "Integer32",
1224
+ "ranges" : [
1225
+ {
1226
+ "min" : "0",
1227
+ "max" : "900"
1228
+ },
1229
+ ],
1230
+ "range" : {
1231
+ "min" : "0",
1232
+ "max" : "900"
1233
+ },
1234
+ },
1235
+ },
1236
+ "access" : "readwrite",
1237
+ "default" : "0",
1238
+ "units" : "seconds",
1239
+ "description" :
1240
+ """The first time the value of the corresponding
1241
+ instance of adslAturPerf15MinUasL reaches or
1242
+ exceeds this value within a given 15-minute
1243
+ performance data collection period, an
1244
+
1245
+
1246
+
1247
+ adslAturUasLThreshTrap notification will be
1248
+ generated. The value '0' will disable the
1249
+ notification. The default value of this
1250
+ object is '0'.""",
1251
+ }, # column
1252
+ "adslExtTraps" : {
1253
+ "nodetype" : "node",
1254
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1255
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24",
1256
+ }, # node
1257
+ "adslExtAtucTraps" : {
1258
+ "nodetype" : "node",
1259
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1260
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.1",
1261
+ }, # node
1262
+ "adslExtAtucTrapsPrefix" : {
1263
+ "nodetype" : "node",
1264
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1265
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.1.0",
1266
+ }, # node
1267
+ "adslExtAturTraps" : {
1268
+ "nodetype" : "node",
1269
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1270
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.2",
1271
+ }, # node
1272
+ "adslExtAturTrapsPrefix" : {
1273
+ "nodetype" : "node",
1274
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1275
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.2.0",
1276
+ }, # node
1277
+ "adslExtConformance" : {
1278
+ "nodetype" : "node",
1279
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1280
+ "oid" : "1.3.6.1.2.1.10.94.3.2",
1281
+ }, # node
1282
+ "adslExtGroups" : {
1283
+ "nodetype" : "node",
1284
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1285
+ "oid" : "1.3.6.1.2.1.10.94.3.2.1",
1286
+ }, # node
1287
+ "adslExtCompliances" : {
1288
+ "nodetype" : "node",
1289
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1290
+ "oid" : "1.3.6.1.2.1.10.94.3.2.2",
1291
+ }, # node
1292
+ }, # nodes
1293
+
1294
+ "notifications" : {
1295
+ "adslAtucFailedFastRThreshTrap" : {
1296
+ "nodetype" : "notification",
1297
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1298
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.1.0.1",
1299
+ "status" : "current",
1300
+ "objects" : {
1301
+ "adslAtucPerfCurr15MinFailedFastR" : {
1302
+ "nodetype" : "object",
1303
+ "module" : "ADSL-LINE-EXT-MIB"
1304
+ },
1305
+ },
1306
+ "description" :
1307
+ """Failed Fast Retrains 15-minute threshold reached.""",
1308
+ }, # notification
1309
+ "adslAtucSesLThreshTrap" : {
1310
+ "nodetype" : "notification",
1311
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1312
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.1.0.2",
1313
+ "status" : "current",
1314
+ "objects" : {
1315
+ "adslAtucPerfCurr15MinSesL" : {
1316
+ "nodetype" : "object",
1317
+ "module" : "ADSL-LINE-EXT-MIB"
1318
+ },
1319
+ },
1320
+ "description" :
1321
+ """Severely errored seconds-line 15-minute threshold
1322
+ reached.""",
1323
+ }, # notification
1324
+ "adslAtucUasLThreshTrap" : {
1325
+ "nodetype" : "notification",
1326
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1327
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.1.0.3",
1328
+ "status" : "current",
1329
+ "objects" : {
1330
+ "adslAtucPerfCurr15MinUasL" : {
1331
+ "nodetype" : "object",
1332
+ "module" : "ADSL-LINE-EXT-MIB"
1333
+ },
1334
+ },
1335
+ "description" :
1336
+ """Unavailable seconds-line 15-minute threshold
1337
+ reached.""",
1338
+ }, # notification
1339
+ "adslAturSesLThreshTrap" : {
1340
+ "nodetype" : "notification",
1341
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1342
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.2.0.1",
1343
+ "status" : "current",
1344
+ "objects" : {
1345
+ "adslAturPerfCurr15MinSesL" : {
1346
+ "nodetype" : "object",
1347
+ "module" : "ADSL-LINE-EXT-MIB"
1348
+ },
1349
+ },
1350
+ "description" :
1351
+ """Severely errored seconds-line 15-minute threshold
1352
+ reached.""",
1353
+ }, # notification
1354
+ "adslAturUasLThreshTrap" : {
1355
+ "nodetype" : "notification",
1356
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1357
+ "oid" : "1.3.6.1.2.1.10.94.3.1.24.2.0.2",
1358
+ "status" : "current",
1359
+ "objects" : {
1360
+ "adslAturPerfCurr15MinUasL" : {
1361
+ "nodetype" : "object",
1362
+ "module" : "ADSL-LINE-EXT-MIB"
1363
+ },
1364
+ },
1365
+ "description" :
1366
+ """Unavailable seconds-line 15-minute threshold
1367
+ reached.""",
1368
+ }, # notification
1369
+ }, # notifications
1370
+
1371
+ "groups" : {
1372
+ "adslExtLineGroup" : {
1373
+ "nodetype" : "group",
1374
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1375
+ "oid" : "1.3.6.1.2.1.10.94.3.2.1.1",
1376
+ "status" : "current",
1377
+ "members" : {
1378
+ "adslLineConfProfileDualLite" : {
1379
+ "nodetype" : "member",
1380
+ "module" : "ADSL-LINE-EXT-MIB"
1381
+ },
1382
+ "adslLineTransAtucCap" : {
1383
+ "nodetype" : "member",
1384
+ "module" : "ADSL-LINE-EXT-MIB"
1385
+ },
1386
+ "adslLineTransAtucConfig" : {
1387
+ "nodetype" : "member",
1388
+ "module" : "ADSL-LINE-EXT-MIB"
1389
+ },
1390
+ "adslLineTransAtucActual" : {
1391
+ "nodetype" : "member",
1392
+ "module" : "ADSL-LINE-EXT-MIB"
1393
+ },
1394
+ "adslLineGlitePowerState" : {
1395
+ "nodetype" : "member",
1396
+ "module" : "ADSL-LINE-EXT-MIB"
1397
+ },
1398
+ }, # members
1399
+ "description" :
1400
+ """A collection of objects providing extended
1401
+ configuration information about an ADSL Line.""",
1402
+ }, # group
1403
+ "adslExtAtucPhysPerfCounterGroup" : {
1404
+ "nodetype" : "group",
1405
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1406
+ "oid" : "1.3.6.1.2.1.10.94.3.2.1.2",
1407
+ "status" : "current",
1408
+ "members" : {
1409
+ "adslAtucPerfStatFastR" : {
1410
+ "nodetype" : "member",
1411
+ "module" : "ADSL-LINE-EXT-MIB"
1412
+ },
1413
+ "adslAtucPerfStatFailedFastR" : {
1414
+ "nodetype" : "member",
1415
+ "module" : "ADSL-LINE-EXT-MIB"
1416
+ },
1417
+ "adslAtucPerfCurr15MinFastR" : {
1418
+ "nodetype" : "member",
1419
+ "module" : "ADSL-LINE-EXT-MIB"
1420
+ },
1421
+ "adslAtucPerfCurr15MinFailedFastR" : {
1422
+ "nodetype" : "member",
1423
+ "module" : "ADSL-LINE-EXT-MIB"
1424
+ },
1425
+ "adslAtucPerfCurr1DayFastR" : {
1426
+ "nodetype" : "member",
1427
+ "module" : "ADSL-LINE-EXT-MIB"
1428
+ },
1429
+ "adslAtucPerfCurr1DayFailedFastR" : {
1430
+ "nodetype" : "member",
1431
+ "module" : "ADSL-LINE-EXT-MIB"
1432
+ },
1433
+ "adslAtucPerfPrev1DayFastR" : {
1434
+ "nodetype" : "member",
1435
+ "module" : "ADSL-LINE-EXT-MIB"
1436
+ },
1437
+ "adslAtucPerfPrev1DayFailedFastR" : {
1438
+ "nodetype" : "member",
1439
+ "module" : "ADSL-LINE-EXT-MIB"
1440
+ },
1441
+ "adslAtucPerfStatSesL" : {
1442
+ "nodetype" : "member",
1443
+ "module" : "ADSL-LINE-EXT-MIB"
1444
+ },
1445
+ "adslAtucPerfStatUasL" : {
1446
+ "nodetype" : "member",
1447
+ "module" : "ADSL-LINE-EXT-MIB"
1448
+ },
1449
+ "adslAtucPerfCurr15MinSesL" : {
1450
+ "nodetype" : "member",
1451
+ "module" : "ADSL-LINE-EXT-MIB"
1452
+ },
1453
+ "adslAtucPerfCurr15MinUasL" : {
1454
+ "nodetype" : "member",
1455
+ "module" : "ADSL-LINE-EXT-MIB"
1456
+ },
1457
+ "adslAtucPerfCurr1DaySesL" : {
1458
+ "nodetype" : "member",
1459
+ "module" : "ADSL-LINE-EXT-MIB"
1460
+ },
1461
+ "adslAtucPerfCurr1DayUasL" : {
1462
+ "nodetype" : "member",
1463
+ "module" : "ADSL-LINE-EXT-MIB"
1464
+ },
1465
+ "adslAtucPerfPrev1DaySesL" : {
1466
+ "nodetype" : "member",
1467
+ "module" : "ADSL-LINE-EXT-MIB"
1468
+ },
1469
+ "adslAtucPerfPrev1DayUasL" : {
1470
+ "nodetype" : "member",
1471
+ "module" : "ADSL-LINE-EXT-MIB"
1472
+ },
1473
+ "adslAtucIntervalFastR" : {
1474
+ "nodetype" : "member",
1475
+ "module" : "ADSL-LINE-EXT-MIB"
1476
+ },
1477
+ "adslAtucIntervalFailedFastR" : {
1478
+ "nodetype" : "member",
1479
+ "module" : "ADSL-LINE-EXT-MIB"
1480
+ },
1481
+ "adslAtucIntervalSesL" : {
1482
+ "nodetype" : "member",
1483
+ "module" : "ADSL-LINE-EXT-MIB"
1484
+ },
1485
+ "adslAtucIntervalUasL" : {
1486
+ "nodetype" : "member",
1487
+ "module" : "ADSL-LINE-EXT-MIB"
1488
+ },
1489
+ }, # members
1490
+ "description" :
1491
+ """A collection of objects providing raw performance
1492
+ counts on an ADSL Line (ATU-C end).""",
1493
+ }, # group
1494
+ "adslExtAturPhysPerfCounterGroup" : {
1495
+ "nodetype" : "group",
1496
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1497
+ "oid" : "1.3.6.1.2.1.10.94.3.2.1.3",
1498
+ "status" : "current",
1499
+ "members" : {
1500
+ "adslAturPerfStatSesL" : {
1501
+ "nodetype" : "member",
1502
+ "module" : "ADSL-LINE-EXT-MIB"
1503
+ },
1504
+ "adslAturPerfStatUasL" : {
1505
+ "nodetype" : "member",
1506
+ "module" : "ADSL-LINE-EXT-MIB"
1507
+ },
1508
+ "adslAturPerfCurr15MinSesL" : {
1509
+ "nodetype" : "member",
1510
+ "module" : "ADSL-LINE-EXT-MIB"
1511
+ },
1512
+ "adslAturPerfCurr15MinUasL" : {
1513
+ "nodetype" : "member",
1514
+ "module" : "ADSL-LINE-EXT-MIB"
1515
+ },
1516
+ "adslAturPerfCurr1DaySesL" : {
1517
+ "nodetype" : "member",
1518
+ "module" : "ADSL-LINE-EXT-MIB"
1519
+ },
1520
+ "adslAturPerfCurr1DayUasL" : {
1521
+ "nodetype" : "member",
1522
+ "module" : "ADSL-LINE-EXT-MIB"
1523
+ },
1524
+ "adslAturPerfPrev1DaySesL" : {
1525
+ "nodetype" : "member",
1526
+ "module" : "ADSL-LINE-EXT-MIB"
1527
+ },
1528
+ "adslAturPerfPrev1DayUasL" : {
1529
+ "nodetype" : "member",
1530
+ "module" : "ADSL-LINE-EXT-MIB"
1531
+ },
1532
+ "adslAturIntervalSesL" : {
1533
+ "nodetype" : "member",
1534
+ "module" : "ADSL-LINE-EXT-MIB"
1535
+ },
1536
+ "adslAturIntervalUasL" : {
1537
+ "nodetype" : "member",
1538
+ "module" : "ADSL-LINE-EXT-MIB"
1539
+ },
1540
+ }, # members
1541
+ "description" :
1542
+ """A collection of objects providing raw performance
1543
+ counts on an ADSL Line (ATU-C end).""",
1544
+ }, # group
1545
+ "adslExtLineConfProfileControlGroup" : {
1546
+ "nodetype" : "group",
1547
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1548
+ "oid" : "1.3.6.1.2.1.10.94.3.2.1.4",
1549
+ "status" : "current",
1550
+ "members" : {
1551
+ "adslConfProfileLineType" : {
1552
+ "nodetype" : "member",
1553
+ "module" : "ADSL-LINE-EXT-MIB"
1554
+ },
1555
+ }, # members
1556
+ "description" :
1557
+ """A collection of objects providing profile
1558
+ control for the ADSL system.""",
1559
+ }, # group
1560
+ "adslExtLineAlarmConfProfileGroup" : {
1561
+ "nodetype" : "group",
1562
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1563
+ "oid" : "1.3.6.1.2.1.10.94.3.2.1.5",
1564
+ "status" : "current",
1565
+ "members" : {
1566
+ "adslAtucThreshold15MinFailedFastR" : {
1567
+ "nodetype" : "member",
1568
+ "module" : "ADSL-LINE-EXT-MIB"
1569
+ },
1570
+ "adslAtucThreshold15MinSesL" : {
1571
+ "nodetype" : "member",
1572
+ "module" : "ADSL-LINE-EXT-MIB"
1573
+ },
1574
+ "adslAtucThreshold15MinUasL" : {
1575
+ "nodetype" : "member",
1576
+ "module" : "ADSL-LINE-EXT-MIB"
1577
+ },
1578
+ "adslAturThreshold15MinSesL" : {
1579
+ "nodetype" : "member",
1580
+ "module" : "ADSL-LINE-EXT-MIB"
1581
+ },
1582
+ "adslAturThreshold15MinUasL" : {
1583
+ "nodetype" : "member",
1584
+ "module" : "ADSL-LINE-EXT-MIB"
1585
+ },
1586
+ }, # members
1587
+ "description" :
1588
+ """A collection of objects providing alarm profile
1589
+ control for the ADSL system.""",
1590
+ }, # group
1591
+ "adslExtNotificationsGroup" : {
1592
+ "nodetype" : "group",
1593
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1594
+ "oid" : "1.3.6.1.2.1.10.94.3.2.1.6",
1595
+ "status" : "current",
1596
+ "members" : {
1597
+ "adslAtucFailedFastRThreshTrap" : {
1598
+ "nodetype" : "member",
1599
+ "module" : "ADSL-LINE-EXT-MIB"
1600
+ },
1601
+ "adslAtucSesLThreshTrap" : {
1602
+ "nodetype" : "member",
1603
+ "module" : "ADSL-LINE-EXT-MIB"
1604
+ },
1605
+ "adslAtucUasLThreshTrap" : {
1606
+ "nodetype" : "member",
1607
+ "module" : "ADSL-LINE-EXT-MIB"
1608
+ },
1609
+ "adslAturSesLThreshTrap" : {
1610
+ "nodetype" : "member",
1611
+ "module" : "ADSL-LINE-EXT-MIB"
1612
+ },
1613
+ "adslAturUasLThreshTrap" : {
1614
+ "nodetype" : "member",
1615
+ "module" : "ADSL-LINE-EXT-MIB"
1616
+ },
1617
+ }, # members
1618
+ "description" :
1619
+ """The collection of ADSL extension notifications.""",
1620
+ }, # group
1621
+ }, # groups
1622
+
1623
+ "compliances" : {
1624
+ "adslExtLineMibAtucCompliance" : {
1625
+ "nodetype" : "compliance",
1626
+ "moduleName" : "ADSL-LINE-EXT-MIB",
1627
+ "oid" : "1.3.6.1.2.1.10.94.3.2.2.1",
1628
+ "status" : "current",
1629
+ "description" :
1630
+ """The compliance statement for SNMP entities which
1631
+ represent ADSL ATU-C interfaces.""",
1632
+ "requires" : {
1633
+ "adslExtLineGroup" : {
1634
+ "nodetype" : "mandatory",
1635
+ "module" : "ADSL-LINE-EXT-MIB"
1636
+ },
1637
+ "adslExtLineConfProfileControlGroup" : {
1638
+ "nodetype" : "mandatory",
1639
+ "module" : "ADSL-LINE-EXT-MIB"
1640
+ },
1641
+ "adslExtLineAlarmConfProfileGroup" : {
1642
+ "nodetype" : "mandatory",
1643
+ "module" : "ADSL-LINE-EXT-MIB"
1644
+ },
1645
+ "adslExtAtucPhysPerfCounterGroup" : {
1646
+ "nodetype" : "optional",
1647
+ "module" : "ADSL-LINE-EXT-MIB",
1648
+ "description" :
1649
+ """This group is optional. Implementations which
1650
+ require continuous ATU-C physical event counters
1651
+ should implement this group.""",
1652
+ },
1653
+ "adslExtAturPhysPerfCounterGroup" : {
1654
+ "nodetype" : "optional",
1655
+ "module" : "ADSL-LINE-EXT-MIB",
1656
+ "description" :
1657
+ """This group is optional. Implementations which
1658
+ require continuous ATU-R physical event counters
1659
+ should implement this group.""",
1660
+ },
1661
+ "adslExtNotificationsGroup" : {
1662
+ "nodetype" : "optional",
1663
+ "module" : "ADSL-LINE-EXT-MIB",
1664
+ "description" :
1665
+ """This group is optional. Implementations which
1666
+ support TCA (Threshold Crossing Alert) should
1667
+ implement this group.""",
1668
+ },
1669
+ }, # requires
1670
+ "refinements" : {
1671
+ "adslAtucThreshold15MinFailedFastR" : {
1672
+ "module" : "ADSL-LINE-EXT-MIB",
1673
+ "access" : "readwrite",
1674
+ "description" :
1675
+ """Read-write access is applicable only when
1676
+ static profiles as defined in ADSL Line MIB
1677
+ [RFC2662] are implemented.""",
1678
+ },
1679
+ "adslAtucThreshold15MinSesL" : {
1680
+ "module" : "ADSL-LINE-EXT-MIB",
1681
+ "access" : "readwrite",
1682
+ "description" :
1683
+ """Read-write access is applicable only when
1684
+ static profiles as defined in ADSL Line MIB
1685
+ [RFC2662] are implemented.""",
1686
+ },
1687
+ "adslAtucThreshold15MinUasL" : {
1688
+ "module" : "ADSL-LINE-EXT-MIB",
1689
+ "access" : "readwrite",
1690
+ "description" :
1691
+ """Read-write access is applicable only when
1692
+ static profiles as defined in ADSL Line MIB
1693
+ [RFC2662] are implemented.""",
1694
+ },
1695
+ "adslAturThreshold15MinSesL" : {
1696
+ "module" : "ADSL-LINE-EXT-MIB",
1697
+ "access" : "readwrite",
1698
+ "description" :
1699
+ """Read-write access is applicable only when
1700
+ static profiles as defined in ADSL Line MIB
1701
+ [RFC2662] are implemented.""",
1702
+ },
1703
+ "adslAturThreshold15MinUasL" : {
1704
+ "module" : "ADSL-LINE-EXT-MIB",
1705
+ "access" : "readwrite",
1706
+ "description" :
1707
+ """Read-write access is applicable only when
1708
+ static profiles as defined in ADSL Line MIB
1709
+ [RFC2662] are implemented.""",
1710
+ },
1711
+ "adslLineConfProfileDualLite" : {
1712
+ "module" : "ADSL-LINE-EXT-MIB",
1713
+ "access" : "readonly",
1714
+ "description" :
1715
+ """Read-only access is applicable only when
1716
+ static profiles as defined in ADSL Line MIB
1717
+ [RFC2662] are implemented.""",
1718
+ },
1719
+ }, # refinements
1720
+
1721
+ }, # compliance
1722
+ }, # compliances
1723
+
1724
+ }