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,1749 @@
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 TED-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TED-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TED-MIB",
11
+
12
+ "TED-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF CCAMP Working Group.""",
17
+ "contact" :
18
+ """ Tomohiro Otani
19
+ Tm-otani@kddi.com
20
+
21
+ Masanori Miyazawa
22
+ ma-miyazawa@kddilabs.jp
23
+
24
+ Thomas D. Nadeau
25
+ tnadeau@juniper.net
26
+
27
+ Kenji Kumaki
28
+ ke-kumaki@kddi.com
29
+
30
+ Comments and discussion to ccamp@ietf.org""",
31
+ "description" :
32
+ """This MIB module contains managed object definitions for TED in
33
+ support of MPLS/GMPLS TE Database.
34
+
35
+ Copyright (c) 2013 IETF Trust and the persons identified as
36
+ authors of the code. All rights reserved.
37
+
38
+ Redistribution and use in source and binary forms, with or without
39
+ modification, is permitted pursuant to, and subject to the license
40
+ terms contained in, the Simplified BSD License set forth in
41
+ Section 4.c of the IETF Trust's Legal Provisions Relating to IETF
42
+ Documents (http://trustee.ietf.org/license-info).""",
43
+ "revisions" : (
44
+ {
45
+ "date" : "2012-12-21 00:00",
46
+ "description" :
47
+ """Initial version. Published as RFC 6825.""",
48
+ },
49
+ ),
50
+ "identity node" : "tedMIB",
51
+ },
52
+
53
+ "imports" : (
54
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
55
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
56
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
58
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
59
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
60
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
61
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
62
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
63
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
64
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
65
+ {"module" : "IANA-GMPLS-TC-MIB", "name" : "IANAGmplsLSPEncodingTypeTC"},
66
+ {"module" : "IANA-GMPLS-TC-MIB", "name" : "IANAGmplsSwitchingTypeTC"},
67
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
68
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
69
+ {"module" : "FLOAT-TC-MIB", "name" : "Float32TC"},
70
+ ),
71
+
72
+ "typedefs" : {
73
+ "TedAreaIdTC" : {
74
+ "basetype" : "OctetString",
75
+ "status" : "current",
76
+ "ranges" : [
77
+ {
78
+ "min" : "0",
79
+ "max" : "20"
80
+ },
81
+ ],
82
+ "range" : {
83
+ "min" : "0",
84
+ "max" : "20"
85
+ },
86
+ "description" :
87
+ """The area identifier of the IGP. If OSPF is used to advertise
88
+ LSA, this represents an ospfArea. If IS-IS is used, this
89
+ represents an area address.""",
90
+ },
91
+ "TedRouterIdTC" : {
92
+ "basetype" : "OctetString",
93
+ "status" : "current",
94
+ "ranges" : [
95
+ {
96
+ "min" : "0",
97
+ "max" : "6"
98
+ },
99
+ ],
100
+ "range" : {
101
+ "min" : "0",
102
+ "max" : "6"
103
+ },
104
+ "description" :
105
+ """The router identifier. If OSPF is used to advertise LSA, this
106
+ represents a Router ID. If IS-IS is used, this represents a
107
+ System ID.""",
108
+ },
109
+ "TedLinkIndexTC" : {
110
+ "basetype" : "OctetString",
111
+ "status" : "current",
112
+ "ranges" : [
113
+ {
114
+ "min" : "0",
115
+ "max" : "8"
116
+ },
117
+ ],
118
+ "range" : {
119
+ "min" : "0",
120
+ "max" : "8"
121
+ },
122
+ "description" :
123
+ """The link identifier. If OSPF is used, this represents an
124
+ ospfLsdbID. If IS-IS is used, this represents an isisLSPID.
125
+ If a locally configured link is used, this object represents an
126
+ arbitrary value, which is locally defined in a router.""",
127
+ },
128
+ }, # typedefs
129
+
130
+ "nodes" : {
131
+ "tedMIB" : {
132
+ "nodetype" : "node",
133
+ "moduleName" : "TED-MIB",
134
+ "oid" : "1.3.6.1.2.1.10.273",
135
+ "status" : "current",
136
+ }, # node
137
+ "tedNotifications" : {
138
+ "nodetype" : "node",
139
+ "moduleName" : "TED-MIB",
140
+ "oid" : "1.3.6.1.2.1.10.273.0",
141
+ }, # node
142
+ "tedObjects" : {
143
+ "nodetype" : "node",
144
+ "moduleName" : "TED-MIB",
145
+ "oid" : "1.3.6.1.2.1.10.273.1",
146
+ }, # node
147
+ "tedTable" : {
148
+ "nodetype" : "table",
149
+ "moduleName" : "TED-MIB",
150
+ "oid" : "1.3.6.1.2.1.10.273.1.1",
151
+ "status" : "current",
152
+ "description" :
153
+ """This table indicates multiple TED information, which has been
154
+ supported by RFC 3630 and RFC 5305.""",
155
+ }, # table
156
+ "tedEntry" : {
157
+ "nodetype" : "row",
158
+ "moduleName" : "TED-MIB",
159
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1",
160
+ "status" : "current",
161
+ "linkage" : [
162
+ "tedLocalRouterId",
163
+ "tedRemoteRouterId",
164
+ "tedLinkInformationSource",
165
+ "tedLinkIndex",
166
+ ],
167
+ "description" :
168
+ """This entry contains TED information commonly utilized in both
169
+ MPLS and GMPLS.""",
170
+ }, # row
171
+ "tedLinkInformationSource" : {
172
+ "nodetype" : "column",
173
+ "moduleName" : "TED-MIB",
174
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.1",
175
+ "status" : "current",
176
+ "syntax" : {
177
+ "type" : {
178
+ "basetype" : "Enumeration",
179
+ "unknown" : {
180
+ "nodetype" : "namednumber",
181
+ "number" : "0"
182
+ },
183
+ "locallyConfigured" : {
184
+ "nodetype" : "namednumber",
185
+ "number" : "1"
186
+ },
187
+ "ospfv2" : {
188
+ "nodetype" : "namednumber",
189
+ "number" : "2"
190
+ },
191
+ "ospfv3" : {
192
+ "nodetype" : "namednumber",
193
+ "number" : "3"
194
+ },
195
+ "isis" : {
196
+ "nodetype" : "namednumber",
197
+ "number" : "4"
198
+ },
199
+ "other" : {
200
+ "nodetype" : "namednumber",
201
+ "number" : "5"
202
+ },
203
+ },
204
+ },
205
+ "access" : "noaccess",
206
+ "description" :
207
+ """This object indicates the source of the information about the
208
+ TE link.""",
209
+ }, # column
210
+ "tedLocalRouterId" : {
211
+ "nodetype" : "column",
212
+ "moduleName" : "TED-MIB",
213
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.2",
214
+ "status" : "current",
215
+ "syntax" : {
216
+ "type" : { "module" :"TED-MIB", "name" : "TedRouterIdTC"},
217
+ },
218
+ "access" : "noaccess",
219
+ "description" :
220
+ """This object represents the Router ID of the router originating
221
+ the LSA. If OSPF is used to advertise LSA, this represents a
222
+ Router ID. If IS-IS is used, this represents a System ID.
223
+ Otherwise, this represents zero.""",
224
+ "reference" :
225
+ """OSPF Version 2, RFC 2328, Appendix C.1
226
+ OSPF for IPv6, RFC 5340, Appendix C.1
227
+ ISO10589, Section 7.1""",
228
+ }, # column
229
+ "tedRemoteRouterId" : {
230
+ "nodetype" : "column",
231
+ "moduleName" : "TED-MIB",
232
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.3",
233
+ "status" : "current",
234
+ "syntax" : {
235
+ "type" : { "module" :"TED-MIB", "name" : "TedRouterIdTC"},
236
+ },
237
+ "access" : "noaccess",
238
+ "description" :
239
+ """This object indicates the router at the remote end of the link
240
+ from the originating router. If OSPF is used to advertise LSA,
241
+ this represents a Link ID in the Link TLV. If IS-IS is used,
242
+ this represents a neighbor System ID defined in RFC 5305.
243
+ Otherwise, this represents zero.""",
244
+ "reference" :
245
+ """OSPF Version 2, RFC 2328, Appendix C.1
246
+ OSPF for IPv6, RFC 5340, Appendix C.1
247
+ ISO10589, Section 7.1""",
248
+ }, # column
249
+ "tedLinkIndex" : {
250
+ "nodetype" : "column",
251
+ "moduleName" : "TED-MIB",
252
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.4",
253
+ "status" : "current",
254
+ "syntax" : {
255
+ "type" : { "module" :"TED-MIB", "name" : "TedLinkIndexTC"},
256
+ },
257
+ "access" : "noaccess",
258
+ "description" :
259
+ """This object indicates the link state identifier. If OSPF is
260
+ used, this represents an ospfLsdbID. If IS-IS is used, this
261
+ represents an isisLSPID. Otherwise, this represents a unique
262
+ identifier within a node.""",
263
+ "reference" :
264
+ """OSPF Version 2, RFC 2328, Appendix A.4.1,
265
+ OSPF for IPv6, RFC 5340, Appendix A.4.2
266
+ ISO10589, Section 9.8 """,
267
+ }, # column
268
+ "tedLinkInformationData" : {
269
+ "nodetype" : "column",
270
+ "moduleName" : "TED-MIB",
271
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.5",
272
+ "status" : "current",
273
+ "syntax" : {
274
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
275
+ },
276
+ "access" : "readonly",
277
+ "description" :
278
+ """If tedLinkInformationSource has the value unknown(0), this
279
+ object MUST contain a value of zeroDotZero.
280
+
281
+ If tedLinkInformationSource has the value locallyConfigured(1),
282
+ an implementation can use this object to supply the identifier
283
+ of the corresponding row entry in the teLinkTable of TE-LINK-
284
+ STD-MIB (RFC 4220), the identifier of the corresponding row in
285
+ a local proprietary TE link MIB module, or the value of
286
+ zeroDotZero.
287
+
288
+ If tedLinkInformationSource has the value ospfv2(2) and
289
+ ospfv3(3), an implementation can use this object to supply the
290
+
291
+
292
+
293
+ identifier of the corresponding row entry in the
294
+ ospfLocalLsdbTable (OSPFv2-MIB) and the ospfv3AreaLsdbTable
295
+ (OSPFv3-MIB), or the value of zeroDotZero.
296
+
297
+ If tedLinkInformationSource has the value isis(4), an
298
+ implementation can use this object to supply the identifier of
299
+ the corresponding row entry in the isisAreaAddr of ISIS-MIB
300
+ (RFC 4444), or the value of zeroDotZero.
301
+
302
+ If tedLinkInformationSource has the value other(5), an
303
+ implementation can use this object to supply the identifier of
304
+ the corresponding row entry in the local proprietary MIB module,
305
+ or the value of zeroDotZero.""",
306
+ }, # column
307
+ "tedLinkState" : {
308
+ "nodetype" : "column",
309
+ "moduleName" : "TED-MIB",
310
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.6",
311
+ "status" : "current",
312
+ "syntax" : {
313
+ "type" : {
314
+ "basetype" : "Enumeration",
315
+ "unknown" : {
316
+ "nodetype" : "namednumber",
317
+ "number" : "0"
318
+ },
319
+ "up" : {
320
+ "nodetype" : "namednumber",
321
+ "number" : "1"
322
+ },
323
+ "down" : {
324
+ "nodetype" : "namednumber",
325
+ "number" : "2"
326
+ },
327
+ },
328
+ },
329
+ "access" : "readonly",
330
+ "description" :
331
+ """This object represents the actual operational state of this TE
332
+ link. For instance, if a row is created in the TED table, but
333
+ the actual TE link is not available for some reason (e.g., when
334
+ there is not yet a physical link or the link has been manually
335
+ disabled), then the object would be down(2) state.
336
+ In contrast, if a row is added and the TE link is available,
337
+ this would be operationally up(1).""",
338
+ }, # column
339
+ "tedAreaId" : {
340
+ "nodetype" : "column",
341
+ "moduleName" : "TED-MIB",
342
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.7",
343
+ "status" : "current",
344
+ "syntax" : {
345
+ "type" : { "module" :"TED-MIB", "name" : "TedAreaIdTC"},
346
+ },
347
+ "access" : "readonly",
348
+ "description" :
349
+ """This object indicates the area identifier of the IGP. If OSPF
350
+ is used to advertise LSA, this represents an ospfArea. If IS-IS
351
+ is used, this represents an area address. Otherwise, this
352
+ represents zero.""",
353
+ "reference" :
354
+ """OSPF Version 2, RFC 2328, Appendix C.2
355
+ OSPF for IPv6, RFC 5340, Appendix C.2
356
+ ISO10589, Section 9.8""",
357
+ }, # column
358
+ "tedLinkType" : {
359
+ "nodetype" : "column",
360
+ "moduleName" : "TED-MIB",
361
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.8",
362
+ "status" : "current",
363
+ "syntax" : {
364
+ "type" : {
365
+ "basetype" : "Enumeration",
366
+ "pointToPoint" : {
367
+ "nodetype" : "namednumber",
368
+ "number" : "1"
369
+ },
370
+ "multiAccess" : {
371
+ "nodetype" : "namednumber",
372
+ "number" : "2"
373
+ },
374
+ },
375
+ },
376
+ "access" : "readonly",
377
+ "description" :
378
+ """This indicates the type of the link, such as point to point or
379
+ multi-access.""",
380
+ "reference" :
381
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
382
+ RFC 3630, Section 2.5.1""",
383
+ }, # column
384
+ "tedTeRouterIdAddrType" : {
385
+ "nodetype" : "column",
386
+ "moduleName" : "TED-MIB",
387
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.9",
388
+ "status" : "current",
389
+ "syntax" : {
390
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
391
+ },
392
+ "access" : "readonly",
393
+ "description" :
394
+ """This object indicates the TE-Router ID address type. Only
395
+ values unknown(0), ipv4(1), or ipv6(2) are supported.""",
396
+ }, # column
397
+ "tedTeRouterIdAddr" : {
398
+ "nodetype" : "column",
399
+ "moduleName" : "TED-MIB",
400
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.10",
401
+ "status" : "current",
402
+ "syntax" : {
403
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
404
+ },
405
+ "access" : "readonly",
406
+ "description" :
407
+ """This object indicates the TE-Router ID.""",
408
+ "reference" :
409
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
410
+ RFC 3630, Section 2.4.1
411
+ IS-IS extensions for TE, RFC 5305, Section 4.3""",
412
+ }, # column
413
+ "tedLinkIdAddrType" : {
414
+ "nodetype" : "column",
415
+ "moduleName" : "TED-MIB",
416
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.11",
417
+ "status" : "current",
418
+ "syntax" : {
419
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
420
+ },
421
+ "access" : "readonly",
422
+ "description" :
423
+ """This object indicates the address type of the TE Link ID. Only
424
+ values unknown(0), ipv4(1), or ipv6(2) are supported.""",
425
+ }, # column
426
+ "tedLinkIdAddr" : {
427
+ "nodetype" : "column",
428
+ "moduleName" : "TED-MIB",
429
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.12",
430
+ "status" : "current",
431
+ "syntax" : {
432
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
433
+ },
434
+ "access" : "readonly",
435
+ "description" :
436
+ """This indicates the Router ID of the neighbor in the case of
437
+ point-to-point links. This also indicates the interface
438
+ address of the designated router in the case of multi-access
439
+ links.""",
440
+ "reference" :
441
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
442
+ RFC 3630, Section 2.5.2
443
+ IS-IS extensions for TE, RFC 5305, Section 4.3""",
444
+ }, # column
445
+ "tedMetric" : {
446
+ "nodetype" : "column",
447
+ "moduleName" : "TED-MIB",
448
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.13",
449
+ "status" : "current",
450
+ "syntax" : {
451
+ "type" : { "module" :"", "name" : "Integer32"},
452
+ },
453
+ "access" : "readonly",
454
+ "description" :
455
+ """This indicates the traffic engineering metric value of the TE
456
+ link.""",
457
+ "reference" :
458
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
459
+ RFC 3630, Section 2.5.5
460
+ IS-IS extensions for TE, RFC 5305, Section 3.7""",
461
+ }, # column
462
+ "tedMaxBandwidth" : {
463
+ "nodetype" : "column",
464
+ "moduleName" : "TED-MIB",
465
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.14",
466
+ "status" : "current",
467
+ "syntax" : {
468
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
469
+ },
470
+ "access" : "readonly",
471
+ "units" : "Byte per second",
472
+ "description" :
473
+ """This indicates the maximum bandwidth that can be used on this
474
+ link in this direction.""",
475
+ "reference" :
476
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
477
+ RFC 3630, Section 2.5.6
478
+ IS-IS extensions for TE, RFC 5305, Section 3.4""",
479
+ }, # column
480
+ "tedMaxReservableBandwidth" : {
481
+ "nodetype" : "column",
482
+ "moduleName" : "TED-MIB",
483
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.15",
484
+ "status" : "current",
485
+ "syntax" : {
486
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
487
+ },
488
+ "access" : "readonly",
489
+ "units" : "Byte per second",
490
+ "description" :
491
+ """This indicates the maximum bandwidth that may be reserved on
492
+ this link in this direction.""",
493
+ "reference" :
494
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
495
+ RFC 3630, Section 2.5.7
496
+ IS-IS extensions for TE, RFC 5305, Section 3.5""",
497
+ }, # column
498
+ "tedUnreservedBandwidthPri0" : {
499
+ "nodetype" : "column",
500
+ "moduleName" : "TED-MIB",
501
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.16",
502
+ "status" : "current",
503
+ "syntax" : {
504
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
505
+ },
506
+ "access" : "readonly",
507
+ "units" : "Byte per second",
508
+ "description" :
509
+ """This indicates the amount of bandwidth not yet reserved at the
510
+ priority 0.""",
511
+ "reference" :
512
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
513
+ RFC 3630, Section 2.5.8
514
+ IS-IS extensions for TE, RFC 5305, Section 3.6""",
515
+ }, # column
516
+ "tedUnreservedBandwidthPri1" : {
517
+ "nodetype" : "column",
518
+ "moduleName" : "TED-MIB",
519
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.17",
520
+ "status" : "current",
521
+ "syntax" : {
522
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
523
+ },
524
+ "access" : "readonly",
525
+ "units" : "Byte per second",
526
+ "description" :
527
+ """This indicates the amount of bandwidth not yet reserved at the
528
+ priority 1.""",
529
+ "reference" :
530
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
531
+ RFC 3630, Section 2.5.8
532
+ IS-IS extensions for TE, RFC 5305, Section 3.6""",
533
+ }, # column
534
+ "tedUnreservedBandwidthPri2" : {
535
+ "nodetype" : "column",
536
+ "moduleName" : "TED-MIB",
537
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.18",
538
+ "status" : "current",
539
+ "syntax" : {
540
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
541
+ },
542
+ "access" : "readonly",
543
+ "units" : "Byte per second",
544
+ "description" :
545
+ """This indicates the amount of bandwidth not yet reserved at the
546
+ priority 2.""",
547
+ "reference" :
548
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
549
+ RFC 3630, Section 2.5.8
550
+ IS-IS extensions for TE, RFC 5305, Section 3.6""",
551
+ }, # column
552
+ "tedUnreservedBandwidthPri3" : {
553
+ "nodetype" : "column",
554
+ "moduleName" : "TED-MIB",
555
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.19",
556
+ "status" : "current",
557
+ "syntax" : {
558
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
559
+ },
560
+ "access" : "readonly",
561
+ "units" : "Byte per second",
562
+ "description" :
563
+ """This indicates the amount of bandwidth not yet reserved at the
564
+ priority 3.""",
565
+ "reference" :
566
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
567
+ RFC 3630, Section 2.5.8
568
+ IS-IS extensions for TE, RFC 5305, Section 3.6""",
569
+ }, # column
570
+ "tedUnreservedBandwidthPri4" : {
571
+ "nodetype" : "column",
572
+ "moduleName" : "TED-MIB",
573
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.20",
574
+ "status" : "current",
575
+ "syntax" : {
576
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
577
+ },
578
+ "access" : "readonly",
579
+ "units" : "Byte per second",
580
+ "description" :
581
+ """This indicates the amount of bandwidth not yet reserved at the
582
+ priority 4.""",
583
+ "reference" :
584
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
585
+ RFC 3630, Section 2.5.8
586
+ IS-IS extensions for TE, RFC 5305, Section 3.6""",
587
+ }, # column
588
+ "tedUnreservedBandwidthPri5" : {
589
+ "nodetype" : "column",
590
+ "moduleName" : "TED-MIB",
591
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.21",
592
+ "status" : "current",
593
+ "syntax" : {
594
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
595
+ },
596
+ "access" : "readonly",
597
+ "units" : "Byte per second",
598
+ "description" :
599
+ """This indicates the amount of bandwidth not yet reserved at the
600
+ priority 5.""",
601
+ "reference" :
602
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
603
+ RFC 3630, Section 2.5.8
604
+ IS-IS extensions for TE, RFC 5305, Section 3.6""",
605
+ }, # column
606
+ "tedUnreservedBandwidthPri6" : {
607
+ "nodetype" : "column",
608
+ "moduleName" : "TED-MIB",
609
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.22",
610
+ "status" : "current",
611
+ "syntax" : {
612
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
613
+ },
614
+ "access" : "readonly",
615
+ "units" : "Byte per second",
616
+ "description" :
617
+ """This indicates the amount of bandwidth not yet reserved at the
618
+ priority 6.""",
619
+ "reference" :
620
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
621
+ RFC 3630, Section 2.5.8
622
+ IS-IS extensions for TE, RFC 5305, 3.6""",
623
+ }, # column
624
+ "tedUnreservedBandwidthPri7" : {
625
+ "nodetype" : "column",
626
+ "moduleName" : "TED-MIB",
627
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.23",
628
+ "status" : "current",
629
+ "syntax" : {
630
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
631
+ },
632
+ "access" : "readonly",
633
+ "units" : "Byte per second",
634
+ "description" :
635
+ """This indicates the amount of bandwidth not yet reserved at the
636
+ priority 7.""",
637
+ "reference" :
638
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
639
+ RFC 3630, Section 2.5.8
640
+ IS-IS extensions for TE, RFC 5305, Section 3.6""",
641
+ }, # column
642
+ "tedAdministrativeGroup" : {
643
+ "nodetype" : "column",
644
+ "moduleName" : "TED-MIB",
645
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.24",
646
+ "status" : "current",
647
+ "syntax" : {
648
+ "type" : { "module" :"", "name" : "Integer32"},
649
+ },
650
+ "access" : "readonly",
651
+ "description" :
652
+ """This indicates the Administrative Group to which the link
653
+ belongs. Since the value is a bit mask, the link can belong
654
+ to multiple groups. This is also called Resource Class/Color.""",
655
+ "reference" :
656
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
657
+ RFC 3630, Section 2.5.9
658
+ IS-IS extensions for TE, RFC 5305, Section 3.1""",
659
+ }, # column
660
+ "tedLocalId" : {
661
+ "nodetype" : "column",
662
+ "moduleName" : "TED-MIB",
663
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.25",
664
+ "status" : "current",
665
+ "syntax" : {
666
+ "type" : { "module" :"", "name" : "Integer32"},
667
+ },
668
+ "access" : "readonly",
669
+ "description" :
670
+ """This indicates the Link Local Identifier of an unnumbered
671
+ link.""",
672
+ "reference" :
673
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.1
674
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.1""",
675
+ }, # column
676
+ "tedRemoteId" : {
677
+ "nodetype" : "column",
678
+ "moduleName" : "TED-MIB",
679
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.26",
680
+ "status" : "current",
681
+ "syntax" : {
682
+ "type" : { "module" :"", "name" : "Integer32"},
683
+ },
684
+ "access" : "readonly",
685
+ "description" :
686
+ """This indicates the Link Remote Identifier of an unnumbered
687
+ link.""",
688
+ "reference" :
689
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.1
690
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.1""",
691
+ }, # column
692
+ "tedLinkProtectionType" : {
693
+ "nodetype" : "column",
694
+ "moduleName" : "TED-MIB",
695
+ "oid" : "1.3.6.1.2.1.10.273.1.1.1.27",
696
+ "status" : "current",
697
+ "syntax" : {
698
+ "type" : {
699
+ "basetype" : "Bits",
700
+ "extraTraffic" : {
701
+ "nodetype" : "namednumber",
702
+ "number" : "0"
703
+ },
704
+ "unprotected" : {
705
+ "nodetype" : "namednumber",
706
+ "number" : "1"
707
+ },
708
+ "shared" : {
709
+ "nodetype" : "namednumber",
710
+ "number" : "2"
711
+ },
712
+ "dedicatedOneToOne" : {
713
+ "nodetype" : "namednumber",
714
+ "number" : "3"
715
+ },
716
+ "dedicatedOnePlusOne" : {
717
+ "nodetype" : "namednumber",
718
+ "number" : "4"
719
+ },
720
+ "enhanced" : {
721
+ "nodetype" : "namednumber",
722
+ "number" : "5"
723
+ },
724
+ },
725
+ },
726
+ "access" : "readonly",
727
+ "description" :
728
+ """This object indicates the protection type of the TE link.""",
729
+ "reference" :
730
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.2
731
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.2""",
732
+ }, # column
733
+ "tedLocalIfAddrTable" : {
734
+ "nodetype" : "table",
735
+ "moduleName" : "TED-MIB",
736
+ "oid" : "1.3.6.1.2.1.10.273.1.2",
737
+ "status" : "current",
738
+ "description" :
739
+ """This table contains the IP address information of a local TE
740
+ link.""",
741
+ }, # table
742
+ "tedLocalIfAddrEntry" : {
743
+ "nodetype" : "row",
744
+ "moduleName" : "TED-MIB",
745
+ "oid" : "1.3.6.1.2.1.10.273.1.2.1",
746
+ "status" : "current",
747
+ "linkage" : [
748
+ "tedLinkIndex",
749
+ "tedLocalIfAddr",
750
+ ],
751
+ "description" :
752
+ """This entry contains the IP address information of the local TE
753
+ link.""",
754
+ }, # row
755
+ "tedLocalIfAddrType" : {
756
+ "nodetype" : "column",
757
+ "moduleName" : "TED-MIB",
758
+ "oid" : "1.3.6.1.2.1.10.273.1.2.1.1",
759
+ "status" : "current",
760
+ "syntax" : {
761
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
762
+ },
763
+ "access" : "readonly",
764
+ "description" :
765
+ """This object indicates the address type of the local TE link.
766
+ Only values unknown(0), ipv4(1), or ipv6(2) have to be
767
+ supported.""",
768
+ }, # column
769
+ "tedLocalIfAddr" : {
770
+ "nodetype" : "column",
771
+ "moduleName" : "TED-MIB",
772
+ "oid" : "1.3.6.1.2.1.10.273.1.2.1.2",
773
+ "status" : "current",
774
+ "syntax" : {
775
+ "type" : {
776
+ "basetype" : "OctetString",
777
+ "parent module" : {
778
+ "name" : "INET-ADDRESS-MIB",
779
+ "type" : "InetAddress",
780
+ },
781
+ "ranges" : [
782
+ {
783
+ "min" : "1",
784
+ "max" : "20"
785
+ },
786
+ ],
787
+ "range" : {
788
+ "min" : "1",
789
+ "max" : "20"
790
+ },
791
+ },
792
+ },
793
+ "access" : "noaccess",
794
+ "description" :
795
+ """This object indicates the address of the local TE link.""",
796
+ "reference" :
797
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
798
+ RFC 3630, Section 2.5.3,
799
+ Traffic Engineering Extensions to OSPF Version 3, RFC 5329,
800
+ Section 4.3
801
+ IS-IS extensions for TE, RFC 5305, Section 3.4""",
802
+ }, # column
803
+ "tedRemoteIfAddrTable" : {
804
+ "nodetype" : "table",
805
+ "moduleName" : "TED-MIB",
806
+ "oid" : "1.3.6.1.2.1.10.273.1.3",
807
+ "status" : "current",
808
+ "description" :
809
+ """This table contains the IP address information of a remote TE
810
+ link.""",
811
+ }, # table
812
+ "tedRemoteIfAddrEntry" : {
813
+ "nodetype" : "row",
814
+ "moduleName" : "TED-MIB",
815
+ "oid" : "1.3.6.1.2.1.10.273.1.3.1",
816
+ "status" : "current",
817
+ "linkage" : [
818
+ "tedLinkIndex",
819
+ "tedRemoteIfAddr",
820
+ ],
821
+ "description" :
822
+ """This entry contains the IP address information of the remote
823
+ TE link.""",
824
+ }, # row
825
+ "tedRemoteIfAddrType" : {
826
+ "nodetype" : "column",
827
+ "moduleName" : "TED-MIB",
828
+ "oid" : "1.3.6.1.2.1.10.273.1.3.1.1",
829
+ "status" : "current",
830
+ "syntax" : {
831
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
832
+ },
833
+ "access" : "readonly",
834
+ "description" :
835
+ """This object indicates the address type of the remote TE link.""",
836
+ }, # column
837
+ "tedRemoteIfAddr" : {
838
+ "nodetype" : "column",
839
+ "moduleName" : "TED-MIB",
840
+ "oid" : "1.3.6.1.2.1.10.273.1.3.1.2",
841
+ "status" : "current",
842
+ "syntax" : {
843
+ "type" : {
844
+ "basetype" : "OctetString",
845
+ "parent module" : {
846
+ "name" : "INET-ADDRESS-MIB",
847
+ "type" : "InetAddress",
848
+ },
849
+ "ranges" : [
850
+ {
851
+ "min" : "1",
852
+ "max" : "20"
853
+ },
854
+ ],
855
+ "range" : {
856
+ "min" : "1",
857
+ "max" : "20"
858
+ },
859
+ },
860
+ },
861
+ "access" : "noaccess",
862
+ "description" :
863
+ """This object indicates the address of the remote TE link.""",
864
+ "reference" :
865
+ """Traffic Engineering (TE) Extensions to OSPF Version 2,
866
+ RFC 3630, Section 2.5.4,
867
+ Traffic Engineering Extensions to OSPF Version3, RFC 5329,
868
+ Section 4.4
869
+ IS-IS extensions for TE, RFC 5305, Section 3.3""",
870
+ }, # column
871
+ "tedSwCapTable" : {
872
+ "nodetype" : "table",
873
+ "moduleName" : "TED-MIB",
874
+ "oid" : "1.3.6.1.2.1.10.273.1.4",
875
+ "status" : "current",
876
+ "description" :
877
+ """This table contains the GMPLS TED switching capability
878
+ information.""",
879
+ }, # table
880
+ "tedSwCapEntry" : {
881
+ "nodetype" : "row",
882
+ "moduleName" : "TED-MIB",
883
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1",
884
+ "status" : "current",
885
+ "linkage" : [
886
+ "tedLinkIndex",
887
+ "tedSwCapIndex",
888
+ ],
889
+ "description" :
890
+ """This entry relates each TE link with its GMPLS TE switching
891
+ capability information. If the MIB module deals with only OSPF-
892
+ TE information, the value of each object related with GMPLS TE
893
+ extensions should be null.""",
894
+ }, # row
895
+ "tedSwCapIndex" : {
896
+ "nodetype" : "column",
897
+ "moduleName" : "TED-MIB",
898
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.1",
899
+ "status" : "current",
900
+ "syntax" : {
901
+ "type" : {
902
+ "basetype" : "Unsigned32",
903
+ "ranges" : [
904
+ {
905
+ "min" : "1",
906
+ "max" : "255"
907
+ },
908
+ ],
909
+ "range" : {
910
+ "min" : "1",
911
+ "max" : "255"
912
+ },
913
+ },
914
+ },
915
+ "access" : "noaccess",
916
+ "description" :
917
+ """This index is utilized to identify multiple switching
918
+ functions on a local or remote TE link according to definitions
919
+ of textual conventions of GMPLS, RFC 4801.""",
920
+ }, # column
921
+ "tedSwCapType" : {
922
+ "nodetype" : "column",
923
+ "moduleName" : "TED-MIB",
924
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.2",
925
+ "status" : "current",
926
+ "syntax" : {
927
+ "type" : { "module" :"IANA-GMPLS-TC-MIB", "name" : "IANAGmplsSwitchingTypeTC"},
928
+ },
929
+ "access" : "readonly",
930
+ "description" :
931
+ """This object indicates the GMPLS switching capability assigned
932
+ to the TE link according to definitions of textual conventions
933
+ of GMPLS, RFC 4801.""",
934
+ "reference" :
935
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
936
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
937
+ }, # column
938
+ "tedSwCapEncoding" : {
939
+ "nodetype" : "column",
940
+ "moduleName" : "TED-MIB",
941
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.3",
942
+ "status" : "current",
943
+ "syntax" : {
944
+ "type" : { "module" :"IANA-GMPLS-TC-MIB", "name" : "IANAGmplsLSPEncodingTypeTC"},
945
+ },
946
+ "access" : "readonly",
947
+ "description" :
948
+ """This object indicates the GMPLS encoding type assigned to the
949
+ TE link.""",
950
+ "reference" :
951
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
952
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
953
+ }, # column
954
+ "tedSwCapMaxLspBandwidthPri0" : {
955
+ "nodetype" : "column",
956
+ "moduleName" : "TED-MIB",
957
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.4",
958
+ "status" : "current",
959
+ "syntax" : {
960
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
961
+ },
962
+ "access" : "readonly",
963
+ "units" : "Byte per second",
964
+ "description" :
965
+ """This object indicates the maximum bandwidth of the TE link at
966
+ the priority 0 for GMPLS LSP creation.""",
967
+ "reference" :
968
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
969
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
970
+ }, # column
971
+ "tedSwCapMaxLspBandwidthPri1" : {
972
+ "nodetype" : "column",
973
+ "moduleName" : "TED-MIB",
974
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.5",
975
+ "status" : "current",
976
+ "syntax" : {
977
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
978
+ },
979
+ "access" : "readonly",
980
+ "units" : "Byte per second",
981
+ "description" :
982
+ """This object indicates the maximum bandwidth of the TE link at
983
+ the priority 1 for GMPLS LSP creation.""",
984
+ "reference" :
985
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
986
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
987
+ }, # column
988
+ "tedSwCapMaxLspBandwidthPri2" : {
989
+ "nodetype" : "column",
990
+ "moduleName" : "TED-MIB",
991
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.6",
992
+ "status" : "current",
993
+ "syntax" : {
994
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
995
+ },
996
+ "access" : "readonly",
997
+ "units" : "Byte per second",
998
+ "description" :
999
+ """This object indicates the maximum bandwidth of the TE link at
1000
+ the priority 2 for GMPLS LSP creation.""",
1001
+ "reference" :
1002
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1003
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1004
+ }, # column
1005
+ "tedSwCapMaxLspBandwidthPri3" : {
1006
+ "nodetype" : "column",
1007
+ "moduleName" : "TED-MIB",
1008
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.7",
1009
+ "status" : "current",
1010
+ "syntax" : {
1011
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
1012
+ },
1013
+ "access" : "readonly",
1014
+ "units" : "Byte per second",
1015
+ "description" :
1016
+ """This object indicates the maximum bandwidth of the TE link at
1017
+ the priority 3 for GMPLS LSP creation.""",
1018
+ "reference" :
1019
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1020
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1021
+ }, # column
1022
+ "tedSwCapMaxLspBandwidthPri4" : {
1023
+ "nodetype" : "column",
1024
+ "moduleName" : "TED-MIB",
1025
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.8",
1026
+ "status" : "current",
1027
+ "syntax" : {
1028
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
1029
+ },
1030
+ "access" : "readonly",
1031
+ "units" : "Byte per second",
1032
+ "description" :
1033
+ """This object indicates the maximum bandwidth of the TE link at
1034
+ the priority 4 for GMPLS LSP creation.""",
1035
+ "reference" :
1036
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1037
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1038
+ }, # column
1039
+ "tedSwCapMaxLspBandwidthPri5" : {
1040
+ "nodetype" : "column",
1041
+ "moduleName" : "TED-MIB",
1042
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.9",
1043
+ "status" : "current",
1044
+ "syntax" : {
1045
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
1046
+ },
1047
+ "access" : "readonly",
1048
+ "units" : "Byte per second",
1049
+ "description" :
1050
+ """This object indicates the maximum bandwidth of the TE link at
1051
+ the priority 5 for GMPLS LSP creation.""",
1052
+ "reference" :
1053
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1054
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1055
+ }, # column
1056
+ "tedSwCapMaxLspBandwidthPri6" : {
1057
+ "nodetype" : "column",
1058
+ "moduleName" : "TED-MIB",
1059
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.10",
1060
+ "status" : "current",
1061
+ "syntax" : {
1062
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
1063
+ },
1064
+ "access" : "readonly",
1065
+ "units" : "Byte per second",
1066
+ "description" :
1067
+ """This object indicates the maximum bandwidth of the TE link at
1068
+ the priority 6 for GMPLS LSP creation.""",
1069
+ "reference" :
1070
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1071
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1072
+ }, # column
1073
+ "tedSwCapMaxLspBandwidthPri7" : {
1074
+ "nodetype" : "column",
1075
+ "moduleName" : "TED-MIB",
1076
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.11",
1077
+ "status" : "current",
1078
+ "syntax" : {
1079
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
1080
+ },
1081
+ "access" : "readonly",
1082
+ "units" : "Byte per second",
1083
+ "description" :
1084
+ """This object indicates the maximum bandwidth of the TE link at
1085
+ the priority 7 for GMPLS LSP creation.""",
1086
+ "reference" :
1087
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1088
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1089
+ }, # column
1090
+ "tedSwCapMinLspBandwidth" : {
1091
+ "nodetype" : "column",
1092
+ "moduleName" : "TED-MIB",
1093
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.12",
1094
+ "status" : "current",
1095
+ "syntax" : {
1096
+ "type" : { "module" :"FLOAT-TC-MIB", "name" : "Float32TC"},
1097
+ },
1098
+ "access" : "readonly",
1099
+ "units" : "Byte per second",
1100
+ "description" :
1101
+ """This object indicates the minimum bandwidth of the TE link for
1102
+ GMPLS LSP creation if the switching capability field is TDM,
1103
+ PSC-1, PSC-2, PSC-3, or PSC-4.""",
1104
+ "reference" :
1105
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1106
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1107
+ }, # column
1108
+ "tedSwCapIfMtu" : {
1109
+ "nodetype" : "column",
1110
+ "moduleName" : "TED-MIB",
1111
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.13",
1112
+ "status" : "current",
1113
+ "syntax" : {
1114
+ "type" : { "module" :"", "name" : "Integer32"},
1115
+ },
1116
+ "access" : "readonly",
1117
+ "description" :
1118
+ """This object indicates the MTU of the local or remote TE link.""",
1119
+ "reference" :
1120
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1121
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1122
+ }, # column
1123
+ "tedSwCapIndication" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "TED-MIB",
1126
+ "oid" : "1.3.6.1.2.1.10.273.1.4.1.14",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : {
1130
+ "basetype" : "Enumeration",
1131
+ "standard" : {
1132
+ "nodetype" : "namednumber",
1133
+ "number" : "0"
1134
+ },
1135
+ "arbitrary" : {
1136
+ "nodetype" : "namednumber",
1137
+ "number" : "1"
1138
+ },
1139
+ },
1140
+ },
1141
+ "access" : "readonly",
1142
+ "description" :
1143
+ """This object indicates whether the interface supports Standard
1144
+ or Arbitrary SONET/SDH.""",
1145
+ "reference" :
1146
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.4
1147
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.3""",
1148
+ }, # column
1149
+ "tedSrlgTable" : {
1150
+ "nodetype" : "table",
1151
+ "moduleName" : "TED-MIB",
1152
+ "oid" : "1.3.6.1.2.1.10.273.1.5",
1153
+ "status" : "current",
1154
+ "description" :
1155
+ """This table contains the SRLG information of the TE link.""",
1156
+ }, # table
1157
+ "tedSrlgEntry" : {
1158
+ "nodetype" : "row",
1159
+ "moduleName" : "TED-MIB",
1160
+ "oid" : "1.3.6.1.2.1.10.273.1.5.1",
1161
+ "status" : "current",
1162
+ "linkage" : [
1163
+ "tedLinkIndex",
1164
+ "tedSrlgIndex",
1165
+ ],
1166
+ "description" :
1167
+ """This entry relates each TE link with its SRLG information.""",
1168
+ }, # row
1169
+ "tedSrlgIndex" : {
1170
+ "nodetype" : "column",
1171
+ "moduleName" : "TED-MIB",
1172
+ "oid" : "1.3.6.1.2.1.10.273.1.5.1.1",
1173
+ "status" : "current",
1174
+ "syntax" : {
1175
+ "type" : {
1176
+ "basetype" : "Unsigned32",
1177
+ "ranges" : [
1178
+ {
1179
+ "min" : "1",
1180
+ "max" : "255"
1181
+ },
1182
+ ],
1183
+ "range" : {
1184
+ "min" : "1",
1185
+ "max" : "255"
1186
+ },
1187
+ },
1188
+ },
1189
+ "access" : "noaccess",
1190
+ "description" :
1191
+ """This index is utilized to identify multiple SRLG values on a
1192
+ local or remote TE link. This object represents an arbitrary
1193
+ value, which is locally defined in a router.""",
1194
+ "reference" :
1195
+ """OSPF Extensions in support of GMPLS, RFC 4203, Section 1.3
1196
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.4""",
1197
+ }, # column
1198
+ "tedSrlg" : {
1199
+ "nodetype" : "column",
1200
+ "moduleName" : "TED-MIB",
1201
+ "oid" : "1.3.6.1.2.1.10.273.1.5.1.2",
1202
+ "status" : "current",
1203
+ "syntax" : {
1204
+ "type" : { "module" :"", "name" : "Integer32"},
1205
+ },
1206
+ "access" : "readonly",
1207
+ "description" :
1208
+ """This object indicates the SRLG value assigned to a local or
1209
+ remote TE link.""",
1210
+ "reference" :
1211
+ """OSPF Extensions in Support of GMPLS, RFC 4203, Section 1.3
1212
+ IS-IS Extensions in Support of GMPLS, RFC 5307, Section 1.4""",
1213
+ }, # column
1214
+ "tedStatusChangeNotificationMaxRate" : {
1215
+ "nodetype" : "scalar",
1216
+ "moduleName" : "TED-MIB",
1217
+ "oid" : "1.3.6.1.2.1.10.273.1.6",
1218
+ "status" : "current",
1219
+ "syntax" : {
1220
+ "type" : { "module" :"", "name" : "Unsigned32"},
1221
+ },
1222
+ "access" : "readwrite",
1223
+ "default" : "1",
1224
+ "description" :
1225
+ """A lot of notifications relating to the status change are
1226
+ expected to generate in a node, especially when a network
1227
+ failure occurs and might cause a performance degradation of the
1228
+ node itself. To avoid such a defect, this object provides the
1229
+ maximum number of notifications generated per minute. If
1230
+ events occur more rapidly, the implementation may simply fail
1231
+ to emit these notifications during that period, or may queue
1232
+ them until an appropriate time. A value of 0 means no
1233
+ throttling is applied and events may be notified at the rate at
1234
+ which they occur.""",
1235
+ }, # scalar
1236
+ "tedCreatedDeletedNotificationMaxRate" : {
1237
+ "nodetype" : "scalar",
1238
+ "moduleName" : "TED-MIB",
1239
+ "oid" : "1.3.6.1.2.1.10.273.1.7",
1240
+ "status" : "current",
1241
+ "syntax" : {
1242
+ "type" : { "module" :"", "name" : "Unsigned32"},
1243
+ },
1244
+ "access" : "readwrite",
1245
+ "default" : "1",
1246
+ "description" :
1247
+ """A lot of notifications relating to new registration in the TED
1248
+ table by receiving new TE link information or deletion of
1249
+ existing entries in the TED table are expected to generate in a
1250
+ node. This object provides the maximum number of notifications
1251
+ generated per minute.""",
1252
+ }, # scalar
1253
+ "tedConformance" : {
1254
+ "nodetype" : "node",
1255
+ "moduleName" : "TED-MIB",
1256
+ "oid" : "1.3.6.1.2.1.10.273.2",
1257
+ }, # node
1258
+ "tedCompliances" : {
1259
+ "nodetype" : "node",
1260
+ "moduleName" : "TED-MIB",
1261
+ "oid" : "1.3.6.1.2.1.10.273.2.1",
1262
+ }, # node
1263
+ "tedGroups" : {
1264
+ "nodetype" : "node",
1265
+ "moduleName" : "TED-MIB",
1266
+ "oid" : "1.3.6.1.2.1.10.273.2.2",
1267
+ }, # node
1268
+ }, # nodes
1269
+
1270
+ "notifications" : {
1271
+ "tedStatusChange" : {
1272
+ "nodetype" : "notification",
1273
+ "moduleName" : "TED-MIB",
1274
+ "oid" : "1.3.6.1.2.1.10.273.0.1",
1275
+ "status" : "current",
1276
+ "objects" : {
1277
+ "tedLinkState" : {
1278
+ "nodetype" : "object",
1279
+ "module" : "TED-MIB"
1280
+ },
1281
+ },
1282
+ "description" :
1283
+ """This notification signifies that there has been change in the
1284
+ TE information of tedTable, tedLocalIfAddrTable,
1285
+ tedRemoteIfAddrTable, tedSwCapTable, and/or tedSrlgTable. For
1286
+ example, this should be generated when tedUnreservedBandwidth is
1287
+ changed to create or delete LSP using the registered TE link.""",
1288
+ }, # notification
1289
+ "tedEntryCreated" : {
1290
+ "nodetype" : "notification",
1291
+ "moduleName" : "TED-MIB",
1292
+ "oid" : "1.3.6.1.2.1.10.273.0.2",
1293
+ "status" : "current",
1294
+ "objects" : {
1295
+ "tedLinkState" : {
1296
+ "nodetype" : "object",
1297
+ "module" : "TED-MIB"
1298
+ },
1299
+ },
1300
+ "description" :
1301
+ """This notification signifies that there has been new
1302
+ registration in the TED table by receiving new TE link
1303
+ information. For example, this should be generated when a new
1304
+ index (tedLinkIndex) is registered in the TED table.""",
1305
+ }, # notification
1306
+ "tedEntryDeleted" : {
1307
+ "nodetype" : "notification",
1308
+ "moduleName" : "TED-MIB",
1309
+ "oid" : "1.3.6.1.2.1.10.273.0.3",
1310
+ "status" : "current",
1311
+ "objects" : {
1312
+ "tedLinkState" : {
1313
+ "nodetype" : "object",
1314
+ "module" : "TED-MIB"
1315
+ },
1316
+ },
1317
+ "description" :
1318
+ """This notification signifies that there has been deletion of an
1319
+ entry in the TED table. For example, this should be generated
1320
+ when one of the existing entries is deleted in the TED table.""",
1321
+ }, # notification
1322
+ }, # notifications
1323
+
1324
+ "groups" : {
1325
+ "tedMainGroup" : {
1326
+ "nodetype" : "group",
1327
+ "moduleName" : "TED-MIB",
1328
+ "oid" : "1.3.6.1.2.1.10.273.2.2.1",
1329
+ "status" : "current",
1330
+ "members" : {
1331
+ "tedLinkState" : {
1332
+ "nodetype" : "member",
1333
+ "module" : "TED-MIB"
1334
+ },
1335
+ "tedAreaId" : {
1336
+ "nodetype" : "member",
1337
+ "module" : "TED-MIB"
1338
+ },
1339
+ "tedLinkType" : {
1340
+ "nodetype" : "member",
1341
+ "module" : "TED-MIB"
1342
+ },
1343
+ "tedTeRouterIdAddrType" : {
1344
+ "nodetype" : "member",
1345
+ "module" : "TED-MIB"
1346
+ },
1347
+ "tedTeRouterIdAddr" : {
1348
+ "nodetype" : "member",
1349
+ "module" : "TED-MIB"
1350
+ },
1351
+ "tedLinkIdAddrType" : {
1352
+ "nodetype" : "member",
1353
+ "module" : "TED-MIB"
1354
+ },
1355
+ "tedLinkIdAddr" : {
1356
+ "nodetype" : "member",
1357
+ "module" : "TED-MIB"
1358
+ },
1359
+ "tedMetric" : {
1360
+ "nodetype" : "member",
1361
+ "module" : "TED-MIB"
1362
+ },
1363
+ "tedMaxBandwidth" : {
1364
+ "nodetype" : "member",
1365
+ "module" : "TED-MIB"
1366
+ },
1367
+ "tedMaxReservableBandwidth" : {
1368
+ "nodetype" : "member",
1369
+ "module" : "TED-MIB"
1370
+ },
1371
+ "tedUnreservedBandwidthPri0" : {
1372
+ "nodetype" : "member",
1373
+ "module" : "TED-MIB"
1374
+ },
1375
+ "tedUnreservedBandwidthPri1" : {
1376
+ "nodetype" : "member",
1377
+ "module" : "TED-MIB"
1378
+ },
1379
+ "tedUnreservedBandwidthPri2" : {
1380
+ "nodetype" : "member",
1381
+ "module" : "TED-MIB"
1382
+ },
1383
+ "tedUnreservedBandwidthPri3" : {
1384
+ "nodetype" : "member",
1385
+ "module" : "TED-MIB"
1386
+ },
1387
+ "tedUnreservedBandwidthPri4" : {
1388
+ "nodetype" : "member",
1389
+ "module" : "TED-MIB"
1390
+ },
1391
+ "tedUnreservedBandwidthPri5" : {
1392
+ "nodetype" : "member",
1393
+ "module" : "TED-MIB"
1394
+ },
1395
+ "tedUnreservedBandwidthPri6" : {
1396
+ "nodetype" : "member",
1397
+ "module" : "TED-MIB"
1398
+ },
1399
+ "tedUnreservedBandwidthPri7" : {
1400
+ "nodetype" : "member",
1401
+ "module" : "TED-MIB"
1402
+ },
1403
+ "tedAdministrativeGroup" : {
1404
+ "nodetype" : "member",
1405
+ "module" : "TED-MIB"
1406
+ },
1407
+ "tedLinkProtectionType" : {
1408
+ "nodetype" : "member",
1409
+ "module" : "TED-MIB"
1410
+ },
1411
+ "tedLinkInformationData" : {
1412
+ "nodetype" : "member",
1413
+ "module" : "TED-MIB"
1414
+ },
1415
+ }, # members
1416
+ "description" :
1417
+ """Collection of objects for TED management""",
1418
+ }, # group
1419
+ "tedObjectsGroup" : {
1420
+ "nodetype" : "group",
1421
+ "moduleName" : "TED-MIB",
1422
+ "oid" : "1.3.6.1.2.1.10.273.2.2.2",
1423
+ "status" : "current",
1424
+ "members" : {
1425
+ "tedStatusChangeNotificationMaxRate" : {
1426
+ "nodetype" : "member",
1427
+ "module" : "TED-MIB"
1428
+ },
1429
+ "tedCreatedDeletedNotificationMaxRate" : {
1430
+ "nodetype" : "member",
1431
+ "module" : "TED-MIB"
1432
+ },
1433
+ }, # members
1434
+ "description" :
1435
+ """The objects needed to implement notification.""",
1436
+ }, # group
1437
+ "tedNotificationGroup" : {
1438
+ "nodetype" : "group",
1439
+ "moduleName" : "TED-MIB",
1440
+ "oid" : "1.3.6.1.2.1.10.273.2.2.3",
1441
+ "status" : "current",
1442
+ "members" : {
1443
+ "tedStatusChange" : {
1444
+ "nodetype" : "member",
1445
+ "module" : "TED-MIB"
1446
+ },
1447
+ "tedEntryCreated" : {
1448
+ "nodetype" : "member",
1449
+ "module" : "TED-MIB"
1450
+ },
1451
+ "tedEntryDeleted" : {
1452
+ "nodetype" : "member",
1453
+ "module" : "TED-MIB"
1454
+ },
1455
+ }, # members
1456
+ "description" :
1457
+ """This group is mandatory for those implementations that can
1458
+ implement the notifications contained in this group.""",
1459
+ }, # group
1460
+ "tedUnnumberedLinkGroup" : {
1461
+ "nodetype" : "group",
1462
+ "moduleName" : "TED-MIB",
1463
+ "oid" : "1.3.6.1.2.1.10.273.2.2.4",
1464
+ "status" : "current",
1465
+ "members" : {
1466
+ "tedLocalId" : {
1467
+ "nodetype" : "member",
1468
+ "module" : "TED-MIB"
1469
+ },
1470
+ "tedRemoteId" : {
1471
+ "nodetype" : "member",
1472
+ "module" : "TED-MIB"
1473
+ },
1474
+ }, # members
1475
+ "description" :
1476
+ """The objects needed to implement the unnumbered links.""",
1477
+ }, # group
1478
+ "tedNumberedLinkGroup" : {
1479
+ "nodetype" : "group",
1480
+ "moduleName" : "TED-MIB",
1481
+ "oid" : "1.3.6.1.2.1.10.273.2.2.5",
1482
+ "status" : "current",
1483
+ "members" : {
1484
+ "tedLocalIfAddrType" : {
1485
+ "nodetype" : "member",
1486
+ "module" : "TED-MIB"
1487
+ },
1488
+ "tedRemoteIfAddrType" : {
1489
+ "nodetype" : "member",
1490
+ "module" : "TED-MIB"
1491
+ },
1492
+ }, # members
1493
+ "description" :
1494
+ """The objects needed to implement the numbered links.""",
1495
+ }, # group
1496
+ "tedSwCapGroup" : {
1497
+ "nodetype" : "group",
1498
+ "moduleName" : "TED-MIB",
1499
+ "oid" : "1.3.6.1.2.1.10.273.2.2.6",
1500
+ "status" : "current",
1501
+ "members" : {
1502
+ "tedSwCapType" : {
1503
+ "nodetype" : "member",
1504
+ "module" : "TED-MIB"
1505
+ },
1506
+ "tedSwCapEncoding" : {
1507
+ "nodetype" : "member",
1508
+ "module" : "TED-MIB"
1509
+ },
1510
+ "tedSwCapMaxLspBandwidthPri0" : {
1511
+ "nodetype" : "member",
1512
+ "module" : "TED-MIB"
1513
+ },
1514
+ "tedSwCapMaxLspBandwidthPri1" : {
1515
+ "nodetype" : "member",
1516
+ "module" : "TED-MIB"
1517
+ },
1518
+ "tedSwCapMaxLspBandwidthPri2" : {
1519
+ "nodetype" : "member",
1520
+ "module" : "TED-MIB"
1521
+ },
1522
+ "tedSwCapMaxLspBandwidthPri3" : {
1523
+ "nodetype" : "member",
1524
+ "module" : "TED-MIB"
1525
+ },
1526
+ "tedSwCapMaxLspBandwidthPri4" : {
1527
+ "nodetype" : "member",
1528
+ "module" : "TED-MIB"
1529
+ },
1530
+ "tedSwCapMaxLspBandwidthPri5" : {
1531
+ "nodetype" : "member",
1532
+ "module" : "TED-MIB"
1533
+ },
1534
+ "tedSwCapMaxLspBandwidthPri6" : {
1535
+ "nodetype" : "member",
1536
+ "module" : "TED-MIB"
1537
+ },
1538
+ "tedSwCapMaxLspBandwidthPri7" : {
1539
+ "nodetype" : "member",
1540
+ "module" : "TED-MIB"
1541
+ },
1542
+ }, # members
1543
+ "description" :
1544
+ """The objects needed to implement the TE links with GMPLS TE
1545
+ switching capability information.""",
1546
+ }, # group
1547
+ "tedSwCapMinLspBandwidthGroup" : {
1548
+ "nodetype" : "group",
1549
+ "moduleName" : "TED-MIB",
1550
+ "oid" : "1.3.6.1.2.1.10.273.2.2.7",
1551
+ "status" : "current",
1552
+ "members" : {
1553
+ "tedSwCapMinLspBandwidth" : {
1554
+ "nodetype" : "member",
1555
+ "module" : "TED-MIB"
1556
+ },
1557
+ }, # members
1558
+ "description" :
1559
+ """The objects needed to implement the minimum bandwidth of the
1560
+ TE link for GMPLS LSP creation.""",
1561
+ }, # group
1562
+ "tedSwCapIfMtuGroup" : {
1563
+ "nodetype" : "group",
1564
+ "moduleName" : "TED-MIB",
1565
+ "oid" : "1.3.6.1.2.1.10.273.2.2.8",
1566
+ "status" : "current",
1567
+ "members" : {
1568
+ "tedSwCapIfMtu" : {
1569
+ "nodetype" : "member",
1570
+ "module" : "TED-MIB"
1571
+ },
1572
+ }, # members
1573
+ "description" :
1574
+ """The objects needed to implement the MTU information of the
1575
+ local or remote TE link.""",
1576
+ }, # group
1577
+ "tedSwCapIndicationGroup" : {
1578
+ "nodetype" : "group",
1579
+ "moduleName" : "TED-MIB",
1580
+ "oid" : "1.3.6.1.2.1.10.273.2.2.9",
1581
+ "status" : "current",
1582
+ "members" : {
1583
+ "tedSwCapIndication" : {
1584
+ "nodetype" : "member",
1585
+ "module" : "TED-MIB"
1586
+ },
1587
+ }, # members
1588
+ "description" :
1589
+ """The objects needed to implement the indication of whether the
1590
+ interface supports Standard or Arbitrary SONET/SDH.""",
1591
+ }, # group
1592
+ "tedSrlgGroup" : {
1593
+ "nodetype" : "group",
1594
+ "moduleName" : "TED-MIB",
1595
+ "oid" : "1.3.6.1.2.1.10.273.2.2.10",
1596
+ "status" : "current",
1597
+ "members" : {
1598
+ "tedSrlg" : {
1599
+ "nodetype" : "member",
1600
+ "module" : "TED-MIB"
1601
+ },
1602
+ }, # members
1603
+ "description" :
1604
+ """The objects needed to implement multiple SRLG values with
1605
+ GMPLS TE information.""",
1606
+ }, # group
1607
+ }, # groups
1608
+
1609
+ "compliances" : {
1610
+ "tedModuleFullCompliance" : {
1611
+ "nodetype" : "compliance",
1612
+ "moduleName" : "TED-MIB",
1613
+ "oid" : "1.3.6.1.2.1.10.273.2.1.1",
1614
+ "status" : "current",
1615
+ "description" :
1616
+ """Compliance statement for agents provides full support for the
1617
+ TED MIB.""",
1618
+ "requires" : {
1619
+ "tedMainGroup" : {
1620
+ "nodetype" : "mandatory",
1621
+ "module" : "TED-MIB"
1622
+ },
1623
+ "tedObjectsGroup" : {
1624
+ "nodetype" : "mandatory",
1625
+ "module" : "TED-MIB"
1626
+ },
1627
+ "tedNotificationGroup" : {
1628
+ "nodetype" : "mandatory",
1629
+ "module" : "TED-MIB"
1630
+ },
1631
+ "tedUnnumberedLinkGroup" : {
1632
+ "nodetype" : "optional",
1633
+ "module" : "TED-MIB",
1634
+ "description" :
1635
+ """This group is mandatory for TE links that support the
1636
+ unnumbered links.""",
1637
+ },
1638
+ "tedNumberedLinkGroup" : {
1639
+ "nodetype" : "optional",
1640
+ "module" : "TED-MIB",
1641
+ "description" :
1642
+ """This group is mandatory for TE links that support the
1643
+ numbered links.""",
1644
+ },
1645
+ "tedSwCapGroup" : {
1646
+ "nodetype" : "optional",
1647
+ "module" : "TED-MIB",
1648
+ "description" :
1649
+ """This group is mandatory for TE links that support GMPLS
1650
+ switching capability.""",
1651
+ },
1652
+ "tedSwCapMinLspBandwidthGroup" : {
1653
+ "nodetype" : "optional",
1654
+ "module" : "TED-MIB",
1655
+ "description" :
1656
+ """This group is mandatory for TE links if the switching
1657
+ capability field is TDM, PSC-1, PSC-2, PSC-3, or PSC-4.""",
1658
+ },
1659
+ "tedSwCapIfMtuGroup" : {
1660
+ "nodetype" : "optional",
1661
+ "module" : "TED-MIB",
1662
+ "description" :
1663
+ """This group is mandatory for TE links that support the MTU of
1664
+ the local or remote TE link.""",
1665
+ },
1666
+ "tedSwCapIndicationGroup" : {
1667
+ "nodetype" : "optional",
1668
+ "module" : "TED-MIB",
1669
+ "description" :
1670
+ """This group is mandatory for TE links that support Standard or
1671
+ Arbitrary SONET/SDH.""",
1672
+ },
1673
+ "tedSrlgGroup" : {
1674
+ "nodetype" : "optional",
1675
+ "module" : "TED-MIB",
1676
+ "description" :
1677
+ """This group is mandatory for TE links that support SRLG
1678
+ information.""",
1679
+ },
1680
+ }, # requires
1681
+ }, # compliance
1682
+ "tedModuleReadOnlyCompliance" : {
1683
+ "nodetype" : "compliance",
1684
+ "moduleName" : "TED-MIB",
1685
+ "oid" : "1.3.6.1.2.1.10.273.2.1.2",
1686
+ "status" : "current",
1687
+ "description" :
1688
+ """Compliance requirement for implementations only provides read-
1689
+ only support for TED. Such devices can then be monitored but
1690
+ cannot be configured using this MIB module.""",
1691
+ "requires" : {
1692
+ "tedMainGroup" : {
1693
+ "nodetype" : "mandatory",
1694
+ "module" : "TED-MIB"
1695
+ },
1696
+ "tedUnnumberedLinkGroup" : {
1697
+ "nodetype" : "optional",
1698
+ "module" : "TED-MIB",
1699
+ "description" :
1700
+ """This group is mandatory for TE links that support the
1701
+ unnumbered links.""",
1702
+ },
1703
+ "tedNumberedLinkGroup" : {
1704
+ "nodetype" : "optional",
1705
+ "module" : "TED-MIB",
1706
+ "description" :
1707
+ """This group is mandatory for TE links that support the
1708
+ numbered links.""",
1709
+ },
1710
+ "tedSwCapGroup" : {
1711
+ "nodetype" : "optional",
1712
+ "module" : "TED-MIB",
1713
+ "description" :
1714
+ """This group is mandatory for TE links that support some GMPLS
1715
+ switching capabilities.""",
1716
+ },
1717
+ "tedSwCapMinLspBandwidthGroup" : {
1718
+ "nodetype" : "optional",
1719
+ "module" : "TED-MIB",
1720
+ "description" :
1721
+ """This group is mandatory for TE links if the switching
1722
+ capability field is TDM, PSC-1, PSC-2, PSC-3, or PSC-4.""",
1723
+ },
1724
+ "tedSwCapIfMtuGroup" : {
1725
+ "nodetype" : "optional",
1726
+ "module" : "TED-MIB",
1727
+ "description" :
1728
+ """This group is mandatory for TE links that support the MTU of
1729
+ the local or remote TE link.""",
1730
+ },
1731
+ "tedSwCapIndicationGroup" : {
1732
+ "nodetype" : "optional",
1733
+ "module" : "TED-MIB",
1734
+ "description" :
1735
+ """This group is mandatory for TE links that support Standard or
1736
+ Arbitrary SONET/SDH.""",
1737
+ },
1738
+ "tedSrlgGroup" : {
1739
+ "nodetype" : "optional",
1740
+ "module" : "TED-MIB",
1741
+ "description" :
1742
+ """This group is mandatory for TE links that support SRLG
1743
+ information.""",
1744
+ },
1745
+ }, # requires
1746
+ }, # compliance
1747
+ }, # compliances
1748
+
1749
+ }