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,3308 @@
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 SONET-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SONET-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SONET-MIB",
11
+
12
+ "SONET-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF AToM MIB Working Group""",
17
+ "contact" :
18
+ """WG charter:
19
+ http://www.ietf.org/html.charters/atommib-charter.html
20
+
21
+ Mailing Lists:
22
+ General Discussion: atommib@research.telcordia.com
23
+ To Subscribe: atommib-request@research.telcordia.com
24
+
25
+ Kaj Tesink
26
+ Telcordia Technologies
27
+ Tel: (732) 758-5254
28
+ Fax: (732) 758-2269
29
+ E-mail: kaj@research.telcordia.com.""",
30
+ "description" :
31
+ """The MIB module to describe SONET/SDH interface objects.
32
+
33
+ Copyright (C) The Internet Society (2003). This version
34
+ of this MIB module is part of RFC 3592; see the RFC
35
+ itself for full legal notices.""",
36
+ "revisions" : (
37
+ {
38
+ "date" : "2003-08-11 00:00",
39
+ "description" :
40
+ """The key changes made to this MIB module
41
+ since its publication in RFC 2558
42
+ are as follows.
43
+
44
+ (1) Corrected typographical error
45
+ (bellcore1991(2) in sonetSESthresholdSet)
46
+
47
+ (2) Added support for sts192cSTM64(6) and
48
+ sts768cSTM256(7) in sonetPathCurrentWidth
49
+
50
+ (3) Corrected description of the applicability
51
+ of VTs for SDH for improved accuracy
52
+
53
+ (4) Added clarification in the SES description that
54
+ CV counts should be frozen during SESs
55
+
56
+ (5) Corrected typographical errors:
57
+ - Line Alarm Indication Signal description of the
58
+ Terminology section (20.5 --> 2.5 seconds)
59
+ - In the Terminology section
60
+ sonetSESThresholdSet --> sonetSESthresholdSet
61
+ """,
62
+ },
63
+ {
64
+ "date" : "1998-10-19 00:00",
65
+ "description" :
66
+ """The RFC 2558 version of this MIB module.
67
+
68
+
69
+
70
+
71
+
72
+ The key changes made to this MIB module
73
+ since its initial publication in RFC 1595
74
+ are as follows.
75
+
76
+ (1) The MODULE-IDENTITY has been updated to reflect the
77
+ changes to the MIB.
78
+
79
+ (2) Where applicable, the textual conventions
80
+ PerfCurrentCount and PerfIntervalCount from
81
+ PerfHist-TC-MIB have been used in place of Gauge32.
82
+
83
+ (3) An agent now has the option to delay updates to
84
+ the various performance counts in lieu of performing
85
+ retroactive adjustments upon entering into or exiting
86
+ from unavailable time. This implementation option is
87
+ described in Appendix A of this memo.
88
+
89
+ (4) In order to make the SONET-MIB more useful for
90
+ circuit provisioning, the formerly read-only objects
91
+ sonetMediumType, sonetMediumLineCoding,
92
+ sonetMediumLineType, and sonetMediumCircuitIdentifier
93
+ have been given a MAX-ACCESS of read-write. The
94
+ MIN-ACCESS remains read-only.
95
+
96
+ (5) The DESCRIPTION clause for sonetMediumTimeElapsed has
97
+ been updated to describe its behaviour if the duration
98
+ of the current interval exceeds the maximum value.
99
+
100
+ (6) The DESCRIPTION clause for sonetMediumValidIntervals
101
+ has been updated to describe its behaviour when some
102
+ intervals may be unavailable, and the object
103
+ sonetMediumInvalidIntervals has been added to keep
104
+ count of the number of missing intervals (if any).
105
+
106
+ (7) The object sonetMediumLoopbackConfig has been added
107
+ to enable or disable loopback configurations.
108
+
109
+ (8) Because the error count thresholds for declaring
110
+ severely errored seconds that are specified in ANSI
111
+ T1.231-1993, ITU-T G.826-1995, and ANSI T1.231-1997
112
+ are all different from each other and from the thresholds
113
+ specified in RFC 1595, an enumerated INTEGER object
114
+ sonetSESthresholdSet has been added to allow an agent
115
+ to specify which threshold set is in use. Text has
116
+ been added to Section 3 stating that if this object is
117
+ not implemented the thresholds specified in RFC 1595
118
+ should be assumed, and the table containing those
119
+ thresholds has been moved to Appendix B of this memo.
120
+
121
+
122
+
123
+ (9) A column with SYNTAX TruthValue has been added to each
124
+ interval table. The purpose of the additional column
125
+ is to indicate, for each interval, whether the data
126
+ is valid in the sense intended by ANSI T1.231 clause
127
+ 9.1.2.2 [T1.231a][T1.231b]. The objects in question are:
128
+
129
+ sonetSectionIntervalValidData
130
+ sonetLineIntervalValidData
131
+ sonetFarEndLineIntervalValidData
132
+ sonetPathIntervalValidData
133
+ sonetFarEndPathIntervalValidData
134
+ sonetVTIntervalValidData
135
+ sonetFarEndVTIntervalValidData
136
+
137
+ (10) The ranges for sonetPathCurrentStatus and
138
+ sonetVTCurrentStatus have been made consistent
139
+ with the DESCRIPTION clauses.
140
+
141
+ (11) The conformance information has been updated. Previous
142
+ conformance information from RFC 1595 has been
143
+ deprecated. Some typographical errors in the deprecated
144
+ section have been corrected in order to prevent
145
+ MIB compilation errors.""",
146
+ },
147
+ {
148
+ "date" : "1994-01-03 00:00",
149
+ "description" :
150
+ """The RFC 1595 version of this MIB module.""",
151
+ },
152
+ ),
153
+ "identity node" : "sonetMIB",
154
+ },
155
+
156
+ "imports" : (
157
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
158
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
159
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
160
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
161
+ {"module" : "SNMPv2-TC", "name" : "DisplayString"},
162
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
163
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
164
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
165
+ {"module" : "IF-MIB", "name" : "ifIndex"},
166
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
167
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
168
+ ),
169
+
170
+ "nodes" : {
171
+ "sonetMIB" : {
172
+ "nodetype" : "node",
173
+ "moduleName" : "SONET-MIB",
174
+ "oid" : "1.3.6.1.2.1.10.39",
175
+ "status" : "current",
176
+ }, # node
177
+ "sonetObjects" : {
178
+ "nodetype" : "node",
179
+ "moduleName" : "SONET-MIB",
180
+ "oid" : "1.3.6.1.2.1.10.39.1",
181
+ }, # node
182
+ "sonetMedium" : {
183
+ "nodetype" : "node",
184
+ "moduleName" : "SONET-MIB",
185
+ "oid" : "1.3.6.1.2.1.10.39.1.1",
186
+ }, # node
187
+ "sonetMediumTable" : {
188
+ "nodetype" : "table",
189
+ "moduleName" : "SONET-MIB",
190
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1",
191
+ "status" : "current",
192
+ "description" :
193
+ """The SONET/SDH Medium table.""",
194
+ }, # table
195
+ "sonetMediumEntry" : {
196
+ "nodetype" : "row",
197
+ "moduleName" : "SONET-MIB",
198
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1",
199
+ "status" : "current",
200
+ "linkage" : [
201
+ "ifIndex",
202
+ ],
203
+ "description" :
204
+ """An entry in the SONET/SDH Medium table.""",
205
+ }, # row
206
+ "sonetMediumType" : {
207
+ "nodetype" : "column",
208
+ "moduleName" : "SONET-MIB",
209
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1.1",
210
+ "status" : "current",
211
+ "syntax" : {
212
+ "type" : {
213
+ "basetype" : "Enumeration",
214
+ "sonet" : {
215
+ "nodetype" : "namednumber",
216
+ "number" : "1"
217
+ },
218
+ "sdh" : {
219
+ "nodetype" : "namednumber",
220
+ "number" : "2"
221
+ },
222
+ },
223
+ },
224
+ "access" : "readwrite",
225
+ "description" :
226
+ """This variable identifies whether a SONET
227
+ or a SDH signal is used across this interface.""",
228
+ }, # column
229
+ "sonetMediumTimeElapsed" : {
230
+ "nodetype" : "column",
231
+ "moduleName" : "SONET-MIB",
232
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1.2",
233
+ "status" : "current",
234
+ "syntax" : {
235
+ "type" : {
236
+ "basetype" : "Integer32",
237
+ "ranges" : [
238
+ {
239
+ "min" : "1",
240
+ "max" : "900"
241
+ },
242
+ ],
243
+ "range" : {
244
+ "min" : "1",
245
+ "max" : "900"
246
+ },
247
+ },
248
+ },
249
+ "access" : "readonly",
250
+ "description" :
251
+ """The number of seconds, including partial seconds,
252
+ that have elapsed since the beginning of the current
253
+ measurement period. If, for some reason, such as an
254
+ adjustment in the system's time-of-day clock, the
255
+ current interval exceeds the maximum value, the
256
+ agent will return the maximum value.""",
257
+ }, # column
258
+ "sonetMediumValidIntervals" : {
259
+ "nodetype" : "column",
260
+ "moduleName" : "SONET-MIB",
261
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1.3",
262
+ "status" : "current",
263
+ "syntax" : {
264
+ "type" : {
265
+ "basetype" : "Integer32",
266
+ "ranges" : [
267
+ {
268
+ "min" : "0",
269
+ "max" : "96"
270
+ },
271
+ ],
272
+ "range" : {
273
+ "min" : "0",
274
+ "max" : "96"
275
+ },
276
+ },
277
+ },
278
+ "access" : "readonly",
279
+ "description" :
280
+ """The number of previous 15-minute intervals
281
+ for which data was collected.
282
+ A SONET/SDH interface must be capable
283
+ of supporting at least n intervals.
284
+ The minimum value of n is 4.
285
+ The default of n is 32.
286
+ The maximum value of n is 96.
287
+ The value will be <n> unless the measurement was
288
+ (re-)started within the last (<n>*15) minutes, in which
289
+ case the value will be the number of complete 15
290
+ minute intervals for which the agent has at least
291
+ some data. In certain cases (e.g., in the case
292
+ where the agent is a proxy) it is possible that some
293
+ intervals are unavailable. In this case, this
294
+ interval is the maximum interval number for
295
+ which data is available. """,
296
+ }, # column
297
+ "sonetMediumLineCoding" : {
298
+ "nodetype" : "column",
299
+ "moduleName" : "SONET-MIB",
300
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1.4",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : {
304
+ "basetype" : "Enumeration",
305
+ "sonetMediumOther" : {
306
+ "nodetype" : "namednumber",
307
+ "number" : "1"
308
+ },
309
+ "sonetMediumB3ZS" : {
310
+ "nodetype" : "namednumber",
311
+ "number" : "2"
312
+ },
313
+ "sonetMediumCMI" : {
314
+ "nodetype" : "namednumber",
315
+ "number" : "3"
316
+ },
317
+ "sonetMediumNRZ" : {
318
+ "nodetype" : "namednumber",
319
+ "number" : "4"
320
+ },
321
+ "sonetMediumRZ" : {
322
+ "nodetype" : "namednumber",
323
+ "number" : "5"
324
+ },
325
+ },
326
+ },
327
+ "access" : "readwrite",
328
+ "description" :
329
+ """This variable describes the line coding for
330
+ this interface. The B3ZS and CMI are used for
331
+ electrical SONET/SDH signals (STS-1 and STS-3).
332
+ The Non-Return to Zero (NRZ) and the Return
333
+ to Zero are used for optical SONET/SDH signals.""",
334
+ }, # column
335
+ "sonetMediumLineType" : {
336
+ "nodetype" : "column",
337
+ "moduleName" : "SONET-MIB",
338
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1.5",
339
+ "status" : "current",
340
+ "syntax" : {
341
+ "type" : {
342
+ "basetype" : "Enumeration",
343
+ "sonetOther" : {
344
+ "nodetype" : "namednumber",
345
+ "number" : "1"
346
+ },
347
+ "sonetShortSingleMode" : {
348
+ "nodetype" : "namednumber",
349
+ "number" : "2"
350
+ },
351
+ "sonetLongSingleMode" : {
352
+ "nodetype" : "namednumber",
353
+ "number" : "3"
354
+ },
355
+ "sonetMultiMode" : {
356
+ "nodetype" : "namednumber",
357
+ "number" : "4"
358
+ },
359
+ "sonetCoax" : {
360
+ "nodetype" : "namednumber",
361
+ "number" : "5"
362
+ },
363
+ "sonetUTP" : {
364
+ "nodetype" : "namednumber",
365
+ "number" : "6"
366
+ },
367
+ },
368
+ },
369
+ "access" : "readwrite",
370
+ "description" :
371
+ """This variable describes the line type for
372
+ this interface. The line types are
373
+ Short and Long Range
374
+ Single Mode fiber or Multi-Mode fiber interfaces,
375
+ and coax and UTP for electrical interfaces. The
376
+ value sonetOther should be used when the Line Type is
377
+ not one of the listed values.""",
378
+ }, # column
379
+ "sonetMediumCircuitIdentifier" : {
380
+ "nodetype" : "column",
381
+ "moduleName" : "SONET-MIB",
382
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1.6",
383
+ "status" : "current",
384
+ "syntax" : {
385
+ "type" : {
386
+ "basetype" : "OctetString",
387
+ "parent module" : {
388
+ "name" : "SNMPv2-TC",
389
+ "type" : "DisplayString",
390
+ },
391
+ "ranges" : [
392
+ {
393
+ "min" : "0",
394
+ "max" : "255"
395
+ },
396
+ ],
397
+ "range" : {
398
+ "min" : "0",
399
+ "max" : "255"
400
+ },
401
+ },
402
+ },
403
+ "access" : "readwrite",
404
+ "description" :
405
+ """This variable contains the transmission
406
+ vendor's circuit identifier, for the
407
+ purpose of facilitating troubleshooting.
408
+ Note that the circuit identifier, if available,
409
+ is also represented by ifPhysAddress.""",
410
+ }, # column
411
+ "sonetMediumInvalidIntervals" : {
412
+ "nodetype" : "column",
413
+ "moduleName" : "SONET-MIB",
414
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1.7",
415
+ "status" : "current",
416
+ "syntax" : {
417
+ "type" : {
418
+ "basetype" : "Integer32",
419
+ "ranges" : [
420
+ {
421
+ "min" : "0",
422
+ "max" : "96"
423
+ },
424
+ ],
425
+ "range" : {
426
+ "min" : "0",
427
+ "max" : "96"
428
+ },
429
+ },
430
+ },
431
+ "access" : "readonly",
432
+ "description" :
433
+ """The number of intervals in the range from
434
+ 0 to sonetMediumValidIntervals for which no
435
+ data is available. This object will typically
436
+ be zero except in cases where the data for some
437
+ intervals are not available (e.g., in proxy
438
+ situations).""",
439
+ }, # column
440
+ "sonetMediumLoopbackConfig" : {
441
+ "nodetype" : "column",
442
+ "moduleName" : "SONET-MIB",
443
+ "oid" : "1.3.6.1.2.1.10.39.1.1.1.1.8",
444
+ "status" : "current",
445
+ "syntax" : {
446
+ "type" : {
447
+ "basetype" : "Bits",
448
+ "sonetNoLoop" : {
449
+ "nodetype" : "namednumber",
450
+ "number" : "0"
451
+ },
452
+ "sonetFacilityLoop" : {
453
+ "nodetype" : "namednumber",
454
+ "number" : "1"
455
+ },
456
+ "sonetTerminalLoop" : {
457
+ "nodetype" : "namednumber",
458
+ "number" : "2"
459
+ },
460
+ "sonetOtherLoop" : {
461
+ "nodetype" : "namednumber",
462
+ "number" : "3"
463
+ },
464
+ },
465
+ },
466
+ "access" : "readwrite",
467
+ "description" :
468
+ """The current loopback state of the SONET/SDH interface. The
469
+ values mean:
470
+
471
+ sonetNoLoop
472
+ Not in the loopback state. A device that is not
473
+ capable of performing a loopback on this interface
474
+ shall always return this value.
475
+
476
+ sonetFacilityLoop
477
+ The received signal at this interface is looped back
478
+ out through the corresponding transmitter in the return
479
+ direction.
480
+
481
+ sonetTerminalLoop
482
+ The signal that is about to be transmitted is connected
483
+ to the associated incoming receiver.
484
+
485
+ sonetOtherLoop
486
+ Loopbacks that are not defined here.""",
487
+ }, # column
488
+ "sonetSESthresholdSet" : {
489
+ "nodetype" : "scalar",
490
+ "moduleName" : "SONET-MIB",
491
+ "oid" : "1.3.6.1.2.1.10.39.1.1.2",
492
+ "status" : "current",
493
+ "syntax" : {
494
+ "type" : {
495
+ "basetype" : "Enumeration",
496
+ "other" : {
497
+ "nodetype" : "namednumber",
498
+ "number" : "1"
499
+ },
500
+ "bellcore1991" : {
501
+ "nodetype" : "namednumber",
502
+ "number" : "2"
503
+ },
504
+ "ansi1993" : {
505
+ "nodetype" : "namednumber",
506
+ "number" : "3"
507
+ },
508
+ "itu1995" : {
509
+ "nodetype" : "namednumber",
510
+ "number" : "4"
511
+ },
512
+ "ansi1997" : {
513
+ "nodetype" : "namednumber",
514
+ "number" : "5"
515
+ },
516
+ },
517
+ },
518
+ "access" : "readwrite",
519
+ "description" :
520
+ """An enumerated integer indicating which
521
+ recognized set of SES thresholds that
522
+ the agent uses for determining severely
523
+ errored seconds and unavailable time.
524
+
525
+ other(1)
526
+ None of the following.
527
+
528
+ bellcore1991(2)
529
+ Bellcore TR-NWT-000253, 1991 [TR253], or
530
+ ANSI T1M1.3/93-005R2, 1993 [T1M1.3].
531
+ See also Appendix B.
532
+
533
+ ansi1993(3)
534
+ ANSI T1.231, 1993 [T1.231a], or
535
+ Bellcore GR-253-CORE, Issue 2, 1995 [GR253]
536
+
537
+ itu1995(4)
538
+ ITU Recommendation G.826, 1995 [G.826]
539
+
540
+ ansi1997(5)
541
+ ANSI T1.231, 1997 [T1.231b]
542
+
543
+ If a manager changes the value of this
544
+ object then the SES statistics collected
545
+ prior to this change must be invalidated.""",
546
+ }, # scalar
547
+ "sonetSection" : {
548
+ "nodetype" : "node",
549
+ "moduleName" : "SONET-MIB",
550
+ "oid" : "1.3.6.1.2.1.10.39.1.2",
551
+ }, # node
552
+ "sonetSectionCurrentTable" : {
553
+ "nodetype" : "table",
554
+ "moduleName" : "SONET-MIB",
555
+ "oid" : "1.3.6.1.2.1.10.39.1.2.1",
556
+ "status" : "current",
557
+ "description" :
558
+ """The SONET/SDH Section Current table.""",
559
+ }, # table
560
+ "sonetSectionCurrentEntry" : {
561
+ "nodetype" : "row",
562
+ "moduleName" : "SONET-MIB",
563
+ "oid" : "1.3.6.1.2.1.10.39.1.2.1.1",
564
+ "status" : "current",
565
+ "linkage" : [
566
+ "ifIndex",
567
+ ],
568
+ "description" :
569
+ """An entry in the SONET/SDH Section Current table.""",
570
+ }, # row
571
+ "sonetSectionCurrentStatus" : {
572
+ "nodetype" : "column",
573
+ "moduleName" : "SONET-MIB",
574
+ "oid" : "1.3.6.1.2.1.10.39.1.2.1.1.1",
575
+ "status" : "current",
576
+ "syntax" : {
577
+ "type" : {
578
+ "basetype" : "Integer32",
579
+ "ranges" : [
580
+ {
581
+ "min" : "1",
582
+ "max" : "6"
583
+ },
584
+ ],
585
+ "range" : {
586
+ "min" : "1",
587
+ "max" : "6"
588
+ },
589
+ },
590
+ },
591
+ "access" : "readonly",
592
+ "description" :
593
+ """This variable indicates the
594
+ status of the interface.
595
+ The sonetSectionCurrentStatus
596
+ is a bit map represented
597
+ as a sum, therefore,
598
+ it can represent multiple defects
599
+ simultaneously.
600
+ The sonetSectionNoDefect should be
601
+ set if and only if
602
+ no other flag is set.
603
+
604
+ The various bit positions are:
605
+ 1 sonetSectionNoDefect
606
+ 2 sonetSectionLOS
607
+ 4 sonetSectionLOF""",
608
+ }, # column
609
+ "sonetSectionCurrentESs" : {
610
+ "nodetype" : "column",
611
+ "moduleName" : "SONET-MIB",
612
+ "oid" : "1.3.6.1.2.1.10.39.1.2.1.1.2",
613
+ "status" : "current",
614
+ "syntax" : {
615
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
616
+ },
617
+ "access" : "readonly",
618
+ "description" :
619
+ """The counter associated with the number of Errored
620
+ Seconds encountered by a SONET/SDH
621
+ Section in the current 15 minute interval.""",
622
+ }, # column
623
+ "sonetSectionCurrentSESs" : {
624
+ "nodetype" : "column",
625
+ "moduleName" : "SONET-MIB",
626
+ "oid" : "1.3.6.1.2.1.10.39.1.2.1.1.3",
627
+ "status" : "current",
628
+ "syntax" : {
629
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
630
+ },
631
+ "access" : "readonly",
632
+ "description" :
633
+ """The counter associated with the number of
634
+ Severely Errored Seconds
635
+ encountered by a SONET/SDH Section in the current 15
636
+ minute interval.""",
637
+ }, # column
638
+ "sonetSectionCurrentSEFSs" : {
639
+ "nodetype" : "column",
640
+ "moduleName" : "SONET-MIB",
641
+ "oid" : "1.3.6.1.2.1.10.39.1.2.1.1.4",
642
+ "status" : "current",
643
+ "syntax" : {
644
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
645
+ },
646
+ "access" : "readonly",
647
+ "description" :
648
+ """The counter associated with the number of
649
+ Severely Errored Framing Seconds
650
+ encountered by a SONET/SDH Section in the current
651
+ 15 minute interval.""",
652
+ }, # column
653
+ "sonetSectionCurrentCVs" : {
654
+ "nodetype" : "column",
655
+ "moduleName" : "SONET-MIB",
656
+ "oid" : "1.3.6.1.2.1.10.39.1.2.1.1.5",
657
+ "status" : "current",
658
+ "syntax" : {
659
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
660
+ },
661
+ "access" : "readonly",
662
+ "description" :
663
+ """The counter associated with the number of Coding
664
+ Violations encountered by a
665
+ SONET/SDH Section in the current 15 minute interval.""",
666
+ }, # column
667
+ "sonetSectionIntervalTable" : {
668
+ "nodetype" : "table",
669
+ "moduleName" : "SONET-MIB",
670
+ "oid" : "1.3.6.1.2.1.10.39.1.2.2",
671
+ "status" : "current",
672
+ "description" :
673
+ """The SONET/SDH Section Interval table.""",
674
+ }, # table
675
+ "sonetSectionIntervalEntry" : {
676
+ "nodetype" : "row",
677
+ "moduleName" : "SONET-MIB",
678
+ "oid" : "1.3.6.1.2.1.10.39.1.2.2.1",
679
+ "status" : "current",
680
+ "linkage" : [
681
+ "ifIndex",
682
+ "sonetSectionIntervalNumber",
683
+ ],
684
+ "description" :
685
+ """An entry in the SONET/SDH Section Interval table.""",
686
+ }, # row
687
+ "sonetSectionIntervalNumber" : {
688
+ "nodetype" : "column",
689
+ "moduleName" : "SONET-MIB",
690
+ "oid" : "1.3.6.1.2.1.10.39.1.2.2.1.1",
691
+ "status" : "current",
692
+ "syntax" : {
693
+ "type" : {
694
+ "basetype" : "Integer32",
695
+ "ranges" : [
696
+ {
697
+ "min" : "1",
698
+ "max" : "96"
699
+ },
700
+ ],
701
+ "range" : {
702
+ "min" : "1",
703
+ "max" : "96"
704
+ },
705
+ },
706
+ },
707
+ "access" : "noaccess",
708
+ "description" :
709
+ """A number between 1 and 96, which identifies the
710
+ interval for which the set of statistics is available.
711
+ The interval identified by 1 is the most recently
712
+ completed 15 minute interval,
713
+ and the interval identified
714
+ by N is the interval immediately preceding the
715
+ one identified
716
+ by N-1.""",
717
+ }, # column
718
+ "sonetSectionIntervalESs" : {
719
+ "nodetype" : "column",
720
+ "moduleName" : "SONET-MIB",
721
+ "oid" : "1.3.6.1.2.1.10.39.1.2.2.1.2",
722
+ "status" : "current",
723
+ "syntax" : {
724
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
725
+ },
726
+ "access" : "readonly",
727
+ "description" :
728
+ """The counter associated with the number of
729
+ Errored Seconds encountered
730
+ by a SONET/SDH Section in a
731
+ particular 15-minute interval
732
+ in the past 24 hours.""",
733
+ }, # column
734
+ "sonetSectionIntervalSESs" : {
735
+ "nodetype" : "column",
736
+ "moduleName" : "SONET-MIB",
737
+ "oid" : "1.3.6.1.2.1.10.39.1.2.2.1.3",
738
+ "status" : "current",
739
+ "syntax" : {
740
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
741
+ },
742
+ "access" : "readonly",
743
+ "description" :
744
+ """The counter associated with the number of
745
+ Severely Errored Seconds
746
+ encountered by a SONET/SDH Section in a
747
+ particular 15-minute interval
748
+ in the past 24 hours.""",
749
+ }, # column
750
+ "sonetSectionIntervalSEFSs" : {
751
+ "nodetype" : "column",
752
+ "moduleName" : "SONET-MIB",
753
+ "oid" : "1.3.6.1.2.1.10.39.1.2.2.1.4",
754
+ "status" : "current",
755
+ "syntax" : {
756
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
757
+ },
758
+ "access" : "readonly",
759
+ "description" :
760
+ """The counter associated with the number of
761
+ Severely Errored Framing Seconds
762
+ encountered by a SONET/SDH Section in a
763
+ particular 15-minute interval
764
+ in the past 24 hours.""",
765
+ }, # column
766
+ "sonetSectionIntervalCVs" : {
767
+ "nodetype" : "column",
768
+ "moduleName" : "SONET-MIB",
769
+ "oid" : "1.3.6.1.2.1.10.39.1.2.2.1.5",
770
+ "status" : "current",
771
+ "syntax" : {
772
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
773
+ },
774
+ "access" : "readonly",
775
+ "description" :
776
+ """The counter associated with the number of Coding
777
+ Violations encountered by a
778
+ SONET/SDH Section in a particular 15-minute interval
779
+ in the past 24 hours.""",
780
+ }, # column
781
+ "sonetSectionIntervalValidData" : {
782
+ "nodetype" : "column",
783
+ "moduleName" : "SONET-MIB",
784
+ "oid" : "1.3.6.1.2.1.10.39.1.2.2.1.6",
785
+ "status" : "current",
786
+ "syntax" : {
787
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
788
+ },
789
+ "access" : "readonly",
790
+ "description" :
791
+ """This variable indicates if the data for this
792
+ interval is valid.""",
793
+ }, # column
794
+ "sonetLine" : {
795
+ "nodetype" : "node",
796
+ "moduleName" : "SONET-MIB",
797
+ "oid" : "1.3.6.1.2.1.10.39.1.3",
798
+ }, # node
799
+ "sonetLineCurrentTable" : {
800
+ "nodetype" : "table",
801
+ "moduleName" : "SONET-MIB",
802
+ "oid" : "1.3.6.1.2.1.10.39.1.3.1",
803
+ "status" : "current",
804
+ "description" :
805
+ """The SONET/SDH Line Current table.""",
806
+ }, # table
807
+ "sonetLineCurrentEntry" : {
808
+ "nodetype" : "row",
809
+ "moduleName" : "SONET-MIB",
810
+ "oid" : "1.3.6.1.2.1.10.39.1.3.1.1",
811
+ "status" : "current",
812
+ "linkage" : [
813
+ "ifIndex",
814
+ ],
815
+ "description" :
816
+ """An entry in the SONET/SDH Line Current table.""",
817
+ }, # row
818
+ "sonetLineCurrentStatus" : {
819
+ "nodetype" : "column",
820
+ "moduleName" : "SONET-MIB",
821
+ "oid" : "1.3.6.1.2.1.10.39.1.3.1.1.1",
822
+ "status" : "current",
823
+ "syntax" : {
824
+ "type" : {
825
+ "basetype" : "Integer32",
826
+ "ranges" : [
827
+ {
828
+ "min" : "1",
829
+ "max" : "6"
830
+ },
831
+ ],
832
+ "range" : {
833
+ "min" : "1",
834
+ "max" : "6"
835
+ },
836
+ },
837
+ },
838
+ "access" : "readonly",
839
+ "description" :
840
+ """This variable indicates the
841
+ status of the interface.
842
+ The sonetLineCurrentStatus
843
+ is a bit map represented
844
+ as a sum, therefore,
845
+ it can represent multiple defects
846
+ simultaneously.
847
+ The sonetLineNoDefect should be
848
+ set if and only if
849
+ no other flag is set.
850
+
851
+ The various bit positions are:
852
+ 1 sonetLineNoDefect
853
+ 2 sonetLineAIS
854
+ 4 sonetLineRDI""",
855
+ }, # column
856
+ "sonetLineCurrentESs" : {
857
+ "nodetype" : "column",
858
+ "moduleName" : "SONET-MIB",
859
+ "oid" : "1.3.6.1.2.1.10.39.1.3.1.1.2",
860
+ "status" : "current",
861
+ "syntax" : {
862
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
863
+ },
864
+ "access" : "readonly",
865
+ "description" :
866
+ """The counter associated with the number of Errored
867
+ Seconds encountered by a SONET/SDH
868
+ Line in the current 15 minute interval.""",
869
+ }, # column
870
+ "sonetLineCurrentSESs" : {
871
+ "nodetype" : "column",
872
+ "moduleName" : "SONET-MIB",
873
+ "oid" : "1.3.6.1.2.1.10.39.1.3.1.1.3",
874
+ "status" : "current",
875
+ "syntax" : {
876
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
877
+ },
878
+ "access" : "readonly",
879
+ "description" :
880
+ """The counter associated with the number of
881
+ Severely Errored Seconds
882
+ encountered by a SONET/SDH Line in the current 15
883
+ minute
884
+ interval.""",
885
+ }, # column
886
+ "sonetLineCurrentCVs" : {
887
+ "nodetype" : "column",
888
+ "moduleName" : "SONET-MIB",
889
+ "oid" : "1.3.6.1.2.1.10.39.1.3.1.1.4",
890
+ "status" : "current",
891
+ "syntax" : {
892
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
893
+ },
894
+ "access" : "readonly",
895
+ "description" :
896
+ """The counter associated with the number of Coding
897
+ Violations encountered by a
898
+ SONET/SDH Line in the current 15 minute interval.""",
899
+ }, # column
900
+ "sonetLineCurrentUASs" : {
901
+ "nodetype" : "column",
902
+ "moduleName" : "SONET-MIB",
903
+ "oid" : "1.3.6.1.2.1.10.39.1.3.1.1.5",
904
+ "status" : "current",
905
+ "syntax" : {
906
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
907
+ },
908
+ "access" : "readonly",
909
+ "description" :
910
+ """The counter associated with the number of
911
+ Unavailable Seconds
912
+ encountered by a SONET/SDH Line in the current 15
913
+ minute
914
+ interval.""",
915
+ }, # column
916
+ "sonetLineIntervalTable" : {
917
+ "nodetype" : "table",
918
+ "moduleName" : "SONET-MIB",
919
+ "oid" : "1.3.6.1.2.1.10.39.1.3.2",
920
+ "status" : "current",
921
+ "description" :
922
+ """The SONET/SDH Line Interval table.""",
923
+ }, # table
924
+ "sonetLineIntervalEntry" : {
925
+ "nodetype" : "row",
926
+ "moduleName" : "SONET-MIB",
927
+ "oid" : "1.3.6.1.2.1.10.39.1.3.2.1",
928
+ "status" : "current",
929
+ "linkage" : [
930
+ "ifIndex",
931
+ "sonetLineIntervalNumber",
932
+ ],
933
+ "description" :
934
+ """An entry in the SONET/SDH Line Interval table.""",
935
+ }, # row
936
+ "sonetLineIntervalNumber" : {
937
+ "nodetype" : "column",
938
+ "moduleName" : "SONET-MIB",
939
+ "oid" : "1.3.6.1.2.1.10.39.1.3.2.1.1",
940
+ "status" : "current",
941
+ "syntax" : {
942
+ "type" : {
943
+ "basetype" : "Integer32",
944
+ "ranges" : [
945
+ {
946
+ "min" : "1",
947
+ "max" : "96"
948
+ },
949
+ ],
950
+ "range" : {
951
+ "min" : "1",
952
+ "max" : "96"
953
+ },
954
+ },
955
+ },
956
+ "access" : "noaccess",
957
+ "description" :
958
+ """A number between 1 and 96, which identifies the
959
+ interval for which the set of statistics is available.
960
+ The interval identified by 1 is the most recently
961
+ completed 15 minute interval,
962
+ and the interval identified
963
+ by N is the interval immediately preceding the
964
+ one identified
965
+ by N-1.""",
966
+ }, # column
967
+ "sonetLineIntervalESs" : {
968
+ "nodetype" : "column",
969
+ "moduleName" : "SONET-MIB",
970
+ "oid" : "1.3.6.1.2.1.10.39.1.3.2.1.2",
971
+ "status" : "current",
972
+ "syntax" : {
973
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
974
+ },
975
+ "access" : "readonly",
976
+ "description" :
977
+ """The counter associated with the number of
978
+ Errored Seconds encountered
979
+ by a SONET/SDH Line in a
980
+ particular 15-minute interval
981
+ in the past 24 hours.""",
982
+ }, # column
983
+ "sonetLineIntervalSESs" : {
984
+ "nodetype" : "column",
985
+ "moduleName" : "SONET-MIB",
986
+ "oid" : "1.3.6.1.2.1.10.39.1.3.2.1.3",
987
+ "status" : "current",
988
+ "syntax" : {
989
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
990
+ },
991
+ "access" : "readonly",
992
+ "description" :
993
+ """The counter associated with the number of
994
+ Severely Errored Seconds
995
+ encountered by a SONET/SDH Line in a
996
+ particular 15-minute interval
997
+ in the past 24 hours.""",
998
+ }, # column
999
+ "sonetLineIntervalCVs" : {
1000
+ "nodetype" : "column",
1001
+ "moduleName" : "SONET-MIB",
1002
+ "oid" : "1.3.6.1.2.1.10.39.1.3.2.1.4",
1003
+ "status" : "current",
1004
+ "syntax" : {
1005
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1006
+ },
1007
+ "access" : "readonly",
1008
+ "description" :
1009
+ """The counter associated with the number of Coding
1010
+ Violations encountered by a
1011
+ SONET/SDH Line in a
1012
+ particular 15-minute interval
1013
+ in the past 24 hours.""",
1014
+ }, # column
1015
+ "sonetLineIntervalUASs" : {
1016
+ "nodetype" : "column",
1017
+ "moduleName" : "SONET-MIB",
1018
+ "oid" : "1.3.6.1.2.1.10.39.1.3.2.1.5",
1019
+ "status" : "current",
1020
+ "syntax" : {
1021
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1022
+ },
1023
+ "access" : "readonly",
1024
+ "description" :
1025
+ """The counter associated with the
1026
+ number of Unavailable Seconds
1027
+ encountered by a SONET/SDH Line in
1028
+ a particular 15-minute interval
1029
+ in the past 24 hours.""",
1030
+ }, # column
1031
+ "sonetLineIntervalValidData" : {
1032
+ "nodetype" : "column",
1033
+ "moduleName" : "SONET-MIB",
1034
+ "oid" : "1.3.6.1.2.1.10.39.1.3.2.1.6",
1035
+ "status" : "current",
1036
+ "syntax" : {
1037
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1038
+ },
1039
+ "access" : "readonly",
1040
+ "description" :
1041
+ """This variable indicates if the data for this
1042
+ interval is valid.""",
1043
+ }, # column
1044
+ "sonetFarEndLine" : {
1045
+ "nodetype" : "node",
1046
+ "moduleName" : "SONET-MIB",
1047
+ "oid" : "1.3.6.1.2.1.10.39.1.4",
1048
+ }, # node
1049
+ "sonetFarEndLineCurrentTable" : {
1050
+ "nodetype" : "table",
1051
+ "moduleName" : "SONET-MIB",
1052
+ "oid" : "1.3.6.1.2.1.10.39.1.4.1",
1053
+ "status" : "current",
1054
+ "description" :
1055
+ """The SONET/SDH Far End Line Current table.""",
1056
+ }, # table
1057
+ "sonetFarEndLineCurrentEntry" : {
1058
+ "nodetype" : "row",
1059
+ "moduleName" : "SONET-MIB",
1060
+ "oid" : "1.3.6.1.2.1.10.39.1.4.1.1",
1061
+ "status" : "current",
1062
+ "linkage" : [
1063
+ "ifIndex",
1064
+ ],
1065
+ "description" :
1066
+ """An entry in the SONET/SDH Far End Line Current table.""",
1067
+ }, # row
1068
+ "sonetFarEndLineCurrentESs" : {
1069
+ "nodetype" : "column",
1070
+ "moduleName" : "SONET-MIB",
1071
+ "oid" : "1.3.6.1.2.1.10.39.1.4.1.1.1",
1072
+ "status" : "current",
1073
+ "syntax" : {
1074
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1075
+ },
1076
+ "access" : "readonly",
1077
+ "description" :
1078
+ """The counter associated with the number of Far
1079
+ End Errored Seconds encountered by a SONET/SDH
1080
+ interface in the current 15 minute interval.""",
1081
+ }, # column
1082
+ "sonetFarEndLineCurrentSESs" : {
1083
+ "nodetype" : "column",
1084
+ "moduleName" : "SONET-MIB",
1085
+ "oid" : "1.3.6.1.2.1.10.39.1.4.1.1.2",
1086
+ "status" : "current",
1087
+ "syntax" : {
1088
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1089
+ },
1090
+ "access" : "readonly",
1091
+ "description" :
1092
+ """The counter associated with the number of
1093
+ Far End Severely Errored Seconds
1094
+
1095
+
1096
+
1097
+ encountered by a SONET/SDH Medium/Section/Line
1098
+ interface in the current 15 minute
1099
+ interval.""",
1100
+ }, # column
1101
+ "sonetFarEndLineCurrentCVs" : {
1102
+ "nodetype" : "column",
1103
+ "moduleName" : "SONET-MIB",
1104
+ "oid" : "1.3.6.1.2.1.10.39.1.4.1.1.3",
1105
+ "status" : "current",
1106
+ "syntax" : {
1107
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1108
+ },
1109
+ "access" : "readonly",
1110
+ "description" :
1111
+ """The counter associated with the number of
1112
+ Far End Coding Violations reported via
1113
+ the far end block error count
1114
+ encountered by a
1115
+ SONET/SDH Medium/Section/Line
1116
+ interface in the current 15 minute interval.""",
1117
+ }, # column
1118
+ "sonetFarEndLineCurrentUASs" : {
1119
+ "nodetype" : "column",
1120
+ "moduleName" : "SONET-MIB",
1121
+ "oid" : "1.3.6.1.2.1.10.39.1.4.1.1.4",
1122
+ "status" : "current",
1123
+ "syntax" : {
1124
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1125
+ },
1126
+ "access" : "readonly",
1127
+ "description" :
1128
+ """The counter associated with the number of
1129
+ Far End Unavailable Seconds
1130
+ encountered by a
1131
+ SONET/SDH Medium/Section/Line
1132
+ interface in the current 15 minute interval.""",
1133
+ }, # column
1134
+ "sonetFarEndLineIntervalTable" : {
1135
+ "nodetype" : "table",
1136
+ "moduleName" : "SONET-MIB",
1137
+ "oid" : "1.3.6.1.2.1.10.39.1.4.2",
1138
+ "status" : "current",
1139
+ "description" :
1140
+ """The SONET/SDH Far End Line Interval table.""",
1141
+ }, # table
1142
+ "sonetFarEndLineIntervalEntry" : {
1143
+ "nodetype" : "row",
1144
+ "moduleName" : "SONET-MIB",
1145
+ "oid" : "1.3.6.1.2.1.10.39.1.4.2.1",
1146
+ "status" : "current",
1147
+ "linkage" : [
1148
+ "ifIndex",
1149
+ "sonetFarEndLineIntervalNumber",
1150
+ ],
1151
+ "description" :
1152
+ """An entry in the SONET/SDH Far
1153
+ End Line Interval table.""",
1154
+ }, # row
1155
+ "sonetFarEndLineIntervalNumber" : {
1156
+ "nodetype" : "column",
1157
+ "moduleName" : "SONET-MIB",
1158
+ "oid" : "1.3.6.1.2.1.10.39.1.4.2.1.1",
1159
+ "status" : "current",
1160
+ "syntax" : {
1161
+ "type" : {
1162
+ "basetype" : "Integer32",
1163
+ "ranges" : [
1164
+ {
1165
+ "min" : "1",
1166
+ "max" : "96"
1167
+ },
1168
+ ],
1169
+ "range" : {
1170
+ "min" : "1",
1171
+ "max" : "96"
1172
+ },
1173
+ },
1174
+ },
1175
+ "access" : "noaccess",
1176
+ "description" :
1177
+ """A number between 1 and 96, which identifies the
1178
+ interval for which the set of statistics is available.
1179
+ The interval identified by 1 is the most recently
1180
+ completed 15 minute interval,
1181
+ and the interval identified
1182
+ by N is the interval immediately preceding the
1183
+ one identified
1184
+ by N-1.""",
1185
+ }, # column
1186
+ "sonetFarEndLineIntervalESs" : {
1187
+ "nodetype" : "column",
1188
+ "moduleName" : "SONET-MIB",
1189
+ "oid" : "1.3.6.1.2.1.10.39.1.4.2.1.2",
1190
+ "status" : "current",
1191
+ "syntax" : {
1192
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1193
+ },
1194
+ "access" : "readonly",
1195
+ "description" :
1196
+ """The counter associated with the number of
1197
+ Far End Errored Seconds encountered
1198
+ by a SONET/SDH Line
1199
+ interface in a particular 15-minute interval
1200
+ in the past 24 hours.""",
1201
+ }, # column
1202
+ "sonetFarEndLineIntervalSESs" : {
1203
+ "nodetype" : "column",
1204
+ "moduleName" : "SONET-MIB",
1205
+ "oid" : "1.3.6.1.2.1.10.39.1.4.2.1.3",
1206
+ "status" : "current",
1207
+ "syntax" : {
1208
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1209
+ },
1210
+ "access" : "readonly",
1211
+ "description" :
1212
+ """The counter associated with the number of
1213
+ Far End Severely Errored Seconds
1214
+ encountered by a SONET/SDH Line
1215
+ interface in a particular 15-minute interval
1216
+ in the past 24 hours.""",
1217
+ }, # column
1218
+ "sonetFarEndLineIntervalCVs" : {
1219
+ "nodetype" : "column",
1220
+ "moduleName" : "SONET-MIB",
1221
+ "oid" : "1.3.6.1.2.1.10.39.1.4.2.1.4",
1222
+ "status" : "current",
1223
+ "syntax" : {
1224
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1225
+ },
1226
+ "access" : "readonly",
1227
+ "description" :
1228
+ """The counter associated with the number of
1229
+ Far End Coding Violations reported via
1230
+ the far end block error count
1231
+ encountered by a
1232
+ SONET/SDH Line
1233
+ interface in a particular 15-minute interval
1234
+ in the past 24 hours.""",
1235
+ }, # column
1236
+ "sonetFarEndLineIntervalUASs" : {
1237
+ "nodetype" : "column",
1238
+ "moduleName" : "SONET-MIB",
1239
+ "oid" : "1.3.6.1.2.1.10.39.1.4.2.1.5",
1240
+ "status" : "current",
1241
+ "syntax" : {
1242
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1243
+ },
1244
+ "access" : "readonly",
1245
+ "description" :
1246
+ """The counter associated with the number of
1247
+ Far End Unavailable Seconds
1248
+ encountered by a
1249
+ SONET/SDH Line
1250
+ interface in a particular 15-minute interval
1251
+ in the past 24 hours.""",
1252
+ }, # column
1253
+ "sonetFarEndLineIntervalValidData" : {
1254
+ "nodetype" : "column",
1255
+ "moduleName" : "SONET-MIB",
1256
+ "oid" : "1.3.6.1.2.1.10.39.1.4.2.1.6",
1257
+ "status" : "current",
1258
+ "syntax" : {
1259
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1260
+ },
1261
+ "access" : "readonly",
1262
+ "description" :
1263
+ """This variable indicates if the data for this
1264
+ interval is valid.""",
1265
+ }, # column
1266
+ "sonetObjectsPath" : {
1267
+ "nodetype" : "node",
1268
+ "moduleName" : "SONET-MIB",
1269
+ "oid" : "1.3.6.1.2.1.10.39.2",
1270
+ }, # node
1271
+ "sonetPath" : {
1272
+ "nodetype" : "node",
1273
+ "moduleName" : "SONET-MIB",
1274
+ "oid" : "1.3.6.1.2.1.10.39.2.1",
1275
+ }, # node
1276
+ "sonetPathCurrentTable" : {
1277
+ "nodetype" : "table",
1278
+ "moduleName" : "SONET-MIB",
1279
+ "oid" : "1.3.6.1.2.1.10.39.2.1.1",
1280
+ "status" : "current",
1281
+ "description" :
1282
+ """The SONET/SDH Path Current table.""",
1283
+ }, # table
1284
+ "sonetPathCurrentEntry" : {
1285
+ "nodetype" : "row",
1286
+ "moduleName" : "SONET-MIB",
1287
+ "oid" : "1.3.6.1.2.1.10.39.2.1.1.1",
1288
+ "status" : "current",
1289
+ "linkage" : [
1290
+ "ifIndex",
1291
+ ],
1292
+ "description" :
1293
+ """An entry in the SONET/SDH Path Current table.""",
1294
+ }, # row
1295
+ "sonetPathCurrentWidth" : {
1296
+ "nodetype" : "column",
1297
+ "moduleName" : "SONET-MIB",
1298
+ "oid" : "1.3.6.1.2.1.10.39.2.1.1.1.1",
1299
+ "status" : "current",
1300
+ "syntax" : {
1301
+ "type" : {
1302
+ "basetype" : "Enumeration",
1303
+ "sts1" : {
1304
+ "nodetype" : "namednumber",
1305
+ "number" : "1"
1306
+ },
1307
+ "sts3cSTM1" : {
1308
+ "nodetype" : "namednumber",
1309
+ "number" : "2"
1310
+ },
1311
+ "sts12cSTM4" : {
1312
+ "nodetype" : "namednumber",
1313
+ "number" : "3"
1314
+ },
1315
+ "sts24c" : {
1316
+ "nodetype" : "namednumber",
1317
+ "number" : "4"
1318
+ },
1319
+ "sts48cSTM16" : {
1320
+ "nodetype" : "namednumber",
1321
+ "number" : "5"
1322
+ },
1323
+ "sts192cSTM64" : {
1324
+ "nodetype" : "namednumber",
1325
+ "number" : "6"
1326
+ },
1327
+ "sts768cSTM256" : {
1328
+ "nodetype" : "namednumber",
1329
+ "number" : "7"
1330
+ },
1331
+ },
1332
+ },
1333
+ "access" : "readwrite",
1334
+ "description" :
1335
+ """A value that indicates the type of the SONET/SDH
1336
+ Path. For SONET, the assigned types are
1337
+ the STS-Nc SPEs, where N = 1, 3, 12, 24, 48, 192 and 768.
1338
+ STS-1 is equal to 51.84 Mbps. For SDH, the assigned
1339
+ types are the STM-Nc VCs, where N = 1, 4, 16, 64 and 256.""",
1340
+ }, # column
1341
+ "sonetPathCurrentStatus" : {
1342
+ "nodetype" : "column",
1343
+ "moduleName" : "SONET-MIB",
1344
+ "oid" : "1.3.6.1.2.1.10.39.2.1.1.1.2",
1345
+ "status" : "current",
1346
+ "syntax" : {
1347
+ "type" : {
1348
+ "basetype" : "Integer32",
1349
+ "ranges" : [
1350
+ {
1351
+ "min" : "1",
1352
+ "max" : "62"
1353
+ },
1354
+ ],
1355
+ "range" : {
1356
+ "min" : "1",
1357
+ "max" : "62"
1358
+ },
1359
+ },
1360
+ },
1361
+ "access" : "readonly",
1362
+ "description" :
1363
+ """This variable indicates the
1364
+ status of the interface.
1365
+ The sonetPathCurrentStatus
1366
+ is a bit map represented
1367
+ as a sum, therefore,
1368
+ it can represent multiple defects
1369
+ simultaneously.
1370
+ The sonetPathNoDefect should be
1371
+ set if and only if
1372
+ no other flag is set.
1373
+
1374
+ The various bit positions are:
1375
+ 1 sonetPathNoDefect
1376
+ 2 sonetPathSTSLOP
1377
+ 4 sonetPathSTSAIS
1378
+ 8 sonetPathSTSRDI
1379
+ 16 sonetPathUnequipped
1380
+ 32 sonetPathSignalLabelMismatch""",
1381
+ }, # column
1382
+ "sonetPathCurrentESs" : {
1383
+ "nodetype" : "column",
1384
+ "moduleName" : "SONET-MIB",
1385
+ "oid" : "1.3.6.1.2.1.10.39.2.1.1.1.3",
1386
+ "status" : "current",
1387
+ "syntax" : {
1388
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1389
+ },
1390
+ "access" : "readonly",
1391
+ "description" :
1392
+ """The counter associated with the number of Errored
1393
+ Seconds encountered by a SONET/SDH
1394
+ Path in the current 15 minute interval.""",
1395
+ }, # column
1396
+ "sonetPathCurrentSESs" : {
1397
+ "nodetype" : "column",
1398
+ "moduleName" : "SONET-MIB",
1399
+ "oid" : "1.3.6.1.2.1.10.39.2.1.1.1.4",
1400
+ "status" : "current",
1401
+ "syntax" : {
1402
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1403
+ },
1404
+ "access" : "readonly",
1405
+ "description" :
1406
+ """The counter associated with the number of
1407
+ Severely Errored Seconds
1408
+ encountered by a SONET/SDH Path in the current 15
1409
+ minute
1410
+ interval.""",
1411
+ }, # column
1412
+ "sonetPathCurrentCVs" : {
1413
+ "nodetype" : "column",
1414
+ "moduleName" : "SONET-MIB",
1415
+ "oid" : "1.3.6.1.2.1.10.39.2.1.1.1.5",
1416
+ "status" : "current",
1417
+ "syntax" : {
1418
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1419
+ },
1420
+ "access" : "readonly",
1421
+ "description" :
1422
+ """The counter associated with the number of Coding
1423
+ Violations encountered by a
1424
+ SONET/SDH Path in the current 15 minute interval.""",
1425
+ }, # column
1426
+ "sonetPathCurrentUASs" : {
1427
+ "nodetype" : "column",
1428
+ "moduleName" : "SONET-MIB",
1429
+ "oid" : "1.3.6.1.2.1.10.39.2.1.1.1.6",
1430
+ "status" : "current",
1431
+ "syntax" : {
1432
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1433
+ },
1434
+ "access" : "readonly",
1435
+ "description" :
1436
+ """The counter associated with the number of
1437
+ Unavailable Seconds
1438
+ encountered by a Path in the current
1439
+ 15 minute interval.""",
1440
+ }, # column
1441
+ "sonetPathIntervalTable" : {
1442
+ "nodetype" : "table",
1443
+ "moduleName" : "SONET-MIB",
1444
+ "oid" : "1.3.6.1.2.1.10.39.2.1.2",
1445
+ "status" : "current",
1446
+ "description" :
1447
+ """The SONET/SDH Path Interval table.""",
1448
+ }, # table
1449
+ "sonetPathIntervalEntry" : {
1450
+ "nodetype" : "row",
1451
+ "moduleName" : "SONET-MIB",
1452
+ "oid" : "1.3.6.1.2.1.10.39.2.1.2.1",
1453
+ "status" : "current",
1454
+ "linkage" : [
1455
+ "ifIndex",
1456
+ "sonetPathIntervalNumber",
1457
+ ],
1458
+ "description" :
1459
+ """An entry in the SONET/SDH Path Interval table.""",
1460
+ }, # row
1461
+ "sonetPathIntervalNumber" : {
1462
+ "nodetype" : "column",
1463
+ "moduleName" : "SONET-MIB",
1464
+ "oid" : "1.3.6.1.2.1.10.39.2.1.2.1.1",
1465
+ "status" : "current",
1466
+ "syntax" : {
1467
+ "type" : {
1468
+ "basetype" : "Integer32",
1469
+ "ranges" : [
1470
+ {
1471
+ "min" : "1",
1472
+ "max" : "96"
1473
+ },
1474
+ ],
1475
+ "range" : {
1476
+ "min" : "1",
1477
+ "max" : "96"
1478
+ },
1479
+ },
1480
+ },
1481
+ "access" : "noaccess",
1482
+ "description" :
1483
+ """A number between 1 and 96, which identifies the
1484
+ interval for which the set of statistics is available.
1485
+ The interval identified by 1 is the most recently
1486
+ completed 15 minute interval,
1487
+ and the interval identified
1488
+ by N is the interval immediately preceding the
1489
+ one identified
1490
+ by N-1.""",
1491
+ }, # column
1492
+ "sonetPathIntervalESs" : {
1493
+ "nodetype" : "column",
1494
+ "moduleName" : "SONET-MIB",
1495
+ "oid" : "1.3.6.1.2.1.10.39.2.1.2.1.2",
1496
+ "status" : "current",
1497
+ "syntax" : {
1498
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1499
+ },
1500
+ "access" : "readonly",
1501
+ "description" :
1502
+ """The counter associated with the number of
1503
+ Errored Seconds encountered
1504
+ by a SONET/SDH Path in a
1505
+ particular 15-minute interval
1506
+ in the past 24 hours.""",
1507
+ }, # column
1508
+ "sonetPathIntervalSESs" : {
1509
+ "nodetype" : "column",
1510
+ "moduleName" : "SONET-MIB",
1511
+ "oid" : "1.3.6.1.2.1.10.39.2.1.2.1.3",
1512
+ "status" : "current",
1513
+ "syntax" : {
1514
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1515
+ },
1516
+ "access" : "readonly",
1517
+ "description" :
1518
+ """The counter associated with the number of
1519
+ Severely Errored Seconds
1520
+ encountered by a SONET/SDH Path in
1521
+ a particular 15-minute interval
1522
+ in the past 24 hours.""",
1523
+ }, # column
1524
+ "sonetPathIntervalCVs" : {
1525
+ "nodetype" : "column",
1526
+ "moduleName" : "SONET-MIB",
1527
+ "oid" : "1.3.6.1.2.1.10.39.2.1.2.1.4",
1528
+ "status" : "current",
1529
+ "syntax" : {
1530
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1531
+ },
1532
+ "access" : "readonly",
1533
+ "description" :
1534
+ """The counter associated with the number of Coding
1535
+ Violations encountered by a
1536
+ SONET/SDH Path in a particular 15-minute interval
1537
+ in the past 24 hours.""",
1538
+ }, # column
1539
+ "sonetPathIntervalUASs" : {
1540
+ "nodetype" : "column",
1541
+ "moduleName" : "SONET-MIB",
1542
+ "oid" : "1.3.6.1.2.1.10.39.2.1.2.1.5",
1543
+ "status" : "current",
1544
+ "syntax" : {
1545
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1546
+ },
1547
+ "access" : "readonly",
1548
+ "description" :
1549
+ """The counter associated with the number of
1550
+ Unavailable Seconds
1551
+ encountered by a Path in a
1552
+ particular 15-minute interval
1553
+ in the past 24 hours.""",
1554
+ }, # column
1555
+ "sonetPathIntervalValidData" : {
1556
+ "nodetype" : "column",
1557
+ "moduleName" : "SONET-MIB",
1558
+ "oid" : "1.3.6.1.2.1.10.39.2.1.2.1.6",
1559
+ "status" : "current",
1560
+ "syntax" : {
1561
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1562
+ },
1563
+ "access" : "readonly",
1564
+ "description" :
1565
+ """This variable indicates if the data for this
1566
+
1567
+
1568
+
1569
+ interval is valid.""",
1570
+ }, # column
1571
+ "sonetFarEndPath" : {
1572
+ "nodetype" : "node",
1573
+ "moduleName" : "SONET-MIB",
1574
+ "oid" : "1.3.6.1.2.1.10.39.2.2",
1575
+ }, # node
1576
+ "sonetFarEndPathCurrentTable" : {
1577
+ "nodetype" : "table",
1578
+ "moduleName" : "SONET-MIB",
1579
+ "oid" : "1.3.6.1.2.1.10.39.2.2.1",
1580
+ "status" : "current",
1581
+ "description" :
1582
+ """The SONET/SDH Far End Path Current table.""",
1583
+ }, # table
1584
+ "sonetFarEndPathCurrentEntry" : {
1585
+ "nodetype" : "row",
1586
+ "moduleName" : "SONET-MIB",
1587
+ "oid" : "1.3.6.1.2.1.10.39.2.2.1.1",
1588
+ "status" : "current",
1589
+ "linkage" : [
1590
+ "ifIndex",
1591
+ ],
1592
+ "description" :
1593
+ """An entry in the SONET/SDH Far End Path Current table.""",
1594
+ }, # row
1595
+ "sonetFarEndPathCurrentESs" : {
1596
+ "nodetype" : "column",
1597
+ "moduleName" : "SONET-MIB",
1598
+ "oid" : "1.3.6.1.2.1.10.39.2.2.1.1.1",
1599
+ "status" : "current",
1600
+ "syntax" : {
1601
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1602
+ },
1603
+ "access" : "readonly",
1604
+ "description" :
1605
+ """The counter associated with the number of Far
1606
+ End Errored Seconds encountered by a SONET/SDH
1607
+ interface in the current 15 minute interval.""",
1608
+ }, # column
1609
+ "sonetFarEndPathCurrentSESs" : {
1610
+ "nodetype" : "column",
1611
+ "moduleName" : "SONET-MIB",
1612
+ "oid" : "1.3.6.1.2.1.10.39.2.2.1.1.2",
1613
+ "status" : "current",
1614
+ "syntax" : {
1615
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1616
+ },
1617
+ "access" : "readonly",
1618
+ "description" :
1619
+ """The counter associated with the number of
1620
+ Far End Severely Errored Seconds
1621
+ encountered by a SONET/SDH Path
1622
+ interface in the current 15 minute
1623
+ interval.""",
1624
+ }, # column
1625
+ "sonetFarEndPathCurrentCVs" : {
1626
+ "nodetype" : "column",
1627
+ "moduleName" : "SONET-MIB",
1628
+ "oid" : "1.3.6.1.2.1.10.39.2.2.1.1.3",
1629
+ "status" : "current",
1630
+ "syntax" : {
1631
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1632
+ },
1633
+ "access" : "readonly",
1634
+ "description" :
1635
+ """The counter associated with the number of
1636
+ Far End Coding Violations reported via
1637
+ the far end block error count
1638
+ encountered by a
1639
+ SONET/SDH Path interface in
1640
+ the current 15 minute interval.""",
1641
+ }, # column
1642
+ "sonetFarEndPathCurrentUASs" : {
1643
+ "nodetype" : "column",
1644
+ "moduleName" : "SONET-MIB",
1645
+ "oid" : "1.3.6.1.2.1.10.39.2.2.1.1.4",
1646
+ "status" : "current",
1647
+ "syntax" : {
1648
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1649
+ },
1650
+ "access" : "readonly",
1651
+ "description" :
1652
+ """The counter associated with the number of
1653
+ Far End Unavailable Seconds
1654
+ encountered by a
1655
+ SONET/SDH Path interface in
1656
+ the current 15 minute interval.""",
1657
+ }, # column
1658
+ "sonetFarEndPathIntervalTable" : {
1659
+ "nodetype" : "table",
1660
+ "moduleName" : "SONET-MIB",
1661
+ "oid" : "1.3.6.1.2.1.10.39.2.2.2",
1662
+ "status" : "current",
1663
+ "description" :
1664
+ """The SONET/SDH Far End Path Interval table.""",
1665
+ }, # table
1666
+ "sonetFarEndPathIntervalEntry" : {
1667
+ "nodetype" : "row",
1668
+ "moduleName" : "SONET-MIB",
1669
+ "oid" : "1.3.6.1.2.1.10.39.2.2.2.1",
1670
+ "status" : "current",
1671
+ "linkage" : [
1672
+ "ifIndex",
1673
+ "sonetFarEndPathIntervalNumber",
1674
+ ],
1675
+ "description" :
1676
+ """An entry in the SONET/SDH Far
1677
+ End Path Interval table.""",
1678
+ }, # row
1679
+ "sonetFarEndPathIntervalNumber" : {
1680
+ "nodetype" : "column",
1681
+ "moduleName" : "SONET-MIB",
1682
+ "oid" : "1.3.6.1.2.1.10.39.2.2.2.1.1",
1683
+ "status" : "current",
1684
+ "syntax" : {
1685
+ "type" : {
1686
+ "basetype" : "Integer32",
1687
+ "ranges" : [
1688
+ {
1689
+ "min" : "1",
1690
+ "max" : "96"
1691
+ },
1692
+ ],
1693
+ "range" : {
1694
+ "min" : "1",
1695
+ "max" : "96"
1696
+ },
1697
+ },
1698
+ },
1699
+ "access" : "noaccess",
1700
+ "description" :
1701
+ """A number between 1 and 96, which identifies the
1702
+ interval for which the set of statistics is available.
1703
+
1704
+
1705
+
1706
+ The interval identified by 1 is the most recently
1707
+ completed 15 minute interval,
1708
+ and the interval identified
1709
+ by N is the interval immediately preceding the
1710
+ one identified
1711
+ by N-1.""",
1712
+ }, # column
1713
+ "sonetFarEndPathIntervalESs" : {
1714
+ "nodetype" : "column",
1715
+ "moduleName" : "SONET-MIB",
1716
+ "oid" : "1.3.6.1.2.1.10.39.2.2.2.1.2",
1717
+ "status" : "current",
1718
+ "syntax" : {
1719
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1720
+ },
1721
+ "access" : "readonly",
1722
+ "description" :
1723
+ """The counter associated with the number of
1724
+ Far End Errored Seconds encountered
1725
+ by a SONET/SDH Path interface in a
1726
+ particular 15-minute interval
1727
+ in the past 24 hours.""",
1728
+ }, # column
1729
+ "sonetFarEndPathIntervalSESs" : {
1730
+ "nodetype" : "column",
1731
+ "moduleName" : "SONET-MIB",
1732
+ "oid" : "1.3.6.1.2.1.10.39.2.2.2.1.3",
1733
+ "status" : "current",
1734
+ "syntax" : {
1735
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1736
+ },
1737
+ "access" : "readonly",
1738
+ "description" :
1739
+ """The counter associated with the number of
1740
+ Far End Severely Errored Seconds
1741
+ encountered by a SONET/SDH Path interface
1742
+ in a particular 15-minute interval
1743
+ in the past 24 hours.""",
1744
+ }, # column
1745
+ "sonetFarEndPathIntervalCVs" : {
1746
+ "nodetype" : "column",
1747
+ "moduleName" : "SONET-MIB",
1748
+ "oid" : "1.3.6.1.2.1.10.39.2.2.2.1.4",
1749
+ "status" : "current",
1750
+ "syntax" : {
1751
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1752
+ },
1753
+ "access" : "readonly",
1754
+ "description" :
1755
+ """The counter associated with the number of
1756
+ Far End Coding Violations reported via
1757
+ the far end block error count
1758
+ encountered by a
1759
+ SONET/SDH Path interface
1760
+ in a particular 15-minute interval
1761
+ in the past 24 hours.""",
1762
+ }, # column
1763
+ "sonetFarEndPathIntervalUASs" : {
1764
+ "nodetype" : "column",
1765
+ "moduleName" : "SONET-MIB",
1766
+ "oid" : "1.3.6.1.2.1.10.39.2.2.2.1.5",
1767
+ "status" : "current",
1768
+ "syntax" : {
1769
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1770
+ },
1771
+ "access" : "readonly",
1772
+ "description" :
1773
+ """The counter associated with the number of
1774
+ Far End Unavailable Seconds
1775
+ encountered by a
1776
+ SONET/SDH Path interface in
1777
+ a particular 15-minute interval
1778
+ in the past 24 hours.""",
1779
+ }, # column
1780
+ "sonetFarEndPathIntervalValidData" : {
1781
+ "nodetype" : "column",
1782
+ "moduleName" : "SONET-MIB",
1783
+ "oid" : "1.3.6.1.2.1.10.39.2.2.2.1.6",
1784
+ "status" : "current",
1785
+ "syntax" : {
1786
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1787
+ },
1788
+ "access" : "readonly",
1789
+ "description" :
1790
+ """This variable indicates if the data for this
1791
+ interval is valid.""",
1792
+ }, # column
1793
+ "sonetObjectsVT" : {
1794
+ "nodetype" : "node",
1795
+ "moduleName" : "SONET-MIB",
1796
+ "oid" : "1.3.6.1.2.1.10.39.3",
1797
+ }, # node
1798
+ "sonetVT" : {
1799
+ "nodetype" : "node",
1800
+ "moduleName" : "SONET-MIB",
1801
+ "oid" : "1.3.6.1.2.1.10.39.3.1",
1802
+ }, # node
1803
+ "sonetVTCurrentTable" : {
1804
+ "nodetype" : "table",
1805
+ "moduleName" : "SONET-MIB",
1806
+ "oid" : "1.3.6.1.2.1.10.39.3.1.1",
1807
+ "status" : "current",
1808
+ "description" :
1809
+ """The SONET/SDH VT Current table.""",
1810
+ }, # table
1811
+ "sonetVTCurrentEntry" : {
1812
+ "nodetype" : "row",
1813
+ "moduleName" : "SONET-MIB",
1814
+ "oid" : "1.3.6.1.2.1.10.39.3.1.1.1",
1815
+ "status" : "current",
1816
+ "linkage" : [
1817
+ "ifIndex",
1818
+ ],
1819
+ "description" :
1820
+ """An entry in the SONET/SDH VT Current table.""",
1821
+ }, # row
1822
+ "sonetVTCurrentWidth" : {
1823
+ "nodetype" : "column",
1824
+ "moduleName" : "SONET-MIB",
1825
+ "oid" : "1.3.6.1.2.1.10.39.3.1.1.1.1",
1826
+ "status" : "current",
1827
+ "syntax" : {
1828
+ "type" : {
1829
+ "basetype" : "Enumeration",
1830
+ "vtWidth15VC11" : {
1831
+ "nodetype" : "namednumber",
1832
+ "number" : "1"
1833
+ },
1834
+ "vtWidth2VC12" : {
1835
+ "nodetype" : "namednumber",
1836
+ "number" : "2"
1837
+ },
1838
+ "vtWidth3" : {
1839
+ "nodetype" : "namednumber",
1840
+ "number" : "3"
1841
+ },
1842
+ "vtWidth6VC2" : {
1843
+ "nodetype" : "namednumber",
1844
+ "number" : "4"
1845
+ },
1846
+ "vtWidth6c" : {
1847
+ "nodetype" : "namednumber",
1848
+ "number" : "5"
1849
+ },
1850
+ },
1851
+ },
1852
+ "access" : "readwrite",
1853
+ "description" :
1854
+ """A value that indicates the type of the SONET
1855
+ VT and SDH VC. Assigned widths are
1856
+ VT1.5/VC11, VT2/VC12, VT3, VT6/VC2, and VT6c.""",
1857
+ }, # column
1858
+ "sonetVTCurrentStatus" : {
1859
+ "nodetype" : "column",
1860
+ "moduleName" : "SONET-MIB",
1861
+ "oid" : "1.3.6.1.2.1.10.39.3.1.1.1.2",
1862
+ "status" : "current",
1863
+ "syntax" : {
1864
+ "type" : {
1865
+ "basetype" : "Integer32",
1866
+ "ranges" : [
1867
+ {
1868
+ "min" : "1",
1869
+ "max" : "126"
1870
+ },
1871
+ ],
1872
+ "range" : {
1873
+ "min" : "1",
1874
+ "max" : "126"
1875
+ },
1876
+ },
1877
+ },
1878
+ "access" : "readonly",
1879
+ "description" :
1880
+ """This variable indicates the
1881
+ status of the interface.
1882
+ The sonetVTCurrentStatus
1883
+ is a bit map represented
1884
+ as a sum, therefore,
1885
+ it can represent multiple defects
1886
+ and failures
1887
+ simultaneously.
1888
+ The sonetVTNoDefect should be
1889
+ set if and only if
1890
+ no other flag is set.
1891
+
1892
+ The various bit positions are:
1893
+ 1 sonetVTNoDefect
1894
+ 2 sonetVTLOP
1895
+ 4 sonetVTPathAIS
1896
+ 8 sonetVTPathRDI
1897
+ 16 sonetVTPathRFI
1898
+ 32 sonetVTUnequipped
1899
+ 64 sonetVTSignalLabelMismatch""",
1900
+ }, # column
1901
+ "sonetVTCurrentESs" : {
1902
+ "nodetype" : "column",
1903
+ "moduleName" : "SONET-MIB",
1904
+ "oid" : "1.3.6.1.2.1.10.39.3.1.1.1.3",
1905
+ "status" : "current",
1906
+ "syntax" : {
1907
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1908
+ },
1909
+ "access" : "readonly",
1910
+ "description" :
1911
+ """The counter associated with the number of Errored
1912
+ Seconds encountered by a SONET/SDH
1913
+ VT in the current 15 minute interval.""",
1914
+ }, # column
1915
+ "sonetVTCurrentSESs" : {
1916
+ "nodetype" : "column",
1917
+ "moduleName" : "SONET-MIB",
1918
+ "oid" : "1.3.6.1.2.1.10.39.3.1.1.1.4",
1919
+ "status" : "current",
1920
+ "syntax" : {
1921
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1922
+ },
1923
+ "access" : "readonly",
1924
+ "description" :
1925
+ """The counter associated with the number of
1926
+ Severely Errored Seconds
1927
+ encountered by a SONET/SDH VT in the current 15 minute
1928
+ interval.""",
1929
+ }, # column
1930
+ "sonetVTCurrentCVs" : {
1931
+ "nodetype" : "column",
1932
+ "moduleName" : "SONET-MIB",
1933
+ "oid" : "1.3.6.1.2.1.10.39.3.1.1.1.5",
1934
+ "status" : "current",
1935
+ "syntax" : {
1936
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1937
+ },
1938
+ "access" : "readonly",
1939
+ "description" :
1940
+ """The counter associated with the number of Coding
1941
+ Violations encountered by a
1942
+ SONET/SDH VT in the current 15 minute interval.""",
1943
+ }, # column
1944
+ "sonetVTCurrentUASs" : {
1945
+ "nodetype" : "column",
1946
+ "moduleName" : "SONET-MIB",
1947
+ "oid" : "1.3.6.1.2.1.10.39.3.1.1.1.6",
1948
+ "status" : "current",
1949
+ "syntax" : {
1950
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1951
+ },
1952
+ "access" : "readonly",
1953
+ "description" :
1954
+ """The counter associated with the number of
1955
+ Unavailable Seconds
1956
+ encountered by a VT in the current
1957
+ 15 minute interval.""",
1958
+ }, # column
1959
+ "sonetVTIntervalTable" : {
1960
+ "nodetype" : "table",
1961
+ "moduleName" : "SONET-MIB",
1962
+ "oid" : "1.3.6.1.2.1.10.39.3.1.2",
1963
+ "status" : "current",
1964
+ "description" :
1965
+ """The SONET/SDH VT Interval table.""",
1966
+ }, # table
1967
+ "sonetVTIntervalEntry" : {
1968
+ "nodetype" : "row",
1969
+ "moduleName" : "SONET-MIB",
1970
+ "oid" : "1.3.6.1.2.1.10.39.3.1.2.1",
1971
+ "status" : "current",
1972
+ "linkage" : [
1973
+ "ifIndex",
1974
+ "sonetVTIntervalNumber",
1975
+ ],
1976
+ "description" :
1977
+ """An entry in the SONET/SDH VT Interval table.""",
1978
+ }, # row
1979
+ "sonetVTIntervalNumber" : {
1980
+ "nodetype" : "column",
1981
+ "moduleName" : "SONET-MIB",
1982
+ "oid" : "1.3.6.1.2.1.10.39.3.1.2.1.1",
1983
+ "status" : "current",
1984
+ "syntax" : {
1985
+ "type" : {
1986
+ "basetype" : "Integer32",
1987
+ "ranges" : [
1988
+ {
1989
+ "min" : "1",
1990
+ "max" : "96"
1991
+ },
1992
+ ],
1993
+ "range" : {
1994
+ "min" : "1",
1995
+ "max" : "96"
1996
+ },
1997
+ },
1998
+ },
1999
+ "access" : "noaccess",
2000
+ "description" :
2001
+ """A number between 1 and 96, which identifies the
2002
+ interval for which the set of statistics is available.
2003
+ The interval identified by 1 is the most recently
2004
+ completed 15 minute interval,
2005
+ and the interval identified
2006
+ by N is the interval immediately preceding the
2007
+ one identified
2008
+ by N-1.""",
2009
+ }, # column
2010
+ "sonetVTIntervalESs" : {
2011
+ "nodetype" : "column",
2012
+ "moduleName" : "SONET-MIB",
2013
+ "oid" : "1.3.6.1.2.1.10.39.3.1.2.1.2",
2014
+ "status" : "current",
2015
+ "syntax" : {
2016
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2017
+ },
2018
+ "access" : "readonly",
2019
+ "description" :
2020
+ """The counter associated with the number of
2021
+ Errored Seconds encountered
2022
+ by a SONET/SDH VT in a particular 15-minute interval
2023
+ in the past 24 hours.""",
2024
+ }, # column
2025
+ "sonetVTIntervalSESs" : {
2026
+ "nodetype" : "column",
2027
+ "moduleName" : "SONET-MIB",
2028
+ "oid" : "1.3.6.1.2.1.10.39.3.1.2.1.3",
2029
+ "status" : "current",
2030
+ "syntax" : {
2031
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2032
+ },
2033
+ "access" : "readonly",
2034
+ "description" :
2035
+ """The counter associated with the number of
2036
+ Severely Errored Seconds
2037
+ encountered by a SONET/SDH VT
2038
+ in a particular 15-minute interval
2039
+
2040
+
2041
+
2042
+ in the past 24 hours.""",
2043
+ }, # column
2044
+ "sonetVTIntervalCVs" : {
2045
+ "nodetype" : "column",
2046
+ "moduleName" : "SONET-MIB",
2047
+ "oid" : "1.3.6.1.2.1.10.39.3.1.2.1.4",
2048
+ "status" : "current",
2049
+ "syntax" : {
2050
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2051
+ },
2052
+ "access" : "readonly",
2053
+ "description" :
2054
+ """The counter associated with the number of Coding
2055
+ Violations encountered by a
2056
+ SONET/SDH VT in a particular 15-minute interval
2057
+ in the past 24 hours.""",
2058
+ }, # column
2059
+ "sonetVTIntervalUASs" : {
2060
+ "nodetype" : "column",
2061
+ "moduleName" : "SONET-MIB",
2062
+ "oid" : "1.3.6.1.2.1.10.39.3.1.2.1.5",
2063
+ "status" : "current",
2064
+ "syntax" : {
2065
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2066
+ },
2067
+ "access" : "readonly",
2068
+ "description" :
2069
+ """The counter associated with the number of
2070
+ Unavailable Seconds
2071
+ encountered by a VT in a particular 15-minute interval
2072
+ in the past 24 hours.""",
2073
+ }, # column
2074
+ "sonetVTIntervalValidData" : {
2075
+ "nodetype" : "column",
2076
+ "moduleName" : "SONET-MIB",
2077
+ "oid" : "1.3.6.1.2.1.10.39.3.1.2.1.6",
2078
+ "status" : "current",
2079
+ "syntax" : {
2080
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2081
+ },
2082
+ "access" : "readonly",
2083
+ "description" :
2084
+ """This variable indicates if the data for this
2085
+ interval is valid.""",
2086
+ }, # column
2087
+ "sonetFarEndVT" : {
2088
+ "nodetype" : "node",
2089
+ "moduleName" : "SONET-MIB",
2090
+ "oid" : "1.3.6.1.2.1.10.39.3.2",
2091
+ }, # node
2092
+ "sonetFarEndVTCurrentTable" : {
2093
+ "nodetype" : "table",
2094
+ "moduleName" : "SONET-MIB",
2095
+ "oid" : "1.3.6.1.2.1.10.39.3.2.1",
2096
+ "status" : "current",
2097
+ "description" :
2098
+ """The SONET/SDH Far End VT Current table.""",
2099
+ }, # table
2100
+ "sonetFarEndVTCurrentEntry" : {
2101
+ "nodetype" : "row",
2102
+ "moduleName" : "SONET-MIB",
2103
+ "oid" : "1.3.6.1.2.1.10.39.3.2.1.1",
2104
+ "status" : "current",
2105
+ "linkage" : [
2106
+ "ifIndex",
2107
+ ],
2108
+ "description" :
2109
+ """An entry in the SONET/SDH Far End VT Current table.""",
2110
+ }, # row
2111
+ "sonetFarEndVTCurrentESs" : {
2112
+ "nodetype" : "column",
2113
+ "moduleName" : "SONET-MIB",
2114
+ "oid" : "1.3.6.1.2.1.10.39.3.2.1.1.1",
2115
+ "status" : "current",
2116
+ "syntax" : {
2117
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
2118
+ },
2119
+ "access" : "readonly",
2120
+ "description" :
2121
+ """The counter associated with the number of Far
2122
+ End Errored Seconds encountered by a SONET/SDH
2123
+ interface in the current 15 minute interval.""",
2124
+ }, # column
2125
+ "sonetFarEndVTCurrentSESs" : {
2126
+ "nodetype" : "column",
2127
+ "moduleName" : "SONET-MIB",
2128
+ "oid" : "1.3.6.1.2.1.10.39.3.2.1.1.2",
2129
+ "status" : "current",
2130
+ "syntax" : {
2131
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
2132
+ },
2133
+ "access" : "readonly",
2134
+ "description" :
2135
+ """The counter associated with the number of
2136
+ Far End Severely Errored Seconds
2137
+ encountered by a SONET/SDH VT interface
2138
+ in the current 15 minute
2139
+ interval.""",
2140
+ }, # column
2141
+ "sonetFarEndVTCurrentCVs" : {
2142
+ "nodetype" : "column",
2143
+ "moduleName" : "SONET-MIB",
2144
+ "oid" : "1.3.6.1.2.1.10.39.3.2.1.1.3",
2145
+ "status" : "current",
2146
+ "syntax" : {
2147
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
2148
+ },
2149
+ "access" : "readonly",
2150
+ "description" :
2151
+ """The counter associated with the number of
2152
+ Far End Coding Violations reported via
2153
+ the far end block error count
2154
+ encountered by a
2155
+ SONET/SDH VT interface
2156
+ in the current 15 minute interval.""",
2157
+ }, # column
2158
+ "sonetFarEndVTCurrentUASs" : {
2159
+ "nodetype" : "column",
2160
+ "moduleName" : "SONET-MIB",
2161
+ "oid" : "1.3.6.1.2.1.10.39.3.2.1.1.4",
2162
+ "status" : "current",
2163
+ "syntax" : {
2164
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
2165
+ },
2166
+ "access" : "readonly",
2167
+ "description" :
2168
+ """The counter associated with the number of
2169
+ Far End Unavailable Seconds
2170
+ encountered by a
2171
+ SONET/SDH VT interface
2172
+ in the current 15 minute interval.""",
2173
+ }, # column
2174
+ "sonetFarEndVTIntervalTable" : {
2175
+ "nodetype" : "table",
2176
+ "moduleName" : "SONET-MIB",
2177
+ "oid" : "1.3.6.1.2.1.10.39.3.2.2",
2178
+ "status" : "current",
2179
+ "description" :
2180
+ """The SONET/SDH Far End VT Interval table.""",
2181
+ }, # table
2182
+ "sonetFarEndVTIntervalEntry" : {
2183
+ "nodetype" : "row",
2184
+ "moduleName" : "SONET-MIB",
2185
+ "oid" : "1.3.6.1.2.1.10.39.3.2.2.1",
2186
+ "status" : "current",
2187
+ "linkage" : [
2188
+ "ifIndex",
2189
+ "sonetFarEndVTIntervalNumber",
2190
+ ],
2191
+ "description" :
2192
+ """An entry in the SONET/SDH Far
2193
+ End VT Interval table.""",
2194
+ }, # row
2195
+ "sonetFarEndVTIntervalNumber" : {
2196
+ "nodetype" : "column",
2197
+ "moduleName" : "SONET-MIB",
2198
+ "oid" : "1.3.6.1.2.1.10.39.3.2.2.1.1",
2199
+ "status" : "current",
2200
+ "syntax" : {
2201
+ "type" : {
2202
+ "basetype" : "Integer32",
2203
+ "ranges" : [
2204
+ {
2205
+ "min" : "1",
2206
+ "max" : "96"
2207
+ },
2208
+ ],
2209
+ "range" : {
2210
+ "min" : "1",
2211
+ "max" : "96"
2212
+ },
2213
+ },
2214
+ },
2215
+ "access" : "noaccess",
2216
+ "description" :
2217
+ """A number between 1 and 96, which identifies the
2218
+ interval for which the set of statistics is available.
2219
+ The interval identified by 1 is the most recently
2220
+ completed 15 minute interval,
2221
+ and the interval identified
2222
+ by N is the interval immediately preceding the
2223
+ one identified
2224
+ by N-1.""",
2225
+ }, # column
2226
+ "sonetFarEndVTIntervalESs" : {
2227
+ "nodetype" : "column",
2228
+ "moduleName" : "SONET-MIB",
2229
+ "oid" : "1.3.6.1.2.1.10.39.3.2.2.1.2",
2230
+ "status" : "current",
2231
+ "syntax" : {
2232
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2233
+ },
2234
+ "access" : "readonly",
2235
+ "description" :
2236
+ """The counter associated with the number of
2237
+ Far End Errored Seconds encountered
2238
+ by a SONET/SDH VT interface
2239
+ in a particular 15-minute interval
2240
+ in the past 24 hours.""",
2241
+ }, # column
2242
+ "sonetFarEndVTIntervalSESs" : {
2243
+ "nodetype" : "column",
2244
+ "moduleName" : "SONET-MIB",
2245
+ "oid" : "1.3.6.1.2.1.10.39.3.2.2.1.3",
2246
+ "status" : "current",
2247
+ "syntax" : {
2248
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2249
+ },
2250
+ "access" : "readonly",
2251
+ "description" :
2252
+ """The counter associated with the number of
2253
+ Far End Severely Errored Seconds
2254
+ encountered by a SONET/SDH VT interface
2255
+ in a particular 15-minute interval
2256
+ in the past 24 hours.""",
2257
+ }, # column
2258
+ "sonetFarEndVTIntervalCVs" : {
2259
+ "nodetype" : "column",
2260
+ "moduleName" : "SONET-MIB",
2261
+ "oid" : "1.3.6.1.2.1.10.39.3.2.2.1.4",
2262
+ "status" : "current",
2263
+ "syntax" : {
2264
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2265
+ },
2266
+ "access" : "readonly",
2267
+ "description" :
2268
+ """The counter associated with the number of
2269
+ Far End Coding Violations reported via
2270
+ the far end block error count
2271
+ encountered by a
2272
+ SONET/SDH VT interface in a
2273
+ particular 15-minute interval
2274
+ in the past 24 hours.""",
2275
+ }, # column
2276
+ "sonetFarEndVTIntervalUASs" : {
2277
+ "nodetype" : "column",
2278
+ "moduleName" : "SONET-MIB",
2279
+ "oid" : "1.3.6.1.2.1.10.39.3.2.2.1.5",
2280
+ "status" : "current",
2281
+ "syntax" : {
2282
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2283
+ },
2284
+ "access" : "readonly",
2285
+ "description" :
2286
+ """The counter associated with the number of
2287
+ Far End Unavailable Seconds
2288
+ encountered by a
2289
+ SONET/SDH VT interface in a
2290
+ particular 15-minute interval
2291
+ in the past 24 hours.""",
2292
+ }, # column
2293
+ "sonetFarEndVTIntervalValidData" : {
2294
+ "nodetype" : "column",
2295
+ "moduleName" : "SONET-MIB",
2296
+ "oid" : "1.3.6.1.2.1.10.39.3.2.2.1.6",
2297
+ "status" : "current",
2298
+ "syntax" : {
2299
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2300
+ },
2301
+ "access" : "readonly",
2302
+ "description" :
2303
+ """This variable indicates if the data for this
2304
+ interval is valid.""",
2305
+ }, # column
2306
+ "sonetConformance" : {
2307
+ "nodetype" : "node",
2308
+ "moduleName" : "SONET-MIB",
2309
+ "oid" : "1.3.6.1.2.1.10.39.4",
2310
+ }, # node
2311
+ "sonetGroups" : {
2312
+ "nodetype" : "node",
2313
+ "moduleName" : "SONET-MIB",
2314
+ "oid" : "1.3.6.1.2.1.10.39.4.1",
2315
+ }, # node
2316
+ "sonetCompliances" : {
2317
+ "nodetype" : "node",
2318
+ "moduleName" : "SONET-MIB",
2319
+ "oid" : "1.3.6.1.2.1.10.39.4.2",
2320
+ }, # node
2321
+ }, # nodes
2322
+
2323
+ "groups" : {
2324
+ "sonetMediumStuff" : {
2325
+ "nodetype" : "group",
2326
+ "moduleName" : "SONET-MIB",
2327
+ "oid" : "1.3.6.1.2.1.10.39.4.1.1",
2328
+ "status" : "deprecated",
2329
+ "members" : {
2330
+ "sonetMediumType" : {
2331
+ "nodetype" : "member",
2332
+ "module" : "SONET-MIB"
2333
+ },
2334
+ "sonetMediumTimeElapsed" : {
2335
+ "nodetype" : "member",
2336
+ "module" : "SONET-MIB"
2337
+ },
2338
+ "sonetMediumValidIntervals" : {
2339
+ "nodetype" : "member",
2340
+ "module" : "SONET-MIB"
2341
+ },
2342
+ "sonetMediumLineCoding" : {
2343
+ "nodetype" : "member",
2344
+ "module" : "SONET-MIB"
2345
+ },
2346
+ "sonetMediumLineType" : {
2347
+ "nodetype" : "member",
2348
+ "module" : "SONET-MIB"
2349
+ },
2350
+ "sonetMediumCircuitIdentifier" : {
2351
+ "nodetype" : "member",
2352
+ "module" : "SONET-MIB"
2353
+ },
2354
+ }, # members
2355
+ "description" :
2356
+ """A collection of objects providing configuration
2357
+ information applicable to all SONET/SDH interfaces.""",
2358
+ }, # group
2359
+ "sonetSectionStuff" : {
2360
+ "nodetype" : "group",
2361
+ "moduleName" : "SONET-MIB",
2362
+ "oid" : "1.3.6.1.2.1.10.39.4.1.2",
2363
+ "status" : "deprecated",
2364
+ "members" : {
2365
+ "sonetSectionCurrentStatus" : {
2366
+ "nodetype" : "member",
2367
+ "module" : "SONET-MIB"
2368
+ },
2369
+ "sonetSectionCurrentESs" : {
2370
+ "nodetype" : "member",
2371
+ "module" : "SONET-MIB"
2372
+ },
2373
+ "sonetSectionCurrentSESs" : {
2374
+ "nodetype" : "member",
2375
+ "module" : "SONET-MIB"
2376
+ },
2377
+ "sonetSectionCurrentSEFSs" : {
2378
+ "nodetype" : "member",
2379
+ "module" : "SONET-MIB"
2380
+ },
2381
+ "sonetSectionCurrentCVs" : {
2382
+ "nodetype" : "member",
2383
+ "module" : "SONET-MIB"
2384
+ },
2385
+ "sonetSectionIntervalESs" : {
2386
+ "nodetype" : "member",
2387
+ "module" : "SONET-MIB"
2388
+ },
2389
+ "sonetSectionIntervalSESs" : {
2390
+ "nodetype" : "member",
2391
+ "module" : "SONET-MIB"
2392
+ },
2393
+ "sonetSectionIntervalSEFSs" : {
2394
+ "nodetype" : "member",
2395
+ "module" : "SONET-MIB"
2396
+ },
2397
+ "sonetSectionIntervalCVs" : {
2398
+ "nodetype" : "member",
2399
+ "module" : "SONET-MIB"
2400
+ },
2401
+ }, # members
2402
+ "description" :
2403
+ """A collection of objects providing information
2404
+
2405
+
2406
+
2407
+ specific to SONET/SDH Section interfaces.""",
2408
+ }, # group
2409
+ "sonetLineStuff" : {
2410
+ "nodetype" : "group",
2411
+ "moduleName" : "SONET-MIB",
2412
+ "oid" : "1.3.6.1.2.1.10.39.4.1.3",
2413
+ "status" : "deprecated",
2414
+ "members" : {
2415
+ "sonetLineCurrentStatus" : {
2416
+ "nodetype" : "member",
2417
+ "module" : "SONET-MIB"
2418
+ },
2419
+ "sonetLineCurrentESs" : {
2420
+ "nodetype" : "member",
2421
+ "module" : "SONET-MIB"
2422
+ },
2423
+ "sonetLineCurrentSESs" : {
2424
+ "nodetype" : "member",
2425
+ "module" : "SONET-MIB"
2426
+ },
2427
+ "sonetLineCurrentCVs" : {
2428
+ "nodetype" : "member",
2429
+ "module" : "SONET-MIB"
2430
+ },
2431
+ "sonetLineCurrentUASs" : {
2432
+ "nodetype" : "member",
2433
+ "module" : "SONET-MIB"
2434
+ },
2435
+ "sonetLineIntervalESs" : {
2436
+ "nodetype" : "member",
2437
+ "module" : "SONET-MIB"
2438
+ },
2439
+ "sonetLineIntervalSESs" : {
2440
+ "nodetype" : "member",
2441
+ "module" : "SONET-MIB"
2442
+ },
2443
+ "sonetLineIntervalCVs" : {
2444
+ "nodetype" : "member",
2445
+ "module" : "SONET-MIB"
2446
+ },
2447
+ "sonetLineIntervalUASs" : {
2448
+ "nodetype" : "member",
2449
+ "module" : "SONET-MIB"
2450
+ },
2451
+ }, # members
2452
+ "description" :
2453
+ """A collection of objects providing information
2454
+ specific to SONET/SDH Line interfaces.""",
2455
+ }, # group
2456
+ "sonetFarEndLineStuff" : {
2457
+ "nodetype" : "group",
2458
+ "moduleName" : "SONET-MIB",
2459
+ "oid" : "1.3.6.1.2.1.10.39.4.1.4",
2460
+ "status" : "deprecated",
2461
+ "members" : {
2462
+ "sonetFarEndLineCurrentESs" : {
2463
+ "nodetype" : "member",
2464
+ "module" : "SONET-MIB"
2465
+ },
2466
+ "sonetFarEndLineCurrentSESs" : {
2467
+ "nodetype" : "member",
2468
+ "module" : "SONET-MIB"
2469
+ },
2470
+ "sonetFarEndLineCurrentCVs" : {
2471
+ "nodetype" : "member",
2472
+ "module" : "SONET-MIB"
2473
+ },
2474
+ "sonetFarEndLineCurrentUASs" : {
2475
+ "nodetype" : "member",
2476
+ "module" : "SONET-MIB"
2477
+ },
2478
+ "sonetFarEndLineIntervalESs" : {
2479
+ "nodetype" : "member",
2480
+ "module" : "SONET-MIB"
2481
+ },
2482
+ "sonetFarEndLineIntervalSESs" : {
2483
+ "nodetype" : "member",
2484
+ "module" : "SONET-MIB"
2485
+ },
2486
+ "sonetFarEndLineIntervalCVs" : {
2487
+ "nodetype" : "member",
2488
+ "module" : "SONET-MIB"
2489
+ },
2490
+ "sonetFarEndLineIntervalUASs" : {
2491
+ "nodetype" : "member",
2492
+ "module" : "SONET-MIB"
2493
+ },
2494
+ }, # members
2495
+ "description" :
2496
+ """A collection of objects providing information
2497
+ specific to SONET/SDH Line interfaces,
2498
+ and maintaining Line Far End information.""",
2499
+ }, # group
2500
+ "sonetPathStuff" : {
2501
+ "nodetype" : "group",
2502
+ "moduleName" : "SONET-MIB",
2503
+ "oid" : "1.3.6.1.2.1.10.39.4.1.5",
2504
+ "status" : "deprecated",
2505
+ "members" : {
2506
+ "sonetPathCurrentWidth" : {
2507
+ "nodetype" : "member",
2508
+ "module" : "SONET-MIB"
2509
+ },
2510
+ "sonetPathCurrentStatus" : {
2511
+ "nodetype" : "member",
2512
+ "module" : "SONET-MIB"
2513
+ },
2514
+ "sonetPathCurrentESs" : {
2515
+ "nodetype" : "member",
2516
+ "module" : "SONET-MIB"
2517
+ },
2518
+ "sonetPathCurrentSESs" : {
2519
+ "nodetype" : "member",
2520
+ "module" : "SONET-MIB"
2521
+ },
2522
+ "sonetPathCurrentCVs" : {
2523
+ "nodetype" : "member",
2524
+ "module" : "SONET-MIB"
2525
+ },
2526
+ "sonetPathCurrentUASs" : {
2527
+ "nodetype" : "member",
2528
+ "module" : "SONET-MIB"
2529
+ },
2530
+ "sonetPathIntervalESs" : {
2531
+ "nodetype" : "member",
2532
+ "module" : "SONET-MIB"
2533
+ },
2534
+ "sonetPathIntervalSESs" : {
2535
+ "nodetype" : "member",
2536
+ "module" : "SONET-MIB"
2537
+ },
2538
+ "sonetPathIntervalCVs" : {
2539
+ "nodetype" : "member",
2540
+ "module" : "SONET-MIB"
2541
+ },
2542
+ "sonetPathIntervalUASs" : {
2543
+ "nodetype" : "member",
2544
+ "module" : "SONET-MIB"
2545
+ },
2546
+ }, # members
2547
+ "description" :
2548
+ """A collection of objects providing information
2549
+ specific to SONET/SDH Path interfaces.""",
2550
+ }, # group
2551
+ "sonetFarEndPathStuff" : {
2552
+ "nodetype" : "group",
2553
+ "moduleName" : "SONET-MIB",
2554
+ "oid" : "1.3.6.1.2.1.10.39.4.1.6",
2555
+ "status" : "deprecated",
2556
+ "members" : {
2557
+ "sonetFarEndPathCurrentESs" : {
2558
+ "nodetype" : "member",
2559
+ "module" : "SONET-MIB"
2560
+ },
2561
+ "sonetFarEndPathCurrentSESs" : {
2562
+ "nodetype" : "member",
2563
+ "module" : "SONET-MIB"
2564
+ },
2565
+ "sonetFarEndPathCurrentCVs" : {
2566
+ "nodetype" : "member",
2567
+ "module" : "SONET-MIB"
2568
+ },
2569
+ "sonetFarEndPathCurrentUASs" : {
2570
+ "nodetype" : "member",
2571
+ "module" : "SONET-MIB"
2572
+ },
2573
+ "sonetFarEndPathIntervalESs" : {
2574
+ "nodetype" : "member",
2575
+ "module" : "SONET-MIB"
2576
+ },
2577
+ "sonetFarEndPathIntervalSESs" : {
2578
+ "nodetype" : "member",
2579
+ "module" : "SONET-MIB"
2580
+ },
2581
+ "sonetFarEndPathIntervalCVs" : {
2582
+ "nodetype" : "member",
2583
+ "module" : "SONET-MIB"
2584
+ },
2585
+ "sonetFarEndPathIntervalUASs" : {
2586
+ "nodetype" : "member",
2587
+ "module" : "SONET-MIB"
2588
+ },
2589
+ }, # members
2590
+ "description" :
2591
+ """A collection of objects providing information
2592
+ specific to SONET/SDH Path interfaces,
2593
+ and maintaining Path Far End information.""",
2594
+ }, # group
2595
+ "sonetVTStuff" : {
2596
+ "nodetype" : "group",
2597
+ "moduleName" : "SONET-MIB",
2598
+ "oid" : "1.3.6.1.2.1.10.39.4.1.7",
2599
+ "status" : "deprecated",
2600
+ "members" : {
2601
+ "sonetVTCurrentWidth" : {
2602
+ "nodetype" : "member",
2603
+ "module" : "SONET-MIB"
2604
+ },
2605
+ "sonetVTCurrentStatus" : {
2606
+ "nodetype" : "member",
2607
+ "module" : "SONET-MIB"
2608
+ },
2609
+ "sonetVTCurrentESs" : {
2610
+ "nodetype" : "member",
2611
+ "module" : "SONET-MIB"
2612
+ },
2613
+ "sonetVTCurrentSESs" : {
2614
+ "nodetype" : "member",
2615
+ "module" : "SONET-MIB"
2616
+ },
2617
+ "sonetVTCurrentCVs" : {
2618
+ "nodetype" : "member",
2619
+ "module" : "SONET-MIB"
2620
+ },
2621
+ "sonetVTCurrentUASs" : {
2622
+ "nodetype" : "member",
2623
+ "module" : "SONET-MIB"
2624
+ },
2625
+ "sonetVTIntervalESs" : {
2626
+ "nodetype" : "member",
2627
+ "module" : "SONET-MIB"
2628
+ },
2629
+ "sonetVTIntervalSESs" : {
2630
+ "nodetype" : "member",
2631
+ "module" : "SONET-MIB"
2632
+ },
2633
+ "sonetVTIntervalCVs" : {
2634
+ "nodetype" : "member",
2635
+ "module" : "SONET-MIB"
2636
+ },
2637
+ "sonetVTIntervalUASs" : {
2638
+ "nodetype" : "member",
2639
+ "module" : "SONET-MIB"
2640
+ },
2641
+ }, # members
2642
+ "description" :
2643
+ """A collection of objects providing information
2644
+ specific to SONET/SDH VT interfaces.""",
2645
+ }, # group
2646
+ "sonetFarEndVTStuff" : {
2647
+ "nodetype" : "group",
2648
+ "moduleName" : "SONET-MIB",
2649
+ "oid" : "1.3.6.1.2.1.10.39.4.1.8",
2650
+ "status" : "deprecated",
2651
+ "members" : {
2652
+ "sonetFarEndVTCurrentESs" : {
2653
+ "nodetype" : "member",
2654
+ "module" : "SONET-MIB"
2655
+ },
2656
+ "sonetFarEndVTCurrentSESs" : {
2657
+ "nodetype" : "member",
2658
+ "module" : "SONET-MIB"
2659
+ },
2660
+ "sonetFarEndVTCurrentCVs" : {
2661
+ "nodetype" : "member",
2662
+ "module" : "SONET-MIB"
2663
+ },
2664
+ "sonetFarEndVTCurrentUASs" : {
2665
+ "nodetype" : "member",
2666
+ "module" : "SONET-MIB"
2667
+ },
2668
+ "sonetFarEndVTIntervalESs" : {
2669
+ "nodetype" : "member",
2670
+ "module" : "SONET-MIB"
2671
+ },
2672
+ "sonetFarEndVTIntervalSESs" : {
2673
+ "nodetype" : "member",
2674
+ "module" : "SONET-MIB"
2675
+ },
2676
+ "sonetFarEndVTIntervalCVs" : {
2677
+ "nodetype" : "member",
2678
+ "module" : "SONET-MIB"
2679
+ },
2680
+ "sonetFarEndVTIntervalUASs" : {
2681
+ "nodetype" : "member",
2682
+ "module" : "SONET-MIB"
2683
+ },
2684
+ }, # members
2685
+ "description" :
2686
+ """A collection of objects providing information
2687
+ specific to SONET/SDH VT interfaces,
2688
+ and maintaining VT Far End information.""",
2689
+ }, # group
2690
+ "sonetMediumStuff2" : {
2691
+ "nodetype" : "group",
2692
+ "moduleName" : "SONET-MIB",
2693
+ "oid" : "1.3.6.1.2.1.10.39.4.1.9",
2694
+ "status" : "current",
2695
+ "members" : {
2696
+ "sonetMediumType" : {
2697
+ "nodetype" : "member",
2698
+ "module" : "SONET-MIB"
2699
+ },
2700
+ "sonetMediumTimeElapsed" : {
2701
+ "nodetype" : "member",
2702
+ "module" : "SONET-MIB"
2703
+ },
2704
+ "sonetMediumValidIntervals" : {
2705
+ "nodetype" : "member",
2706
+ "module" : "SONET-MIB"
2707
+ },
2708
+ "sonetMediumLineCoding" : {
2709
+ "nodetype" : "member",
2710
+ "module" : "SONET-MIB"
2711
+ },
2712
+ "sonetMediumLineType" : {
2713
+ "nodetype" : "member",
2714
+ "module" : "SONET-MIB"
2715
+ },
2716
+ "sonetMediumCircuitIdentifier" : {
2717
+ "nodetype" : "member",
2718
+ "module" : "SONET-MIB"
2719
+ },
2720
+ "sonetMediumInvalidIntervals" : {
2721
+ "nodetype" : "member",
2722
+ "module" : "SONET-MIB"
2723
+ },
2724
+ "sonetMediumLoopbackConfig" : {
2725
+ "nodetype" : "member",
2726
+ "module" : "SONET-MIB"
2727
+ },
2728
+ "sonetSESthresholdSet" : {
2729
+ "nodetype" : "member",
2730
+ "module" : "SONET-MIB"
2731
+ },
2732
+ }, # members
2733
+ "description" :
2734
+ """A collection of objects providing configuration
2735
+ information applicable to all SONET/SDH interfaces.""",
2736
+ }, # group
2737
+ "sonetSectionStuff2" : {
2738
+ "nodetype" : "group",
2739
+ "moduleName" : "SONET-MIB",
2740
+ "oid" : "1.3.6.1.2.1.10.39.4.1.10",
2741
+ "status" : "current",
2742
+ "members" : {
2743
+ "sonetSectionCurrentStatus" : {
2744
+ "nodetype" : "member",
2745
+ "module" : "SONET-MIB"
2746
+ },
2747
+ "sonetSectionCurrentESs" : {
2748
+ "nodetype" : "member",
2749
+ "module" : "SONET-MIB"
2750
+ },
2751
+ "sonetSectionCurrentSESs" : {
2752
+ "nodetype" : "member",
2753
+ "module" : "SONET-MIB"
2754
+ },
2755
+ "sonetSectionCurrentSEFSs" : {
2756
+ "nodetype" : "member",
2757
+ "module" : "SONET-MIB"
2758
+ },
2759
+ "sonetSectionCurrentCVs" : {
2760
+ "nodetype" : "member",
2761
+ "module" : "SONET-MIB"
2762
+ },
2763
+ "sonetSectionIntervalESs" : {
2764
+ "nodetype" : "member",
2765
+ "module" : "SONET-MIB"
2766
+ },
2767
+ "sonetSectionIntervalSESs" : {
2768
+ "nodetype" : "member",
2769
+ "module" : "SONET-MIB"
2770
+ },
2771
+ "sonetSectionIntervalSEFSs" : {
2772
+ "nodetype" : "member",
2773
+ "module" : "SONET-MIB"
2774
+ },
2775
+ "sonetSectionIntervalCVs" : {
2776
+ "nodetype" : "member",
2777
+ "module" : "SONET-MIB"
2778
+ },
2779
+ "sonetSectionIntervalValidData" : {
2780
+ "nodetype" : "member",
2781
+ "module" : "SONET-MIB"
2782
+ },
2783
+ }, # members
2784
+ "description" :
2785
+ """A collection of objects providing information
2786
+ specific to SONET/SDH Section interfaces.""",
2787
+ }, # group
2788
+ "sonetLineStuff2" : {
2789
+ "nodetype" : "group",
2790
+ "moduleName" : "SONET-MIB",
2791
+ "oid" : "1.3.6.1.2.1.10.39.4.1.11",
2792
+ "status" : "current",
2793
+ "members" : {
2794
+ "sonetLineCurrentStatus" : {
2795
+ "nodetype" : "member",
2796
+ "module" : "SONET-MIB"
2797
+ },
2798
+ "sonetLineCurrentESs" : {
2799
+ "nodetype" : "member",
2800
+ "module" : "SONET-MIB"
2801
+ },
2802
+ "sonetLineCurrentSESs" : {
2803
+ "nodetype" : "member",
2804
+ "module" : "SONET-MIB"
2805
+ },
2806
+ "sonetLineCurrentCVs" : {
2807
+ "nodetype" : "member",
2808
+ "module" : "SONET-MIB"
2809
+ },
2810
+ "sonetLineCurrentUASs" : {
2811
+ "nodetype" : "member",
2812
+ "module" : "SONET-MIB"
2813
+ },
2814
+ "sonetLineIntervalESs" : {
2815
+ "nodetype" : "member",
2816
+ "module" : "SONET-MIB"
2817
+ },
2818
+ "sonetLineIntervalSESs" : {
2819
+ "nodetype" : "member",
2820
+ "module" : "SONET-MIB"
2821
+ },
2822
+ "sonetLineIntervalCVs" : {
2823
+ "nodetype" : "member",
2824
+ "module" : "SONET-MIB"
2825
+ },
2826
+ "sonetLineIntervalUASs" : {
2827
+ "nodetype" : "member",
2828
+ "module" : "SONET-MIB"
2829
+ },
2830
+ "sonetLineIntervalValidData" : {
2831
+ "nodetype" : "member",
2832
+ "module" : "SONET-MIB"
2833
+ },
2834
+ }, # members
2835
+ "description" :
2836
+ """A collection of objects providing information
2837
+ specific to SONET/SDH Line interfaces.""",
2838
+ }, # group
2839
+ "sonetPathStuff2" : {
2840
+ "nodetype" : "group",
2841
+ "moduleName" : "SONET-MIB",
2842
+ "oid" : "1.3.6.1.2.1.10.39.4.1.12",
2843
+ "status" : "current",
2844
+ "members" : {
2845
+ "sonetPathCurrentWidth" : {
2846
+ "nodetype" : "member",
2847
+ "module" : "SONET-MIB"
2848
+ },
2849
+ "sonetPathCurrentStatus" : {
2850
+ "nodetype" : "member",
2851
+ "module" : "SONET-MIB"
2852
+ },
2853
+ "sonetPathCurrentESs" : {
2854
+ "nodetype" : "member",
2855
+ "module" : "SONET-MIB"
2856
+ },
2857
+ "sonetPathCurrentSESs" : {
2858
+ "nodetype" : "member",
2859
+ "module" : "SONET-MIB"
2860
+ },
2861
+ "sonetPathCurrentCVs" : {
2862
+ "nodetype" : "member",
2863
+ "module" : "SONET-MIB"
2864
+ },
2865
+ "sonetPathCurrentUASs" : {
2866
+ "nodetype" : "member",
2867
+ "module" : "SONET-MIB"
2868
+ },
2869
+ "sonetPathIntervalESs" : {
2870
+ "nodetype" : "member",
2871
+ "module" : "SONET-MIB"
2872
+ },
2873
+ "sonetPathIntervalSESs" : {
2874
+ "nodetype" : "member",
2875
+ "module" : "SONET-MIB"
2876
+ },
2877
+ "sonetPathIntervalCVs" : {
2878
+ "nodetype" : "member",
2879
+ "module" : "SONET-MIB"
2880
+ },
2881
+ "sonetPathIntervalUASs" : {
2882
+ "nodetype" : "member",
2883
+ "module" : "SONET-MIB"
2884
+ },
2885
+ "sonetPathIntervalValidData" : {
2886
+ "nodetype" : "member",
2887
+ "module" : "SONET-MIB"
2888
+ },
2889
+ }, # members
2890
+ "description" :
2891
+ """A collection of objects providing information
2892
+ specific to SONET/SDH Path interfaces.""",
2893
+ }, # group
2894
+ "sonetVTStuff2" : {
2895
+ "nodetype" : "group",
2896
+ "moduleName" : "SONET-MIB",
2897
+ "oid" : "1.3.6.1.2.1.10.39.4.1.13",
2898
+ "status" : "current",
2899
+ "members" : {
2900
+ "sonetVTCurrentWidth" : {
2901
+ "nodetype" : "member",
2902
+ "module" : "SONET-MIB"
2903
+ },
2904
+ "sonetVTCurrentStatus" : {
2905
+ "nodetype" : "member",
2906
+ "module" : "SONET-MIB"
2907
+ },
2908
+ "sonetVTCurrentESs" : {
2909
+ "nodetype" : "member",
2910
+ "module" : "SONET-MIB"
2911
+ },
2912
+ "sonetVTCurrentSESs" : {
2913
+ "nodetype" : "member",
2914
+ "module" : "SONET-MIB"
2915
+ },
2916
+ "sonetVTCurrentCVs" : {
2917
+ "nodetype" : "member",
2918
+ "module" : "SONET-MIB"
2919
+ },
2920
+ "sonetVTCurrentUASs" : {
2921
+ "nodetype" : "member",
2922
+ "module" : "SONET-MIB"
2923
+ },
2924
+ "sonetVTIntervalESs" : {
2925
+ "nodetype" : "member",
2926
+ "module" : "SONET-MIB"
2927
+ },
2928
+ "sonetVTIntervalSESs" : {
2929
+ "nodetype" : "member",
2930
+ "module" : "SONET-MIB"
2931
+ },
2932
+ "sonetVTIntervalCVs" : {
2933
+ "nodetype" : "member",
2934
+ "module" : "SONET-MIB"
2935
+ },
2936
+ "sonetVTIntervalUASs" : {
2937
+ "nodetype" : "member",
2938
+ "module" : "SONET-MIB"
2939
+ },
2940
+ "sonetVTIntervalValidData" : {
2941
+ "nodetype" : "member",
2942
+ "module" : "SONET-MIB"
2943
+ },
2944
+ }, # members
2945
+ "description" :
2946
+ """A collection of objects providing information
2947
+ specific to SONET/SDH VT interfaces.""",
2948
+ }, # group
2949
+ "sonetFarEndLineStuff2" : {
2950
+ "nodetype" : "group",
2951
+ "moduleName" : "SONET-MIB",
2952
+ "oid" : "1.3.6.1.2.1.10.39.4.1.14",
2953
+ "status" : "current",
2954
+ "members" : {
2955
+ "sonetFarEndLineCurrentESs" : {
2956
+ "nodetype" : "member",
2957
+ "module" : "SONET-MIB"
2958
+ },
2959
+ "sonetFarEndLineCurrentSESs" : {
2960
+ "nodetype" : "member",
2961
+ "module" : "SONET-MIB"
2962
+ },
2963
+ "sonetFarEndLineCurrentCVs" : {
2964
+ "nodetype" : "member",
2965
+ "module" : "SONET-MIB"
2966
+ },
2967
+ "sonetFarEndLineCurrentUASs" : {
2968
+ "nodetype" : "member",
2969
+ "module" : "SONET-MIB"
2970
+ },
2971
+ "sonetFarEndLineIntervalESs" : {
2972
+ "nodetype" : "member",
2973
+ "module" : "SONET-MIB"
2974
+ },
2975
+ "sonetFarEndLineIntervalSESs" : {
2976
+ "nodetype" : "member",
2977
+ "module" : "SONET-MIB"
2978
+ },
2979
+ "sonetFarEndLineIntervalCVs" : {
2980
+ "nodetype" : "member",
2981
+ "module" : "SONET-MIB"
2982
+ },
2983
+ "sonetFarEndLineIntervalUASs" : {
2984
+ "nodetype" : "member",
2985
+ "module" : "SONET-MIB"
2986
+ },
2987
+ "sonetFarEndLineIntervalValidData" : {
2988
+ "nodetype" : "member",
2989
+ "module" : "SONET-MIB"
2990
+ },
2991
+ }, # members
2992
+ "description" :
2993
+ """A collection of objects providing information
2994
+ specific to SONET/SDH Line interfaces,
2995
+ and maintaining Line Far End information.""",
2996
+ }, # group
2997
+ "sonetFarEndPathStuff2" : {
2998
+ "nodetype" : "group",
2999
+ "moduleName" : "SONET-MIB",
3000
+ "oid" : "1.3.6.1.2.1.10.39.4.1.15",
3001
+ "status" : "current",
3002
+ "members" : {
3003
+ "sonetFarEndPathCurrentESs" : {
3004
+ "nodetype" : "member",
3005
+ "module" : "SONET-MIB"
3006
+ },
3007
+ "sonetFarEndPathCurrentSESs" : {
3008
+ "nodetype" : "member",
3009
+ "module" : "SONET-MIB"
3010
+ },
3011
+ "sonetFarEndPathCurrentCVs" : {
3012
+ "nodetype" : "member",
3013
+ "module" : "SONET-MIB"
3014
+ },
3015
+ "sonetFarEndPathCurrentUASs" : {
3016
+ "nodetype" : "member",
3017
+ "module" : "SONET-MIB"
3018
+ },
3019
+ "sonetFarEndPathIntervalESs" : {
3020
+ "nodetype" : "member",
3021
+ "module" : "SONET-MIB"
3022
+ },
3023
+ "sonetFarEndPathIntervalSESs" : {
3024
+ "nodetype" : "member",
3025
+ "module" : "SONET-MIB"
3026
+ },
3027
+ "sonetFarEndPathIntervalCVs" : {
3028
+ "nodetype" : "member",
3029
+ "module" : "SONET-MIB"
3030
+ },
3031
+ "sonetFarEndPathIntervalUASs" : {
3032
+ "nodetype" : "member",
3033
+ "module" : "SONET-MIB"
3034
+ },
3035
+ "sonetFarEndPathIntervalValidData" : {
3036
+ "nodetype" : "member",
3037
+ "module" : "SONET-MIB"
3038
+ },
3039
+ }, # members
3040
+ "description" :
3041
+ """A collection of objects providing information
3042
+ specific to SONET/SDH Path interfaces,
3043
+ and maintaining Path Far End information.""",
3044
+ }, # group
3045
+ "sonetFarEndVTStuff2" : {
3046
+ "nodetype" : "group",
3047
+ "moduleName" : "SONET-MIB",
3048
+ "oid" : "1.3.6.1.2.1.10.39.4.1.16",
3049
+ "status" : "current",
3050
+ "members" : {
3051
+ "sonetFarEndVTCurrentESs" : {
3052
+ "nodetype" : "member",
3053
+ "module" : "SONET-MIB"
3054
+ },
3055
+ "sonetFarEndVTCurrentSESs" : {
3056
+ "nodetype" : "member",
3057
+ "module" : "SONET-MIB"
3058
+ },
3059
+ "sonetFarEndVTCurrentCVs" : {
3060
+ "nodetype" : "member",
3061
+ "module" : "SONET-MIB"
3062
+ },
3063
+ "sonetFarEndVTCurrentUASs" : {
3064
+ "nodetype" : "member",
3065
+ "module" : "SONET-MIB"
3066
+ },
3067
+ "sonetFarEndVTIntervalESs" : {
3068
+ "nodetype" : "member",
3069
+ "module" : "SONET-MIB"
3070
+ },
3071
+ "sonetFarEndVTIntervalSESs" : {
3072
+ "nodetype" : "member",
3073
+ "module" : "SONET-MIB"
3074
+ },
3075
+ "sonetFarEndVTIntervalCVs" : {
3076
+ "nodetype" : "member",
3077
+ "module" : "SONET-MIB"
3078
+ },
3079
+ "sonetFarEndVTIntervalUASs" : {
3080
+ "nodetype" : "member",
3081
+ "module" : "SONET-MIB"
3082
+ },
3083
+ "sonetFarEndVTIntervalValidData" : {
3084
+ "nodetype" : "member",
3085
+ "module" : "SONET-MIB"
3086
+ },
3087
+ }, # members
3088
+ "description" :
3089
+ """A collection of objects providing information
3090
+ specific to SONET/SDH VT interfaces,
3091
+ and maintaining VT Far End information.""",
3092
+ }, # group
3093
+ }, # groups
3094
+
3095
+ "compliances" : {
3096
+ "sonetCompliance" : {
3097
+ "nodetype" : "compliance",
3098
+ "moduleName" : "SONET-MIB",
3099
+ "oid" : "1.3.6.1.2.1.10.39.4.2.1",
3100
+ "status" : "deprecated",
3101
+ "description" :
3102
+ """The compliance statement for SONET/SDH interfaces.""",
3103
+ "requires" : {
3104
+ "sonetMediumStuff" : {
3105
+ "nodetype" : "mandatory",
3106
+ "module" : "SONET-MIB"
3107
+ },
3108
+ "sonetSectionStuff" : {
3109
+ "nodetype" : "mandatory",
3110
+ "module" : "SONET-MIB"
3111
+ },
3112
+ "sonetLineStuff" : {
3113
+ "nodetype" : "optional",
3114
+ "module" : "SONET-MIB",
3115
+ "description" :
3116
+ """Implementation of this group is mandatory for all
3117
+ SONET/SDH systems that terminate SONET/SDH Lines,
3118
+ Paths or Virtual Tributaries.""",
3119
+ },
3120
+ "sonetFarEndLineStuff" : {
3121
+ "nodetype" : "optional",
3122
+ "module" : "SONET-MIB",
3123
+ "description" :
3124
+ """Implementation of this group is optional for all
3125
+ SONET/SDH systems that terminate SONET/SDH Lines,
3126
+ Paths or Virtual Tributaries, and that
3127
+ provide for a far end block error (FEBE)
3128
+ information at the SONET/SDH Line Layer.""",
3129
+ },
3130
+ "sonetPathStuff" : {
3131
+ "nodetype" : "optional",
3132
+ "module" : "SONET-MIB",
3133
+ "description" :
3134
+ """Implementation of this group is mandatory for all
3135
+ SONET/SDH systems that terminate SONET/SDH
3136
+ Paths or Virtual Tributaries.""",
3137
+ },
3138
+ "sonetFarEndPathStuff" : {
3139
+ "nodetype" : "optional",
3140
+ "module" : "SONET-MIB",
3141
+ "description" :
3142
+ """Implementation of this group is optional for all
3143
+ SONET/SDH systems that terminate SONET/SDH
3144
+ Paths or Virtual Tributaries, and that process
3145
+ Far End information.""",
3146
+ },
3147
+ "sonetVTStuff" : {
3148
+ "nodetype" : "optional",
3149
+ "module" : "SONET-MIB",
3150
+ "description" :
3151
+ """Implementation of this group is mandatory for all
3152
+ SONET/SDH systems that terminate SONET/SDH Virtual
3153
+ Tributaries.""",
3154
+ },
3155
+ "sonetFarEndVTStuff" : {
3156
+ "nodetype" : "optional",
3157
+ "module" : "SONET-MIB",
3158
+ "description" :
3159
+ """Implementation of this group is optional for all
3160
+ SONET/SDH systems that terminate the SONET/SDH
3161
+ floating Virtual Tributaries, and that process
3162
+ Far End information.""",
3163
+ },
3164
+ }, # requires
3165
+ "refinements" : {
3166
+ "sonetPathCurrentWidth" : {
3167
+ "module" : "SONET-MIB",
3168
+ "access" : "readonly",
3169
+ "description" :
3170
+ """Write access is not required.""",
3171
+ },
3172
+ "sonetVTCurrentWidth" : {
3173
+ "module" : "SONET-MIB",
3174
+ "access" : "readonly",
3175
+ "description" :
3176
+ """Write access is not required.""",
3177
+ },
3178
+ }, # refinements
3179
+
3180
+ }, # compliance
3181
+ "sonetCompliance2" : {
3182
+ "nodetype" : "compliance",
3183
+ "moduleName" : "SONET-MIB",
3184
+ "oid" : "1.3.6.1.2.1.10.39.4.2.2",
3185
+ "status" : "current",
3186
+ "description" :
3187
+ """The compliance statement for SONET/SDH interfaces.""",
3188
+ "requires" : {
3189
+ "sonetMediumStuff2" : {
3190
+ "nodetype" : "mandatory",
3191
+ "module" : "SONET-MIB"
3192
+ },
3193
+ "sonetSectionStuff2" : {
3194
+ "nodetype" : "mandatory",
3195
+ "module" : "SONET-MIB"
3196
+ },
3197
+ "sonetLineStuff2" : {
3198
+ "nodetype" : "optional",
3199
+ "module" : "SONET-MIB",
3200
+ "description" :
3201
+ """Implementation of this group is mandatory for all
3202
+ SONET/SDH systems that terminate SONET/SDH Lines,
3203
+ Paths or Virtual Tributaries.""",
3204
+ },
3205
+ "sonetFarEndLineStuff2" : {
3206
+ "nodetype" : "optional",
3207
+ "module" : "SONET-MIB",
3208
+ "description" :
3209
+ """Implementation of this group is optional for all
3210
+ SONET/SDH systems that terminate SONET/SDH Lines,
3211
+ Paths or Virtual Tributaries, and that
3212
+ provide for a far end block error (FEBE)
3213
+ information at the SONET/SDH Line Layer.""",
3214
+ },
3215
+ "sonetPathStuff2" : {
3216
+ "nodetype" : "optional",
3217
+ "module" : "SONET-MIB",
3218
+ "description" :
3219
+ """Implementation of this group is mandatory for all
3220
+ SONET/SDH systems that terminate SONET/SDH
3221
+ Paths or Virtual Tributaries.""",
3222
+ },
3223
+ "sonetFarEndPathStuff2" : {
3224
+ "nodetype" : "optional",
3225
+ "module" : "SONET-MIB",
3226
+ "description" :
3227
+ """Implementation of this group is optional for all
3228
+ SONET/SDH systems that terminate SONET/SDH
3229
+ Paths or Virtual Tributaries, and that process
3230
+ Far End information.""",
3231
+ },
3232
+ "sonetVTStuff2" : {
3233
+ "nodetype" : "optional",
3234
+ "module" : "SONET-MIB",
3235
+ "description" :
3236
+ """Implementation of this group is mandatory for all
3237
+
3238
+
3239
+
3240
+ SONET/SDH systems that terminate SONET/SDH Virtual
3241
+ Tributaries.""",
3242
+ },
3243
+ "sonetFarEndVTStuff2" : {
3244
+ "nodetype" : "optional",
3245
+ "module" : "SONET-MIB",
3246
+ "description" :
3247
+ """Implementation of this group is optional for all
3248
+ SONET/SDH systems that terminate the SONET/SDH
3249
+ floating Virtual Tributaries, and that process
3250
+ Far End information.""",
3251
+ },
3252
+ }, # requires
3253
+ "refinements" : {
3254
+ "sonetMediumType" : {
3255
+ "module" : "SONET-MIB",
3256
+ "access" : "readonly",
3257
+ "description" :
3258
+ """Write access is not required.""",
3259
+ },
3260
+ "sonetMediumLineCoding" : {
3261
+ "module" : "SONET-MIB",
3262
+ "access" : "readonly",
3263
+ "description" :
3264
+ """Write access is not required.""",
3265
+ },
3266
+ "sonetMediumLineType" : {
3267
+ "module" : "SONET-MIB",
3268
+ "access" : "readonly",
3269
+ "description" :
3270
+ """Write access is not required.""",
3271
+ },
3272
+ "sonetMediumCircuitIdentifier" : {
3273
+ "module" : "SONET-MIB",
3274
+ "access" : "readonly",
3275
+ "description" :
3276
+ """Write access is not required.""",
3277
+ },
3278
+ "sonetMediumLoopbackConfig" : {
3279
+ "module" : "SONET-MIB",
3280
+ "access" : "readonly",
3281
+ "description" :
3282
+ """Write access is not required.""",
3283
+ },
3284
+ "sonetSESthresholdSet" : {
3285
+ "module" : "SONET-MIB",
3286
+ "access" : "readonly",
3287
+ "description" :
3288
+ """Write access is not required, and only one
3289
+ of the enumerated values need be supported.""",
3290
+ },
3291
+ "sonetPathCurrentWidth" : {
3292
+ "module" : "SONET-MIB",
3293
+ "access" : "readonly",
3294
+ "description" :
3295
+ """Write access is not required.""",
3296
+ },
3297
+ "sonetVTCurrentWidth" : {
3298
+ "module" : "SONET-MIB",
3299
+ "access" : "readonly",
3300
+ "description" :
3301
+ """Write access is not required.""",
3302
+ },
3303
+ }, # refinements
3304
+
3305
+ }, # compliance
3306
+ }, # compliances
3307
+
3308
+ }