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,3955 @@
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 HDSL2-SHDSL-LINE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/HDSL2-SHDSL-LINE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
11
+
12
+ "HDSL2-SHDSL-LINE-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """ADSLMIB Working Group""",
17
+ "contact" :
18
+ """WG-email: adslmib@ietf.org
19
+ WG-URL:
20
+ http://www.ietf.org/html.charters/adslmib-charter.html
21
+ Info: https://www1.ietf.org/mailman/listinfo/adslmib
22
+ Chair: Mike Sneed
23
+ Sand Channel Systems
24
+ Postal: 1210-203 Westview Ln
25
+ Raleigh NC 27605 USA
26
+ Email: sneedmike@hotmail.com
27
+ Phone: +1 206 600 7022
28
+
29
+ Co-Chair Bob Ray
30
+ PESA Switching Systems, Inc.
31
+
32
+
33
+
34
+ Postal 330-A Wynn Drive
35
+ Huntsville, AL 35805 USA
36
+ Phone +1 256 726 9200 ext. 142
37
+
38
+ Co-editor: Clay Sikes
39
+ Zhone Technologies, Inc.
40
+ Postal: 8545 126th Ave. N.
41
+ Largo, FL 33772 USA
42
+ Email: csikes@zhone.com
43
+ Phone: +1 727 530 8257
44
+
45
+ Co-editor: Bob Ray
46
+ PESA Switching Systems, Inc.
47
+ Postal: 330-A Wynn Drive
48
+ Huntsville, AL 35805 USA
49
+ Email: rray@pesa.com
50
+ Phone: +1 256 726 9200 ext. 142
51
+
52
+ Co-editor: Rajesh Abbi
53
+ Alcatel USA
54
+ Postal: 2301 Sugar Bush Road
55
+ Raleigh, NC 27612-3339 USA
56
+
57
+ Email: Rajesh.Abbi@alcatel.com
58
+ Phone: +1 919 850 6194""",
59
+ "description" :
60
+ """This MIB module defines a collection of objects for managing
61
+ HDSL2/SHDSL lines. An agent may reside at either end of the
62
+ line; however, the MIB module is designed to require no
63
+ management communication between the modems beyond that
64
+ inherent in the low-level EOC line protocol as defined in
65
+ ANSI T1E1.4/2000-006 (for HDSL2 lines) or in ITU G.991.2
66
+ (for SHDSL lines).
67
+
68
+ Copyright (C) The Internet Society (2005). This version of
69
+ this MIB module is part of RFC 4319; see the RFC itself for
70
+ full legal notices.""",
71
+ "revisions" : (
72
+ {
73
+ "date" : "2005-12-07 00:00",
74
+ "description" :
75
+ """This version, published as RFC 4319.
76
+ The following changes have been made in this version:
77
+ 1. Added a 3rd and 4th wire pair.
78
+ 2. Modified all rates such that their rates are only
79
+ constrained by an unsigned 32-bit value and not by
80
+ what today's perceived technology limitations are.
81
+
82
+
83
+
84
+
85
+
86
+ 3. Clarified that the rates from RFC 3276 include
87
+ payload and any applicable framing and added
88
+ objects for payload-only rates.
89
+ 4. Added an object to indicate whether the
90
+ tip and ring are reversed on a wire pair.
91
+ 5. Added an object to display the activation state
92
+ of a wire pair.
93
+ 6. Added references as necessary for clarification.
94
+ 7. Added display hints to textual conventions as
95
+ necessary.
96
+ 8. Updated conformance statements as necessary.
97
+ 9. Some changes were due to IETF requirements and
98
+ RFC generation tools.""",
99
+ },
100
+ {
101
+ "date" : "2002-05-09 00:00",
102
+ "description" :
103
+ """Initial version, published as RFC 3276.""",
104
+ },
105
+ ),
106
+ "identity node" : "hdsl2ShdslMIB",
107
+ },
108
+
109
+ "imports" : (
110
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
111
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
112
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
113
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
114
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
115
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
116
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
117
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
118
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
119
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
120
+ {"module" : "IF-MIB", "name" : "ifIndex"},
121
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
122
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
123
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
124
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
125
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
126
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
127
+ ),
128
+
129
+ "typedefs" : {
130
+ "Hdsl2ShdslPerfCurrDayCount" : {
131
+ "basetype" : "Unsigned32",
132
+ "status" : "current",
133
+ "parent module" : {
134
+ "name" : "SNMPv2-SMI",
135
+ "type" : "Gauge32",
136
+ },
137
+ "format" : "d",
138
+ "description" :
139
+ """A gauge associated with interface performance measurements in
140
+ a current 1-day (24 hour) measurement interval.
141
+
142
+ The value of this gauge starts at zero at the beginning of an
143
+ interval and is increased when associated events occur, until
144
+ the end of the 1-day interval. At that time, the value of the
145
+ gauge is stored in the previous 1-day history interval, as
146
+ defined in a companion object of type
147
+ Hdsl2Shdsl1DayIntevalCount, and the current interval gauge
148
+ is restarted at zero.
149
+
150
+ In the case where the agent has no valid data available for
151
+ this interval, the corresponding object instance is not
152
+ available, and upon a retrieval request, a corresponding error
153
+ message shall be returned to indicate that this instance does
154
+ not exist. Please note that zero is a valid value.""",
155
+ },
156
+ "Hdsl2Shdsl1DayIntervalCount" : {
157
+ "basetype" : "Unsigned32",
158
+ "status" : "current",
159
+ "parent module" : {
160
+ "name" : "SNMPv2-SMI",
161
+ "type" : "Gauge32",
162
+ },
163
+ "format" : "d",
164
+ "description" :
165
+ """A counter associated with interface performance measurements
166
+ during the most previous 1-day (24 hour) measurement interval.
167
+ The value of this gauge is equal to the value of the current
168
+ day gauge, as defined in a companion object of type
169
+ Hdsl2ShdslPerfCurrDayCount, at the end of its most recent
170
+ interval.
171
+
172
+ In the case where the agent has no valid data available for
173
+ this interval, the corresponding object instance is not
174
+ available, and upon a retrieval request, a corresponding error
175
+ message shall be returned to indicate that this instance does
176
+ not exist.""",
177
+ },
178
+ "Hdsl2ShdslPerfTimeElapsed" : {
179
+ "basetype" : "Unsigned32",
180
+ "status" : "current",
181
+ "ranges" : [
182
+ {
183
+ "min" : "0",
184
+ "max" : "86399"
185
+ },
186
+ ],
187
+ "range" : {
188
+ "min" : "0",
189
+ "max" : "86399"
190
+ },
191
+ "format" : "d",
192
+ "description" :
193
+ """The number of seconds that have elapsed since the beginning of
194
+ the current measurement period. If, for some reason, such as
195
+ an adjustment in the system's time-of-day clock or the addition
196
+ of a leap second, the current interval exceeds the maximum
197
+ value, the agent will return the maximum value.
198
+
199
+ For 15-minute intervals, the range is limited to (0..899).
200
+ For 24-hour intervals, the range is limited to (0..86399).""",
201
+ },
202
+ "Hdsl2ShdslPerfIntervalThreshold" : {
203
+ "basetype" : "Unsigned32",
204
+ "status" : "current",
205
+ "ranges" : [
206
+ {
207
+ "min" : "0",
208
+ "max" : "900"
209
+ },
210
+ ],
211
+ "range" : {
212
+ "min" : "0",
213
+ "max" : "900"
214
+ },
215
+ "format" : "d",
216
+ "description" :
217
+ """This convention defines a range of values that may be set in
218
+ a fault threshold alarm control. As the number of seconds in
219
+ a 15-minute interval numbers at most 900, objects of this type
220
+ may have a range of 0...900, where the value of 0 disables the
221
+ alarm.""",
222
+ },
223
+ "Hdsl2ShdslUnitId" : {
224
+ "basetype" : "Enumeration",
225
+ "status" : "current",
226
+ "xtuC" : {
227
+ "nodetype" : "namednumber",
228
+ "number" : "1"
229
+ },
230
+ "xtuR" : {
231
+ "nodetype" : "namednumber",
232
+ "number" : "2"
233
+ },
234
+ "xru1" : {
235
+ "nodetype" : "namednumber",
236
+ "number" : "3"
237
+ },
238
+ "xru2" : {
239
+ "nodetype" : "namednumber",
240
+ "number" : "4"
241
+ },
242
+ "xru3" : {
243
+ "nodetype" : "namednumber",
244
+ "number" : "5"
245
+ },
246
+ "xru4" : {
247
+ "nodetype" : "namednumber",
248
+ "number" : "6"
249
+ },
250
+ "xru5" : {
251
+ "nodetype" : "namednumber",
252
+ "number" : "7"
253
+ },
254
+ "xru6" : {
255
+ "nodetype" : "namednumber",
256
+ "number" : "8"
257
+ },
258
+ "xru7" : {
259
+ "nodetype" : "namednumber",
260
+ "number" : "9"
261
+ },
262
+ "xru8" : {
263
+ "nodetype" : "namednumber",
264
+ "number" : "10"
265
+ },
266
+ "description" :
267
+ """This is the unique identification for all units in an
268
+ HDSL2/SHDSL span. It is based on the EOC unit addressing
269
+ scheme with reference to the xtuC.""",
270
+ },
271
+ "Hdsl2ShdslUnitSide" : {
272
+ "basetype" : "Enumeration",
273
+ "status" : "current",
274
+ "networkSide" : {
275
+ "nodetype" : "namednumber",
276
+ "number" : "1"
277
+ },
278
+ "customerSide" : {
279
+ "nodetype" : "namednumber",
280
+ "number" : "2"
281
+ },
282
+ "description" :
283
+ """This is the referenced side of an HDSL2/SHDSL unit - Network
284
+ or Customer side. The side facing the Network is the Network
285
+ side, while the side facing the Customer is the Customer side.""",
286
+ },
287
+ "Hdsl2ShdslWirePair" : {
288
+ "basetype" : "Enumeration",
289
+ "status" : "current",
290
+ "wirePair1" : {
291
+ "nodetype" : "namednumber",
292
+ "number" : "1"
293
+ },
294
+ "wirePair2" : {
295
+ "nodetype" : "namednumber",
296
+ "number" : "2"
297
+ },
298
+ "wirePair3" : {
299
+ "nodetype" : "namednumber",
300
+ "number" : "3"
301
+ },
302
+ "wirePair4" : {
303
+ "nodetype" : "namednumber",
304
+ "number" : "4"
305
+ },
306
+ "description" :
307
+ """This is the referenced pair of wires in an HDSL2/SHDSL segment.
308
+ HDSL2 only supports a single pair (wirePair1 or two wire),
309
+ SHDSL lines support an optional second pair (wirePair2 or four
310
+ wire), and G.shdsl.bis support an optional third pair
311
+ (wirePair3 or six wire) and an optional fourth pair
312
+ (wirePair4 or eight wire).""",
313
+ },
314
+ "Hdsl2ShdslTransmissionModeType" : {
315
+ "basetype" : "Bits",
316
+ "status" : "current",
317
+ "region1" : {
318
+ "nodetype" : "namednumber",
319
+ "number" : "0"
320
+ },
321
+ "region2" : {
322
+ "nodetype" : "namednumber",
323
+ "number" : "1"
324
+ },
325
+ "description" :
326
+ """Contains the regional setting of the HDSL2/SHDSL span,
327
+ represented as a bit-map of possible settings. The various
328
+ bit positions are as follows:
329
+
330
+
331
+
332
+ Bit Meaning Description
333
+ 1 region 1 Indicates ITU-T G.991.2 Annex A.
334
+ 2 region 2 Indicates ITU-T G.991.2 Annex B.""",
335
+ },
336
+ "Hdsl2ShdslClockReferenceType" : {
337
+ "basetype" : "Enumeration",
338
+ "status" : "current",
339
+ "localClk" : {
340
+ "nodetype" : "namednumber",
341
+ "number" : "1"
342
+ },
343
+ "networkClk" : {
344
+ "nodetype" : "namednumber",
345
+ "number" : "2"
346
+ },
347
+ "dataOrNetworkClk" : {
348
+ "nodetype" : "namednumber",
349
+ "number" : "3"
350
+ },
351
+ "dataClk" : {
352
+ "nodetype" : "namednumber",
353
+ "number" : "4"
354
+ },
355
+ "description" :
356
+ """The various STU-C symbol clock references for the
357
+ HDSL2/SHDSL span, represented as an enumeration.""",
358
+ },
359
+ }, # typedefs
360
+
361
+ "nodes" : {
362
+ "hdsl2ShdslMIB" : {
363
+ "nodetype" : "node",
364
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
365
+ "oid" : "1.3.6.1.2.1.10.48",
366
+ "status" : "current",
367
+ }, # node
368
+ "hdsl2ShdslNotifications" : {
369
+ "nodetype" : "node",
370
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
371
+ "oid" : "1.3.6.1.2.1.10.48.0",
372
+ }, # node
373
+ "hdsl2ShdslMibObjects" : {
374
+ "nodetype" : "node",
375
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
376
+ "oid" : "1.3.6.1.2.1.10.48.1",
377
+ }, # node
378
+ "hdsl2ShdslSpanConfTable" : {
379
+ "nodetype" : "table",
380
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
381
+ "oid" : "1.3.6.1.2.1.10.48.1.1",
382
+ "status" : "current",
383
+ "description" :
384
+ """This table supports overall configuration of HDSL2/SHDSL
385
+ spans. Entries in this table MUST be maintained in a
386
+ persistent manner.""",
387
+ }, # table
388
+ "hdsl2ShdslSpanConfEntry" : {
389
+ "nodetype" : "row",
390
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
391
+ "oid" : "1.3.6.1.2.1.10.48.1.1.1",
392
+ "status" : "current",
393
+ "linkage" : [
394
+ "ifIndex",
395
+ ],
396
+ "description" :
397
+ """An entry in the hdsl2ShdslSpanConfTable. Each entry
398
+ represents the complete span in a single HDSL2/SHDSL line.
399
+ It is indexed by the ifIndex of the associated HDSL2/SHDSL
400
+ line.""",
401
+ }, # row
402
+ "hdsl2ShdslSpanConfNumRepeaters" : {
403
+ "nodetype" : "column",
404
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
405
+ "oid" : "1.3.6.1.2.1.10.48.1.1.1.1",
406
+ "status" : "current",
407
+ "syntax" : {
408
+ "type" : {
409
+ "basetype" : "Unsigned32",
410
+ "ranges" : [
411
+ {
412
+ "min" : "0",
413
+ "max" : "8"
414
+ },
415
+ ],
416
+ "range" : {
417
+ "min" : "0",
418
+ "max" : "8"
419
+ },
420
+ },
421
+ },
422
+ "access" : "readwrite",
423
+ "units" : "repeaters",
424
+ "description" :
425
+ """This object provisions the number of repeaters/regenerators
426
+ in this HDSL2/SHDSL span.""",
427
+ }, # column
428
+ "hdsl2ShdslSpanConfProfile" : {
429
+ "nodetype" : "column",
430
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
431
+ "oid" : "1.3.6.1.2.1.10.48.1.1.1.2",
432
+ "status" : "current",
433
+ "syntax" : {
434
+ "type" : {
435
+ "basetype" : "OctetString",
436
+ "parent module" : {
437
+ "name" : "SNMP-FRAMEWORK-MIB",
438
+ "type" : "SnmpAdminString",
439
+ },
440
+ "ranges" : [
441
+ {
442
+ "min" : "1",
443
+ "max" : "32"
444
+ },
445
+ ],
446
+ "range" : {
447
+ "min" : "1",
448
+ "max" : "32"
449
+ },
450
+ },
451
+ },
452
+ "access" : "readwrite",
453
+ "description" :
454
+ """This object is a pointer to a span configuration profile in
455
+ the hdsl2ShdslSpanConfProfileTable, which applies to this
456
+ span. The value of this object is the index of the referenced
457
+ profile in the hdsl2ShdslSpanConfProfileTable. Note that span
458
+ configuration profiles are only applicable to SHDSL lines.
459
+
460
+ HDSL2 lines MUST reference the default profile, 'DEFVAL'.
461
+ By default, this object will have the value 'DEFVAL'
462
+ (the index of the default profile).
463
+
464
+ Any attempt to set this object to a value that is not the value
465
+ of the index for an active entry in the profile table,
466
+ hdsl2ShdslSpanConfProfileTable, MUST be rejected.""",
467
+ }, # column
468
+ "hdsl2ShdslSpanConfAlarmProfile" : {
469
+ "nodetype" : "column",
470
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
471
+ "oid" : "1.3.6.1.2.1.10.48.1.1.1.3",
472
+ "status" : "current",
473
+ "syntax" : {
474
+ "type" : {
475
+ "basetype" : "OctetString",
476
+ "parent module" : {
477
+ "name" : "SNMP-FRAMEWORK-MIB",
478
+ "type" : "SnmpAdminString",
479
+ },
480
+ "ranges" : [
481
+ {
482
+ "min" : "1",
483
+ "max" : "32"
484
+ },
485
+ ],
486
+ "range" : {
487
+ "min" : "1",
488
+ "max" : "32"
489
+ },
490
+ },
491
+ },
492
+ "access" : "readwrite",
493
+ "description" :
494
+ """This object is a pointer to an alarm configuration profile in
495
+ the hdsl2ShdslEndpointAlarmConfProfileTable. The value of
496
+ this object is the index of the referenced profile in the
497
+ hdsl2ShdslEndpointAlarmConfProfileTable. The alarm
498
+ threshold configuration in the referenced profile will be
499
+
500
+
501
+
502
+ used by default for all segment endpoints in this span.
503
+ Individual endpoints may override this profile by explicitly
504
+ specifying some other profile in the
505
+ hdsl2ShdslEndpointConfTable. By default, this object will
506
+ have the value 'DEFVAL' (the index of the default
507
+ profile).
508
+
509
+ Any attempt to set this object to a value that is not the value
510
+ of the index for an active entry in the profile table,
511
+ hdsl2ShdslEndpointAlarmConfProfileTable, MUST be rejected.""",
512
+ }, # column
513
+ "hdsl2ShdslSpanStatusTable" : {
514
+ "nodetype" : "table",
515
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
516
+ "oid" : "1.3.6.1.2.1.10.48.1.2",
517
+ "status" : "current",
518
+ "description" :
519
+ """This table provides overall status information of
520
+ HDSL2/SHDSL spans. This table contains live data from
521
+ equipment. As such, it is NOT persistent.""",
522
+ }, # table
523
+ "hdsl2ShdslSpanStatusEntry" : {
524
+ "nodetype" : "row",
525
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
526
+ "oid" : "1.3.6.1.2.1.10.48.1.2.1",
527
+ "status" : "current",
528
+ "linkage" : [
529
+ "ifIndex",
530
+ ],
531
+ "description" :
532
+ """An entry in the hdsl2ShdslSpanStatusTable. Each entry
533
+ represents the complete span in a single HDSL2/SHDSL line.
534
+ It is indexed by the ifIndex of the associated HDSL2/SHDSL
535
+ line.""",
536
+ }, # row
537
+ "hdsl2ShdslStatusNumAvailRepeaters" : {
538
+ "nodetype" : "column",
539
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
540
+ "oid" : "1.3.6.1.2.1.10.48.1.2.1.1",
541
+ "status" : "current",
542
+ "syntax" : {
543
+ "type" : {
544
+ "basetype" : "Unsigned32",
545
+ "ranges" : [
546
+ {
547
+ "min" : "0",
548
+ "max" : "8"
549
+ },
550
+ ],
551
+ "range" : {
552
+ "min" : "0",
553
+ "max" : "8"
554
+ },
555
+ },
556
+ },
557
+ "access" : "readonly",
558
+ "description" :
559
+ """Contains the actual number of repeaters/regenerators
560
+ discovered in this HDSL2/SHDSL span.""",
561
+ }, # column
562
+ "hdsl2ShdslStatusMaxAttainableLineRate" : {
563
+ "nodetype" : "column",
564
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
565
+ "oid" : "1.3.6.1.2.1.10.48.1.2.1.2",
566
+ "status" : "current",
567
+ "syntax" : {
568
+ "type" : {
569
+ "basetype" : "Unsigned32",
570
+ "ranges" : [
571
+ {
572
+ "min" : "0",
573
+ "max" : "4294967295"
574
+ },
575
+ ],
576
+ "range" : {
577
+ "min" : "0",
578
+ "max" : "4294967295"
579
+ },
580
+ },
581
+ },
582
+ "access" : "readonly",
583
+ "units" : "bps",
584
+ "description" :
585
+ """Contains the maximum attainable line rate in this HDSL2/SHDSL
586
+ span. This object provides the maximum rate the line is
587
+ capable of achieving. This is based upon measurements made
588
+ during line probing. This rate includes payload (user data)
589
+ and any applicable framing overhead.""",
590
+ }, # column
591
+ "hdsl2ShdslStatusActualLineRate" : {
592
+ "nodetype" : "column",
593
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
594
+ "oid" : "1.3.6.1.2.1.10.48.1.2.1.3",
595
+ "status" : "current",
596
+ "syntax" : {
597
+ "type" : {
598
+ "basetype" : "Unsigned32",
599
+ "ranges" : [
600
+ {
601
+ "min" : "0",
602
+ "max" : "4294967295"
603
+ },
604
+ ],
605
+ "range" : {
606
+ "min" : "0",
607
+ "max" : "4294967295"
608
+ },
609
+ },
610
+ },
611
+ "access" : "readonly",
612
+ "units" : "bps",
613
+ "description" :
614
+ """Contains the actual line rate in this HDSL2/SHDSL span. This
615
+ SHOULD equal ifSpeed. This rate includes payload (user data)
616
+ and any applicable framing overhead""",
617
+ }, # column
618
+ "hdsl2ShdslStatusTransmissionModeCurrent" : {
619
+ "nodetype" : "column",
620
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
621
+ "oid" : "1.3.6.1.2.1.10.48.1.2.1.4",
622
+ "status" : "current",
623
+ "syntax" : {
624
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslTransmissionModeType"},
625
+ },
626
+ "access" : "readonly",
627
+ "description" :
628
+ """Contains the current Power Spectral Density (PSD) regional
629
+ setting of the HDSL2/SHDSL span.""",
630
+ }, # column
631
+ "hdsl2ShdslStatusMaxAttainablePayloadRate" : {
632
+ "nodetype" : "column",
633
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
634
+ "oid" : "1.3.6.1.2.1.10.48.1.2.1.5",
635
+ "status" : "current",
636
+ "syntax" : {
637
+ "type" : {
638
+ "basetype" : "Unsigned32",
639
+ "ranges" : [
640
+ {
641
+ "min" : "0",
642
+ "max" : "4294967295"
643
+ },
644
+ ],
645
+ "range" : {
646
+ "min" : "0",
647
+ "max" : "4294967295"
648
+ },
649
+ },
650
+ },
651
+ "access" : "readonly",
652
+ "units" : "bps",
653
+ "description" :
654
+ """Contains the maximum attainable payload (user data)
655
+ line rate in this HDSL2/SHDSL span. This object provides
656
+ the maximum rate the line is capable of achieving. This
657
+ is based upon measurements made during line probing. Any
658
+ framing overhead is not included.""",
659
+ }, # column
660
+ "hdsl2ShdslStatusActualPayloadRate" : {
661
+ "nodetype" : "column",
662
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
663
+ "oid" : "1.3.6.1.2.1.10.48.1.2.1.6",
664
+ "status" : "current",
665
+ "syntax" : {
666
+ "type" : {
667
+ "basetype" : "Unsigned32",
668
+ "ranges" : [
669
+ {
670
+ "min" : "0",
671
+ "max" : "4294967295"
672
+ },
673
+ ],
674
+ "range" : {
675
+ "min" : "0",
676
+ "max" : "4294967295"
677
+ },
678
+ },
679
+ },
680
+ "access" : "readonly",
681
+ "units" : "bps",
682
+ "description" :
683
+ """Contains the actual line rate in this HDSL2/SHDSL span. Any
684
+ framing overhead is not included.""",
685
+ }, # column
686
+ "hdsl2ShdslInventoryTable" : {
687
+ "nodetype" : "table",
688
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
689
+ "oid" : "1.3.6.1.2.1.10.48.1.3",
690
+ "status" : "current",
691
+ "description" :
692
+ """This table supports retrieval of unit inventory information
693
+ available via the EOC from units in an HDSL2/SHDSL line.
694
+
695
+ Entries in this table are dynamically created during the
696
+ line discovery process. The life cycle for these entries
697
+ is as follows:
698
+
699
+ - xtu discovers a device, either a far-end xtu or an xru
700
+ - an inventory table entry is created for the device
701
+ - the line goes down for whatever reason
702
+ - inventory table entries for unreachable devices are
703
+ destroyed
704
+
705
+ As these entries are created/destroyed dynamically, they
706
+ are NOT persistent.""",
707
+ }, # table
708
+ "hdsl2ShdslInventoryEntry" : {
709
+ "nodetype" : "row",
710
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
711
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1",
712
+ "status" : "current",
713
+ "linkage" : [
714
+ "ifIndex",
715
+ "hdsl2ShdslInvIndex",
716
+ ],
717
+ "description" :
718
+ """An entry in the hdsl2ShdslInventoryTable. Each entry
719
+
720
+
721
+
722
+ represents inventory information for a single unit in an
723
+ HDSL2/SHDSL line. It is indexed by the ifIndex of the
724
+ HDSL2/SHDSL line and the Hdsl2ShdslUnitId of the
725
+ associated unit.""",
726
+ }, # row
727
+ "hdsl2ShdslInvIndex" : {
728
+ "nodetype" : "column",
729
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
730
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.1",
731
+ "status" : "current",
732
+ "syntax" : {
733
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslUnitId"},
734
+ },
735
+ "access" : "noaccess",
736
+ "description" :
737
+ """Each entry in this table corresponds to a physical element
738
+ in an HDSL2/SHDSL span. It is based on the EOC unit addressing
739
+ scheme with reference to the xtuC.""",
740
+ }, # column
741
+ "hdsl2ShdslInvVendorID" : {
742
+ "nodetype" : "column",
743
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
744
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.2",
745
+ "status" : "current",
746
+ "syntax" : {
747
+ "type" : {
748
+ "basetype" : "OctetString",
749
+ "ranges" : [
750
+ {
751
+ "min" : "8",
752
+ "max" : "8"
753
+ },
754
+ ],
755
+ "range" : {
756
+ "min" : "8",
757
+ "max" : "8"
758
+ },
759
+ },
760
+ },
761
+ "access" : "readonly",
762
+ "description" :
763
+ """Vendor ID as reported in an Inventory Response message.""",
764
+ "reference" :
765
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
766
+ 130, Octets 25-32.""",
767
+ }, # column
768
+ "hdsl2ShdslInvVendorModelNumber" : {
769
+ "nodetype" : "column",
770
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
771
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.3",
772
+ "status" : "current",
773
+ "syntax" : {
774
+ "type" : {
775
+ "basetype" : "OctetString",
776
+ "ranges" : [
777
+ {
778
+ "min" : "12",
779
+ "max" : "12"
780
+ },
781
+ ],
782
+ "range" : {
783
+ "min" : "12",
784
+ "max" : "12"
785
+ },
786
+ },
787
+ },
788
+ "access" : "readonly",
789
+ "description" :
790
+ """Vendor model number as reported in an Inventory Response
791
+ message.""",
792
+ "reference" :
793
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
794
+ 130, Octets 33-44.""",
795
+ }, # column
796
+ "hdsl2ShdslInvVendorSerialNumber" : {
797
+ "nodetype" : "column",
798
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
799
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.4",
800
+ "status" : "current",
801
+ "syntax" : {
802
+ "type" : {
803
+ "basetype" : "OctetString",
804
+ "ranges" : [
805
+ {
806
+ "min" : "12",
807
+ "max" : "12"
808
+ },
809
+ ],
810
+ "range" : {
811
+ "min" : "12",
812
+ "max" : "12"
813
+ },
814
+ },
815
+ },
816
+ "access" : "readonly",
817
+ "description" :
818
+ """Vendor serial number as reported in an Inventory Response
819
+ message.""",
820
+ "reference" :
821
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
822
+ 130, Octets 45-56.""",
823
+ }, # column
824
+ "hdsl2ShdslInvVendorEOCSoftwareVersion" : {
825
+ "nodetype" : "column",
826
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
827
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.5",
828
+ "status" : "current",
829
+ "syntax" : {
830
+ "type" : { "module" :"", "name" : "Integer32"},
831
+ },
832
+ "access" : "readonly",
833
+ "description" :
834
+ """Vendor EOC version as reported in a Discovery Response
835
+ message.""",
836
+ "reference" :
837
+ """G.991.2, Section 9.5.5.7.2, Discovery response - Message ID
838
+ 129, Octet 12.""",
839
+ }, # column
840
+ "hdsl2ShdslInvStandardVersion" : {
841
+ "nodetype" : "column",
842
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
843
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.6",
844
+ "status" : "current",
845
+ "syntax" : {
846
+ "type" : { "module" :"", "name" : "Integer32"},
847
+ },
848
+ "access" : "readonly",
849
+ "description" :
850
+ """Version of the HDSL2/SHDSL standard implemented, as reported
851
+ in an Inventory Response message.""",
852
+ "reference" :
853
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
854
+ 130, Octet 2.""",
855
+ }, # column
856
+ "hdsl2ShdslInvVendorListNumber" : {
857
+ "nodetype" : "column",
858
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
859
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.7",
860
+ "status" : "current",
861
+ "syntax" : {
862
+ "type" : {
863
+ "basetype" : "OctetString",
864
+ "ranges" : [
865
+ {
866
+ "min" : "3",
867
+ "max" : "3"
868
+ },
869
+ ],
870
+ "range" : {
871
+ "min" : "3",
872
+ "max" : "3"
873
+ },
874
+ },
875
+ },
876
+ "access" : "readonly",
877
+ "description" :
878
+ """Vendor list number as reported in an Inventory Response
879
+ message.""",
880
+ "reference" :
881
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
882
+ 130, Octets 3-5.""",
883
+ }, # column
884
+ "hdsl2ShdslInvVendorIssueNumber" : {
885
+ "nodetype" : "column",
886
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
887
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.8",
888
+ "status" : "current",
889
+ "syntax" : {
890
+ "type" : {
891
+ "basetype" : "OctetString",
892
+ "ranges" : [
893
+ {
894
+ "min" : "2",
895
+ "max" : "2"
896
+ },
897
+ ],
898
+ "range" : {
899
+ "min" : "2",
900
+ "max" : "2"
901
+ },
902
+ },
903
+ },
904
+ "access" : "readonly",
905
+ "description" :
906
+ """Vendor issue number as reported in an Inventory Response
907
+ message.""",
908
+ "reference" :
909
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
910
+ 130, Octets 6-7.""",
911
+ }, # column
912
+ "hdsl2ShdslInvVendorSoftwareVersion" : {
913
+ "nodetype" : "column",
914
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
915
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.9",
916
+ "status" : "current",
917
+ "syntax" : {
918
+ "type" : {
919
+ "basetype" : "OctetString",
920
+ "ranges" : [
921
+ {
922
+ "min" : "6",
923
+ "max" : "6"
924
+ },
925
+ ],
926
+ "range" : {
927
+ "min" : "6",
928
+ "max" : "6"
929
+ },
930
+ },
931
+ },
932
+ "access" : "readonly",
933
+ "description" :
934
+ """Vendor software version as reported in an Inventory Response
935
+ message.""",
936
+ "reference" :
937
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
938
+ 130, Octets 8-13.""",
939
+ }, # column
940
+ "hdsl2ShdslInvEquipmentCode" : {
941
+ "nodetype" : "column",
942
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
943
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.10",
944
+ "status" : "current",
945
+ "syntax" : {
946
+ "type" : {
947
+ "basetype" : "OctetString",
948
+ "ranges" : [
949
+ {
950
+ "min" : "10",
951
+ "max" : "10"
952
+ },
953
+ ],
954
+ "range" : {
955
+ "min" : "10",
956
+ "max" : "10"
957
+ },
958
+ },
959
+ },
960
+ "access" : "readonly",
961
+ "description" :
962
+ """Equipment code conforming to ANSI T1.213, Coded Identification
963
+ of Equipment Entities.""",
964
+ "reference" :
965
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
966
+ 130, Octets 14-23.""",
967
+ }, # column
968
+ "hdsl2ShdslInvVendorOther" : {
969
+ "nodetype" : "column",
970
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
971
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.11",
972
+ "status" : "current",
973
+ "syntax" : {
974
+ "type" : {
975
+ "basetype" : "OctetString",
976
+ "ranges" : [
977
+ {
978
+ "min" : "12",
979
+ "max" : "12"
980
+ },
981
+ ],
982
+ "range" : {
983
+ "min" : "12",
984
+ "max" : "12"
985
+ },
986
+ },
987
+ },
988
+ "access" : "readonly",
989
+ "description" :
990
+ """Other vendor information as reported in an Inventory Response
991
+ message.""",
992
+ "reference" :
993
+ """G.991.2, Section 9.5.5.7.4, Inventory response - Message ID
994
+ 130, Octets 57-68.""",
995
+ }, # column
996
+ "hdsl2ShdslInvTransmissionModeCapability" : {
997
+ "nodetype" : "column",
998
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
999
+ "oid" : "1.3.6.1.2.1.10.48.1.3.1.12",
1000
+ "status" : "current",
1001
+ "syntax" : {
1002
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslTransmissionModeType"},
1003
+ },
1004
+ "access" : "readonly",
1005
+ "description" :
1006
+ """Contains the transmission mode capability of the SHDSL unit.""",
1007
+ }, # column
1008
+ "hdsl2ShdslEndpointConfTable" : {
1009
+ "nodetype" : "table",
1010
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1011
+ "oid" : "1.3.6.1.2.1.10.48.1.4",
1012
+ "status" : "current",
1013
+ "description" :
1014
+ """This table supports configuration parameters for segment
1015
+ endpoints in an HDSL2/SHDSL line. As this table is indexed
1016
+ by ifIndex, it MUST be maintained in a persistent manner.""",
1017
+ }, # table
1018
+ "hdsl2ShdslEndpointConfEntry" : {
1019
+ "nodetype" : "row",
1020
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1021
+ "oid" : "1.3.6.1.2.1.10.48.1.4.1",
1022
+ "status" : "current",
1023
+ "linkage" : [
1024
+ "ifIndex",
1025
+ "hdsl2ShdslInvIndex",
1026
+ "hdsl2ShdslEndpointSide",
1027
+ "hdsl2ShdslEndpointWirePair",
1028
+ ],
1029
+ "description" :
1030
+ """An entry in the hdsl2ShdslEndpointConfTable. Each entry
1031
+ represents a single segment endpoint in an HDSL2/SHDSL line.
1032
+ It is indexed by the ifIndex of the HDSL2/SHDSL line, the
1033
+ UnitId of the associated unit, the side of the unit, and the
1034
+ wire pair of the associated modem.""",
1035
+ }, # row
1036
+ "hdsl2ShdslEndpointSide" : {
1037
+ "nodetype" : "column",
1038
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1039
+ "oid" : "1.3.6.1.2.1.10.48.1.4.1.1",
1040
+ "status" : "current",
1041
+ "syntax" : {
1042
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslUnitSide"},
1043
+ },
1044
+ "access" : "noaccess",
1045
+ "description" :
1046
+ """The side of the unit associated with this segment endpoint --
1047
+ Network/Customer side -- as per the Hdsl2ShdslUnitSide textual
1048
+ convention.""",
1049
+ }, # column
1050
+ "hdsl2ShdslEndpointWirePair" : {
1051
+ "nodetype" : "column",
1052
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1053
+ "oid" : "1.3.6.1.2.1.10.48.1.4.1.2",
1054
+ "status" : "current",
1055
+ "syntax" : {
1056
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslWirePair"},
1057
+ },
1058
+ "access" : "noaccess",
1059
+ "description" :
1060
+ """The wire pair of the modem associated with this segment
1061
+ endpoint as per the Hdsl2ShdslWirePair textual convention.""",
1062
+ }, # column
1063
+ "hdsl2ShdslEndpointAlarmConfProfile" : {
1064
+ "nodetype" : "column",
1065
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1066
+ "oid" : "1.3.6.1.2.1.10.48.1.4.1.3",
1067
+ "status" : "current",
1068
+ "syntax" : {
1069
+ "type" : {
1070
+ "basetype" : "OctetString",
1071
+ "parent module" : {
1072
+ "name" : "SNMP-FRAMEWORK-MIB",
1073
+ "type" : "SnmpAdminString",
1074
+ },
1075
+ "ranges" : [
1076
+ {
1077
+ "min" : "0",
1078
+ "max" : "32"
1079
+ },
1080
+ ],
1081
+ "range" : {
1082
+ "min" : "0",
1083
+ "max" : "32"
1084
+ },
1085
+ },
1086
+ },
1087
+ "access" : "readwrite",
1088
+ "description" :
1089
+ """This object configures the alarm threshold values to be used
1090
+ for this segment endpoint. The values are obtained from the
1091
+ alarm configuration profile referenced by this object. The
1092
+ value of this object is the index of the referenced profile in
1093
+ the hdsl2ShdslEndpointAlarmConfProfileTable, or NULL (a
1094
+ zero-length SnmpAdminString). If the value is a zero-length
1095
+ SnmpAdminString, the endpoint uses the default Alarm
1096
+ Configuration Profile for the associated span as per the
1097
+ hdsl2ShdslSpanConfAlarmProfile object in the
1098
+ hdsl2ShdslSpanConfTable. The default value of this object is
1099
+ a zero-length SnmpAdminString.
1100
+
1101
+ Any attempt to set this object to a value that is not the value
1102
+ of the index for an active entry in the profile table,
1103
+ hdsl2ShdslEndpointAlarmConfProfileTable, MUST be rejected.""",
1104
+ }, # column
1105
+ "hdsl2ShdslEndpointCurrTable" : {
1106
+ "nodetype" : "table",
1107
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1108
+ "oid" : "1.3.6.1.2.1.10.48.1.5",
1109
+ "status" : "current",
1110
+ "description" :
1111
+ """This table contains current status and performance information
1112
+ for segment endpoints in HDSL2/SHDSL lines. As with other
1113
+ tables in this MIB module indexed by ifIndex, entries in this
1114
+ table MUST be maintained in a persistent manner.""",
1115
+ }, # table
1116
+ "hdsl2ShdslEndpointCurrEntry" : {
1117
+ "nodetype" : "row",
1118
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1119
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1",
1120
+ "status" : "current",
1121
+ "linkage" : [
1122
+ "ifIndex",
1123
+ "hdsl2ShdslInvIndex",
1124
+ "hdsl2ShdslEndpointSide",
1125
+ "hdsl2ShdslEndpointWirePair",
1126
+ ],
1127
+ "description" :
1128
+ """An entry in the hdsl2ShdslEndpointCurrTable. Each entry
1129
+ contains status and performance information relating to a
1130
+ single segment endpoint. It is indexed by the ifIndex of the
1131
+ HDSL2/SHDSL line, the UnitId of the associated unit, the side
1132
+ of the unit, and the wire pair of the associated modem.""",
1133
+ }, # row
1134
+ "hdsl2ShdslEndpointCurrAtn" : {
1135
+ "nodetype" : "column",
1136
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1137
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.1",
1138
+ "status" : "current",
1139
+ "syntax" : {
1140
+ "type" : {
1141
+ "basetype" : "Integer32",
1142
+ "ranges" : [
1143
+ {
1144
+ "min" : "-127",
1145
+ "max" : "128"
1146
+ },
1147
+ ],
1148
+ "range" : {
1149
+ "min" : "-127",
1150
+ "max" : "128"
1151
+ },
1152
+ },
1153
+ },
1154
+ "access" : "readonly",
1155
+ "units" : "dB",
1156
+ "description" :
1157
+ """The current loop attenuation for this endpoint as reported in
1158
+ a Network or Customer Side Performance Status message.""",
1159
+ "reference" :
1160
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1161
+ }, # column
1162
+ "hdsl2ShdslEndpointCurrSnrMgn" : {
1163
+ "nodetype" : "column",
1164
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1165
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.2",
1166
+ "status" : "current",
1167
+ "syntax" : {
1168
+ "type" : {
1169
+ "basetype" : "Integer32",
1170
+ "ranges" : [
1171
+ {
1172
+ "min" : "-127",
1173
+ "max" : "128"
1174
+ },
1175
+ ],
1176
+ "range" : {
1177
+ "min" : "-127",
1178
+ "max" : "128"
1179
+ },
1180
+ },
1181
+ },
1182
+ "access" : "readonly",
1183
+ "units" : "dB",
1184
+ "description" :
1185
+ """The current SNR margin for this endpoint as reported in a
1186
+ Status Response/SNR message.""",
1187
+ "reference" :
1188
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1189
+ }, # column
1190
+ "hdsl2ShdslEndpointCurrStatus" : {
1191
+ "nodetype" : "column",
1192
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1193
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.3",
1194
+ "status" : "current",
1195
+ "syntax" : {
1196
+ "type" : {
1197
+ "basetype" : "Bits",
1198
+ "noDefect" : {
1199
+ "nodetype" : "namednumber",
1200
+ "number" : "0"
1201
+ },
1202
+ "powerBackoff" : {
1203
+ "nodetype" : "namednumber",
1204
+ "number" : "1"
1205
+ },
1206
+ "deviceFault" : {
1207
+ "nodetype" : "namednumber",
1208
+ "number" : "2"
1209
+ },
1210
+ "dcContinuityFault" : {
1211
+ "nodetype" : "namednumber",
1212
+ "number" : "3"
1213
+ },
1214
+ "snrMarginAlarm" : {
1215
+ "nodetype" : "namednumber",
1216
+ "number" : "4"
1217
+ },
1218
+ "loopAttenuationAlarm" : {
1219
+ "nodetype" : "namednumber",
1220
+ "number" : "5"
1221
+ },
1222
+ "loswFailureAlarm" : {
1223
+ "nodetype" : "namednumber",
1224
+ "number" : "6"
1225
+ },
1226
+ "configInitFailure" : {
1227
+ "nodetype" : "namednumber",
1228
+ "number" : "7"
1229
+ },
1230
+ "protocolInitFailure" : {
1231
+ "nodetype" : "namednumber",
1232
+ "number" : "8"
1233
+ },
1234
+ "noNeighborPresent" : {
1235
+ "nodetype" : "namednumber",
1236
+ "number" : "9"
1237
+ },
1238
+ "loopbackActive" : {
1239
+ "nodetype" : "namednumber",
1240
+ "number" : "10"
1241
+ },
1242
+ },
1243
+ },
1244
+ "access" : "readonly",
1245
+ "description" :
1246
+ """Contains the current state of the endpoint. This is a
1247
+ bit-map of possible conditions. The various bit positions
1248
+ are as follows:
1249
+
1250
+ noDefect There are no defects on the line.
1251
+
1252
+ powerBackoff Indicates enhanced Power Backoff.
1253
+
1254
+ deviceFault Indicates that a vendor-dependent
1255
+ diagnostic or self-test fault
1256
+ has been detected.
1257
+
1258
+ dcContinuityFault Indicates vendor-dependent
1259
+ conditions that interfere with
1260
+ span powering such as short and
1261
+ open circuits.
1262
+
1263
+ snrMarginAlarm Indicates that the SNR margin
1264
+ has dropped below the alarm threshold.
1265
+
1266
+ loopAttenuationAlarm Indicates that the loop attenuation
1267
+ exceeds the alarm threshold.
1268
+
1269
+ loswFailureAlarm Indicates a forward LOSW alarm.
1270
+
1271
+ configInitFailure Endpoint failure during initialization
1272
+ due to paired endpoint not able to
1273
+ support requested configuration.
1274
+
1275
+ protocolInitFailure Endpoint failure during initialization
1276
+ due to incompatible protocol used by
1277
+ the paired endpoint.
1278
+
1279
+ noNeighborPresent Endpoint failure during initialization
1280
+ due to no activation sequence detected
1281
+ from paired endpoint.
1282
+
1283
+ loopbackActive A loopback is currently active at this
1284
+ segment endpoint.
1285
+
1286
+ This is intended to supplement ifOperStatus. Note that there
1287
+ is a 1:1 relationship between the status bits defined in this
1288
+ object and the notification thresholds defined elsewhere in
1289
+ this MIB module.""",
1290
+ "reference" :
1291
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1292
+ }, # column
1293
+ "hdsl2ShdslEndpointES" : {
1294
+ "nodetype" : "column",
1295
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1296
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.4",
1297
+ "status" : "current",
1298
+ "syntax" : {
1299
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1300
+ },
1301
+ "access" : "readonly",
1302
+ "units" : "seconds",
1303
+ "description" :
1304
+ """Count of Errored Seconds (ES) on this endpoint since the xU
1305
+ was last restarted.""",
1306
+ "reference" :
1307
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1308
+ }, # column
1309
+ "hdsl2ShdslEndpointSES" : {
1310
+ "nodetype" : "column",
1311
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1312
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.5",
1313
+ "status" : "current",
1314
+ "syntax" : {
1315
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1316
+ },
1317
+ "access" : "readonly",
1318
+ "units" : "seconds",
1319
+ "description" :
1320
+ """Count of Severely Errored Seconds (SES) on this endpoint
1321
+ since the xU was last restarted.""",
1322
+ "reference" :
1323
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1324
+ }, # column
1325
+ "hdsl2ShdslEndpointCRCanomalies" : {
1326
+ "nodetype" : "column",
1327
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1328
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.6",
1329
+ "status" : "current",
1330
+ "syntax" : {
1331
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1332
+ },
1333
+ "access" : "readonly",
1334
+ "units" : "detected CRC Anomalies",
1335
+ "description" :
1336
+ """Count of CRC anomalies on this endpoint since the xU was
1337
+ last restarted.""",
1338
+ "reference" :
1339
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1340
+ }, # column
1341
+ "hdsl2ShdslEndpointLOSWS" : {
1342
+ "nodetype" : "column",
1343
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1344
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.7",
1345
+ "status" : "current",
1346
+ "syntax" : {
1347
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1348
+ },
1349
+ "access" : "readonly",
1350
+ "units" : "seconds",
1351
+ "description" :
1352
+ """Count of Loss of Sync Word (LOSW) Seconds on this endpoint
1353
+ since the xU was last restarted.""",
1354
+ "reference" :
1355
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1356
+ }, # column
1357
+ "hdsl2ShdslEndpointUAS" : {
1358
+ "nodetype" : "column",
1359
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1360
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.8",
1361
+ "status" : "current",
1362
+ "syntax" : {
1363
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1364
+ },
1365
+ "access" : "readonly",
1366
+ "units" : "seconds",
1367
+ "description" :
1368
+ """Count of Unavailable Seconds (UAS) on this endpoint since
1369
+ the xU was last restarted.""",
1370
+ "reference" :
1371
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1372
+ }, # column
1373
+ "hdsl2ShdslEndpointCurr15MinTimeElapsed" : {
1374
+ "nodetype" : "column",
1375
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1376
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.9",
1377
+ "status" : "current",
1378
+ "syntax" : {
1379
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfTimeElapsed"},
1380
+ },
1381
+ "access" : "readonly",
1382
+ "units" : "seconds",
1383
+ "description" :
1384
+ """Total elapsed seconds in the current 15-minute interval.""",
1385
+ }, # column
1386
+ "hdsl2ShdslEndpointCurr15MinES" : {
1387
+ "nodetype" : "column",
1388
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1389
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.10",
1390
+ "status" : "current",
1391
+ "syntax" : {
1392
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1393
+ },
1394
+ "access" : "readonly",
1395
+ "units" : "seconds",
1396
+ "description" :
1397
+ """Count of Errored Seconds (ES) in the current 15-minute
1398
+ interval.""",
1399
+ "reference" :
1400
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1401
+ }, # column
1402
+ "hdsl2ShdslEndpointCurr15MinSES" : {
1403
+ "nodetype" : "column",
1404
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1405
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.11",
1406
+ "status" : "current",
1407
+ "syntax" : {
1408
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1409
+ },
1410
+ "access" : "readonly",
1411
+ "units" : "seconds",
1412
+ "description" :
1413
+ """Count of Severely Errored Seconds (SES) in the current
1414
+ 15-minute interval.""",
1415
+ "reference" :
1416
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1417
+ }, # column
1418
+ "hdsl2ShdslEndpointCurr15MinCRCanomalies" : {
1419
+ "nodetype" : "column",
1420
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1421
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.12",
1422
+ "status" : "current",
1423
+ "syntax" : {
1424
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1425
+ },
1426
+ "access" : "readonly",
1427
+ "units" : "detected CRC Anomalies",
1428
+ "description" :
1429
+ """Count of CRC anomalies in the current 15-minute interval.""",
1430
+ "reference" :
1431
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1432
+ }, # column
1433
+ "hdsl2ShdslEndpointCurr15MinLOSWS" : {
1434
+ "nodetype" : "column",
1435
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1436
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.13",
1437
+ "status" : "current",
1438
+ "syntax" : {
1439
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1440
+ },
1441
+ "access" : "readonly",
1442
+ "units" : "seconds",
1443
+ "description" :
1444
+ """Count of Loss of Sync Word (LOSW) Seconds in the current
1445
+ 15-minute interval.""",
1446
+ "reference" :
1447
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1448
+ }, # column
1449
+ "hdsl2ShdslEndpointCurr15MinUAS" : {
1450
+ "nodetype" : "column",
1451
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1452
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.14",
1453
+ "status" : "current",
1454
+ "syntax" : {
1455
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1456
+ },
1457
+ "access" : "readonly",
1458
+ "units" : "seconds",
1459
+ "description" :
1460
+ """Count of Unavailable Seconds (UAS) in the current 15-minute
1461
+ interval.""",
1462
+ "reference" :
1463
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1464
+ }, # column
1465
+ "hdsl2ShdslEndpointCurr1DayTimeElapsed" : {
1466
+ "nodetype" : "column",
1467
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1468
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.15",
1469
+ "status" : "current",
1470
+ "syntax" : {
1471
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfTimeElapsed"},
1472
+ },
1473
+ "access" : "readonly",
1474
+ "units" : "seconds",
1475
+ "description" :
1476
+ """Number of seconds that have elapsed since the beginning of
1477
+ the current 1-day interval.""",
1478
+ }, # column
1479
+ "hdsl2ShdslEndpointCurr1DayES" : {
1480
+ "nodetype" : "column",
1481
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1482
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.16",
1483
+ "status" : "current",
1484
+ "syntax" : {
1485
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfCurrDayCount"},
1486
+ },
1487
+ "access" : "readonly",
1488
+ "units" : "seconds",
1489
+ "description" :
1490
+ """Count of Errored Seconds (ES) during the current day as
1491
+ measured by hdsl2ShdslEndpointCurr1DayTimeElapsed.""",
1492
+ "reference" :
1493
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1494
+ }, # column
1495
+ "hdsl2ShdslEndpointCurr1DaySES" : {
1496
+ "nodetype" : "column",
1497
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1498
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.17",
1499
+ "status" : "current",
1500
+ "syntax" : {
1501
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfCurrDayCount"},
1502
+ },
1503
+ "access" : "readonly",
1504
+ "units" : "seconds",
1505
+ "description" :
1506
+ """Count of Severely Errored Seconds (SES) during the current
1507
+ day as measured by hdsl2ShdslEndpointCurr1DayTimeElapsed.""",
1508
+ "reference" :
1509
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1510
+ }, # column
1511
+ "hdsl2ShdslEndpointCurr1DayCRCanomalies" : {
1512
+ "nodetype" : "column",
1513
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1514
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.18",
1515
+ "status" : "current",
1516
+ "syntax" : {
1517
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfCurrDayCount"},
1518
+ },
1519
+ "access" : "readonly",
1520
+ "units" : "detected CRC Anomalies",
1521
+ "description" :
1522
+ """Count of CRC anomalies during the current day as measured
1523
+ by hdsl2ShdslEndpointCurr1DayTimeElapsed.""",
1524
+ "reference" :
1525
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1526
+ }, # column
1527
+ "hdsl2ShdslEndpointCurr1DayLOSWS" : {
1528
+ "nodetype" : "column",
1529
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1530
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.19",
1531
+ "status" : "current",
1532
+ "syntax" : {
1533
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfCurrDayCount"},
1534
+ },
1535
+ "access" : "readonly",
1536
+ "units" : "seconds",
1537
+ "description" :
1538
+ """Count of Loss of Sync Word (LOSW) Seconds during the current
1539
+ day as measured by hdsl2ShdslEndpointCurr1DayTimeElapsed.""",
1540
+ "reference" :
1541
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1542
+ }, # column
1543
+ "hdsl2ShdslEndpointCurr1DayUAS" : {
1544
+ "nodetype" : "column",
1545
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1546
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.20",
1547
+ "status" : "current",
1548
+ "syntax" : {
1549
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfCurrDayCount"},
1550
+ },
1551
+ "access" : "readonly",
1552
+ "units" : "seconds",
1553
+ "description" :
1554
+ """Count of Unavailable Seconds (UAS) during the current day as
1555
+ measured by hdsl2ShdslEndpointCurr1DayTimeElapsed.""",
1556
+ "reference" :
1557
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1558
+ }, # column
1559
+ "hdsl2ShdslEndpointCurrTipRingReversal" : {
1560
+ "nodetype" : "column",
1561
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1562
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.21",
1563
+ "status" : "current",
1564
+ "syntax" : {
1565
+ "type" : {
1566
+ "basetype" : "Enumeration",
1567
+ "normal" : {
1568
+ "nodetype" : "namednumber",
1569
+ "number" : "1"
1570
+ },
1571
+ "reversed" : {
1572
+ "nodetype" : "namednumber",
1573
+ "number" : "2"
1574
+ },
1575
+ },
1576
+ },
1577
+ "access" : "readonly",
1578
+ "description" :
1579
+ """This object indicates the state of the tip/ring for the
1580
+ wire pair.""",
1581
+ }, # column
1582
+ "hdsl2ShdslEndpointCurrActivationState" : {
1583
+ "nodetype" : "column",
1584
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1585
+ "oid" : "1.3.6.1.2.1.10.48.1.5.1.22",
1586
+ "status" : "current",
1587
+ "syntax" : {
1588
+ "type" : {
1589
+ "basetype" : "Enumeration",
1590
+ "preActivation" : {
1591
+ "nodetype" : "namednumber",
1592
+ "number" : "1"
1593
+ },
1594
+ "activation" : {
1595
+ "nodetype" : "namednumber",
1596
+ "number" : "2"
1597
+ },
1598
+ "data" : {
1599
+ "nodetype" : "namednumber",
1600
+ "number" : "3"
1601
+ },
1602
+ },
1603
+ },
1604
+ "access" : "readonly",
1605
+ "description" :
1606
+ """This object indicates the activation or training state of
1607
+ the wire pair.""",
1608
+ "reference" :
1609
+ """ITU-T G.991.2, Section 6.2 PMD Activation Sequence""",
1610
+ }, # column
1611
+ "hdsl2Shdsl15MinIntervalTable" : {
1612
+ "nodetype" : "table",
1613
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1614
+ "oid" : "1.3.6.1.2.1.10.48.1.6",
1615
+ "status" : "current",
1616
+ "description" :
1617
+ """This table provides one row for each HDSL2/SHDSL endpoint
1618
+ performance data collection interval. This table contains
1619
+ live data from equipment. As such, it is NOT persistent.""",
1620
+ }, # table
1621
+ "hdsl2Shdsl15MinIntervalEntry" : {
1622
+ "nodetype" : "row",
1623
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1624
+ "oid" : "1.3.6.1.2.1.10.48.1.6.1",
1625
+ "status" : "current",
1626
+ "linkage" : [
1627
+ "ifIndex",
1628
+ "hdsl2ShdslInvIndex",
1629
+ "hdsl2ShdslEndpointSide",
1630
+ "hdsl2ShdslEndpointWirePair",
1631
+ "hdsl2Shdsl15MinIntervalNumber",
1632
+ ],
1633
+ "description" :
1634
+ """An entry in the hdsl2Shdsl15MinIntervalTable.""",
1635
+ }, # row
1636
+ "hdsl2Shdsl15MinIntervalNumber" : {
1637
+ "nodetype" : "column",
1638
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1639
+ "oid" : "1.3.6.1.2.1.10.48.1.6.1.1",
1640
+ "status" : "current",
1641
+ "syntax" : {
1642
+ "type" : {
1643
+ "basetype" : "Unsigned32",
1644
+ "ranges" : [
1645
+ {
1646
+ "min" : "1",
1647
+ "max" : "96"
1648
+ },
1649
+ ],
1650
+ "range" : {
1651
+ "min" : "1",
1652
+ "max" : "96"
1653
+ },
1654
+ },
1655
+ },
1656
+ "access" : "noaccess",
1657
+ "description" :
1658
+ """Performance Data Interval number. Interval 1 is the most
1659
+ recent previous interval; interval 96 is 24 hours ago.
1660
+ Intervals 2..96 are optional.""",
1661
+ }, # column
1662
+ "hdsl2Shdsl15MinIntervalES" : {
1663
+ "nodetype" : "column",
1664
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1665
+ "oid" : "1.3.6.1.2.1.10.48.1.6.1.2",
1666
+ "status" : "current",
1667
+ "syntax" : {
1668
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1669
+ },
1670
+ "access" : "readonly",
1671
+ "units" : "seconds",
1672
+ "description" :
1673
+ """Count of Errored Seconds (ES) during the interval.""",
1674
+ "reference" :
1675
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1676
+ }, # column
1677
+ "hdsl2Shdsl15MinIntervalSES" : {
1678
+ "nodetype" : "column",
1679
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1680
+ "oid" : "1.3.6.1.2.1.10.48.1.6.1.3",
1681
+ "status" : "current",
1682
+ "syntax" : {
1683
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1684
+ },
1685
+ "access" : "readonly",
1686
+ "units" : "seconds",
1687
+ "description" :
1688
+ """Count of Severely Errored Seconds (SES) during the interval.""",
1689
+ "reference" :
1690
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1691
+ }, # column
1692
+ "hdsl2Shdsl15MinIntervalCRCanomalies" : {
1693
+ "nodetype" : "column",
1694
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1695
+ "oid" : "1.3.6.1.2.1.10.48.1.6.1.4",
1696
+ "status" : "current",
1697
+ "syntax" : {
1698
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1699
+ },
1700
+ "access" : "readonly",
1701
+ "units" : "detected CRC Anomalies",
1702
+ "description" :
1703
+ """Count of CRC anomalies during the interval.""",
1704
+ "reference" :
1705
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1706
+ }, # column
1707
+ "hdsl2Shdsl15MinIntervalLOSWS" : {
1708
+ "nodetype" : "column",
1709
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1710
+ "oid" : "1.3.6.1.2.1.10.48.1.6.1.5",
1711
+ "status" : "current",
1712
+ "syntax" : {
1713
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1714
+ },
1715
+ "access" : "readonly",
1716
+ "units" : "seconds",
1717
+ "description" :
1718
+ """Count of Loss of Sync Word (LOSW) Seconds during the
1719
+ interval.""",
1720
+ "reference" :
1721
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1722
+ }, # column
1723
+ "hdsl2Shdsl15MinIntervalUAS" : {
1724
+ "nodetype" : "column",
1725
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1726
+ "oid" : "1.3.6.1.2.1.10.48.1.6.1.6",
1727
+ "status" : "current",
1728
+ "syntax" : {
1729
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1730
+ },
1731
+ "access" : "readonly",
1732
+ "units" : "seconds",
1733
+ "description" :
1734
+ """Count of Unavailable Seconds (UAS) during the interval.""",
1735
+ "reference" :
1736
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1737
+ }, # column
1738
+ "hdsl2Shdsl1DayIntervalTable" : {
1739
+ "nodetype" : "table",
1740
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1741
+ "oid" : "1.3.6.1.2.1.10.48.1.7",
1742
+ "status" : "current",
1743
+ "description" :
1744
+ """This table provides one row for each HDSL2/SHDSL endpoint
1745
+ performance data collection interval. This table contains
1746
+ live data from equipment. As such, it is NOT persistent.""",
1747
+ }, # table
1748
+ "hdsl2Shdsl1DayIntervalEntry" : {
1749
+ "nodetype" : "row",
1750
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1751
+ "oid" : "1.3.6.1.2.1.10.48.1.7.1",
1752
+ "status" : "current",
1753
+ "linkage" : [
1754
+ "ifIndex",
1755
+ "hdsl2ShdslInvIndex",
1756
+ "hdsl2ShdslEndpointSide",
1757
+ "hdsl2ShdslEndpointWirePair",
1758
+ "hdsl2Shdsl1DayIntervalNumber",
1759
+ ],
1760
+ "description" :
1761
+ """An entry in the hdsl2Shdsl1DayIntervalTable.""",
1762
+ }, # row
1763
+ "hdsl2Shdsl1DayIntervalNumber" : {
1764
+ "nodetype" : "column",
1765
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1766
+ "oid" : "1.3.6.1.2.1.10.48.1.7.1.1",
1767
+ "status" : "current",
1768
+ "syntax" : {
1769
+ "type" : {
1770
+ "basetype" : "Unsigned32",
1771
+ "ranges" : [
1772
+ {
1773
+ "min" : "1",
1774
+ "max" : "30"
1775
+ },
1776
+ ],
1777
+ "range" : {
1778
+ "min" : "1",
1779
+ "max" : "30"
1780
+ },
1781
+ },
1782
+ },
1783
+ "access" : "noaccess",
1784
+ "description" :
1785
+ """History Data Interval number. Interval 1 is the most
1786
+ recent previous day; interval 30 is 30 days ago. Intervals
1787
+ 2..30 are optional.""",
1788
+ }, # column
1789
+ "hdsl2Shdsl1DayIntervalMoniSecs" : {
1790
+ "nodetype" : "column",
1791
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1792
+ "oid" : "1.3.6.1.2.1.10.48.1.7.1.2",
1793
+ "status" : "current",
1794
+ "syntax" : {
1795
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfTimeElapsed"},
1796
+ },
1797
+ "access" : "readonly",
1798
+ "units" : "seconds",
1799
+ "description" :
1800
+ """The amount of time in the 1-day interval over which the
1801
+ performance monitoring information is actually counted.
1802
+ This value will be the same as the interval duration except
1803
+ in a situation where performance monitoring data could not
1804
+ be collected for any reason.""",
1805
+ }, # column
1806
+ "hdsl2Shdsl1DayIntervalES" : {
1807
+ "nodetype" : "column",
1808
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1809
+ "oid" : "1.3.6.1.2.1.10.48.1.7.1.3",
1810
+ "status" : "current",
1811
+ "syntax" : {
1812
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2Shdsl1DayIntervalCount"},
1813
+ },
1814
+ "access" : "readonly",
1815
+ "units" : "seconds",
1816
+ "description" :
1817
+ """Count of Errored Seconds (ES) during the 1-day interval as
1818
+ measured by hdsl2Shdsl1DayIntervalMoniSecs.""",
1819
+ "reference" :
1820
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1821
+ }, # column
1822
+ "hdsl2Shdsl1DayIntervalSES" : {
1823
+ "nodetype" : "column",
1824
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1825
+ "oid" : "1.3.6.1.2.1.10.48.1.7.1.4",
1826
+ "status" : "current",
1827
+ "syntax" : {
1828
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2Shdsl1DayIntervalCount"},
1829
+ },
1830
+ "access" : "readonly",
1831
+ "units" : "seconds",
1832
+ "description" :
1833
+ """Count of Severely Errored Seconds (SES) during the 1-day
1834
+
1835
+
1836
+
1837
+ interval as measured by hdsl2Shdsl1DayIntervalMoniSecs.""",
1838
+ "reference" :
1839
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1840
+ }, # column
1841
+ "hdsl2Shdsl1DayIntervalCRCanomalies" : {
1842
+ "nodetype" : "column",
1843
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1844
+ "oid" : "1.3.6.1.2.1.10.48.1.7.1.5",
1845
+ "status" : "current",
1846
+ "syntax" : {
1847
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2Shdsl1DayIntervalCount"},
1848
+ },
1849
+ "access" : "readonly",
1850
+ "units" : "detected CRC Anomalies",
1851
+ "description" :
1852
+ """Count of CRC anomalies during the 1-day interval as
1853
+ measured by hdsl2Shdsl1DayIntervalMoniSecs.""",
1854
+ "reference" :
1855
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1856
+ }, # column
1857
+ "hdsl2Shdsl1DayIntervalLOSWS" : {
1858
+ "nodetype" : "column",
1859
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1860
+ "oid" : "1.3.6.1.2.1.10.48.1.7.1.6",
1861
+ "status" : "current",
1862
+ "syntax" : {
1863
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2Shdsl1DayIntervalCount"},
1864
+ },
1865
+ "access" : "readonly",
1866
+ "units" : "seconds",
1867
+ "description" :
1868
+ """Count of Loss of Sync Word (LOSW) Seconds during the 1-day
1869
+ interval as measured by hdsl2Shdsl1DayIntervalMoniSecs.""",
1870
+ "reference" :
1871
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1872
+ }, # column
1873
+ "hdsl2Shdsl1DayIntervalUAS" : {
1874
+ "nodetype" : "column",
1875
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1876
+ "oid" : "1.3.6.1.2.1.10.48.1.7.1.7",
1877
+ "status" : "current",
1878
+ "syntax" : {
1879
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2Shdsl1DayIntervalCount"},
1880
+ },
1881
+ "access" : "readonly",
1882
+ "units" : "seconds",
1883
+ "description" :
1884
+ """Count of Unavailable Seconds (UAS) during the 1-day interval
1885
+ as measured by hdsl2Shdsl1DayIntervalMoniSecs.""",
1886
+ "reference" :
1887
+ """HDSL2 Section 7.5.3.7; SHDSL Section 9.5.5.7""",
1888
+ }, # column
1889
+ "hdsl2ShdslEndpointMaintTable" : {
1890
+ "nodetype" : "table",
1891
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1892
+ "oid" : "1.3.6.1.2.1.10.48.1.8",
1893
+ "status" : "current",
1894
+ "description" :
1895
+ """This table supports maintenance operations (e.g., loopbacks)
1896
+ to be performed on HDSL2/SHDSL segment endpoints. This table
1897
+ contains live data from equipment. As such, it is NOT
1898
+
1899
+
1900
+
1901
+ persistent.""",
1902
+ }, # table
1903
+ "hdsl2ShdslEndpointMaintEntry" : {
1904
+ "nodetype" : "row",
1905
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1906
+ "oid" : "1.3.6.1.2.1.10.48.1.8.1",
1907
+ "status" : "current",
1908
+ "linkage" : [
1909
+ "ifIndex",
1910
+ "hdsl2ShdslInvIndex",
1911
+ "hdsl2ShdslEndpointSide",
1912
+ ],
1913
+ "description" :
1914
+ """An entry in the hdsl2ShdslEndpointMaintTable. Each entry
1915
+ corresponds to a single segment endpoint and is indexed by the
1916
+ ifIndex of the HDSL2/SHDSL line, the UnitId of the associated
1917
+ unit, and the side of the unit.""",
1918
+ }, # row
1919
+ "hdsl2ShdslMaintLoopbackConfig" : {
1920
+ "nodetype" : "column",
1921
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1922
+ "oid" : "1.3.6.1.2.1.10.48.1.8.1.1",
1923
+ "status" : "current",
1924
+ "syntax" : {
1925
+ "type" : {
1926
+ "basetype" : "Enumeration",
1927
+ "noLoopback" : {
1928
+ "nodetype" : "namednumber",
1929
+ "number" : "1"
1930
+ },
1931
+ "normalLoopback" : {
1932
+ "nodetype" : "namednumber",
1933
+ "number" : "2"
1934
+ },
1935
+ "specialLoopback" : {
1936
+ "nodetype" : "namednumber",
1937
+ "number" : "3"
1938
+ },
1939
+ },
1940
+ },
1941
+ "access" : "readwrite",
1942
+ "description" :
1943
+ """This object controls configuration of loopbacks for the
1944
+ associated segment endpoint. The status of the loopback
1945
+ is obtained via the hdsl2ShdslEndpointCurrStatus object.""",
1946
+ }, # column
1947
+ "hdsl2ShdslMaintTipRingReversal" : {
1948
+ "nodetype" : "column",
1949
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1950
+ "oid" : "1.3.6.1.2.1.10.48.1.8.1.2",
1951
+ "status" : "current",
1952
+ "syntax" : {
1953
+ "type" : {
1954
+ "basetype" : "Enumeration",
1955
+ "normal" : {
1956
+ "nodetype" : "namednumber",
1957
+ "number" : "1"
1958
+ },
1959
+ "reversed" : {
1960
+ "nodetype" : "namednumber",
1961
+ "number" : "2"
1962
+ },
1963
+ },
1964
+ },
1965
+ "access" : "readonly",
1966
+ "description" :
1967
+ """This object indicates the state of the tip/ring pair at the
1968
+ associated segment endpoint.""",
1969
+ }, # column
1970
+ "hdsl2ShdslMaintPowerBackOff" : {
1971
+ "nodetype" : "column",
1972
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1973
+ "oid" : "1.3.6.1.2.1.10.48.1.8.1.3",
1974
+ "status" : "current",
1975
+ "syntax" : {
1976
+ "type" : {
1977
+ "basetype" : "Enumeration",
1978
+ "default" : {
1979
+ "nodetype" : "namednumber",
1980
+ "number" : "1"
1981
+ },
1982
+ "enhanced" : {
1983
+ "nodetype" : "namednumber",
1984
+ "number" : "2"
1985
+ },
1986
+ },
1987
+ },
1988
+ "access" : "readwrite",
1989
+ "description" :
1990
+ """This object configures the receiver at the associated
1991
+ segment endpoint to operate in default or enhanced power
1992
+ backoff mode.""",
1993
+ }, # column
1994
+ "hdsl2ShdslMaintSoftRestart" : {
1995
+ "nodetype" : "column",
1996
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
1997
+ "oid" : "1.3.6.1.2.1.10.48.1.8.1.4",
1998
+ "status" : "current",
1999
+ "syntax" : {
2000
+ "type" : {
2001
+ "basetype" : "Enumeration",
2002
+ "ready" : {
2003
+ "nodetype" : "namednumber",
2004
+ "number" : "1"
2005
+ },
2006
+ "restart" : {
2007
+ "nodetype" : "namednumber",
2008
+ "number" : "2"
2009
+ },
2010
+ },
2011
+ },
2012
+ "access" : "readwrite",
2013
+ "description" :
2014
+ """This object enables the manager to trigger a soft restart
2015
+ of the modem at the associated segment endpoint. The
2016
+ manager may only set this object to the 'restart(2)'
2017
+ value, which initiates a restart. The agent will perform a
2018
+ restart after approximately 5 seconds. Following the 5 second
2019
+ period, the agent will restore the object to the 'ready(1)'
2020
+ state.""",
2021
+ }, # column
2022
+ "hdsl2ShdslUnitMaintTable" : {
2023
+ "nodetype" : "table",
2024
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2025
+ "oid" : "1.3.6.1.2.1.10.48.1.9",
2026
+ "status" : "current",
2027
+ "description" :
2028
+ """This table supports maintenance operations for units in a
2029
+ HDSL2/SHDSL line. Entries in this table MUST be maintained
2030
+ in a persistent manner.""",
2031
+ }, # table
2032
+ "hdsl2ShdslUnitMaintEntry" : {
2033
+ "nodetype" : "row",
2034
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2035
+ "oid" : "1.3.6.1.2.1.10.48.1.9.1",
2036
+ "status" : "current",
2037
+ "linkage" : [
2038
+ "ifIndex",
2039
+ "hdsl2ShdslInvIndex",
2040
+ ],
2041
+ "description" :
2042
+ """An entry in the hdsl2ShdslUnitMaintTable. Each entry
2043
+ corresponds to a single unit and is indexed by the
2044
+ ifIndex of the HDSL2/SHDSL line and the UnitId of the
2045
+ associated unit.""",
2046
+ }, # row
2047
+ "hdsl2ShdslMaintLoopbackTimeout" : {
2048
+ "nodetype" : "column",
2049
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2050
+ "oid" : "1.3.6.1.2.1.10.48.1.9.1.1",
2051
+ "status" : "current",
2052
+ "syntax" : {
2053
+ "type" : {
2054
+ "basetype" : "Integer32",
2055
+ "ranges" : [
2056
+ {
2057
+ "min" : "0",
2058
+ "max" : "4095"
2059
+ },
2060
+ ],
2061
+ "range" : {
2062
+ "min" : "0",
2063
+ "max" : "4095"
2064
+ },
2065
+ },
2066
+ },
2067
+ "access" : "readwrite",
2068
+ "units" : "minutes",
2069
+ "description" :
2070
+ """This object configures the timeout value for loopbacks
2071
+ initiated at segments endpoints contained in the associated
2072
+ unit. A value of 0 disables the timeout.""",
2073
+ }, # column
2074
+ "hdsl2ShdslMaintUnitPowerSource" : {
2075
+ "nodetype" : "column",
2076
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2077
+ "oid" : "1.3.6.1.2.1.10.48.1.9.1.2",
2078
+ "status" : "current",
2079
+ "syntax" : {
2080
+ "type" : {
2081
+ "basetype" : "Enumeration",
2082
+ "local" : {
2083
+ "nodetype" : "namednumber",
2084
+ "number" : "1"
2085
+ },
2086
+ "span" : {
2087
+ "nodetype" : "namednumber",
2088
+ "number" : "2"
2089
+ },
2090
+ },
2091
+ },
2092
+ "access" : "readonly",
2093
+ "description" :
2094
+ """This object indicates the DC power source being used by the
2095
+ associated unit.""",
2096
+ }, # column
2097
+ "hdsl2ShdslSpanConfProfileTable" : {
2098
+ "nodetype" : "table",
2099
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2100
+ "oid" : "1.3.6.1.2.1.10.48.1.10",
2101
+ "status" : "current",
2102
+ "description" :
2103
+ """This table supports definitions of span configuration
2104
+ profiles for SHDSL lines. HDSL2 does not support these
2105
+ configuration options. This table MUST be maintained
2106
+ in a persistent manner.""",
2107
+ }, # table
2108
+ "hdsl2ShdslSpanConfProfileEntry" : {
2109
+ "nodetype" : "row",
2110
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2111
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1",
2112
+ "create" : "true",
2113
+ "status" : "current",
2114
+ "implied" : "true",
2115
+ "linkage" : [
2116
+ "hdsl2ShdslSpanConfProfileName",
2117
+ ],
2118
+ "description" :
2119
+ """Each entry corresponds to a single span configuration
2120
+ profile. Each profile contains a set of span configuration
2121
+ parameters. The configuration parameters in a profile are
2122
+ applied to those lines referencing that profile (see the
2123
+ hdsl2ShdslSpanConfProfile object). Profiles may be
2124
+ created/deleted using the row creation/deletion mechanism
2125
+ via hdsl2ShdslSpanConfProfileRowStatus. If an active
2126
+ entry is referenced in hdsl2ShdslSpanConfProfile, the
2127
+ entry MUST remain active until all references are removed.""",
2128
+ }, # row
2129
+ "hdsl2ShdslSpanConfProfileName" : {
2130
+ "nodetype" : "column",
2131
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2132
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.1",
2133
+ "status" : "current",
2134
+ "syntax" : {
2135
+ "type" : {
2136
+ "basetype" : "OctetString",
2137
+ "parent module" : {
2138
+ "name" : "SNMP-FRAMEWORK-MIB",
2139
+ "type" : "SnmpAdminString",
2140
+ },
2141
+ "ranges" : [
2142
+ {
2143
+ "min" : "1",
2144
+ "max" : "32"
2145
+ },
2146
+ ],
2147
+ "range" : {
2148
+ "min" : "1",
2149
+ "max" : "32"
2150
+ },
2151
+ },
2152
+ },
2153
+ "access" : "noaccess",
2154
+ "description" :
2155
+ """This object is the unique index associated with this profile.
2156
+ Entries in this table are referenced via the object
2157
+ hdsl2ShdslSpanConfProfile in Hdsl2ShdslSpanConfEntry.""",
2158
+ }, # column
2159
+ "hdsl2ShdslSpanConfWireInterface" : {
2160
+ "nodetype" : "column",
2161
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2162
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.2",
2163
+ "status" : "current",
2164
+ "syntax" : {
2165
+ "type" : {
2166
+ "basetype" : "Enumeration",
2167
+ "twoWire" : {
2168
+ "nodetype" : "namednumber",
2169
+ "number" : "1"
2170
+ },
2171
+ "fourWire" : {
2172
+ "nodetype" : "namednumber",
2173
+ "number" : "2"
2174
+ },
2175
+ "sixWire" : {
2176
+ "nodetype" : "namednumber",
2177
+ "number" : "3"
2178
+ },
2179
+ "eightWire" : {
2180
+ "nodetype" : "namednumber",
2181
+ "number" : "4"
2182
+ },
2183
+ },
2184
+ },
2185
+ "access" : "readwrite",
2186
+ "default" : "twoWire",
2187
+ "description" :
2188
+ """This object configures the two-wire or optional four-wire,
2189
+ six-wire, or eight-wire operation for SHDSL lines.""",
2190
+ }, # column
2191
+ "hdsl2ShdslSpanConfMinLineRate" : {
2192
+ "nodetype" : "column",
2193
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2194
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.3",
2195
+ "status" : "current",
2196
+ "syntax" : {
2197
+ "type" : {
2198
+ "basetype" : "Unsigned32",
2199
+ "ranges" : [
2200
+ {
2201
+ "min" : "0",
2202
+ "max" : "4294967295"
2203
+ },
2204
+ ],
2205
+ "range" : {
2206
+ "min" : "0",
2207
+ "max" : "4294967295"
2208
+ },
2209
+ },
2210
+ },
2211
+ "access" : "readwrite",
2212
+ "default" : "1552000",
2213
+ "units" : "bps",
2214
+ "description" :
2215
+ """This object configures the minimum transmission rate for
2216
+ the associated SHDSL Line in bits-per-second (bps) and includes
2217
+ both payload (user data) and any applicable framing overhead.
2218
+ If the minimum line rate equals the maximum line rate
2219
+ (hdsl2ShdslSpanMaxLineRate), the line rate is considered
2220
+ 'fixed'. If the minimum line rate is less than the
2221
+ maximum line rate, the line rate is considered
2222
+ 'rate-adaptive'.""",
2223
+ }, # column
2224
+ "hdsl2ShdslSpanConfMaxLineRate" : {
2225
+ "nodetype" : "column",
2226
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2227
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.4",
2228
+ "status" : "current",
2229
+ "syntax" : {
2230
+ "type" : {
2231
+ "basetype" : "Unsigned32",
2232
+ "ranges" : [
2233
+ {
2234
+ "min" : "0",
2235
+ "max" : "4294967295"
2236
+ },
2237
+ ],
2238
+ "range" : {
2239
+ "min" : "0",
2240
+ "max" : "4294967295"
2241
+ },
2242
+ },
2243
+ },
2244
+ "access" : "readwrite",
2245
+ "default" : "1552000",
2246
+ "units" : "bps",
2247
+ "description" :
2248
+ """This object configures the maximum transmission rate for
2249
+ the associated SHDSL Line in bits-per-second (bps) and includes
2250
+ both payload (user data) and any applicable framing overhead.
2251
+ If the minimum line rate equals the maximum line rate
2252
+ (hdsl2ShdslSpanMaxLineRate), the line rate is considered
2253
+ 'fixed'. If the minimum line rate is less than the
2254
+ maximum line rate, the line rate is considered
2255
+ 'rate-adaptive'.""",
2256
+ }, # column
2257
+ "hdsl2ShdslSpanConfPSD" : {
2258
+ "nodetype" : "column",
2259
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2260
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.5",
2261
+ "status" : "current",
2262
+ "syntax" : {
2263
+ "type" : {
2264
+ "basetype" : "Enumeration",
2265
+ "symmetric" : {
2266
+ "nodetype" : "namednumber",
2267
+ "number" : "1"
2268
+ },
2269
+ "asymmetric" : {
2270
+ "nodetype" : "namednumber",
2271
+ "number" : "2"
2272
+ },
2273
+ },
2274
+ },
2275
+ "access" : "readwrite",
2276
+ "default" : "symmetric",
2277
+ "description" :
2278
+ """This object configures use of symmetric/asymmetric PSD (Power
2279
+ Spectral Density) Mask for the associated SHDSL Line. Support
2280
+ for symmetric PSD is mandatory for all supported data rates.
2281
+ Support for asymmetric PSD is optional.""",
2282
+ }, # column
2283
+ "hdsl2ShdslSpanConfTransmissionMode" : {
2284
+ "nodetype" : "column",
2285
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2286
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.6",
2287
+ "status" : "current",
2288
+ "syntax" : {
2289
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslTransmissionModeType"},
2290
+ },
2291
+ "access" : "readwrite",
2292
+ "default" : "(region1)",
2293
+ "description" :
2294
+ """This object specifies the regional setting for the SHDSL
2295
+ line.""",
2296
+ }, # column
2297
+ "hdsl2ShdslSpanConfRemoteEnabled" : {
2298
+ "nodetype" : "column",
2299
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2300
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.7",
2301
+ "status" : "current",
2302
+ "syntax" : {
2303
+ "type" : {
2304
+ "basetype" : "Enumeration",
2305
+ "enabled" : {
2306
+ "nodetype" : "namednumber",
2307
+ "number" : "1"
2308
+ },
2309
+ "disabled" : {
2310
+ "nodetype" : "namednumber",
2311
+ "number" : "2"
2312
+ },
2313
+ },
2314
+ },
2315
+ "access" : "readwrite",
2316
+ "default" : "enabled",
2317
+ "description" :
2318
+ """This object enables/disables support for remote management
2319
+ of the units in an SHDSL line from the STU-R via the EOC.""",
2320
+ }, # column
2321
+ "hdsl2ShdslSpanConfPowerFeeding" : {
2322
+ "nodetype" : "column",
2323
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2324
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.8",
2325
+ "status" : "current",
2326
+ "syntax" : {
2327
+ "type" : {
2328
+ "basetype" : "Enumeration",
2329
+ "noPower" : {
2330
+ "nodetype" : "namednumber",
2331
+ "number" : "1"
2332
+ },
2333
+ "powerFeed" : {
2334
+ "nodetype" : "namednumber",
2335
+ "number" : "2"
2336
+ },
2337
+ "wettingCurrent" : {
2338
+ "nodetype" : "namednumber",
2339
+ "number" : "3"
2340
+ },
2341
+ },
2342
+ },
2343
+ "access" : "readwrite",
2344
+ "default" : "noPower",
2345
+ "description" :
2346
+ """This object enables/disables support for optional power
2347
+ feeding in an SHDSL line.""",
2348
+ }, # column
2349
+ "hdsl2ShdslSpanConfCurrCondTargetMarginDown" : {
2350
+ "nodetype" : "column",
2351
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2352
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.9",
2353
+ "status" : "current",
2354
+ "syntax" : {
2355
+ "type" : {
2356
+ "basetype" : "Integer32",
2357
+ "ranges" : [
2358
+ {
2359
+ "min" : "-10",
2360
+ "max" : "21"
2361
+ },
2362
+ ],
2363
+ "range" : {
2364
+ "min" : "-10",
2365
+ "max" : "21"
2366
+ },
2367
+ },
2368
+ },
2369
+ "access" : "readwrite",
2370
+ "default" : "0",
2371
+ "units" : "dB",
2372
+ "description" :
2373
+ """This object specifies the downstream current condition target
2374
+ SNR margin for an SHDSL line. The SNR margin is the difference
2375
+ between the desired SNR and the actual SNR. Target SNR margin
2376
+ is the desired SNR margin for a unit.""",
2377
+ }, # column
2378
+ "hdsl2ShdslSpanConfWorstCaseTargetMarginDown" : {
2379
+ "nodetype" : "column",
2380
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2381
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.10",
2382
+ "status" : "current",
2383
+ "syntax" : {
2384
+ "type" : {
2385
+ "basetype" : "Integer32",
2386
+ "ranges" : [
2387
+ {
2388
+ "min" : "-10",
2389
+ "max" : "21"
2390
+ },
2391
+ ],
2392
+ "range" : {
2393
+ "min" : "-10",
2394
+ "max" : "21"
2395
+ },
2396
+ },
2397
+ },
2398
+ "access" : "readwrite",
2399
+ "default" : "0",
2400
+ "units" : "dB",
2401
+ "description" :
2402
+ """This object specifies the downstream worst-case target SNR
2403
+ margin for an SHDSL line. The SNR margin is the difference
2404
+ between the desired SNR and the actual SNR. Target SNR
2405
+ margin is the desired SNR margin for a unit.""",
2406
+ }, # column
2407
+ "hdsl2ShdslSpanConfCurrCondTargetMarginUp" : {
2408
+ "nodetype" : "column",
2409
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2410
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.11",
2411
+ "status" : "current",
2412
+ "syntax" : {
2413
+ "type" : {
2414
+ "basetype" : "Integer32",
2415
+ "ranges" : [
2416
+ {
2417
+ "min" : "-10",
2418
+ "max" : "21"
2419
+ },
2420
+ ],
2421
+ "range" : {
2422
+ "min" : "-10",
2423
+ "max" : "21"
2424
+ },
2425
+ },
2426
+ },
2427
+ "access" : "readwrite",
2428
+ "default" : "0",
2429
+ "units" : "dB",
2430
+ "description" :
2431
+ """This object specifies the upstream current-condition target
2432
+ SNR margin for an SHDSL line. The SNR margin is the difference
2433
+ between the desired SNR and the actual SNR. Target SNR margin
2434
+ is the desired SNR margin for a unit.""",
2435
+ }, # column
2436
+ "hdsl2ShdslSpanConfWorstCaseTargetMarginUp" : {
2437
+ "nodetype" : "column",
2438
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2439
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.12",
2440
+ "status" : "current",
2441
+ "syntax" : {
2442
+ "type" : {
2443
+ "basetype" : "Integer32",
2444
+ "ranges" : [
2445
+ {
2446
+ "min" : "-10",
2447
+ "max" : "21"
2448
+ },
2449
+ ],
2450
+ "range" : {
2451
+ "min" : "-10",
2452
+ "max" : "21"
2453
+ },
2454
+ },
2455
+ },
2456
+ "access" : "readwrite",
2457
+ "default" : "0",
2458
+ "units" : "dB",
2459
+ "description" :
2460
+ """This object specifies the upstream worst-case target SNR
2461
+ margin for an SHDSL line. The SNR margin is the difference
2462
+ between the desired SNR and the actual SNR. Target SNR margin
2463
+ is the desired SNR margin for a unit.""",
2464
+ }, # column
2465
+ "hdsl2ShdslSpanConfUsedTargetMargins" : {
2466
+ "nodetype" : "column",
2467
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2468
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.13",
2469
+ "status" : "current",
2470
+ "syntax" : {
2471
+ "type" : {
2472
+ "basetype" : "Bits",
2473
+ "currCondDown" : {
2474
+ "nodetype" : "namednumber",
2475
+ "number" : "0"
2476
+ },
2477
+ "worstCaseDown" : {
2478
+ "nodetype" : "namednumber",
2479
+ "number" : "1"
2480
+ },
2481
+ "currCondUp" : {
2482
+ "nodetype" : "namednumber",
2483
+ "number" : "2"
2484
+ },
2485
+ "worstCaseUp" : {
2486
+ "nodetype" : "namednumber",
2487
+ "number" : "3"
2488
+ },
2489
+ },
2490
+ },
2491
+ "access" : "readwrite",
2492
+ "default" : "(currCondDown)",
2493
+ "description" :
2494
+ """Indicates whether a target SNR margin is enabled or
2495
+ disabled. This is a bit-map of possible settings. The
2496
+ various bit positions are as follows:
2497
+
2498
+ currCondDown - current-condition downstream target SNR
2499
+ margin enabled
2500
+
2501
+ worstCaseDown - worst-case downstream target SNR margin
2502
+ enabled
2503
+
2504
+ currCondUp - current-condition upstream target SNR
2505
+ margin enabled
2506
+
2507
+ worstCaseUp - worst-case upstream target SNR margin
2508
+ enabled.""",
2509
+ }, # column
2510
+ "hdsl2ShdslSpanConfReferenceClock" : {
2511
+ "nodetype" : "column",
2512
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2513
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.14",
2514
+ "status" : "current",
2515
+ "syntax" : {
2516
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslClockReferenceType"},
2517
+ },
2518
+ "access" : "readwrite",
2519
+ "default" : "localClk",
2520
+ "description" :
2521
+ """This object configures the clock reference for the STU-C
2522
+ in an SHDSL Line.""",
2523
+ }, # column
2524
+ "hdsl2ShdslSpanConfLineProbeEnable" : {
2525
+ "nodetype" : "column",
2526
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2527
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.15",
2528
+ "status" : "current",
2529
+ "syntax" : {
2530
+ "type" : {
2531
+ "basetype" : "Enumeration",
2532
+ "disable" : {
2533
+ "nodetype" : "namednumber",
2534
+ "number" : "1"
2535
+ },
2536
+ "enable" : {
2537
+ "nodetype" : "namednumber",
2538
+ "number" : "2"
2539
+ },
2540
+ },
2541
+ },
2542
+ "access" : "readwrite",
2543
+ "default" : "disable",
2544
+ "description" :
2545
+ """This object enables/disables support for Line Probe of
2546
+ the units in an SHDSL line. When Line Probe is enabled, the
2547
+ system performs Line Probing to find the best possible
2548
+ rate. If Line Probe is disabled, the rate adaptation phase
2549
+ is skipped to shorten set up time.""",
2550
+ }, # column
2551
+ "hdsl2ShdslSpanConfProfileRowStatus" : {
2552
+ "nodetype" : "column",
2553
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2554
+ "oid" : "1.3.6.1.2.1.10.48.1.10.1.16",
2555
+ "status" : "current",
2556
+ "syntax" : {
2557
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2558
+ },
2559
+ "access" : "readwrite",
2560
+ "description" :
2561
+ """This object controls creation/deletion of the associated
2562
+ entry in this table per the semantics of RowStatus. If an
2563
+ active entry is referenced in hdsl2ShdslSpanConfProfile, the
2564
+ entry MUST remain active until all references are removed.""",
2565
+ }, # column
2566
+ "hdsl2ShdslEndpointAlarmConfProfileTable" : {
2567
+ "nodetype" : "table",
2568
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2569
+ "oid" : "1.3.6.1.2.1.10.48.1.11",
2570
+ "status" : "current",
2571
+ "description" :
2572
+ """This table supports definitions of alarm configuration
2573
+ profiles for HDSL2/SHDSL segment endpoints. This table
2574
+ MUST be maintained in a persistent manner.""",
2575
+ }, # table
2576
+ "hdsl2ShdslEndpointAlarmConfProfileEntry" : {
2577
+ "nodetype" : "row",
2578
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2579
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1",
2580
+ "create" : "true",
2581
+ "status" : "current",
2582
+ "implied" : "true",
2583
+ "linkage" : [
2584
+ "hdsl2ShdslEndpointAlarmConfProfileName",
2585
+ ],
2586
+ "description" :
2587
+ """Each entry corresponds to a single alarm configuration profile.
2588
+ Each profile contains a set of parameters for setting alarm
2589
+ thresholds for various performance attributes monitored at
2590
+ HDSL2/SHDSL segment endpoints. Profiles may be created/deleted
2591
+ using the row creation/deletion mechanism via
2592
+ hdsl2ShdslEndpointAlarmConfProfileRowStatus. If an active
2593
+ entry is referenced in either hdsl2ShdslSpanConfAlarmProfile
2594
+ or hdsl2ShdslEndpointAlarmConfProfile, the entry MUST remain
2595
+ active until all references are removed.""",
2596
+ }, # row
2597
+ "hdsl2ShdslEndpointAlarmConfProfileName" : {
2598
+ "nodetype" : "column",
2599
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2600
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.1",
2601
+ "status" : "current",
2602
+ "syntax" : {
2603
+ "type" : {
2604
+ "basetype" : "OctetString",
2605
+ "parent module" : {
2606
+ "name" : "SNMP-FRAMEWORK-MIB",
2607
+ "type" : "SnmpAdminString",
2608
+ },
2609
+ "ranges" : [
2610
+ {
2611
+ "min" : "1",
2612
+ "max" : "32"
2613
+ },
2614
+ ],
2615
+ "range" : {
2616
+ "min" : "1",
2617
+ "max" : "32"
2618
+ },
2619
+ },
2620
+ },
2621
+ "access" : "noaccess",
2622
+ "description" :
2623
+ """This object is the unique index associated with this profile.""",
2624
+ }, # column
2625
+ "hdsl2ShdslEndpointThreshLoopAttenuation" : {
2626
+ "nodetype" : "column",
2627
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2628
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.2",
2629
+ "status" : "current",
2630
+ "syntax" : {
2631
+ "type" : {
2632
+ "basetype" : "Integer32",
2633
+ "ranges" : [
2634
+ {
2635
+ "min" : "-127",
2636
+ "max" : "128"
2637
+ },
2638
+ ],
2639
+ "range" : {
2640
+ "min" : "-127",
2641
+ "max" : "128"
2642
+ },
2643
+ },
2644
+ },
2645
+ "access" : "readwrite",
2646
+ "default" : "0",
2647
+ "units" : "dB",
2648
+ "description" :
2649
+ """This object configures the loop attenuation alarm threshold.
2650
+ When the current value of hdsl2ShdslEndpointCurrAtn reaches
2651
+ or exceeds this threshold, an hdsl2ShdslLoopAttenCrossing
2652
+ MAY be generated.""",
2653
+ }, # column
2654
+ "hdsl2ShdslEndpointThreshSNRMargin" : {
2655
+ "nodetype" : "column",
2656
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2657
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.3",
2658
+ "status" : "current",
2659
+ "syntax" : {
2660
+ "type" : {
2661
+ "basetype" : "Integer32",
2662
+ "ranges" : [
2663
+ {
2664
+ "min" : "-127",
2665
+ "max" : "128"
2666
+ },
2667
+ ],
2668
+ "range" : {
2669
+ "min" : "-127",
2670
+ "max" : "128"
2671
+ },
2672
+ },
2673
+ },
2674
+ "access" : "readwrite",
2675
+ "default" : "0",
2676
+ "units" : "dB",
2677
+ "description" :
2678
+ """This object configures the SNR margin alarm threshold.
2679
+ When the current value of hdsl2ShdslEndpointCurrSnrMgn
2680
+ reaches or drops below this threshold, a
2681
+ hdsl2ShdslSNRMarginCrossing MAY be generated.""",
2682
+ }, # column
2683
+ "hdsl2ShdslEndpointThreshES" : {
2684
+ "nodetype" : "column",
2685
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2686
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.4",
2687
+ "status" : "current",
2688
+ "syntax" : {
2689
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfIntervalThreshold"},
2690
+ },
2691
+ "access" : "readwrite",
2692
+ "default" : "0",
2693
+ "units" : "seconds",
2694
+ "description" :
2695
+ """This object configures the threshold for the number of
2696
+ Errored Seconds (ES) within any given 15-minute performance
2697
+ data collection interval. If the value of Errored Seconds
2698
+ in a particular 15-minute collection interval reaches/
2699
+ exceeds this value, an hdsl2ShdslPerfESThresh MAY be
2700
+ generated. At most, one notification will be sent per
2701
+ interval per endpoint.""",
2702
+ }, # column
2703
+ "hdsl2ShdslEndpointThreshSES" : {
2704
+ "nodetype" : "column",
2705
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2706
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.5",
2707
+ "status" : "current",
2708
+ "syntax" : {
2709
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfIntervalThreshold"},
2710
+ },
2711
+ "access" : "readwrite",
2712
+ "default" : "0",
2713
+ "units" : "seconds",
2714
+ "description" :
2715
+ """This object configures the threshold for the number of
2716
+ Severely Errored Seconds (SES) within any given 15-minute
2717
+ performance data collection interval. If the value of
2718
+ Severely Errored Seconds in a particular 15-minute collection
2719
+ interval reaches/exceeds this value, an hdsl2ShdslPerfSESThresh
2720
+ MAY be generated. At most, one notification will be sent per
2721
+ interval per endpoint.""",
2722
+ }, # column
2723
+ "hdsl2ShdslEndpointThreshCRCanomalies" : {
2724
+ "nodetype" : "column",
2725
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2726
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.6",
2727
+ "status" : "current",
2728
+ "syntax" : {
2729
+ "type" : { "module" :"", "name" : "Integer32"},
2730
+ },
2731
+ "access" : "readwrite",
2732
+ "default" : "0",
2733
+ "units" : "detected CRC Anomalies",
2734
+ "description" :
2735
+ """This object configures the threshold for the number of
2736
+ CRC anomalies within any given 15-minute performance data
2737
+ collection interval. If the value of CRC anomalies in a
2738
+ particular 15-minute collection interval reaches/exceeds
2739
+ this value, an hdsl2ShdslPerfCRCanomaliesThresh MAY be
2740
+ generated. At most, one notification will be sent per
2741
+ interval per endpoint.""",
2742
+ }, # column
2743
+ "hdsl2ShdslEndpointThreshLOSWS" : {
2744
+ "nodetype" : "column",
2745
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2746
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.7",
2747
+ "status" : "current",
2748
+ "syntax" : {
2749
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfIntervalThreshold"},
2750
+ },
2751
+ "access" : "readwrite",
2752
+ "default" : "0",
2753
+ "units" : "seconds",
2754
+ "description" :
2755
+ """This object configures the threshold for the number of
2756
+ Loss of Sync Word (LOSW) Seconds within any given 15-minute
2757
+ performance data collection interval. If the value of LOSW
2758
+ in a particular 15-minute collection interval reaches/exceeds
2759
+ this value, an hdsl2ShdslPerfLOSWSThresh MAY be generated.
2760
+ At most, one notification will be sent per interval per
2761
+ endpoint.""",
2762
+ }, # column
2763
+ "hdsl2ShdslEndpointThreshUAS" : {
2764
+ "nodetype" : "column",
2765
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2766
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.8",
2767
+ "status" : "current",
2768
+ "syntax" : {
2769
+ "type" : { "module" :"HDSL2-SHDSL-LINE-MIB", "name" : "Hdsl2ShdslPerfIntervalThreshold"},
2770
+ },
2771
+ "access" : "readwrite",
2772
+ "default" : "0",
2773
+ "units" : "seconds",
2774
+ "description" :
2775
+ """This object configures the threshold for the number of
2776
+ Unavailable Seconds (UAS) within any given 15-minute
2777
+ performance data collection interval. If the value of UAS
2778
+ in a particular 15-minute collection interval reaches/exceeds
2779
+ this value, an hdsl2ShdslPerfUASThresh MAY be generated.
2780
+ At most, one notification will be sent per interval per
2781
+ endpoint.""",
2782
+ }, # column
2783
+ "hdsl2ShdslEndpointAlarmConfProfileRowStatus" : {
2784
+ "nodetype" : "column",
2785
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2786
+ "oid" : "1.3.6.1.2.1.10.48.1.11.1.9",
2787
+ "status" : "current",
2788
+ "syntax" : {
2789
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2790
+ },
2791
+ "access" : "readwrite",
2792
+ "description" :
2793
+ """This object controls creation/deletion of the associated
2794
+ entry in this table as per the semantics of RowStatus.
2795
+ If an active entry is referenced in either
2796
+ hdsl2ShdslSpanConfAlarmProfile or
2797
+ hdsl2ShdslEndpointAlarmConfProfile, the entry MUST remain
2798
+ active until all references are removed.""",
2799
+ }, # column
2800
+ "hdsl2ShdslConformance" : {
2801
+ "nodetype" : "node",
2802
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2803
+ "oid" : "1.3.6.1.2.1.10.48.3",
2804
+ }, # node
2805
+ "hdsl2ShdslGroups" : {
2806
+ "nodetype" : "node",
2807
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2808
+ "oid" : "1.3.6.1.2.1.10.48.3.1",
2809
+ }, # node
2810
+ "hdsl2ShdslCompliances" : {
2811
+ "nodetype" : "node",
2812
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2813
+ "oid" : "1.3.6.1.2.1.10.48.3.2",
2814
+ }, # node
2815
+ }, # nodes
2816
+
2817
+ "notifications" : {
2818
+ "hdsl2ShdslLoopAttenCrossing" : {
2819
+ "nodetype" : "notification",
2820
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2821
+ "oid" : "1.3.6.1.2.1.10.48.0.1",
2822
+ "status" : "current",
2823
+ "objects" : {
2824
+ "hdsl2ShdslEndpointCurrAtn" : {
2825
+ "nodetype" : "object",
2826
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2827
+ },
2828
+ "hdsl2ShdslEndpointThreshLoopAttenuation" : {
2829
+ "nodetype" : "object",
2830
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2831
+ },
2832
+ },
2833
+ "description" :
2834
+ """This notification indicates that the loop attenuation
2835
+ threshold (as per the hdsl2ShdslEndpointThreshLoopAttenuation
2836
+ value) has been reached/exceeded for the HDSL2/SHDSL segment
2837
+ endpoint.""",
2838
+ }, # notification
2839
+ "hdsl2ShdslSNRMarginCrossing" : {
2840
+ "nodetype" : "notification",
2841
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2842
+ "oid" : "1.3.6.1.2.1.10.48.0.2",
2843
+ "status" : "current",
2844
+ "objects" : {
2845
+ "hdsl2ShdslEndpointCurrSnrMgn" : {
2846
+ "nodetype" : "object",
2847
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2848
+ },
2849
+ "hdsl2ShdslEndpointThreshSNRMargin" : {
2850
+ "nodetype" : "object",
2851
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2852
+ },
2853
+ },
2854
+ "description" :
2855
+ """This notification indicates that the SNR margin threshold (as
2856
+ per the hdsl2ShdslEndpointThreshSNRMargin value) has been
2857
+ reached/exceeded for the HDSL2/SHDSL segment endpoint.""",
2858
+ }, # notification
2859
+ "hdsl2ShdslPerfESThresh" : {
2860
+ "nodetype" : "notification",
2861
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2862
+ "oid" : "1.3.6.1.2.1.10.48.0.3",
2863
+ "status" : "current",
2864
+ "objects" : {
2865
+ "hdsl2ShdslEndpointCurr15MinES" : {
2866
+ "nodetype" : "object",
2867
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2868
+ },
2869
+ "hdsl2ShdslEndpointThreshES" : {
2870
+ "nodetype" : "object",
2871
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2872
+ },
2873
+ },
2874
+ "description" :
2875
+ """This notification indicates that the errored seconds
2876
+ threshold (as per the hdsl2ShdslEndpointThreshES value)
2877
+ has been reached/exceeded for the HDSL2/SHDSL segment
2878
+ endpoint.""",
2879
+ }, # notification
2880
+ "hdsl2ShdslPerfSESThresh" : {
2881
+ "nodetype" : "notification",
2882
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2883
+ "oid" : "1.3.6.1.2.1.10.48.0.4",
2884
+ "status" : "current",
2885
+ "objects" : {
2886
+ "hdsl2ShdslEndpointCurr15MinSES" : {
2887
+ "nodetype" : "object",
2888
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2889
+ },
2890
+ "hdsl2ShdslEndpointThreshSES" : {
2891
+ "nodetype" : "object",
2892
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2893
+ },
2894
+ },
2895
+ "description" :
2896
+ """This notification indicates that the severely errored seconds
2897
+ threshold (as per the hdsl2ShdslEndpointThreshSES value) has
2898
+ been reached/exceeded for the HDSL2/SHDSL segment endpoint.""",
2899
+ }, # notification
2900
+ "hdsl2ShdslPerfCRCanomaliesThresh" : {
2901
+ "nodetype" : "notification",
2902
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2903
+ "oid" : "1.3.6.1.2.1.10.48.0.5",
2904
+ "status" : "current",
2905
+ "objects" : {
2906
+ "hdsl2ShdslEndpointCurr15MinCRCanomalies" : {
2907
+ "nodetype" : "object",
2908
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2909
+ },
2910
+ "hdsl2ShdslEndpointThreshCRCanomalies" : {
2911
+ "nodetype" : "object",
2912
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2913
+ },
2914
+ },
2915
+ "description" :
2916
+ """This notification indicates that the CRC anomalies threshold
2917
+ (as per the hdsl2ShdslEndpointThreshCRCanomalies value) has
2918
+ been reached/exceeded for the HDSL2/SHDSL segment endpoint.""",
2919
+ }, # notification
2920
+ "hdsl2ShdslPerfLOSWSThresh" : {
2921
+ "nodetype" : "notification",
2922
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2923
+ "oid" : "1.3.6.1.2.1.10.48.0.6",
2924
+ "status" : "current",
2925
+ "objects" : {
2926
+ "hdsl2ShdslEndpointCurr15MinLOSWS" : {
2927
+ "nodetype" : "object",
2928
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2929
+ },
2930
+ "hdsl2ShdslEndpointThreshLOSWS" : {
2931
+ "nodetype" : "object",
2932
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2933
+ },
2934
+ },
2935
+ "description" :
2936
+ """This notification indicates that the LOSW Seconds threshold
2937
+ (as per the hdsl2ShdslEndpointThreshLOSWS value) has been
2938
+ reached/exceeded for the HDSL2/SHDSL segment endpoint.""",
2939
+ }, # notification
2940
+ "hdsl2ShdslPerfUASThresh" : {
2941
+ "nodetype" : "notification",
2942
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2943
+ "oid" : "1.3.6.1.2.1.10.48.0.7",
2944
+ "status" : "current",
2945
+ "objects" : {
2946
+ "hdsl2ShdslEndpointCurr15MinUAS" : {
2947
+ "nodetype" : "object",
2948
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2949
+ },
2950
+ "hdsl2ShdslEndpointThreshUAS" : {
2951
+ "nodetype" : "object",
2952
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2953
+ },
2954
+ },
2955
+ "description" :
2956
+ """This notification indicates that the unavailable seconds
2957
+ threshold (as per the hdsl2ShdslEndpointThreshUAS value) has
2958
+ been reached/exceeded for the HDSL2/SHDSL segment endpoint.""",
2959
+ }, # notification
2960
+ "hdsl2ShdslSpanInvalidNumRepeaters" : {
2961
+ "nodetype" : "notification",
2962
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2963
+ "oid" : "1.3.6.1.2.1.10.48.0.8",
2964
+ "status" : "current",
2965
+ "objects" : {
2966
+ "hdsl2ShdslSpanConfNumRepeaters" : {
2967
+ "nodetype" : "object",
2968
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2969
+ },
2970
+ },
2971
+ "description" :
2972
+ """This notification indicates that a mismatch has been detected
2973
+ between the number of repeater/regenerator units configured
2974
+ for an HDSL2/SHDSL line via the hdsl2ShdslSpanConfNumRepeaters
2975
+ object and the actual number of repeater/regenerator units
2976
+ discovered via the EOC.""",
2977
+ }, # notification
2978
+ "hdsl2ShdslLoopbackFailure" : {
2979
+ "nodetype" : "notification",
2980
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2981
+ "oid" : "1.3.6.1.2.1.10.48.0.9",
2982
+ "status" : "current",
2983
+ "objects" : {
2984
+ "hdsl2ShdslMaintLoopbackConfig" : {
2985
+ "nodetype" : "object",
2986
+ "module" : "HDSL2-SHDSL-LINE-MIB"
2987
+ },
2988
+ },
2989
+ "description" :
2990
+ """This notification indicates that an endpoint maintenance
2991
+ loopback command failed for an HDSL2/SHDSL segment.""",
2992
+ }, # notification
2993
+ "hdsl2ShdslpowerBackoff" : {
2994
+ "nodetype" : "notification",
2995
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
2996
+ "oid" : "1.3.6.1.2.1.10.48.0.10",
2997
+ "status" : "current",
2998
+ "objects" : {
2999
+ "hdsl2ShdslEndpointCurrStatus" : {
3000
+ "nodetype" : "object",
3001
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3002
+ },
3003
+ },
3004
+ "description" :
3005
+ """This notification indicates that the bit setting for
3006
+ powerBackoff in the hdsl2ShdslEndpointCurrStatus object for
3007
+ this endpoint has changed.""",
3008
+ }, # notification
3009
+ "hdsl2ShdsldeviceFault" : {
3010
+ "nodetype" : "notification",
3011
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3012
+ "oid" : "1.3.6.1.2.1.10.48.0.11",
3013
+ "status" : "current",
3014
+ "objects" : {
3015
+ "hdsl2ShdslEndpointCurrStatus" : {
3016
+ "nodetype" : "object",
3017
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3018
+ },
3019
+ },
3020
+ "description" :
3021
+ """This notification indicates that the bit setting for
3022
+ deviceFault in the hdsl2ShdslEndpointCurrStatus object for
3023
+ this endpoint has changed.""",
3024
+ }, # notification
3025
+ "hdsl2ShdsldcContinuityFault" : {
3026
+ "nodetype" : "notification",
3027
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3028
+ "oid" : "1.3.6.1.2.1.10.48.0.12",
3029
+ "status" : "current",
3030
+ "objects" : {
3031
+ "hdsl2ShdslEndpointCurrStatus" : {
3032
+ "nodetype" : "object",
3033
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3034
+ },
3035
+ },
3036
+ "description" :
3037
+ """This notification indicates that the bit setting for
3038
+ dcContinuityFault in the hdsl2ShdslEndpointCurrStatus object
3039
+ for this endpoint has changed.""",
3040
+ }, # notification
3041
+ "hdsl2ShdslconfigInitFailure" : {
3042
+ "nodetype" : "notification",
3043
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3044
+ "oid" : "1.3.6.1.2.1.10.48.0.13",
3045
+ "status" : "current",
3046
+ "objects" : {
3047
+ "hdsl2ShdslEndpointCurrStatus" : {
3048
+ "nodetype" : "object",
3049
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3050
+ },
3051
+ },
3052
+ "description" :
3053
+ """This notification indicates that the bit setting for
3054
+ configInitFailure in the hdsl2ShdslEndpointCurrStatus object
3055
+ for this endpoint has changed.""",
3056
+ }, # notification
3057
+ "hdsl2ShdslprotocolInitFailure" : {
3058
+ "nodetype" : "notification",
3059
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3060
+ "oid" : "1.3.6.1.2.1.10.48.0.14",
3061
+ "status" : "current",
3062
+ "objects" : {
3063
+ "hdsl2ShdslEndpointCurrStatus" : {
3064
+ "nodetype" : "object",
3065
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3066
+ },
3067
+ },
3068
+ "description" :
3069
+ """This notification indicates that the bit setting for
3070
+ protocolInitFailure in the hdsl2ShdslEndpointCurrStatus
3071
+ object for this endpoint has changed.""",
3072
+ }, # notification
3073
+ "hdsl2ShdslnoNeighborPresent" : {
3074
+ "nodetype" : "notification",
3075
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3076
+ "oid" : "1.3.6.1.2.1.10.48.0.15",
3077
+ "status" : "current",
3078
+ "objects" : {
3079
+ "hdsl2ShdslEndpointCurrStatus" : {
3080
+ "nodetype" : "object",
3081
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3082
+ },
3083
+ },
3084
+ "description" :
3085
+ """This notification indicates that the bit setting for
3086
+ noNeighborPresent in the hdsl2ShdslEndpointCurrStatus object
3087
+ for this endpoint has changed.""",
3088
+ }, # notification
3089
+ "hdsl2ShdslLocalPowerLoss" : {
3090
+ "nodetype" : "notification",
3091
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3092
+ "oid" : "1.3.6.1.2.1.10.48.0.16",
3093
+ "status" : "current",
3094
+ "objects" : {
3095
+ "hdsl2ShdslInvVendorID" : {
3096
+ "nodetype" : "object",
3097
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3098
+ },
3099
+ },
3100
+ "description" :
3101
+ """This notification indicates impending unit failure due to
3102
+ loss of local power (last gasp).""",
3103
+ }, # notification
3104
+ }, # notifications
3105
+
3106
+ "groups" : {
3107
+ "hdsl2ShdslSpanConfGroup" : {
3108
+ "nodetype" : "group",
3109
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3110
+ "oid" : "1.3.6.1.2.1.10.48.3.1.1",
3111
+ "status" : "current",
3112
+ "members" : {
3113
+ "hdsl2ShdslSpanConfNumRepeaters" : {
3114
+ "nodetype" : "member",
3115
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3116
+ },
3117
+ "hdsl2ShdslSpanConfProfile" : {
3118
+ "nodetype" : "member",
3119
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3120
+ },
3121
+ "hdsl2ShdslSpanConfAlarmProfile" : {
3122
+ "nodetype" : "member",
3123
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3124
+ },
3125
+ }, # members
3126
+ "description" :
3127
+ """This group supports objects for configuring span-related
3128
+ parameters for HDSL2/SHDSL lines.""",
3129
+ }, # group
3130
+ "hdsl2ShdslSpanStatusGroup" : {
3131
+ "nodetype" : "group",
3132
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3133
+ "oid" : "1.3.6.1.2.1.10.48.3.1.2",
3134
+ "status" : "current",
3135
+ "members" : {
3136
+ "hdsl2ShdslStatusNumAvailRepeaters" : {
3137
+ "nodetype" : "member",
3138
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3139
+ },
3140
+ }, # members
3141
+ "description" :
3142
+ """This group supports objects for retrieving span-related
3143
+ status for HDSL2/SHDSL lines.""",
3144
+ }, # group
3145
+ "hdsl2ShdslInventoryShdslGroup" : {
3146
+ "nodetype" : "group",
3147
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3148
+ "oid" : "1.3.6.1.2.1.10.48.3.1.3",
3149
+ "status" : "current",
3150
+ "members" : {
3151
+ "hdsl2ShdslInvTransmissionModeCapability" : {
3152
+ "nodetype" : "member",
3153
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3154
+ },
3155
+ }, # members
3156
+ "description" :
3157
+ """This group supports objects for retrieving SHDSL-specific
3158
+ inventory information.""",
3159
+ }, # group
3160
+ "hdsl2ShdslSpanShdslStatusGroup" : {
3161
+ "nodetype" : "group",
3162
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3163
+ "oid" : "1.3.6.1.2.1.10.48.3.1.4",
3164
+ "status" : "current",
3165
+ "members" : {
3166
+ "hdsl2ShdslStatusMaxAttainableLineRate" : {
3167
+ "nodetype" : "member",
3168
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3169
+ },
3170
+ "hdsl2ShdslStatusActualLineRate" : {
3171
+ "nodetype" : "member",
3172
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3173
+ },
3174
+ "hdsl2ShdslStatusTransmissionModeCurrent" : {
3175
+ "nodetype" : "member",
3176
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3177
+ },
3178
+ }, # members
3179
+ "description" :
3180
+ """This group supports objects for retrieving SHDSL-specific
3181
+ span-related status.""",
3182
+ }, # group
3183
+ "hdsl2ShdslInventoryGroup" : {
3184
+ "nodetype" : "group",
3185
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3186
+ "oid" : "1.3.6.1.2.1.10.48.3.1.5",
3187
+ "status" : "current",
3188
+ "members" : {
3189
+ "hdsl2ShdslInvVendorID" : {
3190
+ "nodetype" : "member",
3191
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3192
+ },
3193
+ "hdsl2ShdslInvVendorModelNumber" : {
3194
+ "nodetype" : "member",
3195
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3196
+ },
3197
+ "hdsl2ShdslInvVendorSerialNumber" : {
3198
+ "nodetype" : "member",
3199
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3200
+ },
3201
+ "hdsl2ShdslInvVendorEOCSoftwareVersion" : {
3202
+ "nodetype" : "member",
3203
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3204
+ },
3205
+ "hdsl2ShdslInvStandardVersion" : {
3206
+ "nodetype" : "member",
3207
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3208
+ },
3209
+ "hdsl2ShdslInvVendorListNumber" : {
3210
+ "nodetype" : "member",
3211
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3212
+ },
3213
+ "hdsl2ShdslInvVendorIssueNumber" : {
3214
+ "nodetype" : "member",
3215
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3216
+ },
3217
+ "hdsl2ShdslInvVendorSoftwareVersion" : {
3218
+ "nodetype" : "member",
3219
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3220
+ },
3221
+ "hdsl2ShdslInvEquipmentCode" : {
3222
+ "nodetype" : "member",
3223
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3224
+ },
3225
+ "hdsl2ShdslInvVendorOther" : {
3226
+ "nodetype" : "member",
3227
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3228
+ },
3229
+ }, # members
3230
+ "description" :
3231
+ """This group supports objects that provide unit inventory
3232
+ information about the units in HDSL2/SHDSL lines.""",
3233
+ }, # group
3234
+ "hdsl2ShdslEndpointConfGroup" : {
3235
+ "nodetype" : "group",
3236
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3237
+ "oid" : "1.3.6.1.2.1.10.48.3.1.6",
3238
+ "status" : "current",
3239
+ "members" : {
3240
+ "hdsl2ShdslEndpointCurrAtn" : {
3241
+ "nodetype" : "member",
3242
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3243
+ },
3244
+ }, # members
3245
+ "description" :
3246
+ """This group supports objects for configuring parameters for
3247
+ segment endpoints in HDSL2/SHDSL lines.""",
3248
+ }, # group
3249
+ "hdsl2ShdslEndpointCurrGroup" : {
3250
+ "nodetype" : "group",
3251
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3252
+ "oid" : "1.3.6.1.2.1.10.48.3.1.7",
3253
+ "status" : "current",
3254
+ "members" : {
3255
+ "hdsl2ShdslEndpointCurrAtn" : {
3256
+ "nodetype" : "member",
3257
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3258
+ },
3259
+ "hdsl2ShdslEndpointCurrSnrMgn" : {
3260
+ "nodetype" : "member",
3261
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3262
+ },
3263
+ "hdsl2ShdslEndpointCurrStatus" : {
3264
+ "nodetype" : "member",
3265
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3266
+ },
3267
+ "hdsl2ShdslEndpointES" : {
3268
+ "nodetype" : "member",
3269
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3270
+ },
3271
+ "hdsl2ShdslEndpointSES" : {
3272
+ "nodetype" : "member",
3273
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3274
+ },
3275
+ "hdsl2ShdslEndpointCRCanomalies" : {
3276
+ "nodetype" : "member",
3277
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3278
+ },
3279
+ "hdsl2ShdslEndpointLOSWS" : {
3280
+ "nodetype" : "member",
3281
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3282
+ },
3283
+ "hdsl2ShdslEndpointUAS" : {
3284
+ "nodetype" : "member",
3285
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3286
+ },
3287
+ "hdsl2ShdslEndpointCurr15MinTimeElapsed" : {
3288
+ "nodetype" : "member",
3289
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3290
+ },
3291
+ "hdsl2ShdslEndpointCurr15MinES" : {
3292
+ "nodetype" : "member",
3293
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3294
+ },
3295
+ "hdsl2ShdslEndpointCurr15MinSES" : {
3296
+ "nodetype" : "member",
3297
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3298
+ },
3299
+ "hdsl2ShdslEndpointCurr15MinCRCanomalies" : {
3300
+ "nodetype" : "member",
3301
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3302
+ },
3303
+ "hdsl2ShdslEndpointCurr15MinLOSWS" : {
3304
+ "nodetype" : "member",
3305
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3306
+ },
3307
+ "hdsl2ShdslEndpointCurr15MinUAS" : {
3308
+ "nodetype" : "member",
3309
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3310
+ },
3311
+ "hdsl2ShdslEndpointCurr1DayTimeElapsed" : {
3312
+ "nodetype" : "member",
3313
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3314
+ },
3315
+ "hdsl2ShdslEndpointCurr1DayES" : {
3316
+ "nodetype" : "member",
3317
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3318
+ },
3319
+ "hdsl2ShdslEndpointCurr1DaySES" : {
3320
+ "nodetype" : "member",
3321
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3322
+ },
3323
+ "hdsl2ShdslEndpointCurr1DayCRCanomalies" : {
3324
+ "nodetype" : "member",
3325
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3326
+ },
3327
+ "hdsl2ShdslEndpointCurr1DayLOSWS" : {
3328
+ "nodetype" : "member",
3329
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3330
+ },
3331
+ "hdsl2ShdslEndpointCurr1DayUAS" : {
3332
+ "nodetype" : "member",
3333
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3334
+ },
3335
+ }, # members
3336
+ "description" :
3337
+ """This group supports objects that provide current status and
3338
+ performance measurements relating to segment endpoints in
3339
+ HDSL2/SHDSL lines.""",
3340
+ }, # group
3341
+ "hdsl2Shdsl15MinIntervalGroup" : {
3342
+ "nodetype" : "group",
3343
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3344
+ "oid" : "1.3.6.1.2.1.10.48.3.1.8",
3345
+ "status" : "current",
3346
+ "members" : {
3347
+ "hdsl2Shdsl15MinIntervalES" : {
3348
+ "nodetype" : "member",
3349
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3350
+ },
3351
+ "hdsl2Shdsl15MinIntervalSES" : {
3352
+ "nodetype" : "member",
3353
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3354
+ },
3355
+ "hdsl2Shdsl15MinIntervalCRCanomalies" : {
3356
+ "nodetype" : "member",
3357
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3358
+ },
3359
+ "hdsl2Shdsl15MinIntervalLOSWS" : {
3360
+ "nodetype" : "member",
3361
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3362
+ },
3363
+ "hdsl2Shdsl15MinIntervalUAS" : {
3364
+ "nodetype" : "member",
3365
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3366
+ },
3367
+ }, # members
3368
+ "description" :
3369
+ """This group supports objects that maintain historic
3370
+ performance measurements relating to segment endpoints in
3371
+ HDSL2/SHDSL lines in 15-minute intervals.""",
3372
+ }, # group
3373
+ "hdsl2Shdsl1DayIntervalGroup" : {
3374
+ "nodetype" : "group",
3375
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3376
+ "oid" : "1.3.6.1.2.1.10.48.3.1.9",
3377
+ "status" : "current",
3378
+ "members" : {
3379
+ "hdsl2Shdsl1DayIntervalMoniSecs" : {
3380
+ "nodetype" : "member",
3381
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3382
+ },
3383
+ "hdsl2Shdsl1DayIntervalES" : {
3384
+ "nodetype" : "member",
3385
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3386
+ },
3387
+ "hdsl2Shdsl1DayIntervalSES" : {
3388
+ "nodetype" : "member",
3389
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3390
+ },
3391
+ "hdsl2Shdsl1DayIntervalCRCanomalies" : {
3392
+ "nodetype" : "member",
3393
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3394
+ },
3395
+ "hdsl2Shdsl1DayIntervalLOSWS" : {
3396
+ "nodetype" : "member",
3397
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3398
+ },
3399
+ "hdsl2Shdsl1DayIntervalUAS" : {
3400
+ "nodetype" : "member",
3401
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3402
+ },
3403
+ }, # members
3404
+ "description" :
3405
+ """This group supports objects that maintain historic
3406
+ performance measurements relating to segment endpoints in
3407
+ HDSL2/SHDSL lines in 1-day intervals.""",
3408
+ }, # group
3409
+ "hdsl2ShdslMaintenanceGroup" : {
3410
+ "nodetype" : "group",
3411
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3412
+ "oid" : "1.3.6.1.2.1.10.48.3.1.10",
3413
+ "status" : "current",
3414
+ "members" : {
3415
+ "hdsl2ShdslMaintLoopbackConfig" : {
3416
+ "nodetype" : "member",
3417
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3418
+ },
3419
+ "hdsl2ShdslMaintTipRingReversal" : {
3420
+ "nodetype" : "member",
3421
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3422
+ },
3423
+ "hdsl2ShdslMaintPowerBackOff" : {
3424
+ "nodetype" : "member",
3425
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3426
+ },
3427
+ "hdsl2ShdslMaintSoftRestart" : {
3428
+ "nodetype" : "member",
3429
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3430
+ },
3431
+ "hdsl2ShdslMaintLoopbackTimeout" : {
3432
+ "nodetype" : "member",
3433
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3434
+ },
3435
+ "hdsl2ShdslMaintUnitPowerSource" : {
3436
+ "nodetype" : "member",
3437
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3438
+ },
3439
+ }, # members
3440
+ "description" :
3441
+ """This group supports objects that provide support for
3442
+ maintenance actions for HDSL2/SHDSL lines.""",
3443
+ }, # group
3444
+ "hdsl2ShdslEndpointAlarmConfGroup" : {
3445
+ "nodetype" : "group",
3446
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3447
+ "oid" : "1.3.6.1.2.1.10.48.3.1.11",
3448
+ "status" : "current",
3449
+ "members" : {
3450
+ "hdsl2ShdslEndpointAlarmConfProfile" : {
3451
+ "nodetype" : "member",
3452
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3453
+ },
3454
+ "hdsl2ShdslEndpointThreshLoopAttenuation" : {
3455
+ "nodetype" : "member",
3456
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3457
+ },
3458
+ "hdsl2ShdslEndpointThreshSNRMargin" : {
3459
+ "nodetype" : "member",
3460
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3461
+ },
3462
+ "hdsl2ShdslEndpointThreshES" : {
3463
+ "nodetype" : "member",
3464
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3465
+ },
3466
+ "hdsl2ShdslEndpointThreshSES" : {
3467
+ "nodetype" : "member",
3468
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3469
+ },
3470
+ "hdsl2ShdslEndpointThreshCRCanomalies" : {
3471
+ "nodetype" : "member",
3472
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3473
+ },
3474
+ "hdsl2ShdslEndpointThreshLOSWS" : {
3475
+ "nodetype" : "member",
3476
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3477
+ },
3478
+ "hdsl2ShdslEndpointThreshUAS" : {
3479
+ "nodetype" : "member",
3480
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3481
+ },
3482
+ "hdsl2ShdslEndpointAlarmConfProfileRowStatus" : {
3483
+ "nodetype" : "member",
3484
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3485
+ },
3486
+ }, # members
3487
+ "description" :
3488
+ """This group supports objects that allow configuration of alarm
3489
+ thresholds for various performance parameters for HDSL2/SHDSL
3490
+ lines.""",
3491
+ }, # group
3492
+ "hdsl2ShdslNotificationGroup" : {
3493
+ "nodetype" : "group",
3494
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3495
+ "oid" : "1.3.6.1.2.1.10.48.3.1.12",
3496
+ "status" : "current",
3497
+ "members" : {
3498
+ "hdsl2ShdslLoopAttenCrossing" : {
3499
+ "nodetype" : "member",
3500
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3501
+ },
3502
+ "hdsl2ShdslSNRMarginCrossing" : {
3503
+ "nodetype" : "member",
3504
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3505
+ },
3506
+ "hdsl2ShdslPerfESThresh" : {
3507
+ "nodetype" : "member",
3508
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3509
+ },
3510
+ "hdsl2ShdslPerfSESThresh" : {
3511
+ "nodetype" : "member",
3512
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3513
+ },
3514
+ "hdsl2ShdslPerfCRCanomaliesThresh" : {
3515
+ "nodetype" : "member",
3516
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3517
+ },
3518
+ "hdsl2ShdslPerfLOSWSThresh" : {
3519
+ "nodetype" : "member",
3520
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3521
+ },
3522
+ "hdsl2ShdslPerfUASThresh" : {
3523
+ "nodetype" : "member",
3524
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3525
+ },
3526
+ "hdsl2ShdslSpanInvalidNumRepeaters" : {
3527
+ "nodetype" : "member",
3528
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3529
+ },
3530
+ "hdsl2ShdslLoopbackFailure" : {
3531
+ "nodetype" : "member",
3532
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3533
+ },
3534
+ "hdsl2ShdslpowerBackoff" : {
3535
+ "nodetype" : "member",
3536
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3537
+ },
3538
+ "hdsl2ShdsldeviceFault" : {
3539
+ "nodetype" : "member",
3540
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3541
+ },
3542
+ "hdsl2ShdsldcContinuityFault" : {
3543
+ "nodetype" : "member",
3544
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3545
+ },
3546
+ "hdsl2ShdslconfigInitFailure" : {
3547
+ "nodetype" : "member",
3548
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3549
+ },
3550
+ "hdsl2ShdslprotocolInitFailure" : {
3551
+ "nodetype" : "member",
3552
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3553
+ },
3554
+ "hdsl2ShdslnoNeighborPresent" : {
3555
+ "nodetype" : "member",
3556
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3557
+ },
3558
+ "hdsl2ShdslLocalPowerLoss" : {
3559
+ "nodetype" : "member",
3560
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3561
+ },
3562
+ }, # members
3563
+ "description" :
3564
+ """This group supports notifications of significant conditions
3565
+ associated with HDSL2/SHDSL lines.""",
3566
+ }, # group
3567
+ "hdsl2ShdslSpanConfProfileGroup" : {
3568
+ "nodetype" : "group",
3569
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3570
+ "oid" : "1.3.6.1.2.1.10.48.3.1.13",
3571
+ "status" : "current",
3572
+ "members" : {
3573
+ "hdsl2ShdslSpanConfWireInterface" : {
3574
+ "nodetype" : "member",
3575
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3576
+ },
3577
+ "hdsl2ShdslSpanConfMinLineRate" : {
3578
+ "nodetype" : "member",
3579
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3580
+ },
3581
+ "hdsl2ShdslSpanConfMaxLineRate" : {
3582
+ "nodetype" : "member",
3583
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3584
+ },
3585
+ "hdsl2ShdslSpanConfPSD" : {
3586
+ "nodetype" : "member",
3587
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3588
+ },
3589
+ "hdsl2ShdslSpanConfTransmissionMode" : {
3590
+ "nodetype" : "member",
3591
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3592
+ },
3593
+ "hdsl2ShdslSpanConfRemoteEnabled" : {
3594
+ "nodetype" : "member",
3595
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3596
+ },
3597
+ "hdsl2ShdslSpanConfPowerFeeding" : {
3598
+ "nodetype" : "member",
3599
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3600
+ },
3601
+ "hdsl2ShdslSpanConfCurrCondTargetMarginDown" : {
3602
+ "nodetype" : "member",
3603
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3604
+ },
3605
+ "hdsl2ShdslSpanConfWorstCaseTargetMarginDown" : {
3606
+ "nodetype" : "member",
3607
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3608
+ },
3609
+ "hdsl2ShdslSpanConfCurrCondTargetMarginUp" : {
3610
+ "nodetype" : "member",
3611
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3612
+ },
3613
+ "hdsl2ShdslSpanConfWorstCaseTargetMarginUp" : {
3614
+ "nodetype" : "member",
3615
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3616
+ },
3617
+ "hdsl2ShdslSpanConfUsedTargetMargins" : {
3618
+ "nodetype" : "member",
3619
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3620
+ },
3621
+ "hdsl2ShdslSpanConfReferenceClock" : {
3622
+ "nodetype" : "member",
3623
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3624
+ },
3625
+ "hdsl2ShdslSpanConfLineProbeEnable" : {
3626
+ "nodetype" : "member",
3627
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3628
+ },
3629
+ "hdsl2ShdslSpanConfProfileRowStatus" : {
3630
+ "nodetype" : "member",
3631
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3632
+ },
3633
+ }, # members
3634
+ "description" :
3635
+ """This group supports objects that constitute configuration
3636
+ profiles for configuring span-related parameters in SHDSL
3637
+ lines.""",
3638
+ }, # group
3639
+ "hdsl2ShdslWirePairGroup" : {
3640
+ "nodetype" : "group",
3641
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3642
+ "oid" : "1.3.6.1.2.1.10.48.3.1.14",
3643
+ "status" : "current",
3644
+ "members" : {
3645
+ "hdsl2ShdslEndpointCurrTipRingReversal" : {
3646
+ "nodetype" : "member",
3647
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3648
+ },
3649
+ "hdsl2ShdslEndpointCurrActivationState" : {
3650
+ "nodetype" : "member",
3651
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3652
+ },
3653
+ }, # members
3654
+ "description" :
3655
+ """This group supports objects that provide the status
3656
+ of SHDSL-specific wire pairs.""",
3657
+ }, # group
3658
+ "hdsl2ShdslPayloadRateGroup" : {
3659
+ "nodetype" : "group",
3660
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3661
+ "oid" : "1.3.6.1.2.1.10.48.3.1.15",
3662
+ "status" : "current",
3663
+ "members" : {
3664
+ "hdsl2ShdslStatusMaxAttainablePayloadRate" : {
3665
+ "nodetype" : "member",
3666
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3667
+ },
3668
+ "hdsl2ShdslStatusActualPayloadRate" : {
3669
+ "nodetype" : "member",
3670
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3671
+ },
3672
+ }, # members
3673
+ "description" :
3674
+ """This group supports objects for retrieving payload rates
3675
+ that exclude any framing overhead.""",
3676
+ }, # group
3677
+ }, # groups
3678
+
3679
+ "compliances" : {
3680
+ "hdsl2ShdslLineMibCompliance" : {
3681
+ "nodetype" : "compliance",
3682
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3683
+ "oid" : "1.3.6.1.2.1.10.48.3.2.1",
3684
+ "status" : "deprecated",
3685
+ "description" :
3686
+ """The compliance statement for SNMP entities that implement
3687
+ HDSL2 and SHDSL. The version of SHDSL supported in this
3688
+ compliance statement is g.shdsl.
3689
+
3690
+ **** This compliance statement is deprecated. ****""",
3691
+ "requires" : {
3692
+ "hdsl2ShdslSpanConfGroup" : {
3693
+ "nodetype" : "mandatory",
3694
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3695
+ },
3696
+ "hdsl2ShdslSpanStatusGroup" : {
3697
+ "nodetype" : "mandatory",
3698
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3699
+ },
3700
+ "hdsl2ShdslInventoryGroup" : {
3701
+ "nodetype" : "mandatory",
3702
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3703
+ },
3704
+ "hdsl2ShdslEndpointConfGroup" : {
3705
+ "nodetype" : "mandatory",
3706
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3707
+ },
3708
+ "hdsl2ShdslEndpointCurrGroup" : {
3709
+ "nodetype" : "mandatory",
3710
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3711
+ },
3712
+ "hdsl2Shdsl15MinIntervalGroup" : {
3713
+ "nodetype" : "mandatory",
3714
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3715
+ },
3716
+ "hdsl2Shdsl1DayIntervalGroup" : {
3717
+ "nodetype" : "mandatory",
3718
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3719
+ },
3720
+ "hdsl2ShdslMaintenanceGroup" : {
3721
+ "nodetype" : "mandatory",
3722
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3723
+ },
3724
+ "hdsl2ShdslEndpointAlarmConfGroup" : {
3725
+ "nodetype" : "mandatory",
3726
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3727
+ },
3728
+ "hdsl2ShdslNotificationGroup" : {
3729
+ "nodetype" : "mandatory",
3730
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3731
+ },
3732
+ "hdsl2ShdslInventoryShdslGroup" : {
3733
+ "nodetype" : "optional",
3734
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3735
+ "description" :
3736
+ """Support for this group is only required for implementations
3737
+ supporting SHDSL lines.""",
3738
+ },
3739
+ "hdsl2ShdslSpanShdslStatusGroup" : {
3740
+ "nodetype" : "optional",
3741
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3742
+ "description" :
3743
+ """Support for this group is only required for implementations
3744
+ supporting SHDSL lines.""",
3745
+ },
3746
+ "hdsl2ShdslSpanConfProfileGroup" : {
3747
+ "nodetype" : "optional",
3748
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3749
+ "description" :
3750
+ """Support for this group is only required for implementations
3751
+ supporting SHDSL lines.""",
3752
+ },
3753
+ }, # requires
3754
+ "refinements" : {
3755
+ "hdsl2ShdslSpanConfWireInterface" : {
3756
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3757
+ "syntax" : {
3758
+ "type" : {
3759
+ "basetype" : "Enumeration",
3760
+ "twoWire" : {
3761
+ "nodetype" : "namednumber",
3762
+ "number" : "1"
3763
+ },
3764
+ "fourWire" : {
3765
+ "nodetype" : "namednumber",
3766
+ "number" : "2"
3767
+ },
3768
+ },
3769
+ }, # syntax
3770
+ "description" :
3771
+ """An implementation only has to support the range as
3772
+ applicable for the original g.shdsl specification defined
3773
+ in RFC 3276.""",
3774
+ },
3775
+ "hdsl2ShdslStatusMaxAttainableLineRate" : {
3776
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3777
+ "syntax" : {
3778
+ "type" : {
3779
+ "basetype" : "Unsigned32",
3780
+ "ranges" : [
3781
+ {
3782
+ "min" : "0",
3783
+ "max" : "4112000"
3784
+ },
3785
+ ],
3786
+ "range" : {
3787
+ "min" : "0",
3788
+ "max" : "4112000"
3789
+ },
3790
+ },
3791
+ }, # syntax
3792
+ "description" :
3793
+ """An implementation only has to support the range as
3794
+ applicable for the original g.shdsl specification defined
3795
+ in RFC 3276.""",
3796
+ },
3797
+ "hdsl2ShdslStatusActualLineRate" : {
3798
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3799
+ "syntax" : {
3800
+ "type" : {
3801
+ "basetype" : "Unsigned32",
3802
+ "ranges" : [
3803
+ {
3804
+ "min" : "0",
3805
+ "max" : "4112000"
3806
+ },
3807
+ ],
3808
+ "range" : {
3809
+ "min" : "0",
3810
+ "max" : "4112000"
3811
+ },
3812
+ },
3813
+ }, # syntax
3814
+ "description" :
3815
+ """An implementation only has to support the range as
3816
+ applicable for the original g.shdsl specification defined
3817
+ in RFC 3276.""",
3818
+ },
3819
+ "hdsl2ShdslSpanConfMinLineRate" : {
3820
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3821
+ "syntax" : {
3822
+ "type" : {
3823
+ "basetype" : "Unsigned32",
3824
+ "ranges" : [
3825
+ {
3826
+ "min" : "0",
3827
+ "max" : "4112000"
3828
+ },
3829
+ ],
3830
+ "range" : {
3831
+ "min" : "0",
3832
+ "max" : "4112000"
3833
+ },
3834
+ },
3835
+ }, # syntax
3836
+ "description" :
3837
+ """An implementation only has to support the range as
3838
+ applicable for the original g.shdsl specification defined
3839
+ in RFC 3276.""",
3840
+ },
3841
+ "hdsl2ShdslSpanConfMaxLineRate" : {
3842
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3843
+ "syntax" : {
3844
+ "type" : {
3845
+ "basetype" : "Unsigned32",
3846
+ "ranges" : [
3847
+ {
3848
+ "min" : "0",
3849
+ "max" : "4112000"
3850
+ },
3851
+ ],
3852
+ "range" : {
3853
+ "min" : "0",
3854
+ "max" : "4112000"
3855
+ },
3856
+ },
3857
+ }, # syntax
3858
+ "description" :
3859
+ """An implementation only has to support the range as
3860
+ applicable for the original g.shdsl specification defined
3861
+ in RFC 3276.""",
3862
+ },
3863
+ }, # refinements
3864
+
3865
+ }, # compliance
3866
+ "hdsl2GshdslbisLineMibCompliance" : {
3867
+ "nodetype" : "compliance",
3868
+ "moduleName" : "HDSL2-SHDSL-LINE-MIB",
3869
+ "oid" : "1.3.6.1.2.1.10.48.3.2.2",
3870
+ "status" : "current",
3871
+ "description" :
3872
+ """The compliance statement for SNMP entities that implement
3873
+ HDSL2 and SHDSL. The version of SHDSL supported in this
3874
+ compliance statement is g.shdsl.bis.""",
3875
+ "requires" : {
3876
+ "hdsl2ShdslSpanConfGroup" : {
3877
+ "nodetype" : "mandatory",
3878
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3879
+ },
3880
+ "hdsl2ShdslSpanStatusGroup" : {
3881
+ "nodetype" : "mandatory",
3882
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3883
+ },
3884
+ "hdsl2ShdslInventoryGroup" : {
3885
+ "nodetype" : "mandatory",
3886
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3887
+ },
3888
+ "hdsl2ShdslEndpointConfGroup" : {
3889
+ "nodetype" : "mandatory",
3890
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3891
+ },
3892
+ "hdsl2ShdslEndpointCurrGroup" : {
3893
+ "nodetype" : "mandatory",
3894
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3895
+ },
3896
+ "hdsl2Shdsl15MinIntervalGroup" : {
3897
+ "nodetype" : "mandatory",
3898
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3899
+ },
3900
+ "hdsl2Shdsl1DayIntervalGroup" : {
3901
+ "nodetype" : "mandatory",
3902
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3903
+ },
3904
+ "hdsl2ShdslMaintenanceGroup" : {
3905
+ "nodetype" : "mandatory",
3906
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3907
+ },
3908
+ "hdsl2ShdslEndpointAlarmConfGroup" : {
3909
+ "nodetype" : "mandatory",
3910
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3911
+ },
3912
+ "hdsl2ShdslNotificationGroup" : {
3913
+ "nodetype" : "mandatory",
3914
+ "module" : "HDSL2-SHDSL-LINE-MIB"
3915
+ },
3916
+ "hdsl2ShdslInventoryShdslGroup" : {
3917
+ "nodetype" : "optional",
3918
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3919
+ "description" :
3920
+ """Support for this group is only required for implementations
3921
+ supporting SHDSL lines.""",
3922
+ },
3923
+ "hdsl2ShdslSpanShdslStatusGroup" : {
3924
+ "nodetype" : "optional",
3925
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3926
+ "description" :
3927
+ """Support for this group is only required for implementations
3928
+ supporting SHDSL lines.""",
3929
+ },
3930
+ "hdsl2ShdslSpanConfProfileGroup" : {
3931
+ "nodetype" : "optional",
3932
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3933
+ "description" :
3934
+ """Support for this group is only required for implementations
3935
+ supporting SHDSL lines.""",
3936
+ },
3937
+ "hdsl2ShdslWirePairGroup" : {
3938
+ "nodetype" : "optional",
3939
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3940
+ "description" :
3941
+ """Support for this group is only required for implementations
3942
+ supporting SHDSL lines.""",
3943
+ },
3944
+ "hdsl2ShdslPayloadRateGroup" : {
3945
+ "nodetype" : "optional",
3946
+ "module" : "HDSL2-SHDSL-LINE-MIB",
3947
+ "description" :
3948
+ """Support for this group is only required for implementations
3949
+ supporting SHDSL lines.""",
3950
+ },
3951
+ }, # requires
3952
+ }, # compliance
3953
+ }, # compliances
3954
+
3955
+ }