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,2542 @@
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 GMPLS-TE-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/GMPLS-TE-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "GMPLS-TE-STD-MIB",
11
+
12
+ "GMPLS-TE-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Common Control and Measurement Plane (CCAMP) Working
17
+ Group""",
18
+ "contact" :
19
+ """ Thomas D. Nadeau
20
+ Cisco Systems, Inc.
21
+ Email: tnadeau@cisco.com
22
+ Adrian Farrel
23
+ Old Dog Consulting
24
+ Email: adrian@olddog.co.uk
25
+
26
+ Comments about this document should be emailed directly
27
+ to the CCAMP working group mailing list at
28
+ ccamp@ops.ietf.org.""",
29
+ "description" :
30
+ """Copyright (C) The IETF Trust (2007). This version of
31
+ this MIB module is part of RFC 4802; see the RFC itself for
32
+ full legal notices.
33
+
34
+ This MIB module contains managed object definitions
35
+ for GMPLS Traffic Engineering (TE) as defined in:
36
+ 1. Generalized Multi-Protocol Label Switching (GMPLS)
37
+ Signaling Functional Description, Berger, L. (Editor),
38
+ RFC 3471, January 2003.
39
+ 2. Generalized MPLS Signaling - RSVP-TE Extensions, Berger,
40
+ L. (Editor), RFC 3473, January 2003.""",
41
+ "revisions" : (
42
+ {
43
+ "date" : "2007-02-27 00:00",
44
+ "description" :
45
+ """Initial version issued as part of RFC 4802.""",
46
+ },
47
+ ),
48
+ "identity node" : "gmplsTeStdMIB",
49
+ },
50
+
51
+ "imports" : (
52
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
53
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
54
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
58
+ {"module" : "SNMPv2-SMI", "name" : "zeroDotZero"},
59
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
60
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
61
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
62
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
63
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
64
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
65
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
66
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
67
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
68
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
69
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelIndex"},
70
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelInstance"},
71
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelIngressLSRId"},
72
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelEgressLSRId"},
73
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelHopListIndex"},
74
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelHopPathOptionIndex"},
75
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelHopIndex"},
76
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelARHopListIndex"},
77
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelARHopIndex"},
78
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelCHopListIndex"},
79
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelCHopIndex"},
80
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelEntry"},
81
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelAdminStatus"},
82
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelOperStatus"},
83
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelGroup"},
84
+ {"module" : "MPLS-TE-STD-MIB", "name" : "mplsTunnelScalarGroup"},
85
+ {"module" : "IANA-GMPLS-TC-MIB", "name" : "IANAGmplsLSPEncodingTypeTC"},
86
+ {"module" : "IANA-GMPLS-TC-MIB", "name" : "IANAGmplsSwitchingTypeTC"},
87
+ {"module" : "IANA-GMPLS-TC-MIB", "name" : "IANAGmplsGeneralizedPidTC"},
88
+ {"module" : "IANA-GMPLS-TC-MIB", "name" : "IANAGmplsAdminStatusInformationTC"},
89
+ {"module" : "MPLS-TC-STD-MIB", "name" : "mplsStdMIB"},
90
+ ),
91
+
92
+ "nodes" : {
93
+ "gmplsTeStdMIB" : {
94
+ "nodetype" : "node",
95
+ "moduleName" : "GMPLS-TE-STD-MIB",
96
+ "oid" : "1.3.6.1.2.1.10.166.13",
97
+ "status" : "current",
98
+ }, # node
99
+ "gmplsTeNotifications" : {
100
+ "nodetype" : "node",
101
+ "moduleName" : "GMPLS-TE-STD-MIB",
102
+ "oid" : "1.3.6.1.2.1.10.166.13.0",
103
+ }, # node
104
+ "gmplsTeScalars" : {
105
+ "nodetype" : "node",
106
+ "moduleName" : "GMPLS-TE-STD-MIB",
107
+ "oid" : "1.3.6.1.2.1.10.166.13.1",
108
+ }, # node
109
+ "gmplsTunnelsConfigured" : {
110
+ "nodetype" : "scalar",
111
+ "moduleName" : "GMPLS-TE-STD-MIB",
112
+ "oid" : "1.3.6.1.2.1.10.166.13.1.1",
113
+ "status" : "current",
114
+ "syntax" : {
115
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
116
+ },
117
+ "access" : "readonly",
118
+ "description" :
119
+ """The number of GMPLS tunnels configured on this device. A GMPLS
120
+
121
+
122
+
123
+ tunnel is considered configured if an entry for the tunnel
124
+ exists in the gmplsTunnelTable and the associated
125
+ mplsTunnelRowStatus is active(1).""",
126
+ }, # scalar
127
+ "gmplsTunnelsActive" : {
128
+ "nodetype" : "scalar",
129
+ "moduleName" : "GMPLS-TE-STD-MIB",
130
+ "oid" : "1.3.6.1.2.1.10.166.13.1.2",
131
+ "status" : "current",
132
+ "syntax" : {
133
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
134
+ },
135
+ "access" : "readonly",
136
+ "description" :
137
+ """The number of GMPLS tunnels active on this device. A GMPLS
138
+ tunnel is considered active if there is an entry in the
139
+ gmplsTunnelTable and the associated mplsTunnelOperStatus for the
140
+ tunnel is up(1).""",
141
+ }, # scalar
142
+ "gmplsTeObjects" : {
143
+ "nodetype" : "node",
144
+ "moduleName" : "GMPLS-TE-STD-MIB",
145
+ "oid" : "1.3.6.1.2.1.10.166.13.2",
146
+ }, # node
147
+ "gmplsTunnelTable" : {
148
+ "nodetype" : "table",
149
+ "moduleName" : "GMPLS-TE-STD-MIB",
150
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1",
151
+ "status" : "current",
152
+ "description" :
153
+ """The gmplsTunnelTable sparsely extends the mplsTunnelTable of
154
+ MPLS-TE-STD-MIB. It allows GMPLS tunnels to be created between
155
+ an LSR and a remote endpoint, and existing tunnels to be
156
+ reconfigured or removed.
157
+
158
+ Note that only point-to-point tunnel segments are supported,
159
+ although multipoint-to-point and point-to-multipoint
160
+ connections are supported by an LSR acting as a cross-connect.
161
+ Each tunnel can thus have one out-segment originating at this
162
+ LSR and/or one in-segment terminating at this LSR.
163
+
164
+ The row status of an entry in this table is controlled by the
165
+ mplsTunnelRowStatus in the corresponding entry in the
166
+ mplsTunnelTable. When the corresponding mplsTunnelRowStatus has
167
+ value active(1), a row in this table may not be created or
168
+ modified.
169
+
170
+ The exception to this rule is the
171
+ gmplsTunnelAdminStatusInformation object, which can be modified
172
+ while the tunnel is active.""",
173
+ "reference" :
174
+ """1. Multiprotocol Label Switching (MPLS) Traffic Engineering (TE)
175
+ Management Information Base (MIB), RFC 3812.""",
176
+ }, # table
177
+ "gmplsTunnelEntry" : {
178
+ "nodetype" : "row",
179
+ "moduleName" : "GMPLS-TE-STD-MIB",
180
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1",
181
+ "create" : "true",
182
+ "status" : "current",
183
+ "linkage" : [
184
+ "mplsTunnelIndex",
185
+ "mplsTunnelInstance",
186
+ "mplsTunnelIngressLSRId",
187
+ "mplsTunnelEgressLSRId",
188
+ ],
189
+ "description" :
190
+ """An entry in this table in association with the corresponding
191
+ entry in the mplsTunnelTable represents a GMPLS tunnel.
192
+
193
+ An entry can be created by a network administrator via SNMP SET
194
+ commands, or in response to signaling protocol events.""",
195
+ }, # row
196
+ "gmplsTunnelUnnumIf" : {
197
+ "nodetype" : "column",
198
+ "moduleName" : "GMPLS-TE-STD-MIB",
199
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.1",
200
+ "status" : "current",
201
+ "syntax" : {
202
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
203
+ },
204
+ "access" : "readwrite",
205
+ "default" : "false",
206
+ "description" :
207
+ """Denotes whether or not this tunnel corresponds to an unnumbered
208
+ interface represented by an entry in the interfaces group table
209
+ (the ifTable) with ifType set to mpls(166).
210
+
211
+
212
+
213
+ This object is only used if mplsTunnelIsIf is set to 'true'.
214
+
215
+ If both this object and the mplsTunnelIsIf object are set to
216
+ 'true', the originating LSR adds an LSP_TUNNEL_INTERFACE_ID
217
+ object to the outgoing Path message.
218
+
219
+ This object contains information that is only used by the
220
+ terminating LSR.""",
221
+ "reference" :
222
+ """1. Signalling Unnumbered Links in RSVP-TE, RFC 3477.""",
223
+ }, # column
224
+ "gmplsTunnelAttributes" : {
225
+ "nodetype" : "column",
226
+ "moduleName" : "GMPLS-TE-STD-MIB",
227
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.2",
228
+ "status" : "current",
229
+ "syntax" : {
230
+ "type" : {
231
+ "basetype" : "Bits",
232
+ "labelRecordingDesired" : {
233
+ "nodetype" : "namednumber",
234
+ "number" : "0"
235
+ },
236
+ },
237
+ },
238
+ "access" : "readwrite",
239
+ "default" : "()",
240
+ "description" :
241
+ """This bitmask indicates optional parameters for this tunnel.
242
+ These bits should be taken in addition to those defined in
243
+ mplsTunnelSessionAttributes in order to determine the full set
244
+ of options to be signaled (for example SESSION_ATTRIBUTES flags
245
+ in RSVP-TE). The following describes these bitfields:
246
+
247
+ labelRecordingDesired
248
+ This flag is set to indicate that label information should be
249
+ included when doing a route record. This bit is not valid
250
+ unless the recordRoute bit is set.""",
251
+ "reference" :
252
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels, RFC 3209,
253
+ sections 4.4.3, 4.7.1, and 4.7.2.""",
254
+ }, # column
255
+ "gmplsTunnelLSPEncoding" : {
256
+ "nodetype" : "column",
257
+ "moduleName" : "GMPLS-TE-STD-MIB",
258
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.3",
259
+ "status" : "current",
260
+ "syntax" : {
261
+ "type" : { "module" :"IANA-GMPLS-TC-MIB", "name" : "IANAGmplsLSPEncodingTypeTC"},
262
+ },
263
+ "access" : "readwrite",
264
+ "default" : "tunnelLspNotGmpls",
265
+ "description" :
266
+ """This object indicates the encoding of the LSP being requested.
267
+
268
+ A value of 'tunnelLspNotGmpls' indicates that GMPLS signaling is
269
+ not in use. Some objects in this MIB module may be of use for
270
+ MPLS signaling extensions that do not use GMPLS signaling. By
271
+ setting this object to 'tunnelLspNotGmpls', an application may
272
+
273
+
274
+
275
+
276
+ indicate that only those objects meaningful in MPLS should be
277
+ examined.
278
+
279
+ The values to use are defined in the TEXTUAL-CONVENTION
280
+ IANAGmplsLSPEncodingTypeTC found in the IANA-GMPLS-TC-MIB
281
+ module.""",
282
+ }, # column
283
+ "gmplsTunnelSwitchingType" : {
284
+ "nodetype" : "column",
285
+ "moduleName" : "GMPLS-TE-STD-MIB",
286
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.4",
287
+ "status" : "current",
288
+ "syntax" : {
289
+ "type" : { "module" :"IANA-GMPLS-TC-MIB", "name" : "IANAGmplsSwitchingTypeTC"},
290
+ },
291
+ "access" : "readwrite",
292
+ "default" : "unknown",
293
+ "description" :
294
+ """Indicates the type of switching that should be performed on
295
+ a particular link. This field is needed for links that
296
+ advertise more than one type of switching capability.
297
+
298
+ The values to use are defined in the TEXTUAL-CONVENTION
299
+ IANAGmplsSwitchingTypeTC found in the IANA-GMPLS-TC-MIB module.
300
+
301
+ This object is only meaningful if gmplsTunnelLSPEncodingType
302
+ is not set to 'tunnelLspNotGmpls'.""",
303
+ }, # column
304
+ "gmplsTunnelLinkProtection" : {
305
+ "nodetype" : "column",
306
+ "moduleName" : "GMPLS-TE-STD-MIB",
307
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.5",
308
+ "status" : "current",
309
+ "syntax" : {
310
+ "type" : {
311
+ "basetype" : "Bits",
312
+ "extraTraffic" : {
313
+ "nodetype" : "namednumber",
314
+ "number" : "0"
315
+ },
316
+ "unprotected" : {
317
+ "nodetype" : "namednumber",
318
+ "number" : "1"
319
+ },
320
+ "shared" : {
321
+ "nodetype" : "namednumber",
322
+ "number" : "2"
323
+ },
324
+ "dedicatedOneToOne" : {
325
+ "nodetype" : "namednumber",
326
+ "number" : "3"
327
+ },
328
+ "dedicatedOnePlusOne" : {
329
+ "nodetype" : "namednumber",
330
+ "number" : "4"
331
+ },
332
+ "enhanced" : {
333
+ "nodetype" : "namednumber",
334
+ "number" : "5"
335
+ },
336
+ },
337
+ },
338
+ "access" : "readwrite",
339
+ "default" : "()",
340
+ "description" :
341
+ """This bitmask indicates the level of link protection required. A
342
+ value of zero (no bits set) indicates that any protection may be
343
+ used. The following describes these bitfields:
344
+
345
+ extraTraffic
346
+ This flag is set to indicate that the LSP should use links
347
+ that are protecting other (primary) traffic. Such LSPs may be
348
+ preempted when the links carrying the (primary) traffic being
349
+ protected fail.
350
+
351
+
352
+
353
+
354
+ unprotected
355
+ This flag is set to indicate that the LSP should not use any
356
+ link layer protection.
357
+
358
+ shared
359
+ This flag is set to indicate that a shared link layer
360
+ protection scheme, such as 1:N protection, should be used to
361
+ support the LSP.
362
+
363
+ dedicatedOneToOne
364
+ This flag is set to indicate that a dedicated link layer
365
+ protection scheme, i.e., 1:1 protection, should be used to
366
+ support the LSP.
367
+
368
+ dedicatedOnePlusOne
369
+ This flag is set to indicate that a dedicated link layer
370
+ protection scheme, i.e., 1+1 protection, should be used to
371
+ support the LSP.
372
+
373
+ enhanced
374
+ This flag is set to indicate that a protection scheme that is
375
+ more reliable than Dedicated 1+1 should be used, e.g., 4 fiber
376
+ BLSR/MS-SPRING.
377
+
378
+ This object is only meaningful if gmplsTunnelLSPEncoding is
379
+ not set to 'tunnelLspNotGmpls'.""",
380
+ "reference" :
381
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
382
+ Functional Description, RFC 3471, section 7.1.""",
383
+ }, # column
384
+ "gmplsTunnelGPid" : {
385
+ "nodetype" : "column",
386
+ "moduleName" : "GMPLS-TE-STD-MIB",
387
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.6",
388
+ "status" : "current",
389
+ "syntax" : {
390
+ "type" : { "module" :"IANA-GMPLS-TC-MIB", "name" : "IANAGmplsGeneralizedPidTC"},
391
+ },
392
+ "access" : "readwrite",
393
+ "default" : "unknown",
394
+ "description" :
395
+ """This object indicates the payload carried by the LSP. It is only
396
+ required when GMPLS will be used for this LSP.
397
+
398
+ The values to use are defined in the TEXTUAL-CONVENTION
399
+ IANAGmplsGeneralizedPidTC found in the IANA-GMPLS-TC-MIB module.
400
+
401
+ This object is only meaningful if gmplsTunnelLSPEncoding is not
402
+ set to 'tunnelLspNotGmpls'.""",
403
+ }, # column
404
+ "gmplsTunnelSecondary" : {
405
+ "nodetype" : "column",
406
+ "moduleName" : "GMPLS-TE-STD-MIB",
407
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.7",
408
+ "status" : "current",
409
+ "syntax" : {
410
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
411
+ },
412
+ "access" : "readwrite",
413
+ "default" : "false",
414
+ "description" :
415
+ """Indicates that the requested LSP is a secondary LSP.
416
+
417
+ This object is only meaningful if gmplsTunnelLSPEncoding is not
418
+ set to 'tunnelLspNotGmpls'.""",
419
+ "reference" :
420
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
421
+ Functional Description, RFC 3471, section 7.1.""",
422
+ }, # column
423
+ "gmplsTunnelDirection" : {
424
+ "nodetype" : "column",
425
+ "moduleName" : "GMPLS-TE-STD-MIB",
426
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.8",
427
+ "status" : "current",
428
+ "syntax" : {
429
+ "type" : {
430
+ "basetype" : "Enumeration",
431
+ "forward" : {
432
+ "nodetype" : "namednumber",
433
+ "number" : "0"
434
+ },
435
+ "bidirectional" : {
436
+ "nodetype" : "namednumber",
437
+ "number" : "1"
438
+ },
439
+ },
440
+ },
441
+ "access" : "readwrite",
442
+ "default" : "forward",
443
+ "description" :
444
+ """Whether this tunnel carries forward data only (is
445
+ unidirectional) or is bidirectional.
446
+
447
+ Values of this object other than 'forward' are meaningful
448
+ only if gmplsTunnelLSPEncoding is not set to
449
+ 'tunnelLspNotGmpls'.""",
450
+ }, # column
451
+ "gmplsTunnelPathComp" : {
452
+ "nodetype" : "column",
453
+ "moduleName" : "GMPLS-TE-STD-MIB",
454
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.9",
455
+ "status" : "current",
456
+ "syntax" : {
457
+ "type" : {
458
+ "basetype" : "Enumeration",
459
+ "dynamicFull" : {
460
+ "nodetype" : "namednumber",
461
+ "number" : "1"
462
+ },
463
+ "explicit" : {
464
+ "nodetype" : "namednumber",
465
+ "number" : "2"
466
+ },
467
+ "dynamicPartial" : {
468
+ "nodetype" : "namednumber",
469
+ "number" : "3"
470
+ },
471
+ },
472
+ },
473
+ "access" : "readwrite",
474
+ "default" : "dynamicFull",
475
+ "description" :
476
+ """This value instructs the source node on how to perform path
477
+ computation on the explicit route specified by the associated
478
+ entries in the gmplsTunnelHopTable.
479
+
480
+ dynamicFull
481
+ The user specifies at least the source and
482
+ destination of the path and expects that the Constrained
483
+
484
+
485
+
486
+ Shortest Path First (CSPF) will calculate the remainder
487
+ of the path.
488
+
489
+ explicit
490
+ The user specifies the entire path for the tunnel to
491
+ take. This path may contain strict or loose hops.
492
+ Evaluation of the explicit route will be performed
493
+ hop by hop through the network.
494
+
495
+ dynamicPartial
496
+ The user specifies at least the source and
497
+ destination of the path and expects that the CSPF
498
+ will calculate the remainder of the path. The path
499
+ computed by CSPF is allowed to be only partially
500
+ computed allowing the remainder of the path to be
501
+ filled in across the network.
502
+
503
+ When an entry is present in the gmplsTunnelTable for a
504
+ tunnel, gmplsTunnelPathComp MUST be used and any
505
+ corresponding mplsTunnelHopEntryPathComp object in the
506
+ mplsTunnelHopTable MUST be ignored and SHOULD not be set.
507
+
508
+ mplsTunnelHopTable and mplsTunnelHopEntryPathComp are part of
509
+ MPLS-TE-STD-MIB.
510
+
511
+ This object should be ignored if the value of
512
+ gmplsTunnelLSPEncoding is 'tunnelLspNotGmpls'.""",
513
+ "reference" :
514
+ """1. Multiprotocol Label Switching (MPLS) Traffic Engineering (TE)
515
+ Management Information Base (MIB), RFC 3812.""",
516
+ }, # column
517
+ "gmplsTunnelUpstreamNotifyRecipientType" : {
518
+ "nodetype" : "column",
519
+ "moduleName" : "GMPLS-TE-STD-MIB",
520
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.10",
521
+ "status" : "current",
522
+ "syntax" : {
523
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
524
+ },
525
+ "access" : "readwrite",
526
+ "default" : "unknown",
527
+ "description" :
528
+ """This object is used to aid in interpretation of
529
+ gmplsTunnelUpstreamNotifyRecipient.""",
530
+ }, # column
531
+ "gmplsTunnelUpstreamNotifyRecipient" : {
532
+ "nodetype" : "column",
533
+ "moduleName" : "GMPLS-TE-STD-MIB",
534
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.11",
535
+ "status" : "current",
536
+ "syntax" : {
537
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
538
+ },
539
+ "access" : "readwrite",
540
+ "default" : "0x00000000",
541
+ "description" :
542
+ """Indicates the address of the upstream recipient for Notify
543
+ messages relating to this tunnel and issued by this LSR. This
544
+ information is typically received from an upstream LSR in a Path
545
+ message.
546
+
547
+ This object is only valid when signaling a tunnel using RSVP.
548
+
549
+ It is also not valid at the head end of a tunnel since there are
550
+ no upstream LSRs to which to send a Notify message.
551
+
552
+ This object is interpreted in the context of the value of
553
+ gmplsTunnelUpstreamNotifyRecipientType. If this object is set to
554
+ 0, the value of gmplsTunnelUpstreamNotifyRecipientType MUST be
555
+ set to unknown(0).""",
556
+ "reference" :
557
+ """1. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473,
558
+ section 4.2. """,
559
+ }, # column
560
+ "gmplsTunnelSendResvNotifyRecipientType" : {
561
+ "nodetype" : "column",
562
+ "moduleName" : "GMPLS-TE-STD-MIB",
563
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.12",
564
+ "status" : "current",
565
+ "syntax" : {
566
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
567
+ },
568
+ "access" : "readwrite",
569
+ "default" : "unknown",
570
+ "description" :
571
+ """This object is used to aid in interpretation of
572
+ gmplsTunnelSendResvNotifyRecipient.""",
573
+ }, # column
574
+ "gmplsTunnelSendResvNotifyRecipient" : {
575
+ "nodetype" : "column",
576
+ "moduleName" : "GMPLS-TE-STD-MIB",
577
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.13",
578
+ "status" : "current",
579
+ "syntax" : {
580
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
581
+ },
582
+ "access" : "readwrite",
583
+ "default" : "0x00000000",
584
+ "description" :
585
+ """Indicates to an upstream LSR the address to which it should send
586
+ downstream Notify messages relating to this tunnel.
587
+
588
+ This object is only valid when signaling a tunnel using RSVP.
589
+
590
+ It is also not valid at the head end of the tunnel since no Resv
591
+ messages are sent from that LSR for this tunnel.
592
+
593
+ If set to 0, no Notify Request object will be included in the
594
+ outgoing Resv messages.
595
+
596
+ This object is interpreted in the context of the value of
597
+ gmplsTunnelSendResvNotifyRecipientType. If this object is set to
598
+
599
+
600
+
601
+ 0, the value of gmplsTunnelSendResvNotifyRecipientType MUST be
602
+ set to unknown(0).""",
603
+ "reference" :
604
+ """1. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473,
605
+ section 4.2. """,
606
+ }, # column
607
+ "gmplsTunnelDownstreamNotifyRecipientType" : {
608
+ "nodetype" : "column",
609
+ "moduleName" : "GMPLS-TE-STD-MIB",
610
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.14",
611
+ "status" : "current",
612
+ "syntax" : {
613
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
614
+ },
615
+ "access" : "readwrite",
616
+ "default" : "unknown",
617
+ "description" :
618
+ """This object is used to aid in interpretation of
619
+ gmplsTunnelDownstreamNotifyRecipient.""",
620
+ }, # column
621
+ "gmplsTunnelDownstreamNotifyRecipient" : {
622
+ "nodetype" : "column",
623
+ "moduleName" : "GMPLS-TE-STD-MIB",
624
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.15",
625
+ "status" : "current",
626
+ "syntax" : {
627
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
628
+ },
629
+ "access" : "readwrite",
630
+ "default" : "0x00000000",
631
+ "description" :
632
+ """Indicates the address of the downstream recipient for Notify
633
+ messages relating to this tunnel and issued by this LSR. This
634
+ information is typically received from an upstream LSR in a Resv
635
+ message. This object is only valid when signaling a tunnel using
636
+ RSVP.
637
+
638
+ It is also not valid at the tail end of a tunnel since there are
639
+ no downstream LSRs to which to send a Notify message.
640
+
641
+ This object is interpreted in the context of the value of
642
+ gmplsTunnelDownstreamNotifyRecipientType. If this object is set
643
+ to 0, the value of gmplsTunnelDownstreamNotifyRecipientType MUST
644
+ be set to unknown(0).""",
645
+ "reference" :
646
+ """1. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473,
647
+ section 4.2.""",
648
+ }, # column
649
+ "gmplsTunnelSendPathNotifyRecipientType" : {
650
+ "nodetype" : "column",
651
+ "moduleName" : "GMPLS-TE-STD-MIB",
652
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.16",
653
+ "status" : "current",
654
+ "syntax" : {
655
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
656
+ },
657
+ "access" : "readwrite",
658
+ "default" : "unknown",
659
+ "description" :
660
+ """This object is used to aid in interpretation of
661
+ gmplsTunnelSendPathNotifyRecipient.""",
662
+ }, # column
663
+ "gmplsTunnelSendPathNotifyRecipient" : {
664
+ "nodetype" : "column",
665
+ "moduleName" : "GMPLS-TE-STD-MIB",
666
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.17",
667
+ "status" : "current",
668
+ "syntax" : {
669
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
670
+ },
671
+ "access" : "readwrite",
672
+ "default" : "0x00000000",
673
+ "description" :
674
+ """Indicates to a downstream LSR the address to which it should
675
+ send upstream Notify messages relating to this tunnel.
676
+
677
+ This object is only valid when signaling a tunnel using RSVP.
678
+
679
+ It is also not valid at the tail end of the tunnel since no Path
680
+ messages are sent from that LSR for this tunnel.
681
+
682
+ If set to 0, no Notify Request object will be included in the
683
+ outgoing Path messages.
684
+
685
+ This object is interpreted in the context of the value of
686
+ gmplsTunnelSendPathNotifyRecipientType. If this object is set to
687
+ 0, the value of gmplsTunnelSendPathNotifyRecipientType MUST be
688
+ set to unknown(0).""",
689
+ "reference" :
690
+ """1. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473,
691
+ section 4.2. """,
692
+ }, # column
693
+ "gmplsTunnelAdminStatusFlags" : {
694
+ "nodetype" : "column",
695
+ "moduleName" : "GMPLS-TE-STD-MIB",
696
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.18",
697
+ "status" : "current",
698
+ "syntax" : {
699
+ "type" : { "module" :"IANA-GMPLS-TC-MIB", "name" : "IANAGmplsAdminStatusInformationTC"},
700
+ },
701
+ "access" : "readwrite",
702
+ "default" : "()",
703
+ "description" :
704
+ """Determines the setting of the Admin Status flags in the
705
+ Admin Status object or TLV, as described in RFC 3471. Setting
706
+ this field to a non-zero value will result in the inclusion of
707
+ the Admin Status object on signaling messages.
708
+
709
+ The values to use are defined in the TEXTUAL-CONVENTION
710
+ IANAGmplsAdminStatusInformationTC found in the
711
+ IANA-GMPLS-TC-MIB module.
712
+
713
+ This value of this object can be modified when the
714
+ corresponding mplsTunnelRowStatus and mplsTunnelAdminStatus
715
+ is active(1). By doing so, a new signaling message will be
716
+
717
+
718
+
719
+ triggered including the requested Admin Status object or
720
+ TLV.""",
721
+ "reference" :
722
+ """1. Generalized Multi-Protocol Label Switching (GMPLS) Signaling
723
+ Functional Description, RFC 3471, section 8.""",
724
+ }, # column
725
+ "gmplsTunnelExtraParamsPtr" : {
726
+ "nodetype" : "column",
727
+ "moduleName" : "GMPLS-TE-STD-MIB",
728
+ "oid" : "1.3.6.1.2.1.10.166.13.2.1.1.19",
729
+ "status" : "current",
730
+ "syntax" : {
731
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
732
+ },
733
+ "access" : "readwrite",
734
+ "default" : "0.0",
735
+ "description" :
736
+ """Some tunnels will run over transports that can usefully support
737
+ technology-specific additional parameters (for example,
738
+ Synchronous Optical Network (SONET) resource usage). Such
739
+ parameters can be supplied in an external table and referenced
740
+ from here.
741
+
742
+ A value of zeroDotzero in this attribute indicates that there
743
+ is no such additional information.""",
744
+ }, # column
745
+ "gmplsTunnelHopTable" : {
746
+ "nodetype" : "table",
747
+ "moduleName" : "GMPLS-TE-STD-MIB",
748
+ "oid" : "1.3.6.1.2.1.10.166.13.2.2",
749
+ "status" : "current",
750
+ "description" :
751
+ """The gmplsTunnelHopTable sparsely extends the mplsTunnelHopTable
752
+ of MPLS-TE-STD-MIB. It is used to indicate the Explicit Labels
753
+ to be used in an explicit path for a GMPLS tunnel defined in the
754
+ mplsTunnelTable and gmplsTunnelTable, when it is established
755
+ using signaling. It does not insert new hops, but does define
756
+ new values for hops defined in the mplsTunnelHopTable.
757
+
758
+ Each row in this table is indexed by the same indexes as in the
759
+ mplsTunnelHopTable. It is acceptable for some rows in the
760
+ mplsTunnelHopTable to have corresponding entries in this table
761
+ and some to have no corresponding entry in this table.
762
+
763
+ The storage type for this entry is given by the value
764
+ of mplsTunnelHopStorageType in the corresponding entry in the
765
+ mplsTunnelHopTable.
766
+
767
+ The row status of an entry in this table is controlled by
768
+ mplsTunnelHopRowStatus in the corresponding entry in the
769
+ mplsTunnelHopTable. That is, it is not permitted to create a row
770
+
771
+
772
+
773
+ in this table, or to modify an existing row, when the
774
+ corresponding mplsTunnelHopRowStatus has the value active(1).""",
775
+ "reference" :
776
+ """1. Multiprotocol Label Switching (MPLS) Traffic Engineering (TE)
777
+ Management Information Base (MIB), RFC 3812.
778
+ 2. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473.""",
779
+ }, # table
780
+ "gmplsTunnelHopEntry" : {
781
+ "nodetype" : "row",
782
+ "moduleName" : "GMPLS-TE-STD-MIB",
783
+ "oid" : "1.3.6.1.2.1.10.166.13.2.2.1",
784
+ "create" : "true",
785
+ "status" : "current",
786
+ "linkage" : [
787
+ "mplsTunnelHopListIndex",
788
+ "mplsTunnelHopPathOptionIndex",
789
+ "mplsTunnelHopIndex",
790
+ ],
791
+ "description" :
792
+ """An entry in this table represents additions to a tunnel hop
793
+ defined in mplsTunnelHopEntry. At an ingress to a tunnel, an
794
+ entry in this table is created by a network administrator for an
795
+ ERLSP to be set up by a signaling protocol. At transit and
796
+ egress nodes, an entry in this table may be used to represent the
797
+ explicit path instructions received using the signaling
798
+ protocol.""",
799
+ }, # row
800
+ "gmplsTunnelHopLabelStatuses" : {
801
+ "nodetype" : "column",
802
+ "moduleName" : "GMPLS-TE-STD-MIB",
803
+ "oid" : "1.3.6.1.2.1.10.166.13.2.2.1.1",
804
+ "status" : "current",
805
+ "syntax" : {
806
+ "type" : {
807
+ "basetype" : "Bits",
808
+ "forwardPresent" : {
809
+ "nodetype" : "namednumber",
810
+ "number" : "0"
811
+ },
812
+ "reversePresent" : {
813
+ "nodetype" : "namednumber",
814
+ "number" : "1"
815
+ },
816
+ },
817
+ },
818
+ "access" : "readonly",
819
+ "default" : "()",
820
+ "description" :
821
+ """This bitmask indicates the presence of labels indicated by the
822
+ gmplsTunnelHopExplicitForwardLabel or
823
+ gmplsTunnelHopExplicitForwardLabelPtr, and
824
+ gmplsTunnelHopExplicitReverseLabel or
825
+
826
+
827
+
828
+ gmplsTunnelHopExplicitReverseLabelPtr objects.
829
+
830
+ For the Present bits, a set bit indicates that a label is
831
+ present for this hop in the route. This allows zero to be a
832
+ valid label value.""",
833
+ }, # column
834
+ "gmplsTunnelHopExplicitForwardLabel" : {
835
+ "nodetype" : "column",
836
+ "moduleName" : "GMPLS-TE-STD-MIB",
837
+ "oid" : "1.3.6.1.2.1.10.166.13.2.2.1.2",
838
+ "status" : "current",
839
+ "syntax" : {
840
+ "type" : { "module" :"", "name" : "Unsigned32"},
841
+ },
842
+ "access" : "readwrite",
843
+ "description" :
844
+ """If gmplsTunnelHopLabelStatuses object indicates that a Forward
845
+ Label is present and gmplsTunnelHopExplicitForwardLabelPtr
846
+ contains the value zeroDotZero, then the label to use on this
847
+ hop is represented by the value of this object.""",
848
+ }, # column
849
+ "gmplsTunnelHopExplicitForwardLabelPtr" : {
850
+ "nodetype" : "column",
851
+ "moduleName" : "GMPLS-TE-STD-MIB",
852
+ "oid" : "1.3.6.1.2.1.10.166.13.2.2.1.3",
853
+ "status" : "current",
854
+ "syntax" : {
855
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
856
+ },
857
+ "access" : "readwrite",
858
+ "default" : "0.0",
859
+ "description" :
860
+ """If the gmplsTunnelHopLabelStatuses object indicates that a
861
+ Forward Label is present, this object contains a pointer to a
862
+ row in another MIB table (such as the gmplsLabelTable of
863
+ GMPLS-LABEL-STD-MIB) that contains the label to use on this hop
864
+ in the forward direction.
865
+
866
+ If the gmplsTunnelHopLabelStatuses object indicates that a
867
+ Forward Label is present and this object contains the value
868
+ zeroDotZero, then the label to use on this hop is found in the
869
+ gmplsTunnelHopExplicitForwardLabel object.""",
870
+ }, # column
871
+ "gmplsTunnelHopExplicitReverseLabel" : {
872
+ "nodetype" : "column",
873
+ "moduleName" : "GMPLS-TE-STD-MIB",
874
+ "oid" : "1.3.6.1.2.1.10.166.13.2.2.1.4",
875
+ "status" : "current",
876
+ "syntax" : {
877
+ "type" : { "module" :"", "name" : "Unsigned32"},
878
+ },
879
+ "access" : "readwrite",
880
+ "description" :
881
+ """If the gmplsTunnelHopLabelStatuses object indicates that a
882
+ Reverse Label is present and
883
+ gmplsTunnelHopExplicitReverseLabelPtr contains the value
884
+ zeroDotZero, then the label to use on this hop is found in
885
+ this object encoded as a 32-bit integer.""",
886
+ }, # column
887
+ "gmplsTunnelHopExplicitReverseLabelPtr" : {
888
+ "nodetype" : "column",
889
+ "moduleName" : "GMPLS-TE-STD-MIB",
890
+ "oid" : "1.3.6.1.2.1.10.166.13.2.2.1.5",
891
+ "status" : "current",
892
+ "syntax" : {
893
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
894
+ },
895
+ "access" : "readwrite",
896
+ "default" : "0.0",
897
+ "description" :
898
+ """If the gmplsTunnelHopLabelStatuses object indicates that a
899
+ Reverse Label is present, this object contains a pointer to a
900
+ row in another MIB table (such as the gmplsLabelTable of
901
+ GMPLS-LABEL-STD-MIB) that contains the label to use on this hop
902
+ in the reverse direction.
903
+
904
+ If the gmplsTunnelHopLabelStatuses object indicates that a
905
+ Reverse Label is present and this object contains the value
906
+ zeroDotZero, then the label to use on this hop is found in the
907
+ gmplsTunnelHopExplicitReverseLabel object.""",
908
+ }, # column
909
+ "gmplsTunnelARHopTable" : {
910
+ "nodetype" : "table",
911
+ "moduleName" : "GMPLS-TE-STD-MIB",
912
+ "oid" : "1.3.6.1.2.1.10.166.13.2.3",
913
+ "status" : "current",
914
+ "description" :
915
+ """The gmplsTunnelARHopTable sparsely extends the
916
+ mplsTunnelARHopTable of MPLS-TE-STD-MIB. It is used to
917
+ indicate the labels currently in use for a GMPLS tunnel
918
+ defined in the mplsTunnelTable and gmplsTunnelTable, as
919
+ reported by the signaling protocol. It does not insert
920
+ new hops, but does define new values for hops defined in
921
+ the mplsTunnelARHopTable.
922
+
923
+ Each row in this table is indexed by the same indexes as in the
924
+ mplsTunnelARHopTable. It is acceptable for some rows in the
925
+ mplsTunnelARHopTable to have corresponding entries in this table
926
+ and some to have no corresponding entry in this table.
927
+
928
+ Note that since the information necessary to build entries
929
+ within this table is not provided by some signaling protocols
930
+ and might not be returned in all cases of other signaling
931
+ protocols, implementation of this table and the
932
+ mplsTunnelARHopTable is optional. Furthermore, since the
933
+ information in this table is actually provided by the
934
+ signaling protocol after the path has been set up, the entries
935
+ in this table are provided only for observation, and hence,
936
+ all variables in this table are accessible exclusively as
937
+ read-only.""",
938
+ "reference" :
939
+ """1. Extensions to RSVP for LSP Tunnels, RFC 3209.
940
+
941
+
942
+
943
+ 2. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473.
944
+ 3. Multiprotocol Label Switching (MPLS) Traffic Engineering (TE)
945
+ Management Information Base (MIB), RFC 3812.""",
946
+ }, # table
947
+ "gmplsTunnelARHopEntry" : {
948
+ "nodetype" : "row",
949
+ "moduleName" : "GMPLS-TE-STD-MIB",
950
+ "oid" : "1.3.6.1.2.1.10.166.13.2.3.1",
951
+ "status" : "current",
952
+ "linkage" : [
953
+ "mplsTunnelARHopListIndex",
954
+ "mplsTunnelARHopIndex",
955
+ ],
956
+ "description" :
957
+ """An entry in this table represents additions to a tunnel hop
958
+ visible in mplsTunnelARHopEntry. An entry is created by the
959
+ signaling protocol for a signaled ERLSP set up by the signaling
960
+ protocol.
961
+
962
+ At any node on the LSP (ingress, transit, or egress), this table
963
+ and the mplsTunnelARHopTable (if the tables are supported and if
964
+ the signaling protocol is recording actual route information)
965
+ contain the actual route of the whole tunnel. If the signaling
966
+ protocol is not recording the actual route, this table MAY
967
+ report the information from the gmplsTunnelHopTable or the
968
+ gmplsTunnelCHopTable.
969
+
970
+ Note that the recording of actual labels is distinct from the
971
+ recording of the actual route in some signaling protocols. This
972
+ feature is enabled using the gmplsTunnelAttributes object.""",
973
+ }, # row
974
+ "gmplsTunnelARHopLabelStatuses" : {
975
+ "nodetype" : "column",
976
+ "moduleName" : "GMPLS-TE-STD-MIB",
977
+ "oid" : "1.3.6.1.2.1.10.166.13.2.3.1.1",
978
+ "status" : "current",
979
+ "syntax" : {
980
+ "type" : {
981
+ "basetype" : "Bits",
982
+ "forwardPresent" : {
983
+ "nodetype" : "namednumber",
984
+ "number" : "0"
985
+ },
986
+ "reversePresent" : {
987
+ "nodetype" : "namednumber",
988
+ "number" : "1"
989
+ },
990
+ "forwardGlobal" : {
991
+ "nodetype" : "namednumber",
992
+ "number" : "2"
993
+ },
994
+ "reverseGlobal" : {
995
+ "nodetype" : "namednumber",
996
+ "number" : "3"
997
+ },
998
+ },
999
+ },
1000
+ "access" : "readonly",
1001
+ "description" :
1002
+ """This bitmask indicates the presence and status of labels
1003
+ indicated by the gmplsTunnelARHopExplicitForwardLabel or
1004
+ gmplsTunnelARHopExplicitForwardLabelPtr, and
1005
+ gmplsTunnelARHopExplicitReverseLabel or
1006
+ gmplsTunnelARHopExplicitReverseLabelPtr objects.
1007
+
1008
+ For the Present bits, a set bit indicates that a label is
1009
+ present for this hop in the route.
1010
+
1011
+ For the Global bits, a set bit indicates that the label comes
1012
+ from the Global Label Space; a clear bit indicates that this is
1013
+ a Per-Interface label. A Global bit only has meaning if the
1014
+ corresponding Present bit is set.""",
1015
+ }, # column
1016
+ "gmplsTunnelARHopExplicitForwardLabel" : {
1017
+ "nodetype" : "column",
1018
+ "moduleName" : "GMPLS-TE-STD-MIB",
1019
+ "oid" : "1.3.6.1.2.1.10.166.13.2.3.1.2",
1020
+ "status" : "current",
1021
+ "syntax" : {
1022
+ "type" : { "module" :"", "name" : "Unsigned32"},
1023
+ },
1024
+ "access" : "readonly",
1025
+ "description" :
1026
+ """If the gmplsTunnelARHopLabelStatuses object indicates that a
1027
+ Forward Label is present and
1028
+ gmplsTunnelARHopExplicitForwardLabelPtr contains the value
1029
+ zeroDotZero, then the label in use on this hop is found in this
1030
+ object encoded as a 32-bit integer.""",
1031
+ }, # column
1032
+ "gmplsTunnelARHopExplicitForwardLabelPtr" : {
1033
+ "nodetype" : "column",
1034
+ "moduleName" : "GMPLS-TE-STD-MIB",
1035
+ "oid" : "1.3.6.1.2.1.10.166.13.2.3.1.3",
1036
+ "status" : "current",
1037
+ "syntax" : {
1038
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1039
+ },
1040
+ "access" : "readonly",
1041
+ "description" :
1042
+ """If the gmplsTunnelARHopLabelStatuses object indicates that a
1043
+ Forward Label is present, this object contains a pointer to a
1044
+ row in another MIB table (such as the gmplsLabelTable of
1045
+ GMPLS-LABEL-STD-MIB) that contains the label in use on this hop
1046
+ in the forward direction.
1047
+
1048
+ If the gmplsTunnelARHopLabelStatuses object indicates that a
1049
+ Forward Label is present and this object contains the value
1050
+ zeroDotZero, then the label in use on this hop is found in the
1051
+ gmplsTunnelARHopExplicitForwardLabel object.""",
1052
+ }, # column
1053
+ "gmplsTunnelARHopExplicitReverseLabel" : {
1054
+ "nodetype" : "column",
1055
+ "moduleName" : "GMPLS-TE-STD-MIB",
1056
+ "oid" : "1.3.6.1.2.1.10.166.13.2.3.1.4",
1057
+ "status" : "current",
1058
+ "syntax" : {
1059
+ "type" : { "module" :"", "name" : "Unsigned32"},
1060
+ },
1061
+ "access" : "readonly",
1062
+ "description" :
1063
+ """If the gmplsTunnelARHopLabelStatuses object indicates that a
1064
+ Reverse Label is present and
1065
+ gmplsTunnelARHopExplicitReverseLabelPtr contains the value
1066
+ zeroDotZero, then the label in use on this hop is found in this
1067
+ object encoded as a 32-bit integer.""",
1068
+ }, # column
1069
+ "gmplsTunnelARHopExplicitReverseLabelPtr" : {
1070
+ "nodetype" : "column",
1071
+ "moduleName" : "GMPLS-TE-STD-MIB",
1072
+ "oid" : "1.3.6.1.2.1.10.166.13.2.3.1.5",
1073
+ "status" : "current",
1074
+ "syntax" : {
1075
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1076
+ },
1077
+ "access" : "readonly",
1078
+ "description" :
1079
+ """If the gmplsTunnelARHopLabelStatuses object indicates that a
1080
+ Reverse Label is present, this object contains a pointer to a
1081
+ row in another MIB table (such as the gmplsLabelTable of
1082
+ GMPLS-LABEL-STD-MIB) that contains the label in use on this hop
1083
+ in the reverse direction.
1084
+
1085
+ If the gmplsTunnelARHopLabelStatuses object indicates that a
1086
+ Reverse Label is present and this object contains the value
1087
+ zeroDotZero, then the label in use on this hop is found in the
1088
+ gmplsTunnelARHopExplicitReverseLabel object.""",
1089
+ }, # column
1090
+ "gmplsTunnelARHopProtection" : {
1091
+ "nodetype" : "column",
1092
+ "moduleName" : "GMPLS-TE-STD-MIB",
1093
+ "oid" : "1.3.6.1.2.1.10.166.13.2.3.1.6",
1094
+ "status" : "current",
1095
+ "syntax" : {
1096
+ "type" : {
1097
+ "basetype" : "Bits",
1098
+ "localAvailable" : {
1099
+ "nodetype" : "namednumber",
1100
+ "number" : "0"
1101
+ },
1102
+ "localInUse" : {
1103
+ "nodetype" : "namednumber",
1104
+ "number" : "1"
1105
+ },
1106
+ },
1107
+ },
1108
+ "access" : "readonly",
1109
+ "description" :
1110
+ """Availability and usage of protection on the reported link.
1111
+
1112
+ localAvailable
1113
+ This flag is set to indicate that the link downstream of this
1114
+ node is protected via a local repair mechanism.
1115
+
1116
+ localInUse
1117
+ This flag is set to indicate that a local repair mechanism is
1118
+ in use to maintain this tunnel (usually in the face of an
1119
+ outage of the link it was previously routed over).""",
1120
+ "reference" :
1121
+ """1. RSVP-TE: Extensions to RSVP for LSP Tunnels, RFC 3209,
1122
+ section 4.4.1.""",
1123
+ }, # column
1124
+ "gmplsTunnelCHopTable" : {
1125
+ "nodetype" : "table",
1126
+ "moduleName" : "GMPLS-TE-STD-MIB",
1127
+ "oid" : "1.3.6.1.2.1.10.166.13.2.4",
1128
+ "status" : "current",
1129
+ "description" :
1130
+ """The gmplsTunnelCHopTable sparsely extends the
1131
+ mplsTunnelCHopTable of MPLS-TE-STD-MIB. It is used to indicate
1132
+ additional information about the hops of a GMPLS tunnel defined
1133
+ in the mplsTunnelTable and gmplsTunnelTable, as computed by a
1134
+ constraint-based routing protocol, based on the
1135
+ mplsTunnelHopTable and the gmplsTunnelHopTable.
1136
+
1137
+ Each row in this table is indexed by the same indexes as in the
1138
+ mplsTunnelCHopTable. It is acceptable for some rows in the
1139
+ mplsTunnelCHopTable to have corresponding entries in this table
1140
+ and some to have no corresponding entry in this table.
1141
+
1142
+ Please note that since the information necessary to build
1143
+ entries within this table may not be supported by some LSRs,
1144
+ implementation of this table is optional.
1145
+
1146
+ Furthermore, since the information in this table is actually
1147
+ provided by a path computation component after the path has been
1148
+ computed, the entries in this table are provided only for
1149
+ observation, and hence, all objects in this table are accessible
1150
+ exclusively as read-only.""",
1151
+ "reference" :
1152
+ """1. Multiprotocol Label Switching (MPLS) Traffic Engineering (TE)
1153
+ Management Information Base (MIB), RFC 3812.
1154
+ 2. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473.""",
1155
+ }, # table
1156
+ "gmplsTunnelCHopEntry" : {
1157
+ "nodetype" : "row",
1158
+ "moduleName" : "GMPLS-TE-STD-MIB",
1159
+ "oid" : "1.3.6.1.2.1.10.166.13.2.4.1",
1160
+ "status" : "current",
1161
+ "linkage" : [
1162
+ "mplsTunnelCHopListIndex",
1163
+ "mplsTunnelCHopIndex",
1164
+ ],
1165
+ "description" :
1166
+ """An entry in this table represents additions to a computed tunnel
1167
+ hop visible in mplsTunnelCHopEntry. An entry is created by a
1168
+ path computation component based on the hops specified in the
1169
+ corresponding mplsTunnelHopTable and gmplsTunnelHopTable.
1170
+
1171
+ At a transit LSR, this table (if the table is supported) MAY
1172
+ contain the path computed by a path computation engine on (or on
1173
+
1174
+
1175
+
1176
+ behalf of) the transit LSR.""",
1177
+ }, # row
1178
+ "gmplsTunnelCHopLabelStatuses" : {
1179
+ "nodetype" : "column",
1180
+ "moduleName" : "GMPLS-TE-STD-MIB",
1181
+ "oid" : "1.3.6.1.2.1.10.166.13.2.4.1.1",
1182
+ "status" : "current",
1183
+ "syntax" : {
1184
+ "type" : {
1185
+ "basetype" : "Bits",
1186
+ "forwardPresent" : {
1187
+ "nodetype" : "namednumber",
1188
+ "number" : "0"
1189
+ },
1190
+ "reversePresent" : {
1191
+ "nodetype" : "namednumber",
1192
+ "number" : "1"
1193
+ },
1194
+ },
1195
+ },
1196
+ "access" : "readonly",
1197
+ "description" :
1198
+ """This bitmask indicates the presence of labels indicated by the
1199
+ gmplsTunnelCHopExplicitForwardLabel or
1200
+ gmplsTunnelCHopExplicitForwardLabelPtr and
1201
+ gmplsTunnelCHopExplicitReverseLabel or
1202
+ gmplsTunnelCHopExplicitReverseLabelPtr objects.
1203
+
1204
+ A set bit indicates that a label is present for this hop in the
1205
+ route, thus allowing zero to be a valid label value.""",
1206
+ }, # column
1207
+ "gmplsTunnelCHopExplicitForwardLabel" : {
1208
+ "nodetype" : "column",
1209
+ "moduleName" : "GMPLS-TE-STD-MIB",
1210
+ "oid" : "1.3.6.1.2.1.10.166.13.2.4.1.2",
1211
+ "status" : "current",
1212
+ "syntax" : {
1213
+ "type" : { "module" :"", "name" : "Unsigned32"},
1214
+ },
1215
+ "access" : "readonly",
1216
+ "description" :
1217
+ """If the gmplsTunnelCHopLabelStatuses object indicates that a
1218
+ Forward Label is present and
1219
+ gmplsTunnelCHopExplicitForwardLabelPtr contains the value
1220
+ zeroDotZero, then the label to use on this hop is found in this
1221
+ object encoded as a 32-bit integer.""",
1222
+ }, # column
1223
+ "gmplsTunnelCHopExplicitForwardLabelPtr" : {
1224
+ "nodetype" : "column",
1225
+ "moduleName" : "GMPLS-TE-STD-MIB",
1226
+ "oid" : "1.3.6.1.2.1.10.166.13.2.4.1.3",
1227
+ "status" : "current",
1228
+ "syntax" : {
1229
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1230
+ },
1231
+ "access" : "readonly",
1232
+ "description" :
1233
+ """If the gmplsTunnelCHopLabelStatuses object indicates that a
1234
+ Forward Label is present, this object contains a pointer to a
1235
+ row in another MIB table (such as the gmplsLabelTable of
1236
+ GMPLS-LABEL-STD-MIB) that contains the label to use on this hop
1237
+ in the forward direction.
1238
+
1239
+ If the gmplsTunnelCHopLabelStatuses object indicates that a
1240
+ Forward Label is present and this object contains the value
1241
+ zeroDotZero, then the label to use on this hop is found in the
1242
+ gmplsTunnelCHopExplicitForwardLabel object.""",
1243
+ }, # column
1244
+ "gmplsTunnelCHopExplicitReverseLabel" : {
1245
+ "nodetype" : "column",
1246
+ "moduleName" : "GMPLS-TE-STD-MIB",
1247
+ "oid" : "1.3.6.1.2.1.10.166.13.2.4.1.4",
1248
+ "status" : "current",
1249
+ "syntax" : {
1250
+ "type" : { "module" :"", "name" : "Unsigned32"},
1251
+ },
1252
+ "access" : "readonly",
1253
+ "description" :
1254
+ """If the gmplsTunnelCHopLabelStatuses object indicates that a
1255
+ Reverse Label is present and
1256
+ gmplsTunnelCHopExplicitReverseLabelPtr contains the value
1257
+ zeroDotZero, then the label to use on this hop is found in this
1258
+ object encoded as a 32-bit integer.""",
1259
+ }, # column
1260
+ "gmplsTunnelCHopExplicitReverseLabelPtr" : {
1261
+ "nodetype" : "column",
1262
+ "moduleName" : "GMPLS-TE-STD-MIB",
1263
+ "oid" : "1.3.6.1.2.1.10.166.13.2.4.1.5",
1264
+ "status" : "current",
1265
+ "syntax" : {
1266
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1267
+ },
1268
+ "access" : "readonly",
1269
+ "description" :
1270
+ """If the gmplsTunnelCHopLabelStatuses object indicates that a
1271
+ Reverse Label is present, this object contains a pointer to a
1272
+ row in another MIB table (such as the gmplsLabelTable of
1273
+ GMPLS-LABEL-STD-MIB) that contains the label to use on this hop
1274
+ in the reverse direction.
1275
+
1276
+ If the gmplsTunnelCHopLabelStatuses object indicates that a
1277
+ Reverse Label is present and this object contains the value
1278
+ zeroDotZero, then the label to use on this hop is found in the
1279
+ gmplsTunnelCHopExplicitReverseLabel object.""",
1280
+ }, # column
1281
+ "gmplsTunnelReversePerfTable" : {
1282
+ "nodetype" : "table",
1283
+ "moduleName" : "GMPLS-TE-STD-MIB",
1284
+ "oid" : "1.3.6.1.2.1.10.166.13.2.5",
1285
+ "status" : "current",
1286
+ "description" :
1287
+ """This table augments the gmplsTunnelTable to provide
1288
+ per-tunnel packet performance information for the reverse
1289
+ direction of a bidirectional tunnel. It can be seen as
1290
+ supplementing the mplsTunnelPerfTable, which augments the
1291
+ mplsTunnelTable.
1292
+
1293
+ For links that do not transport packets, these packet counters
1294
+ cannot be maintained. For such links, attempts to read the
1295
+ objects in this table will return noSuchInstance.
1296
+
1297
+ A tunnel can be known to be bidirectional by inspecting the
1298
+ gmplsTunnelDirection object.""",
1299
+ "reference" :
1300
+ """1. Multiprotocol Label Switching (MPLS) Traffic Engineering (TE)
1301
+ Management Information Base (MIB), RFC 3812.""",
1302
+ }, # table
1303
+ "gmplsTunnelReversePerfEntry" : {
1304
+ "nodetype" : "row",
1305
+ "moduleName" : "GMPLS-TE-STD-MIB",
1306
+ "oid" : "1.3.6.1.2.1.10.166.13.2.5.1",
1307
+ "status" : "current",
1308
+ "linkage" : [
1309
+ { "GMPLS-TE-STD-MIB" : {
1310
+ "indexkind" : "augments",
1311
+ "relatedNode" : "gmplsTunnelEntry",
1312
+ }},
1313
+ ],
1314
+ "description" :
1315
+ """An entry in this table is created by the LSR for every
1316
+ bidirectional GMPLS tunnel where packets are visible to the
1317
+ LSR.""",
1318
+ }, # row
1319
+ "gmplsTunnelReversePerfPackets" : {
1320
+ "nodetype" : "column",
1321
+ "moduleName" : "GMPLS-TE-STD-MIB",
1322
+ "oid" : "1.3.6.1.2.1.10.166.13.2.5.1.1",
1323
+ "status" : "current",
1324
+ "syntax" : {
1325
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1326
+ },
1327
+ "access" : "readonly",
1328
+ "description" :
1329
+ """Number of packets forwarded on the tunnel in the reverse
1330
+ direction if it is bidirectional.
1331
+
1332
+ This object represents the 32-bit value of the least
1333
+ significant part of the 64-bit value if both
1334
+ gmplsTunnelReversePerfHCPackets and this object are returned.
1335
+
1336
+
1337
+
1338
+
1339
+ For links that do not transport packets, this packet counter
1340
+ cannot be maintained. For such links, this value will return
1341
+ noSuchInstance.""",
1342
+ }, # column
1343
+ "gmplsTunnelReversePerfHCPackets" : {
1344
+ "nodetype" : "column",
1345
+ "moduleName" : "GMPLS-TE-STD-MIB",
1346
+ "oid" : "1.3.6.1.2.1.10.166.13.2.5.1.2",
1347
+ "status" : "current",
1348
+ "syntax" : {
1349
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1350
+ },
1351
+ "access" : "readonly",
1352
+ "description" :
1353
+ """High-capacity counter for number of packets forwarded on the
1354
+ tunnel in the reverse direction if it is bidirectional.
1355
+
1356
+ For links that do not transport packets, this packet counter
1357
+ cannot be maintained. For such links, this value will return
1358
+ noSuchInstance.""",
1359
+ }, # column
1360
+ "gmplsTunnelReversePerfErrors" : {
1361
+ "nodetype" : "column",
1362
+ "moduleName" : "GMPLS-TE-STD-MIB",
1363
+ "oid" : "1.3.6.1.2.1.10.166.13.2.5.1.3",
1364
+ "status" : "current",
1365
+ "syntax" : {
1366
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1367
+ },
1368
+ "access" : "readonly",
1369
+ "description" :
1370
+ """Number of errored packets received on the tunnel in the reverse
1371
+ direction if it is bidirectional. For links that do not
1372
+ transport packets, this packet counter cannot be maintained. For
1373
+ such links, this value will return noSuchInstance.""",
1374
+ }, # column
1375
+ "gmplsTunnelReversePerfBytes" : {
1376
+ "nodetype" : "column",
1377
+ "moduleName" : "GMPLS-TE-STD-MIB",
1378
+ "oid" : "1.3.6.1.2.1.10.166.13.2.5.1.4",
1379
+ "status" : "current",
1380
+ "syntax" : {
1381
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1382
+ },
1383
+ "access" : "readonly",
1384
+ "description" :
1385
+ """Number of bytes forwarded on the tunnel in the reverse direction
1386
+ if it is bidirectional.
1387
+
1388
+ This object represents the 32-bit value of the least
1389
+ significant part of the 64-bit value if both
1390
+ gmplsTunnelReversePerfHCBytes and this object are returned.
1391
+
1392
+ For links that do not transport packets, this packet counter
1393
+ cannot be maintained. For such links, this value will return
1394
+ noSuchInstance.""",
1395
+ }, # column
1396
+ "gmplsTunnelReversePerfHCBytes" : {
1397
+ "nodetype" : "column",
1398
+ "moduleName" : "GMPLS-TE-STD-MIB",
1399
+ "oid" : "1.3.6.1.2.1.10.166.13.2.5.1.5",
1400
+ "status" : "current",
1401
+ "syntax" : {
1402
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1403
+ },
1404
+ "access" : "readonly",
1405
+ "description" :
1406
+ """High-capacity counter for number of bytes forwarded on the
1407
+ tunnel in the reverse direction if it is bidirectional.
1408
+
1409
+ For links that do not transport packets, this packet counter
1410
+ cannot be maintained. For such links, this value will return
1411
+ noSuchInstance.""",
1412
+ }, # column
1413
+ "gmplsTunnelErrorTable" : {
1414
+ "nodetype" : "table",
1415
+ "moduleName" : "GMPLS-TE-STD-MIB",
1416
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6",
1417
+ "status" : "current",
1418
+ "description" :
1419
+ """This table augments the mplsTunnelTable.
1420
+
1421
+ This table provides per-tunnel information about errors. Errors
1422
+ may be detected locally or reported through the signaling
1423
+ protocol. Error reporting is not exclusive to GMPLS, and this
1424
+ table may be applied in MPLS systems.
1425
+
1426
+ Entries in this table are not persistent over system resets
1427
+ or re-initializations of the management system.""",
1428
+ "reference" :
1429
+ """1. Multiprotocol Label Switching (MPLS) Traffic Engineering (TE)
1430
+ Management Information Base (MIB), RFC 3812.""",
1431
+ }, # table
1432
+ "gmplsTunnelErrorEntry" : {
1433
+ "nodetype" : "row",
1434
+ "moduleName" : "GMPLS-TE-STD-MIB",
1435
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1",
1436
+ "status" : "current",
1437
+ "linkage" : [
1438
+ { "MPLS-TE-STD-MIB" : {
1439
+ "indexkind" : "augments",
1440
+ "relatedNode" : "mplsTunnelEntry",
1441
+ }},
1442
+ ],
1443
+ "description" :
1444
+ """An entry in this table is created by the LSR for every tunnel
1445
+ where error information is visible to the LSR.
1446
+
1447
+ Note that systems that read the objects in this table one at
1448
+ a time and do not perform atomic operations to read entire
1449
+ instantiated table rows at once, should, for each conceptual
1450
+ column with valid data, read gmplsTunnelErrorLastTime
1451
+ prior to the other objects in the row and again subsequent to
1452
+ reading the last object of the row. They should verify that
1453
+ the value of gmplsTunnelErrorLastTime did not change and
1454
+ thereby ensure that all data read belongs to the same error
1455
+ event.""",
1456
+ }, # row
1457
+ "gmplsTunnelErrorLastErrorType" : {
1458
+ "nodetype" : "column",
1459
+ "moduleName" : "GMPLS-TE-STD-MIB",
1460
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1.1",
1461
+ "status" : "current",
1462
+ "syntax" : {
1463
+ "type" : {
1464
+ "basetype" : "Enumeration",
1465
+ "noError" : {
1466
+ "nodetype" : "namednumber",
1467
+ "number" : "0"
1468
+ },
1469
+ "unknown" : {
1470
+ "nodetype" : "namednumber",
1471
+ "number" : "1"
1472
+ },
1473
+ "protocol" : {
1474
+ "nodetype" : "namednumber",
1475
+ "number" : "2"
1476
+ },
1477
+ "pathComputation" : {
1478
+ "nodetype" : "namednumber",
1479
+ "number" : "3"
1480
+ },
1481
+ "localConfiguration" : {
1482
+ "nodetype" : "namednumber",
1483
+ "number" : "4"
1484
+ },
1485
+ "localResources" : {
1486
+ "nodetype" : "namednumber",
1487
+ "number" : "5"
1488
+ },
1489
+ "localOther" : {
1490
+ "nodetype" : "namednumber",
1491
+ "number" : "6"
1492
+ },
1493
+ },
1494
+ },
1495
+ "access" : "readonly",
1496
+ "description" :
1497
+ """The nature of the last error. Provides interpretation context
1498
+ for gmplsTunnelErrorProtocolCode and
1499
+ gmplsTunnelErrorProtocolSubcode.
1500
+
1501
+ A value of noError(0) shows that there is no error associated
1502
+ with this tunnel and means that the other objects in this table
1503
+ entry (conceptual row) have no meaning.
1504
+
1505
+ A value of unknown(1) shows that there is an error but that no
1506
+ additional information about the cause is known. The error may
1507
+ have been received in a signaled message or generated locally.
1508
+
1509
+ A value of protocol(2) or pathComputation(3) indicates the
1510
+ cause of an error and identifies an error that has been received
1511
+ through signaling or will itself be signaled.
1512
+
1513
+ A value of localConfiguration(4), localResources(5) or
1514
+ localOther(6) identifies an error that has been detected
1515
+ by the local node but that will not be reported through
1516
+ signaling.""",
1517
+ }, # column
1518
+ "gmplsTunnelErrorLastTime" : {
1519
+ "nodetype" : "column",
1520
+ "moduleName" : "GMPLS-TE-STD-MIB",
1521
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1.2",
1522
+ "status" : "current",
1523
+ "syntax" : {
1524
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1525
+ },
1526
+ "access" : "readonly",
1527
+ "description" :
1528
+ """The time at which the last error occurred. This is presented as
1529
+ the value of SysUpTime when the error occurred or was reported
1530
+ to this node.
1531
+
1532
+ If gmplsTunnelErrorLastErrorType has the value noError(0), then
1533
+ this object is not valid and should be ignored.
1534
+
1535
+ Note that entries in this table are not persistent over system
1536
+ resets or re-initializations of the management system.""",
1537
+ }, # column
1538
+ "gmplsTunnelErrorReporterType" : {
1539
+ "nodetype" : "column",
1540
+ "moduleName" : "GMPLS-TE-STD-MIB",
1541
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1.3",
1542
+ "status" : "current",
1543
+ "syntax" : {
1544
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1545
+ },
1546
+ "access" : "readonly",
1547
+ "description" :
1548
+ """The address type of the error reported.
1549
+
1550
+ This object is used to aid in interpretation of
1551
+ gmplsTunnelErrorReporter.""",
1552
+ }, # column
1553
+ "gmplsTunnelErrorReporter" : {
1554
+ "nodetype" : "column",
1555
+ "moduleName" : "GMPLS-TE-STD-MIB",
1556
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1.4",
1557
+ "status" : "current",
1558
+ "syntax" : {
1559
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1560
+ },
1561
+ "access" : "readonly",
1562
+ "description" :
1563
+ """The address of the node reporting the last error, or the address
1564
+ of the resource (such as an interface) associated with the
1565
+ error.
1566
+
1567
+ If gmplsTunnelErrorLastErrorType has the value noError(0), then
1568
+ this object is not valid and should be ignored.
1569
+
1570
+ If gmplsTunnelErrorLastErrorType has the value unknown(1),
1571
+ localConfiguration(4), localResources(5), or localOther(6),
1572
+ this object MAY contain a zero value.
1573
+
1574
+ This object should be interpreted in the context of the value of
1575
+ the object gmplsTunnelErrorReporterType.""",
1576
+ "reference" :
1577
+ """1. Textual Conventions for Internet Network Addresses, RFC 4001,
1578
+ section 4, Usage Hints.""",
1579
+ }, # column
1580
+ "gmplsTunnelErrorCode" : {
1581
+ "nodetype" : "column",
1582
+ "moduleName" : "GMPLS-TE-STD-MIB",
1583
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1.5",
1584
+ "status" : "current",
1585
+ "syntax" : {
1586
+ "type" : { "module" :"", "name" : "Unsigned32"},
1587
+ },
1588
+ "access" : "readonly",
1589
+ "description" :
1590
+ """The primary error code associated with the last error.
1591
+
1592
+ The interpretation of this error code depends on the value of
1593
+ gmplsTunnelErrorLastErrorType. If the value of
1594
+ gmplsTunnelErrorLastErrorType is noError(0), the value of this
1595
+ object should be 0 and should be ignored. If the value of
1596
+ gmplsTunnelErrorLastErrorType is protocol(2), the error should
1597
+ be interpreted in the context of the signaling protocol
1598
+ identified by the mplsTunnelSignallingProto object.""",
1599
+ "reference" :
1600
+ """1. Resource ReserVation Protocol -- Version 1 Functional
1601
+ Specification, RFC 2205, section B.
1602
+ 2. RSVP-TE: Extensions to RSVP for LSP Tunnels, RFC 3209,
1603
+ section 7.3.
1604
+ 3. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473,
1605
+ section 13.1.""",
1606
+ }, # column
1607
+ "gmplsTunnelErrorSubcode" : {
1608
+ "nodetype" : "column",
1609
+ "moduleName" : "GMPLS-TE-STD-MIB",
1610
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1.6",
1611
+ "status" : "current",
1612
+ "syntax" : {
1613
+ "type" : { "module" :"", "name" : "Unsigned32"},
1614
+ },
1615
+ "access" : "readonly",
1616
+ "description" :
1617
+ """The secondary error code associated with the last error and the
1618
+ protocol used to signal this tunnel. This value is interpreted
1619
+ in the context of the value of gmplsTunnelErrorCode.
1620
+ If the value of gmplsTunnelErrorLastErrorType is noError(0), the
1621
+ value of this object should be 0 and should be ignored.""",
1622
+ "reference" :
1623
+ """1. Resource ReserVation Protocol -- Version 1 Functional
1624
+ Specification, RFC 2205, section B.
1625
+ 2. RSVP-TE: Extensions to RSVP for LSP Tunnels, RFC 3209,
1626
+ section 7.3.
1627
+ 3. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473,
1628
+ section 13.1. """,
1629
+ }, # column
1630
+ "gmplsTunnelErrorTLVs" : {
1631
+ "nodetype" : "column",
1632
+ "moduleName" : "GMPLS-TE-STD-MIB",
1633
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1.7",
1634
+ "status" : "current",
1635
+ "syntax" : {
1636
+ "type" : {
1637
+ "basetype" : "OctetString",
1638
+ "ranges" : [
1639
+ {
1640
+ "min" : "0",
1641
+ "max" : "65535"
1642
+ },
1643
+ ],
1644
+ "range" : {
1645
+ "min" : "0",
1646
+ "max" : "65535"
1647
+ },
1648
+ },
1649
+ },
1650
+ "access" : "readonly",
1651
+ "description" :
1652
+ """The sequence of interface identifier TLVs reported with the
1653
+ error by the protocol code. The interpretation of the TLVs and
1654
+ the encoding within the protocol are described in the
1655
+ references. A value of zero in the first octet indicates that no
1656
+ TLVs are present.""",
1657
+ "reference" :
1658
+ """1. Generalized MPLS Signaling - RSVP-TE Extensions, RFC 3473,
1659
+ section 8.2.""",
1660
+ }, # column
1661
+ "gmplsTunnelErrorHelpString" : {
1662
+ "nodetype" : "column",
1663
+ "moduleName" : "GMPLS-TE-STD-MIB",
1664
+ "oid" : "1.3.6.1.2.1.10.166.13.2.6.1.8",
1665
+ "status" : "current",
1666
+ "syntax" : {
1667
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1668
+ },
1669
+ "access" : "readonly",
1670
+ "description" :
1671
+ """A textual string containing information about the last error,
1672
+ recovery actions, and support advice. If there is no help string,
1673
+ this object contains a zero length string.
1674
+ If the value of gmplsTunnelErrorLastErrorType is noError(0),
1675
+ this object should contain a zero length string, but may contain
1676
+ a help string indicating that there is no error.""",
1677
+ }, # column
1678
+ "gmplsTeConformance" : {
1679
+ "nodetype" : "node",
1680
+ "moduleName" : "GMPLS-TE-STD-MIB",
1681
+ "oid" : "1.3.6.1.2.1.10.166.13.3",
1682
+ }, # node
1683
+ "gmplsTeGroups" : {
1684
+ "nodetype" : "node",
1685
+ "moduleName" : "GMPLS-TE-STD-MIB",
1686
+ "oid" : "1.3.6.1.2.1.10.166.13.3.1",
1687
+ }, # node
1688
+ "gmplsTeCompliances" : {
1689
+ "nodetype" : "node",
1690
+ "moduleName" : "GMPLS-TE-STD-MIB",
1691
+ "oid" : "1.3.6.1.2.1.10.166.13.3.2",
1692
+ }, # node
1693
+ }, # nodes
1694
+
1695
+ "notifications" : {
1696
+ "gmplsTunnelDown" : {
1697
+ "nodetype" : "notification",
1698
+ "moduleName" : "GMPLS-TE-STD-MIB",
1699
+ "oid" : "1.3.6.1.2.1.10.166.13.0.1",
1700
+ "status" : "current",
1701
+ "objects" : {
1702
+ "mplsTunnelAdminStatus" : {
1703
+ "nodetype" : "object",
1704
+ "module" : "MPLS-TE-STD-MIB"
1705
+ },
1706
+ "mplsTunnelOperStatus" : {
1707
+ "nodetype" : "object",
1708
+ "module" : "MPLS-TE-STD-MIB"
1709
+ },
1710
+ "gmplsTunnelErrorLastErrorType" : {
1711
+ "nodetype" : "object",
1712
+ "module" : "GMPLS-TE-STD-MIB"
1713
+ },
1714
+ "gmplsTunnelErrorReporterType" : {
1715
+ "nodetype" : "object",
1716
+ "module" : "GMPLS-TE-STD-MIB"
1717
+ },
1718
+ "gmplsTunnelErrorReporter" : {
1719
+ "nodetype" : "object",
1720
+ "module" : "GMPLS-TE-STD-MIB"
1721
+ },
1722
+ "gmplsTunnelErrorCode" : {
1723
+ "nodetype" : "object",
1724
+ "module" : "GMPLS-TE-STD-MIB"
1725
+ },
1726
+ "gmplsTunnelErrorSubcode" : {
1727
+ "nodetype" : "object",
1728
+ "module" : "GMPLS-TE-STD-MIB"
1729
+ },
1730
+ },
1731
+ "description" :
1732
+ """This notification is generated when an mplsTunnelOperStatus
1733
+ object for a tunnel in the gmplsTunnelTable is about to enter
1734
+ the down state from some other state (but not from the
1735
+ notPresent state). This other state is indicated by the
1736
+ included value of mplsTunnelOperStatus.
1737
+
1738
+ The objects in this notification provide additional error
1739
+ information that indicates the reason why the tunnel has
1740
+
1741
+
1742
+
1743
+ transitioned to down(2).
1744
+
1745
+ Note that an implementation MUST only issue one of
1746
+ mplsTunnelDown and gmplsTunnelDown for any single event on a
1747
+ single tunnel. If the tunnel has an entry in the
1748
+ gmplsTunnelTable, an implementation SHOULD use gmplsTunnelDown
1749
+ for all tunnel-down events and SHOULD NOT use mplsTunnelDown.
1750
+
1751
+ This notification is subject to the control of
1752
+ mplsTunnelNotificationEnable. When that object is set
1753
+ to false(2), then the notification must not be issued.
1754
+
1755
+ Further, this notification is also subject to
1756
+ mplsTunnelNotificationMaxRate. That object indicates the
1757
+ maximum number of notifications issued per second. If events
1758
+ occur more rapidly, the implementation may simply fail to emit
1759
+ some notifications during that period, or may queue them until
1760
+ an appropriate time. The notification rate applies to the sum
1761
+ of all notifications in the MPLS-TE-STD-MIB and
1762
+ GMPLS-TE-STD-MIB modules applied across the whole of the
1763
+ reporting device.
1764
+
1765
+ mplsTunnelOperStatus, mplsTunnelAdminStatus, mplsTunnelDown,
1766
+ mplsTunnelNotificationEnable, and mplsTunnelNotificationMaxRate
1767
+ objects are found in MPLS-TE-STD-MIB.""",
1768
+ "reference" :
1769
+ """1. Multiprotocol Label Switching (MPLS) Traffic Engineering
1770
+ (TE) Management Information Base (MIB), RFC 3812.""",
1771
+ }, # notification
1772
+ }, # notifications
1773
+
1774
+ "groups" : {
1775
+ "gmplsTunnelGroup" : {
1776
+ "nodetype" : "group",
1777
+ "moduleName" : "GMPLS-TE-STD-MIB",
1778
+ "oid" : "1.3.6.1.2.1.10.166.13.3.1.1",
1779
+ "status" : "current",
1780
+ "members" : {
1781
+ "gmplsTunnelDirection" : {
1782
+ "nodetype" : "member",
1783
+ "module" : "GMPLS-TE-STD-MIB"
1784
+ },
1785
+ "gmplsTunnelReversePerfPackets" : {
1786
+ "nodetype" : "member",
1787
+ "module" : "GMPLS-TE-STD-MIB"
1788
+ },
1789
+ "gmplsTunnelReversePerfHCPackets" : {
1790
+ "nodetype" : "member",
1791
+ "module" : "GMPLS-TE-STD-MIB"
1792
+ },
1793
+ "gmplsTunnelReversePerfErrors" : {
1794
+ "nodetype" : "member",
1795
+ "module" : "GMPLS-TE-STD-MIB"
1796
+ },
1797
+ "gmplsTunnelReversePerfBytes" : {
1798
+ "nodetype" : "member",
1799
+ "module" : "GMPLS-TE-STD-MIB"
1800
+ },
1801
+ "gmplsTunnelReversePerfHCBytes" : {
1802
+ "nodetype" : "member",
1803
+ "module" : "GMPLS-TE-STD-MIB"
1804
+ },
1805
+ "gmplsTunnelErrorLastErrorType" : {
1806
+ "nodetype" : "member",
1807
+ "module" : "GMPLS-TE-STD-MIB"
1808
+ },
1809
+ "gmplsTunnelErrorLastTime" : {
1810
+ "nodetype" : "member",
1811
+ "module" : "GMPLS-TE-STD-MIB"
1812
+ },
1813
+ "gmplsTunnelErrorReporterType" : {
1814
+ "nodetype" : "member",
1815
+ "module" : "GMPLS-TE-STD-MIB"
1816
+ },
1817
+ "gmplsTunnelErrorReporter" : {
1818
+ "nodetype" : "member",
1819
+ "module" : "GMPLS-TE-STD-MIB"
1820
+ },
1821
+ "gmplsTunnelErrorCode" : {
1822
+ "nodetype" : "member",
1823
+ "module" : "GMPLS-TE-STD-MIB"
1824
+ },
1825
+ "gmplsTunnelErrorSubcode" : {
1826
+ "nodetype" : "member",
1827
+ "module" : "GMPLS-TE-STD-MIB"
1828
+ },
1829
+ "gmplsTunnelErrorTLVs" : {
1830
+ "nodetype" : "member",
1831
+ "module" : "GMPLS-TE-STD-MIB"
1832
+ },
1833
+ "gmplsTunnelErrorHelpString" : {
1834
+ "nodetype" : "member",
1835
+ "module" : "GMPLS-TE-STD-MIB"
1836
+ },
1837
+ "gmplsTunnelUnnumIf" : {
1838
+ "nodetype" : "member",
1839
+ "module" : "GMPLS-TE-STD-MIB"
1840
+ },
1841
+ }, # members
1842
+ "description" :
1843
+ """Necessary, but not sufficient, set of objects to implement
1844
+ tunnels. In addition, depending on the type of the tunnels
1845
+ supported (for example, manually configured or signaled,
1846
+ persistent or non-persistent, etc.), the
1847
+ gmplsTunnelSignaledGroup group is mandatory.""",
1848
+ }, # group
1849
+ "gmplsTunnelSignaledGroup" : {
1850
+ "nodetype" : "group",
1851
+ "moduleName" : "GMPLS-TE-STD-MIB",
1852
+ "oid" : "1.3.6.1.2.1.10.166.13.3.1.2",
1853
+ "status" : "current",
1854
+ "members" : {
1855
+ "gmplsTunnelAttributes" : {
1856
+ "nodetype" : "member",
1857
+ "module" : "GMPLS-TE-STD-MIB"
1858
+ },
1859
+ "gmplsTunnelLSPEncoding" : {
1860
+ "nodetype" : "member",
1861
+ "module" : "GMPLS-TE-STD-MIB"
1862
+ },
1863
+ "gmplsTunnelSwitchingType" : {
1864
+ "nodetype" : "member",
1865
+ "module" : "GMPLS-TE-STD-MIB"
1866
+ },
1867
+ "gmplsTunnelLinkProtection" : {
1868
+ "nodetype" : "member",
1869
+ "module" : "GMPLS-TE-STD-MIB"
1870
+ },
1871
+ "gmplsTunnelGPid" : {
1872
+ "nodetype" : "member",
1873
+ "module" : "GMPLS-TE-STD-MIB"
1874
+ },
1875
+ "gmplsTunnelSecondary" : {
1876
+ "nodetype" : "member",
1877
+ "module" : "GMPLS-TE-STD-MIB"
1878
+ },
1879
+ "gmplsTunnelPathComp" : {
1880
+ "nodetype" : "member",
1881
+ "module" : "GMPLS-TE-STD-MIB"
1882
+ },
1883
+ "gmplsTunnelUpstreamNotifyRecipientType" : {
1884
+ "nodetype" : "member",
1885
+ "module" : "GMPLS-TE-STD-MIB"
1886
+ },
1887
+ "gmplsTunnelUpstreamNotifyRecipient" : {
1888
+ "nodetype" : "member",
1889
+ "module" : "GMPLS-TE-STD-MIB"
1890
+ },
1891
+ "gmplsTunnelSendResvNotifyRecipientType" : {
1892
+ "nodetype" : "member",
1893
+ "module" : "GMPLS-TE-STD-MIB"
1894
+ },
1895
+ "gmplsTunnelSendResvNotifyRecipient" : {
1896
+ "nodetype" : "member",
1897
+ "module" : "GMPLS-TE-STD-MIB"
1898
+ },
1899
+ "gmplsTunnelDownstreamNotifyRecipientType" : {
1900
+ "nodetype" : "member",
1901
+ "module" : "GMPLS-TE-STD-MIB"
1902
+ },
1903
+ "gmplsTunnelDownstreamNotifyRecipient" : {
1904
+ "nodetype" : "member",
1905
+ "module" : "GMPLS-TE-STD-MIB"
1906
+ },
1907
+ "gmplsTunnelSendPathNotifyRecipientType" : {
1908
+ "nodetype" : "member",
1909
+ "module" : "GMPLS-TE-STD-MIB"
1910
+ },
1911
+ "gmplsTunnelSendPathNotifyRecipient" : {
1912
+ "nodetype" : "member",
1913
+ "module" : "GMPLS-TE-STD-MIB"
1914
+ },
1915
+ "gmplsTunnelAdminStatusFlags" : {
1916
+ "nodetype" : "member",
1917
+ "module" : "GMPLS-TE-STD-MIB"
1918
+ },
1919
+ "gmplsTunnelHopLabelStatuses" : {
1920
+ "nodetype" : "member",
1921
+ "module" : "GMPLS-TE-STD-MIB"
1922
+ },
1923
+ "gmplsTunnelHopExplicitForwardLabel" : {
1924
+ "nodetype" : "member",
1925
+ "module" : "GMPLS-TE-STD-MIB"
1926
+ },
1927
+ "gmplsTunnelHopExplicitForwardLabelPtr" : {
1928
+ "nodetype" : "member",
1929
+ "module" : "GMPLS-TE-STD-MIB"
1930
+ },
1931
+ "gmplsTunnelHopExplicitReverseLabel" : {
1932
+ "nodetype" : "member",
1933
+ "module" : "GMPLS-TE-STD-MIB"
1934
+ },
1935
+ "gmplsTunnelHopExplicitReverseLabelPtr" : {
1936
+ "nodetype" : "member",
1937
+ "module" : "GMPLS-TE-STD-MIB"
1938
+ },
1939
+ }, # members
1940
+ "description" :
1941
+ """Objects needed to implement signaled tunnels.""",
1942
+ }, # group
1943
+ "gmplsTunnelScalarGroup" : {
1944
+ "nodetype" : "group",
1945
+ "moduleName" : "GMPLS-TE-STD-MIB",
1946
+ "oid" : "1.3.6.1.2.1.10.166.13.3.1.3",
1947
+ "status" : "current",
1948
+ "members" : {
1949
+ "gmplsTunnelsConfigured" : {
1950
+ "nodetype" : "member",
1951
+ "module" : "GMPLS-TE-STD-MIB"
1952
+ },
1953
+ "gmplsTunnelsActive" : {
1954
+ "nodetype" : "member",
1955
+ "module" : "GMPLS-TE-STD-MIB"
1956
+ },
1957
+ }, # members
1958
+ "description" :
1959
+ """Scalar objects needed to implement MPLS tunnels.""",
1960
+ }, # group
1961
+ "gmplsTunnelOptionalGroup" : {
1962
+ "nodetype" : "group",
1963
+ "moduleName" : "GMPLS-TE-STD-MIB",
1964
+ "oid" : "1.3.6.1.2.1.10.166.13.3.1.4",
1965
+ "status" : "current",
1966
+ "members" : {
1967
+ "gmplsTunnelExtraParamsPtr" : {
1968
+ "nodetype" : "member",
1969
+ "module" : "GMPLS-TE-STD-MIB"
1970
+ },
1971
+ "gmplsTunnelARHopLabelStatuses" : {
1972
+ "nodetype" : "member",
1973
+ "module" : "GMPLS-TE-STD-MIB"
1974
+ },
1975
+ "gmplsTunnelARHopExplicitForwardLabel" : {
1976
+ "nodetype" : "member",
1977
+ "module" : "GMPLS-TE-STD-MIB"
1978
+ },
1979
+ "gmplsTunnelARHopExplicitForwardLabelPtr" : {
1980
+ "nodetype" : "member",
1981
+ "module" : "GMPLS-TE-STD-MIB"
1982
+ },
1983
+ "gmplsTunnelARHopExplicitReverseLabel" : {
1984
+ "nodetype" : "member",
1985
+ "module" : "GMPLS-TE-STD-MIB"
1986
+ },
1987
+ "gmplsTunnelARHopExplicitReverseLabelPtr" : {
1988
+ "nodetype" : "member",
1989
+ "module" : "GMPLS-TE-STD-MIB"
1990
+ },
1991
+ "gmplsTunnelARHopProtection" : {
1992
+ "nodetype" : "member",
1993
+ "module" : "GMPLS-TE-STD-MIB"
1994
+ },
1995
+ "gmplsTunnelCHopLabelStatuses" : {
1996
+ "nodetype" : "member",
1997
+ "module" : "GMPLS-TE-STD-MIB"
1998
+ },
1999
+ "gmplsTunnelCHopExplicitForwardLabel" : {
2000
+ "nodetype" : "member",
2001
+ "module" : "GMPLS-TE-STD-MIB"
2002
+ },
2003
+ "gmplsTunnelCHopExplicitForwardLabelPtr" : {
2004
+ "nodetype" : "member",
2005
+ "module" : "GMPLS-TE-STD-MIB"
2006
+ },
2007
+ "gmplsTunnelCHopExplicitReverseLabel" : {
2008
+ "nodetype" : "member",
2009
+ "module" : "GMPLS-TE-STD-MIB"
2010
+ },
2011
+ "gmplsTunnelCHopExplicitReverseLabelPtr" : {
2012
+ "nodetype" : "member",
2013
+ "module" : "GMPLS-TE-STD-MIB"
2014
+ },
2015
+ }, # members
2016
+ "description" :
2017
+ """The objects in this group are optional.""",
2018
+ }, # group
2019
+ "gmplsTeNotificationGroup" : {
2020
+ "nodetype" : "group",
2021
+ "moduleName" : "GMPLS-TE-STD-MIB",
2022
+ "oid" : "1.3.6.1.2.1.10.166.13.3.1.5",
2023
+ "status" : "current",
2024
+ "members" : {
2025
+ "gmplsTunnelDown" : {
2026
+ "nodetype" : "member",
2027
+ "module" : "GMPLS-TE-STD-MIB"
2028
+ },
2029
+ }, # members
2030
+ "description" :
2031
+ """Set of notifications implemented in this module. None is
2032
+ mandatory.""",
2033
+ }, # group
2034
+ }, # groups
2035
+
2036
+ "compliances" : {
2037
+ "gmplsTeModuleFullCompliance" : {
2038
+ "nodetype" : "compliance",
2039
+ "moduleName" : "GMPLS-TE-STD-MIB",
2040
+ "oid" : "1.3.6.1.2.1.10.166.13.3.2.1",
2041
+ "status" : "current",
2042
+ "description" :
2043
+ """Compliance statement for agents that provide full support for
2044
+ GMPLS-TE-STD-MIB. Such devices can then be monitored and also
2045
+ be configured using this MIB module.
2046
+
2047
+ The mandatory group has to be implemented by all LSRs that
2048
+ originate, terminate, or act as transit for TE-LSPs/tunnels.
2049
+ In addition, depending on the type of tunnels supported, other
2050
+
2051
+
2052
+
2053
+ groups become mandatory as explained below.""",
2054
+ "requires" : {
2055
+ "mplsTunnelGroup" : {
2056
+ "nodetype" : "mandatory",
2057
+ "module" : "MPLS-TE-STD-MIB"
2058
+ },
2059
+ "mplsTunnelScalarGroup" : {
2060
+ "nodetype" : "mandatory",
2061
+ "module" : "MPLS-TE-STD-MIB"
2062
+ },
2063
+ "gmplsTunnelGroup" : {
2064
+ "nodetype" : "mandatory",
2065
+ "module" : "GMPLS-TE-STD-MIB"
2066
+ },
2067
+ "gmplsTunnelScalarGroup" : {
2068
+ "nodetype" : "mandatory",
2069
+ "module" : "GMPLS-TE-STD-MIB"
2070
+ },
2071
+ "gmplsTunnelSignaledGroup" : {
2072
+ "nodetype" : "optional",
2073
+ "module" : "GMPLS-TE-STD-MIB",
2074
+ "description" :
2075
+ """This group is mandatory for devices that support signaled
2076
+ tunnel set up, in addition to gmplsTunnelGroup. The following
2077
+ constraints apply:
2078
+ mplsTunnelSignallingProto should be at least read-only
2079
+ returning a value of ldp(2) or rsvp(3).""",
2080
+ },
2081
+ "gmplsTunnelOptionalGroup" : {
2082
+ "nodetype" : "optional",
2083
+ "module" : "GMPLS-TE-STD-MIB",
2084
+ "description" :
2085
+ """Objects in this group are optional.""",
2086
+ },
2087
+ "gmplsTeNotificationGroup" : {
2088
+ "nodetype" : "optional",
2089
+ "module" : "GMPLS-TE-STD-MIB",
2090
+ "description" :
2091
+ """This group is mandatory for those implementations that can
2092
+ implement the notifications contained in this group.""",
2093
+ },
2094
+ }, # requires
2095
+ }, # compliance
2096
+ "gmplsTeModuleReadOnlyCompliance" : {
2097
+ "nodetype" : "compliance",
2098
+ "moduleName" : "GMPLS-TE-STD-MIB",
2099
+ "oid" : "1.3.6.1.2.1.10.166.13.3.2.2",
2100
+ "status" : "current",
2101
+ "description" :
2102
+ """Compliance requirement for implementations that only provide
2103
+ read-only support for GMPLS-TE-STD-MIB. Such devices can then be
2104
+ monitored but cannot be configured using this MIB module.""",
2105
+ "requires" : {
2106
+ "gmplsTunnelGroup" : {
2107
+ "nodetype" : "mandatory",
2108
+ "module" : "GMPLS-TE-STD-MIB"
2109
+ },
2110
+ "gmplsTunnelScalarGroup" : {
2111
+ "nodetype" : "mandatory",
2112
+ "module" : "GMPLS-TE-STD-MIB"
2113
+ },
2114
+ "gmplsTunnelSignaledGroup" : {
2115
+ "nodetype" : "optional",
2116
+ "module" : "GMPLS-TE-STD-MIB",
2117
+ "description" :
2118
+ """This group is mandatory for devices that support signaled
2119
+ tunnel set up, in addition to gmplsTunnelGroup. The following
2120
+ constraints apply:
2121
+ mplsTunnelSignallingProto should be at least read-only
2122
+ returning a value of ldp(2) or rsvp(3).""",
2123
+ },
2124
+ "gmplsTunnelOptionalGroup" : {
2125
+ "nodetype" : "optional",
2126
+ "module" : "GMPLS-TE-STD-MIB",
2127
+ "description" :
2128
+ """Objects in this group are optional.""",
2129
+ },
2130
+ "gmplsTeNotificationGroup" : {
2131
+ "nodetype" : "optional",
2132
+ "module" : "GMPLS-TE-STD-MIB",
2133
+ "description" :
2134
+ """This group is mandatory for those implementations that can
2135
+ implement the notifications contained in this group.""",
2136
+ },
2137
+ }, # requires
2138
+ "refinements" : {
2139
+ "gmplsTunnelUnnumIf" : {
2140
+ "module" : "GMPLS-TE-STD-MIB",
2141
+ "access" : "readonly",
2142
+ "description" :
2143
+ """Write access is not required.""",
2144
+ },
2145
+ "gmplsTunnelAttributes" : {
2146
+ "module" : "GMPLS-TE-STD-MIB",
2147
+ "access" : "readonly",
2148
+ "description" :
2149
+ """Write access is not required.""",
2150
+ },
2151
+ "gmplsTunnelLSPEncoding" : {
2152
+ "module" : "GMPLS-TE-STD-MIB",
2153
+ "access" : "readonly",
2154
+ "description" :
2155
+ """Write access is not required.""",
2156
+ },
2157
+ "gmplsTunnelSwitchingType" : {
2158
+ "module" : "GMPLS-TE-STD-MIB",
2159
+ "access" : "readonly",
2160
+ "description" :
2161
+ """Write access is not required.""",
2162
+ },
2163
+ "gmplsTunnelLinkProtection" : {
2164
+ "module" : "GMPLS-TE-STD-MIB",
2165
+ "access" : "readonly",
2166
+ "description" :
2167
+ """Write access is not required.""",
2168
+ },
2169
+ "gmplsTunnelGPid" : {
2170
+ "module" : "GMPLS-TE-STD-MIB",
2171
+ "access" : "readonly",
2172
+ "description" :
2173
+ """Write access is not required.""",
2174
+ },
2175
+ "gmplsTunnelSecondary" : {
2176
+ "module" : "GMPLS-TE-STD-MIB",
2177
+ "access" : "readonly",
2178
+ "description" :
2179
+ """Write access is not required.""",
2180
+ },
2181
+ "gmplsTunnelDirection" : {
2182
+ "module" : "GMPLS-TE-STD-MIB",
2183
+ "access" : "readonly",
2184
+ "description" :
2185
+ """Only forward(0) is required.""",
2186
+ },
2187
+ "gmplsTunnelPathComp" : {
2188
+ "module" : "GMPLS-TE-STD-MIB",
2189
+ "access" : "readonly",
2190
+ "description" :
2191
+ """Only explicit(2) is required.""",
2192
+ },
2193
+ "gmplsTunnelUpstreamNotifyRecipientType" : {
2194
+ "module" : "GMPLS-TE-STD-MIB",
2195
+ "syntax" : {
2196
+ "type" : {
2197
+ "basetype" : "Enumeration",
2198
+ "parent module" : {
2199
+ "name" : "INET-ADDRESS-MIB",
2200
+ "type" : "InetAddressType",
2201
+ },
2202
+ "unknown" : {
2203
+ "nodetype" : "namednumber",
2204
+ "number" : "0"
2205
+ },
2206
+ "ipv4" : {
2207
+ "nodetype" : "namednumber",
2208
+ "number" : "1"
2209
+ },
2210
+ "ipv6" : {
2211
+ "nodetype" : "namednumber",
2212
+ "number" : "2"
2213
+ },
2214
+ },
2215
+ }, # syntax
2216
+ "access" : "readonly",
2217
+ "description" :
2218
+ """Only unknown(0), ipv4(1), and ipv6(2) support
2219
+ is required.""",
2220
+ },
2221
+ "gmplsTunnelUpstreamNotifyRecipient" : {
2222
+ "module" : "GMPLS-TE-STD-MIB",
2223
+ "syntax" : {
2224
+ "type" : {
2225
+ "basetype" : "OctetString",
2226
+ "parent module" : {
2227
+ "name" : "INET-ADDRESS-MIB",
2228
+ "type" : "InetAddress",
2229
+ },
2230
+ "ranges" : [
2231
+ {
2232
+ "min" : "0",
2233
+ "max" : "0"
2234
+ },
2235
+ {
2236
+ "min" : "4",
2237
+ "max" : "4"
2238
+ },
2239
+ {
2240
+ "min" : "16",
2241
+ "max" : "16"
2242
+ },
2243
+ ],
2244
+ "range" : {
2245
+ "min" : "0",
2246
+ "max" : "16"
2247
+ },
2248
+ },
2249
+ }, # syntax
2250
+ "access" : "readonly",
2251
+ "description" :
2252
+ """An implementation is only required to support
2253
+ unknown(0), ipv4(1), and ipv6(2) sizes.""",
2254
+ },
2255
+ "gmplsTunnelSendResvNotifyRecipientType" : {
2256
+ "module" : "GMPLS-TE-STD-MIB",
2257
+ "syntax" : {
2258
+ "type" : {
2259
+ "basetype" : "Enumeration",
2260
+ "parent module" : {
2261
+ "name" : "INET-ADDRESS-MIB",
2262
+ "type" : "InetAddressType",
2263
+ },
2264
+ "unknown" : {
2265
+ "nodetype" : "namednumber",
2266
+ "number" : "0"
2267
+ },
2268
+ "ipv4" : {
2269
+ "nodetype" : "namednumber",
2270
+ "number" : "1"
2271
+ },
2272
+ "ipv6" : {
2273
+ "nodetype" : "namednumber",
2274
+ "number" : "2"
2275
+ },
2276
+ },
2277
+ }, # syntax
2278
+ "access" : "readonly",
2279
+ "description" :
2280
+ """Only unknown(0), ipv4(1), and ipv6(2) support
2281
+ is required.""",
2282
+ },
2283
+ "gmplsTunnelSendResvNotifyRecipient" : {
2284
+ "module" : "GMPLS-TE-STD-MIB",
2285
+ "syntax" : {
2286
+ "type" : {
2287
+ "basetype" : "OctetString",
2288
+ "parent module" : {
2289
+ "name" : "INET-ADDRESS-MIB",
2290
+ "type" : "InetAddress",
2291
+ },
2292
+ "ranges" : [
2293
+ {
2294
+ "min" : "0",
2295
+ "max" : "0"
2296
+ },
2297
+ {
2298
+ "min" : "4",
2299
+ "max" : "4"
2300
+ },
2301
+ {
2302
+ "min" : "16",
2303
+ "max" : "16"
2304
+ },
2305
+ ],
2306
+ "range" : {
2307
+ "min" : "0",
2308
+ "max" : "16"
2309
+ },
2310
+ },
2311
+ }, # syntax
2312
+ "access" : "readonly",
2313
+ "description" :
2314
+ """An implementation is only required to support
2315
+ unknown(0), ipv4(1), and ipv6(2) sizes.""",
2316
+ },
2317
+ "gmplsTunnelDownstreamNotifyRecipientType" : {
2318
+ "module" : "GMPLS-TE-STD-MIB",
2319
+ "syntax" : {
2320
+ "type" : {
2321
+ "basetype" : "Enumeration",
2322
+ "parent module" : {
2323
+ "name" : "INET-ADDRESS-MIB",
2324
+ "type" : "InetAddressType",
2325
+ },
2326
+ "unknown" : {
2327
+ "nodetype" : "namednumber",
2328
+ "number" : "0"
2329
+ },
2330
+ "ipv4" : {
2331
+ "nodetype" : "namednumber",
2332
+ "number" : "1"
2333
+ },
2334
+ "ipv6" : {
2335
+ "nodetype" : "namednumber",
2336
+ "number" : "2"
2337
+ },
2338
+ },
2339
+ }, # syntax
2340
+ "access" : "readonly",
2341
+ "description" :
2342
+ """Only unknown(0), ipv4(1), and ipv6(2) support
2343
+ is required.""",
2344
+ },
2345
+ "gmplsTunnelDownstreamNotifyRecipient" : {
2346
+ "module" : "GMPLS-TE-STD-MIB",
2347
+ "syntax" : {
2348
+ "type" : {
2349
+ "basetype" : "OctetString",
2350
+ "parent module" : {
2351
+ "name" : "INET-ADDRESS-MIB",
2352
+ "type" : "InetAddress",
2353
+ },
2354
+ "ranges" : [
2355
+ {
2356
+ "min" : "0",
2357
+ "max" : "0"
2358
+ },
2359
+ {
2360
+ "min" : "4",
2361
+ "max" : "4"
2362
+ },
2363
+ {
2364
+ "min" : "16",
2365
+ "max" : "16"
2366
+ },
2367
+ ],
2368
+ "range" : {
2369
+ "min" : "0",
2370
+ "max" : "16"
2371
+ },
2372
+ },
2373
+ }, # syntax
2374
+ "access" : "readonly",
2375
+ "description" :
2376
+ """An implementation is only required to support
2377
+ unknown(0), ipv4(1), and ipv6(2) sizes.""",
2378
+ },
2379
+ "gmplsTunnelSendPathNotifyRecipientType" : {
2380
+ "module" : "GMPLS-TE-STD-MIB",
2381
+ "syntax" : {
2382
+ "type" : {
2383
+ "basetype" : "Enumeration",
2384
+ "parent module" : {
2385
+ "name" : "INET-ADDRESS-MIB",
2386
+ "type" : "InetAddressType",
2387
+ },
2388
+ "unknown" : {
2389
+ "nodetype" : "namednumber",
2390
+ "number" : "0"
2391
+ },
2392
+ "ipv4" : {
2393
+ "nodetype" : "namednumber",
2394
+ "number" : "1"
2395
+ },
2396
+ "ipv6" : {
2397
+ "nodetype" : "namednumber",
2398
+ "number" : "2"
2399
+ },
2400
+ },
2401
+ }, # syntax
2402
+ "access" : "readonly",
2403
+ "description" :
2404
+ """Only unknown(0), ipv4(1), and ipv6(2) support
2405
+ is required.""",
2406
+ },
2407
+ "gmplsTunnelSendPathNotifyRecipient" : {
2408
+ "module" : "GMPLS-TE-STD-MIB",
2409
+ "syntax" : {
2410
+ "type" : {
2411
+ "basetype" : "OctetString",
2412
+ "parent module" : {
2413
+ "name" : "INET-ADDRESS-MIB",
2414
+ "type" : "InetAddress",
2415
+ },
2416
+ "ranges" : [
2417
+ {
2418
+ "min" : "0",
2419
+ "max" : "0"
2420
+ },
2421
+ {
2422
+ "min" : "4",
2423
+ "max" : "4"
2424
+ },
2425
+ {
2426
+ "min" : "16",
2427
+ "max" : "16"
2428
+ },
2429
+ ],
2430
+ "range" : {
2431
+ "min" : "0",
2432
+ "max" : "16"
2433
+ },
2434
+ },
2435
+ }, # syntax
2436
+ "access" : "readonly",
2437
+ "description" :
2438
+ """An implementation is only required to support
2439
+ unknown(0), ipv4(1), and ipv6(2) sizes.""",
2440
+ },
2441
+ "gmplsTunnelAdminStatusFlags" : {
2442
+ "module" : "GMPLS-TE-STD-MIB",
2443
+ "access" : "readonly",
2444
+ "description" :
2445
+ """Write access is not required.""",
2446
+ },
2447
+ "gmplsTunnelExtraParamsPtr" : {
2448
+ "module" : "GMPLS-TE-STD-MIB",
2449
+ "access" : "readonly",
2450
+ "description" :
2451
+ """Write access is not required.""",
2452
+ },
2453
+ "gmplsTunnelHopExplicitForwardLabel" : {
2454
+ "module" : "GMPLS-TE-STD-MIB",
2455
+ "access" : "readonly",
2456
+ "description" :
2457
+ """Write access is not required.""",
2458
+ },
2459
+ "gmplsTunnelHopExplicitForwardLabelPtr" : {
2460
+ "module" : "GMPLS-TE-STD-MIB",
2461
+ "access" : "readonly",
2462
+ "description" :
2463
+ """Write access is not required.""",
2464
+ },
2465
+ "gmplsTunnelHopExplicitReverseLabel" : {
2466
+ "module" : "GMPLS-TE-STD-MIB",
2467
+ "access" : "readonly",
2468
+ "description" :
2469
+ """Write access is not required.""",
2470
+ },
2471
+ "gmplsTunnelHopExplicitReverseLabelPtr" : {
2472
+ "module" : "GMPLS-TE-STD-MIB",
2473
+ "access" : "readonly",
2474
+ "description" :
2475
+ """Write access is not required.""",
2476
+ },
2477
+ "gmplsTunnelErrorReporterType" : {
2478
+ "module" : "GMPLS-TE-STD-MIB",
2479
+ "syntax" : {
2480
+ "type" : {
2481
+ "basetype" : "Enumeration",
2482
+ "parent module" : {
2483
+ "name" : "INET-ADDRESS-MIB",
2484
+ "type" : "InetAddressType",
2485
+ },
2486
+ "unknown" : {
2487
+ "nodetype" : "namednumber",
2488
+ "number" : "0"
2489
+ },
2490
+ "ipv4" : {
2491
+ "nodetype" : "namednumber",
2492
+ "number" : "1"
2493
+ },
2494
+ "ipv6" : {
2495
+ "nodetype" : "namednumber",
2496
+ "number" : "2"
2497
+ },
2498
+ },
2499
+ }, # syntax
2500
+ "description" :
2501
+ """Only unknown(0), ipv4(1), and ipv6(2) support
2502
+ is required.""",
2503
+ },
2504
+ "gmplsTunnelErrorReporter" : {
2505
+ "module" : "GMPLS-TE-STD-MIB",
2506
+ "syntax" : {
2507
+ "type" : {
2508
+ "basetype" : "OctetString",
2509
+ "parent module" : {
2510
+ "name" : "INET-ADDRESS-MIB",
2511
+ "type" : "InetAddress",
2512
+ },
2513
+ "ranges" : [
2514
+ {
2515
+ "min" : "0",
2516
+ "max" : "0"
2517
+ },
2518
+ {
2519
+ "min" : "4",
2520
+ "max" : "4"
2521
+ },
2522
+ {
2523
+ "min" : "16",
2524
+ "max" : "16"
2525
+ },
2526
+ ],
2527
+ "range" : {
2528
+ "min" : "0",
2529
+ "max" : "16"
2530
+ },
2531
+ },
2532
+ }, # syntax
2533
+ "description" :
2534
+ """An implementation is only required to support
2535
+ unknown(0), ipv4(1), and ipv6(2).""",
2536
+ },
2537
+ }, # refinements
2538
+
2539
+ }, # compliance
2540
+ }, # compliances
2541
+
2542
+ }