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,2876 @@
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 TE-LINK-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TE-LINK-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TE-LINK-STD-MIB",
11
+
12
+ "TE-LINK-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Multiprotocol Label Switching (MPLS) Working Group""",
17
+ "contact" :
18
+ """ Martin Dubuc
19
+ Email: mdubuc@ncf.ca
20
+
21
+ Thomas D. Nadeau
22
+ Email: tnadeau@cisco.com
23
+
24
+
25
+
26
+
27
+ Jonathan P. Lang
28
+ Email: jplang@ieee.org
29
+
30
+ Comments about this document should be emailed directly to
31
+ the MPLS working group mailing list at mpls@uu.net.""",
32
+ "description" :
33
+ """Copyright (C) 2005 The Internet Society. This version of
34
+ this MIB module is part of RFC 4220; see the RFC
35
+ itself for full legal notices.
36
+
37
+ This MIB module contains managed object definitions for
38
+ MPLS traffic engineering links as defined in
39
+ 'Link Bundling in MPLS Traffic Engineering (TE)'.""",
40
+ "revisions" : (
41
+ {
42
+ "date" : "2005-10-11 00:00",
43
+ "description" :
44
+ """Initial version published as RFC 4220.""",
45
+ },
46
+ ),
47
+ "identity node" : "teLinkStdMIB",
48
+ },
49
+
50
+ "imports" : (
51
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
52
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
53
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
56
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
57
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
58
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
59
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
60
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
61
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
62
+ {"module" : "IF-MIB", "name" : "ifIndex"},
63
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
64
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
65
+ ),
66
+
67
+ "typedefs" : {
68
+ "TeLinkBandwidth" : {
69
+ "basetype" : "OctetString",
70
+ "status" : "current",
71
+ "ranges" : [
72
+ {
73
+ "min" : "4",
74
+ "max" : "4"
75
+ },
76
+ ],
77
+ "range" : {
78
+ "min" : "4",
79
+ "max" : "4"
80
+ },
81
+ "description" :
82
+ """This type is used to represent link bandwidth in bps. This
83
+ value is represented using a 4 octet IEEE floating point
84
+ format [IEEE]. The floating point representation is not
85
+ used to represent fractional value but rather to allow
86
+ specification of large numbers that cannot be expressed
87
+ with 32-bit integers.""",
88
+ "reference" :
89
+ """IEEE Standard for Binary Floating-Point Arithmetic,
90
+ Standard 754-1985""",
91
+ },
92
+ "TeLinkPriority" : {
93
+ "basetype" : "Unsigned32",
94
+ "status" : "current",
95
+ "ranges" : [
96
+ {
97
+ "min" : "0",
98
+ "max" : "7"
99
+ },
100
+ ],
101
+ "range" : {
102
+ "min" : "0",
103
+ "max" : "7"
104
+ },
105
+ "format" : "d",
106
+ "description" :
107
+ """This type is used to represent a priority. Each connection
108
+ is assigned a priority. This priority is used when
109
+ accounting for bandwidth on TE links or component
110
+ links, for resource allocation and for rerouting purposes.
111
+ Value 0 is the highest priority. Value 7 is the lowest
112
+ priority.""",
113
+ },
114
+ "TeLinkProtection" : {
115
+ "basetype" : "Enumeration",
116
+ "status" : "current",
117
+ "primary" : {
118
+ "nodetype" : "namednumber",
119
+ "number" : "1"
120
+ },
121
+ "secondary" : {
122
+ "nodetype" : "namednumber",
123
+ "number" : "2"
124
+ },
125
+ "description" :
126
+ """Link protection.""",
127
+ },
128
+ "TeLinkSwitchingCapability" : {
129
+ "basetype" : "Enumeration",
130
+ "status" : "current",
131
+ "packetSwitch1" : {
132
+ "nodetype" : "namednumber",
133
+ "number" : "1"
134
+ },
135
+ "packetSwitch2" : {
136
+ "nodetype" : "namednumber",
137
+ "number" : "2"
138
+ },
139
+ "packetSwitch3" : {
140
+ "nodetype" : "namednumber",
141
+ "number" : "3"
142
+ },
143
+ "packetSwitch4" : {
144
+ "nodetype" : "namednumber",
145
+ "number" : "4"
146
+ },
147
+ "layer2Switch" : {
148
+ "nodetype" : "namednumber",
149
+ "number" : "51"
150
+ },
151
+ "tdm" : {
152
+ "nodetype" : "namednumber",
153
+ "number" : "100"
154
+ },
155
+ "lambdaSwitch" : {
156
+ "nodetype" : "namednumber",
157
+ "number" : "150"
158
+ },
159
+ "fiberSwitch" : {
160
+ "nodetype" : "namednumber",
161
+ "number" : "200"
162
+ },
163
+ "description" :
164
+ """Switching capability as specified in the 'OSPF Extensions in
165
+ Support of Generalized Multi-Protocol Label Switching
166
+ (GMPLS)' document. The values specified in this document
167
+ are not contiguous.""",
168
+ },
169
+ "TeLinkEncodingType" : {
170
+ "basetype" : "Enumeration",
171
+ "status" : "current",
172
+ "packet" : {
173
+ "nodetype" : "namednumber",
174
+ "number" : "1"
175
+ },
176
+ "ethernet" : {
177
+ "nodetype" : "namednumber",
178
+ "number" : "2"
179
+ },
180
+ "ansiEtsiPdh" : {
181
+ "nodetype" : "namednumber",
182
+ "number" : "3"
183
+ },
184
+ "sdhItuSonetAnsi" : {
185
+ "nodetype" : "namednumber",
186
+ "number" : "5"
187
+ },
188
+ "digitalWrapper" : {
189
+ "nodetype" : "namednumber",
190
+ "number" : "7"
191
+ },
192
+ "lambda" : {
193
+ "nodetype" : "namednumber",
194
+ "number" : "8"
195
+ },
196
+ "fiber" : {
197
+ "nodetype" : "namednumber",
198
+ "number" : "9"
199
+ },
200
+ "fiberChannel" : {
201
+ "nodetype" : "namednumber",
202
+ "number" : "11"
203
+ },
204
+ "description" :
205
+ """Link encoding type as specified in 'Generalized
206
+ Multi-Protocol Label Switching (GMPLS) Signaling
207
+ Functional Description' document. The values
208
+ specified in this document are not contiguous.""",
209
+ },
210
+ "TeLinkSonetSdhIndication" : {
211
+ "basetype" : "Enumeration",
212
+ "status" : "current",
213
+ "standard" : {
214
+ "nodetype" : "namednumber",
215
+ "number" : "0"
216
+ },
217
+ "arbitrary" : {
218
+ "nodetype" : "namednumber",
219
+ "number" : "1"
220
+ },
221
+ "description" :
222
+ """This convention is used to indicate whether the interface
223
+ supports Standard or Arbitrary SONET/SDH. To simplify the
224
+ mapping process, the values used in this textual convention
225
+ match the values specified in the interface switching
226
+ capability specific information field, i.e., 0 for Standard
227
+ SONET/SDH and 1 for Arbitrary SONET/SDH.""",
228
+ "reference" :
229
+ """OSPF Extensions in Support of Generalized Multi-Protocol
230
+ Label Switching (GMPLS), RFC 4203""",
231
+ },
232
+ }, # typedefs
233
+
234
+ "nodes" : {
235
+ "teLinkStdMIB" : {
236
+ "nodetype" : "node",
237
+ "moduleName" : "TE-LINK-STD-MIB",
238
+ "oid" : "1.3.6.1.2.1.10.200",
239
+ "status" : "current",
240
+ }, # node
241
+ "teLinkNotifications" : {
242
+ "nodetype" : "node",
243
+ "moduleName" : "TE-LINK-STD-MIB",
244
+ "oid" : "1.3.6.1.2.1.10.200.0",
245
+ }, # node
246
+ "teLinkObjects" : {
247
+ "nodetype" : "node",
248
+ "moduleName" : "TE-LINK-STD-MIB",
249
+ "oid" : "1.3.6.1.2.1.10.200.1",
250
+ }, # node
251
+ "teLinkTable" : {
252
+ "nodetype" : "table",
253
+ "moduleName" : "TE-LINK-STD-MIB",
254
+ "oid" : "1.3.6.1.2.1.10.200.1.1",
255
+ "status" : "current",
256
+ "description" :
257
+ """This table specifies the grouping of component links into
258
+ TE links and the grouping of TE links into bundled links.""",
259
+ }, # table
260
+ "teLinkEntry" : {
261
+ "nodetype" : "row",
262
+ "moduleName" : "TE-LINK-STD-MIB",
263
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1",
264
+ "create" : "true",
265
+ "status" : "current",
266
+ "linkage" : [
267
+ "ifIndex",
268
+ ],
269
+ "description" :
270
+ """An entry in this table exists for each ifEntry with an
271
+ ifType of teLink(200), i.e., for every TE link. An ifEntry
272
+ in the ifTable must exist before a teLinkEntry is created
273
+ with the corresponding ifIndex. If a TE link entry in the
274
+ ifTable is destroyed, then so is the corresponding entry
275
+ in the teLinkTable. The administrative and operational
276
+ status values are controlled from the ifEntry.""",
277
+ }, # row
278
+ "teLinkAddressType" : {
279
+ "nodetype" : "column",
280
+ "moduleName" : "TE-LINK-STD-MIB",
281
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.1",
282
+ "status" : "current",
283
+ "syntax" : {
284
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
285
+ },
286
+ "access" : "readwrite",
287
+ "description" :
288
+ """The type of Internet address for the TE link.""",
289
+ }, # column
290
+ "teLinkLocalIpAddr" : {
291
+ "nodetype" : "column",
292
+ "moduleName" : "TE-LINK-STD-MIB",
293
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.2",
294
+ "status" : "current",
295
+ "syntax" : {
296
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
297
+ },
298
+ "access" : "readwrite",
299
+ "description" :
300
+ """The local Internet address for numbered links. The type of
301
+ this address is determined by the value of the
302
+ teLinkAddressType object.
303
+
304
+ For IPv4 and IPv6 numbered links, this object represents the
305
+ local IP address associated with the TE link. For an
306
+ unnumbered link, the local address is of type unknown, this
307
+ object is set to the zero length string, and the
308
+ teLinkOutgoingIfId object then identifies the unnumbered
309
+ address.
310
+
311
+ If the TE link is a Forwarding Adjacency (FA), the local
312
+ IP address is set to the head-end address of the FA-LSP.
313
+
314
+ If ipAddrTable is implemented, this object must have the
315
+ same value as the ipAdEntAddr object that belongs to the
316
+ row in ipAddrTable where ipAdEntIfIndex is equal to
317
+
318
+
319
+
320
+ ifIndex.""",
321
+ }, # column
322
+ "teLinkRemoteIpAddr" : {
323
+ "nodetype" : "column",
324
+ "moduleName" : "TE-LINK-STD-MIB",
325
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.3",
326
+ "status" : "current",
327
+ "syntax" : {
328
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
329
+ },
330
+ "access" : "readwrite",
331
+ "description" :
332
+ """The remote Internet address for numbered links. The type of
333
+ this address is determined by the value of the
334
+ teLinkAddressType object.
335
+
336
+ The remote IP address associated with the TE link (IPv4 and
337
+ IPv6 numbered links). For an unnumbered link, the remote
338
+ address is of type unknown, this object is set to the
339
+ zero length string, and the teLinkIncomingIfId object then
340
+ identifies the unnumbered address.
341
+
342
+ If the TE link is a Forwarding Adjacency, the remote IP
343
+ address is set to the tail-end address of the FA-LSP.""",
344
+ }, # column
345
+ "teLinkMetric" : {
346
+ "nodetype" : "column",
347
+ "moduleName" : "TE-LINK-STD-MIB",
348
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.4",
349
+ "status" : "current",
350
+ "syntax" : {
351
+ "type" : { "module" :"", "name" : "Unsigned32"},
352
+ },
353
+ "access" : "readwrite",
354
+ "description" :
355
+ """The traffic engineering metric for the TE link is
356
+ derived from its component links. All component links
357
+ within the TE link must have the same traffic
358
+ engineering metric.""",
359
+ "reference" :
360
+ """Link Bundling in MPLS Traffic Engineering (TE), RFC 4201""",
361
+ }, # column
362
+ "teLinkMaximumReservableBandwidth" : {
363
+ "nodetype" : "column",
364
+ "moduleName" : "TE-LINK-STD-MIB",
365
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.5",
366
+ "status" : "current",
367
+ "syntax" : {
368
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
369
+ },
370
+ "access" : "readonly",
371
+ "units" : "bps",
372
+ "description" :
373
+ """This attribute specifies the maximum reservable bandwidth on
374
+ the TE link. This is the union of the maximum reservable
375
+ bandwidth of all the component links within the
376
+ TE link that can be used to carry live traffic.""",
377
+ "reference" :
378
+ """OSPF Extensions in Support of Generalized Multi-Protocol
379
+ Label Switching (GMPLS), RFC 4203""",
380
+ }, # column
381
+ "teLinkProtectionType" : {
382
+ "nodetype" : "column",
383
+ "moduleName" : "TE-LINK-STD-MIB",
384
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.6",
385
+ "status" : "current",
386
+ "syntax" : {
387
+ "type" : {
388
+ "basetype" : "Enumeration",
389
+ "extraTraffic" : {
390
+ "nodetype" : "namednumber",
391
+ "number" : "1"
392
+ },
393
+ "unprotected" : {
394
+ "nodetype" : "namednumber",
395
+ "number" : "2"
396
+ },
397
+ "shared" : {
398
+ "nodetype" : "namednumber",
399
+ "number" : "3"
400
+ },
401
+ "dedicated1For1" : {
402
+ "nodetype" : "namednumber",
403
+ "number" : "4"
404
+ },
405
+ "dedicated1Plus1" : {
406
+ "nodetype" : "namednumber",
407
+ "number" : "5"
408
+ },
409
+ "enhanced" : {
410
+ "nodetype" : "namednumber",
411
+ "number" : "6"
412
+ },
413
+ },
414
+ },
415
+ "access" : "readwrite",
416
+ "description" :
417
+ """This attribute specifies the link protection type of the
418
+ TE link. Descriptions of the different protection types can
419
+ be found in the 'Routing Extensions in Support of
420
+ Generalized Multi-Protocol Label Switching (GMPLS)'
421
+ document.""",
422
+ "reference" :
423
+ """OSPF Extensions in Support of Generalized Multi-Protocol
424
+ Label Switching (GMPLS), RFC 4203 and
425
+ Routing Extensions in Support of Generalized Multi-Protocol
426
+ Label Switching (GMPLS), RFC 4202""",
427
+ }, # column
428
+ "teLinkWorkingPriority" : {
429
+ "nodetype" : "column",
430
+ "moduleName" : "TE-LINK-STD-MIB",
431
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.7",
432
+ "status" : "current",
433
+ "syntax" : {
434
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkPriority"},
435
+ },
436
+ "access" : "readwrite",
437
+ "description" :
438
+ """This object represents a priority value such that a new
439
+ connection with a higher priority, i.e., numerically lower
440
+ than this value, is guaranteed to be setup on a primary
441
+ link and not on a secondary link.""",
442
+ "reference" :
443
+ """OSPF Extensions in Support of Generalized Multi-Protocol
444
+ Label Switching (GMPLS), RFC 4203""",
445
+ }, # column
446
+ "teLinkResourceClass" : {
447
+ "nodetype" : "column",
448
+ "moduleName" : "TE-LINK-STD-MIB",
449
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.8",
450
+ "status" : "current",
451
+ "syntax" : {
452
+ "type" : { "module" :"", "name" : "Unsigned32"},
453
+ },
454
+ "access" : "readwrite",
455
+ "description" :
456
+ """This attribute specifies the TE link resource class.
457
+ The resource class is a 32 bit bitfield. The resource class
458
+ for a link bundle is derived from the resource class of its
459
+
460
+
461
+
462
+ TE links. All TE links within a link bundle must have the
463
+ same resource class. Encoding of the resource class is
464
+ described in the 'Traffic Engineering (TE) Extensions to
465
+ OSPF Version 2' document.""",
466
+ "reference" :
467
+ """Link Bundling in MPLS Traffic Engineering (TE), RFC 4201
468
+ and Traffic Engineering (TE) Extensions to OSPF Version 2,
469
+ RFC 3630""",
470
+ }, # column
471
+ "teLinkIncomingIfId" : {
472
+ "nodetype" : "column",
473
+ "moduleName" : "TE-LINK-STD-MIB",
474
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.9",
475
+ "status" : "current",
476
+ "syntax" : {
477
+ "type" : {
478
+ "basetype" : "Integer32",
479
+ "ranges" : [
480
+ {
481
+ "min" : "0",
482
+ "max" : "2147483647"
483
+ },
484
+ ],
485
+ "range" : {
486
+ "min" : "0",
487
+ "max" : "2147483647"
488
+ },
489
+ },
490
+ },
491
+ "access" : "readwrite",
492
+ "description" :
493
+ """For unnumbered links, the incoming interface is set to the
494
+ outgoing interface identifier chosen by the neighboring LSR
495
+ for the reverse link corresponding to this TE link. If the
496
+ link is numbered, the value of this object is 0 and the
497
+ address is stored in the teLinkRemoteIpAddr instead.""",
498
+ "reference" :
499
+ """Link Bundling in MPLS Traffic Engineering (TE), RFC 4201""",
500
+ }, # column
501
+ "teLinkOutgoingIfId" : {
502
+ "nodetype" : "column",
503
+ "moduleName" : "TE-LINK-STD-MIB",
504
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.10",
505
+ "status" : "current",
506
+ "syntax" : {
507
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
508
+ },
509
+ "access" : "readwrite",
510
+ "description" :
511
+ """If the link is unnumbered, the outgoing interface identifier
512
+ is set to the outgoing interface identifier chosen for the
513
+ TE link by the advertising LSR. If the link is numbered, the
514
+ value of this object is 0 and the address is stored in the
515
+ teLinkLocalIpAddr instead.""",
516
+ "reference" :
517
+ """Link Bundling in MPLS Traffic Engineering (TE), RFC 4201""",
518
+ }, # column
519
+ "teLinkRowStatus" : {
520
+ "nodetype" : "column",
521
+ "moduleName" : "TE-LINK-STD-MIB",
522
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.11",
523
+ "status" : "current",
524
+ "syntax" : {
525
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
526
+ },
527
+ "access" : "readwrite",
528
+ "description" :
529
+ """This variable is used to create, modify, and/or
530
+ delete a row in this table. None of the writable objects in
531
+ a row can be changed if status is active(1).""",
532
+ }, # column
533
+ "teLinkStorageType" : {
534
+ "nodetype" : "column",
535
+ "moduleName" : "TE-LINK-STD-MIB",
536
+ "oid" : "1.3.6.1.2.1.10.200.1.1.1.12",
537
+ "status" : "current",
538
+ "syntax" : {
539
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
540
+ },
541
+ "access" : "readwrite",
542
+ "description" :
543
+ """The storage type for this conceptual row in the
544
+ teLinkTable. Conceptual rows having the value
545
+ 'permanent' need not allow write-access to any
546
+ columnar object in the row.""",
547
+ }, # column
548
+ "teLinkDescriptorTable" : {
549
+ "nodetype" : "table",
550
+ "moduleName" : "TE-LINK-STD-MIB",
551
+ "oid" : "1.3.6.1.2.1.10.200.1.2",
552
+ "status" : "current",
553
+ "description" :
554
+ """This table specifies the interface switching capability
555
+ descriptors associated with the TE links.""",
556
+ }, # table
557
+ "teLinkDescriptorEntry" : {
558
+ "nodetype" : "row",
559
+ "moduleName" : "TE-LINK-STD-MIB",
560
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1",
561
+ "create" : "true",
562
+ "status" : "current",
563
+ "linkage" : [
564
+ "ifIndex",
565
+ "teLinkDescriptorId",
566
+ ],
567
+ "description" :
568
+ """An entry in this table is created for every TE link interface
569
+ switching capability descriptor. An ifEntry in the ifTable
570
+ must exist before a teLinkDescriptorEntry using the same
571
+ ifIndex is created. ifType of ifEntry must be teLink(200).
572
+ If a TE link entry in the ifTable is destroyed, then so are
573
+ all of the entries in the teLinkDescriptorTable that use the
574
+ ifIndex of this TE link.""",
575
+ }, # row
576
+ "teLinkDescriptorId" : {
577
+ "nodetype" : "column",
578
+ "moduleName" : "TE-LINK-STD-MIB",
579
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.1",
580
+ "status" : "current",
581
+ "syntax" : {
582
+ "type" : {
583
+ "basetype" : "Unsigned32",
584
+ "ranges" : [
585
+ {
586
+ "min" : "1",
587
+ "max" : "4294967295"
588
+ },
589
+ ],
590
+ "range" : {
591
+ "min" : "1",
592
+ "max" : "4294967295"
593
+ },
594
+ },
595
+ },
596
+ "access" : "noaccess",
597
+ "description" :
598
+ """This object specifies the link descriptor identifier.""",
599
+ }, # column
600
+ "teLinkDescrSwitchingCapability" : {
601
+ "nodetype" : "column",
602
+ "moduleName" : "TE-LINK-STD-MIB",
603
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.2",
604
+ "status" : "current",
605
+ "syntax" : {
606
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkSwitchingCapability"},
607
+ },
608
+ "access" : "readwrite",
609
+ "description" :
610
+ """This attribute specifies interface switching capability of
611
+ the TE link, which is derived from its component links.""",
612
+ "reference" :
613
+ """OSPF Extensions in Support of Generalized Multi-Protocol
614
+ Label Switching (GMPLS), RFC 4203""",
615
+ }, # column
616
+ "teLinkDescrEncodingType" : {
617
+ "nodetype" : "column",
618
+ "moduleName" : "TE-LINK-STD-MIB",
619
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.3",
620
+ "status" : "current",
621
+ "syntax" : {
622
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkEncodingType"},
623
+ },
624
+ "access" : "readwrite",
625
+ "description" :
626
+ """This attribute specifies the TE link encoding type.""",
627
+ "reference" :
628
+ """Generalized Multi-Protocol Label Switching (GMPLS)
629
+ Signaling Functional Description, RFC 3471""",
630
+ }, # column
631
+ "teLinkDescrMinLspBandwidth" : {
632
+ "nodetype" : "column",
633
+ "moduleName" : "TE-LINK-STD-MIB",
634
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.4",
635
+ "status" : "current",
636
+ "syntax" : {
637
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
638
+ },
639
+ "access" : "readwrite",
640
+ "units" : "bps",
641
+ "description" :
642
+ """This attribute specifies the minimum LSP bandwidth on
643
+ the TE link. This is derived from the union of the
644
+ minimum LSP bandwidth of all the component links
645
+ associated with the TE link that can be used to carry
646
+ live traffic.""",
647
+ "reference" :
648
+ """OSPF Extensions in Support of Generalized Multi-Protocol
649
+ Label Switching (GMPLS), RFC 4203""",
650
+ }, # column
651
+ "teLinkDescrMaxLspBandwidthPrio0" : {
652
+ "nodetype" : "column",
653
+ "moduleName" : "TE-LINK-STD-MIB",
654
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.5",
655
+ "status" : "current",
656
+ "syntax" : {
657
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
658
+ },
659
+ "access" : "readwrite",
660
+ "units" : "bps",
661
+ "description" :
662
+ """This attribute specifies the maximum LSP bandwidth at
663
+ priority 0 on the TE link. This is the union of the maximum
664
+ LSP bandwidth at priority 0 of all the component links within
665
+ the TE link that can be used to carry live traffic.""",
666
+ "reference" :
667
+ """OSPF Extensions in Support of Generalized Multi-Protocol
668
+ Label Switching (GMPLS), RFC 4203""",
669
+ }, # column
670
+ "teLinkDescrMaxLspBandwidthPrio1" : {
671
+ "nodetype" : "column",
672
+ "moduleName" : "TE-LINK-STD-MIB",
673
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.6",
674
+ "status" : "current",
675
+ "syntax" : {
676
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
677
+ },
678
+ "access" : "readwrite",
679
+ "units" : "bps",
680
+ "description" :
681
+ """This attribute specifies the maximum LSP bandwidth at
682
+ priority 1 on the TE link. This is the union of the maximum
683
+ LSP bandwidth at priority 1 of all the component links within
684
+ the TE link that can be used to carry live traffic.""",
685
+ "reference" :
686
+ """OSPF Extensions in Support of Generalized Multi-Protocol
687
+ Label Switching (GMPLS), RFC 4203""",
688
+ }, # column
689
+ "teLinkDescrMaxLspBandwidthPrio2" : {
690
+ "nodetype" : "column",
691
+ "moduleName" : "TE-LINK-STD-MIB",
692
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.7",
693
+ "status" : "current",
694
+ "syntax" : {
695
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
696
+ },
697
+ "access" : "readwrite",
698
+ "units" : "bps",
699
+ "description" :
700
+ """This attribute specifies the maximum LSP bandwidth at
701
+ priority 2 on the TE link. This is the union of the maximum
702
+
703
+
704
+
705
+ LSP bandwidth at priority 2 of all the component links within
706
+ the TE link that can be used to carry live traffic.""",
707
+ "reference" :
708
+ """OSPF Extensions in Support of Generalized Multi-Protocol
709
+ Label Switching (GMPLS), RFC 4203""",
710
+ }, # column
711
+ "teLinkDescrMaxLspBandwidthPrio3" : {
712
+ "nodetype" : "column",
713
+ "moduleName" : "TE-LINK-STD-MIB",
714
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.8",
715
+ "status" : "current",
716
+ "syntax" : {
717
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
718
+ },
719
+ "access" : "readwrite",
720
+ "units" : "bps",
721
+ "description" :
722
+ """This attribute specifies the maximum LSP bandwidth at
723
+ priority 3 on the TE link. This is the union of the maximum
724
+ LSP bandwidth at priority 3 of all the component links within
725
+ the TE link that can be used to carry live traffic.""",
726
+ "reference" :
727
+ """OSPF Extensions in Support of Generalized Multi-Protocol
728
+ Label Switching (GMPLS), RFC 4203""",
729
+ }, # column
730
+ "teLinkDescrMaxLspBandwidthPrio4" : {
731
+ "nodetype" : "column",
732
+ "moduleName" : "TE-LINK-STD-MIB",
733
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.9",
734
+ "status" : "current",
735
+ "syntax" : {
736
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
737
+ },
738
+ "access" : "readwrite",
739
+ "units" : "bps",
740
+ "description" :
741
+ """This attribute specifies the maximum LSP bandwidth at
742
+ priority 4 on the TE link. This is the union of the maximum
743
+ LSP bandwidth at priority 4 of all the component links within
744
+ the TE link that can be used to carry live traffic.""",
745
+ "reference" :
746
+ """OSPF Extensions in Support of Generalized Multi-Protocol
747
+ Label Switching (GMPLS), RFC 4203""",
748
+ }, # column
749
+ "teLinkDescrMaxLspBandwidthPrio5" : {
750
+ "nodetype" : "column",
751
+ "moduleName" : "TE-LINK-STD-MIB",
752
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.10",
753
+ "status" : "current",
754
+ "syntax" : {
755
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
756
+ },
757
+ "access" : "readwrite",
758
+ "units" : "bps",
759
+ "description" :
760
+ """This attribute specifies the maximum LSP bandwidth at
761
+ priority 5 on the TE link. This is the union of the maximum
762
+ LSP bandwidth at priority 5 of all the component links within
763
+ the TE link that can be used to carry live traffic.""",
764
+ "reference" :
765
+ """OSPF Extensions in Support of Generalized Multi-Protocol
766
+ Label Switching (GMPLS), RFC 4203""",
767
+ }, # column
768
+ "teLinkDescrMaxLspBandwidthPrio6" : {
769
+ "nodetype" : "column",
770
+ "moduleName" : "TE-LINK-STD-MIB",
771
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.11",
772
+ "status" : "current",
773
+ "syntax" : {
774
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
775
+ },
776
+ "access" : "readwrite",
777
+ "units" : "bps",
778
+ "description" :
779
+ """This attribute specifies the maximum LSP bandwidth at
780
+ priority 6 on the TE link. This is the union of the maximum
781
+ LSP bandwidth at priority 6 of all the component links within
782
+ the TE link that can be used to carry live traffic.""",
783
+ "reference" :
784
+ """OSPF Extensions in Support of Generalized Multi-Protocol
785
+ Label Switching (GMPLS), RFC 4203""",
786
+ }, # column
787
+ "teLinkDescrMaxLspBandwidthPrio7" : {
788
+ "nodetype" : "column",
789
+ "moduleName" : "TE-LINK-STD-MIB",
790
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.12",
791
+ "status" : "current",
792
+ "syntax" : {
793
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
794
+ },
795
+ "access" : "readwrite",
796
+ "units" : "bps",
797
+ "description" :
798
+ """This attribute specifies the maximum LSP bandwidth at
799
+ priority 7 on the TE link. This is the union of the maximum
800
+ LSP bandwidth at priority 7 of all the component links within
801
+ the TE link that can be used to carry live traffic.""",
802
+ "reference" :
803
+ """OSPF Extensions in Support of Generalized Multi-Protocol
804
+ Label Switching (GMPLS), RFC 4203""",
805
+ }, # column
806
+ "teLinkDescrInterfaceMtu" : {
807
+ "nodetype" : "column",
808
+ "moduleName" : "TE-LINK-STD-MIB",
809
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.13",
810
+ "status" : "current",
811
+ "syntax" : {
812
+ "type" : {
813
+ "basetype" : "Unsigned32",
814
+ "ranges" : [
815
+ {
816
+ "min" : "1",
817
+ "max" : "65535"
818
+ },
819
+ ],
820
+ "range" : {
821
+ "min" : "1",
822
+ "max" : "65535"
823
+ },
824
+ },
825
+ },
826
+ "access" : "readwrite",
827
+ "description" :
828
+ """This attribute specifies the interface MTU for the TE
829
+ link descriptor.""",
830
+ "reference" :
831
+ """OSPF Extensions in Support of Generalized Multi-Protocol
832
+ Label Switching (GMPLS), RFC 4203""",
833
+ }, # column
834
+ "teLinkDescrIndication" : {
835
+ "nodetype" : "column",
836
+ "moduleName" : "TE-LINK-STD-MIB",
837
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.14",
838
+ "status" : "current",
839
+ "syntax" : {
840
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkSonetSdhIndication"},
841
+ },
842
+ "access" : "readwrite",
843
+ "description" :
844
+ """This attribute specifies whether this interface supports
845
+ Standard or Arbitrary SONET/SDH.""",
846
+ "reference" :
847
+ """OSPF Extensions in Support of Generalized Multi-Protocol
848
+ Label Switching (GMPLS), RFC 4203""",
849
+ }, # column
850
+ "teLinkDescrRowStatus" : {
851
+ "nodetype" : "column",
852
+ "moduleName" : "TE-LINK-STD-MIB",
853
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.15",
854
+ "status" : "current",
855
+ "syntax" : {
856
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
857
+ },
858
+ "access" : "readwrite",
859
+ "description" :
860
+ """This variable is used to create, modify, and/or
861
+ delete a row in this table. No read-create object
862
+ can be changed if teLinkDescrRowStatus is in the active(1)
863
+ state.""",
864
+ }, # column
865
+ "teLinkDescrStorageType" : {
866
+ "nodetype" : "column",
867
+ "moduleName" : "TE-LINK-STD-MIB",
868
+ "oid" : "1.3.6.1.2.1.10.200.1.2.1.16",
869
+ "status" : "current",
870
+ "syntax" : {
871
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
872
+ },
873
+ "access" : "readwrite",
874
+ "description" :
875
+ """The storage type for this conceptual row in the
876
+ teLinkDescriptorTable. Conceptual rows having the value
877
+ 'permanent' need not allow write-access to any
878
+ columnar object in the row.""",
879
+ }, # column
880
+ "teLinkSrlgTable" : {
881
+ "nodetype" : "table",
882
+ "moduleName" : "TE-LINK-STD-MIB",
883
+ "oid" : "1.3.6.1.2.1.10.200.1.3",
884
+ "status" : "current",
885
+ "description" :
886
+ """This table specifies the SRLGs associated with TE links.""",
887
+ }, # table
888
+ "teLinkSrlgEntry" : {
889
+ "nodetype" : "row",
890
+ "moduleName" : "TE-LINK-STD-MIB",
891
+ "oid" : "1.3.6.1.2.1.10.200.1.3.1",
892
+ "create" : "true",
893
+ "status" : "current",
894
+ "linkage" : [
895
+ "ifIndex",
896
+ "teLinkSrlg",
897
+ ],
898
+ "description" :
899
+ """An entry in this table contains information about an
900
+ SRLG associated with a TE link.
901
+ An ifEntry in the ifTable must exist before a
902
+ teLinkSrlgEntry using the same ifIndex is created.
903
+ The ifType of ifEntry must be teLink(200).
904
+ If a TE link entry in the ifTable is destroyed, then so
905
+ are all of the entries in the teLinkSrlgTable that use the
906
+ ifIndex of this TE link.""",
907
+ }, # row
908
+ "teLinkSrlg" : {
909
+ "nodetype" : "column",
910
+ "moduleName" : "TE-LINK-STD-MIB",
911
+ "oid" : "1.3.6.1.2.1.10.200.1.3.1.1",
912
+ "status" : "current",
913
+ "syntax" : {
914
+ "type" : {
915
+ "basetype" : "Unsigned32",
916
+ "ranges" : [
917
+ {
918
+ "min" : "0",
919
+ "max" : "4294967295"
920
+ },
921
+ ],
922
+ "range" : {
923
+ "min" : "0",
924
+ "max" : "4294967295"
925
+ },
926
+ },
927
+ },
928
+ "access" : "noaccess",
929
+ "description" :
930
+ """This identifies an SRLG supported by the TE link. An SRLG is
931
+ identified with a 32-bit number that is unique within an IGP
932
+ domain. Zero is a valid SRLG number.""",
933
+ "reference" :
934
+ """OSPF Extensions in Support of Generalized Multi-Protocol
935
+ Label Switching (GMPLS), RFC 4203""",
936
+ }, # column
937
+ "teLinkSrlgRowStatus" : {
938
+ "nodetype" : "column",
939
+ "moduleName" : "TE-LINK-STD-MIB",
940
+ "oid" : "1.3.6.1.2.1.10.200.1.3.1.2",
941
+ "status" : "current",
942
+ "syntax" : {
943
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
944
+ },
945
+ "access" : "readwrite",
946
+ "description" :
947
+ """This variable is used to create, modify, and/or
948
+ delete a row in this table. No read-create object can
949
+ be modified if teLinkSrlgRowStatus is active(1).""",
950
+ }, # column
951
+ "teLinkSrlgStorageType" : {
952
+ "nodetype" : "column",
953
+ "moduleName" : "TE-LINK-STD-MIB",
954
+ "oid" : "1.3.6.1.2.1.10.200.1.3.1.3",
955
+ "status" : "current",
956
+ "syntax" : {
957
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
958
+ },
959
+ "access" : "readwrite",
960
+ "description" :
961
+ """The storage type for this conceptual row in the
962
+
963
+
964
+
965
+ teLinkSrlgTable. Conceptual rows having the value
966
+ 'permanent' need not allow write-access to any
967
+ columnar object in the row.""",
968
+ }, # column
969
+ "teLinkBandwidthTable" : {
970
+ "nodetype" : "table",
971
+ "moduleName" : "TE-LINK-STD-MIB",
972
+ "oid" : "1.3.6.1.2.1.10.200.1.4",
973
+ "status" : "current",
974
+ "description" :
975
+ """This table specifies the priority-based bandwidth table
976
+ for TE links.""",
977
+ }, # table
978
+ "teLinkBandwidthEntry" : {
979
+ "nodetype" : "row",
980
+ "moduleName" : "TE-LINK-STD-MIB",
981
+ "oid" : "1.3.6.1.2.1.10.200.1.4.1",
982
+ "create" : "true",
983
+ "status" : "current",
984
+ "linkage" : [
985
+ "ifIndex",
986
+ "teLinkBandwidthPriority",
987
+ ],
988
+ "description" :
989
+ """An entry in this table contains information about
990
+ the priority-based bandwidth of TE links. An ifEntry in the
991
+ ifTable must exist before a teLinkBandwidthEntry using the
992
+ same ifIndex is created. The ifType of ifEntry must be
993
+ teLink(200). If a TE link entry in the ifTable is destroyed,
994
+ then so are all of the entries in the teLinkBandwidthTable
995
+ that use the ifIndex of this TE link.""",
996
+ }, # row
997
+ "teLinkBandwidthPriority" : {
998
+ "nodetype" : "column",
999
+ "moduleName" : "TE-LINK-STD-MIB",
1000
+ "oid" : "1.3.6.1.2.1.10.200.1.4.1.1",
1001
+ "status" : "current",
1002
+ "syntax" : {
1003
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkPriority"},
1004
+ },
1005
+ "access" : "noaccess",
1006
+ "description" :
1007
+ """This attribute specifies the priority. A value of 0 is valid
1008
+ as specified in the 'Traffic Engineering (TE) Extensions to
1009
+
1010
+
1011
+
1012
+ OSPF Version 2' document.""",
1013
+ "reference" :
1014
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1015
+ Label Switching (GMPLS), RFC 4203 and
1016
+ Traffic Engineering (TE) Extensions to OSPF Version 2,
1017
+ RFC 3630""",
1018
+ }, # column
1019
+ "teLinkBandwidthUnreserved" : {
1020
+ "nodetype" : "column",
1021
+ "moduleName" : "TE-LINK-STD-MIB",
1022
+ "oid" : "1.3.6.1.2.1.10.200.1.4.1.2",
1023
+ "status" : "current",
1024
+ "syntax" : {
1025
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1026
+ },
1027
+ "access" : "readonly",
1028
+ "units" : "bps",
1029
+ "description" :
1030
+ """This attribute specifies the TE link unreserved
1031
+ bandwidth at priority p. It is the sum of the unreserved
1032
+ bandwidths at priority p of all component links associated
1033
+ with the TE link (excluding all links that are strictly
1034
+ used as protecting links).""",
1035
+ "reference" :
1036
+ """Link Bundling in MPLS Traffic Engineering (TE), RFC 4201""",
1037
+ }, # column
1038
+ "teLinkBandwidthRowStatus" : {
1039
+ "nodetype" : "column",
1040
+ "moduleName" : "TE-LINK-STD-MIB",
1041
+ "oid" : "1.3.6.1.2.1.10.200.1.4.1.3",
1042
+ "status" : "current",
1043
+ "syntax" : {
1044
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1045
+ },
1046
+ "access" : "readwrite",
1047
+ "description" :
1048
+ """This variable is used to create, modify, and/or
1049
+ delete a row in this table. No read-create object
1050
+ can be modified when teLinkBandwidthRowStatus is active(1).""",
1051
+ }, # column
1052
+ "teLinkBandwidthStorageType" : {
1053
+ "nodetype" : "column",
1054
+ "moduleName" : "TE-LINK-STD-MIB",
1055
+ "oid" : "1.3.6.1.2.1.10.200.1.4.1.4",
1056
+ "status" : "current",
1057
+ "syntax" : {
1058
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1059
+ },
1060
+ "access" : "readwrite",
1061
+ "description" :
1062
+ """The storage type for this conceptual row in the
1063
+ teLinkBandwidthTable. Conceptual rows having the value
1064
+ 'permanent' need not allow write-access to any
1065
+ columnar object in the row.""",
1066
+ }, # column
1067
+ "componentLinkTable" : {
1068
+ "nodetype" : "table",
1069
+ "moduleName" : "TE-LINK-STD-MIB",
1070
+ "oid" : "1.3.6.1.2.1.10.200.1.5",
1071
+ "status" : "current",
1072
+ "description" :
1073
+ """This table specifies the component link parameters.""",
1074
+ }, # table
1075
+ "componentLinkEntry" : {
1076
+ "nodetype" : "row",
1077
+ "moduleName" : "TE-LINK-STD-MIB",
1078
+ "oid" : "1.3.6.1.2.1.10.200.1.5.1",
1079
+ "create" : "true",
1080
+ "status" : "current",
1081
+ "linkage" : [
1082
+ "ifIndex",
1083
+ ],
1084
+ "description" :
1085
+ """An entry in this table exists for each ifEntry that
1086
+ represents a component link. An ifEntry must exist in
1087
+ the ifTable before a componentLinkEntry is created with
1088
+ the corresponding ifIndex. ifEntry's ifType can be
1089
+ of any interface type that has been defined for TE Link
1090
+ interworking. Examples include ATM, Frame Relay, Ethernet,
1091
+ etc. If an entry representing a component link is destroyed
1092
+ in the ifTable, then so is the corresponding entry in the
1093
+ componentLinkTable. The administrative and operational
1094
+ status values are controlled from the ifEntry.""",
1095
+ }, # row
1096
+ "componentLinkMaxResBandwidth" : {
1097
+ "nodetype" : "column",
1098
+ "moduleName" : "TE-LINK-STD-MIB",
1099
+ "oid" : "1.3.6.1.2.1.10.200.1.5.1.1",
1100
+ "status" : "current",
1101
+ "syntax" : {
1102
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1103
+ },
1104
+ "access" : "readwrite",
1105
+ "units" : "bps",
1106
+ "description" :
1107
+ """This attribute specifies the maximum reservable bandwidth on
1108
+ the component link.""",
1109
+ "reference" :
1110
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1111
+ Label Switching (GMPLS), RFC 4203""",
1112
+ }, # column
1113
+ "componentLinkPreferredProtection" : {
1114
+ "nodetype" : "column",
1115
+ "moduleName" : "TE-LINK-STD-MIB",
1116
+ "oid" : "1.3.6.1.2.1.10.200.1.5.1.2",
1117
+ "status" : "current",
1118
+ "syntax" : {
1119
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkProtection"},
1120
+ },
1121
+ "access" : "readwrite",
1122
+ "description" :
1123
+ """This attribute specifies whether this component link is
1124
+ a primary or secondary entity.""",
1125
+ }, # column
1126
+ "componentLinkCurrentProtection" : {
1127
+ "nodetype" : "column",
1128
+ "moduleName" : "TE-LINK-STD-MIB",
1129
+ "oid" : "1.3.6.1.2.1.10.200.1.5.1.3",
1130
+ "status" : "current",
1131
+ "syntax" : {
1132
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkProtection"},
1133
+ },
1134
+ "access" : "readonly",
1135
+ "description" :
1136
+ """This attribute specifies whether this component link is
1137
+ currently used as primary or secondary link.""",
1138
+ }, # column
1139
+ "componentLinkRowStatus" : {
1140
+ "nodetype" : "column",
1141
+ "moduleName" : "TE-LINK-STD-MIB",
1142
+ "oid" : "1.3.6.1.2.1.10.200.1.5.1.4",
1143
+ "status" : "current",
1144
+ "syntax" : {
1145
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1146
+ },
1147
+ "access" : "readwrite",
1148
+ "description" :
1149
+ """This variable is used to create, modify, and/or
1150
+ delete a row in this table. No read-create object
1151
+ can be modified when componentLinkRowStatus is active(1).""",
1152
+ }, # column
1153
+ "componentLinkStorageType" : {
1154
+ "nodetype" : "column",
1155
+ "moduleName" : "TE-LINK-STD-MIB",
1156
+ "oid" : "1.3.6.1.2.1.10.200.1.5.1.5",
1157
+ "status" : "current",
1158
+ "syntax" : {
1159
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1160
+ },
1161
+ "access" : "readwrite",
1162
+ "description" :
1163
+ """The storage type for this conceptual row in the
1164
+ componentLinkTable. Conceptual rows having the value
1165
+ 'permanent' need not allow write-access to any
1166
+ columnar object in the row.""",
1167
+ }, # column
1168
+ "componentLinkDescriptorTable" : {
1169
+ "nodetype" : "table",
1170
+ "moduleName" : "TE-LINK-STD-MIB",
1171
+ "oid" : "1.3.6.1.2.1.10.200.1.6",
1172
+ "status" : "current",
1173
+ "description" :
1174
+ """This table specifies the interface switching capability
1175
+ descriptors associated with the component links.""",
1176
+ }, # table
1177
+ "componentLinkDescriptorEntry" : {
1178
+ "nodetype" : "row",
1179
+ "moduleName" : "TE-LINK-STD-MIB",
1180
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1",
1181
+ "create" : "true",
1182
+ "status" : "current",
1183
+ "linkage" : [
1184
+ "ifIndex",
1185
+ "componentLinkDescrId",
1186
+ ],
1187
+ "description" :
1188
+ """An entry in this table is created for every component link
1189
+ descriptor. An ifEntry in the ifTable must exist before a
1190
+ componentLinkDescriptorEntry using the same ifIndex is
1191
+ created. ifEntry's ifType can be of any interface type that
1192
+ has been defined for TE Link interworking. Examples include
1193
+ ATM, Frame Relay, Ethernet, etc. If a component link entry
1194
+ in the ifTable is destroyed, then so are all entries in the
1195
+ componentLinkDescriptorTable that use the ifIndex of this
1196
+ component link.""",
1197
+ }, # row
1198
+ "componentLinkDescrId" : {
1199
+ "nodetype" : "column",
1200
+ "moduleName" : "TE-LINK-STD-MIB",
1201
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.1",
1202
+ "status" : "current",
1203
+ "syntax" : {
1204
+ "type" : {
1205
+ "basetype" : "Unsigned32",
1206
+ "ranges" : [
1207
+ {
1208
+ "min" : "1",
1209
+ "max" : "4294967295"
1210
+ },
1211
+ ],
1212
+ "range" : {
1213
+ "min" : "1",
1214
+ "max" : "4294967295"
1215
+ },
1216
+ },
1217
+ },
1218
+ "access" : "noaccess",
1219
+ "description" :
1220
+ """This object specifies the link descriptor identifier.""",
1221
+ }, # column
1222
+ "componentLinkDescrSwitchingCapability" : {
1223
+ "nodetype" : "column",
1224
+ "moduleName" : "TE-LINK-STD-MIB",
1225
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.2",
1226
+ "status" : "current",
1227
+ "syntax" : {
1228
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkSwitchingCapability"},
1229
+ },
1230
+ "access" : "readwrite",
1231
+ "description" :
1232
+ """This attribute specifies link multiplexing capabilities of
1233
+ the component link.""",
1234
+ "reference" :
1235
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1236
+ Label Switching (GMPLS), RFC 4203""",
1237
+ }, # column
1238
+ "componentLinkDescrEncodingType" : {
1239
+ "nodetype" : "column",
1240
+ "moduleName" : "TE-LINK-STD-MIB",
1241
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.3",
1242
+ "status" : "current",
1243
+ "syntax" : {
1244
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkEncodingType"},
1245
+ },
1246
+ "access" : "readwrite",
1247
+ "description" :
1248
+ """This attribute specifies the component link encoding type.""",
1249
+ "reference" :
1250
+ """Generalized Multi-Protocol Label Switching (GMPLS) Signaling
1251
+ Functional Description, RFC 3471""",
1252
+ }, # column
1253
+ "componentLinkDescrMinLspBandwidth" : {
1254
+ "nodetype" : "column",
1255
+ "moduleName" : "TE-LINK-STD-MIB",
1256
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.4",
1257
+ "status" : "current",
1258
+ "syntax" : {
1259
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1260
+ },
1261
+ "access" : "readwrite",
1262
+ "units" : "bps",
1263
+ "description" :
1264
+ """This attribute specifies the minimum LSP bandwidth on
1265
+ the component link.""",
1266
+ "reference" :
1267
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1268
+ Label Switching (GMPLS), RFC 4203""",
1269
+ }, # column
1270
+ "componentLinkDescrMaxLspBandwidthPrio0" : {
1271
+ "nodetype" : "column",
1272
+ "moduleName" : "TE-LINK-STD-MIB",
1273
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.5",
1274
+ "status" : "current",
1275
+ "syntax" : {
1276
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1277
+ },
1278
+ "access" : "readwrite",
1279
+ "units" : "bps",
1280
+ "description" :
1281
+ """This attribute specifies the maximum LSP bandwidth at
1282
+ priority 0 on the component link.""",
1283
+ "reference" :
1284
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1285
+ Label Switching (GMPLS), RFC 4203""",
1286
+ }, # column
1287
+ "componentLinkDescrMaxLspBandwidthPrio1" : {
1288
+ "nodetype" : "column",
1289
+ "moduleName" : "TE-LINK-STD-MIB",
1290
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.6",
1291
+ "status" : "current",
1292
+ "syntax" : {
1293
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1294
+ },
1295
+ "access" : "readwrite",
1296
+ "units" : "bps",
1297
+ "description" :
1298
+ """This attribute specifies the maximum LSP bandwidth at
1299
+ priority 1 on the component link.""",
1300
+ "reference" :
1301
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1302
+ Label Switching (GMPLS), RFC 4203""",
1303
+ }, # column
1304
+ "componentLinkDescrMaxLspBandwidthPrio2" : {
1305
+ "nodetype" : "column",
1306
+ "moduleName" : "TE-LINK-STD-MIB",
1307
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.7",
1308
+ "status" : "current",
1309
+ "syntax" : {
1310
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1311
+ },
1312
+ "access" : "readwrite",
1313
+ "units" : "bps",
1314
+ "description" :
1315
+ """This attribute specifies the maximum LSP bandwidth at
1316
+ priority 2 on the component link.""",
1317
+ "reference" :
1318
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1319
+ Label Switching (GMPLS), RFC 4203""",
1320
+ }, # column
1321
+ "componentLinkDescrMaxLspBandwidthPrio3" : {
1322
+ "nodetype" : "column",
1323
+ "moduleName" : "TE-LINK-STD-MIB",
1324
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.8",
1325
+ "status" : "current",
1326
+ "syntax" : {
1327
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1328
+ },
1329
+ "access" : "readwrite",
1330
+ "units" : "bps",
1331
+ "description" :
1332
+ """This attribute specifies the maximum LSP bandwidth at
1333
+ priority 3 on the component link.""",
1334
+ "reference" :
1335
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1336
+ Label Switching (GMPLS), RFC 4203""",
1337
+ }, # column
1338
+ "componentLinkDescrMaxLspBandwidthPrio4" : {
1339
+ "nodetype" : "column",
1340
+ "moduleName" : "TE-LINK-STD-MIB",
1341
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.9",
1342
+ "status" : "current",
1343
+ "syntax" : {
1344
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1345
+ },
1346
+ "access" : "readwrite",
1347
+ "units" : "bps",
1348
+ "description" :
1349
+ """This attribute specifies the maximum LSP bandwidth at
1350
+ priority 4 on the component link.""",
1351
+ "reference" :
1352
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1353
+ Label Switching (GMPLS), RFC 4203""",
1354
+ }, # column
1355
+ "componentLinkDescrMaxLspBandwidthPrio5" : {
1356
+ "nodetype" : "column",
1357
+ "moduleName" : "TE-LINK-STD-MIB",
1358
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.10",
1359
+ "status" : "current",
1360
+ "syntax" : {
1361
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1362
+ },
1363
+ "access" : "readwrite",
1364
+ "units" : "thousand bps",
1365
+ "description" :
1366
+ """This attribute specifies the maximum LSP bandwidth at
1367
+ priority 5 on the component link.""",
1368
+ "reference" :
1369
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1370
+ Label Switching (GMPLS), RFC 4203""",
1371
+ }, # column
1372
+ "componentLinkDescrMaxLspBandwidthPrio6" : {
1373
+ "nodetype" : "column",
1374
+ "moduleName" : "TE-LINK-STD-MIB",
1375
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.11",
1376
+ "status" : "current",
1377
+ "syntax" : {
1378
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1379
+ },
1380
+ "access" : "readwrite",
1381
+ "units" : "bps",
1382
+ "description" :
1383
+ """This attribute specifies the maximum LSP bandwidth at
1384
+ priority 6 on the component link.""",
1385
+ "reference" :
1386
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1387
+ Label Switching (GMPLS), RFC 4203""",
1388
+ }, # column
1389
+ "componentLinkDescrMaxLspBandwidthPrio7" : {
1390
+ "nodetype" : "column",
1391
+ "moduleName" : "TE-LINK-STD-MIB",
1392
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.12",
1393
+ "status" : "current",
1394
+ "syntax" : {
1395
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1396
+ },
1397
+ "access" : "readwrite",
1398
+ "units" : "bps",
1399
+ "description" :
1400
+ """This attribute specifies the maximum LSP bandwidth at
1401
+ priority 7 on the component link.""",
1402
+ "reference" :
1403
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1404
+ Label Switching (GMPLS), RFC 4203""",
1405
+ }, # column
1406
+ "componentLinkDescrInterfaceMtu" : {
1407
+ "nodetype" : "column",
1408
+ "moduleName" : "TE-LINK-STD-MIB",
1409
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.13",
1410
+ "status" : "current",
1411
+ "syntax" : {
1412
+ "type" : {
1413
+ "basetype" : "Unsigned32",
1414
+ "ranges" : [
1415
+ {
1416
+ "min" : "1",
1417
+ "max" : "65535"
1418
+ },
1419
+ ],
1420
+ "range" : {
1421
+ "min" : "1",
1422
+ "max" : "65535"
1423
+ },
1424
+ },
1425
+ },
1426
+ "access" : "readwrite",
1427
+ "description" :
1428
+ """This attribute specifies the interface MTU for the component
1429
+ link descriptor.""",
1430
+ "reference" :
1431
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1432
+ Label Switching (GMPLS), RFC 4203""",
1433
+ }, # column
1434
+ "componentLinkDescrIndication" : {
1435
+ "nodetype" : "column",
1436
+ "moduleName" : "TE-LINK-STD-MIB",
1437
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.14",
1438
+ "status" : "current",
1439
+ "syntax" : {
1440
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkSonetSdhIndication"},
1441
+ },
1442
+ "access" : "readwrite",
1443
+ "description" :
1444
+ """This attribute specifies whether this interface supports
1445
+ Standard or Arbitrary SONET/SDH.""",
1446
+ "reference" :
1447
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1448
+ Label Switching (GMPLS), RFC 4203""",
1449
+ }, # column
1450
+ "componentLinkDescrRowStatus" : {
1451
+ "nodetype" : "column",
1452
+ "moduleName" : "TE-LINK-STD-MIB",
1453
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.15",
1454
+ "status" : "current",
1455
+ "syntax" : {
1456
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1457
+ },
1458
+ "access" : "readwrite",
1459
+ "description" :
1460
+ """This variable is used to create, modify, and/or
1461
+ delete a row in this table. No read-create object
1462
+ can be modified when componentLinkDescrRowStatus
1463
+ is active(1).""",
1464
+ }, # column
1465
+ "componentLinkDescrStorageType" : {
1466
+ "nodetype" : "column",
1467
+ "moduleName" : "TE-LINK-STD-MIB",
1468
+ "oid" : "1.3.6.1.2.1.10.200.1.6.1.16",
1469
+ "status" : "current",
1470
+ "syntax" : {
1471
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1472
+ },
1473
+ "access" : "readwrite",
1474
+ "description" :
1475
+ """The storage type for this conceptual row in the
1476
+ componentLinkDescriptorTable. Conceptual rows
1477
+ having the value 'permanent' need not allow write-access
1478
+ to any columnar object in the row.""",
1479
+ }, # column
1480
+ "componentLinkBandwidthTable" : {
1481
+ "nodetype" : "table",
1482
+ "moduleName" : "TE-LINK-STD-MIB",
1483
+ "oid" : "1.3.6.1.2.1.10.200.1.7",
1484
+ "status" : "current",
1485
+ "description" :
1486
+ """This table specifies the priority-based bandwidth
1487
+ for component links.""",
1488
+ }, # table
1489
+ "componentLinkBandwidthEntry" : {
1490
+ "nodetype" : "row",
1491
+ "moduleName" : "TE-LINK-STD-MIB",
1492
+ "oid" : "1.3.6.1.2.1.10.200.1.7.1",
1493
+ "create" : "true",
1494
+ "status" : "current",
1495
+ "linkage" : [
1496
+ "ifIndex",
1497
+ "componentLinkBandwidthPriority",
1498
+ ],
1499
+ "description" :
1500
+ """An entry in this table contains information about
1501
+ the priority-based bandwidth on component links.
1502
+ An ifEntry in the ifTable must exist before a
1503
+ componentLinkBandwidthEntry using the same ifIndex is
1504
+ created. ifEntry's ifType can be of any interface type that
1505
+ has been defined for TE Link interworking. Examples
1506
+ include ATM, Frame Relay, Ethernet, etc. If a component link
1507
+ entry in the ifTable is destroyed, then so are all entries
1508
+ in the componentLinkBandwidthTable that use the ifIndex of
1509
+ this component link.""",
1510
+ }, # row
1511
+ "componentLinkBandwidthPriority" : {
1512
+ "nodetype" : "column",
1513
+ "moduleName" : "TE-LINK-STD-MIB",
1514
+ "oid" : "1.3.6.1.2.1.10.200.1.7.1.1",
1515
+ "status" : "current",
1516
+ "syntax" : {
1517
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkPriority"},
1518
+ },
1519
+ "access" : "noaccess",
1520
+ "description" :
1521
+ """This attribute specifies the priority. A value of 0 is valid
1522
+ as specified in the 'Traffic Engineering (TE) Extensions to
1523
+ OSPF Version 2' document.""",
1524
+ "reference" :
1525
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1526
+ Label Switching (GMPLS), RFC 4203 and
1527
+ Traffic Engineering (TE) Extensions to OSPF Version 2,
1528
+ RFC 3630""",
1529
+ }, # column
1530
+ "componentLinkBandwidthUnreserved" : {
1531
+ "nodetype" : "column",
1532
+ "moduleName" : "TE-LINK-STD-MIB",
1533
+ "oid" : "1.3.6.1.2.1.10.200.1.7.1.2",
1534
+ "status" : "current",
1535
+ "syntax" : {
1536
+ "type" : { "module" :"TE-LINK-STD-MIB", "name" : "TeLinkBandwidth"},
1537
+ },
1538
+ "access" : "readonly",
1539
+ "units" : "bps",
1540
+ "description" :
1541
+ """This attribute specifies the component link unreserved
1542
+ bandwidth at priority p.""",
1543
+ "reference" :
1544
+ """OSPF Extensions in Support of Generalized Multi-Protocol
1545
+ Label Switching (GMPLS), RFC 4203""",
1546
+ }, # column
1547
+ "componentLinkBandwidthRowStatus" : {
1548
+ "nodetype" : "column",
1549
+ "moduleName" : "TE-LINK-STD-MIB",
1550
+ "oid" : "1.3.6.1.2.1.10.200.1.7.1.3",
1551
+ "status" : "current",
1552
+ "syntax" : {
1553
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1554
+ },
1555
+ "access" : "readwrite",
1556
+ "description" :
1557
+ """This variable is used to create, modify, and/or
1558
+ delete a row in this table. No read-create object can
1559
+ be modified when componentLinkBandwidthRowStatus is
1560
+ active(1).""",
1561
+ }, # column
1562
+ "componentLinkBandwidthStorageType" : {
1563
+ "nodetype" : "column",
1564
+ "moduleName" : "TE-LINK-STD-MIB",
1565
+ "oid" : "1.3.6.1.2.1.10.200.1.7.1.4",
1566
+ "status" : "current",
1567
+ "syntax" : {
1568
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1569
+ },
1570
+ "access" : "readwrite",
1571
+ "description" :
1572
+ """The storage type for this conceptual row in the
1573
+ componentLinkBandwidthTable. Conceptual rows
1574
+ having the value 'permanent' need not allow write-access
1575
+ to any columnar object in the row.""",
1576
+ }, # column
1577
+ "teLinkConformance" : {
1578
+ "nodetype" : "node",
1579
+ "moduleName" : "TE-LINK-STD-MIB",
1580
+ "oid" : "1.3.6.1.2.1.10.200.2",
1581
+ }, # node
1582
+ "teLinkCompliances" : {
1583
+ "nodetype" : "node",
1584
+ "moduleName" : "TE-LINK-STD-MIB",
1585
+ "oid" : "1.3.6.1.2.1.10.200.2.1",
1586
+ }, # node
1587
+ "teLinkGroups" : {
1588
+ "nodetype" : "node",
1589
+ "moduleName" : "TE-LINK-STD-MIB",
1590
+ "oid" : "1.3.6.1.2.1.10.200.2.2",
1591
+ }, # node
1592
+ }, # nodes
1593
+
1594
+ "groups" : {
1595
+ "teLinkGroup" : {
1596
+ "nodetype" : "group",
1597
+ "moduleName" : "TE-LINK-STD-MIB",
1598
+ "oid" : "1.3.6.1.2.1.10.200.2.2.1",
1599
+ "status" : "current",
1600
+ "members" : {
1601
+ "teLinkAddressType" : {
1602
+ "nodetype" : "member",
1603
+ "module" : "TE-LINK-STD-MIB"
1604
+ },
1605
+ "teLinkLocalIpAddr" : {
1606
+ "nodetype" : "member",
1607
+ "module" : "TE-LINK-STD-MIB"
1608
+ },
1609
+ "teLinkRemoteIpAddr" : {
1610
+ "nodetype" : "member",
1611
+ "module" : "TE-LINK-STD-MIB"
1612
+ },
1613
+ "teLinkMetric" : {
1614
+ "nodetype" : "member",
1615
+ "module" : "TE-LINK-STD-MIB"
1616
+ },
1617
+ "teLinkProtectionType" : {
1618
+ "nodetype" : "member",
1619
+ "module" : "TE-LINK-STD-MIB"
1620
+ },
1621
+ "teLinkWorkingPriority" : {
1622
+ "nodetype" : "member",
1623
+ "module" : "TE-LINK-STD-MIB"
1624
+ },
1625
+ "teLinkResourceClass" : {
1626
+ "nodetype" : "member",
1627
+ "module" : "TE-LINK-STD-MIB"
1628
+ },
1629
+ "teLinkIncomingIfId" : {
1630
+ "nodetype" : "member",
1631
+ "module" : "TE-LINK-STD-MIB"
1632
+ },
1633
+ "teLinkOutgoingIfId" : {
1634
+ "nodetype" : "member",
1635
+ "module" : "TE-LINK-STD-MIB"
1636
+ },
1637
+ "teLinkRowStatus" : {
1638
+ "nodetype" : "member",
1639
+ "module" : "TE-LINK-STD-MIB"
1640
+ },
1641
+ "teLinkStorageType" : {
1642
+ "nodetype" : "member",
1643
+ "module" : "TE-LINK-STD-MIB"
1644
+ },
1645
+ "teLinkDescrSwitchingCapability" : {
1646
+ "nodetype" : "member",
1647
+ "module" : "TE-LINK-STD-MIB"
1648
+ },
1649
+ "teLinkDescrEncodingType" : {
1650
+ "nodetype" : "member",
1651
+ "module" : "TE-LINK-STD-MIB"
1652
+ },
1653
+ "teLinkDescrRowStatus" : {
1654
+ "nodetype" : "member",
1655
+ "module" : "TE-LINK-STD-MIB"
1656
+ },
1657
+ "teLinkDescrStorageType" : {
1658
+ "nodetype" : "member",
1659
+ "module" : "TE-LINK-STD-MIB"
1660
+ },
1661
+ "componentLinkPreferredProtection" : {
1662
+ "nodetype" : "member",
1663
+ "module" : "TE-LINK-STD-MIB"
1664
+ },
1665
+ "componentLinkCurrentProtection" : {
1666
+ "nodetype" : "member",
1667
+ "module" : "TE-LINK-STD-MIB"
1668
+ },
1669
+ "componentLinkRowStatus" : {
1670
+ "nodetype" : "member",
1671
+ "module" : "TE-LINK-STD-MIB"
1672
+ },
1673
+ "componentLinkStorageType" : {
1674
+ "nodetype" : "member",
1675
+ "module" : "TE-LINK-STD-MIB"
1676
+ },
1677
+ "componentLinkDescrSwitchingCapability" : {
1678
+ "nodetype" : "member",
1679
+ "module" : "TE-LINK-STD-MIB"
1680
+ },
1681
+ "componentLinkDescrEncodingType" : {
1682
+ "nodetype" : "member",
1683
+ "module" : "TE-LINK-STD-MIB"
1684
+ },
1685
+ "componentLinkDescrRowStatus" : {
1686
+ "nodetype" : "member",
1687
+ "module" : "TE-LINK-STD-MIB"
1688
+ },
1689
+ "componentLinkDescrStorageType" : {
1690
+ "nodetype" : "member",
1691
+ "module" : "TE-LINK-STD-MIB"
1692
+ },
1693
+ }, # members
1694
+ "description" :
1695
+ """Collection of objects needed for the management of
1696
+ resources associated with TE links.""",
1697
+ }, # group
1698
+ "teLinkSrlgGroup" : {
1699
+ "nodetype" : "group",
1700
+ "moduleName" : "TE-LINK-STD-MIB",
1701
+ "oid" : "1.3.6.1.2.1.10.200.2.2.2",
1702
+ "status" : "current",
1703
+ "members" : {
1704
+ "teLinkSrlgRowStatus" : {
1705
+ "nodetype" : "member",
1706
+ "module" : "TE-LINK-STD-MIB"
1707
+ },
1708
+ "teLinkSrlgStorageType" : {
1709
+ "nodetype" : "member",
1710
+ "module" : "TE-LINK-STD-MIB"
1711
+ },
1712
+ }, # members
1713
+ "description" :
1714
+ """Collection of objects needed for the management of
1715
+ SRLG resources associated with TE links.""",
1716
+ }, # group
1717
+ "teLinkBandwidthGroup" : {
1718
+ "nodetype" : "group",
1719
+ "moduleName" : "TE-LINK-STD-MIB",
1720
+ "oid" : "1.3.6.1.2.1.10.200.2.2.3",
1721
+ "status" : "current",
1722
+ "members" : {
1723
+ "teLinkMaximumReservableBandwidth" : {
1724
+ "nodetype" : "member",
1725
+ "module" : "TE-LINK-STD-MIB"
1726
+ },
1727
+ "teLinkDescrMaxLspBandwidthPrio0" : {
1728
+ "nodetype" : "member",
1729
+ "module" : "TE-LINK-STD-MIB"
1730
+ },
1731
+ "teLinkDescrMaxLspBandwidthPrio1" : {
1732
+ "nodetype" : "member",
1733
+ "module" : "TE-LINK-STD-MIB"
1734
+ },
1735
+ "teLinkDescrMaxLspBandwidthPrio2" : {
1736
+ "nodetype" : "member",
1737
+ "module" : "TE-LINK-STD-MIB"
1738
+ },
1739
+ "teLinkDescrMaxLspBandwidthPrio3" : {
1740
+ "nodetype" : "member",
1741
+ "module" : "TE-LINK-STD-MIB"
1742
+ },
1743
+ "teLinkDescrMaxLspBandwidthPrio4" : {
1744
+ "nodetype" : "member",
1745
+ "module" : "TE-LINK-STD-MIB"
1746
+ },
1747
+ "teLinkDescrMaxLspBandwidthPrio5" : {
1748
+ "nodetype" : "member",
1749
+ "module" : "TE-LINK-STD-MIB"
1750
+ },
1751
+ "teLinkDescrMaxLspBandwidthPrio6" : {
1752
+ "nodetype" : "member",
1753
+ "module" : "TE-LINK-STD-MIB"
1754
+ },
1755
+ "teLinkDescrMaxLspBandwidthPrio7" : {
1756
+ "nodetype" : "member",
1757
+ "module" : "TE-LINK-STD-MIB"
1758
+ },
1759
+ "teLinkBandwidthUnreserved" : {
1760
+ "nodetype" : "member",
1761
+ "module" : "TE-LINK-STD-MIB"
1762
+ },
1763
+ "teLinkBandwidthRowStatus" : {
1764
+ "nodetype" : "member",
1765
+ "module" : "TE-LINK-STD-MIB"
1766
+ },
1767
+ "teLinkBandwidthStorageType" : {
1768
+ "nodetype" : "member",
1769
+ "module" : "TE-LINK-STD-MIB"
1770
+ },
1771
+ }, # members
1772
+ "description" :
1773
+ """Collection of objects needed for the management of
1774
+ the bandwidth resources associated with TE links and
1775
+ component links.""",
1776
+ }, # group
1777
+ "componentLinkBandwidthGroup" : {
1778
+ "nodetype" : "group",
1779
+ "moduleName" : "TE-LINK-STD-MIB",
1780
+ "oid" : "1.3.6.1.2.1.10.200.2.2.4",
1781
+ "status" : "current",
1782
+ "members" : {
1783
+ "componentLinkMaxResBandwidth" : {
1784
+ "nodetype" : "member",
1785
+ "module" : "TE-LINK-STD-MIB"
1786
+ },
1787
+ "componentLinkDescrMaxLspBandwidthPrio0" : {
1788
+ "nodetype" : "member",
1789
+ "module" : "TE-LINK-STD-MIB"
1790
+ },
1791
+ "componentLinkDescrMaxLspBandwidthPrio1" : {
1792
+ "nodetype" : "member",
1793
+ "module" : "TE-LINK-STD-MIB"
1794
+ },
1795
+ "componentLinkDescrMaxLspBandwidthPrio2" : {
1796
+ "nodetype" : "member",
1797
+ "module" : "TE-LINK-STD-MIB"
1798
+ },
1799
+ "componentLinkDescrMaxLspBandwidthPrio3" : {
1800
+ "nodetype" : "member",
1801
+ "module" : "TE-LINK-STD-MIB"
1802
+ },
1803
+ "componentLinkDescrMaxLspBandwidthPrio4" : {
1804
+ "nodetype" : "member",
1805
+ "module" : "TE-LINK-STD-MIB"
1806
+ },
1807
+ "componentLinkDescrMaxLspBandwidthPrio5" : {
1808
+ "nodetype" : "member",
1809
+ "module" : "TE-LINK-STD-MIB"
1810
+ },
1811
+ "componentLinkDescrMaxLspBandwidthPrio6" : {
1812
+ "nodetype" : "member",
1813
+ "module" : "TE-LINK-STD-MIB"
1814
+ },
1815
+ "componentLinkDescrMaxLspBandwidthPrio7" : {
1816
+ "nodetype" : "member",
1817
+ "module" : "TE-LINK-STD-MIB"
1818
+ },
1819
+ "componentLinkBandwidthUnreserved" : {
1820
+ "nodetype" : "member",
1821
+ "module" : "TE-LINK-STD-MIB"
1822
+ },
1823
+ "componentLinkBandwidthRowStatus" : {
1824
+ "nodetype" : "member",
1825
+ "module" : "TE-LINK-STD-MIB"
1826
+ },
1827
+ "componentLinkBandwidthStorageType" : {
1828
+ "nodetype" : "member",
1829
+ "module" : "TE-LINK-STD-MIB"
1830
+ },
1831
+ }, # members
1832
+ "description" :
1833
+ """Collection of objects needed for the management of the
1834
+ bandwidth parameters associated with component links.""",
1835
+ }, # group
1836
+ "teLinkPscGroup" : {
1837
+ "nodetype" : "group",
1838
+ "moduleName" : "TE-LINK-STD-MIB",
1839
+ "oid" : "1.3.6.1.2.1.10.200.2.2.5",
1840
+ "status" : "current",
1841
+ "members" : {
1842
+ "teLinkDescrMinLspBandwidth" : {
1843
+ "nodetype" : "member",
1844
+ "module" : "TE-LINK-STD-MIB"
1845
+ },
1846
+ "teLinkDescrInterfaceMtu" : {
1847
+ "nodetype" : "member",
1848
+ "module" : "TE-LINK-STD-MIB"
1849
+ },
1850
+ "componentLinkDescrMinLspBandwidth" : {
1851
+ "nodetype" : "member",
1852
+ "module" : "TE-LINK-STD-MIB"
1853
+ },
1854
+ "componentLinkDescrInterfaceMtu" : {
1855
+ "nodetype" : "member",
1856
+ "module" : "TE-LINK-STD-MIB"
1857
+ },
1858
+ }, # members
1859
+ "description" :
1860
+ """Collection of objects needed for devices that are
1861
+ packet switch capable.""",
1862
+ }, # group
1863
+ "teLinkTdmGroup" : {
1864
+ "nodetype" : "group",
1865
+ "moduleName" : "TE-LINK-STD-MIB",
1866
+ "oid" : "1.3.6.1.2.1.10.200.2.2.6",
1867
+ "status" : "current",
1868
+ "members" : {
1869
+ "teLinkDescrMinLspBandwidth" : {
1870
+ "nodetype" : "member",
1871
+ "module" : "TE-LINK-STD-MIB"
1872
+ },
1873
+ "teLinkDescrIndication" : {
1874
+ "nodetype" : "member",
1875
+ "module" : "TE-LINK-STD-MIB"
1876
+ },
1877
+ "componentLinkDescrMinLspBandwidth" : {
1878
+ "nodetype" : "member",
1879
+ "module" : "TE-LINK-STD-MIB"
1880
+ },
1881
+ "componentLinkDescrIndication" : {
1882
+ "nodetype" : "member",
1883
+ "module" : "TE-LINK-STD-MIB"
1884
+ },
1885
+ }, # members
1886
+ "description" :
1887
+ """Collection of objects needed for devices that are
1888
+ TDM switching capable.""",
1889
+ }, # group
1890
+ }, # groups
1891
+
1892
+ "compliances" : {
1893
+ "teLinkModuleFullCompliance" : {
1894
+ "nodetype" : "compliance",
1895
+ "moduleName" : "TE-LINK-STD-MIB",
1896
+ "oid" : "1.3.6.1.2.1.10.200.2.1.1",
1897
+ "status" : "current",
1898
+ "description" :
1899
+ """Compliance statement for agents that support read-create
1900
+ so that both configuration and monitoring of TE links can
1901
+ be accomplished via this MIB module.""",
1902
+ "requires" : {
1903
+ "teLinkGroup" : {
1904
+ "nodetype" : "mandatory",
1905
+ "module" : "TE-LINK-STD-MIB"
1906
+ },
1907
+ "teLinkBandwidthGroup" : {
1908
+ "nodetype" : "mandatory",
1909
+ "module" : "TE-LINK-STD-MIB"
1910
+ },
1911
+ "componentLinkBandwidthGroup" : {
1912
+ "nodetype" : "mandatory",
1913
+ "module" : "TE-LINK-STD-MIB"
1914
+ },
1915
+ "teLinkSrlgGroup" : {
1916
+ "nodetype" : "optional",
1917
+ "module" : "TE-LINK-STD-MIB",
1918
+ "description" :
1919
+ """This group is mandatory for GMPLS enabled devices.""",
1920
+ },
1921
+ "teLinkPscGroup" : {
1922
+ "nodetype" : "optional",
1923
+ "module" : "TE-LINK-STD-MIB",
1924
+ "description" :
1925
+ """This group is mandatory for devices that support the
1926
+ packet switching capability.""",
1927
+ },
1928
+ "teLinkTdmGroup" : {
1929
+ "nodetype" : "optional",
1930
+ "module" : "TE-LINK-STD-MIB",
1931
+ "description" :
1932
+ """This group is mandatory for devices that support the TDM
1933
+ switching capability.""",
1934
+ },
1935
+ }, # requires
1936
+ "refinements" : {
1937
+ "teLinkAddressType" : {
1938
+ "module" : "TE-LINK-STD-MIB",
1939
+ "syntax" : {
1940
+ "type" : {
1941
+ "basetype" : "Enumeration",
1942
+ "parent module" : {
1943
+ "name" : "INET-ADDRESS-MIB",
1944
+ "type" : "InetAddressType",
1945
+ },
1946
+ "unknown" : {
1947
+ "nodetype" : "namednumber",
1948
+ "number" : "0"
1949
+ },
1950
+ "ipv4" : {
1951
+ "nodetype" : "namednumber",
1952
+ "number" : "1"
1953
+ },
1954
+ "ipv6" : {
1955
+ "nodetype" : "namednumber",
1956
+ "number" : "2"
1957
+ },
1958
+ },
1959
+ }, # syntax
1960
+ "description" :
1961
+ """Only ipv4(1) and ipv6(2) address types need to be
1962
+ supported for numbered links. For unnumbered links, the
1963
+ unknown(0) address type needs to be supported.""",
1964
+ },
1965
+ "teLinkLocalIpAddr" : {
1966
+ "module" : "TE-LINK-STD-MIB",
1967
+ "syntax" : {
1968
+ "type" : {
1969
+ "basetype" : "OctetString",
1970
+ "parent module" : {
1971
+ "name" : "INET-ADDRESS-MIB",
1972
+ "type" : "InetAddress",
1973
+ },
1974
+ "ranges" : [
1975
+ {
1976
+ "min" : "0",
1977
+ "max" : "0"
1978
+ },
1979
+ {
1980
+ "min" : "4",
1981
+ "max" : "4"
1982
+ },
1983
+ {
1984
+ "min" : "16",
1985
+ "max" : "16"
1986
+ },
1987
+ ],
1988
+ "range" : {
1989
+ "min" : "0",
1990
+ "max" : "16"
1991
+ },
1992
+ },
1993
+ }, # syntax
1994
+ "description" :
1995
+ """Size of TE link IP address depends on type of TE link.
1996
+ TE link IP address size is zero if the link is unnumbered,
1997
+ four if the link IP address is IPv4, and sixteen if the
1998
+ link IP address is IPv6.""",
1999
+ },
2000
+ "teLinkRemoteIpAddr" : {
2001
+ "module" : "TE-LINK-STD-MIB",
2002
+ "syntax" : {
2003
+ "type" : {
2004
+ "basetype" : "OctetString",
2005
+ "parent module" : {
2006
+ "name" : "INET-ADDRESS-MIB",
2007
+ "type" : "InetAddress",
2008
+ },
2009
+ "ranges" : [
2010
+ {
2011
+ "min" : "0",
2012
+ "max" : "0"
2013
+ },
2014
+ {
2015
+ "min" : "4",
2016
+ "max" : "4"
2017
+ },
2018
+ {
2019
+ "min" : "16",
2020
+ "max" : "16"
2021
+ },
2022
+ ],
2023
+ "range" : {
2024
+ "min" : "0",
2025
+ "max" : "16"
2026
+ },
2027
+ },
2028
+ }, # syntax
2029
+ "description" :
2030
+ """Size of TE link IP address depends on type of TE link.
2031
+ TE link IP address size is zero if the link is unnumbered,
2032
+ four if the link IP address is IPv4, and sixteen if the
2033
+ link IP address is IPv6.""",
2034
+ },
2035
+ "teLinkRowStatus" : {
2036
+ "module" : "TE-LINK-STD-MIB",
2037
+ "syntax" : {
2038
+ "type" : {
2039
+ "basetype" : "Enumeration",
2040
+ "parent module" : {
2041
+ "name" : "SNMPv2-TC",
2042
+ "type" : "RowStatus",
2043
+ },
2044
+ "active" : {
2045
+ "nodetype" : "namednumber",
2046
+ "number" : "1"
2047
+ },
2048
+ "notInService" : {
2049
+ "nodetype" : "namednumber",
2050
+ "number" : "2"
2051
+ },
2052
+ },
2053
+ }, # syntax
2054
+ "writesyntax" : {
2055
+ "type" : {
2056
+ "basetype" : "Enumeration",
2057
+ "parent module" : {
2058
+ "name" : "SNMPv2-TC",
2059
+ "type" : "RowStatus",
2060
+ },
2061
+ "active" : {
2062
+ "nodetype" : "namednumber",
2063
+ "number" : "1"
2064
+ },
2065
+ "notInService" : {
2066
+ "nodetype" : "namednumber",
2067
+ "number" : "2"
2068
+ },
2069
+ "createAndGo" : {
2070
+ "nodetype" : "namednumber",
2071
+ "number" : "4"
2072
+ },
2073
+ "destroy" : {
2074
+ "nodetype" : "namednumber",
2075
+ "number" : "6"
2076
+ },
2077
+ },
2078
+ }, # writesyntax
2079
+ "description" :
2080
+ """Support for notReady(3) and createAndWait(5) is
2081
+ not required.""",
2082
+ },
2083
+ "teLinkDescrRowStatus" : {
2084
+ "module" : "TE-LINK-STD-MIB",
2085
+ "syntax" : {
2086
+ "type" : {
2087
+ "basetype" : "Enumeration",
2088
+ "parent module" : {
2089
+ "name" : "SNMPv2-TC",
2090
+ "type" : "RowStatus",
2091
+ },
2092
+ "active" : {
2093
+ "nodetype" : "namednumber",
2094
+ "number" : "1"
2095
+ },
2096
+ "notInService" : {
2097
+ "nodetype" : "namednumber",
2098
+ "number" : "2"
2099
+ },
2100
+ },
2101
+ }, # syntax
2102
+ "writesyntax" : {
2103
+ "type" : {
2104
+ "basetype" : "Enumeration",
2105
+ "parent module" : {
2106
+ "name" : "SNMPv2-TC",
2107
+ "type" : "RowStatus",
2108
+ },
2109
+ "active" : {
2110
+ "nodetype" : "namednumber",
2111
+ "number" : "1"
2112
+ },
2113
+ "notInService" : {
2114
+ "nodetype" : "namednumber",
2115
+ "number" : "2"
2116
+ },
2117
+ "createAndGo" : {
2118
+ "nodetype" : "namednumber",
2119
+ "number" : "4"
2120
+ },
2121
+ "destroy" : {
2122
+ "nodetype" : "namednumber",
2123
+ "number" : "6"
2124
+ },
2125
+ },
2126
+ }, # writesyntax
2127
+ "description" :
2128
+ """Support for notReady(3) and createAndWait(5) is
2129
+ not required.""",
2130
+ },
2131
+ "teLinkSrlgRowStatus" : {
2132
+ "module" : "TE-LINK-STD-MIB",
2133
+ "syntax" : {
2134
+ "type" : {
2135
+ "basetype" : "Enumeration",
2136
+ "parent module" : {
2137
+ "name" : "SNMPv2-TC",
2138
+ "type" : "RowStatus",
2139
+ },
2140
+ "active" : {
2141
+ "nodetype" : "namednumber",
2142
+ "number" : "1"
2143
+ },
2144
+ "notInService" : {
2145
+ "nodetype" : "namednumber",
2146
+ "number" : "2"
2147
+ },
2148
+ },
2149
+ }, # syntax
2150
+ "writesyntax" : {
2151
+ "type" : {
2152
+ "basetype" : "Enumeration",
2153
+ "parent module" : {
2154
+ "name" : "SNMPv2-TC",
2155
+ "type" : "RowStatus",
2156
+ },
2157
+ "active" : {
2158
+ "nodetype" : "namednumber",
2159
+ "number" : "1"
2160
+ },
2161
+ "notInService" : {
2162
+ "nodetype" : "namednumber",
2163
+ "number" : "2"
2164
+ },
2165
+ "createAndGo" : {
2166
+ "nodetype" : "namednumber",
2167
+ "number" : "4"
2168
+ },
2169
+ "destroy" : {
2170
+ "nodetype" : "namednumber",
2171
+ "number" : "6"
2172
+ },
2173
+ },
2174
+ }, # writesyntax
2175
+ "description" :
2176
+ """Support for notReady(3) and createAndWait(5) is
2177
+ not required.""",
2178
+ },
2179
+ "teLinkBandwidthRowStatus" : {
2180
+ "module" : "TE-LINK-STD-MIB",
2181
+ "syntax" : {
2182
+ "type" : {
2183
+ "basetype" : "Enumeration",
2184
+ "parent module" : {
2185
+ "name" : "SNMPv2-TC",
2186
+ "type" : "RowStatus",
2187
+ },
2188
+ "active" : {
2189
+ "nodetype" : "namednumber",
2190
+ "number" : "1"
2191
+ },
2192
+ "notInService" : {
2193
+ "nodetype" : "namednumber",
2194
+ "number" : "2"
2195
+ },
2196
+ },
2197
+ }, # syntax
2198
+ "writesyntax" : {
2199
+ "type" : {
2200
+ "basetype" : "Enumeration",
2201
+ "parent module" : {
2202
+ "name" : "SNMPv2-TC",
2203
+ "type" : "RowStatus",
2204
+ },
2205
+ "active" : {
2206
+ "nodetype" : "namednumber",
2207
+ "number" : "1"
2208
+ },
2209
+ "notInService" : {
2210
+ "nodetype" : "namednumber",
2211
+ "number" : "2"
2212
+ },
2213
+ "createAndGo" : {
2214
+ "nodetype" : "namednumber",
2215
+ "number" : "4"
2216
+ },
2217
+ "destroy" : {
2218
+ "nodetype" : "namednumber",
2219
+ "number" : "6"
2220
+ },
2221
+ },
2222
+ }, # writesyntax
2223
+ "description" :
2224
+ """Support for notReady(3) and createAndWait(5) is
2225
+ not required.""",
2226
+ },
2227
+ "componentLinkRowStatus" : {
2228
+ "module" : "TE-LINK-STD-MIB",
2229
+ "syntax" : {
2230
+ "type" : {
2231
+ "basetype" : "Enumeration",
2232
+ "parent module" : {
2233
+ "name" : "SNMPv2-TC",
2234
+ "type" : "RowStatus",
2235
+ },
2236
+ "active" : {
2237
+ "nodetype" : "namednumber",
2238
+ "number" : "1"
2239
+ },
2240
+ "notInService" : {
2241
+ "nodetype" : "namednumber",
2242
+ "number" : "2"
2243
+ },
2244
+ },
2245
+ }, # syntax
2246
+ "writesyntax" : {
2247
+ "type" : {
2248
+ "basetype" : "Enumeration",
2249
+ "parent module" : {
2250
+ "name" : "SNMPv2-TC",
2251
+ "type" : "RowStatus",
2252
+ },
2253
+ "active" : {
2254
+ "nodetype" : "namednumber",
2255
+ "number" : "1"
2256
+ },
2257
+ "notInService" : {
2258
+ "nodetype" : "namednumber",
2259
+ "number" : "2"
2260
+ },
2261
+ "createAndGo" : {
2262
+ "nodetype" : "namednumber",
2263
+ "number" : "4"
2264
+ },
2265
+ "destroy" : {
2266
+ "nodetype" : "namednumber",
2267
+ "number" : "6"
2268
+ },
2269
+ },
2270
+ }, # writesyntax
2271
+ "description" :
2272
+ """Support for notReady(3) and createAndWait(5) is
2273
+ not required.""",
2274
+ },
2275
+ "componentLinkDescrRowStatus" : {
2276
+ "module" : "TE-LINK-STD-MIB",
2277
+ "syntax" : {
2278
+ "type" : {
2279
+ "basetype" : "Enumeration",
2280
+ "parent module" : {
2281
+ "name" : "SNMPv2-TC",
2282
+ "type" : "RowStatus",
2283
+ },
2284
+ "active" : {
2285
+ "nodetype" : "namednumber",
2286
+ "number" : "1"
2287
+ },
2288
+ "notInService" : {
2289
+ "nodetype" : "namednumber",
2290
+ "number" : "2"
2291
+ },
2292
+ },
2293
+ }, # syntax
2294
+ "writesyntax" : {
2295
+ "type" : {
2296
+ "basetype" : "Enumeration",
2297
+ "parent module" : {
2298
+ "name" : "SNMPv2-TC",
2299
+ "type" : "RowStatus",
2300
+ },
2301
+ "active" : {
2302
+ "nodetype" : "namednumber",
2303
+ "number" : "1"
2304
+ },
2305
+ "notInService" : {
2306
+ "nodetype" : "namednumber",
2307
+ "number" : "2"
2308
+ },
2309
+ "createAndGo" : {
2310
+ "nodetype" : "namednumber",
2311
+ "number" : "4"
2312
+ },
2313
+ "destroy" : {
2314
+ "nodetype" : "namednumber",
2315
+ "number" : "6"
2316
+ },
2317
+ },
2318
+ }, # writesyntax
2319
+ "description" :
2320
+ """Support for notReady(3) and createAndWait(5) is
2321
+ not required.""",
2322
+ },
2323
+ "componentLinkBandwidthRowStatus" : {
2324
+ "module" : "TE-LINK-STD-MIB",
2325
+ "syntax" : {
2326
+ "type" : {
2327
+ "basetype" : "Enumeration",
2328
+ "parent module" : {
2329
+ "name" : "SNMPv2-TC",
2330
+ "type" : "RowStatus",
2331
+ },
2332
+ "active" : {
2333
+ "nodetype" : "namednumber",
2334
+ "number" : "1"
2335
+ },
2336
+ "notInService" : {
2337
+ "nodetype" : "namednumber",
2338
+ "number" : "2"
2339
+ },
2340
+ },
2341
+ }, # syntax
2342
+ "writesyntax" : {
2343
+ "type" : {
2344
+ "basetype" : "Enumeration",
2345
+ "parent module" : {
2346
+ "name" : "SNMPv2-TC",
2347
+ "type" : "RowStatus",
2348
+ },
2349
+ "active" : {
2350
+ "nodetype" : "namednumber",
2351
+ "number" : "1"
2352
+ },
2353
+ "notInService" : {
2354
+ "nodetype" : "namednumber",
2355
+ "number" : "2"
2356
+ },
2357
+ "createAndGo" : {
2358
+ "nodetype" : "namednumber",
2359
+ "number" : "4"
2360
+ },
2361
+ "destroy" : {
2362
+ "nodetype" : "namednumber",
2363
+ "number" : "6"
2364
+ },
2365
+ },
2366
+ }, # writesyntax
2367
+ "description" :
2368
+ """Support for notReady(3) and createAndWait(5) is
2369
+ not required.""",
2370
+ },
2371
+ }, # refinements
2372
+
2373
+ }, # compliance
2374
+ "teLinkModuleReadOnlyCompliance" : {
2375
+ "nodetype" : "compliance",
2376
+ "moduleName" : "TE-LINK-STD-MIB",
2377
+ "oid" : "1.3.6.1.2.1.10.200.2.1.2",
2378
+ "status" : "current",
2379
+ "description" :
2380
+ """Compliance statement for agents that support the
2381
+ monitoring of the TE link MIB module.""",
2382
+ "requires" : {
2383
+ "teLinkGroup" : {
2384
+ "nodetype" : "mandatory",
2385
+ "module" : "TE-LINK-STD-MIB"
2386
+ },
2387
+ "teLinkBandwidthGroup" : {
2388
+ "nodetype" : "mandatory",
2389
+ "module" : "TE-LINK-STD-MIB"
2390
+ },
2391
+ "componentLinkBandwidthGroup" : {
2392
+ "nodetype" : "mandatory",
2393
+ "module" : "TE-LINK-STD-MIB"
2394
+ },
2395
+ "teLinkSrlgGroup" : {
2396
+ "nodetype" : "optional",
2397
+ "module" : "TE-LINK-STD-MIB",
2398
+ "description" :
2399
+ """This group is mandatory for GMPLS enabled devices.""",
2400
+ },
2401
+ "teLinkPscGroup" : {
2402
+ "nodetype" : "optional",
2403
+ "module" : "TE-LINK-STD-MIB",
2404
+ "description" :
2405
+ """This group is mandatory for devices that support the
2406
+ packet switching capability.""",
2407
+ },
2408
+ "teLinkTdmGroup" : {
2409
+ "nodetype" : "optional",
2410
+ "module" : "TE-LINK-STD-MIB",
2411
+ "description" :
2412
+ """This group is mandatory for devices that support the TDM
2413
+ switching capability.""",
2414
+ },
2415
+ }, # requires
2416
+ "refinements" : {
2417
+ "teLinkAddressType" : {
2418
+ "module" : "TE-LINK-STD-MIB",
2419
+ "syntax" : {
2420
+ "type" : {
2421
+ "basetype" : "Enumeration",
2422
+ "parent module" : {
2423
+ "name" : "INET-ADDRESS-MIB",
2424
+ "type" : "InetAddressType",
2425
+ },
2426
+ "unknown" : {
2427
+ "nodetype" : "namednumber",
2428
+ "number" : "0"
2429
+ },
2430
+ "ipv4" : {
2431
+ "nodetype" : "namednumber",
2432
+ "number" : "1"
2433
+ },
2434
+ "ipv6" : {
2435
+ "nodetype" : "namednumber",
2436
+ "number" : "2"
2437
+ },
2438
+ },
2439
+ }, # syntax
2440
+ "access" : "readonly",
2441
+ "description" :
2442
+ """Only ipv4(1) and ipv6(2) address types need to be
2443
+ supported for numbered links. For unnumbered links, the
2444
+ unknown(0) address type needs to be supported.""",
2445
+ },
2446
+ "teLinkLocalIpAddr" : {
2447
+ "module" : "TE-LINK-STD-MIB",
2448
+ "syntax" : {
2449
+ "type" : {
2450
+ "basetype" : "OctetString",
2451
+ "parent module" : {
2452
+ "name" : "INET-ADDRESS-MIB",
2453
+ "type" : "InetAddress",
2454
+ },
2455
+ "ranges" : [
2456
+ {
2457
+ "min" : "0",
2458
+ "max" : "0"
2459
+ },
2460
+ {
2461
+ "min" : "4",
2462
+ "max" : "4"
2463
+ },
2464
+ {
2465
+ "min" : "16",
2466
+ "max" : "16"
2467
+ },
2468
+ ],
2469
+ "range" : {
2470
+ "min" : "0",
2471
+ "max" : "16"
2472
+ },
2473
+ },
2474
+ }, # syntax
2475
+ "access" : "readonly",
2476
+ "description" :
2477
+ """Size of TE link IP address depends on type of TE link.
2478
+ TE link IP address size is zero if the link is unnumbered,
2479
+ four if the link IP address is IPv4, and sixteen if the
2480
+ link IP address is IPv6.""",
2481
+ },
2482
+ "teLinkRemoteIpAddr" : {
2483
+ "module" : "TE-LINK-STD-MIB",
2484
+ "syntax" : {
2485
+ "type" : {
2486
+ "basetype" : "OctetString",
2487
+ "parent module" : {
2488
+ "name" : "INET-ADDRESS-MIB",
2489
+ "type" : "InetAddress",
2490
+ },
2491
+ "ranges" : [
2492
+ {
2493
+ "min" : "0",
2494
+ "max" : "0"
2495
+ },
2496
+ {
2497
+ "min" : "4",
2498
+ "max" : "4"
2499
+ },
2500
+ {
2501
+ "min" : "16",
2502
+ "max" : "16"
2503
+ },
2504
+ ],
2505
+ "range" : {
2506
+ "min" : "0",
2507
+ "max" : "16"
2508
+ },
2509
+ },
2510
+ }, # syntax
2511
+ "access" : "readonly",
2512
+ "description" :
2513
+ """Size of TE link IP address depends on type of TE link.
2514
+ TE link IP address size is zero if the link is unnumbered,
2515
+ four if the link IP address is IPv4, and sixteen if the
2516
+ link IP address is IPv6.""",
2517
+ },
2518
+ "teLinkProtectionType" : {
2519
+ "module" : "TE-LINK-STD-MIB",
2520
+ "access" : "readonly",
2521
+ "description" :
2522
+ """Write access is not required.""",
2523
+ },
2524
+ "teLinkWorkingPriority" : {
2525
+ "module" : "TE-LINK-STD-MIB",
2526
+ "access" : "readonly",
2527
+ "description" :
2528
+ """Write access is not required.""",
2529
+ },
2530
+ "teLinkRowStatus" : {
2531
+ "module" : "TE-LINK-STD-MIB",
2532
+ "syntax" : {
2533
+ "type" : {
2534
+ "basetype" : "Enumeration",
2535
+ "parent module" : {
2536
+ "name" : "SNMPv2-TC",
2537
+ "type" : "RowStatus",
2538
+ },
2539
+ "active" : {
2540
+ "nodetype" : "namednumber",
2541
+ "number" : "1"
2542
+ },
2543
+ },
2544
+ }, # syntax
2545
+ "access" : "readonly",
2546
+ "description" :
2547
+ """Write access is not required and active(1) is the
2548
+ only status that needs to be supported.""",
2549
+ },
2550
+ "teLinkStorageType" : {
2551
+ "module" : "TE-LINK-STD-MIB",
2552
+ "access" : "readonly",
2553
+ "description" :
2554
+ """Write access is not required.""",
2555
+ },
2556
+ "teLinkDescrSwitchingCapability" : {
2557
+ "module" : "TE-LINK-STD-MIB",
2558
+ "access" : "readonly",
2559
+ "description" :
2560
+ """Write access is not required.""",
2561
+ },
2562
+ "teLinkDescrEncodingType" : {
2563
+ "module" : "TE-LINK-STD-MIB",
2564
+ "access" : "readonly",
2565
+ "description" :
2566
+ """Write access is not required.""",
2567
+ },
2568
+ "teLinkDescrMinLspBandwidth" : {
2569
+ "module" : "TE-LINK-STD-MIB",
2570
+ "access" : "readonly",
2571
+ "description" :
2572
+ """Write access is not required.""",
2573
+ },
2574
+ "teLinkDescrMaxLspBandwidthPrio0" : {
2575
+ "module" : "TE-LINK-STD-MIB",
2576
+ "access" : "readonly",
2577
+ "description" :
2578
+ """Write access is not required.""",
2579
+ },
2580
+ "teLinkDescrMaxLspBandwidthPrio1" : {
2581
+ "module" : "TE-LINK-STD-MIB",
2582
+ "access" : "readonly",
2583
+ "description" :
2584
+ """Write access is not required.""",
2585
+ },
2586
+ "teLinkDescrMaxLspBandwidthPrio2" : {
2587
+ "module" : "TE-LINK-STD-MIB",
2588
+ "access" : "readonly",
2589
+ "description" :
2590
+ """Write access is not required.""",
2591
+ },
2592
+ "teLinkDescrMaxLspBandwidthPrio3" : {
2593
+ "module" : "TE-LINK-STD-MIB",
2594
+ "access" : "readonly",
2595
+ "description" :
2596
+ """Write access is not required.""",
2597
+ },
2598
+ "teLinkDescrMaxLspBandwidthPrio4" : {
2599
+ "module" : "TE-LINK-STD-MIB",
2600
+ "access" : "readonly",
2601
+ "description" :
2602
+ """Write access is not required.""",
2603
+ },
2604
+ "teLinkDescrMaxLspBandwidthPrio5" : {
2605
+ "module" : "TE-LINK-STD-MIB",
2606
+ "access" : "readonly",
2607
+ "description" :
2608
+ """Write access is not required.""",
2609
+ },
2610
+ "teLinkDescrMaxLspBandwidthPrio6" : {
2611
+ "module" : "TE-LINK-STD-MIB",
2612
+ "access" : "readonly",
2613
+ "description" :
2614
+ """Write access is not required.""",
2615
+ },
2616
+ "teLinkDescrMaxLspBandwidthPrio7" : {
2617
+ "module" : "TE-LINK-STD-MIB",
2618
+ "access" : "readonly",
2619
+ "description" :
2620
+ """Write access is not required.""",
2621
+ },
2622
+ "teLinkDescrRowStatus" : {
2623
+ "module" : "TE-LINK-STD-MIB",
2624
+ "syntax" : {
2625
+ "type" : {
2626
+ "basetype" : "Enumeration",
2627
+ "parent module" : {
2628
+ "name" : "SNMPv2-TC",
2629
+ "type" : "RowStatus",
2630
+ },
2631
+ "active" : {
2632
+ "nodetype" : "namednumber",
2633
+ "number" : "1"
2634
+ },
2635
+ },
2636
+ }, # syntax
2637
+ "access" : "readonly",
2638
+ "description" :
2639
+ """Write access is not required and active(1) is the
2640
+ only status that needs to be supported.""",
2641
+ },
2642
+ "teLinkDescrStorageType" : {
2643
+ "module" : "TE-LINK-STD-MIB",
2644
+ "access" : "readonly",
2645
+ "description" :
2646
+ """Write access is not required.""",
2647
+ },
2648
+ "teLinkSrlgRowStatus" : {
2649
+ "module" : "TE-LINK-STD-MIB",
2650
+ "syntax" : {
2651
+ "type" : {
2652
+ "basetype" : "Enumeration",
2653
+ "parent module" : {
2654
+ "name" : "SNMPv2-TC",
2655
+ "type" : "RowStatus",
2656
+ },
2657
+ "active" : {
2658
+ "nodetype" : "namednumber",
2659
+ "number" : "1"
2660
+ },
2661
+ },
2662
+ }, # syntax
2663
+ "access" : "readonly",
2664
+ "description" :
2665
+ """Write access is not required and active(1) is the
2666
+ only status that needs to be supported.""",
2667
+ },
2668
+ "teLinkSrlgStorageType" : {
2669
+ "module" : "TE-LINK-STD-MIB",
2670
+ "access" : "readonly",
2671
+ "description" :
2672
+ """Write access is not required.""",
2673
+ },
2674
+ "teLinkBandwidthRowStatus" : {
2675
+ "module" : "TE-LINK-STD-MIB",
2676
+ "syntax" : {
2677
+ "type" : {
2678
+ "basetype" : "Enumeration",
2679
+ "parent module" : {
2680
+ "name" : "SNMPv2-TC",
2681
+ "type" : "RowStatus",
2682
+ },
2683
+ "active" : {
2684
+ "nodetype" : "namednumber",
2685
+ "number" : "1"
2686
+ },
2687
+ },
2688
+ }, # syntax
2689
+ "access" : "readonly",
2690
+ "description" :
2691
+ """Write access is not required and active(1) is the
2692
+ only status that needs to be supported.""",
2693
+ },
2694
+ "teLinkBandwidthStorageType" : {
2695
+ "module" : "TE-LINK-STD-MIB",
2696
+ "access" : "readonly",
2697
+ "description" :
2698
+ """Write access is not required.""",
2699
+ },
2700
+ "componentLinkMaxResBandwidth" : {
2701
+ "module" : "TE-LINK-STD-MIB",
2702
+ "access" : "readonly",
2703
+ "description" :
2704
+ """Write access is not required.""",
2705
+ },
2706
+ "componentLinkPreferredProtection" : {
2707
+ "module" : "TE-LINK-STD-MIB",
2708
+ "access" : "readonly",
2709
+ "description" :
2710
+ """Write access is not required.""",
2711
+ },
2712
+ "componentLinkRowStatus" : {
2713
+ "module" : "TE-LINK-STD-MIB",
2714
+ "syntax" : {
2715
+ "type" : {
2716
+ "basetype" : "Enumeration",
2717
+ "parent module" : {
2718
+ "name" : "SNMPv2-TC",
2719
+ "type" : "RowStatus",
2720
+ },
2721
+ "active" : {
2722
+ "nodetype" : "namednumber",
2723
+ "number" : "1"
2724
+ },
2725
+ },
2726
+ }, # syntax
2727
+ "access" : "readonly",
2728
+ "description" :
2729
+ """Write access is not required and active(1) is the
2730
+ only status that needs to be supported.""",
2731
+ },
2732
+ "componentLinkStorageType" : {
2733
+ "module" : "TE-LINK-STD-MIB",
2734
+ "access" : "readonly",
2735
+ "description" :
2736
+ """Write access is not required.""",
2737
+ },
2738
+ "componentLinkDescrSwitchingCapability" : {
2739
+ "module" : "TE-LINK-STD-MIB",
2740
+ "access" : "readonly",
2741
+ "description" :
2742
+ """Write access is not required.""",
2743
+ },
2744
+ "componentLinkDescrEncodingType" : {
2745
+ "module" : "TE-LINK-STD-MIB",
2746
+ "access" : "readonly",
2747
+ "description" :
2748
+ """Write access is not required.""",
2749
+ },
2750
+ "componentLinkDescrMinLspBandwidth" : {
2751
+ "module" : "TE-LINK-STD-MIB",
2752
+ "access" : "readonly",
2753
+ "description" :
2754
+ """Write access is not required.""",
2755
+ },
2756
+ "componentLinkDescrMaxLspBandwidthPrio0" : {
2757
+ "module" : "TE-LINK-STD-MIB",
2758
+ "access" : "readonly",
2759
+ "description" :
2760
+ """Write access is not required.""",
2761
+ },
2762
+ "componentLinkDescrMaxLspBandwidthPrio1" : {
2763
+ "module" : "TE-LINK-STD-MIB",
2764
+ "access" : "readonly",
2765
+ "description" :
2766
+ """Write access is not required.""",
2767
+ },
2768
+ "componentLinkDescrMaxLspBandwidthPrio2" : {
2769
+ "module" : "TE-LINK-STD-MIB",
2770
+ "access" : "readonly",
2771
+ "description" :
2772
+ """Write access is not required.""",
2773
+ },
2774
+ "componentLinkDescrMaxLspBandwidthPrio3" : {
2775
+ "module" : "TE-LINK-STD-MIB",
2776
+ "access" : "readonly",
2777
+ "description" :
2778
+ """Write access is not required.""",
2779
+ },
2780
+ "componentLinkDescrMaxLspBandwidthPrio4" : {
2781
+ "module" : "TE-LINK-STD-MIB",
2782
+ "access" : "readonly",
2783
+ "description" :
2784
+ """Write access is not required.""",
2785
+ },
2786
+ "componentLinkDescrMaxLspBandwidthPrio5" : {
2787
+ "module" : "TE-LINK-STD-MIB",
2788
+ "access" : "readonly",
2789
+ "description" :
2790
+ """Write access is not required.""",
2791
+ },
2792
+ "componentLinkDescrMaxLspBandwidthPrio6" : {
2793
+ "module" : "TE-LINK-STD-MIB",
2794
+ "access" : "readonly",
2795
+ "description" :
2796
+ """Write access is not required.""",
2797
+ },
2798
+ "componentLinkDescrMaxLspBandwidthPrio7" : {
2799
+ "module" : "TE-LINK-STD-MIB",
2800
+ "access" : "readonly",
2801
+ "description" :
2802
+ """Write access is not required.""",
2803
+ },
2804
+ "componentLinkDescrInterfaceMtu" : {
2805
+ "module" : "TE-LINK-STD-MIB",
2806
+ "access" : "readonly",
2807
+ "description" :
2808
+ """Write access is not required.""",
2809
+ },
2810
+ "componentLinkDescrIndication" : {
2811
+ "module" : "TE-LINK-STD-MIB",
2812
+ "access" : "readonly",
2813
+ "description" :
2814
+ """Write access is not required.""",
2815
+ },
2816
+ "componentLinkDescrRowStatus" : {
2817
+ "module" : "TE-LINK-STD-MIB",
2818
+ "syntax" : {
2819
+ "type" : {
2820
+ "basetype" : "Enumeration",
2821
+ "parent module" : {
2822
+ "name" : "SNMPv2-TC",
2823
+ "type" : "RowStatus",
2824
+ },
2825
+ "active" : {
2826
+ "nodetype" : "namednumber",
2827
+ "number" : "1"
2828
+ },
2829
+ },
2830
+ }, # syntax
2831
+ "access" : "readonly",
2832
+ "description" :
2833
+ """Write access is not required and active(1) is the
2834
+
2835
+
2836
+
2837
+ only status that needs to be supported.""",
2838
+ },
2839
+ "componentLinkDescrStorageType" : {
2840
+ "module" : "TE-LINK-STD-MIB",
2841
+ "access" : "readonly",
2842
+ "description" :
2843
+ """Write access is not required.""",
2844
+ },
2845
+ "componentLinkBandwidthRowStatus" : {
2846
+ "module" : "TE-LINK-STD-MIB",
2847
+ "syntax" : {
2848
+ "type" : {
2849
+ "basetype" : "Enumeration",
2850
+ "parent module" : {
2851
+ "name" : "SNMPv2-TC",
2852
+ "type" : "RowStatus",
2853
+ },
2854
+ "active" : {
2855
+ "nodetype" : "namednumber",
2856
+ "number" : "1"
2857
+ },
2858
+ },
2859
+ }, # syntax
2860
+ "access" : "readonly",
2861
+ "description" :
2862
+ """Write access is not required and active(1) is the
2863
+ only status that needs to be supported.""",
2864
+ },
2865
+ "componentLinkBandwidthStorageType" : {
2866
+ "module" : "TE-LINK-STD-MIB",
2867
+ "access" : "readonly",
2868
+ "description" :
2869
+ """Write access is not required.""",
2870
+ },
2871
+ }, # refinements
2872
+
2873
+ }, # compliance
2874
+ }, # compliances
2875
+
2876
+ }