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,4518 @@
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 VDSL-LINE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/VDSL-LINE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "VDSL-LINE-MIB",
11
+
12
+ "VDSL-LINE-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """ADSLMIB Working Group""",
17
+ "contact" :
18
+ """WG-email: adslmib@ietf.org
19
+ Info: https://www1.ietf.org/mailman/listinfo/adslmib
20
+
21
+ Chair: Mike Sneed
22
+ Sand Channel Systems
23
+ Postal: P.O. Box 37324
24
+ Raleigh, NC 27627-7324
25
+ USA
26
+ Email: sneedmike@hotmail.com
27
+ Phone: +1 206 600 7022
28
+
29
+ Co-editor: Bob Ray
30
+ PESA Switching Systems, Inc.
31
+ Postal: 330-A Wynn Drive
32
+ Huntsville, AL 35805
33
+ USA
34
+ Email: rray@pesa.com
35
+ Phone: +1 256 726 9200 ext. 142
36
+
37
+ Co-editor: Rajesh Abbi
38
+ Alcatel USA
39
+ Postal: 2301 Sugar Bush Road
40
+ Raleigh, NC 27612-3339
41
+ USA
42
+ Email: Rajesh.Abbi@alcatel.com
43
+ Phone: +1 919 850 6194""",
44
+ "description" :
45
+ """The MIB module defining objects for the management of a pair
46
+ of VDSL transceivers at each end of the VDSL line. Each such
47
+ line has an entry in an ifTable which may include multiple
48
+ transceiver lines. An agent may reside at either end of the
49
+ VDSL line. However, the MIB is designed to require no
50
+ management communication between them beyond that inherent in
51
+ the low-level VDSL line protocol. The agent may monitor and
52
+ control this protocol for its needs.
53
+
54
+
55
+
56
+ VDSL lines may support optional Fast or Interleaved channels.
57
+ If these are supported, additional entries corresponding to the
58
+ supported channels must be created in the ifTable. Thus a VDSL
59
+ line that supports both channels will have three entries in the
60
+ ifTable, one for each physical, fast, and interleaved, whose
61
+ ifType values are equal to vdsl(97), fast(125), and
62
+ interleaved(124), respectively. The ifStackTable is used to
63
+ represent the relationship between the entries.
64
+
65
+ Naming Conventions:
66
+ Vtuc -- (VTUC) transceiver at near (Central) end of line
67
+ Vtur -- (VTUR) transceiver at Remote end of line
68
+ Vtu -- One of either Vtuc or Vtur
69
+ Curr -- Current
70
+ Prev -- Previous
71
+ Atn -- Attenuation
72
+ ES -- Errored Second.
73
+ SES -- Severely Errored Second
74
+ UAS -- Unavailable Second
75
+ LCS -- Line Code Specific
76
+ Lof -- Loss of Frame
77
+ Lol -- Loss of Link
78
+ Los -- Loss of Signal
79
+ Lpr -- Loss of Power
80
+ xxxs -- Sum of Seconds in which xxx has occured
81
+ (e.g., xxx = Lof, Los, Lpr, Lol)
82
+ Max -- Maximum
83
+ Mgn -- Margin
84
+ Min -- Minimum
85
+ Psd -- Power Spectral Density
86
+ Snr -- Signal to Noise Ratio
87
+ Tx -- Transmit
88
+ Blks -- Blocks
89
+
90
+ Copyright (C) The Internet Society (2004). This version
91
+ of this MIB module is part of RFC 3728: see the RFC
92
+ itself for full legal notices.""",
93
+ "revisions" : (
94
+ {
95
+ "date" : "2004-02-19 00:00",
96
+ "description" :
97
+ """Initial version, published as RFC 3728.""",
98
+ },
99
+ ),
100
+ "identity node" : "vdslMIB",
101
+ },
102
+
103
+ "imports" : (
104
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
105
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
106
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
107
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
108
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
109
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
110
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
111
+ {"module" : "HCNUM-TC", "name" : "ZeroBasedCounter64"},
112
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
113
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
114
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
115
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
116
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfInvalidIntervals"},
117
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
118
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalThreshold"},
119
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
120
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
121
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
122
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
123
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
124
+ {"module" : "IF-MIB", "name" : "ifIndex"},
125
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
126
+ ),
127
+
128
+ "typedefs" : {
129
+ "VdslLineCodingType" : {
130
+ "basetype" : "Enumeration",
131
+ "status" : "current",
132
+ "other" : {
133
+ "nodetype" : "namednumber",
134
+ "number" : "1"
135
+ },
136
+ "mcm" : {
137
+ "nodetype" : "namednumber",
138
+ "number" : "2"
139
+ },
140
+ "scm" : {
141
+ "nodetype" : "namednumber",
142
+ "number" : "3"
143
+ },
144
+ "description" :
145
+ """This data type is used as the syntax for the VDSL Line
146
+ Code. Attributes with this syntax identify the line coding
147
+ used. Specified as an INTEGER, the three values are:
148
+
149
+ other(1) -- none of the following
150
+ mcm(2) -- Multiple Carrier Modulation
151
+ scm(3) -- Single Carrier Modulation""",
152
+ },
153
+ "VdslLineEntity" : {
154
+ "basetype" : "Enumeration",
155
+ "status" : "current",
156
+ "vtuc" : {
157
+ "nodetype" : "namednumber",
158
+ "number" : "1"
159
+ },
160
+ "vtur" : {
161
+ "nodetype" : "namednumber",
162
+ "number" : "2"
163
+ },
164
+ "description" :
165
+ """Identifies a transceiver as being either Vtuc or Vtur.
166
+ A VDSL line consists of two transceivers, a Vtuc and a
167
+ Vtur. Attributes with this syntax reference the two sides
168
+ of a line. Specified as an INTEGER, the two values are:
169
+
170
+ vtuc(1) -- central site transceiver
171
+ vtur(2) -- remote site transceiver""",
172
+ },
173
+ }, # typedefs
174
+
175
+ "nodes" : {
176
+ "vdslMIB" : {
177
+ "nodetype" : "node",
178
+ "moduleName" : "VDSL-LINE-MIB",
179
+ "oid" : "1.3.6.1.2.1.10.97",
180
+ "status" : "current",
181
+ }, # node
182
+ "vdslLineMib" : {
183
+ "nodetype" : "node",
184
+ "moduleName" : "VDSL-LINE-MIB",
185
+ "oid" : "1.3.6.1.2.1.10.97.1",
186
+ }, # node
187
+ "vdslNotifications" : {
188
+ "nodetype" : "node",
189
+ "moduleName" : "VDSL-LINE-MIB",
190
+ "oid" : "1.3.6.1.2.1.10.97.1.0",
191
+ }, # node
192
+ "vdslMibObjects" : {
193
+ "nodetype" : "node",
194
+ "moduleName" : "VDSL-LINE-MIB",
195
+ "oid" : "1.3.6.1.2.1.10.97.1.1",
196
+ }, # node
197
+ "vdslLineTable" : {
198
+ "nodetype" : "table",
199
+ "moduleName" : "VDSL-LINE-MIB",
200
+ "oid" : "1.3.6.1.2.1.10.97.1.1.1",
201
+ "status" : "current",
202
+ "description" :
203
+ """This table includes common attributes describing
204
+ both ends of the line. It is required for all VDSL
205
+ physical interfaces. VDSL physical interfaces are
206
+ those ifEntries where ifType is equal to vdsl(97).""",
207
+ }, # table
208
+ "vdslLineEntry" : {
209
+ "nodetype" : "row",
210
+ "moduleName" : "VDSL-LINE-MIB",
211
+ "oid" : "1.3.6.1.2.1.10.97.1.1.1.1",
212
+ "status" : "current",
213
+ "linkage" : [
214
+ "ifIndex",
215
+ ],
216
+ "description" :
217
+ """An entry in the vdslLineTable.""",
218
+ }, # row
219
+ "vdslLineCoding" : {
220
+ "nodetype" : "column",
221
+ "moduleName" : "VDSL-LINE-MIB",
222
+ "oid" : "1.3.6.1.2.1.10.97.1.1.1.1.1",
223
+ "status" : "current",
224
+ "syntax" : {
225
+ "type" : { "module" :"VDSL-LINE-MIB", "name" : "VdslLineCodingType"},
226
+ },
227
+ "access" : "readonly",
228
+ "description" :
229
+ """Specifies the VDSL coding type used on this line.""",
230
+ "reference" :
231
+ """T1E1.4/2000-009R3, Part 1, common spec""",
232
+ }, # column
233
+ "vdslLineType" : {
234
+ "nodetype" : "column",
235
+ "moduleName" : "VDSL-LINE-MIB",
236
+ "oid" : "1.3.6.1.2.1.10.97.1.1.1.1.2",
237
+ "status" : "current",
238
+ "syntax" : {
239
+ "type" : {
240
+ "basetype" : "Enumeration",
241
+ "noChannel" : {
242
+ "nodetype" : "namednumber",
243
+ "number" : "1"
244
+ },
245
+ "fastOnly" : {
246
+ "nodetype" : "namednumber",
247
+ "number" : "2"
248
+ },
249
+ "interleavedOnly" : {
250
+ "nodetype" : "namednumber",
251
+ "number" : "3"
252
+ },
253
+ "fastOrInterleaved" : {
254
+ "nodetype" : "namednumber",
255
+ "number" : "4"
256
+ },
257
+ "fastAndInterleaved" : {
258
+ "nodetype" : "namednumber",
259
+ "number" : "5"
260
+ },
261
+ },
262
+ },
263
+ "access" : "readonly",
264
+ "description" :
265
+ """Defines the type of VDSL physical line entity that exists,
266
+ by defining whether and how the line is channelized. If
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+
276
+ the line is channelized, the value will be other than
277
+ noChannel(1). This object defines which channel type(s)
278
+ are supported. Defined values are:
279
+
280
+ noChannel(1) -- no channels exist
281
+ fastOnly(2) -- only fast channel exists
282
+ interleavedOnly(3) -- only interleaved channel exists
283
+ fastOrInterleaved(4) -- either fast or interleaved channel
284
+ -- exist, but only one at a time
285
+ fastAndInterleaved(5) -- both fast and interleaved channels
286
+ -- exist
287
+
288
+ Note that 'slow' and 'interleaved' refer to the same
289
+ channel. In the case that the line is channelized, the
290
+ manager can use the ifStackTable to determine the ifIndex
291
+ for the associated channel(s).""",
292
+ "reference" :
293
+ """T1E1.4/2000-009R3, Part 1, common spec""",
294
+ }, # column
295
+ "vdslLineConfProfile" : {
296
+ "nodetype" : "column",
297
+ "moduleName" : "VDSL-LINE-MIB",
298
+ "oid" : "1.3.6.1.2.1.10.97.1.1.1.1.3",
299
+ "status" : "current",
300
+ "syntax" : {
301
+ "type" : {
302
+ "basetype" : "OctetString",
303
+ "parent module" : {
304
+ "name" : "SNMP-FRAMEWORK-MIB",
305
+ "type" : "SnmpAdminString",
306
+ },
307
+ "ranges" : [
308
+ {
309
+ "min" : "1",
310
+ "max" : "32"
311
+ },
312
+ ],
313
+ "range" : {
314
+ "min" : "1",
315
+ "max" : "32"
316
+ },
317
+ },
318
+ },
319
+ "access" : "readwrite",
320
+ "default" : "DEFVAL",
321
+ "description" :
322
+ """The value of this object identifies the row in the VDSL
323
+ Line Configuration Profile Table, vdslLineConfProfileTable,
324
+ which applies for this VDSL line, and channels if
325
+ applicable.
326
+
327
+ This object MUST be maintained in a persistent manner.""",
328
+ }, # column
329
+ "vdslLineAlarmConfProfile" : {
330
+ "nodetype" : "column",
331
+ "moduleName" : "VDSL-LINE-MIB",
332
+ "oid" : "1.3.6.1.2.1.10.97.1.1.1.1.4",
333
+ "status" : "current",
334
+ "syntax" : {
335
+ "type" : {
336
+ "basetype" : "OctetString",
337
+ "parent module" : {
338
+ "name" : "SNMP-FRAMEWORK-MIB",
339
+ "type" : "SnmpAdminString",
340
+ },
341
+ "ranges" : [
342
+ {
343
+ "min" : "1",
344
+ "max" : "32"
345
+ },
346
+ ],
347
+ "range" : {
348
+ "min" : "1",
349
+ "max" : "32"
350
+ },
351
+ },
352
+ },
353
+ "access" : "readwrite",
354
+ "default" : "DEFVAL",
355
+ "description" :
356
+ """The value of this object identifies the row in the VDSL
357
+ Line Alarm Configuration Profile Table,
358
+ vdslLineAlarmConfProfileTable, which applies to this
359
+ VDSL line, and channels if applicable.
360
+
361
+ This object MUST be maintained in a persistent manner.""",
362
+ }, # column
363
+ "vdslPhysTable" : {
364
+ "nodetype" : "table",
365
+ "moduleName" : "VDSL-LINE-MIB",
366
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2",
367
+ "status" : "current",
368
+ "description" :
369
+ """This table provides one row for each Vtu. Each row
370
+ contains the Physical Layer Parameters table for that
371
+ Vtu. VDSL physical interfaces are those ifEntries where
372
+ ifType is equal to vdsl(97).""",
373
+ }, # table
374
+ "vdslPhysEntry" : {
375
+ "nodetype" : "row",
376
+ "moduleName" : "VDSL-LINE-MIB",
377
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1",
378
+ "status" : "current",
379
+ "linkage" : [
380
+ "ifIndex",
381
+ "vdslPhysSide",
382
+ ],
383
+ "description" :
384
+ """An entry in the vdslPhysTable.""",
385
+ }, # row
386
+ "vdslPhysSide" : {
387
+ "nodetype" : "column",
388
+ "moduleName" : "VDSL-LINE-MIB",
389
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.1",
390
+ "status" : "current",
391
+ "syntax" : {
392
+ "type" : { "module" :"VDSL-LINE-MIB", "name" : "VdslLineEntity"},
393
+ },
394
+ "access" : "noaccess",
395
+ "description" :
396
+ """Identifies whether the transceiver is the Vtuc or Vtur.""",
397
+ }, # column
398
+ "vdslPhysInvSerialNumber" : {
399
+ "nodetype" : "column",
400
+ "moduleName" : "VDSL-LINE-MIB",
401
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.2",
402
+ "status" : "current",
403
+ "syntax" : {
404
+ "type" : {
405
+ "basetype" : "OctetString",
406
+ "parent module" : {
407
+ "name" : "SNMP-FRAMEWORK-MIB",
408
+ "type" : "SnmpAdminString",
409
+ },
410
+ "ranges" : [
411
+ {
412
+ "min" : "0",
413
+ "max" : "32"
414
+ },
415
+ ],
416
+ "range" : {
417
+ "min" : "0",
418
+ "max" : "32"
419
+ },
420
+ },
421
+ },
422
+ "access" : "readonly",
423
+ "description" :
424
+ """The vendor specific string that identifies the
425
+
426
+
427
+
428
+ vendor equipment.""",
429
+ "reference" :
430
+ """T1E1.4/2000-009R3, Part 1, common spec""",
431
+ }, # column
432
+ "vdslPhysInvVendorID" : {
433
+ "nodetype" : "column",
434
+ "moduleName" : "VDSL-LINE-MIB",
435
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.3",
436
+ "status" : "current",
437
+ "syntax" : {
438
+ "type" : {
439
+ "basetype" : "OctetString",
440
+ "parent module" : {
441
+ "name" : "SNMP-FRAMEWORK-MIB",
442
+ "type" : "SnmpAdminString",
443
+ },
444
+ "ranges" : [
445
+ {
446
+ "min" : "0",
447
+ "max" : "16"
448
+ },
449
+ ],
450
+ "range" : {
451
+ "min" : "0",
452
+ "max" : "16"
453
+ },
454
+ },
455
+ },
456
+ "access" : "readonly",
457
+ "description" :
458
+ """The vendor ID code is a copy of the binary vendor
459
+ identification field expressed as readable characters
460
+ in hexadecimal notation.""",
461
+ "reference" :
462
+ """T1E1.4/2000-009R3, Part 1, common spec""",
463
+ }, # column
464
+ "vdslPhysInvVersionNumber" : {
465
+ "nodetype" : "column",
466
+ "moduleName" : "VDSL-LINE-MIB",
467
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.4",
468
+ "status" : "current",
469
+ "syntax" : {
470
+ "type" : {
471
+ "basetype" : "OctetString",
472
+ "parent module" : {
473
+ "name" : "SNMP-FRAMEWORK-MIB",
474
+ "type" : "SnmpAdminString",
475
+ },
476
+ "ranges" : [
477
+ {
478
+ "min" : "0",
479
+ "max" : "16"
480
+ },
481
+ ],
482
+ "range" : {
483
+ "min" : "0",
484
+ "max" : "16"
485
+ },
486
+ },
487
+ },
488
+ "access" : "readonly",
489
+ "description" :
490
+ """The vendor specific version number sent by this Vtu
491
+ as part of the initialization messages. It is a copy
492
+ of the binary version number field expressed as
493
+ readable characters in hexadecimal notation.""",
494
+ "reference" :
495
+ """T1E1.4/2000-009R3, Part 1, common spec""",
496
+ }, # column
497
+ "vdslPhysCurrSnrMgn" : {
498
+ "nodetype" : "column",
499
+ "moduleName" : "VDSL-LINE-MIB",
500
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.5",
501
+ "status" : "current",
502
+ "syntax" : {
503
+ "type" : {
504
+ "basetype" : "Integer32",
505
+ "ranges" : [
506
+ {
507
+ "min" : "-127",
508
+ "max" : "127"
509
+ },
510
+ ],
511
+ "range" : {
512
+ "min" : "-127",
513
+ "max" : "127"
514
+ },
515
+ },
516
+ },
517
+ "access" : "readonly",
518
+ "units" : "0.25dBm",
519
+ "description" :
520
+ """Noise Margin as seen by this Vtu with respect to its
521
+ received signal in 0.25dB. The effective range is
522
+ -31.75 to +31.75 dB.""",
523
+ "reference" :
524
+ """T1E1.4/2000-009R3, Part 1, common spec""",
525
+ }, # column
526
+ "vdslPhysCurrAtn" : {
527
+ "nodetype" : "column",
528
+ "moduleName" : "VDSL-LINE-MIB",
529
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.6",
530
+ "status" : "current",
531
+ "syntax" : {
532
+ "type" : {
533
+ "basetype" : "Unsigned32",
534
+ "parent module" : {
535
+ "name" : "SNMPv2-SMI",
536
+ "type" : "Gauge32",
537
+ },
538
+ "ranges" : [
539
+ {
540
+ "min" : "0",
541
+ "max" : "255"
542
+ },
543
+ ],
544
+ "range" : {
545
+ "min" : "0",
546
+ "max" : "255"
547
+ },
548
+ },
549
+ },
550
+ "access" : "readonly",
551
+ "units" : "0.25dBm",
552
+ "description" :
553
+ """Measured difference in the total power transmitted by
554
+ the peer Vtu and the total power received by this Vtu.
555
+ The effective range is 0 to +63.75 dB.""",
556
+ "reference" :
557
+ """T1E1.4/2000-009R3, Part 1, common spec""",
558
+ }, # column
559
+ "vdslPhysCurrStatus" : {
560
+ "nodetype" : "column",
561
+ "moduleName" : "VDSL-LINE-MIB",
562
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.7",
563
+ "status" : "current",
564
+ "syntax" : {
565
+ "type" : {
566
+ "basetype" : "Bits",
567
+ "noDefect" : {
568
+ "nodetype" : "namednumber",
569
+ "number" : "0"
570
+ },
571
+ "lossOfFraming" : {
572
+ "nodetype" : "namednumber",
573
+ "number" : "1"
574
+ },
575
+ "lossOfSignal" : {
576
+ "nodetype" : "namednumber",
577
+ "number" : "2"
578
+ },
579
+ "lossOfPower" : {
580
+ "nodetype" : "namednumber",
581
+ "number" : "3"
582
+ },
583
+ "lossOfSignalQuality" : {
584
+ "nodetype" : "namednumber",
585
+ "number" : "4"
586
+ },
587
+ "lossOfLink" : {
588
+ "nodetype" : "namednumber",
589
+ "number" : "5"
590
+ },
591
+ "dataInitFailure" : {
592
+ "nodetype" : "namednumber",
593
+ "number" : "6"
594
+ },
595
+ "configInitFailure" : {
596
+ "nodetype" : "namednumber",
597
+ "number" : "7"
598
+ },
599
+ "protocolInitFailure" : {
600
+ "nodetype" : "namednumber",
601
+ "number" : "8"
602
+ },
603
+ "noPeerVtuPresent" : {
604
+ "nodetype" : "namednumber",
605
+ "number" : "9"
606
+ },
607
+ },
608
+ },
609
+ "access" : "readonly",
610
+ "description" :
611
+ """Indicates current state of the Vtu line. This is a
612
+ bit-map of possible conditions. The various bit
613
+ positions are:
614
+
615
+ 0 noDefect There are no defects on the line.
616
+
617
+ 1 lossOfFraming Vtu failure due to not receiving
618
+ a valid frame.
619
+
620
+ 2 lossOfSignal Vtu failure due to not receiving
621
+ signal.
622
+
623
+ 3 lossOfPower Vtu failure due to loss of power.
624
+
625
+ 4 lossOfSignalQuality Loss of Signal Quality is declared
626
+ when the Noise Margin falls below
627
+ the Minimum Noise Margin, or the
628
+ bit-error-rate exceeds 10^-7.
629
+
630
+ 5 lossOfLink Vtu failure due to inability to
631
+ link with peer Vtu. Set whenever
632
+ the transceiver is in the 'Warm
633
+ Start' state.
634
+
635
+ 6 dataInitFailure Vtu failure during initialization
636
+ due to bit errors corrupting
637
+ startup exchange data.
638
+
639
+
640
+
641
+
642
+ 7 configInitFailure Vtu failure during initialization
643
+ due to peer Vtu not able to
644
+ support requested configuration.
645
+
646
+ 8 protocolInitFailure Vtu failure during initialization
647
+ due to incompatible protocol used
648
+ by the peer Vtu.
649
+
650
+ 9 noPeerVtuPresent Vtu failure during initialization
651
+ due to no activation sequence
652
+ detected from peer Vtu.
653
+
654
+ This is intended to supplement ifOperStatus.""",
655
+ "reference" :
656
+ """T1E1.4/2000-009R3, Part 1, common spec""",
657
+ }, # column
658
+ "vdslPhysCurrOutputPwr" : {
659
+ "nodetype" : "column",
660
+ "moduleName" : "VDSL-LINE-MIB",
661
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.8",
662
+ "status" : "current",
663
+ "syntax" : {
664
+ "type" : {
665
+ "basetype" : "Integer32",
666
+ "ranges" : [
667
+ {
668
+ "min" : "0",
669
+ "max" : "160"
670
+ },
671
+ ],
672
+ "range" : {
673
+ "min" : "0",
674
+ "max" : "160"
675
+ },
676
+ },
677
+ },
678
+ "access" : "readonly",
679
+ "units" : "0.1dBm",
680
+ "description" :
681
+ """Measured total output power transmitted by this VTU.
682
+ This is the measurement that was reported during
683
+ the last activation sequence.""",
684
+ "reference" :
685
+ """T1E1.4/2000-009R3, Part 1, common spec""",
686
+ }, # column
687
+ "vdslPhysCurrAttainableRate" : {
688
+ "nodetype" : "column",
689
+ "moduleName" : "VDSL-LINE-MIB",
690
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.9",
691
+ "status" : "current",
692
+ "syntax" : {
693
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
694
+ },
695
+ "access" : "readonly",
696
+ "units" : "kbps",
697
+ "description" :
698
+ """Indicates the maximum currently attainable data rate
699
+ in steps of 1000 bits/second by the Vtu. This value
700
+ will be equal to or greater than vdslPhysCurrLineRate.
701
+ Note that for SCM, the minimum and maximum data rates
702
+ are equal. Note: 1 kbps = 1000 bps.""",
703
+ "reference" :
704
+ """T1E1.4/2000-009R3, Part 1, common spec""",
705
+ }, # column
706
+ "vdslPhysCurrLineRate" : {
707
+ "nodetype" : "column",
708
+ "moduleName" : "VDSL-LINE-MIB",
709
+ "oid" : "1.3.6.1.2.1.10.97.1.1.2.1.10",
710
+ "status" : "current",
711
+ "syntax" : {
712
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
713
+ },
714
+ "access" : "readonly",
715
+ "units" : "kbps",
716
+ "description" :
717
+ """Indicates the current data rate in steps of 1000
718
+ bits/second by the Vtu. This value will be less than
719
+ or equal to vdslPhysCurrAttainableRate. Note: 1 kbps =
720
+ 1000 bps.""",
721
+ "reference" :
722
+ """T1E1.4/2000-009R3, Part 1, common spec""",
723
+ }, # column
724
+ "vdslChanTable" : {
725
+ "nodetype" : "table",
726
+ "moduleName" : "VDSL-LINE-MIB",
727
+ "oid" : "1.3.6.1.2.1.10.97.1.1.3",
728
+ "status" : "current",
729
+ "description" :
730
+ """This table provides one row for each Vtu channel.
731
+ VDSL channel interfaces are those ifEntries where
732
+ ifType is equal to interleave(124) or fast(125).""",
733
+ }, # table
734
+ "vdslChanEntry" : {
735
+ "nodetype" : "row",
736
+ "moduleName" : "VDSL-LINE-MIB",
737
+ "oid" : "1.3.6.1.2.1.10.97.1.1.3.1",
738
+ "status" : "current",
739
+ "linkage" : [
740
+ "ifIndex",
741
+ "vdslPhysSide",
742
+ ],
743
+ "description" :
744
+ """An entry in the vdslChanTable.""",
745
+ }, # row
746
+ "vdslChanInterleaveDelay" : {
747
+ "nodetype" : "column",
748
+ "moduleName" : "VDSL-LINE-MIB",
749
+ "oid" : "1.3.6.1.2.1.10.97.1.1.3.1.1",
750
+ "status" : "current",
751
+ "syntax" : {
752
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
753
+ },
754
+ "access" : "readonly",
755
+ "units" : "milliseconds",
756
+ "description" :
757
+ """Interleave Delay for this channel.
758
+
759
+ Interleave delay applies only to the interleave
760
+ (slow) channel and defines the mapping (relative
761
+ spacing) between subsequent input bytes at the
762
+
763
+
764
+
765
+ interleaver input and their placement in the bit
766
+ stream at the interleaver output. Larger numbers
767
+ provide greater separation between consecutive
768
+ input bytes in the output bit stream allowing for
769
+ improved impulse noise immunity at the expense of
770
+ payload latency.
771
+
772
+ In the case where the ifType is fast(125), return
773
+ a value of zero.""",
774
+ "reference" :
775
+ """T1E1.4/2000-009R3, Part 1, common spec""",
776
+ }, # column
777
+ "vdslChanCrcBlockLength" : {
778
+ "nodetype" : "column",
779
+ "moduleName" : "VDSL-LINE-MIB",
780
+ "oid" : "1.3.6.1.2.1.10.97.1.1.3.1.2",
781
+ "status" : "current",
782
+ "syntax" : {
783
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
784
+ },
785
+ "access" : "readonly",
786
+ "units" : "bytes",
787
+ "description" :
788
+ """Indicates the length of the channel data-block
789
+ on which the CRC operates.""",
790
+ "reference" :
791
+ """T1E1.4/2000-009R3, Part 1, common spec""",
792
+ }, # column
793
+ "vdslChanCurrTxRate" : {
794
+ "nodetype" : "column",
795
+ "moduleName" : "VDSL-LINE-MIB",
796
+ "oid" : "1.3.6.1.2.1.10.97.1.1.3.1.3",
797
+ "status" : "current",
798
+ "syntax" : {
799
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
800
+ },
801
+ "access" : "readonly",
802
+ "units" : "kbps",
803
+ "description" :
804
+ """Actual transmit data rate on this channel. Note: 1
805
+ kbps = 1000 bps.""",
806
+ }, # column
807
+ "vdslChanCurrTxSlowBurstProtect" : {
808
+ "nodetype" : "column",
809
+ "moduleName" : "VDSL-LINE-MIB",
810
+ "oid" : "1.3.6.1.2.1.10.97.1.1.3.1.4",
811
+ "status" : "current",
812
+ "syntax" : {
813
+ "type" : {
814
+ "basetype" : "Unsigned32",
815
+ "parent module" : {
816
+ "name" : "SNMPv2-SMI",
817
+ "type" : "Gauge32",
818
+ },
819
+ "ranges" : [
820
+ {
821
+ "min" : "0",
822
+ "max" : "1275"
823
+ },
824
+ ],
825
+ "range" : {
826
+ "min" : "0",
827
+ "max" : "1275"
828
+ },
829
+ },
830
+ },
831
+ "access" : "readonly",
832
+ "units" : "microseconds",
833
+ "description" :
834
+ """Actual level of impulse noise (burst) protection
835
+ for an interleaved (slow) channel. This parameter is
836
+ not applicable to fast channels. For fast channels,
837
+ a value of zero shall be returned.""",
838
+ "reference" :
839
+ """ITU-T G.997.1, section 7.3.2.3""",
840
+ }, # column
841
+ "vdslChanCurrTxFastFec" : {
842
+ "nodetype" : "column",
843
+ "moduleName" : "VDSL-LINE-MIB",
844
+ "oid" : "1.3.6.1.2.1.10.97.1.1.3.1.5",
845
+ "status" : "current",
846
+ "syntax" : {
847
+ "type" : {
848
+ "basetype" : "Unsigned32",
849
+ "parent module" : {
850
+ "name" : "SNMPv2-SMI",
851
+ "type" : "Gauge32",
852
+ },
853
+ "ranges" : [
854
+ {
855
+ "min" : "0",
856
+ "max" : "50"
857
+ },
858
+ ],
859
+ "range" : {
860
+ "min" : "0",
861
+ "max" : "50"
862
+ },
863
+ },
864
+ },
865
+ "access" : "readonly",
866
+ "units" : "%",
867
+ "description" :
868
+ """Actual Forward Error Correction (FEC) redundancy
869
+ related overhead for a fast channel. This parameter
870
+ is not applicable to an interleaved (slow) channel.
871
+ For interleaved channels, a value of zero shall be
872
+ returned.""",
873
+ }, # column
874
+ "vdslPerfDataTable" : {
875
+ "nodetype" : "table",
876
+ "moduleName" : "VDSL-LINE-MIB",
877
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4",
878
+ "status" : "current",
879
+ "description" :
880
+ """This table provides one row for each VDSL physical
881
+ interface. VDSL physical interfaces are those ifEntries
882
+ where ifType is equal to vdsl(97).""",
883
+ }, # table
884
+ "vdslPerfDataEntry" : {
885
+ "nodetype" : "row",
886
+ "moduleName" : "VDSL-LINE-MIB",
887
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1",
888
+ "status" : "current",
889
+ "linkage" : [
890
+ "ifIndex",
891
+ "vdslPhysSide",
892
+ ],
893
+ "description" :
894
+ """An entry in the vdslPerfDataTable.""",
895
+ }, # row
896
+ "vdslPerfDataValidIntervals" : {
897
+ "nodetype" : "column",
898
+ "moduleName" : "VDSL-LINE-MIB",
899
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.1",
900
+ "status" : "current",
901
+ "syntax" : {
902
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
903
+ },
904
+ "access" : "readonly",
905
+ "units" : "intervals",
906
+ "description" :
907
+ """Valid Intervals per definition found in
908
+ HC-PerfHist-TC-MIB.""",
909
+ }, # column
910
+ "vdslPerfDataInvalidIntervals" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "VDSL-LINE-MIB",
913
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.2",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfInvalidIntervals"},
917
+ },
918
+ "access" : "readonly",
919
+ "units" : "intervals",
920
+ "description" :
921
+ """Invalid Intervals per definition found in
922
+ HC-PerfHist-TC-MIB.""",
923
+ }, # column
924
+ "vdslPerfDataLofs" : {
925
+ "nodetype" : "column",
926
+ "moduleName" : "VDSL-LINE-MIB",
927
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.3",
928
+ "status" : "current",
929
+ "syntax" : {
930
+ "type" : { "module" :"", "name" : "Unsigned32"},
931
+ },
932
+ "access" : "readonly",
933
+ "units" : "seconds",
934
+ "description" :
935
+ """Count of seconds since the unit was last reset that there
936
+ was Loss of Framing.""",
937
+ "reference" :
938
+ """T1E1.4/2000-009R3, Part 1, common spec""",
939
+ }, # column
940
+ "vdslPerfDataLoss" : {
941
+ "nodetype" : "column",
942
+ "moduleName" : "VDSL-LINE-MIB",
943
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.4",
944
+ "status" : "current",
945
+ "syntax" : {
946
+ "type" : { "module" :"", "name" : "Unsigned32"},
947
+ },
948
+ "access" : "readonly",
949
+ "units" : "seconds",
950
+ "description" :
951
+ """Count of seconds since the unit was last reset that there
952
+ was Loss of Signal.""",
953
+ "reference" :
954
+ """T1E1.4/2000-009R3, Part 1, common spec""",
955
+ }, # column
956
+ "vdslPerfDataLprs" : {
957
+ "nodetype" : "column",
958
+ "moduleName" : "VDSL-LINE-MIB",
959
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.5",
960
+ "status" : "current",
961
+ "syntax" : {
962
+ "type" : { "module" :"", "name" : "Unsigned32"},
963
+ },
964
+ "access" : "readonly",
965
+ "units" : "seconds",
966
+ "description" :
967
+ """Count of seconds since the unit was last reset that there
968
+ was Loss of Power.""",
969
+ "reference" :
970
+ """T1E1.4/2000-009R3, Part 1, common spec""",
971
+ }, # column
972
+ "vdslPerfDataLols" : {
973
+ "nodetype" : "column",
974
+ "moduleName" : "VDSL-LINE-MIB",
975
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.6",
976
+ "status" : "current",
977
+ "syntax" : {
978
+ "type" : { "module" :"", "name" : "Unsigned32"},
979
+ },
980
+ "access" : "readonly",
981
+ "units" : "seconds",
982
+ "description" :
983
+ """Count of seconds since the unit was last reset that there
984
+ was Loss of Link.""",
985
+ }, # column
986
+ "vdslPerfDataESs" : {
987
+ "nodetype" : "column",
988
+ "moduleName" : "VDSL-LINE-MIB",
989
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.7",
990
+ "status" : "current",
991
+ "syntax" : {
992
+ "type" : { "module" :"", "name" : "Unsigned32"},
993
+ },
994
+ "access" : "readonly",
995
+ "units" : "seconds",
996
+ "description" :
997
+ """Count of Errored Seconds since the unit was last reset.
998
+ An Errored Second is a one-second interval containing one
999
+ or more CRC anomalies, or one or more LOS or LOF defects.""",
1000
+ "reference" :
1001
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1002
+ }, # column
1003
+ "vdslPerfDataSESs" : {
1004
+ "nodetype" : "column",
1005
+ "moduleName" : "VDSL-LINE-MIB",
1006
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.8",
1007
+ "status" : "current",
1008
+ "syntax" : {
1009
+ "type" : { "module" :"", "name" : "Unsigned32"},
1010
+ },
1011
+ "access" : "readonly",
1012
+ "units" : "seconds",
1013
+ "description" :
1014
+ """Count of Severely Errored Seconds since the unit was last
1015
+ reset.""",
1016
+ }, # column
1017
+ "vdslPerfDataUASs" : {
1018
+ "nodetype" : "column",
1019
+ "moduleName" : "VDSL-LINE-MIB",
1020
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.9",
1021
+ "status" : "current",
1022
+ "syntax" : {
1023
+ "type" : { "module" :"", "name" : "Unsigned32"},
1024
+ },
1025
+ "access" : "readonly",
1026
+ "units" : "seconds",
1027
+ "description" :
1028
+ """Count of Unavailable Seconds since the unit was last
1029
+ reset.""",
1030
+ }, # column
1031
+ "vdslPerfDataInits" : {
1032
+ "nodetype" : "column",
1033
+ "moduleName" : "VDSL-LINE-MIB",
1034
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.10",
1035
+ "status" : "current",
1036
+ "syntax" : {
1037
+ "type" : { "module" :"", "name" : "Unsigned32"},
1038
+ },
1039
+ "access" : "readonly",
1040
+ "units" : "occurrences",
1041
+ "description" :
1042
+ """Count of the line initialization attempts since the unit
1043
+ was last reset. This count includes both successful and
1044
+ failed attempts.""",
1045
+ "reference" :
1046
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1047
+ }, # column
1048
+ "vdslPerfDataCurr15MinTimeElapsed" : {
1049
+ "nodetype" : "column",
1050
+ "moduleName" : "VDSL-LINE-MIB",
1051
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.11",
1052
+ "status" : "current",
1053
+ "syntax" : {
1054
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1055
+ },
1056
+ "access" : "readonly",
1057
+ "units" : "seconds",
1058
+ "description" :
1059
+ """Total elapsed seconds in this interval.""",
1060
+ }, # column
1061
+ "vdslPerfDataCurr15MinLofs" : {
1062
+ "nodetype" : "column",
1063
+ "moduleName" : "VDSL-LINE-MIB",
1064
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.12",
1065
+ "status" : "current",
1066
+ "syntax" : {
1067
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1068
+ },
1069
+ "access" : "readonly",
1070
+ "units" : "seconds",
1071
+ "description" :
1072
+ """Count of seconds during this interval that there
1073
+ was Loss of Framing.""",
1074
+ "reference" :
1075
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1076
+ }, # column
1077
+ "vdslPerfDataCurr15MinLoss" : {
1078
+ "nodetype" : "column",
1079
+ "moduleName" : "VDSL-LINE-MIB",
1080
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.13",
1081
+ "status" : "current",
1082
+ "syntax" : {
1083
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1084
+ },
1085
+ "access" : "readonly",
1086
+ "units" : "seconds",
1087
+ "description" :
1088
+ """Count of seconds during this interval that there
1089
+ was Loss of Signal.""",
1090
+ "reference" :
1091
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1092
+ }, # column
1093
+ "vdslPerfDataCurr15MinLprs" : {
1094
+ "nodetype" : "column",
1095
+ "moduleName" : "VDSL-LINE-MIB",
1096
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.14",
1097
+ "status" : "current",
1098
+ "syntax" : {
1099
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1100
+ },
1101
+ "access" : "readonly",
1102
+ "units" : "seconds",
1103
+ "description" :
1104
+ """Count of seconds during this interval that there
1105
+ was Loss of Power.""",
1106
+ "reference" :
1107
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1108
+ }, # column
1109
+ "vdslPerfDataCurr15MinLols" : {
1110
+ "nodetype" : "column",
1111
+ "moduleName" : "VDSL-LINE-MIB",
1112
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.15",
1113
+ "status" : "current",
1114
+ "syntax" : {
1115
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1116
+ },
1117
+ "access" : "readonly",
1118
+ "units" : "seconds",
1119
+ "description" :
1120
+ """Count of seconds during this interval that there
1121
+ was Loss of Link.""",
1122
+ }, # column
1123
+ "vdslPerfDataCurr15MinESs" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "VDSL-LINE-MIB",
1126
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.16",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1130
+ },
1131
+ "access" : "readonly",
1132
+ "units" : "seconds",
1133
+ "description" :
1134
+ """Count of Errored Seconds during this interval. An Errored
1135
+ Second is a one-second interval containing one or more CRC
1136
+ anomalies, or one or more LOS or LOF defects.""",
1137
+ "reference" :
1138
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1139
+ }, # column
1140
+ "vdslPerfDataCurr15MinSESs" : {
1141
+ "nodetype" : "column",
1142
+ "moduleName" : "VDSL-LINE-MIB",
1143
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.17",
1144
+ "status" : "current",
1145
+ "syntax" : {
1146
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1147
+ },
1148
+ "access" : "readonly",
1149
+ "units" : "seconds",
1150
+ "description" :
1151
+ """Count of Severely Errored Seconds during this interval.""",
1152
+ }, # column
1153
+ "vdslPerfDataCurr15MinUASs" : {
1154
+ "nodetype" : "column",
1155
+ "moduleName" : "VDSL-LINE-MIB",
1156
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.18",
1157
+ "status" : "current",
1158
+ "syntax" : {
1159
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1160
+ },
1161
+ "access" : "readonly",
1162
+ "units" : "seconds",
1163
+ "description" :
1164
+ """Count of Unavailable Seconds during this interval.""",
1165
+ }, # column
1166
+ "vdslPerfDataCurr15MinInits" : {
1167
+ "nodetype" : "column",
1168
+ "moduleName" : "VDSL-LINE-MIB",
1169
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.19",
1170
+ "status" : "current",
1171
+ "syntax" : {
1172
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1173
+ },
1174
+ "access" : "readonly",
1175
+ "units" : "occurrences",
1176
+ "description" :
1177
+ """Count of the line initialization attempts during this
1178
+ interval. This count includes both successful and
1179
+ failed attempts.""",
1180
+ "reference" :
1181
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1182
+ }, # column
1183
+ "vdslPerfData1DayValidIntervals" : {
1184
+ "nodetype" : "column",
1185
+ "moduleName" : "VDSL-LINE-MIB",
1186
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.20",
1187
+ "status" : "current",
1188
+ "syntax" : {
1189
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
1190
+ },
1191
+ "access" : "readonly",
1192
+ "units" : "intervals",
1193
+ "description" :
1194
+ """Valid Intervals per definition found in
1195
+ HC-PerfHist-TC-MIB.""",
1196
+ }, # column
1197
+ "vdslPerfData1DayInvalidIntervals" : {
1198
+ "nodetype" : "column",
1199
+ "moduleName" : "VDSL-LINE-MIB",
1200
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.21",
1201
+ "status" : "current",
1202
+ "syntax" : {
1203
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfInvalidIntervals"},
1204
+ },
1205
+ "access" : "readonly",
1206
+ "units" : "intervals",
1207
+ "description" :
1208
+ """Invalid Intervals per definition found in
1209
+ HC-PerfHist-TC-MIB.""",
1210
+ }, # column
1211
+ "vdslPerfDataCurr1DayTimeElapsed" : {
1212
+ "nodetype" : "column",
1213
+ "moduleName" : "VDSL-LINE-MIB",
1214
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.22",
1215
+ "status" : "current",
1216
+ "syntax" : {
1217
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1218
+ },
1219
+ "access" : "readonly",
1220
+ "units" : "seconds",
1221
+ "description" :
1222
+ """Number of seconds that have elapsed since the beginning
1223
+ of the current 1-day interval.""",
1224
+ }, # column
1225
+ "vdslPerfDataCurr1DayLofs" : {
1226
+ "nodetype" : "column",
1227
+ "moduleName" : "VDSL-LINE-MIB",
1228
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.23",
1229
+ "status" : "current",
1230
+ "syntax" : {
1231
+ "type" : { "module" :"", "name" : "Unsigned32"},
1232
+ },
1233
+ "access" : "readonly",
1234
+ "units" : "seconds",
1235
+ "description" :
1236
+ """Count of Loss of Framing (LOF) Seconds since the
1237
+ beginning of the current 1-day interval.""",
1238
+ }, # column
1239
+ "vdslPerfDataCurr1DayLoss" : {
1240
+ "nodetype" : "column",
1241
+ "moduleName" : "VDSL-LINE-MIB",
1242
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.24",
1243
+ "status" : "current",
1244
+ "syntax" : {
1245
+ "type" : { "module" :"", "name" : "Unsigned32"},
1246
+ },
1247
+ "access" : "readonly",
1248
+ "units" : "seconds",
1249
+ "description" :
1250
+ """Count of Loss of Signal (LOS) Seconds since the beginning
1251
+ of the current 1-day interval.""",
1252
+ }, # column
1253
+ "vdslPerfDataCurr1DayLprs" : {
1254
+ "nodetype" : "column",
1255
+ "moduleName" : "VDSL-LINE-MIB",
1256
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.25",
1257
+ "status" : "current",
1258
+ "syntax" : {
1259
+ "type" : { "module" :"", "name" : "Unsigned32"},
1260
+ },
1261
+ "access" : "readonly",
1262
+ "units" : "seconds",
1263
+ "description" :
1264
+ """Count of Loss of Power (LPR) Seconds since the beginning
1265
+ of the current 1-day interval.""",
1266
+ }, # column
1267
+ "vdslPerfDataCurr1DayLols" : {
1268
+ "nodetype" : "column",
1269
+ "moduleName" : "VDSL-LINE-MIB",
1270
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.26",
1271
+ "status" : "current",
1272
+ "syntax" : {
1273
+ "type" : { "module" :"", "name" : "Unsigned32"},
1274
+ },
1275
+ "access" : "readonly",
1276
+ "units" : "seconds",
1277
+ "description" :
1278
+ """Count of Loss of Link (LOL) Seconds since the beginning
1279
+ of the current 1-day interval.""",
1280
+ }, # column
1281
+ "vdslPerfDataCurr1DayESs" : {
1282
+ "nodetype" : "column",
1283
+ "moduleName" : "VDSL-LINE-MIB",
1284
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.27",
1285
+ "status" : "current",
1286
+ "syntax" : {
1287
+ "type" : { "module" :"", "name" : "Unsigned32"},
1288
+ },
1289
+ "access" : "readonly",
1290
+ "units" : "seconds",
1291
+ "description" :
1292
+ """Count of Errored Seconds (ES) since the beginning
1293
+ of the current 1-day interval.""",
1294
+ }, # column
1295
+ "vdslPerfDataCurr1DaySESs" : {
1296
+ "nodetype" : "column",
1297
+ "moduleName" : "VDSL-LINE-MIB",
1298
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.28",
1299
+ "status" : "current",
1300
+ "syntax" : {
1301
+ "type" : { "module" :"", "name" : "Unsigned32"},
1302
+ },
1303
+ "access" : "readonly",
1304
+ "units" : "seconds",
1305
+ "description" :
1306
+ """Count of Severely Errored Seconds (SES) since the
1307
+ beginning of the current 1-day interval.""",
1308
+ }, # column
1309
+ "vdslPerfDataCurr1DayUASs" : {
1310
+ "nodetype" : "column",
1311
+ "moduleName" : "VDSL-LINE-MIB",
1312
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.29",
1313
+ "status" : "current",
1314
+ "syntax" : {
1315
+ "type" : { "module" :"", "name" : "Unsigned32"},
1316
+ },
1317
+ "access" : "readonly",
1318
+ "units" : "seconds",
1319
+ "description" :
1320
+ """Count of Unavailable Seconds (UAS) since the beginning
1321
+ of the current 1-day interval.""",
1322
+ }, # column
1323
+ "vdslPerfDataCurr1DayInits" : {
1324
+ "nodetype" : "column",
1325
+ "moduleName" : "VDSL-LINE-MIB",
1326
+ "oid" : "1.3.6.1.2.1.10.97.1.1.4.1.30",
1327
+ "status" : "current",
1328
+ "syntax" : {
1329
+ "type" : { "module" :"", "name" : "Unsigned32"},
1330
+ },
1331
+ "access" : "readonly",
1332
+ "units" : "seconds",
1333
+ "description" :
1334
+ """Count of the line initialization attempts since the
1335
+ beginning of the current 1-day interval. This count
1336
+ includes both successful and failed attempts.""",
1337
+ }, # column
1338
+ "vdslPerfIntervalTable" : {
1339
+ "nodetype" : "table",
1340
+ "moduleName" : "VDSL-LINE-MIB",
1341
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5",
1342
+ "status" : "current",
1343
+ "description" :
1344
+ """This table provides one row for each Vtu performance
1345
+ data collection interval. VDSL physical interfaces are
1346
+
1347
+
1348
+
1349
+ those ifEntries where ifType is equal to vdsl(97).""",
1350
+ }, # table
1351
+ "vdslPerfIntervalEntry" : {
1352
+ "nodetype" : "row",
1353
+ "moduleName" : "VDSL-LINE-MIB",
1354
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1",
1355
+ "status" : "current",
1356
+ "linkage" : [
1357
+ "ifIndex",
1358
+ "vdslPhysSide",
1359
+ "vdslPerfIntervalNumber",
1360
+ ],
1361
+ "description" :
1362
+ """An entry in the vdslPerfIntervalTable.""",
1363
+ }, # row
1364
+ "vdslPerfIntervalNumber" : {
1365
+ "nodetype" : "column",
1366
+ "moduleName" : "VDSL-LINE-MIB",
1367
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.1",
1368
+ "status" : "current",
1369
+ "syntax" : {
1370
+ "type" : {
1371
+ "basetype" : "Unsigned32",
1372
+ "ranges" : [
1373
+ {
1374
+ "min" : "1",
1375
+ "max" : "96"
1376
+ },
1377
+ ],
1378
+ "range" : {
1379
+ "min" : "1",
1380
+ "max" : "96"
1381
+ },
1382
+ },
1383
+ },
1384
+ "access" : "noaccess",
1385
+ "description" :
1386
+ """Performance Data Interval number 1 is the most recent
1387
+ previous interval; interval 96 is 24 hours ago.
1388
+ Intervals 2 to 96 are optional.""",
1389
+ }, # column
1390
+ "vdslPerfIntervalLofs" : {
1391
+ "nodetype" : "column",
1392
+ "moduleName" : "VDSL-LINE-MIB",
1393
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.2",
1394
+ "status" : "current",
1395
+ "syntax" : {
1396
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1397
+ },
1398
+ "access" : "readonly",
1399
+ "units" : "seconds",
1400
+ "description" :
1401
+ """Count of seconds in the interval when there was Loss
1402
+ of Framing.""",
1403
+ "reference" :
1404
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1405
+ }, # column
1406
+ "vdslPerfIntervalLoss" : {
1407
+ "nodetype" : "column",
1408
+ "moduleName" : "VDSL-LINE-MIB",
1409
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.3",
1410
+ "status" : "current",
1411
+ "syntax" : {
1412
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1413
+ },
1414
+ "access" : "readonly",
1415
+ "units" : "seconds",
1416
+ "description" :
1417
+ """Count of seconds in the interval when there was Loss
1418
+ of Signal.""",
1419
+ "reference" :
1420
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1421
+ }, # column
1422
+ "vdslPerfIntervalLprs" : {
1423
+ "nodetype" : "column",
1424
+ "moduleName" : "VDSL-LINE-MIB",
1425
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.4",
1426
+ "status" : "current",
1427
+ "syntax" : {
1428
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1429
+ },
1430
+ "access" : "readonly",
1431
+ "units" : "seconds",
1432
+ "description" :
1433
+ """Count of seconds in the interval when there was Loss
1434
+ of Power.""",
1435
+ "reference" :
1436
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1437
+ }, # column
1438
+ "vdslPerfIntervalLols" : {
1439
+ "nodetype" : "column",
1440
+ "moduleName" : "VDSL-LINE-MIB",
1441
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.5",
1442
+ "status" : "current",
1443
+ "syntax" : {
1444
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1445
+ },
1446
+ "access" : "readonly",
1447
+ "units" : "seconds",
1448
+ "description" :
1449
+ """Count of seconds in the interval when there was Loss
1450
+ of Link.""",
1451
+ }, # column
1452
+ "vdslPerfIntervalESs" : {
1453
+ "nodetype" : "column",
1454
+ "moduleName" : "VDSL-LINE-MIB",
1455
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.6",
1456
+ "status" : "current",
1457
+ "syntax" : {
1458
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1459
+ },
1460
+ "access" : "readonly",
1461
+ "units" : "seconds",
1462
+ "description" :
1463
+ """Count of Errored Seconds (ES) in the interval. An Errored
1464
+ Second is a one-second interval containing one or more CRC
1465
+ anomalies, one or more LOS or LOF defects.""",
1466
+ "reference" :
1467
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1468
+ }, # column
1469
+ "vdslPerfIntervalSESs" : {
1470
+ "nodetype" : "column",
1471
+ "moduleName" : "VDSL-LINE-MIB",
1472
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.7",
1473
+ "status" : "current",
1474
+ "syntax" : {
1475
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1476
+ },
1477
+ "access" : "readonly",
1478
+ "units" : "seconds",
1479
+ "description" :
1480
+ """Count of Severely Errored Seconds in the interval.""",
1481
+ }, # column
1482
+ "vdslPerfIntervalUASs" : {
1483
+ "nodetype" : "column",
1484
+ "moduleName" : "VDSL-LINE-MIB",
1485
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.8",
1486
+ "status" : "current",
1487
+ "syntax" : {
1488
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1489
+ },
1490
+ "access" : "readonly",
1491
+ "units" : "seconds",
1492
+ "description" :
1493
+ """Count of Unavailable Seconds in the interval.""",
1494
+ }, # column
1495
+ "vdslPerfIntervalInits" : {
1496
+ "nodetype" : "column",
1497
+ "moduleName" : "VDSL-LINE-MIB",
1498
+ "oid" : "1.3.6.1.2.1.10.97.1.1.5.1.9",
1499
+ "status" : "current",
1500
+ "syntax" : {
1501
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1502
+ },
1503
+ "access" : "readonly",
1504
+ "description" :
1505
+ """Count of the line initialization attempts during this
1506
+ interval. This count includes both successful and
1507
+ failed attempts.""",
1508
+ "reference" :
1509
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1510
+ }, # column
1511
+ "vdslPerf1DayIntervalTable" : {
1512
+ "nodetype" : "table",
1513
+ "moduleName" : "VDSL-LINE-MIB",
1514
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6",
1515
+ "status" : "current",
1516
+ "description" :
1517
+ """This table provides one row for each VDSL performance
1518
+ data collection interval. This table contains live data
1519
+ from equipment. As such, it is NOT persistent.""",
1520
+ }, # table
1521
+ "vdslPerf1DayIntervalEntry" : {
1522
+ "nodetype" : "row",
1523
+ "moduleName" : "VDSL-LINE-MIB",
1524
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1",
1525
+ "status" : "current",
1526
+ "linkage" : [
1527
+ "ifIndex",
1528
+ "vdslPhysSide",
1529
+ "vdslPerf1DayIntervalNumber",
1530
+ ],
1531
+ "description" :
1532
+ """An entry in the vdslPerf1DayIntervalTable.""",
1533
+ }, # row
1534
+ "vdslPerf1DayIntervalNumber" : {
1535
+ "nodetype" : "column",
1536
+ "moduleName" : "VDSL-LINE-MIB",
1537
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.1",
1538
+ "status" : "current",
1539
+ "syntax" : {
1540
+ "type" : {
1541
+ "basetype" : "Unsigned32",
1542
+ "ranges" : [
1543
+ {
1544
+ "min" : "1",
1545
+ "max" : "30"
1546
+ },
1547
+ ],
1548
+ "range" : {
1549
+ "min" : "1",
1550
+ "max" : "30"
1551
+ },
1552
+ },
1553
+ },
1554
+ "access" : "noaccess",
1555
+ "description" :
1556
+ """History Data Interval number. Interval 1 is the most
1557
+ recent previous day; interval 30 is 30 days ago. Intervals
1558
+ 2 to 30 are optional.""",
1559
+ }, # column
1560
+ "vdslPerf1DayIntervalMoniSecs" : {
1561
+ "nodetype" : "column",
1562
+ "moduleName" : "VDSL-LINE-MIB",
1563
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.2",
1564
+ "status" : "current",
1565
+ "syntax" : {
1566
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1567
+ },
1568
+ "access" : "readonly",
1569
+ "units" : "seconds",
1570
+ "description" :
1571
+ """The amount of time in the 1-day interval over which the
1572
+ performance monitoring information is actually counted.
1573
+ This value will be the same as the interval duration except
1574
+ in a situation where performance monitoring data could not
1575
+ be collected for any reason.""",
1576
+ }, # column
1577
+ "vdslPerf1DayIntervalLofs" : {
1578
+ "nodetype" : "column",
1579
+ "moduleName" : "VDSL-LINE-MIB",
1580
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.3",
1581
+ "status" : "current",
1582
+ "syntax" : {
1583
+ "type" : { "module" :"", "name" : "Unsigned32"},
1584
+ },
1585
+ "access" : "readonly",
1586
+ "units" : "seconds",
1587
+ "description" :
1588
+ """Count of Loss of Frame (LOF) Seconds during the 1-day
1589
+ interval as measured by vdslPerf1DayIntervalMoniSecs.""",
1590
+ "reference" :
1591
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1592
+ }, # column
1593
+ "vdslPerf1DayIntervalLoss" : {
1594
+ "nodetype" : "column",
1595
+ "moduleName" : "VDSL-LINE-MIB",
1596
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.4",
1597
+ "status" : "current",
1598
+ "syntax" : {
1599
+ "type" : { "module" :"", "name" : "Unsigned32"},
1600
+ },
1601
+ "access" : "readonly",
1602
+ "units" : "seconds",
1603
+ "description" :
1604
+ """Count of Loss of Signal (LOS) Seconds during the 1-day
1605
+ interval as measured by vdslPerf1DayIntervalMoniSecs.""",
1606
+ "reference" :
1607
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1608
+ }, # column
1609
+ "vdslPerf1DayIntervalLprs" : {
1610
+ "nodetype" : "column",
1611
+ "moduleName" : "VDSL-LINE-MIB",
1612
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.5",
1613
+ "status" : "current",
1614
+ "syntax" : {
1615
+ "type" : { "module" :"", "name" : "Unsigned32"},
1616
+ },
1617
+ "access" : "readonly",
1618
+ "units" : "seconds",
1619
+ "description" :
1620
+ """Count of Loss of Power (LPR) Seconds during the 1-day
1621
+ interval as measured by vdslPerf1DayIntervalMoniSecs.""",
1622
+ "reference" :
1623
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1624
+ }, # column
1625
+ "vdslPerf1DayIntervalLols" : {
1626
+ "nodetype" : "column",
1627
+ "moduleName" : "VDSL-LINE-MIB",
1628
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.6",
1629
+ "status" : "current",
1630
+ "syntax" : {
1631
+ "type" : { "module" :"", "name" : "Unsigned32"},
1632
+ },
1633
+ "access" : "readonly",
1634
+ "units" : "seconds",
1635
+ "description" :
1636
+ """Count of Loss of Link (LOL) Seconds during the 1-day
1637
+ interval as measured by vdslPerf1DayIntervalMoniSecs.""",
1638
+ }, # column
1639
+ "vdslPerf1DayIntervalESs" : {
1640
+ "nodetype" : "column",
1641
+ "moduleName" : "VDSL-LINE-MIB",
1642
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.7",
1643
+ "status" : "current",
1644
+ "syntax" : {
1645
+ "type" : { "module" :"", "name" : "Unsigned32"},
1646
+ },
1647
+ "access" : "readonly",
1648
+ "units" : "seconds",
1649
+ "description" :
1650
+ """Count of Errored Seconds (ES) during the 1-day
1651
+ interval as measured by vdslPerf1DayIntervalMoniSecs.""",
1652
+ "reference" :
1653
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1654
+ }, # column
1655
+ "vdslPerf1DayIntervalSESs" : {
1656
+ "nodetype" : "column",
1657
+ "moduleName" : "VDSL-LINE-MIB",
1658
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.8",
1659
+ "status" : "current",
1660
+ "syntax" : {
1661
+ "type" : { "module" :"", "name" : "Unsigned32"},
1662
+ },
1663
+ "access" : "readonly",
1664
+ "units" : "seconds",
1665
+ "description" :
1666
+ """Count of Severely Errored Seconds (SES) during the 1-day
1667
+ interval as measured by vdslPerf1DayIntervalMoniSecs.""",
1668
+ }, # column
1669
+ "vdslPerf1DayIntervalUASs" : {
1670
+ "nodetype" : "column",
1671
+ "moduleName" : "VDSL-LINE-MIB",
1672
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.9",
1673
+ "status" : "current",
1674
+ "syntax" : {
1675
+ "type" : { "module" :"", "name" : "Unsigned32"},
1676
+ },
1677
+ "access" : "readonly",
1678
+ "units" : "seconds",
1679
+ "description" :
1680
+ """Count of Unavailable Seconds (UAS) during the 1-day
1681
+ interval as measured by vdslPerf1DayIntervalMoniSecs.""",
1682
+ }, # column
1683
+ "vdslPerf1DayIntervalInits" : {
1684
+ "nodetype" : "column",
1685
+ "moduleName" : "VDSL-LINE-MIB",
1686
+ "oid" : "1.3.6.1.2.1.10.97.1.1.6.1.10",
1687
+ "status" : "current",
1688
+ "syntax" : {
1689
+ "type" : { "module" :"", "name" : "Unsigned32"},
1690
+ },
1691
+ "access" : "readonly",
1692
+ "units" : "seconds",
1693
+ "description" :
1694
+ """Count of the line initialization attempts during the
1695
+ 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.
1696
+ This count includes both successful and failed attempts.""",
1697
+ "reference" :
1698
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1699
+ }, # column
1700
+ "vdslChanPerfDataTable" : {
1701
+ "nodetype" : "table",
1702
+ "moduleName" : "VDSL-LINE-MIB",
1703
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7",
1704
+ "status" : "current",
1705
+ "description" :
1706
+ """This table provides one row for each Vtu channel.
1707
+ VDSL channel interfaces are those ifEntries where
1708
+ ifType is equal to interleave(124) or fast(125).""",
1709
+ }, # table
1710
+ "vdslChanPerfDataEntry" : {
1711
+ "nodetype" : "row",
1712
+ "moduleName" : "VDSL-LINE-MIB",
1713
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1",
1714
+ "status" : "current",
1715
+ "linkage" : [
1716
+ "ifIndex",
1717
+ "vdslPhysSide",
1718
+ ],
1719
+ "description" :
1720
+ """An entry in the vdslChanPerfDataTable.""",
1721
+ }, # row
1722
+ "vdslChanValidIntervals" : {
1723
+ "nodetype" : "column",
1724
+ "moduleName" : "VDSL-LINE-MIB",
1725
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.1",
1726
+ "status" : "current",
1727
+ "syntax" : {
1728
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
1729
+ },
1730
+ "access" : "readonly",
1731
+ "units" : "intervals",
1732
+ "description" :
1733
+ """Valid Intervals per definition found in
1734
+ HC-PerfHist-TC-MIB.""",
1735
+ }, # column
1736
+ "vdslChanInvalidIntervals" : {
1737
+ "nodetype" : "column",
1738
+ "moduleName" : "VDSL-LINE-MIB",
1739
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.2",
1740
+ "status" : "current",
1741
+ "syntax" : {
1742
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfInvalidIntervals"},
1743
+ },
1744
+ "access" : "readonly",
1745
+ "units" : "intervals",
1746
+ "description" :
1747
+ """Invalid Intervals per definition found in
1748
+ HC-PerfHist-TC-MIB.""",
1749
+ }, # column
1750
+ "vdslChanFixedOctets" : {
1751
+ "nodetype" : "column",
1752
+ "moduleName" : "VDSL-LINE-MIB",
1753
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.3",
1754
+ "status" : "current",
1755
+ "syntax" : {
1756
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1757
+ },
1758
+ "access" : "readonly",
1759
+ "units" : "octets",
1760
+ "description" :
1761
+ """Count of corrected octets since the unit was last reset.""",
1762
+ "reference" :
1763
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1764
+ }, # column
1765
+ "vdslChanBadBlks" : {
1766
+ "nodetype" : "column",
1767
+ "moduleName" : "VDSL-LINE-MIB",
1768
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.4",
1769
+ "status" : "current",
1770
+ "syntax" : {
1771
+ "type" : { "module" :"HCNUM-TC", "name" : "ZeroBasedCounter64"},
1772
+ },
1773
+ "access" : "readonly",
1774
+ "units" : "blocks",
1775
+ "description" :
1776
+ """Count of uncorrectable blocks since the unit was last
1777
+ reset.""",
1778
+ "reference" :
1779
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1780
+ }, # column
1781
+ "vdslChanCurr15MinTimeElapsed" : {
1782
+ "nodetype" : "column",
1783
+ "moduleName" : "VDSL-LINE-MIB",
1784
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.5",
1785
+ "status" : "current",
1786
+ "syntax" : {
1787
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1788
+ },
1789
+ "access" : "readonly",
1790
+ "units" : "seconds",
1791
+ "description" :
1792
+ """Total elapsed seconds in this interval.""",
1793
+ }, # column
1794
+ "vdslChanCurr15MinFixedOctets" : {
1795
+ "nodetype" : "column",
1796
+ "moduleName" : "VDSL-LINE-MIB",
1797
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.6",
1798
+ "status" : "current",
1799
+ "syntax" : {
1800
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1801
+ },
1802
+ "access" : "readonly",
1803
+ "units" : "octets",
1804
+ "description" :
1805
+ """Count of corrected octets in this interval.""",
1806
+ "reference" :
1807
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1808
+ }, # column
1809
+ "vdslChanCurr15MinBadBlks" : {
1810
+ "nodetype" : "column",
1811
+ "moduleName" : "VDSL-LINE-MIB",
1812
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.7",
1813
+ "status" : "current",
1814
+ "syntax" : {
1815
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1816
+ },
1817
+ "access" : "readonly",
1818
+ "units" : "blocks",
1819
+ "description" :
1820
+ """Count of uncorrectable blocks in this interval.""",
1821
+ "reference" :
1822
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1823
+ }, # column
1824
+ "vdslChan1DayValidIntervals" : {
1825
+ "nodetype" : "column",
1826
+ "moduleName" : "VDSL-LINE-MIB",
1827
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.8",
1828
+ "status" : "current",
1829
+ "syntax" : {
1830
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
1831
+ },
1832
+ "access" : "readonly",
1833
+ "description" :
1834
+ """Valid Intervals per definition found in
1835
+ HC-PerfHist-TC-MIB.""",
1836
+ }, # column
1837
+ "vdslChan1DayInvalidIntervals" : {
1838
+ "nodetype" : "column",
1839
+ "moduleName" : "VDSL-LINE-MIB",
1840
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.9",
1841
+ "status" : "current",
1842
+ "syntax" : {
1843
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfInvalidIntervals"},
1844
+ },
1845
+ "access" : "readonly",
1846
+ "description" :
1847
+ """Invalid Intervals per definition found in
1848
+ HC-PerfHist-TC-MIB.""",
1849
+ }, # column
1850
+ "vdslChanCurr1DayTimeElapsed" : {
1851
+ "nodetype" : "column",
1852
+ "moduleName" : "VDSL-LINE-MIB",
1853
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.10",
1854
+ "status" : "current",
1855
+ "syntax" : {
1856
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1857
+ },
1858
+ "access" : "readonly",
1859
+ "units" : "seconds",
1860
+ "description" :
1861
+ """Number of seconds that have elapsed since the beginning
1862
+ of the current 1-day interval.""",
1863
+ }, # column
1864
+ "vdslChanCurr1DayFixedOctets" : {
1865
+ "nodetype" : "column",
1866
+ "moduleName" : "VDSL-LINE-MIB",
1867
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.11",
1868
+ "status" : "current",
1869
+ "syntax" : {
1870
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1871
+ },
1872
+ "access" : "readonly",
1873
+ "units" : "octets",
1874
+ "description" :
1875
+ """Count of corrected octets since the beginning of the
1876
+ current 1-day interval.""",
1877
+ "reference" :
1878
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1879
+ }, # column
1880
+ "vdslChanCurr1DayBadBlks" : {
1881
+ "nodetype" : "column",
1882
+ "moduleName" : "VDSL-LINE-MIB",
1883
+ "oid" : "1.3.6.1.2.1.10.97.1.1.7.1.12",
1884
+ "status" : "current",
1885
+ "syntax" : {
1886
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1887
+ },
1888
+ "access" : "readonly",
1889
+ "units" : "blocks",
1890
+ "description" :
1891
+ """Count of uncorrectable blocks since the beginning of the
1892
+ current 1-day interval.""",
1893
+ "reference" :
1894
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1895
+ }, # column
1896
+ "vdslChanIntervalTable" : {
1897
+ "nodetype" : "table",
1898
+ "moduleName" : "VDSL-LINE-MIB",
1899
+ "oid" : "1.3.6.1.2.1.10.97.1.1.8",
1900
+ "status" : "current",
1901
+ "description" :
1902
+ """This table provides one row for each Vtu channel data
1903
+ collection interval. VDSL channel interfaces are those
1904
+ ifEntries where ifType is equal to interleave(124) or
1905
+ fast(125).""",
1906
+ }, # table
1907
+ "vdslChanIntervalEntry" : {
1908
+ "nodetype" : "row",
1909
+ "moduleName" : "VDSL-LINE-MIB",
1910
+ "oid" : "1.3.6.1.2.1.10.97.1.1.8.1",
1911
+ "status" : "current",
1912
+ "linkage" : [
1913
+ "ifIndex",
1914
+ "vdslPhysSide",
1915
+ "vdslChanIntervalNumber",
1916
+ ],
1917
+ "description" :
1918
+ """An entry in the vdslChanIntervalTable.""",
1919
+ }, # row
1920
+ "vdslChanIntervalNumber" : {
1921
+ "nodetype" : "column",
1922
+ "moduleName" : "VDSL-LINE-MIB",
1923
+ "oid" : "1.3.6.1.2.1.10.97.1.1.8.1.1",
1924
+ "status" : "current",
1925
+ "syntax" : {
1926
+ "type" : {
1927
+ "basetype" : "Unsigned32",
1928
+ "ranges" : [
1929
+ {
1930
+ "min" : "1",
1931
+ "max" : "96"
1932
+ },
1933
+ ],
1934
+ "range" : {
1935
+ "min" : "1",
1936
+ "max" : "96"
1937
+ },
1938
+ },
1939
+ },
1940
+ "access" : "noaccess",
1941
+ "description" :
1942
+ """Performance Data Interval number 1 is the most recent
1943
+ previous interval; interval 96 is 24 hours ago.
1944
+ Intervals 2 to 96 are optional.""",
1945
+ }, # column
1946
+ "vdslChanIntervalFixedOctets" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "VDSL-LINE-MIB",
1949
+ "oid" : "1.3.6.1.2.1.10.97.1.1.8.1.2",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1953
+ },
1954
+ "access" : "readonly",
1955
+ "units" : "octets",
1956
+ "description" :
1957
+ """Count of corrected octets in this interval.""",
1958
+ "reference" :
1959
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1960
+ }, # column
1961
+ "vdslChanIntervalBadBlks" : {
1962
+ "nodetype" : "column",
1963
+ "moduleName" : "VDSL-LINE-MIB",
1964
+ "oid" : "1.3.6.1.2.1.10.97.1.1.8.1.3",
1965
+ "status" : "current",
1966
+ "syntax" : {
1967
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1968
+ },
1969
+ "access" : "readonly",
1970
+ "units" : "blocks",
1971
+ "description" :
1972
+ """Count of uncorrectable blocks in this interval.""",
1973
+ "reference" :
1974
+ """T1E1.4/2000-009R3, Part 1, common spec""",
1975
+ }, # column
1976
+ "vdslChan1DayIntervalTable" : {
1977
+ "nodetype" : "table",
1978
+ "moduleName" : "VDSL-LINE-MIB",
1979
+ "oid" : "1.3.6.1.2.1.10.97.1.1.9",
1980
+ "status" : "current",
1981
+ "description" :
1982
+ """This table provides one row for each VDSL performance
1983
+ data collection interval. This table contains live data
1984
+ from equipment. As such, it is NOT persistent.""",
1985
+ }, # table
1986
+ "vdslChan1DayIntervalEntry" : {
1987
+ "nodetype" : "row",
1988
+ "moduleName" : "VDSL-LINE-MIB",
1989
+ "oid" : "1.3.6.1.2.1.10.97.1.1.9.1",
1990
+ "status" : "current",
1991
+ "linkage" : [
1992
+ "ifIndex",
1993
+ "vdslPhysSide",
1994
+ "vdslChan1DayIntervalNumber",
1995
+ ],
1996
+ "description" :
1997
+ """An entry in the vdslChan1DayIntervalTable.""",
1998
+ }, # row
1999
+ "vdslChan1DayIntervalNumber" : {
2000
+ "nodetype" : "column",
2001
+ "moduleName" : "VDSL-LINE-MIB",
2002
+ "oid" : "1.3.6.1.2.1.10.97.1.1.9.1.1",
2003
+ "status" : "current",
2004
+ "syntax" : {
2005
+ "type" : {
2006
+ "basetype" : "Unsigned32",
2007
+ "ranges" : [
2008
+ {
2009
+ "min" : "1",
2010
+ "max" : "30"
2011
+ },
2012
+ ],
2013
+ "range" : {
2014
+ "min" : "1",
2015
+ "max" : "30"
2016
+ },
2017
+ },
2018
+ },
2019
+ "access" : "noaccess",
2020
+ "description" :
2021
+ """History Data Interval number. Interval 1 is the most
2022
+ recent previous day; interval 30 is 30 days ago. Intervals
2023
+ 2 to 30 are optional.""",
2024
+ }, # column
2025
+ "vdslChan1DayIntervalMoniSecs" : {
2026
+ "nodetype" : "column",
2027
+ "moduleName" : "VDSL-LINE-MIB",
2028
+ "oid" : "1.3.6.1.2.1.10.97.1.1.9.1.2",
2029
+ "status" : "current",
2030
+ "syntax" : {
2031
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
2032
+ },
2033
+ "access" : "readonly",
2034
+ "units" : "seconds",
2035
+ "description" :
2036
+ """The amount of time in the 1-day interval over which the
2037
+ performance monitoring information is actually counted.
2038
+ This value will be the same as the interval duration except
2039
+ in a situation where performance monitoring data could not
2040
+ be collected for any reason.""",
2041
+ }, # column
2042
+ "vdslChan1DayIntervalFixedOctets" : {
2043
+ "nodetype" : "column",
2044
+ "moduleName" : "VDSL-LINE-MIB",
2045
+ "oid" : "1.3.6.1.2.1.10.97.1.1.9.1.3",
2046
+ "status" : "current",
2047
+ "syntax" : {
2048
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
2049
+ },
2050
+ "access" : "readonly",
2051
+ "units" : "octets",
2052
+ "description" :
2053
+ """Count of corrected octets in this interval.""",
2054
+ "reference" :
2055
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2056
+ }, # column
2057
+ "vdslChan1DayIntervalBadBlks" : {
2058
+ "nodetype" : "column",
2059
+ "moduleName" : "VDSL-LINE-MIB",
2060
+ "oid" : "1.3.6.1.2.1.10.97.1.1.9.1.4",
2061
+ "status" : "current",
2062
+ "syntax" : {
2063
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
2064
+ },
2065
+ "access" : "readonly",
2066
+ "units" : "blocks",
2067
+ "description" :
2068
+ """Count of uncorrectable blocks in this interval.""",
2069
+ "reference" :
2070
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2071
+ }, # column
2072
+ "vdslLineConfProfileTable" : {
2073
+ "nodetype" : "table",
2074
+ "moduleName" : "VDSL-LINE-MIB",
2075
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11",
2076
+ "status" : "current",
2077
+ "description" :
2078
+ """This table contains information on the VDSL line
2079
+ configuration. One entry in this table reflects a
2080
+ profile defined by a manager which can be used to
2081
+ configure the VDSL line.
2082
+
2083
+ Entries in this table MUST be maintained in a
2084
+ persistent manner.""",
2085
+ }, # table
2086
+ "vdslLineConfProfileEntry" : {
2087
+ "nodetype" : "row",
2088
+ "moduleName" : "VDSL-LINE-MIB",
2089
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1",
2090
+ "create" : "true",
2091
+ "status" : "current",
2092
+ "linkage" : [
2093
+ "vdslLineConfProfileName",
2094
+ ],
2095
+ "description" :
2096
+ """Each entry consists of a list of parameters that
2097
+ represents the configuration of a VDSL line.
2098
+
2099
+ A default profile with an index of 'DEFVAL', will
2100
+ always exist and its parameters will be set to vendor
2101
+ specific values, unless otherwise specified in this
2102
+ document.""",
2103
+ }, # row
2104
+ "vdslLineConfProfileName" : {
2105
+ "nodetype" : "column",
2106
+ "moduleName" : "VDSL-LINE-MIB",
2107
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.1",
2108
+ "status" : "current",
2109
+ "syntax" : {
2110
+ "type" : {
2111
+ "basetype" : "OctetString",
2112
+ "parent module" : {
2113
+ "name" : "SNMP-FRAMEWORK-MIB",
2114
+ "type" : "SnmpAdminString",
2115
+ },
2116
+ "ranges" : [
2117
+ {
2118
+ "min" : "1",
2119
+ "max" : "32"
2120
+ },
2121
+ ],
2122
+ "range" : {
2123
+ "min" : "1",
2124
+ "max" : "32"
2125
+ },
2126
+ },
2127
+ },
2128
+ "access" : "noaccess",
2129
+ "description" :
2130
+ """This object identifies a row in this table.
2131
+
2132
+ A default profile with an index of 'DEFVAL', will
2133
+ always exist and its parameters will be set to vendor
2134
+ specific values, unless otherwise specified in this
2135
+ document.""",
2136
+ }, # column
2137
+ "vdslLineConfDownRateMode" : {
2138
+ "nodetype" : "column",
2139
+ "moduleName" : "VDSL-LINE-MIB",
2140
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.2",
2141
+ "status" : "current",
2142
+ "syntax" : {
2143
+ "type" : {
2144
+ "basetype" : "Enumeration",
2145
+ "manual" : {
2146
+ "nodetype" : "namednumber",
2147
+ "number" : "1"
2148
+ },
2149
+ "adaptAtInit" : {
2150
+ "nodetype" : "namednumber",
2151
+ "number" : "2"
2152
+ },
2153
+ },
2154
+ },
2155
+ "access" : "readwrite",
2156
+ "default" : "adaptAtInit",
2157
+ "description" :
2158
+ """Specifies the rate selection behavior for the line
2159
+ in the downstream direction.
2160
+
2161
+ manual(1) forces the rate to the configured rate
2162
+ adaptAtInit(2) adapts the line based upon line quality.""",
2163
+ }, # column
2164
+ "vdslLineConfUpRateMode" : {
2165
+ "nodetype" : "column",
2166
+ "moduleName" : "VDSL-LINE-MIB",
2167
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.3",
2168
+ "status" : "current",
2169
+ "syntax" : {
2170
+ "type" : {
2171
+ "basetype" : "Enumeration",
2172
+ "manual" : {
2173
+ "nodetype" : "namednumber",
2174
+ "number" : "1"
2175
+ },
2176
+ "adaptAtInit" : {
2177
+ "nodetype" : "namednumber",
2178
+ "number" : "2"
2179
+ },
2180
+ },
2181
+ },
2182
+ "access" : "readwrite",
2183
+ "default" : "adaptAtInit",
2184
+ "description" :
2185
+ """Specifies the rate selection behavior for the line
2186
+ in the upstream direction.
2187
+
2188
+ manual(1) forces the rate to the configured rate
2189
+ adaptAtInit(2) adapts the line based upon line quality.""",
2190
+ }, # column
2191
+ "vdslLineConfDownMaxPwr" : {
2192
+ "nodetype" : "column",
2193
+ "moduleName" : "VDSL-LINE-MIB",
2194
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.4",
2195
+ "status" : "current",
2196
+ "syntax" : {
2197
+ "type" : {
2198
+ "basetype" : "Unsigned32",
2199
+ "ranges" : [
2200
+ {
2201
+ "min" : "0",
2202
+ "max" : "58"
2203
+ },
2204
+ ],
2205
+ "range" : {
2206
+ "min" : "0",
2207
+ "max" : "58"
2208
+ },
2209
+ },
2210
+ },
2211
+ "access" : "readwrite",
2212
+ "default" : "0",
2213
+ "units" : "0.25dBm",
2214
+ "description" :
2215
+ """Specifies the maximum aggregate downstream power
2216
+ level in the range 0 to 14.5 dBm.""",
2217
+ "reference" :
2218
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2219
+ }, # column
2220
+ "vdslLineConfUpMaxPwr" : {
2221
+ "nodetype" : "column",
2222
+ "moduleName" : "VDSL-LINE-MIB",
2223
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.5",
2224
+ "status" : "current",
2225
+ "syntax" : {
2226
+ "type" : {
2227
+ "basetype" : "Unsigned32",
2228
+ "ranges" : [
2229
+ {
2230
+ "min" : "0",
2231
+ "max" : "58"
2232
+ },
2233
+ ],
2234
+ "range" : {
2235
+ "min" : "0",
2236
+ "max" : "58"
2237
+ },
2238
+ },
2239
+ },
2240
+ "access" : "readwrite",
2241
+ "default" : "0",
2242
+ "units" : "0.25dBm",
2243
+ "description" :
2244
+ """Specifies the maximum aggregate upstream power
2245
+ level in the range 0 to 14.5 dBm.""",
2246
+ "reference" :
2247
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2248
+ }, # column
2249
+ "vdslLineConfDownMaxSnrMgn" : {
2250
+ "nodetype" : "column",
2251
+ "moduleName" : "VDSL-LINE-MIB",
2252
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.6",
2253
+ "status" : "current",
2254
+ "syntax" : {
2255
+ "type" : {
2256
+ "basetype" : "Unsigned32",
2257
+ "ranges" : [
2258
+ {
2259
+ "min" : "0",
2260
+ "max" : "127"
2261
+ },
2262
+ ],
2263
+ "range" : {
2264
+ "min" : "0",
2265
+ "max" : "127"
2266
+ },
2267
+ },
2268
+ },
2269
+ "access" : "readwrite",
2270
+ "default" : "0",
2271
+ "units" : "0.25dBm",
2272
+ "description" :
2273
+ """Specifies the maximum downstream Signal/Noise Margin
2274
+ in units of 0.25 dB, for a range of 0 to 31.75 dB.""",
2275
+ "reference" :
2276
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2277
+ }, # column
2278
+ "vdslLineConfDownMinSnrMgn" : {
2279
+ "nodetype" : "column",
2280
+ "moduleName" : "VDSL-LINE-MIB",
2281
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.7",
2282
+ "status" : "current",
2283
+ "syntax" : {
2284
+ "type" : {
2285
+ "basetype" : "Unsigned32",
2286
+ "ranges" : [
2287
+ {
2288
+ "min" : "0",
2289
+ "max" : "127"
2290
+ },
2291
+ ],
2292
+ "range" : {
2293
+ "min" : "0",
2294
+ "max" : "127"
2295
+ },
2296
+ },
2297
+ },
2298
+ "access" : "readwrite",
2299
+ "default" : "0",
2300
+ "units" : "0.25dBm",
2301
+ "description" :
2302
+ """Specifies the minimum downstream Signal/Noise Margin
2303
+ in units of 0.25 dB, for a range of 0 to 31.75 dB.""",
2304
+ "reference" :
2305
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2306
+ }, # column
2307
+ "vdslLineConfDownTargetSnrMgn" : {
2308
+ "nodetype" : "column",
2309
+ "moduleName" : "VDSL-LINE-MIB",
2310
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.8",
2311
+ "status" : "current",
2312
+ "syntax" : {
2313
+ "type" : {
2314
+ "basetype" : "Unsigned32",
2315
+ "ranges" : [
2316
+ {
2317
+ "min" : "0",
2318
+ "max" : "127"
2319
+ },
2320
+ ],
2321
+ "range" : {
2322
+ "min" : "0",
2323
+ "max" : "127"
2324
+ },
2325
+ },
2326
+ },
2327
+ "access" : "readwrite",
2328
+ "default" : "0",
2329
+ "units" : "0.25dBm",
2330
+ "description" :
2331
+ """Specifies the target downstream Signal/Noise Margin
2332
+ in units of 0.25 dB, for a range of 0 to 31.75 dB.
2333
+ This is the Noise Margin the transceivers must achieve
2334
+ with a BER of 10^-7 or better to successfully complete
2335
+ initialization.""",
2336
+ "reference" :
2337
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2338
+ }, # column
2339
+ "vdslLineConfUpMaxSnrMgn" : {
2340
+ "nodetype" : "column",
2341
+ "moduleName" : "VDSL-LINE-MIB",
2342
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.9",
2343
+ "status" : "current",
2344
+ "syntax" : {
2345
+ "type" : {
2346
+ "basetype" : "Unsigned32",
2347
+ "ranges" : [
2348
+ {
2349
+ "min" : "0",
2350
+ "max" : "127"
2351
+ },
2352
+ ],
2353
+ "range" : {
2354
+ "min" : "0",
2355
+ "max" : "127"
2356
+ },
2357
+ },
2358
+ },
2359
+ "access" : "readwrite",
2360
+ "default" : "0",
2361
+ "units" : "0.25dBm",
2362
+ "description" :
2363
+ """Specifies the maximum upstream Signal/Noise Margin
2364
+ in units of 0.25 dB, for a range of 0 to 31.75 dB.""",
2365
+ "reference" :
2366
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2367
+ }, # column
2368
+ "vdslLineConfUpMinSnrMgn" : {
2369
+ "nodetype" : "column",
2370
+ "moduleName" : "VDSL-LINE-MIB",
2371
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.10",
2372
+ "status" : "current",
2373
+ "syntax" : {
2374
+ "type" : {
2375
+ "basetype" : "Unsigned32",
2376
+ "ranges" : [
2377
+ {
2378
+ "min" : "0",
2379
+ "max" : "127"
2380
+ },
2381
+ ],
2382
+ "range" : {
2383
+ "min" : "0",
2384
+ "max" : "127"
2385
+ },
2386
+ },
2387
+ },
2388
+ "access" : "readwrite",
2389
+ "default" : "0",
2390
+ "units" : "0.25dBm",
2391
+ "description" :
2392
+ """Specifies the minimum upstream Signal/Noise Margin
2393
+ in units of 0.25 dB, for a range of 0 to 31.75 dB.""",
2394
+ "reference" :
2395
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2396
+ }, # column
2397
+ "vdslLineConfUpTargetSnrMgn" : {
2398
+ "nodetype" : "column",
2399
+ "moduleName" : "VDSL-LINE-MIB",
2400
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.11",
2401
+ "status" : "current",
2402
+ "syntax" : {
2403
+ "type" : {
2404
+ "basetype" : "Unsigned32",
2405
+ "ranges" : [
2406
+ {
2407
+ "min" : "0",
2408
+ "max" : "127"
2409
+ },
2410
+ ],
2411
+ "range" : {
2412
+ "min" : "0",
2413
+ "max" : "127"
2414
+ },
2415
+ },
2416
+ },
2417
+ "access" : "readwrite",
2418
+ "default" : "0",
2419
+ "units" : "0.25dBm",
2420
+ "description" :
2421
+ """Specifies the target upstream Signal/Noise Margin in
2422
+ units of 0.25 dB, for a range of 0 to 31.75 dB. This
2423
+ is the Noise Margin the transceivers must achieve with
2424
+ a BER of 10^-7 or better to successfully complete
2425
+ initialization.""",
2426
+ "reference" :
2427
+ """T1E1.4/2000-009R3, Part 1, common spec""",
2428
+ }, # column
2429
+ "vdslLineConfDownFastMaxDataRate" : {
2430
+ "nodetype" : "column",
2431
+ "moduleName" : "VDSL-LINE-MIB",
2432
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.12",
2433
+ "status" : "current",
2434
+ "syntax" : {
2435
+ "type" : { "module" :"", "name" : "Unsigned32"},
2436
+ },
2437
+ "access" : "readwrite",
2438
+ "default" : "0",
2439
+ "units" : "kbps",
2440
+ "description" :
2441
+ """Specifies the maximum downstream fast channel
2442
+ data rate in steps of 1000 bits/second.""",
2443
+ }, # column
2444
+ "vdslLineConfDownFastMinDataRate" : {
2445
+ "nodetype" : "column",
2446
+ "moduleName" : "VDSL-LINE-MIB",
2447
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.13",
2448
+ "status" : "current",
2449
+ "syntax" : {
2450
+ "type" : { "module" :"", "name" : "Unsigned32"},
2451
+ },
2452
+ "access" : "readwrite",
2453
+ "default" : "0",
2454
+ "units" : "kbps",
2455
+ "description" :
2456
+ """Specifies the minimum downstream fast channel
2457
+ data rate in steps of 1000 bits/second.""",
2458
+ }, # column
2459
+ "vdslLineConfDownSlowMaxDataRate" : {
2460
+ "nodetype" : "column",
2461
+ "moduleName" : "VDSL-LINE-MIB",
2462
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.14",
2463
+ "status" : "current",
2464
+ "syntax" : {
2465
+ "type" : { "module" :"", "name" : "Unsigned32"},
2466
+ },
2467
+ "access" : "readwrite",
2468
+ "default" : "0",
2469
+ "units" : "kbps",
2470
+ "description" :
2471
+ """Specifies the maximum downstream slow channel
2472
+ data rate in steps of 1000 bits/second.
2473
+
2474
+ The maximum aggregate downstream transmit speed
2475
+ of the line can be derived from the sum of maximum
2476
+ downstream fast and slow channel data rates.""",
2477
+ }, # column
2478
+ "vdslLineConfDownSlowMinDataRate" : {
2479
+ "nodetype" : "column",
2480
+ "moduleName" : "VDSL-LINE-MIB",
2481
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.15",
2482
+ "status" : "current",
2483
+ "syntax" : {
2484
+ "type" : { "module" :"", "name" : "Unsigned32"},
2485
+ },
2486
+ "access" : "readwrite",
2487
+ "default" : "0",
2488
+ "units" : "kbps",
2489
+ "description" :
2490
+ """Specifies the minimum downstream slow channel
2491
+ data rate in steps of 1000 bits/second.
2492
+
2493
+ The minimum aggregate downstream transmit speed
2494
+ of the line can be derived from the sum of minimum
2495
+ downstream fast and slow channel data rates.""",
2496
+ }, # column
2497
+ "vdslLineConfUpFastMaxDataRate" : {
2498
+ "nodetype" : "column",
2499
+ "moduleName" : "VDSL-LINE-MIB",
2500
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.16",
2501
+ "status" : "current",
2502
+ "syntax" : {
2503
+ "type" : { "module" :"", "name" : "Unsigned32"},
2504
+ },
2505
+ "access" : "readwrite",
2506
+ "default" : "0",
2507
+ "units" : "kbps",
2508
+ "description" :
2509
+ """Specifies the maximum upstream fast channel
2510
+ data rate in steps of 1000 bits/second.
2511
+
2512
+ The maximum aggregate upstream transmit speed
2513
+ of the line can be derived from the sum of maximum
2514
+ upstream fast and slow channel data rates.""",
2515
+ }, # column
2516
+ "vdslLineConfUpFastMinDataRate" : {
2517
+ "nodetype" : "column",
2518
+ "moduleName" : "VDSL-LINE-MIB",
2519
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.17",
2520
+ "status" : "current",
2521
+ "syntax" : {
2522
+ "type" : { "module" :"", "name" : "Unsigned32"},
2523
+ },
2524
+ "access" : "readwrite",
2525
+ "default" : "0",
2526
+ "units" : "kbps",
2527
+ "description" :
2528
+ """Specifies the minimum upstream fast channel
2529
+ data rate in steps of 1000 bits/second.
2530
+
2531
+
2532
+
2533
+ The minimum aggregate upstream transmit speed
2534
+ of the line can be derived from the sum of minimum
2535
+ upstream fast and slow channel data rates.""",
2536
+ }, # column
2537
+ "vdslLineConfUpSlowMaxDataRate" : {
2538
+ "nodetype" : "column",
2539
+ "moduleName" : "VDSL-LINE-MIB",
2540
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.18",
2541
+ "status" : "current",
2542
+ "syntax" : {
2543
+ "type" : { "module" :"", "name" : "Unsigned32"},
2544
+ },
2545
+ "access" : "readwrite",
2546
+ "default" : "0",
2547
+ "units" : "kbps",
2548
+ "description" :
2549
+ """Specifies the maximum upstream slow channel
2550
+ data rate in steps of 1000 bits/second.""",
2551
+ }, # column
2552
+ "vdslLineConfUpSlowMinDataRate" : {
2553
+ "nodetype" : "column",
2554
+ "moduleName" : "VDSL-LINE-MIB",
2555
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.19",
2556
+ "status" : "current",
2557
+ "syntax" : {
2558
+ "type" : { "module" :"", "name" : "Unsigned32"},
2559
+ },
2560
+ "access" : "readwrite",
2561
+ "default" : "0",
2562
+ "units" : "kbps",
2563
+ "description" :
2564
+ """Specifies the minimum upstream slow channel
2565
+ data rate in steps of 1000 bits/second.""",
2566
+ }, # column
2567
+ "vdslLineConfDownRateRatio" : {
2568
+ "nodetype" : "column",
2569
+ "moduleName" : "VDSL-LINE-MIB",
2570
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.20",
2571
+ "status" : "current",
2572
+ "syntax" : {
2573
+ "type" : {
2574
+ "basetype" : "Unsigned32",
2575
+ "ranges" : [
2576
+ {
2577
+ "min" : "0",
2578
+ "max" : "100"
2579
+ },
2580
+ ],
2581
+ "range" : {
2582
+ "min" : "0",
2583
+ "max" : "100"
2584
+ },
2585
+ },
2586
+ },
2587
+ "access" : "readwrite",
2588
+ "default" : "0",
2589
+ "units" : "percent",
2590
+ "description" :
2591
+ """For dynamic rate adaptation at startup, the allocation
2592
+ of data rate in excess of the minimum data rate for each
2593
+ channel is controlled by the object. This object specifies
2594
+ the ratio of the allocation of the excess data rate between
2595
+ the fast and the slow channels. This allocation represents
2596
+ downstream Fast Channel Allocation / Slow Channel
2597
+ Allocation.""",
2598
+ }, # column
2599
+ "vdslLineConfUpRateRatio" : {
2600
+ "nodetype" : "column",
2601
+ "moduleName" : "VDSL-LINE-MIB",
2602
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.21",
2603
+ "status" : "current",
2604
+ "syntax" : {
2605
+ "type" : {
2606
+ "basetype" : "Unsigned32",
2607
+ "ranges" : [
2608
+ {
2609
+ "min" : "0",
2610
+ "max" : "100"
2611
+ },
2612
+ ],
2613
+ "range" : {
2614
+ "min" : "0",
2615
+ "max" : "100"
2616
+ },
2617
+ },
2618
+ },
2619
+ "access" : "readwrite",
2620
+ "default" : "0",
2621
+ "units" : "percent",
2622
+ "description" :
2623
+ """For dynamic rate adaptation at startup, the allocation
2624
+ of data rate in excess of the minimum data rate for each
2625
+ channel is controlled by the object. This object specifies
2626
+ the ratio of the allocation of the excess data rate between
2627
+ the fast and the slow channels. This allocation represents
2628
+ upstream Fast Channel Allocation/Slow Channel Allocation.""",
2629
+ }, # column
2630
+ "vdslLineConfDownMaxInterDelay" : {
2631
+ "nodetype" : "column",
2632
+ "moduleName" : "VDSL-LINE-MIB",
2633
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.22",
2634
+ "status" : "current",
2635
+ "syntax" : {
2636
+ "type" : {
2637
+ "basetype" : "Unsigned32",
2638
+ "ranges" : [
2639
+ {
2640
+ "min" : "0",
2641
+ "max" : "255"
2642
+ },
2643
+ ],
2644
+ "range" : {
2645
+ "min" : "0",
2646
+ "max" : "255"
2647
+ },
2648
+ },
2649
+ },
2650
+ "access" : "readwrite",
2651
+ "default" : "0",
2652
+ "units" : "milliseconds",
2653
+ "description" :
2654
+ """Specifies the maximum interleave delay for the
2655
+ downstream slow channel.""",
2656
+ }, # column
2657
+ "vdslLineConfUpMaxInterDelay" : {
2658
+ "nodetype" : "column",
2659
+ "moduleName" : "VDSL-LINE-MIB",
2660
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.23",
2661
+ "status" : "current",
2662
+ "syntax" : {
2663
+ "type" : {
2664
+ "basetype" : "Unsigned32",
2665
+ "ranges" : [
2666
+ {
2667
+ "min" : "0",
2668
+ "max" : "255"
2669
+ },
2670
+ ],
2671
+ "range" : {
2672
+ "min" : "0",
2673
+ "max" : "255"
2674
+ },
2675
+ },
2676
+ },
2677
+ "access" : "readwrite",
2678
+ "default" : "0",
2679
+ "units" : "milliseconds",
2680
+ "description" :
2681
+ """Specifies the maximum interleave delay for the
2682
+ upstream slow channel.""",
2683
+ }, # column
2684
+ "vdslLineConfDownPboControl" : {
2685
+ "nodetype" : "column",
2686
+ "moduleName" : "VDSL-LINE-MIB",
2687
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.24",
2688
+ "status" : "current",
2689
+ "syntax" : {
2690
+ "type" : {
2691
+ "basetype" : "Enumeration",
2692
+ "disabled" : {
2693
+ "nodetype" : "namednumber",
2694
+ "number" : "1"
2695
+ },
2696
+ "auto" : {
2697
+ "nodetype" : "namednumber",
2698
+ "number" : "2"
2699
+ },
2700
+ "manual" : {
2701
+ "nodetype" : "namednumber",
2702
+ "number" : "3"
2703
+ },
2704
+ },
2705
+ },
2706
+ "access" : "readwrite",
2707
+ "default" : "disabled",
2708
+ "description" :
2709
+ """Downstream power backoff (PBO) control for this
2710
+ line. For transceivers which do not support downstream
2711
+ PBO control, this object MUST be fixed at disabled(1).
2712
+ If auto(2) is selected, the transceiver will automatically
2713
+ adjust the power backoff. If manual(3) is selected,
2714
+
2715
+
2716
+
2717
+ then the transceiver will use the value from
2718
+ vdslLineConfDownPboLevel.""",
2719
+ }, # column
2720
+ "vdslLineConfUpPboControl" : {
2721
+ "nodetype" : "column",
2722
+ "moduleName" : "VDSL-LINE-MIB",
2723
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.25",
2724
+ "status" : "current",
2725
+ "syntax" : {
2726
+ "type" : {
2727
+ "basetype" : "Enumeration",
2728
+ "disabled" : {
2729
+ "nodetype" : "namednumber",
2730
+ "number" : "1"
2731
+ },
2732
+ "auto" : {
2733
+ "nodetype" : "namednumber",
2734
+ "number" : "2"
2735
+ },
2736
+ "manual" : {
2737
+ "nodetype" : "namednumber",
2738
+ "number" : "3"
2739
+ },
2740
+ },
2741
+ },
2742
+ "access" : "readwrite",
2743
+ "default" : "disabled",
2744
+ "description" :
2745
+ """Upstream power backoff (PBO) control for this
2746
+ line. For transceivers which do not support upstream
2747
+ PBO control, this object MUST be fixed at disabled(1).
2748
+ If auto(2) is selected, the transceiver will automatically
2749
+ adjust the power backoff. If manual(3) is selected,
2750
+ then the transceiver will use the value from
2751
+ vdslLineConfUpPboLevel.""",
2752
+ }, # column
2753
+ "vdslLineConfDownPboLevel" : {
2754
+ "nodetype" : "column",
2755
+ "moduleName" : "VDSL-LINE-MIB",
2756
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.26",
2757
+ "status" : "current",
2758
+ "syntax" : {
2759
+ "type" : {
2760
+ "basetype" : "Unsigned32",
2761
+ "ranges" : [
2762
+ {
2763
+ "min" : "0",
2764
+ "max" : "160"
2765
+ },
2766
+ ],
2767
+ "range" : {
2768
+ "min" : "0",
2769
+ "max" : "160"
2770
+ },
2771
+ },
2772
+ },
2773
+ "access" : "readwrite",
2774
+ "default" : "0",
2775
+ "units" : "0.25dB",
2776
+ "description" :
2777
+ """Specifies the downstream backoff level to be used
2778
+ when vdslLineConfDownPboControl = manual(3).""",
2779
+ }, # column
2780
+ "vdslLineConfUpPboLevel" : {
2781
+ "nodetype" : "column",
2782
+ "moduleName" : "VDSL-LINE-MIB",
2783
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.27",
2784
+ "status" : "current",
2785
+ "syntax" : {
2786
+ "type" : {
2787
+ "basetype" : "Unsigned32",
2788
+ "ranges" : [
2789
+ {
2790
+ "min" : "0",
2791
+ "max" : "160"
2792
+ },
2793
+ ],
2794
+ "range" : {
2795
+ "min" : "0",
2796
+ "max" : "160"
2797
+ },
2798
+ },
2799
+ },
2800
+ "access" : "readwrite",
2801
+ "default" : "0",
2802
+ "units" : "0.25dB",
2803
+ "description" :
2804
+ """Specifies the upstream backoff level to be used
2805
+ when vdslLineConfUpPboControl = manual(3).""",
2806
+ }, # column
2807
+ "vdslLineConfDeploymentScenario" : {
2808
+ "nodetype" : "column",
2809
+ "moduleName" : "VDSL-LINE-MIB",
2810
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.28",
2811
+ "status" : "current",
2812
+ "syntax" : {
2813
+ "type" : {
2814
+ "basetype" : "Enumeration",
2815
+ "fttCab" : {
2816
+ "nodetype" : "namednumber",
2817
+ "number" : "1"
2818
+ },
2819
+ "fttEx" : {
2820
+ "nodetype" : "namednumber",
2821
+ "number" : "2"
2822
+ },
2823
+ "other" : {
2824
+ "nodetype" : "namednumber",
2825
+ "number" : "3"
2826
+ },
2827
+ },
2828
+ },
2829
+ "access" : "readwrite",
2830
+ "default" : "fttCab",
2831
+ "description" :
2832
+ """The VDSL line deployment scenario. When using
2833
+ fttCab(1), the VTU-C is located in a street cabinet.
2834
+ When using fttEx(2), the VTU-C is located at the
2835
+ central office. Changes to this value will have
2836
+ no effect on the transceiver.""",
2837
+ "reference" :
2838
+ """DSL Forum TR-057""",
2839
+ }, # column
2840
+ "vdslLineConfAdslPresence" : {
2841
+ "nodetype" : "column",
2842
+ "moduleName" : "VDSL-LINE-MIB",
2843
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.29",
2844
+ "status" : "current",
2845
+ "syntax" : {
2846
+ "type" : {
2847
+ "basetype" : "Enumeration",
2848
+ "none" : {
2849
+ "nodetype" : "namednumber",
2850
+ "number" : "1"
2851
+ },
2852
+ "adslOverPots" : {
2853
+ "nodetype" : "namednumber",
2854
+ "number" : "2"
2855
+ },
2856
+ "adslOverISDN" : {
2857
+ "nodetype" : "namednumber",
2858
+ "number" : "3"
2859
+ },
2860
+ },
2861
+ },
2862
+ "access" : "readwrite",
2863
+ "default" : "none",
2864
+ "description" :
2865
+ """Indicates presence of ADSL service in the associated
2866
+ cable bundle/binder.
2867
+
2868
+ none(1) indicates no ADSL service in the bundle
2869
+ adslOverPots(2) indicates ADSL service over POTS is
2870
+ present in the bundle
2871
+ adslOverISDN(3) indicates ADSL service over ISDN is
2872
+ present in the bundle""",
2873
+ }, # column
2874
+ "vdslLineConfApplicableStandard" : {
2875
+ "nodetype" : "column",
2876
+ "moduleName" : "VDSL-LINE-MIB",
2877
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.30",
2878
+ "status" : "current",
2879
+ "syntax" : {
2880
+ "type" : {
2881
+ "basetype" : "Enumeration",
2882
+ "ansi" : {
2883
+ "nodetype" : "namednumber",
2884
+ "number" : "1"
2885
+ },
2886
+ "etsi" : {
2887
+ "nodetype" : "namednumber",
2888
+ "number" : "2"
2889
+ },
2890
+ "itu" : {
2891
+ "nodetype" : "namednumber",
2892
+ "number" : "3"
2893
+ },
2894
+ "other" : {
2895
+ "nodetype" : "namednumber",
2896
+ "number" : "4"
2897
+ },
2898
+ },
2899
+ },
2900
+ "access" : "readwrite",
2901
+ "default" : "ansi",
2902
+ "description" :
2903
+ """The VDSL standard to be used for the line.
2904
+
2905
+ ansi(1) indicates ANSI standard
2906
+ etsi(2) indicates ETSI standard
2907
+ itu(3) indicates ITU standard
2908
+ other(4) indicates a standard other than the above.""",
2909
+ }, # column
2910
+ "vdslLineConfBandPlan" : {
2911
+ "nodetype" : "column",
2912
+ "moduleName" : "VDSL-LINE-MIB",
2913
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.31",
2914
+ "status" : "current",
2915
+ "syntax" : {
2916
+ "type" : {
2917
+ "basetype" : "Enumeration",
2918
+ "bandPlan997" : {
2919
+ "nodetype" : "namednumber",
2920
+ "number" : "1"
2921
+ },
2922
+ "bandPlan998" : {
2923
+ "nodetype" : "namednumber",
2924
+ "number" : "2"
2925
+ },
2926
+ "bandPlanFx" : {
2927
+ "nodetype" : "namednumber",
2928
+ "number" : "3"
2929
+ },
2930
+ "other" : {
2931
+ "nodetype" : "namednumber",
2932
+ "number" : "4"
2933
+ },
2934
+ },
2935
+ },
2936
+ "access" : "readwrite",
2937
+ "default" : "bandPlan997",
2938
+ "description" :
2939
+ """The VDSL band plan to be used for the line.
2940
+
2941
+ bandPlan997(1) is to be used for
2942
+ ITU-T G.993.1 Bandplan-B
2943
+ ETSI Bandplan
2944
+ ANSI Plan 997
2945
+
2946
+ bandPlan998(2) is to be used for
2947
+ ITU-T G.993.1 Bandplan-A
2948
+ ANSI Plan 998
2949
+
2950
+ bandPlanFx(3) is to be used for
2951
+ ITU-T G.993.1 Bandplan-C.
2952
+
2953
+ other(4) is to be used for
2954
+ non-standard bandplans.
2955
+
2956
+ If this object is set to bandPlanFx(3), then the
2957
+ object vdslLineConfBandPlanFx MUST also be set.""",
2958
+ }, # column
2959
+ "vdslLineConfBandPlanFx" : {
2960
+ "nodetype" : "column",
2961
+ "moduleName" : "VDSL-LINE-MIB",
2962
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.32",
2963
+ "status" : "current",
2964
+ "syntax" : {
2965
+ "type" : {
2966
+ "basetype" : "Unsigned32",
2967
+ "ranges" : [
2968
+ {
2969
+ "min" : "3750",
2970
+ "max" : "12000"
2971
+ },
2972
+ ],
2973
+ "range" : {
2974
+ "min" : "3750",
2975
+ "max" : "12000"
2976
+ },
2977
+ },
2978
+ },
2979
+ "access" : "readwrite",
2980
+ "default" : "3750",
2981
+ "units" : "kHz",
2982
+ "description" :
2983
+ """The frequency limit between bands D2 and U2 when
2984
+ vdslLineConfBandPlan is set to bandPlanFx(3).""",
2985
+ }, # column
2986
+ "vdslLineConfBandOptUsage" : {
2987
+ "nodetype" : "column",
2988
+ "moduleName" : "VDSL-LINE-MIB",
2989
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.33",
2990
+ "status" : "current",
2991
+ "syntax" : {
2992
+ "type" : {
2993
+ "basetype" : "Enumeration",
2994
+ "unused" : {
2995
+ "nodetype" : "namednumber",
2996
+ "number" : "1"
2997
+ },
2998
+ "upstream" : {
2999
+ "nodetype" : "namednumber",
3000
+ "number" : "2"
3001
+ },
3002
+ "downstream" : {
3003
+ "nodetype" : "namednumber",
3004
+ "number" : "3"
3005
+ },
3006
+ },
3007
+ },
3008
+ "access" : "readwrite",
3009
+ "default" : "unused",
3010
+ "description" :
3011
+ """Defines the VDSL link use of the optional frequency
3012
+ range [25kHz - 138kHz] (Opt).
3013
+
3014
+ unused(1) indicates Opt is unused
3015
+ upstream(2) indicates Opt usage is for upstream
3016
+ downstream(3) indicates Opt usage is for downstream.""",
3017
+ "reference" :
3018
+ """ITU-T G.993.1, section 6.1""",
3019
+ }, # column
3020
+ "vdslLineConfUpPsdTemplate" : {
3021
+ "nodetype" : "column",
3022
+ "moduleName" : "VDSL-LINE-MIB",
3023
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.34",
3024
+ "status" : "current",
3025
+ "syntax" : {
3026
+ "type" : {
3027
+ "basetype" : "Enumeration",
3028
+ "templateMask1" : {
3029
+ "nodetype" : "namednumber",
3030
+ "number" : "1"
3031
+ },
3032
+ "templateMask2" : {
3033
+ "nodetype" : "namednumber",
3034
+ "number" : "2"
3035
+ },
3036
+ },
3037
+ },
3038
+ "access" : "readwrite",
3039
+ "default" : "templateMask1",
3040
+ "description" :
3041
+ """The upstream PSD template to be used for the line.
3042
+ Here, templateMask1(1) refers to a notched mask that
3043
+ limits the transmitted PSD within the internationally
3044
+ standardized HAM (Handheld Amateur Radio) radio bands,
3045
+ while templateMask2(2) refers to an unnotched mask.
3046
+
3047
+ The masks themselves depend upon the applicable
3048
+ standard being used (vdslLineConfApplicableStandard).""",
3049
+ "reference" :
3050
+ """DSL TR-057""",
3051
+ }, # column
3052
+ "vdslLineConfDownPsdTemplate" : {
3053
+ "nodetype" : "column",
3054
+ "moduleName" : "VDSL-LINE-MIB",
3055
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.35",
3056
+ "status" : "current",
3057
+ "syntax" : {
3058
+ "type" : {
3059
+ "basetype" : "Enumeration",
3060
+ "templateMask1" : {
3061
+ "nodetype" : "namednumber",
3062
+ "number" : "1"
3063
+ },
3064
+ "templateMask2" : {
3065
+ "nodetype" : "namednumber",
3066
+ "number" : "2"
3067
+ },
3068
+ },
3069
+ },
3070
+ "access" : "readwrite",
3071
+ "default" : "templateMask1",
3072
+ "description" :
3073
+ """The downstream PSD template to be used for the line.
3074
+ Here, templateMask1(1) refers to a notched mask that
3075
+ limits the transmitted PSD within the internationally
3076
+ standardized HAM (Handheld Amateur Radio) radio bands,
3077
+ while templateMask2(2) refers to an unnotched mask.
3078
+
3079
+ The masks themselves depend upon the applicable
3080
+ standard being used (vdslLineConfApplicableStandard).""",
3081
+ "reference" :
3082
+ """DSL TR-057""",
3083
+ }, # column
3084
+ "vdslLineConfHamBandMask" : {
3085
+ "nodetype" : "column",
3086
+ "moduleName" : "VDSL-LINE-MIB",
3087
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.36",
3088
+ "status" : "current",
3089
+ "syntax" : {
3090
+ "type" : {
3091
+ "basetype" : "Bits",
3092
+ "customNotch1" : {
3093
+ "nodetype" : "namednumber",
3094
+ "number" : "0"
3095
+ },
3096
+ "customNotch2" : {
3097
+ "nodetype" : "namednumber",
3098
+ "number" : "1"
3099
+ },
3100
+ "amateurBand30m" : {
3101
+ "nodetype" : "namednumber",
3102
+ "number" : "2"
3103
+ },
3104
+ "amateurBand40m" : {
3105
+ "nodetype" : "namednumber",
3106
+ "number" : "3"
3107
+ },
3108
+ "amateurBand80m" : {
3109
+ "nodetype" : "namednumber",
3110
+ "number" : "4"
3111
+ },
3112
+ "amateurBand160m" : {
3113
+ "nodetype" : "namednumber",
3114
+ "number" : "5"
3115
+ },
3116
+ },
3117
+ },
3118
+ "access" : "readwrite",
3119
+ "default" : "()",
3120
+ "description" :
3121
+ """The transmit power spectral density mask code, used
3122
+ to avoid interference with HAM (Handheld Amateur Radio)
3123
+ radio bands by introducing power control (notching) in one
3124
+ or more of these bands.
3125
+
3126
+ Amateur radio band notching is defined in the VDSL
3127
+ spectrum as follows:
3128
+
3129
+ Band Start Frequency Stop Frequency
3130
+ ---- ------------------ --------------------------------
3131
+ 30m 1810 kHz 2000 kHz
3132
+ 40m 3500 kHz 3800 kHz (ETSI); 4000 kHz (ANSI)
3133
+ 80m 7000 kHz 7100 kHz (ETSI); 7300 kHz (ANSI)
3134
+ 160m 10100 kHz 10150 kHz
3135
+
3136
+
3137
+
3138
+ Notching for each standard band can be enabled or disabled
3139
+ via the bit mask.
3140
+
3141
+ Two custom notches may be specified. If either of these
3142
+ are enabled via the bit mask, then the following objects
3143
+ MUST be specified:
3144
+
3145
+ If customNotch1 is enabled, then both
3146
+ vdslLineConfCustomNotch1Start
3147
+ vdslLineConfCustomNotch1Stop
3148
+ MUST be specified.
3149
+
3150
+ If customNotch2 is enabled, then both
3151
+ vdslLineConfCustomNotch2Start
3152
+ vdslLineConfCustomNotch2Stop
3153
+ MUST be specified.""",
3154
+ "reference" :
3155
+ """DSLF TR-057, section 2.6""",
3156
+ }, # column
3157
+ "vdslLineConfCustomNotch1Start" : {
3158
+ "nodetype" : "column",
3159
+ "moduleName" : "VDSL-LINE-MIB",
3160
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.37",
3161
+ "status" : "current",
3162
+ "syntax" : {
3163
+ "type" : { "module" :"", "name" : "Unsigned32"},
3164
+ },
3165
+ "access" : "readwrite",
3166
+ "default" : "0",
3167
+ "units" : "kHz",
3168
+ "description" :
3169
+ """Specifies the start frequency of custom HAM (Handheld
3170
+ Amateur Radio) notch 1. vdslLineConfCustomNotch1Start MUST
3171
+ be less than or equal to vdslLineConfCustomNotch1Stop.""",
3172
+ }, # column
3173
+ "vdslLineConfCustomNotch1Stop" : {
3174
+ "nodetype" : "column",
3175
+ "moduleName" : "VDSL-LINE-MIB",
3176
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.38",
3177
+ "status" : "current",
3178
+ "syntax" : {
3179
+ "type" : { "module" :"", "name" : "Unsigned32"},
3180
+ },
3181
+ "access" : "readwrite",
3182
+ "default" : "0",
3183
+ "units" : "kHz",
3184
+ "description" :
3185
+ """Specifies the stop frequency of custom HAM (Handheld
3186
+ Amateur Radio) notch 1. vdslLineConfCustomNotch1Stop MUST
3187
+ be greater than or equal to vdslLineConfCustomNotch1Start.""",
3188
+ }, # column
3189
+ "vdslLineConfCustomNotch2Start" : {
3190
+ "nodetype" : "column",
3191
+ "moduleName" : "VDSL-LINE-MIB",
3192
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.39",
3193
+ "status" : "current",
3194
+ "syntax" : {
3195
+ "type" : { "module" :"", "name" : "Unsigned32"},
3196
+ },
3197
+ "access" : "readwrite",
3198
+ "default" : "0",
3199
+ "units" : "kHz",
3200
+ "description" :
3201
+ """Specifies the start frequency of custom HAM (Handheld
3202
+ Amateur Radio) notch 2. vdslLineConfCustomNotch2Start MUST
3203
+ be less than or equal to vdslLineConfCustomNotch2Stop.""",
3204
+ }, # column
3205
+ "vdslLineConfCustomNotch2Stop" : {
3206
+ "nodetype" : "column",
3207
+ "moduleName" : "VDSL-LINE-MIB",
3208
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.40",
3209
+ "status" : "current",
3210
+ "syntax" : {
3211
+ "type" : { "module" :"", "name" : "Unsigned32"},
3212
+ },
3213
+ "access" : "readwrite",
3214
+ "default" : "0",
3215
+ "units" : "kHz",
3216
+ "description" :
3217
+ """Specifies the stop frequency of custom HAM (Handheld
3218
+ Amateur Radio) notch 2. vdslLineConfCustomNotch2Stop MUST
3219
+ be greater than or equal to vdslLineConfCustomNotch2Start.""",
3220
+ }, # column
3221
+ "vdslLineConfDownTargetSlowBurst" : {
3222
+ "nodetype" : "column",
3223
+ "moduleName" : "VDSL-LINE-MIB",
3224
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.41",
3225
+ "status" : "current",
3226
+ "syntax" : {
3227
+ "type" : {
3228
+ "basetype" : "Unsigned32",
3229
+ "ranges" : [
3230
+ {
3231
+ "min" : "0",
3232
+ "max" : "1275"
3233
+ },
3234
+ ],
3235
+ "range" : {
3236
+ "min" : "0",
3237
+ "max" : "1275"
3238
+ },
3239
+ },
3240
+ },
3241
+ "access" : "readwrite",
3242
+ "default" : "0",
3243
+ "units" : "microseconds",
3244
+ "description" :
3245
+ """Specifies the target level of impulse noise (burst)
3246
+ protection for an interleaved (slow) channel.""",
3247
+ "reference" :
3248
+ """ITU-T G.997.1, section 7.3.2.3""",
3249
+ }, # column
3250
+ "vdslLineConfUpTargetSlowBurst" : {
3251
+ "nodetype" : "column",
3252
+ "moduleName" : "VDSL-LINE-MIB",
3253
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.42",
3254
+ "status" : "current",
3255
+ "syntax" : {
3256
+ "type" : {
3257
+ "basetype" : "Unsigned32",
3258
+ "ranges" : [
3259
+ {
3260
+ "min" : "0",
3261
+ "max" : "1275"
3262
+ },
3263
+ ],
3264
+ "range" : {
3265
+ "min" : "0",
3266
+ "max" : "1275"
3267
+ },
3268
+ },
3269
+ },
3270
+ "access" : "readwrite",
3271
+ "default" : "0",
3272
+ "units" : "microseconds",
3273
+ "description" :
3274
+ """Specifies the target level of impulse noise (burst)
3275
+ protection for an interleaved (slow) channel.""",
3276
+ "reference" :
3277
+ """ITU-T G.997.1, section 7.3.2.3""",
3278
+ }, # column
3279
+ "vdslLineConfDownMaxFastFec" : {
3280
+ "nodetype" : "column",
3281
+ "moduleName" : "VDSL-LINE-MIB",
3282
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.43",
3283
+ "status" : "current",
3284
+ "syntax" : {
3285
+ "type" : {
3286
+ "basetype" : "Unsigned32",
3287
+ "ranges" : [
3288
+ {
3289
+ "min" : "0",
3290
+ "max" : "50"
3291
+ },
3292
+ ],
3293
+ "range" : {
3294
+ "min" : "0",
3295
+ "max" : "50"
3296
+ },
3297
+ },
3298
+ },
3299
+ "access" : "readwrite",
3300
+ "default" : "0",
3301
+ "units" : "%",
3302
+ "description" :
3303
+ """This parameter provisions the maximum level of Forward
3304
+ Error Correction (FEC) redundancy related overhead to
3305
+ be maintained for a fast channel.""",
3306
+ }, # column
3307
+ "vdslLineConfUpMaxFastFec" : {
3308
+ "nodetype" : "column",
3309
+ "moduleName" : "VDSL-LINE-MIB",
3310
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.44",
3311
+ "status" : "current",
3312
+ "syntax" : {
3313
+ "type" : {
3314
+ "basetype" : "Unsigned32",
3315
+ "ranges" : [
3316
+ {
3317
+ "min" : "0",
3318
+ "max" : "50"
3319
+ },
3320
+ ],
3321
+ "range" : {
3322
+ "min" : "0",
3323
+ "max" : "50"
3324
+ },
3325
+ },
3326
+ },
3327
+ "access" : "readwrite",
3328
+ "default" : "0",
3329
+ "units" : "%",
3330
+ "description" :
3331
+ """This parameter provisions the maximum level of Forward
3332
+ Error Correction (FEC) redundancy related overhead to
3333
+ be maintained for a fast channel.""",
3334
+ }, # column
3335
+ "vdslLineConfLineType" : {
3336
+ "nodetype" : "column",
3337
+ "moduleName" : "VDSL-LINE-MIB",
3338
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.45",
3339
+ "status" : "current",
3340
+ "syntax" : {
3341
+ "type" : {
3342
+ "basetype" : "Enumeration",
3343
+ "noChannel" : {
3344
+ "nodetype" : "namednumber",
3345
+ "number" : "1"
3346
+ },
3347
+ "fastOnly" : {
3348
+ "nodetype" : "namednumber",
3349
+ "number" : "2"
3350
+ },
3351
+ "interleavedOnly" : {
3352
+ "nodetype" : "namednumber",
3353
+ "number" : "3"
3354
+ },
3355
+ "fastOrInterleaved" : {
3356
+ "nodetype" : "namednumber",
3357
+ "number" : "4"
3358
+ },
3359
+ "fastAndInterleaved" : {
3360
+ "nodetype" : "namednumber",
3361
+ "number" : "5"
3362
+ },
3363
+ },
3364
+ },
3365
+ "access" : "readwrite",
3366
+ "default" : "noChannel",
3367
+ "description" :
3368
+ """This parameter provisions the VDSL physical entity at
3369
+ start-up by defining whether and how the line will be
3370
+ channelized, i.e., which channel type(s) are supported.
3371
+ If the line is to be channelized, the value will be other
3372
+ than noChannel(1).
3373
+
3374
+ This configuration can be activated only during start-up.
3375
+ Afterwards, the value of vdslLineType coincides with the
3376
+ value of vdslLineConfLineType. Depending on this value,
3377
+ the corresponding entries in the ifTable for the
3378
+ interleaved and the fast channels are enabled or disabled
3379
+ according to the value of their ifOperStatus.
3380
+
3381
+ Defined values are:
3382
+
3383
+
3384
+
3385
+ noChannel(1) -- no channels exist
3386
+ fastOnly(2) -- only fast channel exists
3387
+ interleavedOnly(3) -- only interleaved channel exists
3388
+ fastOrInterleaved(4) -- either fast or interleaved channel
3389
+ -- exists, but only one at a time
3390
+ fastAndInterleaved(5) -- both fast and interleaved channels
3391
+ -- exist
3392
+
3393
+ Note that 'slow' and 'interleaved' refer to the same
3394
+ channel.""",
3395
+ "reference" :
3396
+ """T1E1.4/2000-009R3, Part 1, common spec""",
3397
+ }, # column
3398
+ "vdslLineConfProfRowStatus" : {
3399
+ "nodetype" : "column",
3400
+ "moduleName" : "VDSL-LINE-MIB",
3401
+ "oid" : "1.3.6.1.2.1.10.97.1.1.11.1.46",
3402
+ "status" : "current",
3403
+ "syntax" : {
3404
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3405
+ },
3406
+ "access" : "readwrite",
3407
+ "description" :
3408
+ """This object is used to create a new row or modify or
3409
+ delete an existing row in this table.
3410
+
3411
+ A profile activated by setting this object to 'active'.
3412
+ When 'active' is set, the system will validate the profile.
3413
+
3414
+ Before a profile can be deleted or taken out of service
3415
+ (by setting this object to 'destroy' or 'outOfService'),
3416
+ it must be first unreferenced from all associated lines.
3417
+
3418
+ An 'active' profile may be modified at any time. Note
3419
+ that some changes may require that any referenced lines be
3420
+ restarted (e.g., vdslLineConfLineType).""",
3421
+ }, # column
3422
+ "vdslLineAlarmConfProfileTable" : {
3423
+ "nodetype" : "table",
3424
+ "moduleName" : "VDSL-LINE-MIB",
3425
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20",
3426
+ "status" : "current",
3427
+ "description" :
3428
+ """This table contains information on the VDSL line alarm
3429
+ configuration. One entry in this table reflects a profile
3430
+ defined by a manager which can be used to configure the
3431
+ VDSL line alarm thresholds.
3432
+
3433
+
3434
+
3435
+
3436
+ Entries in this table MUST be maintained in a
3437
+ persistent manner.""",
3438
+ }, # table
3439
+ "vdslLineAlarmConfProfileEntry" : {
3440
+ "nodetype" : "row",
3441
+ "moduleName" : "VDSL-LINE-MIB",
3442
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1",
3443
+ "create" : "true",
3444
+ "status" : "current",
3445
+ "linkage" : [
3446
+ "vdslLineAlarmConfProfileName",
3447
+ ],
3448
+ "description" :
3449
+ """Each entry consists of a list of parameters that
3450
+ represents the configuration of a VDSL line alarm
3451
+ profile.
3452
+
3453
+ A default profile with an index of 'DEFVAL', will
3454
+ always exist and its parameters will be set to vendor
3455
+ specific values, unless otherwise specified in this
3456
+ document.""",
3457
+ }, # row
3458
+ "vdslLineAlarmConfProfileName" : {
3459
+ "nodetype" : "column",
3460
+ "moduleName" : "VDSL-LINE-MIB",
3461
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.1",
3462
+ "status" : "current",
3463
+ "syntax" : {
3464
+ "type" : {
3465
+ "basetype" : "OctetString",
3466
+ "parent module" : {
3467
+ "name" : "SNMP-FRAMEWORK-MIB",
3468
+ "type" : "SnmpAdminString",
3469
+ },
3470
+ "ranges" : [
3471
+ {
3472
+ "min" : "1",
3473
+ "max" : "32"
3474
+ },
3475
+ ],
3476
+ "range" : {
3477
+ "min" : "1",
3478
+ "max" : "32"
3479
+ },
3480
+ },
3481
+ },
3482
+ "access" : "noaccess",
3483
+ "description" :
3484
+ """The name for this profile as specified by an
3485
+ administrator.""",
3486
+ }, # column
3487
+ "vdslLineAlarmConfThresh15MinLofs" : {
3488
+ "nodetype" : "column",
3489
+ "moduleName" : "VDSL-LINE-MIB",
3490
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.2",
3491
+ "status" : "current",
3492
+ "syntax" : {
3493
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalThreshold"},
3494
+ },
3495
+ "access" : "readwrite",
3496
+ "default" : "0",
3497
+ "units" : "seconds",
3498
+ "description" :
3499
+ """This object configures the threshold for the number of
3500
+ loss of frame seconds (lofs) within any given 15-minute
3501
+ performance data collection interval. If the value of
3502
+ loss of frame seconds in a particular 15-minute collection
3503
+ interval reaches/exceeds this value, a
3504
+ vdslPerfLofsThreshNotification notification will be
3505
+ generated. No more than one notification will be sent
3506
+ per interval.""",
3507
+ }, # column
3508
+ "vdslLineAlarmConfThresh15MinLoss" : {
3509
+ "nodetype" : "column",
3510
+ "moduleName" : "VDSL-LINE-MIB",
3511
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.3",
3512
+ "status" : "current",
3513
+ "syntax" : {
3514
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalThreshold"},
3515
+ },
3516
+ "access" : "readwrite",
3517
+ "default" : "0",
3518
+ "units" : "seconds",
3519
+ "description" :
3520
+ """This object configures the threshold for the number of
3521
+ loss of signal seconds (loss) within any given 15-minute
3522
+ performance data collection interval. If the value of
3523
+ loss of signal seconds in a particular 15-minute
3524
+ collection interval reaches/exceeds this value, a
3525
+ vdslPerfLossThreshNotification notification will be
3526
+ generated. One notification will be sent per interval
3527
+ per endpoint.""",
3528
+ }, # column
3529
+ "vdslLineAlarmConfThresh15MinLprs" : {
3530
+ "nodetype" : "column",
3531
+ "moduleName" : "VDSL-LINE-MIB",
3532
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.4",
3533
+ "status" : "current",
3534
+ "syntax" : {
3535
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalThreshold"},
3536
+ },
3537
+ "access" : "readwrite",
3538
+ "default" : "0",
3539
+ "units" : "seconds",
3540
+ "description" :
3541
+ """This object configures the threshold for the number of
3542
+ loss of power seconds (lprs) within any given 15-minute
3543
+ performance data collection interval. If the value of
3544
+ loss of power seconds in a particular 15-minute collection
3545
+ interval reaches/exceeds this value, a
3546
+ vdslPerfLprsThreshNotification notification will be
3547
+ generated. No more than one notification will be sent
3548
+ per interval.""",
3549
+ }, # column
3550
+ "vdslLineAlarmConfThresh15MinLols" : {
3551
+ "nodetype" : "column",
3552
+ "moduleName" : "VDSL-LINE-MIB",
3553
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.5",
3554
+ "status" : "current",
3555
+ "syntax" : {
3556
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalThreshold"},
3557
+ },
3558
+ "access" : "readwrite",
3559
+ "default" : "0",
3560
+ "units" : "seconds",
3561
+ "description" :
3562
+ """This object configures the threshold for the number of
3563
+ loss of link seconds (lols) within any given 15-minute
3564
+ performance data collection interval. If the value of
3565
+ loss of power seconds in a particular 15-minute collection
3566
+ interval reaches/exceeds this value, a
3567
+ vdslPerfLolsThreshNotification notification will be
3568
+ generated. No more than one notification will be sent
3569
+ per interval.""",
3570
+ }, # column
3571
+ "vdslLineAlarmConfThresh15MinESs" : {
3572
+ "nodetype" : "column",
3573
+ "moduleName" : "VDSL-LINE-MIB",
3574
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.6",
3575
+ "status" : "current",
3576
+ "syntax" : {
3577
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalThreshold"},
3578
+ },
3579
+ "access" : "readwrite",
3580
+ "default" : "0",
3581
+ "units" : "seconds",
3582
+ "description" :
3583
+ """This object configures the threshold for the number of
3584
+ errored seconds (ESs) within any given 15-minute
3585
+ performance data collection interval. If the value of
3586
+ errored seconds in a particular 15-minute collection
3587
+ interval reaches/exceeds this value, a
3588
+ vdslPerfESsThreshNotification notification will be
3589
+ generated. No more than one notification will be sent
3590
+ per interval.""",
3591
+ }, # column
3592
+ "vdslLineAlarmConfThresh15MinSESs" : {
3593
+ "nodetype" : "column",
3594
+ "moduleName" : "VDSL-LINE-MIB",
3595
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.7",
3596
+ "status" : "current",
3597
+ "syntax" : {
3598
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalThreshold"},
3599
+ },
3600
+ "access" : "readwrite",
3601
+ "default" : "0",
3602
+ "units" : "seconds",
3603
+ "description" :
3604
+ """This object configures the threshold for the number of
3605
+ severely errored seconds (SESs) within any given 15-minute
3606
+ performance data collection interval. If the value of
3607
+ severely errored seconds in a particular 15-minute
3608
+ collection interval reaches/exceeds this value, a
3609
+ vdslPerfSESsThreshNotification notification will be
3610
+ generated. No more than one notification will be sent
3611
+ per interval.""",
3612
+ }, # column
3613
+ "vdslLineAlarmConfThresh15MinUASs" : {
3614
+ "nodetype" : "column",
3615
+ "moduleName" : "VDSL-LINE-MIB",
3616
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.8",
3617
+ "status" : "current",
3618
+ "syntax" : {
3619
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalThreshold"},
3620
+ },
3621
+ "access" : "readwrite",
3622
+ "default" : "0",
3623
+ "units" : "seconds",
3624
+ "description" :
3625
+ """This object configures the threshold for the number of
3626
+ unavailable seconds (UASs) within any given 15-minute
3627
+ performance data collection interval. If the value of
3628
+ unavailable seconds in a particular 15-minute collection
3629
+ interval reaches/exceeds this value, a
3630
+ vdslPerfUASsThreshNotification notification will be
3631
+ generated. No more than one notification will be sent
3632
+ per interval.""",
3633
+ }, # column
3634
+ "vdslLineAlarmConfInitFailure" : {
3635
+ "nodetype" : "column",
3636
+ "moduleName" : "VDSL-LINE-MIB",
3637
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.9",
3638
+ "status" : "current",
3639
+ "syntax" : {
3640
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3641
+ },
3642
+ "access" : "readwrite",
3643
+ "default" : "false",
3644
+ "description" :
3645
+ """This object specifies if a vdslInitFailureNotification
3646
+ notification will be generated if an initialization
3647
+ failure occurs.""",
3648
+ }, # column
3649
+ "vdslLineAlarmConfProfRowStatus" : {
3650
+ "nodetype" : "column",
3651
+ "moduleName" : "VDSL-LINE-MIB",
3652
+ "oid" : "1.3.6.1.2.1.10.97.1.1.20.1.10",
3653
+ "status" : "current",
3654
+ "syntax" : {
3655
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3656
+ },
3657
+ "access" : "readwrite",
3658
+ "description" :
3659
+ """This object is used to create a new row or modify or
3660
+ delete an existing row in this table.
3661
+
3662
+ A profile activated by setting this object to 'active'.
3663
+ When 'active' is set, the system will validate the profile.
3664
+
3665
+ Before a profile can be deleted or taken out of service,
3666
+ (by setting this object to 'destroy' or 'outOfService') it
3667
+ must be first unreferenced from all associated lines.
3668
+
3669
+ An 'active' profile may be modified at any time.""",
3670
+ }, # column
3671
+ "vdslConformance" : {
3672
+ "nodetype" : "node",
3673
+ "moduleName" : "VDSL-LINE-MIB",
3674
+ "oid" : "1.3.6.1.2.1.10.97.1.3",
3675
+ }, # node
3676
+ "vdslGroups" : {
3677
+ "nodetype" : "node",
3678
+ "moduleName" : "VDSL-LINE-MIB",
3679
+ "oid" : "1.3.6.1.2.1.10.97.1.3.1",
3680
+ }, # node
3681
+ "vdslCompliances" : {
3682
+ "nodetype" : "node",
3683
+ "moduleName" : "VDSL-LINE-MIB",
3684
+ "oid" : "1.3.6.1.2.1.10.97.1.3.2",
3685
+ }, # node
3686
+ }, # nodes
3687
+
3688
+ "notifications" : {
3689
+ "vdslPerfLofsThreshNotification" : {
3690
+ "nodetype" : "notification",
3691
+ "moduleName" : "VDSL-LINE-MIB",
3692
+ "oid" : "1.3.6.1.2.1.10.97.1.0.1",
3693
+ "status" : "current",
3694
+ "objects" : {
3695
+ "vdslPerfDataCurr15MinLofs" : {
3696
+ "nodetype" : "object",
3697
+ "module" : "VDSL-LINE-MIB"
3698
+ },
3699
+ },
3700
+ "description" :
3701
+ """Loss of Framing 15-minute interval threshold
3702
+ (vdslLineAlarmConfThresh15MinLofs) reached.""",
3703
+ }, # notification
3704
+ "vdslPerfLossThreshNotification" : {
3705
+ "nodetype" : "notification",
3706
+ "moduleName" : "VDSL-LINE-MIB",
3707
+ "oid" : "1.3.6.1.2.1.10.97.1.0.2",
3708
+ "status" : "current",
3709
+ "objects" : {
3710
+ "vdslPerfDataCurr15MinLoss" : {
3711
+ "nodetype" : "object",
3712
+ "module" : "VDSL-LINE-MIB"
3713
+ },
3714
+ },
3715
+ "description" :
3716
+ """Loss of Signal 15-minute interval threshold
3717
+ (vdslLineAlarmConfThresh15MinLoss) reached.""",
3718
+ }, # notification
3719
+ "vdslPerfLprsThreshNotification" : {
3720
+ "nodetype" : "notification",
3721
+ "moduleName" : "VDSL-LINE-MIB",
3722
+ "oid" : "1.3.6.1.2.1.10.97.1.0.3",
3723
+ "status" : "current",
3724
+ "objects" : {
3725
+ "vdslPerfDataCurr15MinLprs" : {
3726
+ "nodetype" : "object",
3727
+ "module" : "VDSL-LINE-MIB"
3728
+ },
3729
+ },
3730
+ "description" :
3731
+ """Loss of Power 15-minute interval threshold
3732
+ (vdslLineAlarmConfThresh15MinLprs) reached.""",
3733
+ }, # notification
3734
+ "vdslPerfLolsThreshNotification" : {
3735
+ "nodetype" : "notification",
3736
+ "moduleName" : "VDSL-LINE-MIB",
3737
+ "oid" : "1.3.6.1.2.1.10.97.1.0.4",
3738
+ "status" : "current",
3739
+ "objects" : {
3740
+ "vdslPerfDataCurr15MinLols" : {
3741
+ "nodetype" : "object",
3742
+ "module" : "VDSL-LINE-MIB"
3743
+ },
3744
+ },
3745
+ "description" :
3746
+ """Loss of Link 15-minute interval threshold
3747
+ (vdslLineAlarmConfThresh15MinLols) reached.""",
3748
+ }, # notification
3749
+ "vdslPerfESsThreshNotification" : {
3750
+ "nodetype" : "notification",
3751
+ "moduleName" : "VDSL-LINE-MIB",
3752
+ "oid" : "1.3.6.1.2.1.10.97.1.0.5",
3753
+ "status" : "current",
3754
+ "objects" : {
3755
+ "vdslPerfDataCurr15MinESs" : {
3756
+ "nodetype" : "object",
3757
+ "module" : "VDSL-LINE-MIB"
3758
+ },
3759
+ },
3760
+ "description" :
3761
+ """Errored Seconds 15-minute interval threshold
3762
+ (vdslLineAlarmConfThresh15MinESs) reached.""",
3763
+ }, # notification
3764
+ "vdslPerfSESsThreshNotification" : {
3765
+ "nodetype" : "notification",
3766
+ "moduleName" : "VDSL-LINE-MIB",
3767
+ "oid" : "1.3.6.1.2.1.10.97.1.0.6",
3768
+ "status" : "current",
3769
+ "objects" : {
3770
+ "vdslPerfDataCurr15MinSESs" : {
3771
+ "nodetype" : "object",
3772
+ "module" : "VDSL-LINE-MIB"
3773
+ },
3774
+ },
3775
+ "description" :
3776
+ """Severely Errored Seconds 15-minute interval threshold
3777
+ (vdslLineAlarmConfThresh15MinSESs) reached.""",
3778
+ }, # notification
3779
+ "vdslPerfUASsThreshNotification" : {
3780
+ "nodetype" : "notification",
3781
+ "moduleName" : "VDSL-LINE-MIB",
3782
+ "oid" : "1.3.6.1.2.1.10.97.1.0.7",
3783
+ "status" : "current",
3784
+ "objects" : {
3785
+ "vdslPerfDataCurr15MinUASs" : {
3786
+ "nodetype" : "object",
3787
+ "module" : "VDSL-LINE-MIB"
3788
+ },
3789
+ },
3790
+ "description" :
3791
+ """Unavailable Seconds 15-minute interval threshold
3792
+ (vdslLineAlarmConfThresh15MinUASs) reached.""",
3793
+ }, # notification
3794
+ "vdslDownMaxSnrMgnNotification" : {
3795
+ "nodetype" : "notification",
3796
+ "moduleName" : "VDSL-LINE-MIB",
3797
+ "oid" : "1.3.6.1.2.1.10.97.1.0.8",
3798
+ "status" : "current",
3799
+ "objects" : {
3800
+ "vdslPhysCurrSnrMgn" : {
3801
+ "nodetype" : "object",
3802
+ "module" : "VDSL-LINE-MIB"
3803
+ },
3804
+ },
3805
+ "description" :
3806
+ """The downstream Signal to Noise Margin exceeded
3807
+ vdslLineConfDownMaxSnrMgn. The object
3808
+ vdslPhysCurrSnrMgn will contain the Signal to Noise
3809
+ margin as measured by the VTU-R.""",
3810
+ }, # notification
3811
+ "vdslDownMinSnrMgnNotification" : {
3812
+ "nodetype" : "notification",
3813
+ "moduleName" : "VDSL-LINE-MIB",
3814
+ "oid" : "1.3.6.1.2.1.10.97.1.0.9",
3815
+ "status" : "current",
3816
+ "objects" : {
3817
+ "vdslPhysCurrSnrMgn" : {
3818
+ "nodetype" : "object",
3819
+ "module" : "VDSL-LINE-MIB"
3820
+ },
3821
+ },
3822
+ "description" :
3823
+ """The downstream Signal to Noise Margin fell below
3824
+ vdslLineConfDownMinSnrMgn. The object vdslPhysCurrSnrMgn
3825
+ will contain the Signal to Noise margin as measured by
3826
+ the VTU-R.""",
3827
+ }, # notification
3828
+ "vdslUpMaxSnrMgnNotification" : {
3829
+ "nodetype" : "notification",
3830
+ "moduleName" : "VDSL-LINE-MIB",
3831
+ "oid" : "1.3.6.1.2.1.10.97.1.0.10",
3832
+ "status" : "current",
3833
+ "objects" : {
3834
+ "vdslPhysCurrSnrMgn" : {
3835
+ "nodetype" : "object",
3836
+ "module" : "VDSL-LINE-MIB"
3837
+ },
3838
+ },
3839
+ "description" :
3840
+ """The upstream Signal to Noise Margin exceeded
3841
+ vdslLineConfUpMaxSnrMgn. The object vdslPhysCurrSnrMgn
3842
+ will contain the Signal to Noise margin as measured
3843
+ by the VTU-C.""",
3844
+ }, # notification
3845
+ "vdslUpMinSnrMgnNotification" : {
3846
+ "nodetype" : "notification",
3847
+ "moduleName" : "VDSL-LINE-MIB",
3848
+ "oid" : "1.3.6.1.2.1.10.97.1.0.11",
3849
+ "status" : "current",
3850
+ "objects" : {
3851
+ "vdslPhysCurrSnrMgn" : {
3852
+ "nodetype" : "object",
3853
+ "module" : "VDSL-LINE-MIB"
3854
+ },
3855
+ },
3856
+ "description" :
3857
+ """The upstream Signal to Noise Margin fell below
3858
+ vdslLineConfUpMinSnrMgn. The object vdslPhysCurrSnrMgn
3859
+ will contain the Signal to Noise margin as measured
3860
+ by the VTU-C.""",
3861
+ }, # notification
3862
+ "vdslInitFailureNotification" : {
3863
+ "nodetype" : "notification",
3864
+ "moduleName" : "VDSL-LINE-MIB",
3865
+ "oid" : "1.3.6.1.2.1.10.97.1.0.12",
3866
+ "status" : "current",
3867
+ "objects" : {
3868
+ "vdslPhysCurrStatus" : {
3869
+ "nodetype" : "object",
3870
+ "module" : "VDSL-LINE-MIB"
3871
+ },
3872
+ },
3873
+ "description" :
3874
+ """Vtu initialization failed. See vdslPhysCurrStatus for
3875
+ potential reasons.""",
3876
+ }, # notification
3877
+ }, # notifications
3878
+
3879
+ "groups" : {
3880
+ "vdslGroup" : {
3881
+ "nodetype" : "group",
3882
+ "moduleName" : "VDSL-LINE-MIB",
3883
+ "oid" : "1.3.6.1.2.1.10.97.1.3.1.1",
3884
+ "status" : "current",
3885
+ "members" : {
3886
+ "vdslLineCoding" : {
3887
+ "nodetype" : "member",
3888
+ "module" : "VDSL-LINE-MIB"
3889
+ },
3890
+ "vdslLineType" : {
3891
+ "nodetype" : "member",
3892
+ "module" : "VDSL-LINE-MIB"
3893
+ },
3894
+ "vdslLineConfProfile" : {
3895
+ "nodetype" : "member",
3896
+ "module" : "VDSL-LINE-MIB"
3897
+ },
3898
+ "vdslLineAlarmConfProfile" : {
3899
+ "nodetype" : "member",
3900
+ "module" : "VDSL-LINE-MIB"
3901
+ },
3902
+ "vdslPhysInvSerialNumber" : {
3903
+ "nodetype" : "member",
3904
+ "module" : "VDSL-LINE-MIB"
3905
+ },
3906
+ "vdslPhysInvVendorID" : {
3907
+ "nodetype" : "member",
3908
+ "module" : "VDSL-LINE-MIB"
3909
+ },
3910
+ "vdslPhysInvVersionNumber" : {
3911
+ "nodetype" : "member",
3912
+ "module" : "VDSL-LINE-MIB"
3913
+ },
3914
+ "vdslPhysCurrSnrMgn" : {
3915
+ "nodetype" : "member",
3916
+ "module" : "VDSL-LINE-MIB"
3917
+ },
3918
+ "vdslPhysCurrAtn" : {
3919
+ "nodetype" : "member",
3920
+ "module" : "VDSL-LINE-MIB"
3921
+ },
3922
+ "vdslPhysCurrStatus" : {
3923
+ "nodetype" : "member",
3924
+ "module" : "VDSL-LINE-MIB"
3925
+ },
3926
+ "vdslPhysCurrOutputPwr" : {
3927
+ "nodetype" : "member",
3928
+ "module" : "VDSL-LINE-MIB"
3929
+ },
3930
+ "vdslPhysCurrAttainableRate" : {
3931
+ "nodetype" : "member",
3932
+ "module" : "VDSL-LINE-MIB"
3933
+ },
3934
+ "vdslPhysCurrLineRate" : {
3935
+ "nodetype" : "member",
3936
+ "module" : "VDSL-LINE-MIB"
3937
+ },
3938
+ "vdslChanInterleaveDelay" : {
3939
+ "nodetype" : "member",
3940
+ "module" : "VDSL-LINE-MIB"
3941
+ },
3942
+ "vdslChanCrcBlockLength" : {
3943
+ "nodetype" : "member",
3944
+ "module" : "VDSL-LINE-MIB"
3945
+ },
3946
+ "vdslChanCurrTxRate" : {
3947
+ "nodetype" : "member",
3948
+ "module" : "VDSL-LINE-MIB"
3949
+ },
3950
+ "vdslChanCurrTxSlowBurstProtect" : {
3951
+ "nodetype" : "member",
3952
+ "module" : "VDSL-LINE-MIB"
3953
+ },
3954
+ "vdslChanCurrTxFastFec" : {
3955
+ "nodetype" : "member",
3956
+ "module" : "VDSL-LINE-MIB"
3957
+ },
3958
+ "vdslPerfDataValidIntervals" : {
3959
+ "nodetype" : "member",
3960
+ "module" : "VDSL-LINE-MIB"
3961
+ },
3962
+ "vdslPerfDataInvalidIntervals" : {
3963
+ "nodetype" : "member",
3964
+ "module" : "VDSL-LINE-MIB"
3965
+ },
3966
+ "vdslPerfDataLofs" : {
3967
+ "nodetype" : "member",
3968
+ "module" : "VDSL-LINE-MIB"
3969
+ },
3970
+ "vdslPerfDataLoss" : {
3971
+ "nodetype" : "member",
3972
+ "module" : "VDSL-LINE-MIB"
3973
+ },
3974
+ "vdslPerfDataLprs" : {
3975
+ "nodetype" : "member",
3976
+ "module" : "VDSL-LINE-MIB"
3977
+ },
3978
+ "vdslPerfDataLols" : {
3979
+ "nodetype" : "member",
3980
+ "module" : "VDSL-LINE-MIB"
3981
+ },
3982
+ "vdslPerfDataESs" : {
3983
+ "nodetype" : "member",
3984
+ "module" : "VDSL-LINE-MIB"
3985
+ },
3986
+ "vdslPerfDataSESs" : {
3987
+ "nodetype" : "member",
3988
+ "module" : "VDSL-LINE-MIB"
3989
+ },
3990
+ "vdslPerfDataUASs" : {
3991
+ "nodetype" : "member",
3992
+ "module" : "VDSL-LINE-MIB"
3993
+ },
3994
+ "vdslPerfDataInits" : {
3995
+ "nodetype" : "member",
3996
+ "module" : "VDSL-LINE-MIB"
3997
+ },
3998
+ "vdslPerfDataCurr15MinTimeElapsed" : {
3999
+ "nodetype" : "member",
4000
+ "module" : "VDSL-LINE-MIB"
4001
+ },
4002
+ "vdslPerfDataCurr15MinLofs" : {
4003
+ "nodetype" : "member",
4004
+ "module" : "VDSL-LINE-MIB"
4005
+ },
4006
+ "vdslPerfDataCurr15MinLoss" : {
4007
+ "nodetype" : "member",
4008
+ "module" : "VDSL-LINE-MIB"
4009
+ },
4010
+ "vdslPerfDataCurr15MinLprs" : {
4011
+ "nodetype" : "member",
4012
+ "module" : "VDSL-LINE-MIB"
4013
+ },
4014
+ "vdslPerfDataCurr15MinLols" : {
4015
+ "nodetype" : "member",
4016
+ "module" : "VDSL-LINE-MIB"
4017
+ },
4018
+ "vdslPerfDataCurr15MinESs" : {
4019
+ "nodetype" : "member",
4020
+ "module" : "VDSL-LINE-MIB"
4021
+ },
4022
+ "vdslPerfDataCurr15MinSESs" : {
4023
+ "nodetype" : "member",
4024
+ "module" : "VDSL-LINE-MIB"
4025
+ },
4026
+ "vdslPerfDataCurr15MinUASs" : {
4027
+ "nodetype" : "member",
4028
+ "module" : "VDSL-LINE-MIB"
4029
+ },
4030
+ "vdslPerfDataCurr15MinInits" : {
4031
+ "nodetype" : "member",
4032
+ "module" : "VDSL-LINE-MIB"
4033
+ },
4034
+ "vdslPerfData1DayValidIntervals" : {
4035
+ "nodetype" : "member",
4036
+ "module" : "VDSL-LINE-MIB"
4037
+ },
4038
+ "vdslPerfData1DayInvalidIntervals" : {
4039
+ "nodetype" : "member",
4040
+ "module" : "VDSL-LINE-MIB"
4041
+ },
4042
+ "vdslPerfDataCurr1DayTimeElapsed" : {
4043
+ "nodetype" : "member",
4044
+ "module" : "VDSL-LINE-MIB"
4045
+ },
4046
+ "vdslPerfDataCurr1DayLofs" : {
4047
+ "nodetype" : "member",
4048
+ "module" : "VDSL-LINE-MIB"
4049
+ },
4050
+ "vdslPerfDataCurr1DayLoss" : {
4051
+ "nodetype" : "member",
4052
+ "module" : "VDSL-LINE-MIB"
4053
+ },
4054
+ "vdslPerfDataCurr1DayLprs" : {
4055
+ "nodetype" : "member",
4056
+ "module" : "VDSL-LINE-MIB"
4057
+ },
4058
+ "vdslPerfDataCurr1DayLols" : {
4059
+ "nodetype" : "member",
4060
+ "module" : "VDSL-LINE-MIB"
4061
+ },
4062
+ "vdslPerfDataCurr1DayESs" : {
4063
+ "nodetype" : "member",
4064
+ "module" : "VDSL-LINE-MIB"
4065
+ },
4066
+ "vdslPerfDataCurr1DaySESs" : {
4067
+ "nodetype" : "member",
4068
+ "module" : "VDSL-LINE-MIB"
4069
+ },
4070
+ "vdslPerfDataCurr1DayUASs" : {
4071
+ "nodetype" : "member",
4072
+ "module" : "VDSL-LINE-MIB"
4073
+ },
4074
+ "vdslPerfDataCurr1DayInits" : {
4075
+ "nodetype" : "member",
4076
+ "module" : "VDSL-LINE-MIB"
4077
+ },
4078
+ "vdslPerfIntervalLofs" : {
4079
+ "nodetype" : "member",
4080
+ "module" : "VDSL-LINE-MIB"
4081
+ },
4082
+ "vdslPerfIntervalLoss" : {
4083
+ "nodetype" : "member",
4084
+ "module" : "VDSL-LINE-MIB"
4085
+ },
4086
+ "vdslPerfIntervalLprs" : {
4087
+ "nodetype" : "member",
4088
+ "module" : "VDSL-LINE-MIB"
4089
+ },
4090
+ "vdslPerfIntervalLols" : {
4091
+ "nodetype" : "member",
4092
+ "module" : "VDSL-LINE-MIB"
4093
+ },
4094
+ "vdslPerfIntervalESs" : {
4095
+ "nodetype" : "member",
4096
+ "module" : "VDSL-LINE-MIB"
4097
+ },
4098
+ "vdslPerfIntervalSESs" : {
4099
+ "nodetype" : "member",
4100
+ "module" : "VDSL-LINE-MIB"
4101
+ },
4102
+ "vdslPerfIntervalUASs" : {
4103
+ "nodetype" : "member",
4104
+ "module" : "VDSL-LINE-MIB"
4105
+ },
4106
+ "vdslPerfIntervalInits" : {
4107
+ "nodetype" : "member",
4108
+ "module" : "VDSL-LINE-MIB"
4109
+ },
4110
+ "vdslPerf1DayIntervalMoniSecs" : {
4111
+ "nodetype" : "member",
4112
+ "module" : "VDSL-LINE-MIB"
4113
+ },
4114
+ "vdslPerf1DayIntervalLofs" : {
4115
+ "nodetype" : "member",
4116
+ "module" : "VDSL-LINE-MIB"
4117
+ },
4118
+ "vdslPerf1DayIntervalLoss" : {
4119
+ "nodetype" : "member",
4120
+ "module" : "VDSL-LINE-MIB"
4121
+ },
4122
+ "vdslPerf1DayIntervalLprs" : {
4123
+ "nodetype" : "member",
4124
+ "module" : "VDSL-LINE-MIB"
4125
+ },
4126
+ "vdslPerf1DayIntervalLols" : {
4127
+ "nodetype" : "member",
4128
+ "module" : "VDSL-LINE-MIB"
4129
+ },
4130
+ "vdslPerf1DayIntervalESs" : {
4131
+ "nodetype" : "member",
4132
+ "module" : "VDSL-LINE-MIB"
4133
+ },
4134
+ "vdslPerf1DayIntervalSESs" : {
4135
+ "nodetype" : "member",
4136
+ "module" : "VDSL-LINE-MIB"
4137
+ },
4138
+ "vdslPerf1DayIntervalUASs" : {
4139
+ "nodetype" : "member",
4140
+ "module" : "VDSL-LINE-MIB"
4141
+ },
4142
+ "vdslPerf1DayIntervalInits" : {
4143
+ "nodetype" : "member",
4144
+ "module" : "VDSL-LINE-MIB"
4145
+ },
4146
+ "vdslChanValidIntervals" : {
4147
+ "nodetype" : "member",
4148
+ "module" : "VDSL-LINE-MIB"
4149
+ },
4150
+ "vdslChanInvalidIntervals" : {
4151
+ "nodetype" : "member",
4152
+ "module" : "VDSL-LINE-MIB"
4153
+ },
4154
+ "vdslChanFixedOctets" : {
4155
+ "nodetype" : "member",
4156
+ "module" : "VDSL-LINE-MIB"
4157
+ },
4158
+ "vdslChanBadBlks" : {
4159
+ "nodetype" : "member",
4160
+ "module" : "VDSL-LINE-MIB"
4161
+ },
4162
+ "vdslChanCurr15MinTimeElapsed" : {
4163
+ "nodetype" : "member",
4164
+ "module" : "VDSL-LINE-MIB"
4165
+ },
4166
+ "vdslChanCurr15MinFixedOctets" : {
4167
+ "nodetype" : "member",
4168
+ "module" : "VDSL-LINE-MIB"
4169
+ },
4170
+ "vdslChanCurr15MinBadBlks" : {
4171
+ "nodetype" : "member",
4172
+ "module" : "VDSL-LINE-MIB"
4173
+ },
4174
+ "vdslChan1DayValidIntervals" : {
4175
+ "nodetype" : "member",
4176
+ "module" : "VDSL-LINE-MIB"
4177
+ },
4178
+ "vdslChan1DayInvalidIntervals" : {
4179
+ "nodetype" : "member",
4180
+ "module" : "VDSL-LINE-MIB"
4181
+ },
4182
+ "vdslChanCurr1DayTimeElapsed" : {
4183
+ "nodetype" : "member",
4184
+ "module" : "VDSL-LINE-MIB"
4185
+ },
4186
+ "vdslChanCurr1DayFixedOctets" : {
4187
+ "nodetype" : "member",
4188
+ "module" : "VDSL-LINE-MIB"
4189
+ },
4190
+ "vdslChanCurr1DayBadBlks" : {
4191
+ "nodetype" : "member",
4192
+ "module" : "VDSL-LINE-MIB"
4193
+ },
4194
+ "vdslChanIntervalFixedOctets" : {
4195
+ "nodetype" : "member",
4196
+ "module" : "VDSL-LINE-MIB"
4197
+ },
4198
+ "vdslChanIntervalBadBlks" : {
4199
+ "nodetype" : "member",
4200
+ "module" : "VDSL-LINE-MIB"
4201
+ },
4202
+ "vdslChan1DayIntervalMoniSecs" : {
4203
+ "nodetype" : "member",
4204
+ "module" : "VDSL-LINE-MIB"
4205
+ },
4206
+ "vdslChan1DayIntervalFixedOctets" : {
4207
+ "nodetype" : "member",
4208
+ "module" : "VDSL-LINE-MIB"
4209
+ },
4210
+ "vdslChan1DayIntervalBadBlks" : {
4211
+ "nodetype" : "member",
4212
+ "module" : "VDSL-LINE-MIB"
4213
+ },
4214
+ "vdslLineConfDownRateMode" : {
4215
+ "nodetype" : "member",
4216
+ "module" : "VDSL-LINE-MIB"
4217
+ },
4218
+ "vdslLineConfUpRateMode" : {
4219
+ "nodetype" : "member",
4220
+ "module" : "VDSL-LINE-MIB"
4221
+ },
4222
+ "vdslLineConfDownMaxPwr" : {
4223
+ "nodetype" : "member",
4224
+ "module" : "VDSL-LINE-MIB"
4225
+ },
4226
+ "vdslLineConfUpMaxPwr" : {
4227
+ "nodetype" : "member",
4228
+ "module" : "VDSL-LINE-MIB"
4229
+ },
4230
+ "vdslLineConfDownMaxSnrMgn" : {
4231
+ "nodetype" : "member",
4232
+ "module" : "VDSL-LINE-MIB"
4233
+ },
4234
+ "vdslLineConfDownMinSnrMgn" : {
4235
+ "nodetype" : "member",
4236
+ "module" : "VDSL-LINE-MIB"
4237
+ },
4238
+ "vdslLineConfDownTargetSnrMgn" : {
4239
+ "nodetype" : "member",
4240
+ "module" : "VDSL-LINE-MIB"
4241
+ },
4242
+ "vdslLineConfUpMaxSnrMgn" : {
4243
+ "nodetype" : "member",
4244
+ "module" : "VDSL-LINE-MIB"
4245
+ },
4246
+ "vdslLineConfUpMinSnrMgn" : {
4247
+ "nodetype" : "member",
4248
+ "module" : "VDSL-LINE-MIB"
4249
+ },
4250
+ "vdslLineConfUpTargetSnrMgn" : {
4251
+ "nodetype" : "member",
4252
+ "module" : "VDSL-LINE-MIB"
4253
+ },
4254
+ "vdslLineConfDownFastMaxDataRate" : {
4255
+ "nodetype" : "member",
4256
+ "module" : "VDSL-LINE-MIB"
4257
+ },
4258
+ "vdslLineConfDownFastMinDataRate" : {
4259
+ "nodetype" : "member",
4260
+ "module" : "VDSL-LINE-MIB"
4261
+ },
4262
+ "vdslLineConfDownSlowMaxDataRate" : {
4263
+ "nodetype" : "member",
4264
+ "module" : "VDSL-LINE-MIB"
4265
+ },
4266
+ "vdslLineConfDownSlowMinDataRate" : {
4267
+ "nodetype" : "member",
4268
+ "module" : "VDSL-LINE-MIB"
4269
+ },
4270
+ "vdslLineConfUpFastMaxDataRate" : {
4271
+ "nodetype" : "member",
4272
+ "module" : "VDSL-LINE-MIB"
4273
+ },
4274
+ "vdslLineConfUpFastMinDataRate" : {
4275
+ "nodetype" : "member",
4276
+ "module" : "VDSL-LINE-MIB"
4277
+ },
4278
+ "vdslLineConfUpSlowMaxDataRate" : {
4279
+ "nodetype" : "member",
4280
+ "module" : "VDSL-LINE-MIB"
4281
+ },
4282
+ "vdslLineConfUpSlowMinDataRate" : {
4283
+ "nodetype" : "member",
4284
+ "module" : "VDSL-LINE-MIB"
4285
+ },
4286
+ "vdslLineConfDownRateRatio" : {
4287
+ "nodetype" : "member",
4288
+ "module" : "VDSL-LINE-MIB"
4289
+ },
4290
+ "vdslLineConfUpRateRatio" : {
4291
+ "nodetype" : "member",
4292
+ "module" : "VDSL-LINE-MIB"
4293
+ },
4294
+ "vdslLineConfDownMaxInterDelay" : {
4295
+ "nodetype" : "member",
4296
+ "module" : "VDSL-LINE-MIB"
4297
+ },
4298
+ "vdslLineConfUpMaxInterDelay" : {
4299
+ "nodetype" : "member",
4300
+ "module" : "VDSL-LINE-MIB"
4301
+ },
4302
+ "vdslLineConfDownPboControl" : {
4303
+ "nodetype" : "member",
4304
+ "module" : "VDSL-LINE-MIB"
4305
+ },
4306
+ "vdslLineConfUpPboControl" : {
4307
+ "nodetype" : "member",
4308
+ "module" : "VDSL-LINE-MIB"
4309
+ },
4310
+ "vdslLineConfDownPboLevel" : {
4311
+ "nodetype" : "member",
4312
+ "module" : "VDSL-LINE-MIB"
4313
+ },
4314
+ "vdslLineConfUpPboLevel" : {
4315
+ "nodetype" : "member",
4316
+ "module" : "VDSL-LINE-MIB"
4317
+ },
4318
+ "vdslLineConfDeploymentScenario" : {
4319
+ "nodetype" : "member",
4320
+ "module" : "VDSL-LINE-MIB"
4321
+ },
4322
+ "vdslLineConfAdslPresence" : {
4323
+ "nodetype" : "member",
4324
+ "module" : "VDSL-LINE-MIB"
4325
+ },
4326
+ "vdslLineConfApplicableStandard" : {
4327
+ "nodetype" : "member",
4328
+ "module" : "VDSL-LINE-MIB"
4329
+ },
4330
+ "vdslLineConfBandPlan" : {
4331
+ "nodetype" : "member",
4332
+ "module" : "VDSL-LINE-MIB"
4333
+ },
4334
+ "vdslLineConfBandPlanFx" : {
4335
+ "nodetype" : "member",
4336
+ "module" : "VDSL-LINE-MIB"
4337
+ },
4338
+ "vdslLineConfBandOptUsage" : {
4339
+ "nodetype" : "member",
4340
+ "module" : "VDSL-LINE-MIB"
4341
+ },
4342
+ "vdslLineConfUpPsdTemplate" : {
4343
+ "nodetype" : "member",
4344
+ "module" : "VDSL-LINE-MIB"
4345
+ },
4346
+ "vdslLineConfDownPsdTemplate" : {
4347
+ "nodetype" : "member",
4348
+ "module" : "VDSL-LINE-MIB"
4349
+ },
4350
+ "vdslLineConfHamBandMask" : {
4351
+ "nodetype" : "member",
4352
+ "module" : "VDSL-LINE-MIB"
4353
+ },
4354
+ "vdslLineConfCustomNotch1Start" : {
4355
+ "nodetype" : "member",
4356
+ "module" : "VDSL-LINE-MIB"
4357
+ },
4358
+ "vdslLineConfCustomNotch1Stop" : {
4359
+ "nodetype" : "member",
4360
+ "module" : "VDSL-LINE-MIB"
4361
+ },
4362
+ "vdslLineConfCustomNotch2Start" : {
4363
+ "nodetype" : "member",
4364
+ "module" : "VDSL-LINE-MIB"
4365
+ },
4366
+ "vdslLineConfCustomNotch2Stop" : {
4367
+ "nodetype" : "member",
4368
+ "module" : "VDSL-LINE-MIB"
4369
+ },
4370
+ "vdslLineConfDownTargetSlowBurst" : {
4371
+ "nodetype" : "member",
4372
+ "module" : "VDSL-LINE-MIB"
4373
+ },
4374
+ "vdslLineConfUpTargetSlowBurst" : {
4375
+ "nodetype" : "member",
4376
+ "module" : "VDSL-LINE-MIB"
4377
+ },
4378
+ "vdslLineConfDownMaxFastFec" : {
4379
+ "nodetype" : "member",
4380
+ "module" : "VDSL-LINE-MIB"
4381
+ },
4382
+ "vdslLineConfUpMaxFastFec" : {
4383
+ "nodetype" : "member",
4384
+ "module" : "VDSL-LINE-MIB"
4385
+ },
4386
+ "vdslLineConfLineType" : {
4387
+ "nodetype" : "member",
4388
+ "module" : "VDSL-LINE-MIB"
4389
+ },
4390
+ "vdslLineConfProfRowStatus" : {
4391
+ "nodetype" : "member",
4392
+ "module" : "VDSL-LINE-MIB"
4393
+ },
4394
+ "vdslLineAlarmConfThresh15MinLofs" : {
4395
+ "nodetype" : "member",
4396
+ "module" : "VDSL-LINE-MIB"
4397
+ },
4398
+ "vdslLineAlarmConfThresh15MinLoss" : {
4399
+ "nodetype" : "member",
4400
+ "module" : "VDSL-LINE-MIB"
4401
+ },
4402
+ "vdslLineAlarmConfThresh15MinLprs" : {
4403
+ "nodetype" : "member",
4404
+ "module" : "VDSL-LINE-MIB"
4405
+ },
4406
+ "vdslLineAlarmConfThresh15MinLols" : {
4407
+ "nodetype" : "member",
4408
+ "module" : "VDSL-LINE-MIB"
4409
+ },
4410
+ "vdslLineAlarmConfThresh15MinESs" : {
4411
+ "nodetype" : "member",
4412
+ "module" : "VDSL-LINE-MIB"
4413
+ },
4414
+ "vdslLineAlarmConfThresh15MinSESs" : {
4415
+ "nodetype" : "member",
4416
+ "module" : "VDSL-LINE-MIB"
4417
+ },
4418
+ "vdslLineAlarmConfThresh15MinUASs" : {
4419
+ "nodetype" : "member",
4420
+ "module" : "VDSL-LINE-MIB"
4421
+ },
4422
+ "vdslLineAlarmConfInitFailure" : {
4423
+ "nodetype" : "member",
4424
+ "module" : "VDSL-LINE-MIB"
4425
+ },
4426
+ "vdslLineAlarmConfProfRowStatus" : {
4427
+ "nodetype" : "member",
4428
+ "module" : "VDSL-LINE-MIB"
4429
+ },
4430
+ }, # members
4431
+ "description" :
4432
+ """A collection of objects providing information about
4433
+ a VDSL Line.""",
4434
+ }, # group
4435
+ "vdslNotificationGroup" : {
4436
+ "nodetype" : "group",
4437
+ "moduleName" : "VDSL-LINE-MIB",
4438
+ "oid" : "1.3.6.1.2.1.10.97.1.3.1.2",
4439
+ "status" : "current",
4440
+ "members" : {
4441
+ "vdslPerfLofsThreshNotification" : {
4442
+ "nodetype" : "member",
4443
+ "module" : "VDSL-LINE-MIB"
4444
+ },
4445
+ "vdslPerfLossThreshNotification" : {
4446
+ "nodetype" : "member",
4447
+ "module" : "VDSL-LINE-MIB"
4448
+ },
4449
+ "vdslPerfLprsThreshNotification" : {
4450
+ "nodetype" : "member",
4451
+ "module" : "VDSL-LINE-MIB"
4452
+ },
4453
+ "vdslPerfLolsThreshNotification" : {
4454
+ "nodetype" : "member",
4455
+ "module" : "VDSL-LINE-MIB"
4456
+ },
4457
+ "vdslPerfESsThreshNotification" : {
4458
+ "nodetype" : "member",
4459
+ "module" : "VDSL-LINE-MIB"
4460
+ },
4461
+ "vdslPerfSESsThreshNotification" : {
4462
+ "nodetype" : "member",
4463
+ "module" : "VDSL-LINE-MIB"
4464
+ },
4465
+ "vdslPerfUASsThreshNotification" : {
4466
+ "nodetype" : "member",
4467
+ "module" : "VDSL-LINE-MIB"
4468
+ },
4469
+ "vdslDownMaxSnrMgnNotification" : {
4470
+ "nodetype" : "member",
4471
+ "module" : "VDSL-LINE-MIB"
4472
+ },
4473
+ "vdslDownMinSnrMgnNotification" : {
4474
+ "nodetype" : "member",
4475
+ "module" : "VDSL-LINE-MIB"
4476
+ },
4477
+ "vdslUpMaxSnrMgnNotification" : {
4478
+ "nodetype" : "member",
4479
+ "module" : "VDSL-LINE-MIB"
4480
+ },
4481
+ "vdslUpMinSnrMgnNotification" : {
4482
+ "nodetype" : "member",
4483
+ "module" : "VDSL-LINE-MIB"
4484
+ },
4485
+ "vdslInitFailureNotification" : {
4486
+ "nodetype" : "member",
4487
+ "module" : "VDSL-LINE-MIB"
4488
+ },
4489
+ }, # members
4490
+ "description" :
4491
+ """This group supports notifications of significant
4492
+ conditions associated with VDSL Lines.""",
4493
+ }, # group
4494
+ }, # groups
4495
+
4496
+ "compliances" : {
4497
+ "vdslLineMibCompliance" : {
4498
+ "nodetype" : "compliance",
4499
+ "moduleName" : "VDSL-LINE-MIB",
4500
+ "oid" : "1.3.6.1.2.1.10.97.1.3.2.1",
4501
+ "status" : "current",
4502
+ "description" :
4503
+ """The compliance statement for SNMP entities which
4504
+ manage VDSL interfaces.""",
4505
+ "requires" : {
4506
+ "vdslGroup" : {
4507
+ "nodetype" : "mandatory",
4508
+ "module" : "VDSL-LINE-MIB"
4509
+ },
4510
+ "vdslNotificationGroup" : {
4511
+ "nodetype" : "mandatory",
4512
+ "module" : "VDSL-LINE-MIB"
4513
+ },
4514
+ }, # requires
4515
+ }, # compliance
4516
+ }, # compliances
4517
+
4518
+ }