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,3673 @@
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 MPLS-TE-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MPLS-TE-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MPLS-TE-STD-MIB",
11
+
12
+ "MPLS-TE-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Multiprotocol Label Switching (MPLS) Working Group""",
17
+ "contact" :
18
+ """ Cheenu Srinivasan
19
+ Bloomberg L.P.
20
+ Email: cheenu@bloomberg.net
21
+
22
+ Arun Viswanathan
23
+ Force10 Networks, Inc.
24
+ Email: arunv@force10networks.com
25
+
26
+ Thomas D. Nadeau
27
+ Cisco Systems, Inc.
28
+ Email: tnadeau@cisco.com
29
+
30
+ Comments about this document should be emailed
31
+ directly to the MPLS working group mailing list at
32
+ mpls@uu.net.""",
33
+ "description" :
34
+ """Copyright (C) The Internet Society (2004). The
35
+ initial version of this MIB module was published
36
+ in RFC 3812. For full legal notices see the RFC
37
+ itself or see: http://www.ietf.org/copyrights/ianamib.html
38
+
39
+ This MIB module contains managed object definitions
40
+ for MPLS Traffic Engineering (TE) as defined in:
41
+ 1. Extensions to RSVP for LSP Tunnels, Awduche et
42
+ al, RFC 3209, December 2001
43
+ 2. Constraint-Based LSP Setup using LDP, Jamoussi
44
+
45
+
46
+
47
+ (Editor), RFC 3212, January 2002
48
+ 3. Requirements for Traffic Engineering Over MPLS,
49
+ Awduche, D., Malcolm, J., Agogbua, J., O'Dell, M.,
50
+ and J. McManus, [RFC2702], September 1999""",
51
+ "revisions" : (
52
+ {
53
+ "date" : "2004-06-03 00:00",
54
+ "description" :
55
+ """Initial version issued as part of RFC 3812.""",
56
+ },
57
+ ),
58
+ "identity node" : "mplsTeStdMIB",
59
+ },
60
+
61
+ "imports" : (
62
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
63
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
64
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
65
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
66
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
67
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
68
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
69
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
70
+ {"module" : "SNMPv2-SMI", "name" : "zeroDotZero"},
71
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
72
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
73
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
74
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
75
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
76
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
77
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
78
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
79
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
80
+ {"module" : "IF-MIB", "name" : "ifGeneralInformationGroup"},
81
+ {"module" : "IF-MIB", "name" : "ifCounterDiscontinuityGroup"},
82
+ {"module" : "MPLS-TC-STD-MIB", "name" : "mplsStdMIB"},
83
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsBitRate"},
84
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsBurstSize"},
85
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLSPID"},
86
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsTunnelIndex"},
87
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsTunnelInstanceIndex"},
88
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsTunnelAffinity"},
89
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsExtendedTunnelId"},
90
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsPathIndex"},
91
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsPathIndexOrZero"},
92
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsOwner"},
93
+ {"module" : "MPLS-TC-STD-MIB", "name" : "TeHopAddressType"},
94
+ {"module" : "MPLS-TC-STD-MIB", "name" : "TeHopAddress"},
95
+ {"module" : "MPLS-TC-STD-MIB", "name" : "TeHopAddressAS"},
96
+ {"module" : "MPLS-TC-STD-MIB", "name" : "TeHopAddressUnnum"},
97
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
98
+ {"module" : "DIFFSERV-MIB", "name" : "IndexIntegerNextFree"},
99
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
100
+ ),
101
+
102
+ "nodes" : {
103
+ "mplsTeStdMIB" : {
104
+ "nodetype" : "node",
105
+ "moduleName" : "MPLS-TE-STD-MIB",
106
+ "oid" : "1.3.6.1.2.1.10.166.3",
107
+ "status" : "current",
108
+ }, # node
109
+ "mplsTeNotifications" : {
110
+ "nodetype" : "node",
111
+ "moduleName" : "MPLS-TE-STD-MIB",
112
+ "oid" : "1.3.6.1.2.1.10.166.3.0",
113
+ }, # node
114
+ "mplsTeScalars" : {
115
+ "nodetype" : "node",
116
+ "moduleName" : "MPLS-TE-STD-MIB",
117
+ "oid" : "1.3.6.1.2.1.10.166.3.1",
118
+ }, # node
119
+ "mplsTunnelConfigured" : {
120
+ "nodetype" : "scalar",
121
+ "moduleName" : "MPLS-TE-STD-MIB",
122
+ "oid" : "1.3.6.1.2.1.10.166.3.1.1",
123
+ "status" : "current",
124
+ "syntax" : {
125
+ "type" : { "module" :"", "name" : "Unsigned32"},
126
+ },
127
+ "access" : "readonly",
128
+ "description" :
129
+ """The number of tunnels configured on this device. A
130
+ tunnel is considered configured if the
131
+ mplsTunnelRowStatus is active(1).""",
132
+ }, # scalar
133
+ "mplsTunnelActive" : {
134
+ "nodetype" : "scalar",
135
+ "moduleName" : "MPLS-TE-STD-MIB",
136
+ "oid" : "1.3.6.1.2.1.10.166.3.1.2",
137
+ "status" : "current",
138
+ "syntax" : {
139
+ "type" : { "module" :"", "name" : "Unsigned32"},
140
+ },
141
+ "access" : "readonly",
142
+ "description" :
143
+ """The number of tunnels active on this device. A
144
+ tunnel is considered active if the
145
+ mplsTunnelOperStatus is up(1).""",
146
+ }, # scalar
147
+ "mplsTunnelTEDistProto" : {
148
+ "nodetype" : "scalar",
149
+ "moduleName" : "MPLS-TE-STD-MIB",
150
+ "oid" : "1.3.6.1.2.1.10.166.3.1.3",
151
+ "status" : "current",
152
+ "syntax" : {
153
+ "type" : {
154
+ "basetype" : "Bits",
155
+ "other" : {
156
+ "nodetype" : "namednumber",
157
+ "number" : "0"
158
+ },
159
+ "ospf" : {
160
+ "nodetype" : "namednumber",
161
+ "number" : "1"
162
+ },
163
+ "isis" : {
164
+ "nodetype" : "namednumber",
165
+ "number" : "2"
166
+ },
167
+ },
168
+ },
169
+ "access" : "readonly",
170
+ "description" :
171
+ """The traffic engineering distribution protocol(s)
172
+ used by this LSR. Note that an LSR may support more
173
+ than one distribution protocol simultaneously.""",
174
+ }, # scalar
175
+ "mplsTunnelMaxHops" : {
176
+ "nodetype" : "scalar",
177
+ "moduleName" : "MPLS-TE-STD-MIB",
178
+ "oid" : "1.3.6.1.2.1.10.166.3.1.4",
179
+ "status" : "current",
180
+ "syntax" : {
181
+ "type" : { "module" :"", "name" : "Unsigned32"},
182
+ },
183
+ "access" : "readonly",
184
+ "description" :
185
+ """The maximum number of hops that can be specified for
186
+ a tunnel on this device.""",
187
+ }, # scalar
188
+ "mplsTunnelNotificationMaxRate" : {
189
+ "nodetype" : "scalar",
190
+ "moduleName" : "MPLS-TE-STD-MIB",
191
+ "oid" : "1.3.6.1.2.1.10.166.3.1.5",
192
+ "status" : "current",
193
+ "syntax" : {
194
+ "type" : { "module" :"", "name" : "Unsigned32"},
195
+ },
196
+ "access" : "readwrite",
197
+ "default" : "0",
198
+ "description" :
199
+ """This variable indicates the maximum number of
200
+ notifications issued per second. If events occur
201
+ more rapidly, the implementation may simply fail to
202
+ emit these notifications during that period, or may
203
+ queue them until an appropriate time. A value of 0
204
+ means no throttling is applied and events may be
205
+ notified at the rate at which they occur.""",
206
+ }, # scalar
207
+ "mplsTeObjects" : {
208
+ "nodetype" : "node",
209
+ "moduleName" : "MPLS-TE-STD-MIB",
210
+ "oid" : "1.3.6.1.2.1.10.166.3.2",
211
+ }, # node
212
+ "mplsTunnelIndexNext" : {
213
+ "nodetype" : "scalar",
214
+ "moduleName" : "MPLS-TE-STD-MIB",
215
+ "oid" : "1.3.6.1.2.1.10.166.3.2.1",
216
+ "status" : "current",
217
+ "syntax" : {
218
+ "type" : {
219
+ "basetype" : "Unsigned32",
220
+ "parent module" : {
221
+ "name" : "DIFFSERV-MIB",
222
+ "type" : "IndexIntegerNextFree",
223
+ },
224
+ "ranges" : [
225
+ {
226
+ "min" : "0",
227
+ "max" : "65535"
228
+ },
229
+ ],
230
+ "range" : {
231
+ "min" : "0",
232
+ "max" : "65535"
233
+ },
234
+ },
235
+ },
236
+ "access" : "readonly",
237
+ "description" :
238
+ """This object contains an unused value for
239
+
240
+
241
+
242
+ mplsTunnelIndex, or a zero to indicate
243
+ that none exist. Negative values are not allowed,
244
+ as they do not correspond to valid values of
245
+ mplsTunnelIndex.
246
+
247
+ Note that this object offers an unused value
248
+ for an mplsTunnelIndex value at the ingress
249
+ side of a tunnel. At other LSRs the value
250
+ of mplsTunnelIndex SHOULD be taken from the
251
+ value signaled by the MPLS signaling protocol.""",
252
+ }, # scalar
253
+ "mplsTunnelTable" : {
254
+ "nodetype" : "table",
255
+ "moduleName" : "MPLS-TE-STD-MIB",
256
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2",
257
+ "status" : "current",
258
+ "description" :
259
+ """The mplsTunnelTable allows new MPLS tunnels to be
260
+ created between an LSR and a remote endpoint, and
261
+ existing tunnels to be reconfigured or removed.
262
+ Note that only point-to-point tunnel segments are
263
+ supported, although multipoint-to-point and point-
264
+ to-multipoint connections are supported by an LSR
265
+ acting as a cross-connect. Each MPLS tunnel can
266
+ thus have one out-segment originating at this LSR
267
+ and/or one in-segment terminating at this LSR.""",
268
+ }, # table
269
+ "mplsTunnelEntry" : {
270
+ "nodetype" : "row",
271
+ "moduleName" : "MPLS-TE-STD-MIB",
272
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1",
273
+ "create" : "true",
274
+ "status" : "current",
275
+ "linkage" : [
276
+ "mplsTunnelIndex",
277
+ "mplsTunnelInstance",
278
+ "mplsTunnelIngressLSRId",
279
+ "mplsTunnelEgressLSRId",
280
+ ],
281
+ "description" :
282
+ """An entry in this table represents an MPLS tunnel.
283
+ An entry can be created by a network administrator
284
+ or by an SNMP agent as instructed by an MPLS
285
+ signalling protocol. Whenever a new entry is
286
+ created with mplsTunnelIsIf set to true(1), then a
287
+ corresponding entry is created in ifTable as well
288
+ (see RFC 2863). The ifType of this entry is
289
+ mplsTunnel(150).
290
+
291
+ A tunnel entry needs to be uniquely identified across
292
+ a MPLS network. Indices mplsTunnelIndex and
293
+ mplsTunnelInstance uniquely identify a tunnel on
294
+ the LSR originating the tunnel. To uniquely
295
+ identify a tunnel across an MPLS network requires
296
+
297
+
298
+
299
+ index mplsTunnelIngressLSRId. The last index
300
+ mplsTunnelEgressLSRId is useful in identifying all
301
+ instances of a tunnel that terminate on the same
302
+ egress LSR.""",
303
+ "reference" :
304
+ """1. RFC 2863 - The Interfaces Group MIB, McCloghrie,
305
+ K., and F. Kastenholtz, June 2000 """,
306
+ }, # row
307
+ "mplsTunnelIndex" : {
308
+ "nodetype" : "column",
309
+ "moduleName" : "MPLS-TE-STD-MIB",
310
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.1",
311
+ "status" : "current",
312
+ "syntax" : {
313
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsTunnelIndex"},
314
+ },
315
+ "access" : "noaccess",
316
+ "description" :
317
+ """Uniquely identifies a set of tunnel instances
318
+ between a pair of ingress and egress LSRs.
319
+ Managers should obtain new values for row
320
+ creation in this table by reading
321
+ mplsTunnelIndexNext. When
322
+ the MPLS signalling protocol is rsvp(2) this value
323
+ SHOULD be equal to the value signaled in the
324
+ Tunnel Id of the Session object. When the MPLS
325
+ signalling protocol is crldp(3) this value
326
+ SHOULD be equal to the value signaled in the
327
+ LSP ID.""",
328
+ }, # column
329
+ "mplsTunnelInstance" : {
330
+ "nodetype" : "column",
331
+ "moduleName" : "MPLS-TE-STD-MIB",
332
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.2",
333
+ "status" : "current",
334
+ "syntax" : {
335
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsTunnelInstanceIndex"},
336
+ },
337
+ "access" : "noaccess",
338
+ "description" :
339
+ """Uniquely identifies a particular instance of a
340
+ tunnel between a pair of ingress and egress LSRs.
341
+ It is useful to identify multiple instances of
342
+ tunnels for the purposes of backup and parallel
343
+ tunnels. When the MPLS signaling protocol is
344
+ rsvp(2) this value SHOULD be equal to the LSP Id
345
+ of the Sender Template object. When the signaling
346
+ protocol is crldp(3) there is no equivalent
347
+ signaling object.""",
348
+ }, # column
349
+ "mplsTunnelIngressLSRId" : {
350
+ "nodetype" : "column",
351
+ "moduleName" : "MPLS-TE-STD-MIB",
352
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.3",
353
+ "status" : "current",
354
+ "syntax" : {
355
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsExtendedTunnelId"},
356
+ },
357
+ "access" : "noaccess",
358
+ "description" :
359
+ """Identity of the ingress LSR associated with this
360
+ tunnel instance. When the MPLS signalling protocol
361
+ is rsvp(2) this value SHOULD be equal to the Tunnel
362
+
363
+
364
+
365
+ Sender Address in the Sender Template object and MAY
366
+ be equal to the Extended Tunnel Id field in the
367
+ SESSION object. When the MPLS signalling protocol is
368
+ crldp(3) this value SHOULD be equal to the Ingress
369
+ LSR Router ID field in the LSPID TLV object.""",
370
+ "reference" :
371
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels,
372
+ Awduche et al, RFC 3209, December 2001
373
+ 2. Constraint-Based LSP Setup using LDP, Jamoussi
374
+ (Editor), RFC 3212, January 2002""",
375
+ }, # column
376
+ "mplsTunnelEgressLSRId" : {
377
+ "nodetype" : "column",
378
+ "moduleName" : "MPLS-TE-STD-MIB",
379
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.4",
380
+ "status" : "current",
381
+ "syntax" : {
382
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsExtendedTunnelId"},
383
+ },
384
+ "access" : "noaccess",
385
+ "description" :
386
+ """Identity of the egress LSR associated with this
387
+ tunnel instance.""",
388
+ }, # column
389
+ "mplsTunnelName" : {
390
+ "nodetype" : "column",
391
+ "moduleName" : "MPLS-TE-STD-MIB",
392
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.5",
393
+ "status" : "current",
394
+ "syntax" : {
395
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
396
+ },
397
+ "access" : "readwrite",
398
+ "default" : "",
399
+ "description" :
400
+ """The canonical name assigned to the tunnel. This name
401
+ can be used to refer to the tunnel on the LSR's
402
+ console port. If mplsTunnelIsIf is set to true
403
+ then the ifName of the interface corresponding to
404
+ this tunnel should have a value equal to
405
+ mplsTunnelName. Also see the description of ifName
406
+ in RFC 2863.""",
407
+ "reference" :
408
+ """RFC 2863 - The Interfaces Group MIB, McCloghrie, K.,
409
+ and F. Kastenholtz, June 2000""",
410
+ }, # column
411
+ "mplsTunnelDescr" : {
412
+ "nodetype" : "column",
413
+ "moduleName" : "MPLS-TE-STD-MIB",
414
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.6",
415
+ "status" : "current",
416
+ "syntax" : {
417
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
418
+ },
419
+ "access" : "readwrite",
420
+ "default" : "",
421
+ "description" :
422
+ """A textual string containing information about the
423
+ tunnel. If there is no description this object
424
+ contains a zero length string. This object is may
425
+ not be signaled by MPLS signaling protocols,
426
+
427
+
428
+
429
+ consequentally the value of this object at transit
430
+ and egress LSRs MAY be automatically generated or
431
+ absent.""",
432
+ }, # column
433
+ "mplsTunnelIsIf" : {
434
+ "nodetype" : "column",
435
+ "moduleName" : "MPLS-TE-STD-MIB",
436
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.7",
437
+ "status" : "current",
438
+ "syntax" : {
439
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
440
+ },
441
+ "access" : "readwrite",
442
+ "default" : "false",
443
+ "description" :
444
+ """Denotes whether or not this tunnel corresponds to an
445
+ interface represented in the interfaces group
446
+ table. Note that if this variable is set to true
447
+ then the ifName of the interface corresponding to
448
+ this tunnel should have a value equal to
449
+ mplsTunnelName. Also see the description of ifName
450
+ in RFC 2863. This object is meaningful only at the
451
+ ingress and egress LSRs.""",
452
+ "reference" :
453
+ """RFC 2863 - The Interfaces Group MIB, McCloghrie, K.,
454
+ and F. Kastenholtz, June 2000""",
455
+ }, # column
456
+ "mplsTunnelIfIndex" : {
457
+ "nodetype" : "column",
458
+ "moduleName" : "MPLS-TE-STD-MIB",
459
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.8",
460
+ "status" : "current",
461
+ "syntax" : {
462
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
463
+ },
464
+ "access" : "readonly",
465
+ "default" : "0",
466
+ "description" :
467
+ """If mplsTunnelIsIf is set to true, then this value
468
+ contains the LSR-assigned ifIndex which corresponds
469
+ to an entry in the interfaces table. Otherwise
470
+ this variable should contain the value of zero
471
+ indicating that a valid ifIndex was not assigned to
472
+ this tunnel interface.""",
473
+ "reference" :
474
+ """RFC 2863 - The Interfaces Group MIB, McCloghrie, K.,
475
+ and F. Kastenholtz, June 2000""",
476
+ }, # column
477
+ "mplsTunnelOwner" : {
478
+ "nodetype" : "column",
479
+ "moduleName" : "MPLS-TE-STD-MIB",
480
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.9",
481
+ "status" : "current",
482
+ "syntax" : {
483
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsOwner"},
484
+ },
485
+ "access" : "readonly",
486
+ "description" :
487
+ """Denotes the entity that created and is responsible
488
+
489
+
490
+
491
+ for managing this tunnel. This column is
492
+ automatically filled by the agent on creation of a
493
+ row.""",
494
+ }, # column
495
+ "mplsTunnelRole" : {
496
+ "nodetype" : "column",
497
+ "moduleName" : "MPLS-TE-STD-MIB",
498
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.10",
499
+ "status" : "current",
500
+ "syntax" : {
501
+ "type" : {
502
+ "basetype" : "Enumeration",
503
+ "head" : {
504
+ "nodetype" : "namednumber",
505
+ "number" : "1"
506
+ },
507
+ "transit" : {
508
+ "nodetype" : "namednumber",
509
+ "number" : "2"
510
+ },
511
+ "tail" : {
512
+ "nodetype" : "namednumber",
513
+ "number" : "3"
514
+ },
515
+ "headTail" : {
516
+ "nodetype" : "namednumber",
517
+ "number" : "4"
518
+ },
519
+ },
520
+ },
521
+ "access" : "readwrite",
522
+ "default" : "head",
523
+ "description" :
524
+ """This value signifies the role that this tunnel
525
+ entry/instance represents. This value MUST be set
526
+ to head(1) at the originating point of the tunnel.
527
+ This value MUST be set to transit(2) at transit
528
+ points along the tunnel, if transit points are
529
+ supported. This value MUST be set to tail(3) at the
530
+ terminating point of the tunnel if tunnel tails are
531
+ supported.
532
+
533
+ The value headTail(4) is provided for tunnels that
534
+ begin and end on the same LSR.""",
535
+ }, # column
536
+ "mplsTunnelXCPointer" : {
537
+ "nodetype" : "column",
538
+ "moduleName" : "MPLS-TE-STD-MIB",
539
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.11",
540
+ "status" : "current",
541
+ "syntax" : {
542
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
543
+ },
544
+ "access" : "readwrite",
545
+ "default" : "0.0",
546
+ "description" :
547
+ """This variable points to a row in the mplsXCTable.
548
+ This table identifies the segments that compose
549
+ this tunnel, their characteristics, and
550
+ relationships to each other. A value of zeroDotZero
551
+ indicates that no LSP has been associated with this
552
+ tunnel yet.""",
553
+ "reference" :
554
+ """Srinivasan, C., Viswanathan, A., and T. Nadeau,
555
+ Multiprotocol Label Switching (MPLS) Label Switching
556
+ Router (LSR) Management Information Base (MIB), RFC 3813,
557
+ June 2004""",
558
+ }, # column
559
+ "mplsTunnelSignallingProto" : {
560
+ "nodetype" : "column",
561
+ "moduleName" : "MPLS-TE-STD-MIB",
562
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.12",
563
+ "status" : "current",
564
+ "syntax" : {
565
+ "type" : {
566
+ "basetype" : "Enumeration",
567
+ "none" : {
568
+ "nodetype" : "namednumber",
569
+ "number" : "1"
570
+ },
571
+ "rsvp" : {
572
+ "nodetype" : "namednumber",
573
+ "number" : "2"
574
+ },
575
+ "crldp" : {
576
+ "nodetype" : "namednumber",
577
+ "number" : "3"
578
+ },
579
+ "other" : {
580
+ "nodetype" : "namednumber",
581
+ "number" : "4"
582
+ },
583
+ },
584
+ },
585
+ "access" : "readwrite",
586
+ "default" : "none",
587
+ "description" :
588
+ """The signalling protocol, if any, used to setup this
589
+ tunnel.""",
590
+ }, # column
591
+ "mplsTunnelSetupPrio" : {
592
+ "nodetype" : "column",
593
+ "moduleName" : "MPLS-TE-STD-MIB",
594
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.13",
595
+ "status" : "current",
596
+ "syntax" : {
597
+ "type" : {
598
+ "basetype" : "Integer32",
599
+ "ranges" : [
600
+ {
601
+ "min" : "0",
602
+ "max" : "7"
603
+ },
604
+ ],
605
+ "range" : {
606
+ "min" : "0",
607
+ "max" : "7"
608
+ },
609
+ },
610
+ },
611
+ "access" : "readwrite",
612
+ "default" : "0",
613
+ "description" :
614
+ """Indicates the setup priority of this tunnel.""",
615
+ "reference" :
616
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels,
617
+ Awduche et al, RFC 3209, December 2001
618
+ 2. Constraint-Based LSP Setup using LDP, Jamoussi
619
+ (Editor), RFC 3212, January 2002""",
620
+ }, # column
621
+ "mplsTunnelHoldingPrio" : {
622
+ "nodetype" : "column",
623
+ "moduleName" : "MPLS-TE-STD-MIB",
624
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.14",
625
+ "status" : "current",
626
+ "syntax" : {
627
+ "type" : {
628
+ "basetype" : "Integer32",
629
+ "ranges" : [
630
+ {
631
+ "min" : "0",
632
+ "max" : "7"
633
+ },
634
+ ],
635
+ "range" : {
636
+ "min" : "0",
637
+ "max" : "7"
638
+ },
639
+ },
640
+ },
641
+ "access" : "readwrite",
642
+ "default" : "0",
643
+ "description" :
644
+ """Indicates the holding priority for this tunnel.""",
645
+ "reference" :
646
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels,
647
+ Awduche et al, RFC 3209, December 2001
648
+
649
+ 2. Constraint-Based LSP Setup using LDP, Jamoussi
650
+ (Editor), RFC 3212, January 2002""",
651
+ }, # column
652
+ "mplsTunnelSessionAttributes" : {
653
+ "nodetype" : "column",
654
+ "moduleName" : "MPLS-TE-STD-MIB",
655
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.15",
656
+ "status" : "current",
657
+ "syntax" : {
658
+ "type" : {
659
+ "basetype" : "Bits",
660
+ "fastReroute" : {
661
+ "nodetype" : "namednumber",
662
+ "number" : "0"
663
+ },
664
+ "mergingPermitted" : {
665
+ "nodetype" : "namednumber",
666
+ "number" : "1"
667
+ },
668
+ "isPersistent" : {
669
+ "nodetype" : "namednumber",
670
+ "number" : "2"
671
+ },
672
+ "isPinned" : {
673
+ "nodetype" : "namednumber",
674
+ "number" : "3"
675
+ },
676
+ "recordRoute" : {
677
+ "nodetype" : "namednumber",
678
+ "number" : "4"
679
+ },
680
+ },
681
+ },
682
+ "access" : "readwrite",
683
+ "description" :
684
+ """This bit mask indicates optional session values for
685
+ this tunnel. The following describes these bit
686
+ fields:
687
+
688
+ fastRerouteThis flag indicates that the any tunnel
689
+ hop may choose to reroute this tunnel without
690
+ tearing it down. This flag permits transit routers
691
+ to use a local repair mechanism which may result in
692
+ violation of the explicit routing of this tunnel.
693
+ When a fault is detected on an adjacent downstream
694
+ link or node, a transit router can re-route traffic
695
+ for fast service restoration.
696
+
697
+ mergingPermitted This flag permits transit routers
698
+ to merge this session with other RSVP sessions for
699
+ the purpose of reducing resource overhead on
700
+ downstream transit routers, thereby providing
701
+ better network scaling.
702
+
703
+ isPersistent Indicates whether this tunnel should
704
+ be restored automatically after a failure occurs.
705
+
706
+ isPinned This flag indicates whether the loose-
707
+ routed hops of this tunnel are to be pinned.
708
+
709
+ recordRouteThis flag indicates whether or not the
710
+ signalling protocol should remember the tunnel path
711
+ after it has been signaled.""",
712
+ "reference" :
713
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels,
714
+ Awduche et al, RFC 3209, December 2001.""",
715
+ }, # column
716
+ "mplsTunnelLocalProtectInUse" : {
717
+ "nodetype" : "column",
718
+ "moduleName" : "MPLS-TE-STD-MIB",
719
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.16",
720
+ "status" : "current",
721
+ "syntax" : {
722
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
723
+ },
724
+ "access" : "readwrite",
725
+ "default" : "false",
726
+ "description" :
727
+ """Indicates that the local repair mechanism is in use
728
+ to maintain this tunnel (usually in the face of an
729
+ outage of the link it was previously routed over).""",
730
+ }, # column
731
+ "mplsTunnelResourcePointer" : {
732
+ "nodetype" : "column",
733
+ "moduleName" : "MPLS-TE-STD-MIB",
734
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.17",
735
+ "status" : "current",
736
+ "syntax" : {
737
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
738
+ },
739
+ "access" : "readwrite",
740
+ "default" : "0.0",
741
+ "description" :
742
+ """This variable represents a pointer to the traffic
743
+ parameter specification for this tunnel. This
744
+ value may point at an entry in the
745
+ mplsTunnelResourceEntry to indicate which
746
+ mplsTunnelResourceEntry is to be assigned to this
747
+ LSP instance. This value may optionally point at
748
+ an externally defined traffic parameter
749
+ specification table. A value of zeroDotZero
750
+ indicates best-effort treatment. By having the
751
+ same value of this object, two or more LSPs can
752
+ indicate resource sharing.""",
753
+ }, # column
754
+ "mplsTunnelPrimaryInstance" : {
755
+ "nodetype" : "column",
756
+ "moduleName" : "MPLS-TE-STD-MIB",
757
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.18",
758
+ "status" : "current",
759
+ "syntax" : {
760
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsTunnelInstanceIndex"},
761
+ },
762
+ "access" : "readonly",
763
+ "default" : "0",
764
+ "description" :
765
+ """Specifies the instance index of the primary instance
766
+ of this tunnel. More details of the definition of
767
+ tunnel instances and the primary tunnel instance
768
+ can be found in the description of the TEXTUAL-CONVENTION
769
+ MplsTunnelInstanceIndex.""",
770
+ }, # column
771
+ "mplsTunnelInstancePriority" : {
772
+ "nodetype" : "column",
773
+ "moduleName" : "MPLS-TE-STD-MIB",
774
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.19",
775
+ "status" : "current",
776
+ "syntax" : {
777
+ "type" : { "module" :"", "name" : "Unsigned32"},
778
+ },
779
+ "access" : "readwrite",
780
+ "default" : "0",
781
+ "description" :
782
+ """This value indicates which priority, in descending
783
+ order, with 0 indicating the lowest priority,
784
+ within a group of tunnel instances. A group of
785
+ tunnel instances is defined as a set of LSPs with
786
+ the same mplsTunnelIndex in this table, but with a
787
+ different mplsTunnelInstance. Tunnel instance
788
+ priorities are used to denote the priority at which
789
+ a particular tunnel instance will supercede
790
+ another. Instances of tunnels containing the same
791
+ mplsTunnelInstancePriority will be used for load
792
+ sharing.""",
793
+ }, # column
794
+ "mplsTunnelHopTableIndex" : {
795
+ "nodetype" : "column",
796
+ "moduleName" : "MPLS-TE-STD-MIB",
797
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.20",
798
+ "status" : "current",
799
+ "syntax" : {
800
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndexOrZero"},
801
+ },
802
+ "access" : "readwrite",
803
+ "default" : "0",
804
+ "description" :
805
+ """Index into the mplsTunnelHopTable entry that
806
+ specifies the explicit route hops for this tunnel.
807
+ This object is meaningful only at the head-end of
808
+ the tunnel.""",
809
+ }, # column
810
+ "mplsTunnelPathInUse" : {
811
+ "nodetype" : "column",
812
+ "moduleName" : "MPLS-TE-STD-MIB",
813
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.21",
814
+ "status" : "current",
815
+ "syntax" : {
816
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndexOrZero"},
817
+ },
818
+ "access" : "readwrite",
819
+ "default" : "0",
820
+ "description" :
821
+ """This value denotes the configured path that was
822
+ chosen for this tunnel. This value reflects the
823
+ secondary index into mplsTunnelHopTable. This path
824
+ may not exactly match the one in
825
+ mplsTunnelARHopTable due to the fact that some CSPF
826
+ modification may have taken place. See
827
+ mplsTunnelARHopTable for the actual path being
828
+ taken by the tunnel. A value of zero denotes that
829
+ no path is currently in use or available.""",
830
+ }, # column
831
+ "mplsTunnelARHopTableIndex" : {
832
+ "nodetype" : "column",
833
+ "moduleName" : "MPLS-TE-STD-MIB",
834
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.22",
835
+ "status" : "current",
836
+ "syntax" : {
837
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndexOrZero"},
838
+ },
839
+ "access" : "readonly",
840
+ "default" : "0",
841
+ "description" :
842
+ """Index into the mplsTunnelARHopTable entry that
843
+ specifies the actual hops traversed by the tunnel.
844
+ This is automatically updated by the agent when the
845
+ actual hops becomes available.""",
846
+ }, # column
847
+ "mplsTunnelCHopTableIndex" : {
848
+ "nodetype" : "column",
849
+ "moduleName" : "MPLS-TE-STD-MIB",
850
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.23",
851
+ "status" : "current",
852
+ "syntax" : {
853
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndexOrZero"},
854
+ },
855
+ "access" : "readonly",
856
+ "default" : "0",
857
+ "description" :
858
+ """Index into the mplsTunnelCHopTable entry that
859
+ specifies the computed hops traversed by the
860
+ tunnel. This is automatically updated by the agent
861
+ when computed hops become available or when
862
+ computed hops get modified.""",
863
+ }, # column
864
+ "mplsTunnelIncludeAnyAffinity" : {
865
+ "nodetype" : "column",
866
+ "moduleName" : "MPLS-TE-STD-MIB",
867
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.24",
868
+ "status" : "current",
869
+ "syntax" : {
870
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsTunnelAffinity"},
871
+ },
872
+ "access" : "readwrite",
873
+ "description" :
874
+ """A link satisfies the include-any constraint if and
875
+ only if the constraint is zero, or the link and the
876
+ constraint have a resource class in common.""",
877
+ "reference" :
878
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels,
879
+ Awduche et al, RFC 3209, December 2001.""",
880
+ }, # column
881
+ "mplsTunnelIncludeAllAffinity" : {
882
+ "nodetype" : "column",
883
+ "moduleName" : "MPLS-TE-STD-MIB",
884
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.25",
885
+ "status" : "current",
886
+ "syntax" : {
887
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsTunnelAffinity"},
888
+ },
889
+ "access" : "readwrite",
890
+ "description" :
891
+ """A link satisfies the include-all constraint if and
892
+ only if the link contains all of the administrative
893
+ groups specified in the constraint.""",
894
+ "reference" :
895
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels,
896
+ Awduche et al, RFC 3209, December 2001.""",
897
+ }, # column
898
+ "mplsTunnelExcludeAnyAffinity" : {
899
+ "nodetype" : "column",
900
+ "moduleName" : "MPLS-TE-STD-MIB",
901
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.26",
902
+ "status" : "current",
903
+ "syntax" : {
904
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsTunnelAffinity"},
905
+ },
906
+ "access" : "readwrite",
907
+ "default" : "0",
908
+ "description" :
909
+ """A link satisfies the exclude-any constraint if and
910
+ only if the link contains none of the
911
+ administrative groups specified in the constraint.""",
912
+ "reference" :
913
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels,
914
+ Awduche et al, RFC 3209, December 2001.""",
915
+ }, # column
916
+ "mplsTunnelTotalUpTime" : {
917
+ "nodetype" : "column",
918
+ "moduleName" : "MPLS-TE-STD-MIB",
919
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.27",
920
+ "status" : "current",
921
+ "syntax" : {
922
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
923
+ },
924
+ "access" : "readonly",
925
+ "description" :
926
+ """This value represents the aggregate up time for all
927
+ instances of this tunnel, if available. If this
928
+ value is unavailable, it MUST return a value of 0.""",
929
+ }, # column
930
+ "mplsTunnelInstanceUpTime" : {
931
+ "nodetype" : "column",
932
+ "moduleName" : "MPLS-TE-STD-MIB",
933
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.28",
934
+ "status" : "current",
935
+ "syntax" : {
936
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
937
+ },
938
+ "access" : "readonly",
939
+ "description" :
940
+ """This value identifies the total time that this
941
+ tunnel instance's operStatus has been Up(1).""",
942
+ }, # column
943
+ "mplsTunnelPrimaryUpTime" : {
944
+ "nodetype" : "column",
945
+ "moduleName" : "MPLS-TE-STD-MIB",
946
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.29",
947
+ "status" : "current",
948
+ "syntax" : {
949
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
950
+ },
951
+ "access" : "readonly",
952
+ "description" :
953
+ """Specifies the total time the primary instance of
954
+ this tunnel has been active. The primary instance
955
+ of this tunnel is defined in
956
+ mplsTunnelPrimaryInstance.""",
957
+ }, # column
958
+ "mplsTunnelPathChanges" : {
959
+ "nodetype" : "column",
960
+ "moduleName" : "MPLS-TE-STD-MIB",
961
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.30",
962
+ "status" : "current",
963
+ "syntax" : {
964
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
965
+ },
966
+ "access" : "readonly",
967
+ "description" :
968
+ """Specifies the number of times the actual path for
969
+ this tunnel instance has changed.""",
970
+ }, # column
971
+ "mplsTunnelLastPathChange" : {
972
+ "nodetype" : "column",
973
+ "moduleName" : "MPLS-TE-STD-MIB",
974
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.31",
975
+ "status" : "current",
976
+ "syntax" : {
977
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
978
+ },
979
+ "access" : "readonly",
980
+ "description" :
981
+ """Specifies the time since the last change to the
982
+ actual path for this tunnel instance.""",
983
+ }, # column
984
+ "mplsTunnelCreationTime" : {
985
+ "nodetype" : "column",
986
+ "moduleName" : "MPLS-TE-STD-MIB",
987
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.32",
988
+ "status" : "current",
989
+ "syntax" : {
990
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
991
+ },
992
+ "access" : "readonly",
993
+ "description" :
994
+ """Specifies the value of SysUpTime when the first
995
+ instance of this tunnel came into existence.
996
+ That is, when the value of mplsTunnelOperStatus
997
+ was first set to up(1).""",
998
+ }, # column
999
+ "mplsTunnelStateTransitions" : {
1000
+ "nodetype" : "column",
1001
+ "moduleName" : "MPLS-TE-STD-MIB",
1002
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.33",
1003
+ "status" : "current",
1004
+ "syntax" : {
1005
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1006
+ },
1007
+ "access" : "readonly",
1008
+ "description" :
1009
+ """Specifies the number of times the state
1010
+ (mplsTunnelOperStatus) of this tunnel instance has
1011
+ changed.""",
1012
+ }, # column
1013
+ "mplsTunnelAdminStatus" : {
1014
+ "nodetype" : "column",
1015
+ "moduleName" : "MPLS-TE-STD-MIB",
1016
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.34",
1017
+ "status" : "current",
1018
+ "syntax" : {
1019
+ "type" : {
1020
+ "basetype" : "Enumeration",
1021
+ "up" : {
1022
+ "nodetype" : "namednumber",
1023
+ "number" : "1"
1024
+ },
1025
+ "down" : {
1026
+ "nodetype" : "namednumber",
1027
+ "number" : "2"
1028
+ },
1029
+ "testing" : {
1030
+ "nodetype" : "namednumber",
1031
+ "number" : "3"
1032
+ },
1033
+ },
1034
+ },
1035
+ "access" : "readwrite",
1036
+ "description" :
1037
+ """Indicates the desired operational status of this
1038
+ tunnel.""",
1039
+ }, # column
1040
+ "mplsTunnelOperStatus" : {
1041
+ "nodetype" : "column",
1042
+ "moduleName" : "MPLS-TE-STD-MIB",
1043
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.35",
1044
+ "status" : "current",
1045
+ "syntax" : {
1046
+ "type" : {
1047
+ "basetype" : "Enumeration",
1048
+ "up" : {
1049
+ "nodetype" : "namednumber",
1050
+ "number" : "1"
1051
+ },
1052
+ "down" : {
1053
+ "nodetype" : "namednumber",
1054
+ "number" : "2"
1055
+ },
1056
+ "testing" : {
1057
+ "nodetype" : "namednumber",
1058
+ "number" : "3"
1059
+ },
1060
+ "unknown" : {
1061
+ "nodetype" : "namednumber",
1062
+ "number" : "4"
1063
+ },
1064
+ "dormant" : {
1065
+ "nodetype" : "namednumber",
1066
+ "number" : "5"
1067
+ },
1068
+ "notPresent" : {
1069
+ "nodetype" : "namednumber",
1070
+ "number" : "6"
1071
+ },
1072
+ "lowerLayerDown" : {
1073
+ "nodetype" : "namednumber",
1074
+ "number" : "7"
1075
+ },
1076
+ },
1077
+ },
1078
+ "access" : "readonly",
1079
+ "description" :
1080
+ """Indicates the actual operational status of this
1081
+ tunnel, which is typically but not limited to, a
1082
+ function of the state of individual segments of
1083
+ this tunnel.""",
1084
+ }, # column
1085
+ "mplsTunnelRowStatus" : {
1086
+ "nodetype" : "column",
1087
+ "moduleName" : "MPLS-TE-STD-MIB",
1088
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.36",
1089
+ "status" : "current",
1090
+ "syntax" : {
1091
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1092
+ },
1093
+ "access" : "readwrite",
1094
+ "description" :
1095
+ """This variable is used to create, modify, and/or
1096
+ delete a row in this table. When a row in this
1097
+ table is in active(1) state, no objects in that row
1098
+ can be modified by the agent except
1099
+ mplsTunnelAdminStatus, mplsTunnelRowStatus and
1100
+ mplsTunnelStorageType.""",
1101
+ }, # column
1102
+ "mplsTunnelStorageType" : {
1103
+ "nodetype" : "column",
1104
+ "moduleName" : "MPLS-TE-STD-MIB",
1105
+ "oid" : "1.3.6.1.2.1.10.166.3.2.2.1.37",
1106
+ "status" : "current",
1107
+ "syntax" : {
1108
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1109
+ },
1110
+ "access" : "readwrite",
1111
+ "default" : "volatile",
1112
+ "description" :
1113
+ """The storage type for this tunnel entry.
1114
+ Conceptual rows having the value 'permanent'
1115
+ need not allow write-access to any columnar
1116
+ objects in the row.""",
1117
+ }, # column
1118
+ "mplsTunnelHopListIndexNext" : {
1119
+ "nodetype" : "scalar",
1120
+ "moduleName" : "MPLS-TE-STD-MIB",
1121
+ "oid" : "1.3.6.1.2.1.10.166.3.2.3",
1122
+ "status" : "current",
1123
+ "syntax" : {
1124
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndexOrZero"},
1125
+ },
1126
+ "access" : "readonly",
1127
+ "description" :
1128
+ """This object contains an appropriate value to be used
1129
+ for mplsTunnelHopListIndex when creating entries in
1130
+ the mplsTunnelHopTable. If the number of
1131
+ unassigned entries is exhausted, a retrieval
1132
+
1133
+
1134
+
1135
+ operation will return a value of 0. This object
1136
+ may also return a value of 0 when the LSR is unable
1137
+ to accept conceptual row creation, for example, if
1138
+ the mplsTunnelHopTable is implemented as read-only.
1139
+ To obtain the value of mplsTunnelHopListIndex for a
1140
+ new entry in the mplsTunnelHopTable, the manager
1141
+ issues a management protocol retrieval operation to
1142
+ obtain the current value of mplsTunnelHopIndex.
1143
+
1144
+ When the SET is performed to create a row in the
1145
+ mplsTunnelHopTable, the Command Responder (agent)
1146
+ must determine whether the value is indeed still
1147
+ unused; Two Network Management Applications may
1148
+ attempt to create a row (configuration entry)
1149
+ simultaneously and use the same value. If it is
1150
+ currently unused, the SET succeeds and the Command
1151
+ Responder (agent) changes the value of this object,
1152
+ according to an implementation-specific algorithm.
1153
+ If the value is in use, however, the SET fails. The
1154
+ Network Management Application must then re-read
1155
+ this variable to obtain a new usable value.""",
1156
+ }, # scalar
1157
+ "mplsTunnelHopTable" : {
1158
+ "nodetype" : "table",
1159
+ "moduleName" : "MPLS-TE-STD-MIB",
1160
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4",
1161
+ "status" : "current",
1162
+ "description" :
1163
+ """The mplsTunnelHopTable is used to indicate the hops,
1164
+ strict or loose, for an instance of an MPLS tunnel
1165
+ defined in mplsTunnelTable, when it is established
1166
+ via signalling, for the outgoing direction of the
1167
+ tunnel. Thus at a transit LSR, this table contains
1168
+ the desired path of the tunnel from this LSR
1169
+ onwards. Each row in this table is indexed by
1170
+ mplsTunnelHopListIndex which corresponds to a group
1171
+ of hop lists or path options. Each row also has a
1172
+ secondary index mplsTunnelHopIndex, which indicates
1173
+ a group of hops (also known as a path option).
1174
+ Finally, the third index, mplsTunnelHopIndex
1175
+ indicates the specific hop information for a path
1176
+ option. In case we want to specify a particular
1177
+ interface on the originating LSR of an outgoing
1178
+ tunnel by which we want packets to exit the LSR,
1179
+ we specify this as the first hop for this tunnel in
1180
+ mplsTunnelHopTable.""",
1181
+ }, # table
1182
+ "mplsTunnelHopEntry" : {
1183
+ "nodetype" : "row",
1184
+ "moduleName" : "MPLS-TE-STD-MIB",
1185
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1",
1186
+ "create" : "true",
1187
+ "status" : "current",
1188
+ "linkage" : [
1189
+ "mplsTunnelHopListIndex",
1190
+ "mplsTunnelHopPathOptionIndex",
1191
+ "mplsTunnelHopIndex",
1192
+ ],
1193
+ "description" :
1194
+ """An entry in this table represents a tunnel hop. An
1195
+ entry is created by a network administrator for
1196
+ signaled ERLSP set up by an MPLS signalling
1197
+ protocol.""",
1198
+ }, # row
1199
+ "mplsTunnelHopListIndex" : {
1200
+ "nodetype" : "column",
1201
+ "moduleName" : "MPLS-TE-STD-MIB",
1202
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.1",
1203
+ "status" : "current",
1204
+ "syntax" : {
1205
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndex"},
1206
+ },
1207
+ "access" : "noaccess",
1208
+ "description" :
1209
+ """Primary index into this table identifying a
1210
+ particular explicit route object.""",
1211
+ }, # column
1212
+ "mplsTunnelHopPathOptionIndex" : {
1213
+ "nodetype" : "column",
1214
+ "moduleName" : "MPLS-TE-STD-MIB",
1215
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.2",
1216
+ "status" : "current",
1217
+ "syntax" : {
1218
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndex"},
1219
+ },
1220
+ "access" : "noaccess",
1221
+ "description" :
1222
+ """Secondary index into this table identifying a
1223
+ particular group of hops representing a particular
1224
+ configured path. This is otherwise known as a path
1225
+ option.""",
1226
+ }, # column
1227
+ "mplsTunnelHopIndex" : {
1228
+ "nodetype" : "column",
1229
+ "moduleName" : "MPLS-TE-STD-MIB",
1230
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.3",
1231
+ "status" : "current",
1232
+ "syntax" : {
1233
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndex"},
1234
+ },
1235
+ "access" : "noaccess",
1236
+ "description" :
1237
+ """Tertiary index into this table identifying a
1238
+ particular hop.""",
1239
+ }, # column
1240
+ "mplsTunnelHopAddrType" : {
1241
+ "nodetype" : "column",
1242
+ "moduleName" : "MPLS-TE-STD-MIB",
1243
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.4",
1244
+ "status" : "current",
1245
+ "syntax" : {
1246
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressType"},
1247
+ },
1248
+ "access" : "readwrite",
1249
+ "default" : "ipv4",
1250
+ "description" :
1251
+ """The Hop Address Type of this tunnel hop.
1252
+
1253
+ The value of this object cannot be changed
1254
+ if the value of the corresponding
1255
+ mplsTunnelHopRowStatus object is 'active'.
1256
+
1257
+ Note that lspid(5) is a valid option only
1258
+ for tunnels signaled via CRLDP.""",
1259
+ }, # column
1260
+ "mplsTunnelHopIpAddr" : {
1261
+ "nodetype" : "column",
1262
+ "moduleName" : "MPLS-TE-STD-MIB",
1263
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.5",
1264
+ "status" : "current",
1265
+ "syntax" : {
1266
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddress"},
1267
+ },
1268
+ "access" : "readwrite",
1269
+ "default" : "0x00000000",
1270
+ "description" :
1271
+ """The Tunnel Hop Address for this tunnel hop.
1272
+
1273
+ The type of this address is determined by the
1274
+ value of the corresponding mplsTunnelHopAddrType.
1275
+
1276
+ The value of this object cannot be changed
1277
+ if the value of the corresponding
1278
+ mplsTunnelHopRowStatus object is 'active'.""",
1279
+ }, # column
1280
+ "mplsTunnelHopIpPrefixLen" : {
1281
+ "nodetype" : "column",
1282
+ "moduleName" : "MPLS-TE-STD-MIB",
1283
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.6",
1284
+ "status" : "current",
1285
+ "syntax" : {
1286
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1287
+ },
1288
+ "access" : "readwrite",
1289
+ "default" : "32",
1290
+ "description" :
1291
+ """If mplsTunnelHopAddrType is set to ipv4(1) or
1292
+ ipv6(2), then this value will contain an
1293
+ appropriate prefix length for the IP address in
1294
+ object mplsTunnelHopIpAddr. Otherwise this value
1295
+ is irrelevant and should be ignored.""",
1296
+ }, # column
1297
+ "mplsTunnelHopAsNumber" : {
1298
+ "nodetype" : "column",
1299
+ "moduleName" : "MPLS-TE-STD-MIB",
1300
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.7",
1301
+ "status" : "current",
1302
+ "syntax" : {
1303
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressAS"},
1304
+ },
1305
+ "access" : "readwrite",
1306
+ "description" :
1307
+ """If mplsTunnelHopAddrType is set to asnumber(3), then
1308
+ this value will contain the AS number of this hop.
1309
+ Otherwise the agent should set this object to zero-
1310
+ length string and the manager should ignore this.""",
1311
+ }, # column
1312
+ "mplsTunnelHopAddrUnnum" : {
1313
+ "nodetype" : "column",
1314
+ "moduleName" : "MPLS-TE-STD-MIB",
1315
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.8",
1316
+ "status" : "current",
1317
+ "syntax" : {
1318
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressUnnum"},
1319
+ },
1320
+ "access" : "readwrite",
1321
+ "description" :
1322
+ """If mplsTunnelHopAddrType is set to unnum(4), then
1323
+ this value will contain the interface identifier of
1324
+ the unnumbered interface for this hop. This object
1325
+ should be used in conjunction with
1326
+ mplsTunnelHopIpAddress which would contain the LSR
1327
+ Router ID in this case. Otherwise the agent should
1328
+ set this object to zero-length string and the
1329
+ manager should ignore this.""",
1330
+ }, # column
1331
+ "mplsTunnelHopLspId" : {
1332
+ "nodetype" : "column",
1333
+ "moduleName" : "MPLS-TE-STD-MIB",
1334
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.9",
1335
+ "status" : "current",
1336
+ "syntax" : {
1337
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLSPID"},
1338
+ },
1339
+ "access" : "readwrite",
1340
+ "description" :
1341
+ """If mplsTunnelHopAddrType is set to lspid(5), then
1342
+ this value will contain the LSPID of a tunnel of
1343
+ this hop. The present tunnel being configured is
1344
+ tunneled through this hop (using label stacking).
1345
+ This object is otherwise insignificant and should
1346
+
1347
+
1348
+
1349
+ contain a value of 0 to indicate this fact.""",
1350
+ }, # column
1351
+ "mplsTunnelHopType" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "MPLS-TE-STD-MIB",
1354
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.10",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : {
1358
+ "basetype" : "Enumeration",
1359
+ "strict" : {
1360
+ "nodetype" : "namednumber",
1361
+ "number" : "1"
1362
+ },
1363
+ "loose" : {
1364
+ "nodetype" : "namednumber",
1365
+ "number" : "2"
1366
+ },
1367
+ },
1368
+ },
1369
+ "access" : "readwrite",
1370
+ "description" :
1371
+ """Denotes whether this tunnel hop is routed in a
1372
+ strict or loose fashion. The value of this object
1373
+ has no meaning if the mplsTunnelHopInclude object
1374
+ is set to 'false'.""",
1375
+ }, # column
1376
+ "mplsTunnelHopInclude" : {
1377
+ "nodetype" : "column",
1378
+ "moduleName" : "MPLS-TE-STD-MIB",
1379
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.11",
1380
+ "status" : "current",
1381
+ "syntax" : {
1382
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1383
+ },
1384
+ "access" : "readwrite",
1385
+ "default" : "true",
1386
+ "description" :
1387
+ """If this value is set to true, then this indicates
1388
+ that this hop must be included in the tunnel's
1389
+ path. If this value is set to 'false', then this hop
1390
+ must be avoided when calculating the path for this
1391
+ tunnel. The default value of this object is 'true',
1392
+ so that by default all indicated hops are included
1393
+ in the CSPF path computation. If this object is set
1394
+ to 'false' the value of mplsTunnelHopType should be
1395
+ ignored.""",
1396
+ }, # column
1397
+ "mplsTunnelHopPathOptionName" : {
1398
+ "nodetype" : "column",
1399
+ "moduleName" : "MPLS-TE-STD-MIB",
1400
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.12",
1401
+ "status" : "current",
1402
+ "syntax" : {
1403
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1404
+ },
1405
+ "access" : "readwrite",
1406
+ "description" :
1407
+ """The description of this series of hops as they
1408
+ relate to the specified path option. The
1409
+ value of this object SHOULD be the same for
1410
+ each hop in the series that comprises a
1411
+ path option.""",
1412
+ }, # column
1413
+ "mplsTunnelHopEntryPathComp" : {
1414
+ "nodetype" : "column",
1415
+ "moduleName" : "MPLS-TE-STD-MIB",
1416
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.13",
1417
+ "status" : "current",
1418
+ "syntax" : {
1419
+ "type" : {
1420
+ "basetype" : "Enumeration",
1421
+ "dynamic" : {
1422
+ "nodetype" : "namednumber",
1423
+ "number" : "1"
1424
+ },
1425
+ "explicit" : {
1426
+ "nodetype" : "namednumber",
1427
+ "number" : "2"
1428
+ },
1429
+ },
1430
+ },
1431
+ "access" : "readwrite",
1432
+ "description" :
1433
+ """If this value is set to dynamic, then the user
1434
+ should only specify the source and destination of
1435
+ the path and expect that the CSPF will calculate
1436
+ the remainder of the path. If this value is set to
1437
+ explicit, the user should specify the entire path
1438
+ for the tunnel to take. This path may contain
1439
+ strict or loose hops. Each hop along a specific
1440
+ path SHOULD have this object set to the same value""",
1441
+ }, # column
1442
+ "mplsTunnelHopRowStatus" : {
1443
+ "nodetype" : "column",
1444
+ "moduleName" : "MPLS-TE-STD-MIB",
1445
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.14",
1446
+ "status" : "current",
1447
+ "syntax" : {
1448
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1449
+ },
1450
+ "access" : "readwrite",
1451
+ "description" :
1452
+ """This variable is used to create, modify, and/or
1453
+ delete a row in this table. When a row in this
1454
+ table is in active(1) state, no objects in that row
1455
+ can be modified by the agent except
1456
+ mplsTunnelHopRowStatus and
1457
+ mplsTunnelHopStorageType.""",
1458
+ }, # column
1459
+ "mplsTunnelHopStorageType" : {
1460
+ "nodetype" : "column",
1461
+ "moduleName" : "MPLS-TE-STD-MIB",
1462
+ "oid" : "1.3.6.1.2.1.10.166.3.2.4.1.15",
1463
+ "status" : "current",
1464
+ "syntax" : {
1465
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1466
+ },
1467
+ "access" : "readwrite",
1468
+ "default" : "volatile",
1469
+ "description" :
1470
+ """The storage type for this Hop entry. Conceptual
1471
+ rows having the value 'permanent' need not
1472
+ allow write-access to any columnar objects
1473
+ in the row.""",
1474
+ }, # column
1475
+ "mplsTunnelResourceIndexNext" : {
1476
+ "nodetype" : "scalar",
1477
+ "moduleName" : "MPLS-TE-STD-MIB",
1478
+ "oid" : "1.3.6.1.2.1.10.166.3.2.5",
1479
+ "status" : "current",
1480
+ "syntax" : {
1481
+ "type" : {
1482
+ "basetype" : "Unsigned32",
1483
+ "ranges" : [
1484
+ {
1485
+ "min" : "0",
1486
+ "max" : "2147483647"
1487
+ },
1488
+ ],
1489
+ "range" : {
1490
+ "min" : "0",
1491
+ "max" : "2147483647"
1492
+ },
1493
+ },
1494
+ },
1495
+ "access" : "readonly",
1496
+ "description" :
1497
+ """This object contains the next appropriate value to
1498
+ be used for mplsTunnelResourceIndex when creating
1499
+ entries in the mplsTunnelResourceTable. If the
1500
+ number of unassigned entries is exhausted, a
1501
+ retrieval operation will return a value of 0. This
1502
+ object may also return a value of 0 when the LSR is
1503
+ unable to accept conceptual row creation, for
1504
+ example, if the mplsTunnelTable is implemented as
1505
+ read-only. To obtain the mplsTunnelResourceIndex
1506
+ value for a new entry, the manager must first issue
1507
+ a management protocol retrieval operation to obtain
1508
+ the current value of this object.
1509
+
1510
+ When the SET is performed to create a row in the
1511
+ mplsTunnelResourceTable, the Command Responder
1512
+ (agent) must determine whether the value is indeed
1513
+ still unused; Two Network Management Applications
1514
+ may attempt to create a row (configuration entry)
1515
+ simultaneously and use the same value. If it is
1516
+ currently unused, the SET succeeds and the Command
1517
+ Responder (agent) changes the value of this object,
1518
+ according to an implementation-specific algorithm.
1519
+ If the value is in use, however, the SET fails. The
1520
+ Network Management Application must then re-read
1521
+ this variable to obtain a new usable value.""",
1522
+ }, # scalar
1523
+ "mplsTunnelResourceTable" : {
1524
+ "nodetype" : "table",
1525
+ "moduleName" : "MPLS-TE-STD-MIB",
1526
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6",
1527
+ "status" : "current",
1528
+ "description" :
1529
+ """The mplsTunnelResourceTable allows a manager to
1530
+ specify which resources are desired for an MPLS
1531
+ tunnel. This table also allows several tunnels to
1532
+ point to a single entry in this table, implying
1533
+ that these tunnels should share resources.""",
1534
+ }, # table
1535
+ "mplsTunnelResourceEntry" : {
1536
+ "nodetype" : "row",
1537
+ "moduleName" : "MPLS-TE-STD-MIB",
1538
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1",
1539
+ "create" : "true",
1540
+ "status" : "current",
1541
+ "linkage" : [
1542
+ "mplsTunnelResourceIndex",
1543
+ ],
1544
+ "description" :
1545
+ """An entry in this table represents a set of resources
1546
+ for an MPLS tunnel. An entry can be created by a
1547
+
1548
+
1549
+
1550
+ network administrator or by an SNMP agent as
1551
+ instructed by any MPLS signalling protocol.
1552
+ An entry in this table referenced by a tunnel instance
1553
+ with zero mplsTunnelInstance value indicates a
1554
+ configured set of resource parameter. An entry
1555
+ referenced by a tunnel instance with a non-zero
1556
+ mplsTunnelInstance reflects the in-use resource
1557
+ parameters for the tunnel instance which may have
1558
+ been negotiated or modified by the MPLS signaling
1559
+ protocols.""",
1560
+ }, # row
1561
+ "mplsTunnelResourceIndex" : {
1562
+ "nodetype" : "column",
1563
+ "moduleName" : "MPLS-TE-STD-MIB",
1564
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.1",
1565
+ "status" : "current",
1566
+ "syntax" : {
1567
+ "type" : {
1568
+ "basetype" : "Unsigned32",
1569
+ "ranges" : [
1570
+ {
1571
+ "min" : "1",
1572
+ "max" : "2147483647"
1573
+ },
1574
+ ],
1575
+ "range" : {
1576
+ "min" : "1",
1577
+ "max" : "2147483647"
1578
+ },
1579
+ },
1580
+ },
1581
+ "access" : "noaccess",
1582
+ "description" :
1583
+ """Uniquely identifies this row.""",
1584
+ }, # column
1585
+ "mplsTunnelResourceMaxRate" : {
1586
+ "nodetype" : "column",
1587
+ "moduleName" : "MPLS-TE-STD-MIB",
1588
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.2",
1589
+ "status" : "current",
1590
+ "syntax" : {
1591
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBitRate"},
1592
+ },
1593
+ "access" : "readwrite",
1594
+ "units" : "kilobits per second",
1595
+ "description" :
1596
+ """The maximum rate in bits/second. Note that setting
1597
+ mplsTunnelResourceMaxRate,
1598
+ mplsTunnelResourceMeanRate, and
1599
+ mplsTunnelResourceMaxBurstSize to 0 indicates best-
1600
+ effort treatment.""",
1601
+ }, # column
1602
+ "mplsTunnelResourceMeanRate" : {
1603
+ "nodetype" : "column",
1604
+ "moduleName" : "MPLS-TE-STD-MIB",
1605
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.3",
1606
+ "status" : "current",
1607
+ "syntax" : {
1608
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBitRate"},
1609
+ },
1610
+ "access" : "readwrite",
1611
+ "units" : "kilobits per second",
1612
+ "description" :
1613
+ """This object is copied into an instance of
1614
+ mplsTrafficParamMeanRate in the
1615
+ mplsTrafficParamTable. The OID of this table entry
1616
+ is then copied into the corresponding
1617
+ mplsInSegmentTrafficParamPtr.""",
1618
+ }, # column
1619
+ "mplsTunnelResourceMaxBurstSize" : {
1620
+ "nodetype" : "column",
1621
+ "moduleName" : "MPLS-TE-STD-MIB",
1622
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.4",
1623
+ "status" : "current",
1624
+ "syntax" : {
1625
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBurstSize"},
1626
+ },
1627
+ "access" : "readwrite",
1628
+ "units" : "bytes",
1629
+ "description" :
1630
+ """The maximum burst size in bytes.""",
1631
+ }, # column
1632
+ "mplsTunnelResourceMeanBurstSize" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "MPLS-TE-STD-MIB",
1635
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.5",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBurstSize"},
1639
+ },
1640
+ "access" : "readwrite",
1641
+ "units" : "bytes",
1642
+ "description" :
1643
+ """The mean burst size in bytes. The implementations
1644
+ which do not implement this variable must return
1645
+ a noSuchObject exception for this object and must
1646
+ not allow a user to set this object.""",
1647
+ }, # column
1648
+ "mplsTunnelResourceExBurstSize" : {
1649
+ "nodetype" : "column",
1650
+ "moduleName" : "MPLS-TE-STD-MIB",
1651
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.6",
1652
+ "status" : "current",
1653
+ "syntax" : {
1654
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBurstSize"},
1655
+ },
1656
+ "access" : "readwrite",
1657
+ "units" : "bytes",
1658
+ "description" :
1659
+ """The Excess burst size in bytes. The implementations
1660
+ which do not implement this variable must return
1661
+ noSuchObject exception for this object and must
1662
+ not allow a user to set this value.""",
1663
+ "reference" :
1664
+ """CR-LDP Specification, Section 4.3.""",
1665
+ }, # column
1666
+ "mplsTunnelResourceFrequency" : {
1667
+ "nodetype" : "column",
1668
+ "moduleName" : "MPLS-TE-STD-MIB",
1669
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.7",
1670
+ "status" : "current",
1671
+ "syntax" : {
1672
+ "type" : {
1673
+ "basetype" : "Enumeration",
1674
+ "unspecified" : {
1675
+ "nodetype" : "namednumber",
1676
+ "number" : "1"
1677
+ },
1678
+ "frequent" : {
1679
+ "nodetype" : "namednumber",
1680
+ "number" : "2"
1681
+ },
1682
+ "veryFrequent" : {
1683
+ "nodetype" : "namednumber",
1684
+ "number" : "3"
1685
+ },
1686
+ },
1687
+ },
1688
+ "access" : "readwrite",
1689
+ "description" :
1690
+ """The granularity of the availability of committed
1691
+ rate. The implementations which do not implement
1692
+ this variable must return unspecified(1) for this
1693
+ value and must not allow a user to set this value.""",
1694
+ "reference" :
1695
+ """CR-LDP Specification, Section 4.3.""",
1696
+ }, # column
1697
+ "mplsTunnelResourceWeight" : {
1698
+ "nodetype" : "column",
1699
+ "moduleName" : "MPLS-TE-STD-MIB",
1700
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.8",
1701
+ "status" : "current",
1702
+ "syntax" : {
1703
+ "type" : {
1704
+ "basetype" : "Unsigned32",
1705
+ "ranges" : [
1706
+ {
1707
+ "min" : "0",
1708
+ "max" : "255"
1709
+ },
1710
+ ],
1711
+ "range" : {
1712
+ "min" : "0",
1713
+ "max" : "255"
1714
+ },
1715
+ },
1716
+ },
1717
+ "access" : "readwrite",
1718
+ "description" :
1719
+ """The relative weight for using excess bandwidth above
1720
+ its committed rate. The value of 0 means that
1721
+ weight is not applicable for the CR-LSP.""",
1722
+ "reference" :
1723
+ """CR-LDP Specification, Section 4.3.""",
1724
+ }, # column
1725
+ "mplsTunnelResourceRowStatus" : {
1726
+ "nodetype" : "column",
1727
+ "moduleName" : "MPLS-TE-STD-MIB",
1728
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.9",
1729
+ "status" : "current",
1730
+ "syntax" : {
1731
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1732
+ },
1733
+ "access" : "readwrite",
1734
+ "description" :
1735
+ """This variable is used to create, modify, and/or
1736
+ delete a row in this table. When a row in this
1737
+ table is in active(1) state, no objects in that row
1738
+ can be modified by the agent except
1739
+ mplsTunnelResourceRowStatus and
1740
+ mplsTunnelResourceStorageType.""",
1741
+ }, # column
1742
+ "mplsTunnelResourceStorageType" : {
1743
+ "nodetype" : "column",
1744
+ "moduleName" : "MPLS-TE-STD-MIB",
1745
+ "oid" : "1.3.6.1.2.1.10.166.3.2.6.1.10",
1746
+ "status" : "current",
1747
+ "syntax" : {
1748
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1749
+ },
1750
+ "access" : "readwrite",
1751
+ "default" : "volatile",
1752
+ "description" :
1753
+ """The storage type for this Hop entry. Conceptual
1754
+ rows having the value 'permanent' need not
1755
+ allow write-access to any columnar objects
1756
+
1757
+
1758
+
1759
+ in the row.""",
1760
+ }, # column
1761
+ "mplsTunnelARHopTable" : {
1762
+ "nodetype" : "table",
1763
+ "moduleName" : "MPLS-TE-STD-MIB",
1764
+ "oid" : "1.3.6.1.2.1.10.166.3.2.7",
1765
+ "status" : "current",
1766
+ "description" :
1767
+ """The mplsTunnelARHopTable is used to indicate the
1768
+ hops for an MPLS tunnel defined in mplsTunnelTable,
1769
+ as reported by the MPLS signalling protocol. Thus at
1770
+ a transit LSR, this table (if the table is supported
1771
+ and if the signaling protocol is recording actual
1772
+ route information) contains the actual route of the
1773
+ whole tunnel. If the signaling protocol is not
1774
+ recording the actual route, this table MAY report
1775
+ the information from the mplsTunnelHopTable or the
1776
+ mplsTunnelCHopTable.
1777
+
1778
+ Each row in this table is indexed by
1779
+ mplsTunnelARHopListIndex. Each row also has a
1780
+ secondary index mplsTunnelARHopIndex, corresponding
1781
+ to the next hop that this row corresponds to.
1782
+
1783
+ Please note that since the information necessary to
1784
+ build entries within this table is not provided by
1785
+ some MPLS signalling protocols, implementation of
1786
+ this table is optional. Furthermore, since the
1787
+ information in this table is actually provided by
1788
+ the MPLS signalling protocol after the path has
1789
+ been set-up, the entries in this table are provided
1790
+ only for observation, and hence, all variables in
1791
+ this table are accessible exclusively as read-
1792
+ only.
1793
+
1794
+ Note also that the contents of this table may change
1795
+ while it is being read because of re-routing
1796
+ activities. A network administrator may verify that
1797
+ the actual route read is consistent by reference to
1798
+ the mplsTunnelLastPathChange object.""",
1799
+ }, # table
1800
+ "mplsTunnelARHopEntry" : {
1801
+ "nodetype" : "row",
1802
+ "moduleName" : "MPLS-TE-STD-MIB",
1803
+ "oid" : "1.3.6.1.2.1.10.166.3.2.7.1",
1804
+ "status" : "current",
1805
+ "linkage" : [
1806
+ "mplsTunnelARHopListIndex",
1807
+ "mplsTunnelARHopIndex",
1808
+ ],
1809
+ "description" :
1810
+ """An entry in this table represents a tunnel hop. An
1811
+ entry is created by the agent for signaled ERLSP
1812
+ set up by an MPLS signalling protocol.""",
1813
+ }, # row
1814
+ "mplsTunnelARHopListIndex" : {
1815
+ "nodetype" : "column",
1816
+ "moduleName" : "MPLS-TE-STD-MIB",
1817
+ "oid" : "1.3.6.1.2.1.10.166.3.2.7.1.1",
1818
+ "status" : "current",
1819
+ "syntax" : {
1820
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndex"},
1821
+ },
1822
+ "access" : "noaccess",
1823
+ "description" :
1824
+ """Primary index into this table identifying a
1825
+ particular recorded hop list.""",
1826
+ }, # column
1827
+ "mplsTunnelARHopIndex" : {
1828
+ "nodetype" : "column",
1829
+ "moduleName" : "MPLS-TE-STD-MIB",
1830
+ "oid" : "1.3.6.1.2.1.10.166.3.2.7.1.2",
1831
+ "status" : "current",
1832
+ "syntax" : {
1833
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndex"},
1834
+ },
1835
+ "access" : "noaccess",
1836
+ "description" :
1837
+ """Secondary index into this table identifying the
1838
+ particular hop.""",
1839
+ }, # column
1840
+ "mplsTunnelARHopAddrType" : {
1841
+ "nodetype" : "column",
1842
+ "moduleName" : "MPLS-TE-STD-MIB",
1843
+ "oid" : "1.3.6.1.2.1.10.166.3.2.7.1.3",
1844
+ "status" : "current",
1845
+ "syntax" : {
1846
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressType"},
1847
+ },
1848
+ "access" : "readonly",
1849
+ "default" : "ipv4",
1850
+ "description" :
1851
+ """The Hop Address Type of this tunnel hop.
1852
+
1853
+ Note that lspid(5) is a valid option only
1854
+ for tunnels signaled via CRLDP.""",
1855
+ }, # column
1856
+ "mplsTunnelARHopIpAddr" : {
1857
+ "nodetype" : "column",
1858
+ "moduleName" : "MPLS-TE-STD-MIB",
1859
+ "oid" : "1.3.6.1.2.1.10.166.3.2.7.1.4",
1860
+ "status" : "current",
1861
+ "syntax" : {
1862
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddress"},
1863
+ },
1864
+ "access" : "readonly",
1865
+ "default" : "0x00000000",
1866
+ "description" :
1867
+ """The Tunnel Hop Address for this tunnel hop.
1868
+
1869
+ The type of this address is determined by the
1870
+ value of the corresponding mplsTunnelARHopAddrType.
1871
+ If mplsTunnelARHopAddrType is set to unnum(4),
1872
+ then this value contains the LSR Router ID of the
1873
+ unnumbered interface. Otherwise the agent SHOULD
1874
+ set this object to the zero-length string and the
1875
+ manager should ignore this object.""",
1876
+ }, # column
1877
+ "mplsTunnelARHopAddrUnnum" : {
1878
+ "nodetype" : "column",
1879
+ "moduleName" : "MPLS-TE-STD-MIB",
1880
+ "oid" : "1.3.6.1.2.1.10.166.3.2.7.1.5",
1881
+ "status" : "current",
1882
+ "syntax" : {
1883
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressUnnum"},
1884
+ },
1885
+ "access" : "readonly",
1886
+ "description" :
1887
+ """If mplsTunnelARHopAddrType is set to unnum(4), then
1888
+ this value will contain the interface identifier of
1889
+ the unnumbered interface for this hop. This object
1890
+ should be used in conjunction with
1891
+ mplsTunnelARHopIpAddr which would contain the LSR
1892
+ Router ID in this case. Otherwise the agent should
1893
+ set this object to zero-length string and the
1894
+ manager should ignore this.""",
1895
+ }, # column
1896
+ "mplsTunnelARHopLspId" : {
1897
+ "nodetype" : "column",
1898
+ "moduleName" : "MPLS-TE-STD-MIB",
1899
+ "oid" : "1.3.6.1.2.1.10.166.3.2.7.1.6",
1900
+ "status" : "current",
1901
+ "syntax" : {
1902
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLSPID"},
1903
+ },
1904
+ "access" : "readonly",
1905
+ "description" :
1906
+ """If mplsTunnelARHopAddrType is set to lspid(5), then
1907
+ this value will contain the LSP ID of this hop.
1908
+ This object is otherwise insignificant and should
1909
+ contain a value of 0 to indicate this fact.""",
1910
+ }, # column
1911
+ "mplsTunnelCHopTable" : {
1912
+ "nodetype" : "table",
1913
+ "moduleName" : "MPLS-TE-STD-MIB",
1914
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8",
1915
+ "status" : "current",
1916
+ "description" :
1917
+ """The mplsTunnelCHopTable is used to indicate the
1918
+ hops, strict or loose, for an MPLS tunnel defined
1919
+ in mplsTunnelTable, as computed by a constraint-
1920
+ based routing protocol, based on the
1921
+ mplsTunnelHopTable for the outgoing direction of
1922
+ the tunnel. Thus at a transit LSR, this table (if
1923
+ the table is supported) MAY contain the path
1924
+ computed by the CSPF engine on (or on behalf of)
1925
+ this LSR. Each row in this table is indexed by
1926
+ mplsTunnelCHopListIndex. Each row also has a
1927
+ secondary index mplsTunnelCHopIndex, corresponding
1928
+ to the next hop that this row corresponds to. In
1929
+ case we want to specify a particular interface on
1930
+ the originating LSR of an outgoing tunnel by which
1931
+ we want packets to exit the LSR, we specify this as
1932
+ the first hop for this tunnel in
1933
+ mplsTunnelCHopTable.
1934
+
1935
+ Please note that since the information necessary to
1936
+ build entries within this table may not be
1937
+ supported by some LSRs, implementation of this
1938
+ table is optional. Furthermore, since the
1939
+ information in this table describes the path
1940
+ computed by the CSPF engine the entries in this
1941
+ table are read-only.""",
1942
+ }, # table
1943
+ "mplsTunnelCHopEntry" : {
1944
+ "nodetype" : "row",
1945
+ "moduleName" : "MPLS-TE-STD-MIB",
1946
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1",
1947
+ "status" : "current",
1948
+ "linkage" : [
1949
+ "mplsTunnelCHopListIndex",
1950
+ "mplsTunnelCHopIndex",
1951
+ ],
1952
+ "description" :
1953
+ """An entry in this table represents a tunnel hop. An
1954
+ entry in this table is created by a path
1955
+ computation engine using CSPF techniques applied to
1956
+ the information collected by routing protocols and
1957
+ the hops specified in the corresponding
1958
+ mplsTunnelHopTable.""",
1959
+ }, # row
1960
+ "mplsTunnelCHopListIndex" : {
1961
+ "nodetype" : "column",
1962
+ "moduleName" : "MPLS-TE-STD-MIB",
1963
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.1",
1964
+ "status" : "current",
1965
+ "syntax" : {
1966
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndex"},
1967
+ },
1968
+ "access" : "noaccess",
1969
+ "description" :
1970
+ """Primary index into this table identifying a
1971
+ particular computed hop list.""",
1972
+ }, # column
1973
+ "mplsTunnelCHopIndex" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "MPLS-TE-STD-MIB",
1976
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.2",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsPathIndex"},
1980
+ },
1981
+ "access" : "noaccess",
1982
+ "description" :
1983
+ """Secondary index into this table identifying the
1984
+ particular hop.""",
1985
+ }, # column
1986
+ "mplsTunnelCHopAddrType" : {
1987
+ "nodetype" : "column",
1988
+ "moduleName" : "MPLS-TE-STD-MIB",
1989
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.3",
1990
+ "status" : "current",
1991
+ "syntax" : {
1992
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressType"},
1993
+ },
1994
+ "access" : "readonly",
1995
+ "default" : "ipv4",
1996
+ "description" :
1997
+ """The Hop Address Type of this tunnel hop.
1998
+
1999
+ Note that lspid(5) is a valid option only
2000
+ for tunnels signaled via CRLDP.""",
2001
+ }, # column
2002
+ "mplsTunnelCHopIpAddr" : {
2003
+ "nodetype" : "column",
2004
+ "moduleName" : "MPLS-TE-STD-MIB",
2005
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.4",
2006
+ "status" : "current",
2007
+ "syntax" : {
2008
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddress"},
2009
+ },
2010
+ "access" : "readonly",
2011
+ "default" : "0x00000000",
2012
+ "description" :
2013
+ """The Tunnel Hop Address for this tunnel hop.
2014
+
2015
+
2016
+
2017
+
2018
+ The type of this address is determined by the
2019
+ value of the corresponding mplsTunnelCHopAddrType.
2020
+
2021
+ If mplsTunnelCHopAddrType is set to unnum(4), then
2022
+ this value will contain the LSR Router ID of the
2023
+ unnumbered interface. Otherwise the agent should
2024
+ set this object to the zero-length string and the
2025
+ manager SHOULD ignore this object.""",
2026
+ }, # column
2027
+ "mplsTunnelCHopIpPrefixLen" : {
2028
+ "nodetype" : "column",
2029
+ "moduleName" : "MPLS-TE-STD-MIB",
2030
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.5",
2031
+ "status" : "current",
2032
+ "syntax" : {
2033
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
2034
+ },
2035
+ "access" : "readonly",
2036
+ "default" : "32",
2037
+ "description" :
2038
+ """If mplsTunnelCHopAddrType is set to ipv4(1) or
2039
+ ipv6(2), then this value will contain an
2040
+ appropriate prefix length for the IP address in
2041
+ object mplsTunnelCHopIpAddr. Otherwise this value
2042
+ is irrelevant and should be ignored.""",
2043
+ }, # column
2044
+ "mplsTunnelCHopAsNumber" : {
2045
+ "nodetype" : "column",
2046
+ "moduleName" : "MPLS-TE-STD-MIB",
2047
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.6",
2048
+ "status" : "current",
2049
+ "syntax" : {
2050
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressAS"},
2051
+ },
2052
+ "access" : "readonly",
2053
+ "description" :
2054
+ """If mplsTunnelCHopAddrType is set to asnumber(3),
2055
+ then this value will contain the AS number of this
2056
+ hop. Otherwise the agent should set this object to
2057
+ zero-length string and the manager should ignore
2058
+ this.""",
2059
+ }, # column
2060
+ "mplsTunnelCHopAddrUnnum" : {
2061
+ "nodetype" : "column",
2062
+ "moduleName" : "MPLS-TE-STD-MIB",
2063
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.7",
2064
+ "status" : "current",
2065
+ "syntax" : {
2066
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressUnnum"},
2067
+ },
2068
+ "access" : "readonly",
2069
+ "description" :
2070
+ """If mplsTunnelCHopAddrType is set to unnum(4), then
2071
+ this value will contain the unnumbered interface
2072
+ identifier of this hop. This object should be used
2073
+ in conjunction with mplsTunnelCHopIpAddr which
2074
+ would contain the LSR Router ID in this case.
2075
+
2076
+
2077
+
2078
+ Otherwise the agent should set this object to zero-
2079
+ length string and the manager should ignore this.""",
2080
+ }, # column
2081
+ "mplsTunnelCHopLspId" : {
2082
+ "nodetype" : "column",
2083
+ "moduleName" : "MPLS-TE-STD-MIB",
2084
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.8",
2085
+ "status" : "current",
2086
+ "syntax" : {
2087
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLSPID"},
2088
+ },
2089
+ "access" : "readonly",
2090
+ "description" :
2091
+ """If mplsTunnelCHopAddrType is set to lspid(5), then
2092
+ this value will contain the LSP ID of this hop.
2093
+ This object is otherwise insignificant and should
2094
+ contain a value of 0 to indicate this fact.""",
2095
+ }, # column
2096
+ "mplsTunnelCHopType" : {
2097
+ "nodetype" : "column",
2098
+ "moduleName" : "MPLS-TE-STD-MIB",
2099
+ "oid" : "1.3.6.1.2.1.10.166.3.2.8.1.9",
2100
+ "status" : "current",
2101
+ "syntax" : {
2102
+ "type" : {
2103
+ "basetype" : "Enumeration",
2104
+ "strict" : {
2105
+ "nodetype" : "namednumber",
2106
+ "number" : "1"
2107
+ },
2108
+ "loose" : {
2109
+ "nodetype" : "namednumber",
2110
+ "number" : "2"
2111
+ },
2112
+ },
2113
+ },
2114
+ "access" : "readonly",
2115
+ "description" :
2116
+ """Denotes whether this is tunnel hop is routed in a
2117
+ strict or loose fashion.""",
2118
+ }, # column
2119
+ "mplsTunnelPerfTable" : {
2120
+ "nodetype" : "table",
2121
+ "moduleName" : "MPLS-TE-STD-MIB",
2122
+ "oid" : "1.3.6.1.2.1.10.166.3.2.9",
2123
+ "status" : "current",
2124
+ "description" :
2125
+ """This table provides per-tunnel instance MPLS
2126
+ performance information.""",
2127
+ }, # table
2128
+ "mplsTunnelPerfEntry" : {
2129
+ "nodetype" : "row",
2130
+ "moduleName" : "MPLS-TE-STD-MIB",
2131
+ "oid" : "1.3.6.1.2.1.10.166.3.2.9.1",
2132
+ "status" : "current",
2133
+ "linkage" : [
2134
+ { "MPLS-TE-STD-MIB" : {
2135
+ "indexkind" : "augments",
2136
+ "relatedNode" : "mplsTunnelEntry",
2137
+ }},
2138
+ ],
2139
+ "description" :
2140
+ """An entry in this table is created by the LSR for
2141
+ every tunnel. Its is an extension to
2142
+ mplsTunnelEntry.""",
2143
+ }, # row
2144
+ "mplsTunnelPerfPackets" : {
2145
+ "nodetype" : "column",
2146
+ "moduleName" : "MPLS-TE-STD-MIB",
2147
+ "oid" : "1.3.6.1.2.1.10.166.3.2.9.1.1",
2148
+ "status" : "current",
2149
+ "syntax" : {
2150
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2151
+ },
2152
+ "access" : "readonly",
2153
+ "description" :
2154
+ """Number of packets forwarded by the tunnel.
2155
+ This object should represents the 32-bit
2156
+ value of the least significant part of the
2157
+ 64-bit value if both mplsTunnelPerfHCPackets
2158
+ is returned.""",
2159
+ }, # column
2160
+ "mplsTunnelPerfHCPackets" : {
2161
+ "nodetype" : "column",
2162
+ "moduleName" : "MPLS-TE-STD-MIB",
2163
+ "oid" : "1.3.6.1.2.1.10.166.3.2.9.1.2",
2164
+ "status" : "current",
2165
+ "syntax" : {
2166
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2167
+ },
2168
+ "access" : "readonly",
2169
+ "description" :
2170
+ """High capacity counter for number of packets
2171
+ forwarded by the tunnel. """,
2172
+ }, # column
2173
+ "mplsTunnelPerfErrors" : {
2174
+ "nodetype" : "column",
2175
+ "moduleName" : "MPLS-TE-STD-MIB",
2176
+ "oid" : "1.3.6.1.2.1.10.166.3.2.9.1.3",
2177
+ "status" : "current",
2178
+ "syntax" : {
2179
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2180
+ },
2181
+ "access" : "readonly",
2182
+ "description" :
2183
+ """Number of packets dropped because of errors or for
2184
+ other reasons.""",
2185
+ }, # column
2186
+ "mplsTunnelPerfBytes" : {
2187
+ "nodetype" : "column",
2188
+ "moduleName" : "MPLS-TE-STD-MIB",
2189
+ "oid" : "1.3.6.1.2.1.10.166.3.2.9.1.4",
2190
+ "status" : "current",
2191
+ "syntax" : {
2192
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2193
+ },
2194
+ "access" : "readonly",
2195
+ "description" :
2196
+ """Number of bytes forwarded by the tunnel.
2197
+ This object should represents the 32-bit
2198
+
2199
+
2200
+
2201
+ value of the least significant part of the
2202
+ 64-bit value if both mplsTunnelPerfHCBytes
2203
+ is returned.""",
2204
+ }, # column
2205
+ "mplsTunnelPerfHCBytes" : {
2206
+ "nodetype" : "column",
2207
+ "moduleName" : "MPLS-TE-STD-MIB",
2208
+ "oid" : "1.3.6.1.2.1.10.166.3.2.9.1.5",
2209
+ "status" : "current",
2210
+ "syntax" : {
2211
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2212
+ },
2213
+ "access" : "readonly",
2214
+ "description" :
2215
+ """High capacity counter for number of bytes forwarded
2216
+ by the tunnel.""",
2217
+ }, # column
2218
+ "mplsTunnelCRLDPResTable" : {
2219
+ "nodetype" : "table",
2220
+ "moduleName" : "MPLS-TE-STD-MIB",
2221
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10",
2222
+ "status" : "current",
2223
+ "description" :
2224
+ """The mplsTunnelCRLDPResTable allows a manager to
2225
+ specify which CR-LDP-specific resources are desired
2226
+ for an MPLS tunnel if that tunnel is signaled using
2227
+ CR-LDP. Note that these attributes are in addition
2228
+ to those specified in mplsTunnelResourceTable. This
2229
+ table also allows several tunnels to point to a
2230
+ single entry in this table, implying that these
2231
+ tunnels should share resources.""",
2232
+ }, # table
2233
+ "mplsTunnelCRLDPResEntry" : {
2234
+ "nodetype" : "row",
2235
+ "moduleName" : "MPLS-TE-STD-MIB",
2236
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10.1",
2237
+ "create" : "true",
2238
+ "status" : "current",
2239
+ "linkage" : [
2240
+ "mplsTunnelResourceIndex",
2241
+ ],
2242
+ "description" :
2243
+ """An entry in this table represents a set of resources
2244
+ for an MPLS tunnel established using CRLDP
2245
+ (mplsTunnelSignallingProto equal to crldp (3)). An
2246
+ entry can be created by a network administrator or
2247
+ by an SNMP agent as instructed by any MPLS
2248
+ signalling protocol.""",
2249
+ }, # row
2250
+ "mplsTunnelCRLDPResMeanBurstSize" : {
2251
+ "nodetype" : "column",
2252
+ "moduleName" : "MPLS-TE-STD-MIB",
2253
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10.1.1",
2254
+ "status" : "current",
2255
+ "syntax" : {
2256
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBurstSize"},
2257
+ },
2258
+ "access" : "readwrite",
2259
+ "units" : "bytes",
2260
+ "description" :
2261
+ """The mean burst size in bytes.""",
2262
+ }, # column
2263
+ "mplsTunnelCRLDPResExBurstSize" : {
2264
+ "nodetype" : "column",
2265
+ "moduleName" : "MPLS-TE-STD-MIB",
2266
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10.1.2",
2267
+ "status" : "current",
2268
+ "syntax" : {
2269
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBurstSize"},
2270
+ },
2271
+ "access" : "readwrite",
2272
+ "units" : "bytes",
2273
+ "description" :
2274
+ """The Excess burst size in bytes.""",
2275
+ "reference" :
2276
+ """CR-LDP Specification, Section 4.3.""",
2277
+ }, # column
2278
+ "mplsTunnelCRLDPResFrequency" : {
2279
+ "nodetype" : "column",
2280
+ "moduleName" : "MPLS-TE-STD-MIB",
2281
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10.1.3",
2282
+ "status" : "current",
2283
+ "syntax" : {
2284
+ "type" : {
2285
+ "basetype" : "Enumeration",
2286
+ "unspecified" : {
2287
+ "nodetype" : "namednumber",
2288
+ "number" : "1"
2289
+ },
2290
+ "frequent" : {
2291
+ "nodetype" : "namednumber",
2292
+ "number" : "2"
2293
+ },
2294
+ "veryFrequent" : {
2295
+ "nodetype" : "namednumber",
2296
+ "number" : "3"
2297
+ },
2298
+ },
2299
+ },
2300
+ "access" : "readwrite",
2301
+ "description" :
2302
+ """The granularity of the availability of committed
2303
+ rate.""",
2304
+ "reference" :
2305
+ """CR-LDP Specification, Section 4.3.""",
2306
+ }, # column
2307
+ "mplsTunnelCRLDPResWeight" : {
2308
+ "nodetype" : "column",
2309
+ "moduleName" : "MPLS-TE-STD-MIB",
2310
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10.1.4",
2311
+ "status" : "current",
2312
+ "syntax" : {
2313
+ "type" : {
2314
+ "basetype" : "Unsigned32",
2315
+ "ranges" : [
2316
+ {
2317
+ "min" : "0",
2318
+ "max" : "255"
2319
+ },
2320
+ ],
2321
+ "range" : {
2322
+ "min" : "0",
2323
+ "max" : "255"
2324
+ },
2325
+ },
2326
+ },
2327
+ "access" : "readwrite",
2328
+ "default" : "0",
2329
+ "description" :
2330
+ """The relative weight for using excess bandwidth above
2331
+ its committed rate. The value of 0 means that
2332
+ weight is not applicable for the CR-LSP.""",
2333
+ "reference" :
2334
+ """CR-LDP Specification, Section 4.3.""",
2335
+ }, # column
2336
+ "mplsTunnelCRLDPResFlags" : {
2337
+ "nodetype" : "column",
2338
+ "moduleName" : "MPLS-TE-STD-MIB",
2339
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10.1.5",
2340
+ "status" : "current",
2341
+ "syntax" : {
2342
+ "type" : {
2343
+ "basetype" : "Unsigned32",
2344
+ "ranges" : [
2345
+ {
2346
+ "min" : "0",
2347
+ "max" : "63"
2348
+ },
2349
+ ],
2350
+ "range" : {
2351
+ "min" : "0",
2352
+ "max" : "63"
2353
+ },
2354
+ },
2355
+ },
2356
+ "access" : "readwrite",
2357
+ "default" : "0",
2358
+ "description" :
2359
+ """The value of the 1 byte Flags conveyed as part of
2360
+ the traffic parameters during the establishment of
2361
+ the CRLSP. The bits in this object are to be
2362
+ interpreted as follows.
2363
+
2364
+ +--+--+--+--+--+--+--+--+
2365
+ | Res |F6|F5|F4|F3|F2|F1|
2366
+ +--+--+--+--+--+--+--+--+
2367
+
2368
+ Res - These bits are reserved. Zero on transmission.
2369
+ Ignored on receipt.
2370
+ F1 - Corresponds to the PDR.
2371
+ F2 - Corresponds to the PBS.
2372
+ F3 - Corresponds to the CDR.
2373
+ F4 - Corresponds to the CBS.
2374
+ F5 - Corresponds to the EBS.
2375
+ F6 - Corresponds to the Weight.
2376
+
2377
+ Each flag if is a Negotiable Flag corresponding to a
2378
+ Traffic Parameter. The Negotiable Flag value zero
2379
+ denotes Not Negotiable and value one denotes
2380
+ Negotiable.""",
2381
+ "reference" :
2382
+ """1. Section 4.3, Constraint-Based LSP Setup using
2383
+ LDP, Jamoussi (Editor), RFC 3212, January 2002""",
2384
+ }, # column
2385
+ "mplsTunnelCRLDPResRowStatus" : {
2386
+ "nodetype" : "column",
2387
+ "moduleName" : "MPLS-TE-STD-MIB",
2388
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10.1.6",
2389
+ "status" : "current",
2390
+ "syntax" : {
2391
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2392
+ },
2393
+ "access" : "readwrite",
2394
+ "description" :
2395
+ """This variable is used to create, modify, and/or
2396
+ delete a row in this table. When a row in this
2397
+ table is in active(1) state, no objects in that row
2398
+ can be modified by the agent except
2399
+ mplsTunnelCRLDPResRowStatus and
2400
+ mplsTunnelCRLDPResStorageType.""",
2401
+ }, # column
2402
+ "mplsTunnelCRLDPResStorageType" : {
2403
+ "nodetype" : "column",
2404
+ "moduleName" : "MPLS-TE-STD-MIB",
2405
+ "oid" : "1.3.6.1.2.1.10.166.3.2.10.1.7",
2406
+ "status" : "current",
2407
+ "syntax" : {
2408
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
2409
+ },
2410
+ "access" : "readwrite",
2411
+ "default" : "volatile",
2412
+ "description" :
2413
+ """The storage type for this CR-LDP Resource entry.
2414
+ Conceptual rows having the value 'permanent'
2415
+ need not allow write-access to any columnar
2416
+ objects in the row.""",
2417
+ }, # column
2418
+ "mplsTunnelNotificationEnable" : {
2419
+ "nodetype" : "scalar",
2420
+ "moduleName" : "MPLS-TE-STD-MIB",
2421
+ "oid" : "1.3.6.1.2.1.10.166.3.2.11",
2422
+ "status" : "current",
2423
+ "syntax" : {
2424
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2425
+ },
2426
+ "access" : "readwrite",
2427
+ "default" : "false",
2428
+ "description" :
2429
+ """If this object is true, then it enables the
2430
+ generation of mplsTunnelUp and mplsTunnelDown
2431
+ traps, otherwise these traps are not emitted.""",
2432
+ }, # scalar
2433
+ "mplsTeConformance" : {
2434
+ "nodetype" : "node",
2435
+ "moduleName" : "MPLS-TE-STD-MIB",
2436
+ "oid" : "1.3.6.1.2.1.10.166.3.3",
2437
+ }, # node
2438
+ "mplsTeGroups" : {
2439
+ "nodetype" : "node",
2440
+ "moduleName" : "MPLS-TE-STD-MIB",
2441
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1",
2442
+ }, # node
2443
+ "mplsTeCompliances" : {
2444
+ "nodetype" : "node",
2445
+ "moduleName" : "MPLS-TE-STD-MIB",
2446
+ "oid" : "1.3.6.1.2.1.10.166.3.3.2",
2447
+ }, # node
2448
+ }, # nodes
2449
+
2450
+ "notifications" : {
2451
+ "mplsTunnelUp" : {
2452
+ "nodetype" : "notification",
2453
+ "moduleName" : "MPLS-TE-STD-MIB",
2454
+ "oid" : "1.3.6.1.2.1.10.166.3.0.1",
2455
+ "status" : "current",
2456
+ "objects" : {
2457
+ "mplsTunnelAdminStatus" : {
2458
+ "nodetype" : "object",
2459
+ "module" : "MPLS-TE-STD-MIB"
2460
+ },
2461
+ "mplsTunnelOperStatus" : {
2462
+ "nodetype" : "object",
2463
+ "module" : "MPLS-TE-STD-MIB"
2464
+ },
2465
+ },
2466
+ "description" :
2467
+ """This notification is generated when a
2468
+ mplsTunnelOperStatus object for one of the
2469
+ configured tunnels is about to leave the down state
2470
+ and transition into some other state (but not into
2471
+ the notPresent state). This other state is
2472
+ indicated by the included value of
2473
+ mplsTunnelOperStatus.""",
2474
+ }, # notification
2475
+ "mplsTunnelDown" : {
2476
+ "nodetype" : "notification",
2477
+ "moduleName" : "MPLS-TE-STD-MIB",
2478
+ "oid" : "1.3.6.1.2.1.10.166.3.0.2",
2479
+ "status" : "current",
2480
+ "objects" : {
2481
+ "mplsTunnelAdminStatus" : {
2482
+ "nodetype" : "object",
2483
+ "module" : "MPLS-TE-STD-MIB"
2484
+ },
2485
+ "mplsTunnelOperStatus" : {
2486
+ "nodetype" : "object",
2487
+ "module" : "MPLS-TE-STD-MIB"
2488
+ },
2489
+ },
2490
+ "description" :
2491
+ """This notification is generated when a
2492
+ mplsTunnelOperStatus object for one of the
2493
+ configured tunnels is about to enter the down state
2494
+ from some other state (but not from the notPresent
2495
+ state). This other state is indicated by the
2496
+ included value of mplsTunnelOperStatus.""",
2497
+ }, # notification
2498
+ "mplsTunnelRerouted" : {
2499
+ "nodetype" : "notification",
2500
+ "moduleName" : "MPLS-TE-STD-MIB",
2501
+ "oid" : "1.3.6.1.2.1.10.166.3.0.3",
2502
+ "status" : "current",
2503
+ "objects" : {
2504
+ "mplsTunnelAdminStatus" : {
2505
+ "nodetype" : "object",
2506
+ "module" : "MPLS-TE-STD-MIB"
2507
+ },
2508
+ "mplsTunnelOperStatus" : {
2509
+ "nodetype" : "object",
2510
+ "module" : "MPLS-TE-STD-MIB"
2511
+ },
2512
+ },
2513
+ "description" :
2514
+ """This notification is generated when a tunnel is
2515
+ rerouted. If the mplsTunnelARHopTable is used, then
2516
+ this tunnel instance's entry in the
2517
+ mplsTunnelARHopTable MAY contain the new path for
2518
+ this tunnel some time after this trap is issued by
2519
+ the agent.""",
2520
+ }, # notification
2521
+ "mplsTunnelReoptimized" : {
2522
+ "nodetype" : "notification",
2523
+ "moduleName" : "MPLS-TE-STD-MIB",
2524
+ "oid" : "1.3.6.1.2.1.10.166.3.0.4",
2525
+ "status" : "current",
2526
+ "objects" : {
2527
+ "mplsTunnelAdminStatus" : {
2528
+ "nodetype" : "object",
2529
+ "module" : "MPLS-TE-STD-MIB"
2530
+ },
2531
+ "mplsTunnelOperStatus" : {
2532
+ "nodetype" : "object",
2533
+ "module" : "MPLS-TE-STD-MIB"
2534
+ },
2535
+ },
2536
+ "description" :
2537
+ """This notification is generated when a tunnel is
2538
+ reoptimized. If the mplsTunnelARHopTable is used,
2539
+ then this tunnel instance's entry in the
2540
+ mplsTunnelARHopTable MAY contain the new path for
2541
+ this tunnel some time after this trap is issued by
2542
+ the agent.""",
2543
+ }, # notification
2544
+ }, # notifications
2545
+
2546
+ "groups" : {
2547
+ "mplsTunnelGroup" : {
2548
+ "nodetype" : "group",
2549
+ "moduleName" : "MPLS-TE-STD-MIB",
2550
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1.1",
2551
+ "status" : "current",
2552
+ "members" : {
2553
+ "mplsTunnelIndexNext" : {
2554
+ "nodetype" : "member",
2555
+ "module" : "MPLS-TE-STD-MIB"
2556
+ },
2557
+ "mplsTunnelName" : {
2558
+ "nodetype" : "member",
2559
+ "module" : "MPLS-TE-STD-MIB"
2560
+ },
2561
+ "mplsTunnelDescr" : {
2562
+ "nodetype" : "member",
2563
+ "module" : "MPLS-TE-STD-MIB"
2564
+ },
2565
+ "mplsTunnelOwner" : {
2566
+ "nodetype" : "member",
2567
+ "module" : "MPLS-TE-STD-MIB"
2568
+ },
2569
+ "mplsTunnelXCPointer" : {
2570
+ "nodetype" : "member",
2571
+ "module" : "MPLS-TE-STD-MIB"
2572
+ },
2573
+ "mplsTunnelIfIndex" : {
2574
+ "nodetype" : "member",
2575
+ "module" : "MPLS-TE-STD-MIB"
2576
+ },
2577
+ "mplsTunnelHopTableIndex" : {
2578
+ "nodetype" : "member",
2579
+ "module" : "MPLS-TE-STD-MIB"
2580
+ },
2581
+ "mplsTunnelARHopTableIndex" : {
2582
+ "nodetype" : "member",
2583
+ "module" : "MPLS-TE-STD-MIB"
2584
+ },
2585
+ "mplsTunnelCHopTableIndex" : {
2586
+ "nodetype" : "member",
2587
+ "module" : "MPLS-TE-STD-MIB"
2588
+ },
2589
+ "mplsTunnelAdminStatus" : {
2590
+ "nodetype" : "member",
2591
+ "module" : "MPLS-TE-STD-MIB"
2592
+ },
2593
+ "mplsTunnelOperStatus" : {
2594
+ "nodetype" : "member",
2595
+ "module" : "MPLS-TE-STD-MIB"
2596
+ },
2597
+ "mplsTunnelRowStatus" : {
2598
+ "nodetype" : "member",
2599
+ "module" : "MPLS-TE-STD-MIB"
2600
+ },
2601
+ "mplsTunnelNotificationEnable" : {
2602
+ "nodetype" : "member",
2603
+ "module" : "MPLS-TE-STD-MIB"
2604
+ },
2605
+ "mplsTunnelStorageType" : {
2606
+ "nodetype" : "member",
2607
+ "module" : "MPLS-TE-STD-MIB"
2608
+ },
2609
+ "mplsTunnelConfigured" : {
2610
+ "nodetype" : "member",
2611
+ "module" : "MPLS-TE-STD-MIB"
2612
+ },
2613
+ "mplsTunnelActive" : {
2614
+ "nodetype" : "member",
2615
+ "module" : "MPLS-TE-STD-MIB"
2616
+ },
2617
+ "mplsTunnelPrimaryInstance" : {
2618
+ "nodetype" : "member",
2619
+ "module" : "MPLS-TE-STD-MIB"
2620
+ },
2621
+ "mplsTunnelPrimaryUpTime" : {
2622
+ "nodetype" : "member",
2623
+ "module" : "MPLS-TE-STD-MIB"
2624
+ },
2625
+ "mplsTunnelPathChanges" : {
2626
+ "nodetype" : "member",
2627
+ "module" : "MPLS-TE-STD-MIB"
2628
+ },
2629
+ "mplsTunnelLastPathChange" : {
2630
+ "nodetype" : "member",
2631
+ "module" : "MPLS-TE-STD-MIB"
2632
+ },
2633
+ "mplsTunnelCreationTime" : {
2634
+ "nodetype" : "member",
2635
+ "module" : "MPLS-TE-STD-MIB"
2636
+ },
2637
+ "mplsTunnelStateTransitions" : {
2638
+ "nodetype" : "member",
2639
+ "module" : "MPLS-TE-STD-MIB"
2640
+ },
2641
+ "mplsTunnelIncludeAnyAffinity" : {
2642
+ "nodetype" : "member",
2643
+ "module" : "MPLS-TE-STD-MIB"
2644
+ },
2645
+ "mplsTunnelIncludeAllAffinity" : {
2646
+ "nodetype" : "member",
2647
+ "module" : "MPLS-TE-STD-MIB"
2648
+ },
2649
+ "mplsTunnelExcludeAnyAffinity" : {
2650
+ "nodetype" : "member",
2651
+ "module" : "MPLS-TE-STD-MIB"
2652
+ },
2653
+ "mplsTunnelPerfPackets" : {
2654
+ "nodetype" : "member",
2655
+ "module" : "MPLS-TE-STD-MIB"
2656
+ },
2657
+ "mplsTunnelPerfHCPackets" : {
2658
+ "nodetype" : "member",
2659
+ "module" : "MPLS-TE-STD-MIB"
2660
+ },
2661
+ "mplsTunnelPerfErrors" : {
2662
+ "nodetype" : "member",
2663
+ "module" : "MPLS-TE-STD-MIB"
2664
+ },
2665
+ "mplsTunnelPerfBytes" : {
2666
+ "nodetype" : "member",
2667
+ "module" : "MPLS-TE-STD-MIB"
2668
+ },
2669
+ "mplsTunnelPerfHCBytes" : {
2670
+ "nodetype" : "member",
2671
+ "module" : "MPLS-TE-STD-MIB"
2672
+ },
2673
+ "mplsTunnelResourcePointer" : {
2674
+ "nodetype" : "member",
2675
+ "module" : "MPLS-TE-STD-MIB"
2676
+ },
2677
+ "mplsTunnelInstancePriority" : {
2678
+ "nodetype" : "member",
2679
+ "module" : "MPLS-TE-STD-MIB"
2680
+ },
2681
+ "mplsTunnelPathInUse" : {
2682
+ "nodetype" : "member",
2683
+ "module" : "MPLS-TE-STD-MIB"
2684
+ },
2685
+ "mplsTunnelRole" : {
2686
+ "nodetype" : "member",
2687
+ "module" : "MPLS-TE-STD-MIB"
2688
+ },
2689
+ "mplsTunnelTotalUpTime" : {
2690
+ "nodetype" : "member",
2691
+ "module" : "MPLS-TE-STD-MIB"
2692
+ },
2693
+ "mplsTunnelInstanceUpTime" : {
2694
+ "nodetype" : "member",
2695
+ "module" : "MPLS-TE-STD-MIB"
2696
+ },
2697
+ "mplsTunnelResourceIndexNext" : {
2698
+ "nodetype" : "member",
2699
+ "module" : "MPLS-TE-STD-MIB"
2700
+ },
2701
+ "mplsTunnelResourceMaxRate" : {
2702
+ "nodetype" : "member",
2703
+ "module" : "MPLS-TE-STD-MIB"
2704
+ },
2705
+ "mplsTunnelResourceMeanRate" : {
2706
+ "nodetype" : "member",
2707
+ "module" : "MPLS-TE-STD-MIB"
2708
+ },
2709
+ "mplsTunnelResourceMaxBurstSize" : {
2710
+ "nodetype" : "member",
2711
+ "module" : "MPLS-TE-STD-MIB"
2712
+ },
2713
+ "mplsTunnelResourceMeanBurstSize" : {
2714
+ "nodetype" : "member",
2715
+ "module" : "MPLS-TE-STD-MIB"
2716
+ },
2717
+ "mplsTunnelResourceExBurstSize" : {
2718
+ "nodetype" : "member",
2719
+ "module" : "MPLS-TE-STD-MIB"
2720
+ },
2721
+ "mplsTunnelResourceFrequency" : {
2722
+ "nodetype" : "member",
2723
+ "module" : "MPLS-TE-STD-MIB"
2724
+ },
2725
+ "mplsTunnelResourceWeight" : {
2726
+ "nodetype" : "member",
2727
+ "module" : "MPLS-TE-STD-MIB"
2728
+ },
2729
+ "mplsTunnelResourceRowStatus" : {
2730
+ "nodetype" : "member",
2731
+ "module" : "MPLS-TE-STD-MIB"
2732
+ },
2733
+ "mplsTunnelResourceStorageType" : {
2734
+ "nodetype" : "member",
2735
+ "module" : "MPLS-TE-STD-MIB"
2736
+ },
2737
+ "mplsTunnelARHopAddrType" : {
2738
+ "nodetype" : "member",
2739
+ "module" : "MPLS-TE-STD-MIB"
2740
+ },
2741
+ "mplsTunnelARHopIpAddr" : {
2742
+ "nodetype" : "member",
2743
+ "module" : "MPLS-TE-STD-MIB"
2744
+ },
2745
+ "mplsTunnelARHopAddrUnnum" : {
2746
+ "nodetype" : "member",
2747
+ "module" : "MPLS-TE-STD-MIB"
2748
+ },
2749
+ "mplsTunnelARHopLspId" : {
2750
+ "nodetype" : "member",
2751
+ "module" : "MPLS-TE-STD-MIB"
2752
+ },
2753
+ "mplsTunnelCHopAddrType" : {
2754
+ "nodetype" : "member",
2755
+ "module" : "MPLS-TE-STD-MIB"
2756
+ },
2757
+ "mplsTunnelCHopIpAddr" : {
2758
+ "nodetype" : "member",
2759
+ "module" : "MPLS-TE-STD-MIB"
2760
+ },
2761
+ "mplsTunnelCHopIpPrefixLen" : {
2762
+ "nodetype" : "member",
2763
+ "module" : "MPLS-TE-STD-MIB"
2764
+ },
2765
+ "mplsTunnelCHopAsNumber" : {
2766
+ "nodetype" : "member",
2767
+ "module" : "MPLS-TE-STD-MIB"
2768
+ },
2769
+ "mplsTunnelCHopAddrUnnum" : {
2770
+ "nodetype" : "member",
2771
+ "module" : "MPLS-TE-STD-MIB"
2772
+ },
2773
+ "mplsTunnelCHopLspId" : {
2774
+ "nodetype" : "member",
2775
+ "module" : "MPLS-TE-STD-MIB"
2776
+ },
2777
+ "mplsTunnelCHopType" : {
2778
+ "nodetype" : "member",
2779
+ "module" : "MPLS-TE-STD-MIB"
2780
+ },
2781
+ }, # members
2782
+ "description" :
2783
+ """Necessary, but not sufficient, set of objects to
2784
+ implement tunnels. In addition, depending on the
2785
+ type of the tunnels supported (for example,
2786
+ manually configured or signaled, persistent or non-
2787
+ persistent, etc.), the following other groups
2788
+ defined below are mandatory: mplsTunnelManualGroup
2789
+ and/or mplsTunnelSignaledGroup,
2790
+ mplsTunnelIsNotIntfcGroup and/or
2791
+ mplsTunnelIsIntfcGroup.""",
2792
+ }, # group
2793
+ "mplsTunnelManualGroup" : {
2794
+ "nodetype" : "group",
2795
+ "moduleName" : "MPLS-TE-STD-MIB",
2796
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1.2",
2797
+ "status" : "current",
2798
+ "members" : {
2799
+ "mplsTunnelSignallingProto" : {
2800
+ "nodetype" : "member",
2801
+ "module" : "MPLS-TE-STD-MIB"
2802
+ },
2803
+ }, # members
2804
+ "description" :
2805
+ """Object(s) needed to implement manually configured
2806
+ tunnels.""",
2807
+ }, # group
2808
+ "mplsTunnelSignaledGroup" : {
2809
+ "nodetype" : "group",
2810
+ "moduleName" : "MPLS-TE-STD-MIB",
2811
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1.3",
2812
+ "status" : "current",
2813
+ "members" : {
2814
+ "mplsTunnelSetupPrio" : {
2815
+ "nodetype" : "member",
2816
+ "module" : "MPLS-TE-STD-MIB"
2817
+ },
2818
+ "mplsTunnelHoldingPrio" : {
2819
+ "nodetype" : "member",
2820
+ "module" : "MPLS-TE-STD-MIB"
2821
+ },
2822
+ "mplsTunnelSignallingProto" : {
2823
+ "nodetype" : "member",
2824
+ "module" : "MPLS-TE-STD-MIB"
2825
+ },
2826
+ "mplsTunnelLocalProtectInUse" : {
2827
+ "nodetype" : "member",
2828
+ "module" : "MPLS-TE-STD-MIB"
2829
+ },
2830
+ "mplsTunnelSessionAttributes" : {
2831
+ "nodetype" : "member",
2832
+ "module" : "MPLS-TE-STD-MIB"
2833
+ },
2834
+ "mplsTunnelHopListIndexNext" : {
2835
+ "nodetype" : "member",
2836
+ "module" : "MPLS-TE-STD-MIB"
2837
+ },
2838
+ "mplsTunnelHopAddrType" : {
2839
+ "nodetype" : "member",
2840
+ "module" : "MPLS-TE-STD-MIB"
2841
+ },
2842
+ "mplsTunnelHopIpAddr" : {
2843
+ "nodetype" : "member",
2844
+ "module" : "MPLS-TE-STD-MIB"
2845
+ },
2846
+ "mplsTunnelHopIpPrefixLen" : {
2847
+ "nodetype" : "member",
2848
+ "module" : "MPLS-TE-STD-MIB"
2849
+ },
2850
+ "mplsTunnelHopAddrUnnum" : {
2851
+ "nodetype" : "member",
2852
+ "module" : "MPLS-TE-STD-MIB"
2853
+ },
2854
+ "mplsTunnelHopAsNumber" : {
2855
+ "nodetype" : "member",
2856
+ "module" : "MPLS-TE-STD-MIB"
2857
+ },
2858
+ "mplsTunnelHopLspId" : {
2859
+ "nodetype" : "member",
2860
+ "module" : "MPLS-TE-STD-MIB"
2861
+ },
2862
+ "mplsTunnelHopType" : {
2863
+ "nodetype" : "member",
2864
+ "module" : "MPLS-TE-STD-MIB"
2865
+ },
2866
+ "mplsTunnelHopInclude" : {
2867
+ "nodetype" : "member",
2868
+ "module" : "MPLS-TE-STD-MIB"
2869
+ },
2870
+ "mplsTunnelHopPathOptionName" : {
2871
+ "nodetype" : "member",
2872
+ "module" : "MPLS-TE-STD-MIB"
2873
+ },
2874
+ "mplsTunnelHopEntryPathComp" : {
2875
+ "nodetype" : "member",
2876
+ "module" : "MPLS-TE-STD-MIB"
2877
+ },
2878
+ "mplsTunnelHopRowStatus" : {
2879
+ "nodetype" : "member",
2880
+ "module" : "MPLS-TE-STD-MIB"
2881
+ },
2882
+ "mplsTunnelHopStorageType" : {
2883
+ "nodetype" : "member",
2884
+ "module" : "MPLS-TE-STD-MIB"
2885
+ },
2886
+ }, # members
2887
+ "description" :
2888
+ """Objects needed to implement signaled tunnels.""",
2889
+ }, # group
2890
+ "mplsTunnelScalarGroup" : {
2891
+ "nodetype" : "group",
2892
+ "moduleName" : "MPLS-TE-STD-MIB",
2893
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1.4",
2894
+ "status" : "current",
2895
+ "members" : {
2896
+ "mplsTunnelConfigured" : {
2897
+ "nodetype" : "member",
2898
+ "module" : "MPLS-TE-STD-MIB"
2899
+ },
2900
+ "mplsTunnelActive" : {
2901
+ "nodetype" : "member",
2902
+ "module" : "MPLS-TE-STD-MIB"
2903
+ },
2904
+ "mplsTunnelTEDistProto" : {
2905
+ "nodetype" : "member",
2906
+ "module" : "MPLS-TE-STD-MIB"
2907
+ },
2908
+ "mplsTunnelMaxHops" : {
2909
+ "nodetype" : "member",
2910
+ "module" : "MPLS-TE-STD-MIB"
2911
+ },
2912
+ "mplsTunnelNotificationMaxRate" : {
2913
+ "nodetype" : "member",
2914
+ "module" : "MPLS-TE-STD-MIB"
2915
+ },
2916
+ }, # members
2917
+ "description" :
2918
+ """Scalar object needed to implement MPLS tunnels.""",
2919
+ }, # group
2920
+ "mplsTunnelIsIntfcGroup" : {
2921
+ "nodetype" : "group",
2922
+ "moduleName" : "MPLS-TE-STD-MIB",
2923
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1.5",
2924
+ "status" : "current",
2925
+ "members" : {
2926
+ "mplsTunnelIsIf" : {
2927
+ "nodetype" : "member",
2928
+ "module" : "MPLS-TE-STD-MIB"
2929
+ },
2930
+ }, # members
2931
+ "description" :
2932
+ """Objects needed to implement tunnels that are
2933
+ interfaces.""",
2934
+ }, # group
2935
+ "mplsTunnelIsNotIntfcGroup" : {
2936
+ "nodetype" : "group",
2937
+ "moduleName" : "MPLS-TE-STD-MIB",
2938
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1.6",
2939
+ "status" : "current",
2940
+ "members" : {
2941
+ "mplsTunnelIsIf" : {
2942
+ "nodetype" : "member",
2943
+ "module" : "MPLS-TE-STD-MIB"
2944
+ },
2945
+ }, # members
2946
+ "description" :
2947
+ """Objects needed to implement tunnels that are not
2948
+ interfaces.""",
2949
+ }, # group
2950
+ "mplsTunnelCRLDPResOptionalGroup" : {
2951
+ "nodetype" : "group",
2952
+ "moduleName" : "MPLS-TE-STD-MIB",
2953
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1.7",
2954
+ "status" : "current",
2955
+ "members" : {
2956
+ "mplsTunnelCRLDPResMeanBurstSize" : {
2957
+ "nodetype" : "member",
2958
+ "module" : "MPLS-TE-STD-MIB"
2959
+ },
2960
+ "mplsTunnelCRLDPResExBurstSize" : {
2961
+ "nodetype" : "member",
2962
+ "module" : "MPLS-TE-STD-MIB"
2963
+ },
2964
+ "mplsTunnelCRLDPResFrequency" : {
2965
+ "nodetype" : "member",
2966
+ "module" : "MPLS-TE-STD-MIB"
2967
+ },
2968
+ "mplsTunnelCRLDPResWeight" : {
2969
+ "nodetype" : "member",
2970
+ "module" : "MPLS-TE-STD-MIB"
2971
+ },
2972
+ "mplsTunnelCRLDPResFlags" : {
2973
+ "nodetype" : "member",
2974
+ "module" : "MPLS-TE-STD-MIB"
2975
+ },
2976
+ "mplsTunnelCRLDPResRowStatus" : {
2977
+ "nodetype" : "member",
2978
+ "module" : "MPLS-TE-STD-MIB"
2979
+ },
2980
+ "mplsTunnelCRLDPResStorageType" : {
2981
+ "nodetype" : "member",
2982
+ "module" : "MPLS-TE-STD-MIB"
2983
+ },
2984
+ }, # members
2985
+ "description" :
2986
+ """Set of objects implemented for resources applicable
2987
+ for tunnels signaled using CR-LDP.""",
2988
+ }, # group
2989
+ "mplsTeNotificationGroup" : {
2990
+ "nodetype" : "group",
2991
+ "moduleName" : "MPLS-TE-STD-MIB",
2992
+ "oid" : "1.3.6.1.2.1.10.166.3.3.1.8",
2993
+ "status" : "current",
2994
+ "members" : {
2995
+ "mplsTunnelUp" : {
2996
+ "nodetype" : "member",
2997
+ "module" : "MPLS-TE-STD-MIB"
2998
+ },
2999
+ "mplsTunnelDown" : {
3000
+ "nodetype" : "member",
3001
+ "module" : "MPLS-TE-STD-MIB"
3002
+ },
3003
+ "mplsTunnelRerouted" : {
3004
+ "nodetype" : "member",
3005
+ "module" : "MPLS-TE-STD-MIB"
3006
+ },
3007
+ "mplsTunnelReoptimized" : {
3008
+ "nodetype" : "member",
3009
+ "module" : "MPLS-TE-STD-MIB"
3010
+ },
3011
+ }, # members
3012
+ "description" :
3013
+ """Set of notifications implemented in this module.
3014
+ None is mandatory.""",
3015
+ }, # group
3016
+ }, # groups
3017
+
3018
+ "compliances" : {
3019
+ "mplsTeModuleFullCompliance" : {
3020
+ "nodetype" : "compliance",
3021
+ "moduleName" : "MPLS-TE-STD-MIB",
3022
+ "oid" : "1.3.6.1.2.1.10.166.3.3.2.1",
3023
+ "status" : "current",
3024
+ "description" :
3025
+ """Compliance statement for agents that provide full
3026
+ support the MPLS-TE-STD-MIB module.""",
3027
+ "requires" : {
3028
+ "ifGeneralInformationGroup" : {
3029
+ "nodetype" : "mandatory",
3030
+ "module" : "IF-MIB"
3031
+ },
3032
+ "ifCounterDiscontinuityGroup" : {
3033
+ "nodetype" : "mandatory",
3034
+ "module" : "IF-MIB"
3035
+ },
3036
+ "mplsTunnelGroup" : {
3037
+ "nodetype" : "mandatory",
3038
+ "module" : "MPLS-TE-STD-MIB"
3039
+ },
3040
+ "mplsTunnelScalarGroup" : {
3041
+ "nodetype" : "mandatory",
3042
+ "module" : "MPLS-TE-STD-MIB"
3043
+ },
3044
+ "mplsTunnelManualGroup" : {
3045
+ "nodetype" : "optional",
3046
+ "module" : "MPLS-TE-STD-MIB",
3047
+ "description" :
3048
+ """This group is mandatory for devices which support
3049
+ manual configuration of tunnels.""",
3050
+ },
3051
+ "mplsTunnelSignaledGroup" : {
3052
+ "nodetype" : "optional",
3053
+ "module" : "MPLS-TE-STD-MIB",
3054
+ "description" :
3055
+ """This group is mandatory for devices which support
3056
+ signaled tunnel set up.""",
3057
+ },
3058
+ "mplsTunnelIsNotIntfcGroup" : {
3059
+ "nodetype" : "optional",
3060
+ "module" : "MPLS-TE-STD-MIB",
3061
+ "description" :
3062
+ """This group is mandatory for devices which support
3063
+
3064
+
3065
+
3066
+ tunnels that are not interfaces.""",
3067
+ },
3068
+ "mplsTunnelIsIntfcGroup" : {
3069
+ "nodetype" : "optional",
3070
+ "module" : "MPLS-TE-STD-MIB",
3071
+ "description" :
3072
+ """This group is mandatory for devices which support
3073
+ tunnels that are interfaces.""",
3074
+ },
3075
+ "mplsTunnelCRLDPResOptionalGroup" : {
3076
+ "nodetype" : "optional",
3077
+ "module" : "MPLS-TE-STD-MIB",
3078
+ "description" :
3079
+ """Objects in this group are required by
3080
+ implementations supporting the CR-LDP protocol for
3081
+ signalling of TE tunnels.""",
3082
+ },
3083
+ "mplsTeNotificationGroup" : {
3084
+ "nodetype" : "optional",
3085
+ "module" : "MPLS-TE-STD-MIB",
3086
+ "description" :
3087
+ """This group is mandatory for those implementations
3088
+ which can implement the notifications
3089
+ contained in this group.""",
3090
+ },
3091
+ }, # requires
3092
+ "refinements" : {
3093
+ "mplsTunnelRowStatus" : {
3094
+ "module" : "MPLS-TE-STD-MIB",
3095
+ "syntax" : {
3096
+ "type" : {
3097
+ "basetype" : "Enumeration",
3098
+ "parent module" : {
3099
+ "name" : "SNMPv2-TC",
3100
+ "type" : "RowStatus",
3101
+ },
3102
+ "active" : {
3103
+ "nodetype" : "namednumber",
3104
+ "number" : "1"
3105
+ },
3106
+ "notInService" : {
3107
+ "nodetype" : "namednumber",
3108
+ "number" : "2"
3109
+ },
3110
+ },
3111
+ }, # syntax
3112
+ "writesyntax" : {
3113
+ "type" : {
3114
+ "basetype" : "Enumeration",
3115
+ "parent module" : {
3116
+ "name" : "SNMPv2-TC",
3117
+ "type" : "RowStatus",
3118
+ },
3119
+ "active" : {
3120
+ "nodetype" : "namednumber",
3121
+ "number" : "1"
3122
+ },
3123
+ "notInService" : {
3124
+ "nodetype" : "namednumber",
3125
+ "number" : "2"
3126
+ },
3127
+ "createAndGo" : {
3128
+ "nodetype" : "namednumber",
3129
+ "number" : "4"
3130
+ },
3131
+ "destroy" : {
3132
+ "nodetype" : "namednumber",
3133
+ "number" : "6"
3134
+ },
3135
+ },
3136
+ }, # writesyntax
3137
+ "description" :
3138
+ """Support for createAndWait and notReady is not
3139
+ required.""",
3140
+ },
3141
+ "mplsTunnelHopRowStatus" : {
3142
+ "module" : "MPLS-TE-STD-MIB",
3143
+ "syntax" : {
3144
+ "type" : {
3145
+ "basetype" : "Enumeration",
3146
+ "parent module" : {
3147
+ "name" : "SNMPv2-TC",
3148
+ "type" : "RowStatus",
3149
+ },
3150
+ "active" : {
3151
+ "nodetype" : "namednumber",
3152
+ "number" : "1"
3153
+ },
3154
+ "notInService" : {
3155
+ "nodetype" : "namednumber",
3156
+ "number" : "2"
3157
+ },
3158
+ },
3159
+ }, # syntax
3160
+ "writesyntax" : {
3161
+ "type" : {
3162
+ "basetype" : "Enumeration",
3163
+ "parent module" : {
3164
+ "name" : "SNMPv2-TC",
3165
+ "type" : "RowStatus",
3166
+ },
3167
+ "active" : {
3168
+ "nodetype" : "namednumber",
3169
+ "number" : "1"
3170
+ },
3171
+ "notInService" : {
3172
+ "nodetype" : "namednumber",
3173
+ "number" : "2"
3174
+ },
3175
+ "createAndGo" : {
3176
+ "nodetype" : "namednumber",
3177
+ "number" : "4"
3178
+ },
3179
+ "destroy" : {
3180
+ "nodetype" : "namednumber",
3181
+ "number" : "6"
3182
+ },
3183
+ },
3184
+ }, # writesyntax
3185
+ "description" :
3186
+ """Support for createAndWait and notReady is not
3187
+ required.""",
3188
+ },
3189
+ "mplsTunnelCRLDPResRowStatus" : {
3190
+ "module" : "MPLS-TE-STD-MIB",
3191
+ "syntax" : {
3192
+ "type" : {
3193
+ "basetype" : "Enumeration",
3194
+ "parent module" : {
3195
+ "name" : "SNMPv2-TC",
3196
+ "type" : "RowStatus",
3197
+ },
3198
+ "active" : {
3199
+ "nodetype" : "namednumber",
3200
+ "number" : "1"
3201
+ },
3202
+ "notInService" : {
3203
+ "nodetype" : "namednumber",
3204
+ "number" : "2"
3205
+ },
3206
+ },
3207
+ }, # syntax
3208
+ "writesyntax" : {
3209
+ "type" : {
3210
+ "basetype" : "Enumeration",
3211
+ "parent module" : {
3212
+ "name" : "SNMPv2-TC",
3213
+ "type" : "RowStatus",
3214
+ },
3215
+ "active" : {
3216
+ "nodetype" : "namednumber",
3217
+ "number" : "1"
3218
+ },
3219
+ "notInService" : {
3220
+ "nodetype" : "namednumber",
3221
+ "number" : "2"
3222
+ },
3223
+ "createAndGo" : {
3224
+ "nodetype" : "namednumber",
3225
+ "number" : "4"
3226
+ },
3227
+ "destroy" : {
3228
+ "nodetype" : "namednumber",
3229
+ "number" : "6"
3230
+ },
3231
+ },
3232
+ }, # writesyntax
3233
+ "description" :
3234
+ """Support for createAndWait and notReady is
3235
+ not required.""",
3236
+ },
3237
+ }, # refinements
3238
+
3239
+ }, # compliance
3240
+ "mplsTeModuleReadOnlyCompliance" : {
3241
+ "nodetype" : "compliance",
3242
+ "moduleName" : "MPLS-TE-STD-MIB",
3243
+ "oid" : "1.3.6.1.2.1.10.166.3.3.2.2",
3244
+ "status" : "current",
3245
+ "description" :
3246
+ """Compliance requirement for implementations that only
3247
+ provide read-only support for MPLS-TE-STD-MIB.
3248
+ Such devices can then be monitored but cannot be
3249
+ configured using this MIB modules.""",
3250
+ "requires" : {
3251
+ "mplsTunnelGroup" : {
3252
+ "nodetype" : "mandatory",
3253
+ "module" : "MPLS-TE-STD-MIB"
3254
+ },
3255
+ "mplsTunnelScalarGroup" : {
3256
+ "nodetype" : "mandatory",
3257
+ "module" : "MPLS-TE-STD-MIB"
3258
+ },
3259
+ "mplsTunnelManualGroup" : {
3260
+ "nodetype" : "optional",
3261
+ "module" : "MPLS-TE-STD-MIB",
3262
+ "description" :
3263
+ """This group is mandatory for devices which support
3264
+ manual configuration of tunnels.""",
3265
+ },
3266
+ "mplsTunnelSignaledGroup" : {
3267
+ "nodetype" : "optional",
3268
+ "module" : "MPLS-TE-STD-MIB",
3269
+ "description" :
3270
+ """This group is mandatory for devices which support
3271
+ signaled tunnel set up.""",
3272
+ },
3273
+ "mplsTunnelIsNotIntfcGroup" : {
3274
+ "nodetype" : "optional",
3275
+ "module" : "MPLS-TE-STD-MIB",
3276
+ "description" :
3277
+ """This group is mandatory for devices which support
3278
+ tunnels that are not interfaces.""",
3279
+ },
3280
+ "mplsTunnelIsIntfcGroup" : {
3281
+ "nodetype" : "optional",
3282
+ "module" : "MPLS-TE-STD-MIB",
3283
+ "description" :
3284
+ """This group is mandatory for devices which support
3285
+ tunnels that are interfaces.""",
3286
+ },
3287
+ "mplsTunnelCRLDPResOptionalGroup" : {
3288
+ "nodetype" : "optional",
3289
+ "module" : "MPLS-TE-STD-MIB",
3290
+ "description" :
3291
+ """Objects in this group are required by
3292
+ implementations supporting the CR-LDP protocol for
3293
+ signalling of TE tunnels.""",
3294
+ },
3295
+ "mplsTeNotificationGroup" : {
3296
+ "nodetype" : "optional",
3297
+ "module" : "MPLS-TE-STD-MIB",
3298
+ "description" :
3299
+ """This group is mandatory for those implementations
3300
+ which can implement the notifications
3301
+ contained in this group.""",
3302
+ },
3303
+ }, # requires
3304
+ "refinements" : {
3305
+ "mplsTunnelName" : {
3306
+ "module" : "MPLS-TE-STD-MIB",
3307
+ "access" : "readonly",
3308
+ "description" :
3309
+ """Write access is not required.""",
3310
+ },
3311
+ "mplsTunnelDescr" : {
3312
+ "module" : "MPLS-TE-STD-MIB",
3313
+ "access" : "readonly",
3314
+ "description" :
3315
+ """Write access is not required.""",
3316
+ },
3317
+ "mplsTunnelIsIf" : {
3318
+ "module" : "MPLS-TE-STD-MIB",
3319
+ "access" : "readonly",
3320
+ "description" :
3321
+ """Write access is not required.""",
3322
+ },
3323
+ "mplsTunnelIfIndex" : {
3324
+ "module" : "MPLS-TE-STD-MIB",
3325
+ "description" :
3326
+ """Write access is not required.""",
3327
+ },
3328
+ "mplsTunnelXCPointer" : {
3329
+ "module" : "MPLS-TE-STD-MIB",
3330
+ "access" : "readonly",
3331
+ "description" :
3332
+ """Write access is not required.""",
3333
+ },
3334
+ "mplsTunnelSignallingProto" : {
3335
+ "module" : "MPLS-TE-STD-MIB",
3336
+ "access" : "readonly",
3337
+ "description" :
3338
+ """Write access is not required.""",
3339
+ },
3340
+ "mplsTunnelSetupPrio" : {
3341
+ "module" : "MPLS-TE-STD-MIB",
3342
+ "access" : "readonly",
3343
+ "description" :
3344
+ """Write access is not required.""",
3345
+ },
3346
+ "mplsTunnelHoldingPrio" : {
3347
+ "module" : "MPLS-TE-STD-MIB",
3348
+ "access" : "readonly",
3349
+ "description" :
3350
+ """Write access is not required.""",
3351
+ },
3352
+ "mplsTunnelSessionAttributes" : {
3353
+ "module" : "MPLS-TE-STD-MIB",
3354
+ "access" : "readonly",
3355
+ "description" :
3356
+ """Write access is not required.""",
3357
+ },
3358
+ "mplsTunnelLocalProtectInUse" : {
3359
+ "module" : "MPLS-TE-STD-MIB",
3360
+ "access" : "readonly",
3361
+ "description" :
3362
+ """Write access is not required.""",
3363
+ },
3364
+ "mplsTunnelResourcePointer" : {
3365
+ "module" : "MPLS-TE-STD-MIB",
3366
+ "access" : "readonly",
3367
+ "description" :
3368
+ """Write access is not required.""",
3369
+ },
3370
+ "mplsTunnelInstancePriority" : {
3371
+ "module" : "MPLS-TE-STD-MIB",
3372
+ "access" : "readonly",
3373
+ "description" :
3374
+ """Write access is not required.""",
3375
+ },
3376
+ "mplsTunnelHopTableIndex" : {
3377
+ "module" : "MPLS-TE-STD-MIB",
3378
+ "access" : "readonly",
3379
+ "description" :
3380
+ """Write access is not required.""",
3381
+ },
3382
+ "mplsTunnelIncludeAnyAffinity" : {
3383
+ "module" : "MPLS-TE-STD-MIB",
3384
+ "access" : "readonly",
3385
+ "description" :
3386
+ """Write access is not required.""",
3387
+ },
3388
+ "mplsTunnelIncludeAllAffinity" : {
3389
+ "module" : "MPLS-TE-STD-MIB",
3390
+ "access" : "readonly",
3391
+ "description" :
3392
+ """Write access is not required.""",
3393
+ },
3394
+ "mplsTunnelExcludeAnyAffinity" : {
3395
+ "module" : "MPLS-TE-STD-MIB",
3396
+ "access" : "readonly",
3397
+ "description" :
3398
+ """Write access is not required.""",
3399
+ },
3400
+ "mplsTunnelPathInUse" : {
3401
+ "module" : "MPLS-TE-STD-MIB",
3402
+ "access" : "readonly",
3403
+ "description" :
3404
+ """Write access is not required.""",
3405
+ },
3406
+ "mplsTunnelRole" : {
3407
+ "module" : "MPLS-TE-STD-MIB",
3408
+ "access" : "readonly",
3409
+ "description" :
3410
+ """Write access is not required.""",
3411
+ },
3412
+ "mplsTunnelAdminStatus" : {
3413
+ "module" : "MPLS-TE-STD-MIB",
3414
+ "syntax" : {
3415
+ "type" : {
3416
+ "basetype" : "Enumeration",
3417
+ "up" : {
3418
+ "nodetype" : "namednumber",
3419
+ "number" : "1"
3420
+ },
3421
+ "down" : {
3422
+ "nodetype" : "namednumber",
3423
+ "number" : "2"
3424
+ },
3425
+ },
3426
+ }, # syntax
3427
+ "access" : "readonly",
3428
+ "description" :
3429
+ """Only up and down states must be supported. Write
3430
+ access is not required.""",
3431
+ },
3432
+ "mplsTunnelRowStatus" : {
3433
+ "module" : "MPLS-TE-STD-MIB",
3434
+ "syntax" : {
3435
+ "type" : {
3436
+ "basetype" : "Enumeration",
3437
+ "parent module" : {
3438
+ "name" : "SNMPv2-TC",
3439
+ "type" : "RowStatus",
3440
+ },
3441
+ "active" : {
3442
+ "nodetype" : "namednumber",
3443
+ "number" : "1"
3444
+ },
3445
+ },
3446
+ }, # syntax
3447
+ "access" : "readonly",
3448
+ "description" :
3449
+ """Write access is not required.""",
3450
+ },
3451
+ "mplsTunnelHopAddrType" : {
3452
+ "module" : "MPLS-TE-STD-MIB",
3453
+ "access" : "readonly",
3454
+ "description" :
3455
+ """Write access is not required.""",
3456
+ },
3457
+ "mplsTunnelHopIpAddr" : {
3458
+ "module" : "MPLS-TE-STD-MIB",
3459
+ "access" : "readonly",
3460
+ "description" :
3461
+ """Write access is not required.""",
3462
+ },
3463
+ "mplsTunnelHopIpPrefixLen" : {
3464
+ "module" : "MPLS-TE-STD-MIB",
3465
+ "access" : "readonly",
3466
+ "description" :
3467
+ """Write access is not required.""",
3468
+ },
3469
+ "mplsTunnelHopAddrUnnum" : {
3470
+ "module" : "MPLS-TE-STD-MIB",
3471
+ "access" : "readonly",
3472
+ "description" :
3473
+ """Write access is not required.""",
3474
+ },
3475
+ "mplsTunnelHopAsNumber" : {
3476
+ "module" : "MPLS-TE-STD-MIB",
3477
+ "access" : "readonly",
3478
+ "description" :
3479
+ """Write access is not required.""",
3480
+ },
3481
+ "mplsTunnelHopLspId" : {
3482
+ "module" : "MPLS-TE-STD-MIB",
3483
+ "access" : "readonly",
3484
+ "description" :
3485
+ """Write access is not required.""",
3486
+ },
3487
+ "mplsTunnelHopType" : {
3488
+ "module" : "MPLS-TE-STD-MIB",
3489
+ "syntax" : {
3490
+ "type" : {
3491
+ "basetype" : "Enumeration",
3492
+ "strict" : {
3493
+ "nodetype" : "namednumber",
3494
+ "number" : "1"
3495
+ },
3496
+ },
3497
+ }, # syntax
3498
+ "access" : "readonly",
3499
+ "description" :
3500
+ """loose(2) need not be supported. Write access is
3501
+ not required.""",
3502
+ },
3503
+ "mplsTunnelHopInclude" : {
3504
+ "module" : "MPLS-TE-STD-MIB",
3505
+ "access" : "readonly",
3506
+ "description" :
3507
+ """Write access is not required.""",
3508
+ },
3509
+ "mplsTunnelHopPathOptionName" : {
3510
+ "module" : "MPLS-TE-STD-MIB",
3511
+ "access" : "readonly",
3512
+ "description" :
3513
+ """Write access is not required.""",
3514
+ },
3515
+ "mplsTunnelHopEntryPathComp" : {
3516
+ "module" : "MPLS-TE-STD-MIB",
3517
+ "access" : "readonly",
3518
+ "description" :
3519
+ """Write access is not required.""",
3520
+ },
3521
+ "mplsTunnelHopRowStatus" : {
3522
+ "module" : "MPLS-TE-STD-MIB",
3523
+ "syntax" : {
3524
+ "type" : {
3525
+ "basetype" : "Enumeration",
3526
+ "parent module" : {
3527
+ "name" : "SNMPv2-TC",
3528
+ "type" : "RowStatus",
3529
+ },
3530
+ "active" : {
3531
+ "nodetype" : "namednumber",
3532
+ "number" : "1"
3533
+ },
3534
+ },
3535
+ }, # syntax
3536
+ "access" : "readonly",
3537
+ "description" :
3538
+ """Write access is not required.""",
3539
+ },
3540
+ "mplsTunnelHopStorageType" : {
3541
+ "module" : "MPLS-TE-STD-MIB",
3542
+ "access" : "readonly",
3543
+ "description" :
3544
+ """Write access is not required.""",
3545
+ },
3546
+ "mplsTunnelResourceMaxRate" : {
3547
+ "module" : "MPLS-TE-STD-MIB",
3548
+ "access" : "readonly",
3549
+ "description" :
3550
+ """Write access is not required.""",
3551
+ },
3552
+ "mplsTunnelResourceMeanRate" : {
3553
+ "module" : "MPLS-TE-STD-MIB",
3554
+ "access" : "readonly",
3555
+ "description" :
3556
+ """Write access is not required.""",
3557
+ },
3558
+ "mplsTunnelResourceMaxBurstSize" : {
3559
+ "module" : "MPLS-TE-STD-MIB",
3560
+ "access" : "readonly",
3561
+ "description" :
3562
+ """Write access is not required.""",
3563
+ },
3564
+ "mplsTunnelResourceMeanBurstSize" : {
3565
+ "module" : "MPLS-TE-STD-MIB",
3566
+ "access" : "readonly",
3567
+ "description" :
3568
+ """Write access is not required.""",
3569
+ },
3570
+ "mplsTunnelResourceExBurstSize" : {
3571
+ "module" : "MPLS-TE-STD-MIB",
3572
+ "access" : "readonly",
3573
+ "description" :
3574
+ """Write access is not required.""",
3575
+ },
3576
+ "mplsTunnelResourceFrequency" : {
3577
+ "module" : "MPLS-TE-STD-MIB",
3578
+ "access" : "readonly",
3579
+ "description" :
3580
+ """Write access is not required.""",
3581
+ },
3582
+ "mplsTunnelResourceWeight" : {
3583
+ "module" : "MPLS-TE-STD-MIB",
3584
+ "access" : "readonly",
3585
+ "description" :
3586
+ """Write access is not required.""",
3587
+ },
3588
+ "mplsTunnelResourceRowStatus" : {
3589
+ "module" : "MPLS-TE-STD-MIB",
3590
+ "syntax" : {
3591
+ "type" : {
3592
+ "basetype" : "Enumeration",
3593
+ "parent module" : {
3594
+ "name" : "SNMPv2-TC",
3595
+ "type" : "RowStatus",
3596
+ },
3597
+ "active" : {
3598
+ "nodetype" : "namednumber",
3599
+ "number" : "1"
3600
+ },
3601
+ },
3602
+ }, # syntax
3603
+ "access" : "readonly",
3604
+ "description" :
3605
+ """Write access is not required.""",
3606
+ },
3607
+ "mplsTunnelResourceStorageType" : {
3608
+ "module" : "MPLS-TE-STD-MIB",
3609
+ "access" : "readonly",
3610
+ "description" :
3611
+ """Write access is not required.""",
3612
+ },
3613
+ "mplsTunnelCRLDPResMeanBurstSize" : {
3614
+ "module" : "MPLS-TE-STD-MIB",
3615
+ "access" : "readonly",
3616
+ "description" :
3617
+ """Write access is not required.""",
3618
+ },
3619
+ "mplsTunnelCRLDPResExBurstSize" : {
3620
+ "module" : "MPLS-TE-STD-MIB",
3621
+ "access" : "readonly",
3622
+ "description" :
3623
+ """Write access is not required.""",
3624
+ },
3625
+ "mplsTunnelCRLDPResFrequency" : {
3626
+ "module" : "MPLS-TE-STD-MIB",
3627
+ "access" : "readonly",
3628
+ "description" :
3629
+ """Write access is not required.""",
3630
+ },
3631
+ "mplsTunnelCRLDPResWeight" : {
3632
+ "module" : "MPLS-TE-STD-MIB",
3633
+ "access" : "readonly",
3634
+ "description" :
3635
+ """Write access is not required.""",
3636
+ },
3637
+ "mplsTunnelCRLDPResFlags" : {
3638
+ "module" : "MPLS-TE-STD-MIB",
3639
+ "access" : "readonly",
3640
+ "description" :
3641
+ """Write access is not required.""",
3642
+ },
3643
+ "mplsTunnelCRLDPResRowStatus" : {
3644
+ "module" : "MPLS-TE-STD-MIB",
3645
+ "syntax" : {
3646
+ "type" : {
3647
+ "basetype" : "Enumeration",
3648
+ "parent module" : {
3649
+ "name" : "SNMPv2-TC",
3650
+ "type" : "RowStatus",
3651
+ },
3652
+ "active" : {
3653
+ "nodetype" : "namednumber",
3654
+ "number" : "1"
3655
+ },
3656
+ },
3657
+ }, # syntax
3658
+ "access" : "readonly",
3659
+ "description" :
3660
+ """Write access is not required.""",
3661
+ },
3662
+ "mplsTunnelCRLDPResStorageType" : {
3663
+ "module" : "MPLS-TE-STD-MIB",
3664
+ "access" : "readonly",
3665
+ "description" :
3666
+ """Write access is not required.""",
3667
+ },
3668
+ }, # refinements
3669
+
3670
+ }, # compliance
3671
+ }, # compliances
3672
+
3673
+ }