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,2430 @@
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 APS-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/APS-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "APS-MIB",
11
+
12
+ "APS-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF AToMMIB Working Group""",
17
+ "contact" :
18
+ """ Jim Kuhfeld
19
+ Postal: RedBack Networks. Inc.
20
+ 300 Holger Way
21
+ San Jose, CA 95134-1362
22
+ Tel: +1 408 750 5465
23
+ Email: jkuhfeld@redback.com
24
+
25
+ Jeff Johnson
26
+ Postal: RedBack Networks. Inc.
27
+ 300 Holger Way
28
+ San Jose, CA 95134-1362
29
+ Tel: +1 408 750 5460
30
+ Email: jeff@redback.com
31
+
32
+ Michael Thatcher
33
+ Postal: RedBack Networks. Inc.
34
+ 300 Holger Way
35
+ San Jose, CA 95134-1362
36
+ Tel: +1 408 750 5449
37
+ Email: thatcher@redback.com""",
38
+ "description" :
39
+ """This management information module supports the configuration
40
+ and management of SONET linear APS groups. The definitions and
41
+ descriptions used in this MIB have been derived from
42
+ Synchronous Optical Network (SONET) Transport Systems:
43
+ Common Generic Criteria, GR-253-CORE Issue 3, September 2000,
44
+ section 5.3. The MIB is also consistent with the Multiplex
45
+ Section Protection (MSP) protocol as specified in ITU-T
46
+ Recommendation G.783, Characteristics of synchronous digital
47
+ hierarchy (SDH) equipment function blocks, Annex A and B.
48
+
49
+ Copyright (C) The Internet Society (2003). This version of
50
+ this MIB module is part of RFC 3498; see the RFC itself for
51
+ full legal notices.""",
52
+ "revisions" : (
53
+ {
54
+ "date" : "2003-02-28 00:00",
55
+ "description" :
56
+ """Initial version of this MIB, published as RFC 3498.""",
57
+ },
58
+ ),
59
+ "identity node" : "apsMIB",
60
+ },
61
+
62
+ "imports" : (
63
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
64
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
65
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
66
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
67
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
68
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
69
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
70
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
71
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
72
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
73
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
74
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
75
+ {"module" : "IF-MIB", "name" : "ifIndex"},
76
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
77
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
78
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
79
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
80
+ ),
81
+
82
+ "typedefs" : {
83
+ "ApsK1K2" : {
84
+ "basetype" : "OctetString",
85
+ "status" : "current",
86
+ "ranges" : [
87
+ {
88
+ "min" : "2",
89
+ "max" : "2"
90
+ },
91
+ ],
92
+ "range" : {
93
+ "min" : "2",
94
+ "max" : "2"
95
+ },
96
+ "description" :
97
+ """This Textual Convention describes an object that stores
98
+ a SONET K1 and K2 byte APS protocol field.
99
+
100
+ K1 is located in the first octet, K2 is located in
101
+ the second octet. Bits are numbered from left to right.
102
+
103
+ Bits 1-4 of the K1 byte indicate a request.
104
+
105
+ 1111 Lockout of Protection
106
+ 1110 Forced Switch
107
+ 1101 SF - High Priority
108
+ 1100 SF - Low Priority
109
+ 1011 SD - High Priority
110
+ 1010 SD - Low Priority
111
+ 1001 not used
112
+ 1000 Manual Switch
113
+ 0111 not used
114
+ 0110 Wait-to-Restore
115
+ 0101 not used
116
+ 0100 Exercise
117
+ 0011 not used
118
+ 0010 Reverse Request
119
+ 0001 Do Not Revert
120
+ 0000 No Request
121
+
122
+ Bits 5-8 of the K1 byte indicate the channel associated with
123
+ the request defined in bits 1-4.
124
+
125
+ 0000 is the Null channel.
126
+
127
+
128
+
129
+
130
+
131
+ 1-14 are working channels.
132
+ 15 is the extra traffic channel
133
+
134
+ Bits 1-4 of the K2 byte indicate a channel. The channel is
135
+ defined with the same syntax as K1 Bits 5-8.
136
+
137
+ Bit 5 of the K2 byte indicates the
138
+ architecture.
139
+
140
+ 0 if the architecture is 1+1
141
+ 1 if the architecture is 1:n
142
+
143
+ Bits 6-8 of the K2 byte indicates the mode.
144
+
145
+ 000 - 011 are reserved for future use
146
+ 100 indicates the mode is unidirectional
147
+ 101 indicates the mode is bidirectional
148
+ 110 RDI-L
149
+ 111 AIS-L""",
150
+ "reference" :
151
+ """Bellcore (Telcordia Technologies) GR-253-CORE, Issue 3,
152
+ September 2000, 5.3.5.""",
153
+ },
154
+ "ApsSwitchCommand" : {
155
+ "basetype" : "Enumeration",
156
+ "status" : "current",
157
+ "noCmd" : {
158
+ "nodetype" : "namednumber",
159
+ "number" : "1"
160
+ },
161
+ "clear" : {
162
+ "nodetype" : "namednumber",
163
+ "number" : "2"
164
+ },
165
+ "lockoutOfProtection" : {
166
+ "nodetype" : "namednumber",
167
+ "number" : "3"
168
+ },
169
+ "forcedSwitchWorkToProtect" : {
170
+ "nodetype" : "namednumber",
171
+ "number" : "4"
172
+ },
173
+ "forcedSwitchProtectToWork" : {
174
+ "nodetype" : "namednumber",
175
+ "number" : "5"
176
+ },
177
+ "manualSwitchWorkToProtect" : {
178
+ "nodetype" : "namednumber",
179
+ "number" : "6"
180
+ },
181
+ "manualSwitchProtectToWork" : {
182
+ "nodetype" : "namednumber",
183
+ "number" : "7"
184
+ },
185
+ "exercise" : {
186
+ "nodetype" : "namednumber",
187
+ "number" : "8"
188
+ },
189
+ "description" :
190
+ """An APS switch command allows a user to perform protection
191
+ switch actions.
192
+
193
+ If the APS switch command cannot be executed because an
194
+ equal or higher priority request is in effect, an
195
+ inconsistentValue error is returned.
196
+
197
+ The Switch command values are:
198
+
199
+ noCmd
200
+
201
+ This value should be returned by a read request when no switch
202
+ command has been written to the object in question since
203
+ initialization. This value may not be used in a write
204
+ operation. If noCmd is used in a write operation a wrongValue
205
+ error is returned.
206
+
207
+
208
+
209
+
210
+
211
+
212
+
213
+ clear
214
+
215
+ Clears all of the switch commands listed below for the
216
+ specified channel.
217
+
218
+ lockoutOfProtection
219
+
220
+ Prevents any of the working channels from switching to the
221
+ protection line. The specified channel should be the protection
222
+ channel, otherwise an inconsistentValue error is returned.
223
+
224
+ forcedSwitchWorkToProtect
225
+
226
+ Switches the specified working channel to the protection line.
227
+ If the protection channel is specified an inconsistentValue
228
+ error is returned.
229
+
230
+ forcedSwitchProtectToWork
231
+
232
+ Switches the working channel back from the protection
233
+ line to the working line. The specified channel should be
234
+ the protection channel, otherwise an inconsistentValue
235
+ error is returned.
236
+
237
+ manualSwitchWorkToProtect
238
+
239
+ Switches the specified working channel to the protection line.
240
+ If the protection channel is specified an inconsistentValue
241
+ error is returned.
242
+
243
+ manualSwitchProtectToWork
244
+
245
+ Switches the working channel back from the protection
246
+ line to the working line. The specified channel should be
247
+ the protection channel, otherwise an inconsistentValue
248
+ error is returned.
249
+
250
+ exercise
251
+
252
+ Exercises the protocol for a protection switch of the specified
253
+ channel by issuing an Exercise request for that channel and
254
+ checking the response on the APS channel. """,
255
+ },
256
+ "ApsControlCommand" : {
257
+ "basetype" : "Enumeration",
258
+ "status" : "current",
259
+ "noCmd" : {
260
+ "nodetype" : "namednumber",
261
+ "number" : "1"
262
+ },
263
+ "lockoutWorkingChannel" : {
264
+ "nodetype" : "namednumber",
265
+ "number" : "2"
266
+ },
267
+ "clearLockoutWorkingChannel" : {
268
+ "nodetype" : "namednumber",
269
+ "number" : "3"
270
+ },
271
+ "description" :
272
+ """An APS control command applies only to LTE that support the
273
+ 1:n architecture and performs the following actions.
274
+
275
+ The Control command values are:
276
+
277
+ noCmd
278
+
279
+ This value should be returned by a read request when no control
280
+ command has been written to the object in question since
281
+ initialization. This value may not be used in a write
282
+ operation. If noCmd is used in a write operation a wrongValue
283
+ error is returned.
284
+
285
+ lockoutWorkingChannel
286
+
287
+ Prevents the specified working channel from switching to the
288
+ protection line. If the protection line is specified an
289
+ inconsistentValue error is returned.
290
+
291
+ clearLockoutWorkingChannel
292
+
293
+ Clears the lockout a working channel command for the channel
294
+ specified. If the protection line is specified an
295
+ inconsistentValue error is returned.""",
296
+ },
297
+ }, # typedefs
298
+
299
+ "nodes" : {
300
+ "apsMIB" : {
301
+ "nodetype" : "node",
302
+ "moduleName" : "APS-MIB",
303
+ "oid" : "1.3.6.1.2.1.10.49",
304
+ "status" : "current",
305
+ }, # node
306
+ "apsMIBObjects" : {
307
+ "nodetype" : "node",
308
+ "moduleName" : "APS-MIB",
309
+ "oid" : "1.3.6.1.2.1.10.49.1",
310
+ }, # node
311
+ "apsConfig" : {
312
+ "nodetype" : "node",
313
+ "moduleName" : "APS-MIB",
314
+ "oid" : "1.3.6.1.2.1.10.49.1.1",
315
+ }, # node
316
+ "apsConfigGroups" : {
317
+ "nodetype" : "scalar",
318
+ "moduleName" : "APS-MIB",
319
+ "oid" : "1.3.6.1.2.1.10.49.1.1.1",
320
+ "status" : "current",
321
+ "syntax" : {
322
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
323
+ },
324
+ "access" : "readonly",
325
+ "description" :
326
+ """The count of APS groups. This count includes all rows in
327
+ apsConfigTable, regardless of the value of apsConfigRowStatus.""",
328
+ }, # scalar
329
+ "apsConfigTable" : {
330
+ "nodetype" : "table",
331
+ "moduleName" : "APS-MIB",
332
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2",
333
+ "status" : "current",
334
+ "description" :
335
+ """This table lists the APS groups that have been configured
336
+ on the system.""",
337
+ }, # table
338
+ "apsConfigEntry" : {
339
+ "nodetype" : "row",
340
+ "moduleName" : "APS-MIB",
341
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1",
342
+ "create" : "true",
343
+ "status" : "current",
344
+ "implied" : "true",
345
+ "linkage" : [
346
+ "apsConfigName",
347
+ ],
348
+ "description" :
349
+ """A conceptual row in the apsConfigTable.""",
350
+ }, # row
351
+ "apsConfigName" : {
352
+ "nodetype" : "column",
353
+ "moduleName" : "APS-MIB",
354
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.1",
355
+ "status" : "current",
356
+ "syntax" : {
357
+ "type" : {
358
+ "basetype" : "OctetString",
359
+ "parent module" : {
360
+ "name" : "SNMP-FRAMEWORK-MIB",
361
+ "type" : "SnmpAdminString",
362
+ },
363
+ "ranges" : [
364
+ {
365
+ "min" : "1",
366
+ "max" : "32"
367
+ },
368
+ ],
369
+ "range" : {
370
+ "min" : "1",
371
+ "max" : "32"
372
+ },
373
+ },
374
+ },
375
+ "access" : "noaccess",
376
+ "description" :
377
+ """A textual name for the APS group.""",
378
+ }, # column
379
+ "apsConfigRowStatus" : {
380
+ "nodetype" : "column",
381
+ "moduleName" : "APS-MIB",
382
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.2",
383
+ "status" : "current",
384
+ "syntax" : {
385
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
386
+ },
387
+ "access" : "readwrite",
388
+ "description" :
389
+ """The status of this APS group entry.
390
+
391
+ An entry may not exist in the active state unless all
392
+ objects in the entry have an appropriate value. Also,
393
+ all associated apsChanConfigEntry rows must represent
394
+ a set of consecutive channel numbers beginning with
395
+ 0 or 1, depending on the selected architecture.
396
+
397
+ When set to notInService changes may be made to apsConfigMode,
398
+ apsConfigRevert, apsConfigDirection, apsConfigExtraTraffic,
399
+ apsConfigSdBerThreshold, apsConfigSfBerThreshold,
400
+ and apsConfigWaitToRestore. Also, associated apsChanConfigTable
401
+ objects may be added, deleted and modified.""",
402
+ }, # column
403
+ "apsConfigMode" : {
404
+ "nodetype" : "column",
405
+ "moduleName" : "APS-MIB",
406
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.3",
407
+ "status" : "current",
408
+ "syntax" : {
409
+ "type" : {
410
+ "basetype" : "Enumeration",
411
+ "onePlusOne" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "1"
414
+ },
415
+ "oneToN" : {
416
+ "nodetype" : "namednumber",
417
+ "number" : "2"
418
+ },
419
+ "onePlusOneCompatible" : {
420
+ "nodetype" : "namednumber",
421
+ "number" : "3"
422
+ },
423
+ "onePlusOneOptimized" : {
424
+ "nodetype" : "namednumber",
425
+ "number" : "4"
426
+ },
427
+ },
428
+ },
429
+ "access" : "readwrite",
430
+ "default" : "onePlusOne",
431
+ "description" :
432
+ """The architecture of the APS group.
433
+
434
+ onePlusOne
435
+
436
+ The 1+1 architecture permanently bridges the working
437
+ line to the protection line.
438
+
439
+ oneToN
440
+
441
+ The 1:n architecture allows one protection channel to
442
+ protect up to n working channels. When a fault is detected
443
+ on one of the n working channels that channel is bridged
444
+ over the protection channel.
445
+
446
+ onePlusOneCompatible
447
+
448
+
449
+
450
+
451
+
452
+
453
+ This refers to 1 + 1 bidirectional switching compatible with
454
+ 1:n bidirectional switching as specified in ITU-T
455
+ Recommendation G.783 (04/97) section A.3.4.1. Since this
456
+ mode necessitates bidirectional switching, apsConfigDirection
457
+ must be set to bidirectional whenever onePlusOneCompatible
458
+ is set.
459
+
460
+ onePlusOneOptimized
461
+
462
+ This refers to 1 + 1 bidirectional switching optimized
463
+ for a network using predominantly 1 + 1 bidirectional
464
+ switching as specified in ITU-T Recommendation G.783 (04/97)
465
+ section B.1. Since this mode necessitates bidirectional
466
+ switching, apsConfigDirection must be set to bidirectional
467
+ whenever onePlusOneOptimized is set.
468
+
469
+ This object may not be modified if the associated
470
+ apsConfigRowStatus object is equal to active(1).""",
471
+ }, # column
472
+ "apsConfigRevert" : {
473
+ "nodetype" : "column",
474
+ "moduleName" : "APS-MIB",
475
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.4",
476
+ "status" : "current",
477
+ "syntax" : {
478
+ "type" : {
479
+ "basetype" : "Enumeration",
480
+ "nonrevertive" : {
481
+ "nodetype" : "namednumber",
482
+ "number" : "1"
483
+ },
484
+ "revertive" : {
485
+ "nodetype" : "namednumber",
486
+ "number" : "2"
487
+ },
488
+ },
489
+ },
490
+ "access" : "readwrite",
491
+ "default" : "nonrevertive",
492
+ "description" :
493
+ """The revertive mode of the APS group.
494
+
495
+ nonrevertive
496
+
497
+ Traffic remains on the protection line until another switch
498
+ request is received.
499
+
500
+ revertive
501
+
502
+ When the condition that caused a switch to the protection
503
+ line has been cleared the signal is switched back to the
504
+ working line. Since switching is revertive with the 1:n
505
+ architecture, apsConfigRevert must be set to revertive if
506
+ apsConfigMode is set to oneToN.
507
+
508
+ Switching may optionally be revertive with the 1+1 architecture.
509
+
510
+ This object may not be modified if the associated
511
+ apsConfigRowStatus object is equal to active(1). """,
512
+ }, # column
513
+ "apsConfigDirection" : {
514
+ "nodetype" : "column",
515
+ "moduleName" : "APS-MIB",
516
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.5",
517
+ "status" : "current",
518
+ "syntax" : {
519
+ "type" : {
520
+ "basetype" : "Enumeration",
521
+ "unidirectional" : {
522
+ "nodetype" : "namednumber",
523
+ "number" : "1"
524
+ },
525
+ "bidirectional" : {
526
+ "nodetype" : "namednumber",
527
+ "number" : "2"
528
+ },
529
+ },
530
+ },
531
+ "access" : "readwrite",
532
+ "default" : "unidirectional",
533
+ "description" :
534
+ """The directional mode of the APS group.
535
+
536
+ unidirectional
537
+
538
+ The unidirectional mode provides protection in one direction.
539
+
540
+ bidirectional
541
+
542
+ The bidirectional mode provides protection in both
543
+ directions.
544
+
545
+ This object may not be modified if the associated
546
+ apsConfigRowStatus object is equal to active(1). """,
547
+ }, # column
548
+ "apsConfigExtraTraffic" : {
549
+ "nodetype" : "column",
550
+ "moduleName" : "APS-MIB",
551
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.6",
552
+ "status" : "current",
553
+ "syntax" : {
554
+ "type" : {
555
+ "basetype" : "Enumeration",
556
+ "enabled" : {
557
+ "nodetype" : "namednumber",
558
+ "number" : "1"
559
+ },
560
+ "disabled" : {
561
+ "nodetype" : "namednumber",
562
+ "number" : "2"
563
+ },
564
+ },
565
+ },
566
+ "access" : "readwrite",
567
+ "default" : "disabled",
568
+ "description" :
569
+ """This object enables or disables the transfer of extra traffic
570
+ on the protection channel in a 1:n architecture. This object
571
+ must be set to disabled if the architecture is 1+1. It may be
572
+ necessary to disable this in order to interwork with other SONET
573
+ network elements that don't support extra traffic.
574
+
575
+ This object may not be modified if the associated
576
+ apsConfigRowStatus object is equal to active(1). """,
577
+ }, # column
578
+ "apsConfigSdBerThreshold" : {
579
+ "nodetype" : "column",
580
+ "moduleName" : "APS-MIB",
581
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.7",
582
+ "status" : "current",
583
+ "syntax" : {
584
+ "type" : {
585
+ "basetype" : "Integer32",
586
+ "ranges" : [
587
+ {
588
+ "min" : "5",
589
+ "max" : "9"
590
+ },
591
+ ],
592
+ "range" : {
593
+ "min" : "5",
594
+ "max" : "9"
595
+ },
596
+ },
597
+ },
598
+ "access" : "readwrite",
599
+ "default" : "5",
600
+ "description" :
601
+ """The Signal Degrade Bit Error Rate.
602
+
603
+ The negated value of this number is used as the exponent of
604
+ 10 for computing the threshold value for the Bit Error Rate
605
+ (BER). For example, a value of 5 indicates a BER threshold of
606
+ 10^-5.
607
+
608
+
609
+
610
+ This object may be modified if the associated
611
+ apsConfigRowStatus object is equal to active(1).""",
612
+ }, # column
613
+ "apsConfigSfBerThreshold" : {
614
+ "nodetype" : "column",
615
+ "moduleName" : "APS-MIB",
616
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.8",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : {
620
+ "basetype" : "Integer32",
621
+ "ranges" : [
622
+ {
623
+ "min" : "3",
624
+ "max" : "5"
625
+ },
626
+ ],
627
+ "range" : {
628
+ "min" : "3",
629
+ "max" : "5"
630
+ },
631
+ },
632
+ },
633
+ "access" : "readwrite",
634
+ "default" : "3",
635
+ "description" :
636
+ """The Signal Failure Bit Error Rate.
637
+
638
+ The negated value of this number is used as the exponent of
639
+ 10 for computing the threshold value for the Bit Error Rate
640
+ (BER). For example, a value of 5 indicates a BER threshold of
641
+ 10^-5.
642
+
643
+ This object may be modified if the associated
644
+ apsConfigRowStatus object is equal to active(1).""",
645
+ }, # column
646
+ "apsConfigWaitToRestore" : {
647
+ "nodetype" : "column",
648
+ "moduleName" : "APS-MIB",
649
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.9",
650
+ "status" : "current",
651
+ "syntax" : {
652
+ "type" : {
653
+ "basetype" : "Integer32",
654
+ "ranges" : [
655
+ {
656
+ "min" : "0",
657
+ "max" : "720"
658
+ },
659
+ ],
660
+ "range" : {
661
+ "min" : "0",
662
+ "max" : "720"
663
+ },
664
+ },
665
+ },
666
+ "access" : "readwrite",
667
+ "default" : "300",
668
+ "units" : "seconds",
669
+ "description" :
670
+ """The Wait To Restore period in seconds.
671
+
672
+ After clearing of a condition that necessitated an
673
+ automatic switch, the wait to restore period must elapse
674
+ before reverting. This is intended to avoid rapid switch
675
+ oscillations.
676
+
677
+ GR-253-CORE specifies a Wait To Restore range of 5 to 12
678
+ minutes. G.783 defines a 5 to 12 minute Wait To Restore
679
+ range in section 5.4.1.1.3, but also allows for a shorter
680
+ WTR period in Table 2-1,
681
+ WaitToRestore value (MI_WTRtime: 0..(5)..12 minutes).
682
+
683
+ This object may not be modified if the associated
684
+ apsConfigRowStatus object is equal to active(1).""",
685
+ }, # column
686
+ "apsConfigCreationTime" : {
687
+ "nodetype" : "column",
688
+ "moduleName" : "APS-MIB",
689
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.10",
690
+ "status" : "current",
691
+ "syntax" : {
692
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
693
+ },
694
+ "access" : "readonly",
695
+ "description" :
696
+ """The value of sysUpTime at the time the row was
697
+ created""",
698
+ }, # column
699
+ "apsConfigStorageType" : {
700
+ "nodetype" : "column",
701
+ "moduleName" : "APS-MIB",
702
+ "oid" : "1.3.6.1.2.1.10.49.1.1.2.1.11",
703
+ "status" : "current",
704
+ "syntax" : {
705
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
706
+ },
707
+ "access" : "readwrite",
708
+ "default" : "nonVolatile",
709
+ "description" :
710
+ """The storage type for this conceptual row.
711
+ Conceptual rows having the value 'permanent' need not
712
+ allow write-access to any columnar objects in the row.""",
713
+ }, # column
714
+ "apsStatusTable" : {
715
+ "nodetype" : "table",
716
+ "moduleName" : "APS-MIB",
717
+ "oid" : "1.3.6.1.2.1.10.49.1.2",
718
+ "status" : "current",
719
+ "description" :
720
+ """This table provides status information about APS groups
721
+ that have been configured on the system.""",
722
+ }, # table
723
+ "apsStatusEntry" : {
724
+ "nodetype" : "row",
725
+ "moduleName" : "APS-MIB",
726
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1",
727
+ "status" : "current",
728
+ "linkage" : [
729
+ { "APS-MIB" : {
730
+ "indexkind" : "augments",
731
+ "relatedNode" : "apsConfigEntry",
732
+ }},
733
+ ],
734
+ "description" :
735
+ """A conceptual row in the apsStatusTable.""",
736
+ }, # row
737
+ "apsStatusK1K2Rcv" : {
738
+ "nodetype" : "column",
739
+ "moduleName" : "APS-MIB",
740
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.1",
741
+ "status" : "current",
742
+ "syntax" : {
743
+ "type" : { "module" :"APS-MIB", "name" : "ApsK1K2"},
744
+ },
745
+ "access" : "readonly",
746
+ "description" :
747
+ """The current value of the K1 and K2 bytes received on the
748
+ protection channel.""",
749
+ }, # column
750
+ "apsStatusK1K2Trans" : {
751
+ "nodetype" : "column",
752
+ "moduleName" : "APS-MIB",
753
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.2",
754
+ "status" : "current",
755
+ "syntax" : {
756
+ "type" : { "module" :"APS-MIB", "name" : "ApsK1K2"},
757
+ },
758
+ "access" : "readonly",
759
+ "description" :
760
+ """The current value of the K1 and K2 bytes transmitted on the
761
+ protection channel.""",
762
+ }, # column
763
+ "apsStatusCurrent" : {
764
+ "nodetype" : "column",
765
+ "moduleName" : "APS-MIB",
766
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.3",
767
+ "status" : "current",
768
+ "syntax" : {
769
+ "type" : {
770
+ "basetype" : "Bits",
771
+ "modeMismatch" : {
772
+ "nodetype" : "namednumber",
773
+ "number" : "0"
774
+ },
775
+ "channelMismatch" : {
776
+ "nodetype" : "namednumber",
777
+ "number" : "1"
778
+ },
779
+ "psbf" : {
780
+ "nodetype" : "namednumber",
781
+ "number" : "2"
782
+ },
783
+ "feplf" : {
784
+ "nodetype" : "namednumber",
785
+ "number" : "3"
786
+ },
787
+ "extraTraffic" : {
788
+ "nodetype" : "namednumber",
789
+ "number" : "4"
790
+ },
791
+ },
792
+ },
793
+ "access" : "readonly",
794
+ "description" :
795
+ """The current status of the APS group.
796
+
797
+ modeMismatch
798
+
799
+ Modes other than 1+1 unidirectional monitor protection line
800
+ K2 bit 5, which indicates the architecture and K2 bits
801
+ 6-8, which indicate if the mode is unidirectional or
802
+ bidirectional. A conflict between the current local mode
803
+ and the received K2 mode information constitutes a
804
+ mode mismatch.
805
+
806
+
807
+
808
+
809
+ channelMismatch
810
+
811
+ This bit indicates a mismatch between the transmitted K1
812
+ channel and the received K2 channel has been detected.
813
+
814
+ psbf
815
+
816
+ This bit indicates a Protection Switch Byte Failure (PSBF) is
817
+ in effect. This condition occurs when either an inconsistent
818
+ APS byte or an invalid code is detected. An inconsistent APS
819
+ byte occurs when no three consecutive K1 bytes of the last 12
820
+ successive frames are identical, starting with the last frame
821
+ containing a previously consistent byte. An invalid code occurs
822
+ when the incoming K1 byte contains an unused code or a code
823
+ irrelevant for the specific switching operation (e.g., Reverse
824
+ Request while no switching request is outstanding) in three
825
+ consecutive frames. An invalid code also occurs when the
826
+ incoming K1 byte contains an invalid channel number in three
827
+ consecutive frames.
828
+
829
+ feplf
830
+
831
+ Modes other than 1+1 unidirectional monitor the K1 byte
832
+ for Far-End Protection-Line failures. A Far-End
833
+ Protection-Line defect is declared based on receiving
834
+ SF on the protection line.
835
+
836
+ extraTraffic
837
+
838
+ This bit indicates whether extra traffic is currently being
839
+ accepted on the protection line. """,
840
+ }, # column
841
+ "apsStatusModeMismatches" : {
842
+ "nodetype" : "column",
843
+ "moduleName" : "APS-MIB",
844
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.4",
845
+ "status" : "current",
846
+ "syntax" : {
847
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
848
+ },
849
+ "access" : "readonly",
850
+ "description" :
851
+ """A count of Mode Mismatch conditions.
852
+
853
+ Discontinuities in the value of this counter can occur at
854
+ re-initialization of the management system, and at other
855
+ times as indicated by the value of
856
+ apsStatusDiscontinuityTime.""",
857
+ }, # column
858
+ "apsStatusChannelMismatches" : {
859
+ "nodetype" : "column",
860
+ "moduleName" : "APS-MIB",
861
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.5",
862
+ "status" : "current",
863
+ "syntax" : {
864
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
865
+ },
866
+ "access" : "readonly",
867
+ "description" :
868
+ """A count of Channel Mismatch conditions.
869
+
870
+ Discontinuities in the value of this counter can occur at
871
+ re-initialization of the management system, and at other
872
+ times as indicated by the value of
873
+ apsStatusDiscontinuityTime.""",
874
+ }, # column
875
+ "apsStatusPSBFs" : {
876
+ "nodetype" : "column",
877
+ "moduleName" : "APS-MIB",
878
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.6",
879
+ "status" : "current",
880
+ "syntax" : {
881
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
882
+ },
883
+ "access" : "readonly",
884
+ "description" :
885
+ """A count of Protection Switch Byte Failure conditions.
886
+ This condition occurs when either an inconsistent APS
887
+ byte or an invalid code is detected. An inconsistent APS
888
+ byte occurs when no three consecutive K1 bytes of the last
889
+ 12 successive frames are identical, starting with the last
890
+ frame containing a previously consistent byte. An invalid
891
+ code occurs when the incoming K1 byte contains an unused
892
+ code or a code irrelevant for the specific switching
893
+ operation (e.g., Reverse Request while no switching request
894
+ is outstanding) in three consecutive frames. An invalid code
895
+ also occurs when the incoming K1 byte contains an invalid
896
+ channel number in three consecutive frames.
897
+
898
+ Discontinuities in the value of this counter can occur at
899
+ re-initialization of the management system, and at other
900
+ times as indicated by the value of
901
+ apsStatusDiscontinuityTime.""",
902
+ }, # column
903
+ "apsStatusFEPLFs" : {
904
+ "nodetype" : "column",
905
+ "moduleName" : "APS-MIB",
906
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.7",
907
+ "status" : "current",
908
+ "syntax" : {
909
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
910
+ },
911
+ "access" : "readonly",
912
+ "description" :
913
+ """A count of Far-End Protection-Line Failure conditions.
914
+ This condition is declared based on receiving SF on
915
+ the protection line in the K1 byte.
916
+
917
+
918
+
919
+
920
+
921
+
922
+ Discontinuities in the value of this counter can occur at
923
+ re-initialization of the management system, and at other
924
+ times as indicated by the value of
925
+ apsStatusDiscontinuityTime.""",
926
+ }, # column
927
+ "apsStatusSwitchedChannel" : {
928
+ "nodetype" : "column",
929
+ "moduleName" : "APS-MIB",
930
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.8",
931
+ "status" : "current",
932
+ "syntax" : {
933
+ "type" : { "module" :"", "name" : "Integer32"},
934
+ },
935
+ "access" : "readonly",
936
+ "description" :
937
+ """This field is set to the number of the channel that is
938
+ currently switched to protection. The value 0 indicates no
939
+ channel is switched to protection. The values 1-14 indicate
940
+ that working channel is switched to protection.""",
941
+ }, # column
942
+ "apsStatusDiscontinuityTime" : {
943
+ "nodetype" : "column",
944
+ "moduleName" : "APS-MIB",
945
+ "oid" : "1.3.6.1.2.1.10.49.1.2.1.9",
946
+ "status" : "current",
947
+ "syntax" : {
948
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
949
+ },
950
+ "access" : "readonly",
951
+ "description" :
952
+ """The value of sysUpTime on the most recent occasion at which
953
+ any one or more of this APS group's counters suffered a
954
+ discontinuity. The relevant counters are the specific
955
+ instances associated with this APS group of any Counter32
956
+ object contained in apsStatusTable. If no such
957
+ discontinuities have occurred since the last re-initialization
958
+ of the local management subsystem, then this object contains
959
+ a zero value.""",
960
+ }, # column
961
+ "apsMap" : {
962
+ "nodetype" : "node",
963
+ "moduleName" : "APS-MIB",
964
+ "oid" : "1.3.6.1.2.1.10.49.1.3",
965
+ }, # node
966
+ "apsChanLTEs" : {
967
+ "nodetype" : "scalar",
968
+ "moduleName" : "APS-MIB",
969
+ "oid" : "1.3.6.1.2.1.10.49.1.3.1",
970
+ "status" : "current",
971
+ "syntax" : {
972
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
973
+ },
974
+ "access" : "readonly",
975
+ "description" :
976
+ """The count of SONET LTE interfaces on the system.
977
+ Each interface that is included has an ifType value of
978
+ sonet(39).""",
979
+ }, # scalar
980
+ "apsMapTable" : {
981
+ "nodetype" : "table",
982
+ "moduleName" : "APS-MIB",
983
+ "oid" : "1.3.6.1.2.1.10.49.1.3.2",
984
+ "status" : "current",
985
+ "description" :
986
+ """This table lists the SONET LTE interfaces on the system.
987
+ Each interface that is listed has an ifType value of
988
+ sonet(39).""",
989
+ }, # table
990
+ "apsMapEntry" : {
991
+ "nodetype" : "row",
992
+ "moduleName" : "APS-MIB",
993
+ "oid" : "1.3.6.1.2.1.10.49.1.3.2.1",
994
+ "status" : "current",
995
+ "linkage" : [
996
+ "ifIndex",
997
+ ],
998
+ "description" :
999
+ """A conceptual row in the apsMapTable.""",
1000
+ }, # row
1001
+ "apsMapGroupName" : {
1002
+ "nodetype" : "column",
1003
+ "moduleName" : "APS-MIB",
1004
+ "oid" : "1.3.6.1.2.1.10.49.1.3.2.1.2",
1005
+ "status" : "current",
1006
+ "syntax" : {
1007
+ "type" : {
1008
+ "basetype" : "OctetString",
1009
+ "parent module" : {
1010
+ "name" : "SNMP-FRAMEWORK-MIB",
1011
+ "type" : "SnmpAdminString",
1012
+ },
1013
+ "ranges" : [
1014
+ {
1015
+ "min" : "0",
1016
+ "max" : "32"
1017
+ },
1018
+ ],
1019
+ "range" : {
1020
+ "min" : "0",
1021
+ "max" : "32"
1022
+ },
1023
+ },
1024
+ },
1025
+ "access" : "readonly",
1026
+ "description" :
1027
+ """A textual name for the APS group which this channel is
1028
+ included in. If the channel is not part of an APS group
1029
+ this value is set to a string of size 0.
1030
+
1031
+ When an instance of apsChanConfigIfIndex is set equal to an
1032
+ instance of ifIndex that has an ifType value of sonet(39),
1033
+ apsMapGroupName is set equal to the corresponding value of
1034
+ apsChanConfigGroupName.
1035
+
1036
+ If an instance of ifIndex that has an ifType value of
1037
+ sonet(39) ceases to be equal to an instance of
1038
+ apsChanConfigIfIndex, either because of a change in the value
1039
+ of apsChanConfigIfIndex, or because of row deletion in the
1040
+ ApsChanConfigTable, apsMapGroupName is set to a string of
1041
+ size 0.""",
1042
+ }, # column
1043
+ "apsMapChanNumber" : {
1044
+ "nodetype" : "column",
1045
+ "moduleName" : "APS-MIB",
1046
+ "oid" : "1.3.6.1.2.1.10.49.1.3.2.1.3",
1047
+ "status" : "current",
1048
+ "syntax" : {
1049
+ "type" : {
1050
+ "basetype" : "Integer32",
1051
+ "ranges" : [
1052
+ {
1053
+ "min" : "-1",
1054
+ "max" : "14"
1055
+ },
1056
+ ],
1057
+ "range" : {
1058
+ "min" : "-1",
1059
+ "max" : "14"
1060
+ },
1061
+ },
1062
+ },
1063
+ "access" : "readonly",
1064
+ "description" :
1065
+ """This field is set to a unique channel number within an APS
1066
+ group. The value 0 indicates the null channel. The values
1067
+ 1-14 define a working channel. If the SONET LTE is not part
1068
+ of an APS group this value is set to -1.
1069
+
1070
+ When an instance of apsChanConfigIfIndex is set equal to an
1071
+ instance of ifIndex that has an ifType value of sonet(39),
1072
+ apsMapChanNumber is set equal to the corresponding value of
1073
+ apsChanConfigNumber.
1074
+
1075
+ If an instance of ifIndex that has an ifType value of
1076
+ sonet(39) ceases to be equal to an instance of
1077
+ apsChanConfigIfIndex, either because of a change in the
1078
+ value of apsChanConfigIfIndex, or because of row deletion
1079
+ in the ApsChanConfigTable, apsMapChanNumber is set to -1.""",
1080
+ }, # column
1081
+ "apsChanConfigTable" : {
1082
+ "nodetype" : "table",
1083
+ "moduleName" : "APS-MIB",
1084
+ "oid" : "1.3.6.1.2.1.10.49.1.4",
1085
+ "status" : "current",
1086
+ "description" :
1087
+ """This table lists the APS channels that have been configured
1088
+ in APS groups.""",
1089
+ }, # table
1090
+ "apsChanConfigEntry" : {
1091
+ "nodetype" : "row",
1092
+ "moduleName" : "APS-MIB",
1093
+ "oid" : "1.3.6.1.2.1.10.49.1.4.1",
1094
+ "create" : "true",
1095
+ "status" : "current",
1096
+ "linkage" : [
1097
+ "apsChanConfigGroupName",
1098
+ "apsChanConfigNumber",
1099
+ ],
1100
+ "description" :
1101
+ """A conceptual row in the apsChanConfigTable.""",
1102
+ }, # row
1103
+ "apsChanConfigGroupName" : {
1104
+ "nodetype" : "column",
1105
+ "moduleName" : "APS-MIB",
1106
+ "oid" : "1.3.6.1.2.1.10.49.1.4.1.1",
1107
+ "status" : "current",
1108
+ "syntax" : {
1109
+ "type" : {
1110
+ "basetype" : "OctetString",
1111
+ "parent module" : {
1112
+ "name" : "SNMP-FRAMEWORK-MIB",
1113
+ "type" : "SnmpAdminString",
1114
+ },
1115
+ "ranges" : [
1116
+ {
1117
+ "min" : "1",
1118
+ "max" : "32"
1119
+ },
1120
+ ],
1121
+ "range" : {
1122
+ "min" : "1",
1123
+ "max" : "32"
1124
+ },
1125
+ },
1126
+ },
1127
+ "access" : "noaccess",
1128
+ "description" :
1129
+ """A textual name for the APS group which this channel is
1130
+ included in.""",
1131
+ }, # column
1132
+ "apsChanConfigNumber" : {
1133
+ "nodetype" : "column",
1134
+ "moduleName" : "APS-MIB",
1135
+ "oid" : "1.3.6.1.2.1.10.49.1.4.1.2",
1136
+ "status" : "current",
1137
+ "syntax" : {
1138
+ "type" : {
1139
+ "basetype" : "Integer32",
1140
+ "ranges" : [
1141
+ {
1142
+ "min" : "0",
1143
+ "max" : "14"
1144
+ },
1145
+ ],
1146
+ "range" : {
1147
+ "min" : "0",
1148
+ "max" : "14"
1149
+ },
1150
+ },
1151
+ },
1152
+ "access" : "noaccess",
1153
+ "description" :
1154
+ """This field is set to a unique channel number within an APS
1155
+ group. The value 0 indicates the null channel. The values
1156
+ 1-14 define a working channel.
1157
+
1158
+ This field must be assigned a unique number within the group.""",
1159
+ }, # column
1160
+ "apsChanConfigRowStatus" : {
1161
+ "nodetype" : "column",
1162
+ "moduleName" : "APS-MIB",
1163
+ "oid" : "1.3.6.1.2.1.10.49.1.4.1.3",
1164
+ "status" : "current",
1165
+ "syntax" : {
1166
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1167
+ },
1168
+ "access" : "readwrite",
1169
+ "description" :
1170
+ """The status of this APS channel entry.
1171
+
1172
+ An entry may not exist in the active state unless all
1173
+ objects in the entry have an appropriate value.
1174
+
1175
+ A row in the apsChanConfigTable may not be created,
1176
+ deleted, set to notInService or otherwise modified
1177
+ if the apsChanConfigGroupName value is equal to an
1178
+ apsConfigName value and the associated apsConfigRowStatus
1179
+ object is equal to active. However, if the apsConfigRowStatus
1180
+ object is equal to notInService, a row may be created, deleted
1181
+ or modified. In other words, a channel may not be added,
1182
+ deleted or modified if the group is active.
1183
+
1184
+
1185
+
1186
+ A row may be created with an apsChanConfigGroupName value
1187
+ that is not equal to any existing instance of apsConfigName.
1188
+ This action is the initial step in adding a SONET LTE to a
1189
+ new APS group.
1190
+
1191
+ If this object is set to destroy, the associated instance
1192
+ of apsMapGroupName will be set to a string of size 0 and
1193
+ the apsMapChanNumber will be set to -1. The channel status
1194
+ entry will also be deleted by this action.
1195
+
1196
+ apsChanConfigNumber must be set to a unique channel number
1197
+ within the APS group. The value 0 indicates the null channel.
1198
+ The values 1-14 define a working channel. When an attempt is
1199
+ made to set the corresponding apsConfigRowStatus field to
1200
+ active the apsChanConfigNumber values of all entries with equal
1201
+ apsChanConfigGroupName fields must represent a set of
1202
+ consecutive integer values beginning with 0 or 1, depending on
1203
+ the architecture of the group, and ending with n, where n is
1204
+ greater than or equal to 1 and less than or equal to 14.
1205
+ Otherwise, the error inconsistentValue is returned to the
1206
+ apsConfigRowStatus set attempt.""",
1207
+ }, # column
1208
+ "apsChanConfigIfIndex" : {
1209
+ "nodetype" : "column",
1210
+ "moduleName" : "APS-MIB",
1211
+ "oid" : "1.3.6.1.2.1.10.49.1.4.1.4",
1212
+ "status" : "current",
1213
+ "syntax" : {
1214
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1215
+ },
1216
+ "access" : "readwrite",
1217
+ "description" :
1218
+ """The Interface Index assigned to a SONET LTE. This is an
1219
+ interface with ifType sonet(39). The value of this object
1220
+ must be unique among all instances of apsChanConfigIfIndex.
1221
+ In other words, a particular SONET LTE can only be configured
1222
+ in one APS group.
1223
+
1224
+ This object cannot be set if the apsChanConfigGroupName
1225
+ instance associated with this row is equal to an instance of
1226
+ apsConfigName and the corresponding apsConfigRowStatus object
1227
+ is set to active. In other words this value cannot be changed
1228
+ if the APS group is active. However, this value may be changed
1229
+ if the apsConfigRowStatus value is equal to notInService.""",
1230
+ }, # column
1231
+ "apsChanConfigPriority" : {
1232
+ "nodetype" : "column",
1233
+ "moduleName" : "APS-MIB",
1234
+ "oid" : "1.3.6.1.2.1.10.49.1.4.1.5",
1235
+ "status" : "current",
1236
+ "syntax" : {
1237
+ "type" : {
1238
+ "basetype" : "Enumeration",
1239
+ "low" : {
1240
+ "nodetype" : "namednumber",
1241
+ "number" : "1"
1242
+ },
1243
+ "high" : {
1244
+ "nodetype" : "namednumber",
1245
+ "number" : "2"
1246
+ },
1247
+ },
1248
+ },
1249
+ "access" : "readwrite",
1250
+ "default" : "low",
1251
+ "description" :
1252
+ """The priority of the channel.
1253
+
1254
+
1255
+
1256
+ This field determines whether high or low priority
1257
+ SD and SF codes are used in K1 requests.
1258
+
1259
+ This field is only applicable if the channel is to be included
1260
+ in a group using the 1:n architecture. It is not applicable if
1261
+ the channel is to be included in a group using the 1+1
1262
+ architecture, and is ignored in that case.
1263
+
1264
+ This object cannot be set if the apsChanConfigGroupName
1265
+ instance associated with this row is equal to an instance of
1266
+ apsConfigName and the corresponding apsConfigRowStatus object
1267
+ is set to active. In other words this value cannot be changed
1268
+ if the APS group is active. However, this value may be changed
1269
+ if the apsConfigRowStatus value is equal to notInService.""",
1270
+ }, # column
1271
+ "apsChanConfigStorageType" : {
1272
+ "nodetype" : "column",
1273
+ "moduleName" : "APS-MIB",
1274
+ "oid" : "1.3.6.1.2.1.10.49.1.4.1.6",
1275
+ "status" : "current",
1276
+ "syntax" : {
1277
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1278
+ },
1279
+ "access" : "readwrite",
1280
+ "default" : "nonVolatile",
1281
+ "description" :
1282
+ """The storage type for this conceptual row.
1283
+ Conceptual rows having the value 'permanent' need not
1284
+ allow write-access to any columnar objects in the row.""",
1285
+ }, # column
1286
+ "apsCommandTable" : {
1287
+ "nodetype" : "table",
1288
+ "moduleName" : "APS-MIB",
1289
+ "oid" : "1.3.6.1.2.1.10.49.1.5",
1290
+ "status" : "current",
1291
+ "description" :
1292
+ """This table allows commands to be sent to configured APS
1293
+ groups.""",
1294
+ }, # table
1295
+ "apsCommandEntry" : {
1296
+ "nodetype" : "row",
1297
+ "moduleName" : "APS-MIB",
1298
+ "oid" : "1.3.6.1.2.1.10.49.1.5.1",
1299
+ "status" : "current",
1300
+ "linkage" : [
1301
+ "apsChanConfigGroupName",
1302
+ "apsChanConfigNumber",
1303
+ ],
1304
+ "description" :
1305
+ """A conceptual row in the apsCommandTable. This row exists only
1306
+ if the associated apsConfigEntry is active.""",
1307
+ }, # row
1308
+ "apsCommandSwitch" : {
1309
+ "nodetype" : "column",
1310
+ "moduleName" : "APS-MIB",
1311
+ "oid" : "1.3.6.1.2.1.10.49.1.5.1.1",
1312
+ "status" : "current",
1313
+ "syntax" : {
1314
+ "type" : { "module" :"APS-MIB", "name" : "ApsSwitchCommand"},
1315
+ },
1316
+ "access" : "readwrite",
1317
+ "description" :
1318
+ """Allows the initiation of an APS switch command on the
1319
+ APS group and channel specified by the index values.
1320
+
1321
+ When read this object returns the last command written
1322
+ or noCmd if no command has been written to this
1323
+ channel since initialization. The return of the last command
1324
+ written does not imply that this command is currently in
1325
+ effect. This request may have been preempted by a higher
1326
+ priority local or remote request. In order to determine the
1327
+ current state of the APS group it is necessary to read
1328
+ the objects apsStatusK1K2Rcv and apsStatusK1K2Trans.
1329
+
1330
+ The value lockoutOfProtection should only be applied to the
1331
+ protection line channel since that switch command prevents any
1332
+ of the working channels from switching to the protection line.
1333
+ Following the same logic, forcedSwitchProtectToWork and
1334
+ manualSwitchProtectToWork should only be applied to the
1335
+ protection line channel.
1336
+
1337
+ forcedSwitchWorkToProtect and manualSwitchWorkToProtect
1338
+ should only be applied to a working channel.""",
1339
+ }, # column
1340
+ "apsCommandControl" : {
1341
+ "nodetype" : "column",
1342
+ "moduleName" : "APS-MIB",
1343
+ "oid" : "1.3.6.1.2.1.10.49.1.5.1.2",
1344
+ "status" : "current",
1345
+ "syntax" : {
1346
+ "type" : { "module" :"APS-MIB", "name" : "ApsControlCommand"},
1347
+ },
1348
+ "access" : "readwrite",
1349
+ "description" :
1350
+ """Allows the initiation of an APS control command on the
1351
+ APS group and channel specified by the index values.
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+ When read this object returns the last command written or
1359
+ noCmd if no command has been written to this channel since
1360
+ initialization.
1361
+
1362
+ This object does not apply to the protection line.""",
1363
+ }, # column
1364
+ "apsChanStatusTable" : {
1365
+ "nodetype" : "table",
1366
+ "moduleName" : "APS-MIB",
1367
+ "oid" : "1.3.6.1.2.1.10.49.1.6",
1368
+ "status" : "current",
1369
+ "description" :
1370
+ """This table contains status information for all SONET LTE
1371
+ interfaces that are included in APS groups.""",
1372
+ }, # table
1373
+ "apsChanStatusEntry" : {
1374
+ "nodetype" : "row",
1375
+ "moduleName" : "APS-MIB",
1376
+ "oid" : "1.3.6.1.2.1.10.49.1.6.1",
1377
+ "status" : "current",
1378
+ "linkage" : [
1379
+ { "APS-MIB" : {
1380
+ "indexkind" : "augments",
1381
+ "relatedNode" : "apsChanConfigEntry",
1382
+ }},
1383
+ ],
1384
+ "description" :
1385
+ """A conceptual row in the apsChanStatusTable.""",
1386
+ }, # row
1387
+ "apsChanStatusCurrent" : {
1388
+ "nodetype" : "column",
1389
+ "moduleName" : "APS-MIB",
1390
+ "oid" : "1.3.6.1.2.1.10.49.1.6.1.1",
1391
+ "status" : "current",
1392
+ "syntax" : {
1393
+ "type" : {
1394
+ "basetype" : "Bits",
1395
+ "lockedOut" : {
1396
+ "nodetype" : "namednumber",
1397
+ "number" : "0"
1398
+ },
1399
+ "sd" : {
1400
+ "nodetype" : "namednumber",
1401
+ "number" : "1"
1402
+ },
1403
+ "sf" : {
1404
+ "nodetype" : "namednumber",
1405
+ "number" : "2"
1406
+ },
1407
+ "switched" : {
1408
+ "nodetype" : "namednumber",
1409
+ "number" : "3"
1410
+ },
1411
+ "wtr" : {
1412
+ "nodetype" : "namednumber",
1413
+ "number" : "4"
1414
+ },
1415
+ },
1416
+ },
1417
+ "access" : "readonly",
1418
+ "description" :
1419
+ """Indicates the current state of the port.
1420
+
1421
+ lockedOut
1422
+
1423
+ This bit, when applied to a working channel, indicates that
1424
+ the channel is prevented from switching to the protection
1425
+ line. When applied to the null channel, this bit indicates
1426
+ that no working channel may switch to the protection line.
1427
+
1428
+ sd
1429
+
1430
+ A signal degrade condition is in effect.
1431
+
1432
+ sf
1433
+
1434
+ A signal failure condition is in effect.
1435
+
1436
+ switched
1437
+
1438
+ The switched bit is applied to a working channel if that
1439
+ channel is currently switched to the protection line.
1440
+
1441
+ wtr
1442
+
1443
+ A Wait-to-Restore state is in effect.""",
1444
+ }, # column
1445
+ "apsChanStatusSignalDegrades" : {
1446
+ "nodetype" : "column",
1447
+ "moduleName" : "APS-MIB",
1448
+ "oid" : "1.3.6.1.2.1.10.49.1.6.1.2",
1449
+ "status" : "current",
1450
+ "syntax" : {
1451
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1452
+ },
1453
+ "access" : "readonly",
1454
+ "description" :
1455
+ """A count of Signal Degrade conditions. This condition
1456
+ occurs when the line Bit Error Rate exceeds the currently
1457
+ configured value of the relevant instance of
1458
+ apsConfigSdBerThreshold.
1459
+
1460
+ Discontinuities in the value of this counter can occur at
1461
+ re-initialization of the management system, and at other
1462
+ times as indicated by the value of
1463
+ apsChanStatusDiscontinuityTime.""",
1464
+ }, # column
1465
+ "apsChanStatusSignalFailures" : {
1466
+ "nodetype" : "column",
1467
+ "moduleName" : "APS-MIB",
1468
+ "oid" : "1.3.6.1.2.1.10.49.1.6.1.3",
1469
+ "status" : "current",
1470
+ "syntax" : {
1471
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1472
+ },
1473
+ "access" : "readonly",
1474
+ "description" :
1475
+ """A count of Signal Failure conditions that have been
1476
+ detected on the incoming signal. This condition occurs
1477
+ when a loss of signal, loss of frame, AIS-L or a Line
1478
+ bit error rate exceeding the currently configured value of
1479
+ the relevant instance of apsConfigSfBerThreshold.
1480
+
1481
+ Discontinuities in the value of this counter can occur at
1482
+ re-initialization of the management system, and at other
1483
+ times as indicated by the value of
1484
+ apsChanStatusDiscontinuityTime.""",
1485
+ }, # column
1486
+ "apsChanStatusSwitchovers" : {
1487
+ "nodetype" : "column",
1488
+ "moduleName" : "APS-MIB",
1489
+ "oid" : "1.3.6.1.2.1.10.49.1.6.1.4",
1490
+ "status" : "current",
1491
+ "syntax" : {
1492
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1493
+ },
1494
+ "access" : "readonly",
1495
+ "description" :
1496
+ """When queried with index value apsChanConfigNumber other than
1497
+ 0, this object will return the number of times this channel
1498
+ has switched to the protection line.
1499
+
1500
+ When queried with index value apsChanConfigNumber set to 0,
1501
+ which is the protection line, this object will return the
1502
+ number of times that any working channel has been switched
1503
+ back to the working line from this protection line.
1504
+
1505
+ Discontinuities in the value of this counter can occur at
1506
+ re-initialization of the management system, and at other
1507
+ times as indicated by the value of
1508
+ apsChanStatusDiscontinuityTime.""",
1509
+ }, # column
1510
+ "apsChanStatusLastSwitchover" : {
1511
+ "nodetype" : "column",
1512
+ "moduleName" : "APS-MIB",
1513
+ "oid" : "1.3.6.1.2.1.10.49.1.6.1.5",
1514
+ "status" : "current",
1515
+ "syntax" : {
1516
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1517
+ },
1518
+ "access" : "readonly",
1519
+ "description" :
1520
+ """When queried with index value apsChanConfigNumber other than
1521
+ 0, this object will return the value of sysUpTime when this
1522
+ channel last completed a switch to the protection line. If
1523
+
1524
+
1525
+
1526
+
1527
+ this channel has never switched to the protection line, the
1528
+ value 0 will be returned.
1529
+
1530
+ When queried with index value apsChanConfigNumber set to 0,
1531
+ which is the protection line, this object will return the
1532
+ value of sysUpTime the last time that a working channel was
1533
+ switched back to the working line from this protection line.
1534
+ If no working channel has ever switched back to the working
1535
+ line from this protection line, the value 0 will be returned.""",
1536
+ }, # column
1537
+ "apsChanStatusSwitchoverSeconds" : {
1538
+ "nodetype" : "column",
1539
+ "moduleName" : "APS-MIB",
1540
+ "oid" : "1.3.6.1.2.1.10.49.1.6.1.6",
1541
+ "status" : "current",
1542
+ "syntax" : {
1543
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1544
+ },
1545
+ "access" : "readonly",
1546
+ "description" :
1547
+ """The cumulative Protection Switching Duration (PSD) time in
1548
+ seconds. For a working channel, this is the cumulative number
1549
+ of seconds that service was carried on the protection line.
1550
+ For the protection line, this is the cumulative number of
1551
+ seconds that the protection line has been used to carry any
1552
+ working channel traffic. This information is only valid if
1553
+ revertive switching is enabled. The value 0 will be returned
1554
+ otherwise.
1555
+
1556
+ Discontinuities in the value of this counter can occur at
1557
+ re-initialization of the management system, and at other
1558
+ times as indicated by the value of
1559
+ apsChanStatusDiscontinuityTime. For example, if the value
1560
+ of an instance of apsChanStatusSwitchoverSeconds changes
1561
+ from a non-zero value to zero due to revertive switching
1562
+ being disabled, it is expected that the corresponding
1563
+ value of apsChanStatusDiscontinuityTime will be updated
1564
+ to reflect the time of the configuration change.""",
1565
+ }, # column
1566
+ "apsChanStatusDiscontinuityTime" : {
1567
+ "nodetype" : "column",
1568
+ "moduleName" : "APS-MIB",
1569
+ "oid" : "1.3.6.1.2.1.10.49.1.6.1.7",
1570
+ "status" : "current",
1571
+ "syntax" : {
1572
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1573
+ },
1574
+ "access" : "readonly",
1575
+ "description" :
1576
+ """The value of sysUpTime on the most recent occasion at which
1577
+ any one or more of this channel's counters suffered a
1578
+ discontinuity. The relevant counters are the specific
1579
+ instances associated with this channel of any Counter32
1580
+ object contained in apsChanStatusTable. If no such
1581
+
1582
+
1583
+
1584
+ discontinuities have occurred since the last re-initialization
1585
+ of the local management subsystem, then this object contains
1586
+ a zero value.""",
1587
+ }, # column
1588
+ "apsNotificationEnable" : {
1589
+ "nodetype" : "scalar",
1590
+ "moduleName" : "APS-MIB",
1591
+ "oid" : "1.3.6.1.2.1.10.49.1.7",
1592
+ "status" : "current",
1593
+ "syntax" : {
1594
+ "type" : {
1595
+ "basetype" : "Bits",
1596
+ "switchover" : {
1597
+ "nodetype" : "namednumber",
1598
+ "number" : "0"
1599
+ },
1600
+ "modeMismatch" : {
1601
+ "nodetype" : "namednumber",
1602
+ "number" : "1"
1603
+ },
1604
+ "channelMismatch" : {
1605
+ "nodetype" : "namednumber",
1606
+ "number" : "2"
1607
+ },
1608
+ "psbf" : {
1609
+ "nodetype" : "namednumber",
1610
+ "number" : "3"
1611
+ },
1612
+ "feplf" : {
1613
+ "nodetype" : "namednumber",
1614
+ "number" : "4"
1615
+ },
1616
+ },
1617
+ },
1618
+ "access" : "readwrite",
1619
+ "default" : "()",
1620
+ "description" :
1621
+ """Provides the ability to enable and disable notifications
1622
+ defined in this MIB.
1623
+
1624
+ switchover
1625
+
1626
+ Indicates apsEventSwitchover notifications
1627
+ should be generated.
1628
+
1629
+ modeMismatch
1630
+
1631
+ Indicates apsEventModeMismatch notifications
1632
+ should be generated.
1633
+
1634
+ channelMismatch
1635
+
1636
+ Indicates apsEventChannelMismatch notifications
1637
+ should be generated.
1638
+
1639
+ psbf
1640
+
1641
+ Indicates apsEventPSBF notifications
1642
+ should be generated.
1643
+
1644
+ feplf
1645
+
1646
+ Indicates apsEventFEPLF notifications
1647
+ should be generated. """,
1648
+ }, # scalar
1649
+ "apsMIBNotifications" : {
1650
+ "nodetype" : "node",
1651
+ "moduleName" : "APS-MIB",
1652
+ "oid" : "1.3.6.1.2.1.10.49.2",
1653
+ }, # node
1654
+ "apsNotificationsPrefix" : {
1655
+ "nodetype" : "node",
1656
+ "moduleName" : "APS-MIB",
1657
+ "oid" : "1.3.6.1.2.1.10.49.2.0",
1658
+ }, # node
1659
+ "apsMIBConformance" : {
1660
+ "nodetype" : "node",
1661
+ "moduleName" : "APS-MIB",
1662
+ "oid" : "1.3.6.1.2.1.10.49.3",
1663
+ }, # node
1664
+ "apsGroups" : {
1665
+ "nodetype" : "node",
1666
+ "moduleName" : "APS-MIB",
1667
+ "oid" : "1.3.6.1.2.1.10.49.3.1",
1668
+ }, # node
1669
+ "apsCompliances" : {
1670
+ "nodetype" : "node",
1671
+ "moduleName" : "APS-MIB",
1672
+ "oid" : "1.3.6.1.2.1.10.49.3.2",
1673
+ }, # node
1674
+ }, # nodes
1675
+
1676
+ "notifications" : {
1677
+ "apsEventSwitchover" : {
1678
+ "nodetype" : "notification",
1679
+ "moduleName" : "APS-MIB",
1680
+ "oid" : "1.3.6.1.2.1.10.49.2.0.1",
1681
+ "status" : "current",
1682
+ "objects" : {
1683
+ "apsChanStatusSwitchovers" : {
1684
+ "nodetype" : "object",
1685
+ "module" : "APS-MIB"
1686
+ },
1687
+ "apsChanStatusCurrent" : {
1688
+ "nodetype" : "object",
1689
+ "module" : "APS-MIB"
1690
+ },
1691
+ },
1692
+ "description" :
1693
+ """An apsEventSwitchover notification is sent when the
1694
+ value of an instance of apsChanStatusSwitchovers increments.""",
1695
+ }, # notification
1696
+ "apsEventModeMismatch" : {
1697
+ "nodetype" : "notification",
1698
+ "moduleName" : "APS-MIB",
1699
+ "oid" : "1.3.6.1.2.1.10.49.2.0.2",
1700
+ "status" : "current",
1701
+ "objects" : {
1702
+ "apsStatusModeMismatches" : {
1703
+ "nodetype" : "object",
1704
+ "module" : "APS-MIB"
1705
+ },
1706
+ "apsStatusCurrent" : {
1707
+ "nodetype" : "object",
1708
+ "module" : "APS-MIB"
1709
+ },
1710
+ },
1711
+ "description" :
1712
+ """An apsEventModeMismatch notification is sent when the
1713
+ value of an instance of apsStatusModeMismatches increments.""",
1714
+ }, # notification
1715
+ "apsEventChannelMismatch" : {
1716
+ "nodetype" : "notification",
1717
+ "moduleName" : "APS-MIB",
1718
+ "oid" : "1.3.6.1.2.1.10.49.2.0.3",
1719
+ "status" : "current",
1720
+ "objects" : {
1721
+ "apsStatusChannelMismatches" : {
1722
+ "nodetype" : "object",
1723
+ "module" : "APS-MIB"
1724
+ },
1725
+ "apsStatusCurrent" : {
1726
+ "nodetype" : "object",
1727
+ "module" : "APS-MIB"
1728
+ },
1729
+ },
1730
+ "description" :
1731
+ """An apsEventChannelMismatch notification is sent when the
1732
+ value of an instance of apsStatusChannelMismatches increments.""",
1733
+ }, # notification
1734
+ "apsEventPSBF" : {
1735
+ "nodetype" : "notification",
1736
+ "moduleName" : "APS-MIB",
1737
+ "oid" : "1.3.6.1.2.1.10.49.2.0.4",
1738
+ "status" : "current",
1739
+ "objects" : {
1740
+ "apsStatusPSBFs" : {
1741
+ "nodetype" : "object",
1742
+ "module" : "APS-MIB"
1743
+ },
1744
+ "apsStatusCurrent" : {
1745
+ "nodetype" : "object",
1746
+ "module" : "APS-MIB"
1747
+ },
1748
+ },
1749
+ "description" :
1750
+ """An apsEventPSBF notification is sent when the
1751
+ value of an instance of apsStatusPSBFs increments.""",
1752
+ }, # notification
1753
+ "apsEventFEPLF" : {
1754
+ "nodetype" : "notification",
1755
+ "moduleName" : "APS-MIB",
1756
+ "oid" : "1.3.6.1.2.1.10.49.2.0.5",
1757
+ "status" : "current",
1758
+ "objects" : {
1759
+ "apsStatusFEPLFs" : {
1760
+ "nodetype" : "object",
1761
+ "module" : "APS-MIB"
1762
+ },
1763
+ "apsStatusCurrent" : {
1764
+ "nodetype" : "object",
1765
+ "module" : "APS-MIB"
1766
+ },
1767
+ },
1768
+ "description" :
1769
+ """An apsEventFEPLFs notification is sent when the
1770
+ value of an instance of apsStatusFEPLFs increments.""",
1771
+ }, # notification
1772
+ }, # notifications
1773
+
1774
+ "groups" : {
1775
+ "apsConfigGeneral" : {
1776
+ "nodetype" : "group",
1777
+ "moduleName" : "APS-MIB",
1778
+ "oid" : "1.3.6.1.2.1.10.49.3.1.1",
1779
+ "status" : "current",
1780
+ "members" : {
1781
+ "apsConfigMode" : {
1782
+ "nodetype" : "member",
1783
+ "module" : "APS-MIB"
1784
+ },
1785
+ "apsConfigRevert" : {
1786
+ "nodetype" : "member",
1787
+ "module" : "APS-MIB"
1788
+ },
1789
+ "apsConfigDirection" : {
1790
+ "nodetype" : "member",
1791
+ "module" : "APS-MIB"
1792
+ },
1793
+ "apsConfigExtraTraffic" : {
1794
+ "nodetype" : "member",
1795
+ "module" : "APS-MIB"
1796
+ },
1797
+ "apsConfigSdBerThreshold" : {
1798
+ "nodetype" : "member",
1799
+ "module" : "APS-MIB"
1800
+ },
1801
+ "apsConfigSfBerThreshold" : {
1802
+ "nodetype" : "member",
1803
+ "module" : "APS-MIB"
1804
+ },
1805
+ "apsConfigCreationTime" : {
1806
+ "nodetype" : "member",
1807
+ "module" : "APS-MIB"
1808
+ },
1809
+ "apsConfigRowStatus" : {
1810
+ "nodetype" : "member",
1811
+ "module" : "APS-MIB"
1812
+ },
1813
+ "apsConfigStorageType" : {
1814
+ "nodetype" : "member",
1815
+ "module" : "APS-MIB"
1816
+ },
1817
+ "apsNotificationEnable" : {
1818
+ "nodetype" : "member",
1819
+ "module" : "APS-MIB"
1820
+ },
1821
+ }, # members
1822
+ "description" :
1823
+ """A collection of apsConfigTable objects providing configuration
1824
+ information applicable to all linear APS groups.""",
1825
+ }, # group
1826
+ "apsConfigWtr" : {
1827
+ "nodetype" : "group",
1828
+ "moduleName" : "APS-MIB",
1829
+ "oid" : "1.3.6.1.2.1.10.49.3.1.2",
1830
+ "status" : "current",
1831
+ "members" : {
1832
+ "apsConfigWaitToRestore" : {
1833
+ "nodetype" : "member",
1834
+ "module" : "APS-MIB"
1835
+ },
1836
+ }, # members
1837
+ "description" :
1838
+ """The apsConfigTable object that provides information which is
1839
+ applicable to groups supporting a configurable WTR period.""",
1840
+ }, # group
1841
+ "apsCommandOnePlusOne" : {
1842
+ "nodetype" : "group",
1843
+ "moduleName" : "APS-MIB",
1844
+ "oid" : "1.3.6.1.2.1.10.49.3.1.3",
1845
+ "status" : "current",
1846
+ "members" : {
1847
+ "apsCommandSwitch" : {
1848
+ "nodetype" : "member",
1849
+ "module" : "APS-MIB"
1850
+ },
1851
+ }, # members
1852
+ "description" :
1853
+ """The apsCommandTable object which is applicable to groups
1854
+ implementing the linear APS 1+1 architecture. Also, set
1855
+ operations must be supported.""",
1856
+ }, # group
1857
+ "apsCommandOneToN" : {
1858
+ "nodetype" : "group",
1859
+ "moduleName" : "APS-MIB",
1860
+ "oid" : "1.3.6.1.2.1.10.49.3.1.4",
1861
+ "status" : "current",
1862
+ "members" : {
1863
+ "apsCommandSwitch" : {
1864
+ "nodetype" : "member",
1865
+ "module" : "APS-MIB"
1866
+ },
1867
+ "apsCommandControl" : {
1868
+ "nodetype" : "member",
1869
+ "module" : "APS-MIB"
1870
+ },
1871
+ }, # members
1872
+ "description" :
1873
+ """A collection of apsCommandTable objects which are applicable to
1874
+ groups implementing the linear APS 1:n architecture. Also, set
1875
+ operations must be supported.""",
1876
+ }, # group
1877
+ "apsStatusGeneral" : {
1878
+ "nodetype" : "group",
1879
+ "moduleName" : "APS-MIB",
1880
+ "oid" : "1.3.6.1.2.1.10.49.3.1.5",
1881
+ "status" : "current",
1882
+ "members" : {
1883
+ "apsStatusK1K2Rcv" : {
1884
+ "nodetype" : "member",
1885
+ "module" : "APS-MIB"
1886
+ },
1887
+ "apsStatusK1K2Trans" : {
1888
+ "nodetype" : "member",
1889
+ "module" : "APS-MIB"
1890
+ },
1891
+ "apsStatusCurrent" : {
1892
+ "nodetype" : "member",
1893
+ "module" : "APS-MIB"
1894
+ },
1895
+ "apsStatusModeMismatches" : {
1896
+ "nodetype" : "member",
1897
+ "module" : "APS-MIB"
1898
+ },
1899
+ "apsStatusChannelMismatches" : {
1900
+ "nodetype" : "member",
1901
+ "module" : "APS-MIB"
1902
+ },
1903
+ "apsStatusPSBFs" : {
1904
+ "nodetype" : "member",
1905
+ "module" : "APS-MIB"
1906
+ },
1907
+ "apsStatusFEPLFs" : {
1908
+ "nodetype" : "member",
1909
+ "module" : "APS-MIB"
1910
+ },
1911
+ "apsStatusSwitchedChannel" : {
1912
+ "nodetype" : "member",
1913
+ "module" : "APS-MIB"
1914
+ },
1915
+ "apsStatusDiscontinuityTime" : {
1916
+ "nodetype" : "member",
1917
+ "module" : "APS-MIB"
1918
+ },
1919
+ }, # members
1920
+ "description" :
1921
+ """A collection of apsStatusTable objects providing status
1922
+ information applicable to all linear APS groups.""",
1923
+ }, # group
1924
+ "apsChanGeneral" : {
1925
+ "nodetype" : "group",
1926
+ "moduleName" : "APS-MIB",
1927
+ "oid" : "1.3.6.1.2.1.10.49.3.1.6",
1928
+ "status" : "current",
1929
+ "members" : {
1930
+ "apsChanConfigIfIndex" : {
1931
+ "nodetype" : "member",
1932
+ "module" : "APS-MIB"
1933
+ },
1934
+ "apsChanConfigRowStatus" : {
1935
+ "nodetype" : "member",
1936
+ "module" : "APS-MIB"
1937
+ },
1938
+ "apsChanConfigStorageType" : {
1939
+ "nodetype" : "member",
1940
+ "module" : "APS-MIB"
1941
+ },
1942
+ "apsChanStatusCurrent" : {
1943
+ "nodetype" : "member",
1944
+ "module" : "APS-MIB"
1945
+ },
1946
+ "apsChanStatusSignalDegrades" : {
1947
+ "nodetype" : "member",
1948
+ "module" : "APS-MIB"
1949
+ },
1950
+ "apsChanStatusSignalFailures" : {
1951
+ "nodetype" : "member",
1952
+ "module" : "APS-MIB"
1953
+ },
1954
+ "apsChanStatusSwitchovers" : {
1955
+ "nodetype" : "member",
1956
+ "module" : "APS-MIB"
1957
+ },
1958
+ "apsChanStatusLastSwitchover" : {
1959
+ "nodetype" : "member",
1960
+ "module" : "APS-MIB"
1961
+ },
1962
+ "apsChanStatusSwitchoverSeconds" : {
1963
+ "nodetype" : "member",
1964
+ "module" : "APS-MIB"
1965
+ },
1966
+ "apsChanStatusDiscontinuityTime" : {
1967
+ "nodetype" : "member",
1968
+ "module" : "APS-MIB"
1969
+ },
1970
+ }, # members
1971
+ "description" :
1972
+ """A collection of channel objects providing information
1973
+ applicable to all linear APS channels.""",
1974
+ }, # group
1975
+ "apsChanOneToN" : {
1976
+ "nodetype" : "group",
1977
+ "moduleName" : "APS-MIB",
1978
+ "oid" : "1.3.6.1.2.1.10.49.3.1.7",
1979
+ "status" : "current",
1980
+ "members" : {
1981
+ "apsChanConfigPriority" : {
1982
+ "nodetype" : "member",
1983
+ "module" : "APS-MIB"
1984
+ },
1985
+ }, # members
1986
+ "description" :
1987
+ """The apsChanConfigTable object that provides information which
1988
+ is only applicable to groups implementing the linear APS 1:n
1989
+ architecture.""",
1990
+ }, # group
1991
+ "apsTotalsGroup" : {
1992
+ "nodetype" : "group",
1993
+ "moduleName" : "APS-MIB",
1994
+ "oid" : "1.3.6.1.2.1.10.49.3.1.8",
1995
+ "status" : "current",
1996
+ "members" : {
1997
+ "apsConfigGroups" : {
1998
+ "nodetype" : "member",
1999
+ "module" : "APS-MIB"
2000
+ },
2001
+ "apsChanLTEs" : {
2002
+ "nodetype" : "member",
2003
+ "module" : "APS-MIB"
2004
+ },
2005
+ }, # members
2006
+ "description" :
2007
+ """A collection of objects providing optional counts of configured
2008
+ APS groups and SONET LTE interfaces.""",
2009
+ }, # group
2010
+ "apsMapGroup" : {
2011
+ "nodetype" : "group",
2012
+ "moduleName" : "APS-MIB",
2013
+ "oid" : "1.3.6.1.2.1.10.49.3.1.9",
2014
+ "status" : "current",
2015
+ "members" : {
2016
+ "apsMapGroupName" : {
2017
+ "nodetype" : "member",
2018
+ "module" : "APS-MIB"
2019
+ },
2020
+ "apsMapChanNumber" : {
2021
+ "nodetype" : "member",
2022
+ "module" : "APS-MIB"
2023
+ },
2024
+ }, # members
2025
+ "description" :
2026
+ """A collection of apsMapTable objects providing a mapping
2027
+ from sonet(39) InterfaceIndex to group name and channel
2028
+ number for assigned APS channels and a list of unassigned
2029
+ sonet(39) interfaces.""",
2030
+ }, # group
2031
+ "apsEventGroup" : {
2032
+ "nodetype" : "group",
2033
+ "moduleName" : "APS-MIB",
2034
+ "oid" : "1.3.6.1.2.1.10.49.3.1.10",
2035
+ "status" : "current",
2036
+ "members" : {
2037
+ "apsEventSwitchover" : {
2038
+ "nodetype" : "member",
2039
+ "module" : "APS-MIB"
2040
+ },
2041
+ "apsEventModeMismatch" : {
2042
+ "nodetype" : "member",
2043
+ "module" : "APS-MIB"
2044
+ },
2045
+ "apsEventChannelMismatch" : {
2046
+ "nodetype" : "member",
2047
+ "module" : "APS-MIB"
2048
+ },
2049
+ "apsEventPSBF" : {
2050
+ "nodetype" : "member",
2051
+ "module" : "APS-MIB"
2052
+ },
2053
+ "apsEventFEPLF" : {
2054
+ "nodetype" : "member",
2055
+ "module" : "APS-MIB"
2056
+ },
2057
+ }, # members
2058
+ "description" :
2059
+ """A collection of SONET linear APS notifications.""",
2060
+ }, # group
2061
+ }, # groups
2062
+
2063
+ "compliances" : {
2064
+ "apsFullCompliance" : {
2065
+ "nodetype" : "compliance",
2066
+ "moduleName" : "APS-MIB",
2067
+ "oid" : "1.3.6.1.2.1.10.49.3.2.1",
2068
+ "status" : "current",
2069
+ "description" :
2070
+ """When this MIB is implemented with support for read-create, then
2071
+ such an implementation can claim read/write compliance. Linear
2072
+ APS groups can then be both monitored and configured with this
2073
+ MIB.
2074
+
2075
+ Note that An agent is not required to process SNMP Set Requests
2076
+ that affect multiple control objects within this MIB. This is
2077
+ intended to simplify the processing of Set Requests for the
2078
+ various control tables by eliminating the possibility that a
2079
+ single Set PDU will contain multiple varbinds which are in
2080
+ conflict. """,
2081
+ "requires" : {
2082
+ "apsConfigGeneral" : {
2083
+ "nodetype" : "mandatory",
2084
+ "module" : "APS-MIB"
2085
+ },
2086
+ "apsStatusGeneral" : {
2087
+ "nodetype" : "mandatory",
2088
+ "module" : "APS-MIB"
2089
+ },
2090
+ "apsChanGeneral" : {
2091
+ "nodetype" : "mandatory",
2092
+ "module" : "APS-MIB"
2093
+ },
2094
+ "apsConfigWtr" : {
2095
+ "nodetype" : "optional",
2096
+ "module" : "APS-MIB",
2097
+ "description" :
2098
+ """Implementation of this group is optional for all
2099
+ linear APS implementations. The information is
2100
+ applicable to groups supporting a configurable
2101
+ WTR period.""",
2102
+ },
2103
+ "apsCommandOnePlusOne" : {
2104
+ "nodetype" : "optional",
2105
+ "module" : "APS-MIB",
2106
+ "description" :
2107
+ """Implementation of this group is optional for all
2108
+ linear APS implementations. The information is
2109
+ applicable to groups implementing the linear
2110
+
2111
+
2112
+
2113
+ APS 1+1 architecture and supporting set operations.""",
2114
+ },
2115
+ "apsCommandOneToN" : {
2116
+ "nodetype" : "optional",
2117
+ "module" : "APS-MIB",
2118
+ "description" :
2119
+ """Implementation of this group is optional for all
2120
+ linear APS implementations. The information is
2121
+ applicable to groups implementing the linear
2122
+ APS 1:n architecture and supporting set operations.""",
2123
+ },
2124
+ "apsChanOneToN" : {
2125
+ "nodetype" : "optional",
2126
+ "module" : "APS-MIB",
2127
+ "description" :
2128
+ """Implementation of this group is optional for all
2129
+ linear APS implementations. The information is
2130
+ applicable to groups implementing the linear
2131
+ APS 1:n architecture.""",
2132
+ },
2133
+ "apsTotalsGroup" : {
2134
+ "nodetype" : "optional",
2135
+ "module" : "APS-MIB",
2136
+ "description" :
2137
+ """Implementation of this group is optional for all
2138
+ linear APS implementations.""",
2139
+ },
2140
+ "apsMapGroup" : {
2141
+ "nodetype" : "optional",
2142
+ "module" : "APS-MIB",
2143
+ "description" :
2144
+ """Implementation of this group is optional for all
2145
+ linear APS implementations.""",
2146
+ },
2147
+ "apsEventGroup" : {
2148
+ "nodetype" : "optional",
2149
+ "module" : "APS-MIB",
2150
+ "description" :
2151
+ """Implementation of this group is optional for all
2152
+ linear APS implementations.""",
2153
+ },
2154
+ }, # requires
2155
+ "refinements" : {
2156
+ "apsConfigRowStatus" : {
2157
+ "module" : "APS-MIB",
2158
+ "syntax" : {
2159
+ "type" : {
2160
+ "basetype" : "Enumeration",
2161
+ "parent module" : {
2162
+ "name" : "SNMPv2-TC",
2163
+ "type" : "RowStatus",
2164
+ },
2165
+ "active" : {
2166
+ "nodetype" : "namednumber",
2167
+ "number" : "1"
2168
+ },
2169
+ },
2170
+ }, # syntax
2171
+ "writesyntax" : {
2172
+ "type" : {
2173
+ "basetype" : "Enumeration",
2174
+ "parent module" : {
2175
+ "name" : "SNMPv2-TC",
2176
+ "type" : "RowStatus",
2177
+ },
2178
+ "createAndGo" : {
2179
+ "nodetype" : "namednumber",
2180
+ "number" : "4"
2181
+ },
2182
+ "destroy" : {
2183
+ "nodetype" : "namednumber",
2184
+ "number" : "6"
2185
+ },
2186
+ },
2187
+ }, # writesyntax
2188
+ "description" :
2189
+ """Support for createAndWait and notInService is not
2190
+ required.""",
2191
+ },
2192
+ "apsChanConfigRowStatus" : {
2193
+ "module" : "APS-MIB",
2194
+ "syntax" : {
2195
+ "type" : {
2196
+ "basetype" : "Enumeration",
2197
+ "parent module" : {
2198
+ "name" : "SNMPv2-TC",
2199
+ "type" : "RowStatus",
2200
+ },
2201
+ "active" : {
2202
+ "nodetype" : "namednumber",
2203
+ "number" : "1"
2204
+ },
2205
+ },
2206
+ }, # syntax
2207
+ "writesyntax" : {
2208
+ "type" : {
2209
+ "basetype" : "Enumeration",
2210
+ "parent module" : {
2211
+ "name" : "SNMPv2-TC",
2212
+ "type" : "RowStatus",
2213
+ },
2214
+ "createAndGo" : {
2215
+ "nodetype" : "namednumber",
2216
+ "number" : "4"
2217
+ },
2218
+ "destroy" : {
2219
+ "nodetype" : "namednumber",
2220
+ "number" : "6"
2221
+ },
2222
+ },
2223
+ }, # writesyntax
2224
+ "description" :
2225
+ """Support for createAndWait and notInService is not
2226
+ required.""",
2227
+ },
2228
+ }, # refinements
2229
+
2230
+ }, # compliance
2231
+ "apsReadOnlyCompliance" : {
2232
+ "nodetype" : "compliance",
2233
+ "moduleName" : "APS-MIB",
2234
+ "oid" : "1.3.6.1.2.1.10.49.3.2.2",
2235
+ "status" : "current",
2236
+ "description" :
2237
+ """When this MIB is implemented without support for read-create
2238
+ (i.e. in read-only mode), then that implementation can claim
2239
+ read-only compliance. In that case, linear APS groups can be
2240
+ monitored but cannot be configured with this MIB.""",
2241
+ "requires" : {
2242
+ "apsConfigGeneral" : {
2243
+ "nodetype" : "mandatory",
2244
+ "module" : "APS-MIB"
2245
+ },
2246
+ "apsStatusGeneral" : {
2247
+ "nodetype" : "mandatory",
2248
+ "module" : "APS-MIB"
2249
+ },
2250
+ "apsChanGeneral" : {
2251
+ "nodetype" : "mandatory",
2252
+ "module" : "APS-MIB"
2253
+ },
2254
+ "apsConfigWtr" : {
2255
+ "nodetype" : "optional",
2256
+ "module" : "APS-MIB",
2257
+ "description" :
2258
+ """Implementation of this group is optional for all
2259
+ linear APS implementations. The information is
2260
+ applicable to groups supporting a configurable
2261
+ WTR period.""",
2262
+ },
2263
+ "apsCommandOnePlusOne" : {
2264
+ "nodetype" : "optional",
2265
+ "module" : "APS-MIB",
2266
+ "description" :
2267
+ """Implementation of this group is optional for all
2268
+ linear APS implementations. The information is
2269
+ applicable to groups implementing the linear
2270
+ APS 1+1 architecture and supporting set operations.""",
2271
+ },
2272
+ "apsCommandOneToN" : {
2273
+ "nodetype" : "optional",
2274
+ "module" : "APS-MIB",
2275
+ "description" :
2276
+ """Implementation of this group is optional for all
2277
+ linear APS implementations. The information is
2278
+ applicable to groups implementing the linear
2279
+ APS 1:n architecture and supporting set operations.""",
2280
+ },
2281
+ "apsChanOneToN" : {
2282
+ "nodetype" : "optional",
2283
+ "module" : "APS-MIB",
2284
+ "description" :
2285
+ """Implementation of this group is optional for all
2286
+ linear APS implementations. The information is
2287
+ applicable to groups implementing the linear
2288
+ APS 1:n architecture.""",
2289
+ },
2290
+ "apsTotalsGroup" : {
2291
+ "nodetype" : "optional",
2292
+ "module" : "APS-MIB",
2293
+ "description" :
2294
+ """Implementation of this group is optional for all
2295
+ linear APS implementations.""",
2296
+ },
2297
+ "apsMapGroup" : {
2298
+ "nodetype" : "optional",
2299
+ "module" : "APS-MIB",
2300
+ "description" :
2301
+ """Implementation of this group is optional for all
2302
+ linear APS implementations.""",
2303
+ },
2304
+ "apsEventGroup" : {
2305
+ "nodetype" : "optional",
2306
+ "module" : "APS-MIB",
2307
+ "description" :
2308
+ """Implementation of this group is optional for all
2309
+ linear APS implementations.""",
2310
+ },
2311
+ }, # requires
2312
+ "refinements" : {
2313
+ "apsConfigMode" : {
2314
+ "module" : "APS-MIB",
2315
+ "access" : "readonly",
2316
+ "description" :
2317
+ """Write access is not required.""",
2318
+ },
2319
+ "apsConfigRevert" : {
2320
+ "module" : "APS-MIB",
2321
+ "access" : "readonly",
2322
+ "description" :
2323
+ """Write access is not required.""",
2324
+ },
2325
+ "apsConfigDirection" : {
2326
+ "module" : "APS-MIB",
2327
+ "access" : "readonly",
2328
+ "description" :
2329
+ """Write access is not required.""",
2330
+ },
2331
+ "apsConfigExtraTraffic" : {
2332
+ "module" : "APS-MIB",
2333
+ "access" : "readonly",
2334
+ "description" :
2335
+ """Write access is not required.""",
2336
+ },
2337
+ "apsConfigSdBerThreshold" : {
2338
+ "module" : "APS-MIB",
2339
+ "access" : "readonly",
2340
+ "description" :
2341
+ """Write access is not required.""",
2342
+ },
2343
+ "apsConfigSfBerThreshold" : {
2344
+ "module" : "APS-MIB",
2345
+ "access" : "readonly",
2346
+ "description" :
2347
+ """Write access is not required.""",
2348
+ },
2349
+ "apsConfigWaitToRestore" : {
2350
+ "module" : "APS-MIB",
2351
+ "access" : "readonly",
2352
+ "description" :
2353
+ """Write access is not required.""",
2354
+ },
2355
+ "apsConfigRowStatus" : {
2356
+ "module" : "APS-MIB",
2357
+ "syntax" : {
2358
+ "type" : {
2359
+ "basetype" : "Enumeration",
2360
+ "parent module" : {
2361
+ "name" : "SNMPv2-TC",
2362
+ "type" : "RowStatus",
2363
+ },
2364
+ "active" : {
2365
+ "nodetype" : "namednumber",
2366
+ "number" : "1"
2367
+ },
2368
+ },
2369
+ }, # syntax
2370
+ "access" : "readonly",
2371
+ "description" :
2372
+ """Write access is not required, and active is the only status
2373
+ that needs to be supported.""",
2374
+ },
2375
+ "apsConfigStorageType" : {
2376
+ "module" : "APS-MIB",
2377
+ "access" : "readonly",
2378
+ "description" :
2379
+ """Write access is not required.""",
2380
+ },
2381
+ "apsChanConfigIfIndex" : {
2382
+ "module" : "APS-MIB",
2383
+ "access" : "readonly",
2384
+ "description" :
2385
+ """Write access is not required.""",
2386
+ },
2387
+ "apsChanConfigPriority" : {
2388
+ "module" : "APS-MIB",
2389
+ "access" : "readonly",
2390
+ "description" :
2391
+ """Write access is not required.""",
2392
+ },
2393
+ "apsChanConfigRowStatus" : {
2394
+ "module" : "APS-MIB",
2395
+ "syntax" : {
2396
+ "type" : {
2397
+ "basetype" : "Enumeration",
2398
+ "parent module" : {
2399
+ "name" : "SNMPv2-TC",
2400
+ "type" : "RowStatus",
2401
+ },
2402
+ "active" : {
2403
+ "nodetype" : "namednumber",
2404
+ "number" : "1"
2405
+ },
2406
+ },
2407
+ }, # syntax
2408
+ "access" : "readonly",
2409
+ "description" :
2410
+ """Write access is not required, and active is the only status
2411
+ that needs to be supported.""",
2412
+ },
2413
+ "apsChanConfigStorageType" : {
2414
+ "module" : "APS-MIB",
2415
+ "access" : "readonly",
2416
+ "description" :
2417
+ """Write access is not required.""",
2418
+ },
2419
+ "apsNotificationEnable" : {
2420
+ "module" : "APS-MIB",
2421
+ "access" : "readonly",
2422
+ "description" :
2423
+ """Write access is not required.""",
2424
+ },
2425
+ }, # refinements
2426
+
2427
+ }, # compliance
2428
+ }, # compliances
2429
+
2430
+ }