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,2924 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python TE-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TE-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TE-MIB",
11
+
12
+ "TE-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Traffic Engineering Working Group""",
17
+ "contact" :
18
+ """
19
+ Editor: Kireeti Kompella
20
+ Postal: Juniper Networks, Inc.
21
+ 1194 Mathilda Ave
22
+
23
+
24
+
25
+ Sunnyvale, CA 94089
26
+ Tel: +1 408 745 2000
27
+ E-mail: kireeti@juniper.net
28
+
29
+ The IETF Traffic Engineering Working Group is
30
+ chaired by Jim Boyle and Ed Kern.
31
+
32
+ WG Mailing List information:
33
+
34
+ General Discussion: te-wg@ops.ietf.org
35
+ To Subscribe: te-wg-request@ops.ietf.org
36
+ In Body: subscribe
37
+ Archive: ftp://ops.ietf.org/pub/lists
38
+
39
+ Comments on the MIB module should be sent to the
40
+ mailing list. The archives for this mailing list
41
+ should be consulted for previous discussion on
42
+ this MIB.""",
43
+ "description" :
44
+ """The Traffic Engineering MIB module.
45
+
46
+ Copyright (C) The Internet Society (2005). This
47
+ version of this MIB module is part of RFC 3970;
48
+ see the RFC itself for full legal notices.""",
49
+ "revisions" : (
50
+ {
51
+ "date" : "2005-01-04 00:00",
52
+ "description" :
53
+ """Initial version, published as RFC 3970.""",
54
+ },
55
+ ),
56
+ "identity node" : "teMIB",
57
+ },
58
+
59
+ "imports" : (
60
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
61
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
62
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
63
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
64
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
65
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
66
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
67
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
68
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
69
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
70
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
71
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
72
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
73
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
74
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
75
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
76
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
77
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
78
+ {"module" : "MPLS-TC-STD-MIB", "name" : "TeHopAddress"},
79
+ {"module" : "MPLS-TC-STD-MIB", "name" : "TeHopAddressType"},
80
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsBitRate"},
81
+ ),
82
+
83
+ "nodes" : {
84
+ "teMIB" : {
85
+ "nodetype" : "node",
86
+ "moduleName" : "TE-MIB",
87
+ "oid" : "1.3.6.1.2.1.122",
88
+ "status" : "current",
89
+ }, # node
90
+ "teMIBNotifications" : {
91
+ "nodetype" : "node",
92
+ "moduleName" : "TE-MIB",
93
+ "oid" : "1.3.6.1.2.1.122.0",
94
+ }, # node
95
+ "teMIBObjects" : {
96
+ "nodetype" : "node",
97
+ "moduleName" : "TE-MIB",
98
+ "oid" : "1.3.6.1.2.1.122.1",
99
+ }, # node
100
+ "teInfo" : {
101
+ "nodetype" : "node",
102
+ "moduleName" : "TE-MIB",
103
+ "oid" : "1.3.6.1.2.1.122.1.1",
104
+ }, # node
105
+ "teDistProtocol" : {
106
+ "nodetype" : "scalar",
107
+ "moduleName" : "TE-MIB",
108
+ "oid" : "1.3.6.1.2.1.122.1.1.1",
109
+ "status" : "current",
110
+ "syntax" : {
111
+ "type" : {
112
+ "basetype" : "Bits",
113
+ "other" : {
114
+ "nodetype" : "namednumber",
115
+ "number" : "0"
116
+ },
117
+ "isis" : {
118
+ "nodetype" : "namednumber",
119
+ "number" : "1"
120
+ },
121
+ "ospf" : {
122
+ "nodetype" : "namednumber",
123
+ "number" : "2"
124
+ },
125
+ },
126
+ },
127
+ "access" : "readonly",
128
+ "description" :
129
+ """IGP used to distribute Traffic Engineering
130
+ information and topology to each device for the
131
+ purpose of automatic path computation. More than
132
+ one IGP may be used to distribute TE information.""",
133
+ }, # scalar
134
+ "teSignalingProto" : {
135
+ "nodetype" : "scalar",
136
+ "moduleName" : "TE-MIB",
137
+ "oid" : "1.3.6.1.2.1.122.1.1.2",
138
+ "status" : "current",
139
+ "syntax" : {
140
+ "type" : {
141
+ "basetype" : "Bits",
142
+ "other" : {
143
+ "nodetype" : "namednumber",
144
+ "number" : "0"
145
+ },
146
+ "rsvpte" : {
147
+ "nodetype" : "namednumber",
148
+ "number" : "1"
149
+ },
150
+ "crldp" : {
151
+ "nodetype" : "namednumber",
152
+ "number" : "2"
153
+ },
154
+ "static" : {
155
+ "nodetype" : "namednumber",
156
+ "number" : "3"
157
+ },
158
+ },
159
+ },
160
+ "access" : "readonly",
161
+ "description" :
162
+ """Traffic Engineering signaling protocols supported
163
+ by this device. More than one protocol may be
164
+ supported.""",
165
+ "reference" :
166
+ """For a description of RSVP-TE, see RFC 3209;
167
+ for CR-LDP, see RFC 3212.""",
168
+ }, # scalar
169
+ "teNotificationEnable" : {
170
+ "nodetype" : "scalar",
171
+ "moduleName" : "TE-MIB",
172
+ "oid" : "1.3.6.1.2.1.122.1.1.3",
173
+ "status" : "current",
174
+ "syntax" : {
175
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
176
+ },
177
+ "access" : "readwrite",
178
+ "default" : "false",
179
+ "description" :
180
+ """If this object is true, then it enables the
181
+ generation of notifications from this MIB module.
182
+ Otherwise notifications are not generated.""",
183
+ }, # scalar
184
+ "teNextTunnelIndex" : {
185
+ "nodetype" : "scalar",
186
+ "moduleName" : "TE-MIB",
187
+ "oid" : "1.3.6.1.2.1.122.1.1.4",
188
+ "status" : "current",
189
+ "syntax" : {
190
+ "type" : { "module" :"", "name" : "Unsigned32"},
191
+ },
192
+ "access" : "readonly",
193
+ "description" :
194
+ """An integer that may be used as a new Index in the
195
+
196
+
197
+
198
+ teTunnelTable.
199
+
200
+ The special value of 0 indicates that no more new
201
+ entries can be created in that table.
202
+
203
+ When this MIB module is used for configuration, this
204
+ object always contains a legal value (if non-zero)
205
+ for an index that is not currently used in that
206
+ table. The Command Generator (Network Management
207
+ Application) reads this variable and uses the
208
+ (non-zero) value read when creating a new row with
209
+ an SNMP SET. When the SET is performed, the Command
210
+ Responder (agent) must determine whether the value
211
+ is indeed still unused; Two Network Management
212
+ Applications may attempt to create a row
213
+ (configuration entry) simultaneously and use the
214
+ same value. If it is currently unused, the SET
215
+ succeeds, and the Command Responder (agent) changes
216
+ the value of this object according to an
217
+ implementation-specific algorithm. If the value is
218
+ in use, however, the SET fails. The Network
219
+ Management Application must then re-read this
220
+ variable to obtain a new usable value.""",
221
+ }, # scalar
222
+ "teNextPathHopIndex" : {
223
+ "nodetype" : "scalar",
224
+ "moduleName" : "TE-MIB",
225
+ "oid" : "1.3.6.1.2.1.122.1.1.5",
226
+ "status" : "current",
227
+ "syntax" : {
228
+ "type" : { "module" :"", "name" : "Unsigned32"},
229
+ },
230
+ "access" : "readonly",
231
+ "description" :
232
+ """An integer that may be used as a new Index in the
233
+ tePathHopTable.
234
+
235
+ The special value of 0 indicates that no more new
236
+ entries can be created in that table.
237
+
238
+ When this MIB module is used for configuration, this
239
+ object always contains a legal value (if non-zero)
240
+ for an index that is not currently used in that
241
+ table. The Command Generator (Network Management
242
+ Application) reads this variable and uses the
243
+ (non-zero) value read when creating a new row with
244
+ an SNMP SET. When the SET is performed, the Command
245
+ Responder (agent) must determine whether the value
246
+ is indeed still unused; Two Network Management
247
+ Applications may attempt to create a row
248
+ (configuration entry) simultaneously and use the
249
+ same value. If it is currently unused, the SET
250
+
251
+
252
+
253
+ succeeds, and the Command Responder (agent) changes
254
+ the value of this object according to an
255
+ implementation-specific algorithm. If the value is
256
+ in use, however, the SET fails. The Network
257
+ Management Application must then re-read this
258
+ variable to obtain a new usable value.""",
259
+ }, # scalar
260
+ "teConfiguredTunnels" : {
261
+ "nodetype" : "scalar",
262
+ "moduleName" : "TE-MIB",
263
+ "oid" : "1.3.6.1.2.1.122.1.1.6",
264
+ "status" : "current",
265
+ "syntax" : {
266
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
267
+ },
268
+ "access" : "readonly",
269
+ "description" :
270
+ """Number of currently configured Tunnels.""",
271
+ }, # scalar
272
+ "teActiveTunnels" : {
273
+ "nodetype" : "scalar",
274
+ "moduleName" : "TE-MIB",
275
+ "oid" : "1.3.6.1.2.1.122.1.1.7",
276
+ "status" : "current",
277
+ "syntax" : {
278
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
279
+ },
280
+ "access" : "readonly",
281
+ "description" :
282
+ """Number of currently active Tunnels.""",
283
+ }, # scalar
284
+ "tePrimaryTunnels" : {
285
+ "nodetype" : "scalar",
286
+ "moduleName" : "TE-MIB",
287
+ "oid" : "1.3.6.1.2.1.122.1.1.8",
288
+ "status" : "current",
289
+ "syntax" : {
290
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
291
+ },
292
+ "access" : "readonly",
293
+ "description" :
294
+ """Number of currently active Tunnels running on
295
+ their primary paths.""",
296
+ }, # scalar
297
+ "teAdminGroupTable" : {
298
+ "nodetype" : "table",
299
+ "moduleName" : "TE-MIB",
300
+ "oid" : "1.3.6.1.2.1.122.1.1.9",
301
+ "status" : "current",
302
+ "description" :
303
+ """A mapping of configured administrative groups. Each
304
+ entry represents an Administrative Group and
305
+ provides a name and index for the group.
306
+ Administrative groups are used to label links in the
307
+ Traffic Engineering topology in order to place
308
+ constraints (include and exclude) on Tunnel paths.
309
+
310
+ A groupName can only be linked to one group number.
311
+ The groupNumber is the number assigned to the
312
+ administrative group used in constraints,
313
+ such as tePathIncludeAny or tePathIncludeAll.""",
314
+ }, # table
315
+ "teAdminGroupEntry" : {
316
+ "nodetype" : "row",
317
+ "moduleName" : "TE-MIB",
318
+ "oid" : "1.3.6.1.2.1.122.1.1.9.1",
319
+ "create" : "true",
320
+ "status" : "current",
321
+ "linkage" : [
322
+ "teAdminGroupNumber",
323
+ ],
324
+ "description" :
325
+ """A mapping between a configured group number and
326
+ its human-readable name. The group number should
327
+ be between 1 and 32, inclusive. Group number n
328
+ represents bit number (n-1) in the bit vector for
329
+ Include/Exclude constraints.
330
+
331
+ All entries in this table MUST be kept in stable
332
+ storage so that they will re-appear in case of a
333
+ restart/reboot.""",
334
+ }, # row
335
+ "teAdminGroupNumber" : {
336
+ "nodetype" : "column",
337
+ "moduleName" : "TE-MIB",
338
+ "oid" : "1.3.6.1.2.1.122.1.1.9.1.1",
339
+ "status" : "current",
340
+ "syntax" : {
341
+ "type" : {
342
+ "basetype" : "Integer32",
343
+ "ranges" : [
344
+ {
345
+ "min" : "1",
346
+ "max" : "32"
347
+ },
348
+ ],
349
+ "range" : {
350
+ "min" : "1",
351
+ "max" : "32"
352
+ },
353
+ },
354
+ },
355
+ "access" : "noaccess",
356
+ "description" :
357
+ """Index of the administrative group.""",
358
+ }, # column
359
+ "teAdminGroupName" : {
360
+ "nodetype" : "column",
361
+ "moduleName" : "TE-MIB",
362
+ "oid" : "1.3.6.1.2.1.122.1.1.9.1.2",
363
+ "status" : "current",
364
+ "syntax" : {
365
+ "type" : {
366
+ "basetype" : "OctetString",
367
+ "parent module" : {
368
+ "name" : "SNMP-FRAMEWORK-MIB",
369
+ "type" : "SnmpAdminString",
370
+ },
371
+ "ranges" : [
372
+ {
373
+ "min" : "1",
374
+ "max" : "32"
375
+ },
376
+ ],
377
+ "range" : {
378
+ "min" : "1",
379
+ "max" : "32"
380
+ },
381
+ },
382
+ },
383
+ "access" : "readwrite",
384
+ "description" :
385
+ """Name of the administrative group.""",
386
+ }, # column
387
+ "teAdminGroupRowStatus" : {
388
+ "nodetype" : "column",
389
+ "moduleName" : "TE-MIB",
390
+ "oid" : "1.3.6.1.2.1.122.1.1.9.1.3",
391
+ "status" : "current",
392
+ "syntax" : {
393
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
394
+ },
395
+ "access" : "readwrite",
396
+ "description" :
397
+ """The status of this conceptual row.
398
+
399
+ The value of this object has no effect on whether
400
+ other objects in this conceptual row can be
401
+
402
+
403
+
404
+ modified.""",
405
+ }, # column
406
+ "teTunnelTable" : {
407
+ "nodetype" : "table",
408
+ "moduleName" : "TE-MIB",
409
+ "oid" : "1.3.6.1.2.1.122.1.2",
410
+ "status" : "current",
411
+ "description" :
412
+ """Table of Configured Traffic Tunnels.""",
413
+ }, # table
414
+ "teTunnelEntry" : {
415
+ "nodetype" : "row",
416
+ "moduleName" : "TE-MIB",
417
+ "oid" : "1.3.6.1.2.1.122.1.2.1",
418
+ "create" : "true",
419
+ "status" : "current",
420
+ "linkage" : [
421
+ "teTunnelIndex",
422
+ ],
423
+ "description" :
424
+ """Entry containing information about a particular
425
+ Traffic Tunnel.""",
426
+ }, # row
427
+ "teTunnelIndex" : {
428
+ "nodetype" : "column",
429
+ "moduleName" : "TE-MIB",
430
+ "oid" : "1.3.6.1.2.1.122.1.2.1.1",
431
+ "status" : "current",
432
+ "syntax" : {
433
+ "type" : {
434
+ "basetype" : "Unsigned32",
435
+ "ranges" : [
436
+ {
437
+ "min" : "1",
438
+ "max" : "4294967295"
439
+ },
440
+ ],
441
+ "range" : {
442
+ "min" : "1",
443
+ "max" : "4294967295"
444
+ },
445
+ },
446
+ },
447
+ "access" : "noaccess",
448
+ "description" :
449
+ """A unique index that identifies a Tunnel. If the TE
450
+ Tunnel is considered an interface, then this index
451
+ must match the interface index of the corresponding
452
+ interface. Otherwise, this index must be at least
453
+ 2^24, so that it does not overlap with any existing
454
+ interface index.""",
455
+ }, # column
456
+ "teTunnelName" : {
457
+ "nodetype" : "column",
458
+ "moduleName" : "TE-MIB",
459
+ "oid" : "1.3.6.1.2.1.122.1.2.1.2",
460
+ "status" : "current",
461
+ "syntax" : {
462
+ "type" : {
463
+ "basetype" : "OctetString",
464
+ "parent module" : {
465
+ "name" : "SNMP-FRAMEWORK-MIB",
466
+ "type" : "SnmpAdminString",
467
+ },
468
+ "ranges" : [
469
+ {
470
+ "min" : "1",
471
+ "max" : "32"
472
+ },
473
+ ],
474
+ "range" : {
475
+ "min" : "1",
476
+ "max" : "32"
477
+ },
478
+ },
479
+ },
480
+ "access" : "readwrite",
481
+ "description" :
482
+ """Name of the Traffic Tunnel.
483
+
484
+ Note that the name of a Tunnel MUST be unique.
485
+ When a SET request contains a name that is already
486
+ in use for another entry, then the implementation
487
+ must return an inconsistentValue error.
488
+
489
+ The value of this object cannot be changed if the
490
+ if the value of the corresponding teTunnelRowStatus
491
+ object is 'active'.""",
492
+ }, # column
493
+ "teTunnelNextPathIndex" : {
494
+ "nodetype" : "column",
495
+ "moduleName" : "TE-MIB",
496
+ "oid" : "1.3.6.1.2.1.122.1.2.1.3",
497
+ "status" : "current",
498
+ "syntax" : {
499
+ "type" : { "module" :"", "name" : "Unsigned32"},
500
+ },
501
+ "access" : "readonly",
502
+ "description" :
503
+ """An integer that may be used as a new Index for the
504
+ next Path in this Tunnel.
505
+
506
+ The special value of 0 indicates that no more Paths
507
+ can be created for this Tunnel, or that no more new
508
+ entries can be created in tePathTable.
509
+
510
+
511
+
512
+
513
+ When this MIB module is used for configuration, this
514
+ object always contains a legal value (if non-zero)
515
+ for an index that is not currently used in that
516
+ table. The Command Generator (Network Management
517
+ Application) reads this variable and uses the
518
+ (non-zero) value read when creating a new row with
519
+ an SNMP SET. When the SET is performed, the Command
520
+ Responder (agent) must determine whether the value
521
+ is indeed still unused; Two Network Management
522
+ Applications may attempt to create a row
523
+ (configuration entry) simultaneously and use the
524
+ same value. If it is currently unused, the SET
525
+ succeeds, and the Command Responder (agent) changes
526
+ the value of this object according to an
527
+ implementation-specific algorithm. If the value is
528
+ in use, however, the SET fails. The Network
529
+ Management Application must then re-read this
530
+ variable to obtain a new usable value.""",
531
+ }, # column
532
+ "teTunnelRowStatus" : {
533
+ "nodetype" : "column",
534
+ "moduleName" : "TE-MIB",
535
+ "oid" : "1.3.6.1.2.1.122.1.2.1.4",
536
+ "status" : "current",
537
+ "syntax" : {
538
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
539
+ },
540
+ "access" : "readwrite",
541
+ "description" :
542
+ """The status of this conceptual row.
543
+
544
+ When the value of this object is 'active', then
545
+ the values for the corresponding objects
546
+ teTunnelName, teTunnelSourceAddressType,
547
+ teTunnelSourceAddress,
548
+ teTunnelDestinationAddressType, and
549
+ teTunnelDestinationAddress cannot be changed.""",
550
+ }, # column
551
+ "teTunnelStorageType" : {
552
+ "nodetype" : "column",
553
+ "moduleName" : "TE-MIB",
554
+ "oid" : "1.3.6.1.2.1.122.1.2.1.5",
555
+ "status" : "current",
556
+ "syntax" : {
557
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
558
+ },
559
+ "access" : "readwrite",
560
+ "description" :
561
+ """The storage type for this conceptual row.
562
+
563
+ Conceptual rows having the value 'permanent' need
564
+ not allow write-access to any columnar objects
565
+ in the row.""",
566
+ }, # column
567
+ "teTunnelSourceAddressType" : {
568
+ "nodetype" : "column",
569
+ "moduleName" : "TE-MIB",
570
+ "oid" : "1.3.6.1.2.1.122.1.2.1.6",
571
+ "status" : "current",
572
+ "syntax" : {
573
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressType"},
574
+ },
575
+ "access" : "readwrite",
576
+ "description" :
577
+ """The type of Traffic Engineered Tunnel hop address
578
+ for the source of this Tunnel. Typically, this
579
+ address type is IPv4 or IPv6, with a prefix length
580
+ of 32 or 128, respectively. If the TE Tunnel path
581
+ is being computed by a path computation server,
582
+ however, it is possible to use more flexible source
583
+ address types, such as AS numbers or prefix lengths
584
+ less than host address lengths.
585
+
586
+ The value of this object cannot be changed
587
+ if the value of the corresponding teTunnelRowStatus
588
+ object is 'active'.""",
589
+ }, # column
590
+ "teTunnelSourceAddress" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "TE-MIB",
593
+ "oid" : "1.3.6.1.2.1.122.1.2.1.7",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddress"},
597
+ },
598
+ "access" : "readwrite",
599
+ "description" :
600
+ """The Source Traffic Engineered Tunnel hop address of
601
+ this Tunnel.
602
+
603
+ The type of this address is determined by the value
604
+ of the corresponding teTunnelSourceAddressType.
605
+
606
+ Note that the source and destination addresses of a
607
+ Tunnel can be different address types.
608
+
609
+ The value of this object cannot be changed
610
+ if the value of the corresponding teTunnelRowStatus
611
+ object is 'active'.""",
612
+ }, # column
613
+ "teTunnelDestinationAddressType" : {
614
+ "nodetype" : "column",
615
+ "moduleName" : "TE-MIB",
616
+ "oid" : "1.3.6.1.2.1.122.1.2.1.8",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressType"},
620
+ },
621
+ "access" : "readwrite",
622
+ "description" :
623
+ """The type of Traffic Engineered Tunnel hop address
624
+ for the destination of this Tunnel.
625
+
626
+ The value of this object cannot be changed
627
+ if the value of the corresponding teTunnelRowStatus
628
+ object is 'active'.""",
629
+ }, # column
630
+ "teTunnelDestinationAddress" : {
631
+ "nodetype" : "column",
632
+ "moduleName" : "TE-MIB",
633
+ "oid" : "1.3.6.1.2.1.122.1.2.1.9",
634
+ "status" : "current",
635
+ "syntax" : {
636
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddress"},
637
+ },
638
+ "access" : "readwrite",
639
+ "description" :
640
+ """The Destination Traffic Engineered Tunnel hop
641
+ address of this Tunnel.
642
+
643
+ The type of this address is determined by the value
644
+ of the corresponding teTunnelDestinationAddressType.
645
+
646
+ Note that source and destination addresses of a
647
+ Tunnel can be different address types.
648
+
649
+ The value of this object cannot be changed
650
+ if the value of the corresponding teTunnelRowStatus
651
+ object is 'active'.""",
652
+ }, # column
653
+ "teTunnelState" : {
654
+ "nodetype" : "column",
655
+ "moduleName" : "TE-MIB",
656
+ "oid" : "1.3.6.1.2.1.122.1.2.1.10",
657
+ "status" : "current",
658
+ "syntax" : {
659
+ "type" : {
660
+ "basetype" : "Enumeration",
661
+ "unknown" : {
662
+ "nodetype" : "namednumber",
663
+ "number" : "1"
664
+ },
665
+ "up" : {
666
+ "nodetype" : "namednumber",
667
+ "number" : "2"
668
+ },
669
+ "down" : {
670
+ "nodetype" : "namednumber",
671
+ "number" : "3"
672
+ },
673
+ "testing" : {
674
+ "nodetype" : "namednumber",
675
+ "number" : "4"
676
+ },
677
+ },
678
+ },
679
+ "access" : "readonly",
680
+ "description" :
681
+ """The operational state of the Tunnel.""",
682
+ }, # column
683
+ "teTunnelDiscontinuityTimer" : {
684
+ "nodetype" : "column",
685
+ "moduleName" : "TE-MIB",
686
+ "oid" : "1.3.6.1.2.1.122.1.2.1.11",
687
+ "status" : "current",
688
+ "syntax" : {
689
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
690
+ },
691
+ "access" : "readonly",
692
+ "description" :
693
+ """The value of sysUpTime on the most recent occasion
694
+ at which any one or more of this tunnel's counters
695
+ suffered a discontinuity. The relevant counters
696
+ are teTunnelOctets, teTunnelPackets,
697
+ teTunnelLPOctets, and teTunnelLPPackets. If no such
698
+ discontinuities have occurred since the last
699
+ re-initialization of the local management subsystem
700
+ then this object contains a zero value.""",
701
+ }, # column
702
+ "teTunnelOctets" : {
703
+ "nodetype" : "column",
704
+ "moduleName" : "TE-MIB",
705
+ "oid" : "1.3.6.1.2.1.122.1.2.1.12",
706
+ "status" : "current",
707
+ "syntax" : {
708
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
709
+ },
710
+ "access" : "readonly",
711
+ "description" :
712
+ """The number of octets that have been forwarded over
713
+ the Tunnel.
714
+
715
+ Discontinuities in the value of this counter can
716
+ occur at re-initialization of the management system,
717
+ and at other times, as indicated by the value of
718
+ teTunnelDiscontinuityTimer.""",
719
+ }, # column
720
+ "teTunnelPackets" : {
721
+ "nodetype" : "column",
722
+ "moduleName" : "TE-MIB",
723
+ "oid" : "1.3.6.1.2.1.122.1.2.1.13",
724
+ "status" : "current",
725
+ "syntax" : {
726
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
727
+ },
728
+ "access" : "readonly",
729
+ "description" :
730
+ """The number of packets that have been forwarded over
731
+ the Tunnel.
732
+
733
+ Discontinuities in the value of this counter can
734
+ occur at re-initialization of the management system
735
+ and at other times, as indicated by the value of
736
+ teTunnelDiscontinuityTimer.""",
737
+ }, # column
738
+ "teTunnelLPOctets" : {
739
+ "nodetype" : "column",
740
+ "moduleName" : "TE-MIB",
741
+ "oid" : "1.3.6.1.2.1.122.1.2.1.14",
742
+ "status" : "current",
743
+ "syntax" : {
744
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
745
+ },
746
+ "access" : "readonly",
747
+ "description" :
748
+ """The number of octets that have been forwarded over
749
+ the Tunnel.
750
+
751
+ Discontinuities in the value of this counter can
752
+ occur at re-initialization of the management system
753
+ and at other times, as indicated by the value of
754
+ teTunnelDiscontinuityTimer.""",
755
+ }, # column
756
+ "teTunnelLPPackets" : {
757
+ "nodetype" : "column",
758
+ "moduleName" : "TE-MIB",
759
+ "oid" : "1.3.6.1.2.1.122.1.2.1.15",
760
+ "status" : "current",
761
+ "syntax" : {
762
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
763
+ },
764
+ "access" : "readonly",
765
+ "description" :
766
+ """The number of packets that have been forwarded over
767
+ the Tunnel.
768
+
769
+
770
+
771
+ Discontinuities in the value of this counter can
772
+ occur at re-initialization of the management system
773
+ and at other times, as indicated by the value of
774
+ teTunnelDiscontinuityTimer.""",
775
+ }, # column
776
+ "teTunnelAge" : {
777
+ "nodetype" : "column",
778
+ "moduleName" : "TE-MIB",
779
+ "oid" : "1.3.6.1.2.1.122.1.2.1.16",
780
+ "status" : "current",
781
+ "syntax" : {
782
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
783
+ },
784
+ "access" : "readonly",
785
+ "description" :
786
+ """The age (i.e., time from creation of this conceptual
787
+ row till now) of this Tunnel in hundredths of a
788
+ second. Note that because TimeTicks wrap in about
789
+ 16 months, this value is best used in interval
790
+ measurements.""",
791
+ }, # column
792
+ "teTunnelTimeUp" : {
793
+ "nodetype" : "column",
794
+ "moduleName" : "TE-MIB",
795
+ "oid" : "1.3.6.1.2.1.122.1.2.1.17",
796
+ "status" : "current",
797
+ "syntax" : {
798
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
799
+ },
800
+ "access" : "readonly",
801
+ "description" :
802
+ """The total time in hundredths of a second that this
803
+ Tunnel has been operational. Note that because
804
+ TimeTicks wrap in about 16 months, this value is
805
+ best used in interval measurements.
806
+
807
+ An example of usage of this object would be to
808
+ compute the percentage up time over a period of time
809
+ by obtaining values of teTunnelAge and
810
+ teTunnelTimeUp at two points in time and computing
811
+ the following ratio:
812
+ ((teTunnelTimeUp2 - teTunnelTimeUp1)/
813
+ (teTunnelAge2 - teTunnelAge1)) * 100 %. In doing
814
+ so, the management station must account for
815
+ wrapping of the values of teTunnelAge and
816
+ teTunnelTimeUp between the two measurements.""",
817
+ }, # column
818
+ "teTunnelPrimaryTimeUp" : {
819
+ "nodetype" : "column",
820
+ "moduleName" : "TE-MIB",
821
+ "oid" : "1.3.6.1.2.1.122.1.2.1.18",
822
+ "status" : "current",
823
+ "syntax" : {
824
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
825
+ },
826
+ "access" : "readonly",
827
+ "description" :
828
+ """The total time in hundredths of a second that this
829
+ Tunnel's primary path has been operational. Note
830
+ that because TimeTicks wrap in about 16 months, this
831
+
832
+
833
+
834
+ value is best used in interval measurements.
835
+
836
+ An example of usage of this field would be to
837
+ compute what percentage of time that a TE Tunnel was
838
+ on the primary path over a period of time by
839
+ computing
840
+ ((teTunnelPrimaryTimeUp2 - teTunnelPrimaryTimeUp1)/
841
+ (teTunnelTimeUp2 - teTunnelTimeUp1))*100 %. In
842
+ doing so, the management station must account for
843
+ wrapping of the values of teTunnelPrimaryTimeUp and
844
+ teTunnelTimeUp between the two measurements.""",
845
+ }, # column
846
+ "teTunnelTransitions" : {
847
+ "nodetype" : "column",
848
+ "moduleName" : "TE-MIB",
849
+ "oid" : "1.3.6.1.2.1.122.1.2.1.19",
850
+ "status" : "current",
851
+ "syntax" : {
852
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
853
+ },
854
+ "access" : "readonly",
855
+ "description" :
856
+ """The number of operational state transitions
857
+ (up -> down and down -> up) this Tunnel has
858
+ undergone.""",
859
+ }, # column
860
+ "teTunnelLastTransition" : {
861
+ "nodetype" : "column",
862
+ "moduleName" : "TE-MIB",
863
+ "oid" : "1.3.6.1.2.1.122.1.2.1.20",
864
+ "status" : "current",
865
+ "syntax" : {
866
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
867
+ },
868
+ "access" : "readonly",
869
+ "description" :
870
+ """The time in hundredths of a second since the last
871
+ operational state transition occurred on this
872
+ Tunnel.
873
+
874
+ Note that if the last transition was over 16
875
+ months ago, this value will be inaccurate.""",
876
+ }, # column
877
+ "teTunnelPathChanges" : {
878
+ "nodetype" : "column",
879
+ "moduleName" : "TE-MIB",
880
+ "oid" : "1.3.6.1.2.1.122.1.2.1.21",
881
+ "status" : "current",
882
+ "syntax" : {
883
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
884
+ },
885
+ "access" : "readonly",
886
+ "description" :
887
+ """The number of path changes this Tunnel has had.""",
888
+ }, # column
889
+ "teTunnelLastPathChange" : {
890
+ "nodetype" : "column",
891
+ "moduleName" : "TE-MIB",
892
+ "oid" : "1.3.6.1.2.1.122.1.2.1.22",
893
+ "status" : "current",
894
+ "syntax" : {
895
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
896
+ },
897
+ "access" : "readonly",
898
+ "description" :
899
+ """The time in hundredths of a second since the last
900
+ path change occurred on this Tunnel.
901
+
902
+ Note that if the last transition was over 16
903
+ months ago, this value will be inaccurate.
904
+
905
+ Path changes may be caused by network events or by
906
+ reconfiguration that affects the path.""",
907
+ }, # column
908
+ "teTunnelConfiguredPaths" : {
909
+ "nodetype" : "column",
910
+ "moduleName" : "TE-MIB",
911
+ "oid" : "1.3.6.1.2.1.122.1.2.1.23",
912
+ "status" : "current",
913
+ "syntax" : {
914
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
915
+ },
916
+ "access" : "readonly",
917
+ "description" :
918
+ """The number of paths configured for this Tunnel.""",
919
+ }, # column
920
+ "teTunnelStandbyPaths" : {
921
+ "nodetype" : "column",
922
+ "moduleName" : "TE-MIB",
923
+ "oid" : "1.3.6.1.2.1.122.1.2.1.24",
924
+ "status" : "current",
925
+ "syntax" : {
926
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
927
+ },
928
+ "access" : "readonly",
929
+ "description" :
930
+ """The number of standby paths configured for this
931
+ Tunnel.""",
932
+ }, # column
933
+ "teTunnelOperationalPaths" : {
934
+ "nodetype" : "column",
935
+ "moduleName" : "TE-MIB",
936
+ "oid" : "1.3.6.1.2.1.122.1.2.1.25",
937
+ "status" : "current",
938
+ "syntax" : {
939
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
940
+ },
941
+ "access" : "readonly",
942
+ "description" :
943
+ """The number of operational paths for this Tunnel.
944
+ This includes the path currently active, as
945
+ well as operational standby paths.""",
946
+ }, # column
947
+ "tePathTable" : {
948
+ "nodetype" : "table",
949
+ "moduleName" : "TE-MIB",
950
+ "oid" : "1.3.6.1.2.1.122.1.3",
951
+ "status" : "current",
952
+ "description" :
953
+ """Table of Configured Traffic Tunnels.""",
954
+ }, # table
955
+ "tePathEntry" : {
956
+ "nodetype" : "row",
957
+ "moduleName" : "TE-MIB",
958
+ "oid" : "1.3.6.1.2.1.122.1.3.1",
959
+ "create" : "true",
960
+ "status" : "current",
961
+ "linkage" : [
962
+ "teTunnelIndex",
963
+ "tePathIndex",
964
+ ],
965
+ "description" :
966
+ """Entry containing information about a particular
967
+ Traffic Tunnel. Each Traffic Tunnel can have zero
968
+ or more Traffic Paths.
969
+
970
+ As a Traffic Path can only exist over an existing
971
+ Traffic Tunnel, all tePathEntries with
972
+ a value of n for teTunnelIndex MUST be removed by
973
+ the implementation when the corresponding
974
+ teTunnelEntry with a value of n for teTunnelIndex
975
+ is removed.""",
976
+ }, # row
977
+ "tePathIndex" : {
978
+ "nodetype" : "column",
979
+ "moduleName" : "TE-MIB",
980
+ "oid" : "1.3.6.1.2.1.122.1.3.1.1",
981
+ "status" : "current",
982
+ "syntax" : {
983
+ "type" : {
984
+ "basetype" : "Unsigned32",
985
+ "ranges" : [
986
+ {
987
+ "min" : "1",
988
+ "max" : "4294967295"
989
+ },
990
+ ],
991
+ "range" : {
992
+ "min" : "1",
993
+ "max" : "4294967295"
994
+ },
995
+ },
996
+ },
997
+ "access" : "noaccess",
998
+ "description" :
999
+ """An index that uniquely identifies a path within
1000
+ a Tunnel.
1001
+
1002
+
1003
+
1004
+ The combination of <teTunnelIndex, tePathIndex> thus
1005
+ uniquely identifies a path among all paths on this
1006
+ router.""",
1007
+ }, # column
1008
+ "tePathName" : {
1009
+ "nodetype" : "column",
1010
+ "moduleName" : "TE-MIB",
1011
+ "oid" : "1.3.6.1.2.1.122.1.3.1.2",
1012
+ "status" : "current",
1013
+ "syntax" : {
1014
+ "type" : {
1015
+ "basetype" : "OctetString",
1016
+ "parent module" : {
1017
+ "name" : "SNMP-FRAMEWORK-MIB",
1018
+ "type" : "SnmpAdminString",
1019
+ },
1020
+ "ranges" : [
1021
+ {
1022
+ "min" : "0",
1023
+ "max" : "32"
1024
+ },
1025
+ ],
1026
+ "range" : {
1027
+ "min" : "0",
1028
+ "max" : "32"
1029
+ },
1030
+ },
1031
+ },
1032
+ "access" : "readwrite",
1033
+ "description" :
1034
+ """The name of this path.
1035
+
1036
+ A pathName must be unique within the set of paths
1037
+ over a single tunnel. If a SET request is received
1038
+ with a duplicate name, then the implementation MUST
1039
+ return an inconsistentValue error.
1040
+
1041
+ The value of this object cannot be changed
1042
+ if the value of the corresponding teTunnelRowStatus
1043
+ object is 'active'.""",
1044
+ }, # column
1045
+ "tePathRowStatus" : {
1046
+ "nodetype" : "column",
1047
+ "moduleName" : "TE-MIB",
1048
+ "oid" : "1.3.6.1.2.1.122.1.3.1.3",
1049
+ "status" : "current",
1050
+ "syntax" : {
1051
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1052
+ },
1053
+ "access" : "readwrite",
1054
+ "description" :
1055
+ """The status of this conceptual row.
1056
+
1057
+ When the value of this object is 'active', then
1058
+ the value of tePathName cannot be changed. All
1059
+ other writable objects may be changed; however,
1060
+ these changes may affect traffic going over the TE
1061
+ tunnel or require the path to be computed and/or
1062
+ re-signaled.""",
1063
+ }, # column
1064
+ "tePathStorageType" : {
1065
+ "nodetype" : "column",
1066
+ "moduleName" : "TE-MIB",
1067
+ "oid" : "1.3.6.1.2.1.122.1.3.1.4",
1068
+ "status" : "current",
1069
+ "syntax" : {
1070
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1071
+ },
1072
+ "access" : "readwrite",
1073
+ "description" :
1074
+ """The storage type for this conceptual row.
1075
+
1076
+ Conceptual rows having the value 'permanent' need
1077
+ not allow write-access to any columnar objects
1078
+ in the row.""",
1079
+ }, # column
1080
+ "tePathType" : {
1081
+ "nodetype" : "column",
1082
+ "moduleName" : "TE-MIB",
1083
+ "oid" : "1.3.6.1.2.1.122.1.3.1.5",
1084
+ "status" : "current",
1085
+ "syntax" : {
1086
+ "type" : {
1087
+ "basetype" : "Enumeration",
1088
+ "other" : {
1089
+ "nodetype" : "namednumber",
1090
+ "number" : "1"
1091
+ },
1092
+ "primary" : {
1093
+ "nodetype" : "namednumber",
1094
+ "number" : "2"
1095
+ },
1096
+ "standby" : {
1097
+ "nodetype" : "namednumber",
1098
+ "number" : "3"
1099
+ },
1100
+ "secondary" : {
1101
+ "nodetype" : "namednumber",
1102
+ "number" : "4"
1103
+ },
1104
+ },
1105
+ },
1106
+ "access" : "readwrite",
1107
+ "description" :
1108
+ """The type for this PathEntry; i.e., whether this path
1109
+ is a primary path, a standby path, or a secondary
1110
+ path.""",
1111
+ }, # column
1112
+ "tePathConfiguredRoute" : {
1113
+ "nodetype" : "column",
1114
+ "moduleName" : "TE-MIB",
1115
+ "oid" : "1.3.6.1.2.1.122.1.3.1.6",
1116
+ "status" : "current",
1117
+ "syntax" : {
1118
+ "type" : { "module" :"", "name" : "Unsigned32"},
1119
+ },
1120
+ "access" : "readwrite",
1121
+ "description" :
1122
+ """The route that this TE path is configured to follow;
1123
+ i.e., an ordered list of hops. The value of this
1124
+ object gives the primary index into the Hop Table.
1125
+ The secondary index is the hop count in the path, so
1126
+ to get the route, one could get the first hop with
1127
+ index <tePathConfiguredRoute, 1> in the Hop Table
1128
+ and do a getnext to get subsequent hops.""",
1129
+ }, # column
1130
+ "tePathBandwidth" : {
1131
+ "nodetype" : "column",
1132
+ "moduleName" : "TE-MIB",
1133
+ "oid" : "1.3.6.1.2.1.122.1.3.1.7",
1134
+ "status" : "current",
1135
+ "syntax" : {
1136
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBitRate"},
1137
+ },
1138
+ "access" : "readwrite",
1139
+ "default" : "0",
1140
+ "units" : "Kilobits per second",
1141
+ "description" :
1142
+ """The configured bandwidth for this Tunnel,
1143
+ in units of thousands of bits per second (Kbps).""",
1144
+ }, # column
1145
+ "tePathIncludeAny" : {
1146
+ "nodetype" : "column",
1147
+ "moduleName" : "TE-MIB",
1148
+ "oid" : "1.3.6.1.2.1.122.1.3.1.8",
1149
+ "status" : "current",
1150
+ "syntax" : {
1151
+ "type" : { "module" :"", "name" : "Unsigned32"},
1152
+ },
1153
+ "access" : "readwrite",
1154
+ "default" : "0",
1155
+ "description" :
1156
+ """This is a configured set of administrative groups
1157
+ specified as a bit vector (i.e., bit n is 1 if group
1158
+
1159
+
1160
+
1161
+ n is in the set, where n = 0 is the LSB). For each
1162
+ link that this path goes through, the link must have
1163
+ at least one of the groups specified in IncludeAny
1164
+ to be acceptable. If IncludeAny is zero, all links
1165
+ are acceptable.""",
1166
+ }, # column
1167
+ "tePathIncludeAll" : {
1168
+ "nodetype" : "column",
1169
+ "moduleName" : "TE-MIB",
1170
+ "oid" : "1.3.6.1.2.1.122.1.3.1.9",
1171
+ "status" : "current",
1172
+ "syntax" : {
1173
+ "type" : { "module" :"", "name" : "Unsigned32"},
1174
+ },
1175
+ "access" : "readwrite",
1176
+ "default" : "0",
1177
+ "description" :
1178
+ """This is a configured set of administrative groups
1179
+ specified as a bit vector (i.e., bit n is 1 if group
1180
+ n is in the set, where n = 0 is the LSB). For each
1181
+ link that this path goes through, the link must have
1182
+ all of the groups specified in IncludeAll to be
1183
+ acceptable. If IncludeAll is zero, all links are
1184
+ acceptable.""",
1185
+ }, # column
1186
+ "tePathExclude" : {
1187
+ "nodetype" : "column",
1188
+ "moduleName" : "TE-MIB",
1189
+ "oid" : "1.3.6.1.2.1.122.1.3.1.10",
1190
+ "status" : "current",
1191
+ "syntax" : {
1192
+ "type" : { "module" :"", "name" : "Unsigned32"},
1193
+ },
1194
+ "access" : "readwrite",
1195
+ "default" : "0",
1196
+ "description" :
1197
+ """This is a configured set of administrative groups
1198
+ specified as a bit vector (i.e., bit n is 1 if group
1199
+ n is in the set, where n = 0 is the LSB). For each
1200
+ link that this path goes through, the link MUST have
1201
+ groups associated with it, and the intersection of
1202
+ the link's groups and the 'exclude' set MUST be
1203
+ null.""",
1204
+ }, # column
1205
+ "tePathSetupPriority" : {
1206
+ "nodetype" : "column",
1207
+ "moduleName" : "TE-MIB",
1208
+ "oid" : "1.3.6.1.2.1.122.1.3.1.11",
1209
+ "status" : "current",
1210
+ "syntax" : {
1211
+ "type" : {
1212
+ "basetype" : "Integer32",
1213
+ "ranges" : [
1214
+ {
1215
+ "min" : "0",
1216
+ "max" : "7"
1217
+ },
1218
+ ],
1219
+ "range" : {
1220
+ "min" : "0",
1221
+ "max" : "7"
1222
+ },
1223
+ },
1224
+ },
1225
+ "access" : "readwrite",
1226
+ "default" : "7",
1227
+ "description" :
1228
+ """The setup priority configured for this path, with 0
1229
+ as the highest priority and 7 as the lowest.""",
1230
+ }, # column
1231
+ "tePathHoldPriority" : {
1232
+ "nodetype" : "column",
1233
+ "moduleName" : "TE-MIB",
1234
+ "oid" : "1.3.6.1.2.1.122.1.3.1.12",
1235
+ "status" : "current",
1236
+ "syntax" : {
1237
+ "type" : {
1238
+ "basetype" : "Integer32",
1239
+ "ranges" : [
1240
+ {
1241
+ "min" : "0",
1242
+ "max" : "7"
1243
+ },
1244
+ ],
1245
+ "range" : {
1246
+ "min" : "0",
1247
+ "max" : "7"
1248
+ },
1249
+ },
1250
+ },
1251
+ "access" : "readwrite",
1252
+ "default" : "0",
1253
+ "description" :
1254
+ """The hold priority configured for this path, with 0
1255
+ as the highest priority and 7 as the lowest.""",
1256
+ }, # column
1257
+ "tePathProperties" : {
1258
+ "nodetype" : "column",
1259
+ "moduleName" : "TE-MIB",
1260
+ "oid" : "1.3.6.1.2.1.122.1.3.1.13",
1261
+ "status" : "current",
1262
+ "syntax" : {
1263
+ "type" : {
1264
+ "basetype" : "Bits",
1265
+ "recordRoute" : {
1266
+ "nodetype" : "namednumber",
1267
+ "number" : "0"
1268
+ },
1269
+ "cspf" : {
1270
+ "nodetype" : "namednumber",
1271
+ "number" : "1"
1272
+ },
1273
+ "makeBeforeBreak" : {
1274
+ "nodetype" : "namednumber",
1275
+ "number" : "2"
1276
+ },
1277
+ "mergeable" : {
1278
+ "nodetype" : "namednumber",
1279
+ "number" : "3"
1280
+ },
1281
+ "fastReroute" : {
1282
+ "nodetype" : "namednumber",
1283
+ "number" : "4"
1284
+ },
1285
+ "protected" : {
1286
+ "nodetype" : "namednumber",
1287
+ "number" : "5"
1288
+ },
1289
+ },
1290
+ },
1291
+ "access" : "readwrite",
1292
+ "description" :
1293
+ """The set of configured properties for this path,
1294
+ expressed as a bit map. For example, if the path
1295
+ supports 'make before break', then bit 2 is set.""",
1296
+ }, # column
1297
+ "tePathOperStatus" : {
1298
+ "nodetype" : "column",
1299
+ "moduleName" : "TE-MIB",
1300
+ "oid" : "1.3.6.1.2.1.122.1.3.1.14",
1301
+ "status" : "current",
1302
+ "syntax" : {
1303
+ "type" : {
1304
+ "basetype" : "Enumeration",
1305
+ "unknown" : {
1306
+ "nodetype" : "namednumber",
1307
+ "number" : "0"
1308
+ },
1309
+ "down" : {
1310
+ "nodetype" : "namednumber",
1311
+ "number" : "1"
1312
+ },
1313
+ "testing" : {
1314
+ "nodetype" : "namednumber",
1315
+ "number" : "2"
1316
+ },
1317
+ "dormant" : {
1318
+ "nodetype" : "namednumber",
1319
+ "number" : "3"
1320
+ },
1321
+ "ready" : {
1322
+ "nodetype" : "namednumber",
1323
+ "number" : "4"
1324
+ },
1325
+ "operational" : {
1326
+ "nodetype" : "namednumber",
1327
+ "number" : "5"
1328
+ },
1329
+ },
1330
+ },
1331
+ "access" : "readonly",
1332
+ "description" :
1333
+ """The operational status of the path:
1334
+ unknown:
1335
+ down: Signaling failed.
1336
+ testing: Administratively set aside for testing.
1337
+ dormant: Not signaled (for a backup tunnel).
1338
+ ready: Signaled but not yet carrying traffic.
1339
+ operational: Signaled and carrying traffic.""",
1340
+ }, # column
1341
+ "tePathAdminStatus" : {
1342
+ "nodetype" : "column",
1343
+ "moduleName" : "TE-MIB",
1344
+ "oid" : "1.3.6.1.2.1.122.1.3.1.15",
1345
+ "status" : "current",
1346
+ "syntax" : {
1347
+ "type" : {
1348
+ "basetype" : "Enumeration",
1349
+ "normal" : {
1350
+ "nodetype" : "namednumber",
1351
+ "number" : "1"
1352
+ },
1353
+ "testing" : {
1354
+ "nodetype" : "namednumber",
1355
+ "number" : "2"
1356
+ },
1357
+ },
1358
+ },
1359
+ "access" : "readwrite",
1360
+ "description" :
1361
+ """The operational status of the path:
1362
+ normal: Used normally for forwarding.
1363
+ testing: Administratively set aside for testing.""",
1364
+ }, # column
1365
+ "tePathComputedRoute" : {
1366
+ "nodetype" : "column",
1367
+ "moduleName" : "TE-MIB",
1368
+ "oid" : "1.3.6.1.2.1.122.1.3.1.16",
1369
+ "status" : "current",
1370
+ "syntax" : {
1371
+ "type" : { "module" :"", "name" : "Unsigned32"},
1372
+ },
1373
+ "access" : "readonly",
1374
+ "description" :
1375
+ """The route computed for this path, perhaps using
1376
+ some form of Constraint-based Routing. The
1377
+ algorithm is implementation dependent.
1378
+
1379
+ This object returns the computed route as an ordered
1380
+ list of hops. The value of this object gives the
1381
+ primary index into the Hop Table. The secondary
1382
+ index is the hop count in the path, so to get the
1383
+ route, one could get the first hop with index
1384
+ <tePathComputedRoute, 1> in the Hop Table and do a
1385
+ getnext to get subsequent hops.
1386
+
1387
+ A value of zero (0) means there is no computedRoute.""",
1388
+ }, # column
1389
+ "tePathRecordedRoute" : {
1390
+ "nodetype" : "column",
1391
+ "moduleName" : "TE-MIB",
1392
+ "oid" : "1.3.6.1.2.1.122.1.3.1.17",
1393
+ "status" : "current",
1394
+ "syntax" : {
1395
+ "type" : { "module" :"", "name" : "Unsigned32"},
1396
+ },
1397
+ "access" : "readonly",
1398
+ "description" :
1399
+ """The route actually used for this path, as recorded
1400
+ by the signaling protocol. This is again an ordered
1401
+ list of hops; each hop is expected to be strict.
1402
+
1403
+ The value of this object gives the primary index
1404
+ into the Hop Table. The secondary index is the hop
1405
+ count in the path, so to get the route, one can get
1406
+ the first hop with index <tePathRecordedRoute, 1>
1407
+ in the Hop Table and do a getnext to get subsequent
1408
+
1409
+
1410
+
1411
+ hops.
1412
+
1413
+ A value of zero (0) means there is no recordedRoute.""",
1414
+ }, # column
1415
+ "tePathHopTable" : {
1416
+ "nodetype" : "table",
1417
+ "moduleName" : "TE-MIB",
1418
+ "oid" : "1.3.6.1.2.1.122.1.4",
1419
+ "status" : "current",
1420
+ "description" :
1421
+ """Table of Tunnel Path Hops.""",
1422
+ }, # table
1423
+ "tePathHopEntry" : {
1424
+ "nodetype" : "row",
1425
+ "moduleName" : "TE-MIB",
1426
+ "oid" : "1.3.6.1.2.1.122.1.4.1",
1427
+ "create" : "true",
1428
+ "status" : "current",
1429
+ "linkage" : [
1430
+ "teHopListIndex",
1431
+ "tePathHopIndex",
1432
+ ],
1433
+ "description" :
1434
+ """Entry containing information about a particular
1435
+ hop.""",
1436
+ }, # row
1437
+ "teHopListIndex" : {
1438
+ "nodetype" : "column",
1439
+ "moduleName" : "TE-MIB",
1440
+ "oid" : "1.3.6.1.2.1.122.1.4.1.1",
1441
+ "status" : "current",
1442
+ "syntax" : {
1443
+ "type" : {
1444
+ "basetype" : "Unsigned32",
1445
+ "ranges" : [
1446
+ {
1447
+ "min" : "1",
1448
+ "max" : "4294967295"
1449
+ },
1450
+ ],
1451
+ "range" : {
1452
+ "min" : "1",
1453
+ "max" : "4294967295"
1454
+ },
1455
+ },
1456
+ },
1457
+ "access" : "noaccess",
1458
+ "description" :
1459
+ """An index that identifies a list of hops. This is
1460
+ the primary index to access hops.""",
1461
+ }, # column
1462
+ "tePathHopIndex" : {
1463
+ "nodetype" : "column",
1464
+ "moduleName" : "TE-MIB",
1465
+ "oid" : "1.3.6.1.2.1.122.1.4.1.2",
1466
+ "status" : "current",
1467
+ "syntax" : {
1468
+ "type" : {
1469
+ "basetype" : "Unsigned32",
1470
+ "ranges" : [
1471
+ {
1472
+ "min" : "1",
1473
+ "max" : "4294967295"
1474
+ },
1475
+ ],
1476
+ "range" : {
1477
+ "min" : "1",
1478
+ "max" : "4294967295"
1479
+ },
1480
+ },
1481
+ },
1482
+ "access" : "noaccess",
1483
+ "description" :
1484
+ """An index that identifies a particular hop among the
1485
+ list of hops for a path. An index of i identifies
1486
+ the ith hop. This is the secondary index for a hop
1487
+ entry.""",
1488
+ }, # column
1489
+ "tePathHopRowStatus" : {
1490
+ "nodetype" : "column",
1491
+ "moduleName" : "TE-MIB",
1492
+ "oid" : "1.3.6.1.2.1.122.1.4.1.3",
1493
+ "status" : "current",
1494
+ "syntax" : {
1495
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1496
+ },
1497
+ "access" : "readwrite",
1498
+ "description" :
1499
+ """The status of this conceptual row.
1500
+
1501
+ Any field in this table can be changed, even if the
1502
+ value of this object is 'active'. However, such a
1503
+ change may cause traffic to be rerouted or even
1504
+ disrupted.""",
1505
+ }, # column
1506
+ "tePathHopStorageType" : {
1507
+ "nodetype" : "column",
1508
+ "moduleName" : "TE-MIB",
1509
+ "oid" : "1.3.6.1.2.1.122.1.4.1.4",
1510
+ "status" : "current",
1511
+ "syntax" : {
1512
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1513
+ },
1514
+ "access" : "readwrite",
1515
+ "description" :
1516
+ """The storage type for this conceptual row.
1517
+
1518
+ Conceptual rows having the value 'permanent' need
1519
+ not allow write-access to any columnar objects
1520
+ in the row.""",
1521
+ }, # column
1522
+ "tePathHopAddrType" : {
1523
+ "nodetype" : "column",
1524
+ "moduleName" : "TE-MIB",
1525
+ "oid" : "1.3.6.1.2.1.122.1.4.1.5",
1526
+ "status" : "current",
1527
+ "syntax" : {
1528
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddressType"},
1529
+ },
1530
+ "access" : "readwrite",
1531
+ "description" :
1532
+ """The type of Traffic Engineered Tunnel hop Address
1533
+ of this hop.
1534
+
1535
+ The value of this object cannot be changed
1536
+ if the value of the corresponding tePathRowStatus
1537
+ object is 'active'.""",
1538
+ }, # column
1539
+ "tePathHopAddress" : {
1540
+ "nodetype" : "column",
1541
+ "moduleName" : "TE-MIB",
1542
+ "oid" : "1.3.6.1.2.1.122.1.4.1.6",
1543
+ "status" : "current",
1544
+ "syntax" : {
1545
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "TeHopAddress"},
1546
+ },
1547
+ "access" : "readwrite",
1548
+ "description" :
1549
+ """The Traffic Engineered Tunnel hop Address of this
1550
+ hop.
1551
+
1552
+ The type of this address is determined by the value
1553
+ of the corresponding tePathHopAddressType.
1554
+
1555
+ The value of this object cannot be changed
1556
+ if the value of the corresponding teTunnelRowStatus
1557
+ object is 'active'.""",
1558
+ }, # column
1559
+ "tePathHopType" : {
1560
+ "nodetype" : "column",
1561
+ "moduleName" : "TE-MIB",
1562
+ "oid" : "1.3.6.1.2.1.122.1.4.1.7",
1563
+ "status" : "current",
1564
+ "syntax" : {
1565
+ "type" : {
1566
+ "basetype" : "Enumeration",
1567
+ "unknown" : {
1568
+ "nodetype" : "namednumber",
1569
+ "number" : "0"
1570
+ },
1571
+ "loose" : {
1572
+ "nodetype" : "namednumber",
1573
+ "number" : "1"
1574
+ },
1575
+ "strict" : {
1576
+ "nodetype" : "namednumber",
1577
+ "number" : "2"
1578
+ },
1579
+ },
1580
+ },
1581
+ "access" : "readonly",
1582
+ "description" :
1583
+ """The type of hop:
1584
+ unknown:
1585
+ loose: This hop is a LOOSE hop.
1586
+ strict: This hop is a STRICT hop.""",
1587
+ }, # column
1588
+ "teMIBConformance" : {
1589
+ "nodetype" : "node",
1590
+ "moduleName" : "TE-MIB",
1591
+ "oid" : "1.3.6.1.2.1.122.2",
1592
+ }, # node
1593
+ "teGroups" : {
1594
+ "nodetype" : "node",
1595
+ "moduleName" : "TE-MIB",
1596
+ "oid" : "1.3.6.1.2.1.122.2.1",
1597
+ }, # node
1598
+ "teModuleCompliance" : {
1599
+ "nodetype" : "node",
1600
+ "moduleName" : "TE-MIB",
1601
+ "oid" : "1.3.6.1.2.1.122.2.2",
1602
+ }, # node
1603
+ }, # nodes
1604
+
1605
+ "notifications" : {
1606
+ "teTunnelUp" : {
1607
+ "nodetype" : "notification",
1608
+ "moduleName" : "TE-MIB",
1609
+ "oid" : "1.3.6.1.2.1.122.0.1",
1610
+ "status" : "current",
1611
+ "objects" : {
1612
+ "teTunnelName" : {
1613
+ "nodetype" : "object",
1614
+ "module" : "TE-MIB"
1615
+ },
1616
+ "tePathName" : {
1617
+ "nodetype" : "object",
1618
+ "module" : "TE-MIB"
1619
+ },
1620
+ },
1621
+ "description" :
1622
+ """A teTunnelUp notification is generated when the
1623
+ Tunnel indexed by teTunnelName transitions to the
1624
+ 'up' state.
1625
+
1626
+ A tunnel is up when at least one of its paths is up.
1627
+ The tePathName is the name of the path whose
1628
+ transition to up made the tunnel go up.
1629
+
1630
+
1631
+
1632
+
1633
+ This notification MUST be limited to at most one
1634
+ every minute, in case the tunnel flaps up and down.""",
1635
+ }, # notification
1636
+ "teTunnelDown" : {
1637
+ "nodetype" : "notification",
1638
+ "moduleName" : "TE-MIB",
1639
+ "oid" : "1.3.6.1.2.1.122.0.2",
1640
+ "status" : "current",
1641
+ "objects" : {
1642
+ "teTunnelName" : {
1643
+ "nodetype" : "object",
1644
+ "module" : "TE-MIB"
1645
+ },
1646
+ "tePathName" : {
1647
+ "nodetype" : "object",
1648
+ "module" : "TE-MIB"
1649
+ },
1650
+ },
1651
+ "description" :
1652
+ """A teTunnelDown notification is generated when the
1653
+ Tunnel indexed by teTunnelName transitions to the
1654
+ 'down' state.
1655
+
1656
+ A tunnel is up when at least one of its paths is up.
1657
+ The tePathName is the name of the path whose
1658
+ transition to down made the tunnel go down.
1659
+
1660
+ This notification MUST be limited to at most one
1661
+ every minute, in case the tunnel flaps up and down.""",
1662
+ }, # notification
1663
+ "teTunnelChanged" : {
1664
+ "nodetype" : "notification",
1665
+ "moduleName" : "TE-MIB",
1666
+ "oid" : "1.3.6.1.2.1.122.0.3",
1667
+ "status" : "current",
1668
+ "objects" : {
1669
+ "teTunnelName" : {
1670
+ "nodetype" : "object",
1671
+ "module" : "TE-MIB"
1672
+ },
1673
+ "tePathName" : {
1674
+ "nodetype" : "object",
1675
+ "module" : "TE-MIB"
1676
+ },
1677
+ },
1678
+ "description" :
1679
+ """A teTunnelChanged notification is generated when an
1680
+ active path on the Tunnel indexed by teTunnelName
1681
+ changes or a new path becomes active. The value
1682
+ of tePathName is the new active path.
1683
+
1684
+ This notification MUST be limited to at most one
1685
+ every minute, in case the tunnel changes quickly.""",
1686
+ }, # notification
1687
+ "teTunnelRerouted" : {
1688
+ "nodetype" : "notification",
1689
+ "moduleName" : "TE-MIB",
1690
+ "oid" : "1.3.6.1.2.1.122.0.4",
1691
+ "status" : "current",
1692
+ "objects" : {
1693
+ "teTunnelName" : {
1694
+ "nodetype" : "object",
1695
+ "module" : "TE-MIB"
1696
+ },
1697
+ "tePathName" : {
1698
+ "nodetype" : "object",
1699
+ "module" : "TE-MIB"
1700
+ },
1701
+ },
1702
+ "description" :
1703
+ """A teTunnelRerouted notification is generated when
1704
+ an active path for the Tunnel indexed by
1705
+ teTunnelName stays the same, but its route changes.
1706
+
1707
+ This notification MUST be limited to at most one
1708
+ every minute, in case the tunnel reroutes quickly.""",
1709
+ }, # notification
1710
+ }, # notifications
1711
+
1712
+ "groups" : {
1713
+ "teTrafficEngineeringGroup" : {
1714
+ "nodetype" : "group",
1715
+ "moduleName" : "TE-MIB",
1716
+ "oid" : "1.3.6.1.2.1.122.2.1.1",
1717
+ "status" : "current",
1718
+ "members" : {
1719
+ "teTunnelName" : {
1720
+ "nodetype" : "member",
1721
+ "module" : "TE-MIB"
1722
+ },
1723
+ "teTunnelNextPathIndex" : {
1724
+ "nodetype" : "member",
1725
+ "module" : "TE-MIB"
1726
+ },
1727
+ "teTunnelRowStatus" : {
1728
+ "nodetype" : "member",
1729
+ "module" : "TE-MIB"
1730
+ },
1731
+ "teTunnelStorageType" : {
1732
+ "nodetype" : "member",
1733
+ "module" : "TE-MIB"
1734
+ },
1735
+ "teTunnelSourceAddressType" : {
1736
+ "nodetype" : "member",
1737
+ "module" : "TE-MIB"
1738
+ },
1739
+ "teTunnelSourceAddress" : {
1740
+ "nodetype" : "member",
1741
+ "module" : "TE-MIB"
1742
+ },
1743
+ "teTunnelDestinationAddressType" : {
1744
+ "nodetype" : "member",
1745
+ "module" : "TE-MIB"
1746
+ },
1747
+ "teTunnelDestinationAddress" : {
1748
+ "nodetype" : "member",
1749
+ "module" : "TE-MIB"
1750
+ },
1751
+ "teTunnelState" : {
1752
+ "nodetype" : "member",
1753
+ "module" : "TE-MIB"
1754
+ },
1755
+ "teTunnelDiscontinuityTimer" : {
1756
+ "nodetype" : "member",
1757
+ "module" : "TE-MIB"
1758
+ },
1759
+ "teTunnelOctets" : {
1760
+ "nodetype" : "member",
1761
+ "module" : "TE-MIB"
1762
+ },
1763
+ "teTunnelPackets" : {
1764
+ "nodetype" : "member",
1765
+ "module" : "TE-MIB"
1766
+ },
1767
+ "teTunnelLPOctets" : {
1768
+ "nodetype" : "member",
1769
+ "module" : "TE-MIB"
1770
+ },
1771
+ "teTunnelLPPackets" : {
1772
+ "nodetype" : "member",
1773
+ "module" : "TE-MIB"
1774
+ },
1775
+ "teTunnelAge" : {
1776
+ "nodetype" : "member",
1777
+ "module" : "TE-MIB"
1778
+ },
1779
+ "teTunnelTimeUp" : {
1780
+ "nodetype" : "member",
1781
+ "module" : "TE-MIB"
1782
+ },
1783
+ "teTunnelPrimaryTimeUp" : {
1784
+ "nodetype" : "member",
1785
+ "module" : "TE-MIB"
1786
+ },
1787
+ "teTunnelTransitions" : {
1788
+ "nodetype" : "member",
1789
+ "module" : "TE-MIB"
1790
+ },
1791
+ "teTunnelLastTransition" : {
1792
+ "nodetype" : "member",
1793
+ "module" : "TE-MIB"
1794
+ },
1795
+ "teTunnelPathChanges" : {
1796
+ "nodetype" : "member",
1797
+ "module" : "TE-MIB"
1798
+ },
1799
+ "teTunnelLastPathChange" : {
1800
+ "nodetype" : "member",
1801
+ "module" : "TE-MIB"
1802
+ },
1803
+ "teTunnelConfiguredPaths" : {
1804
+ "nodetype" : "member",
1805
+ "module" : "TE-MIB"
1806
+ },
1807
+ "teTunnelStandbyPaths" : {
1808
+ "nodetype" : "member",
1809
+ "module" : "TE-MIB"
1810
+ },
1811
+ "teTunnelOperationalPaths" : {
1812
+ "nodetype" : "member",
1813
+ "module" : "TE-MIB"
1814
+ },
1815
+ "tePathBandwidth" : {
1816
+ "nodetype" : "member",
1817
+ "module" : "TE-MIB"
1818
+ },
1819
+ "tePathIncludeAny" : {
1820
+ "nodetype" : "member",
1821
+ "module" : "TE-MIB"
1822
+ },
1823
+ "tePathIncludeAll" : {
1824
+ "nodetype" : "member",
1825
+ "module" : "TE-MIB"
1826
+ },
1827
+ "tePathExclude" : {
1828
+ "nodetype" : "member",
1829
+ "module" : "TE-MIB"
1830
+ },
1831
+ "tePathSetupPriority" : {
1832
+ "nodetype" : "member",
1833
+ "module" : "TE-MIB"
1834
+ },
1835
+ "tePathHoldPriority" : {
1836
+ "nodetype" : "member",
1837
+ "module" : "TE-MIB"
1838
+ },
1839
+ "tePathProperties" : {
1840
+ "nodetype" : "member",
1841
+ "module" : "TE-MIB"
1842
+ },
1843
+ "tePathOperStatus" : {
1844
+ "nodetype" : "member",
1845
+ "module" : "TE-MIB"
1846
+ },
1847
+ "tePathAdminStatus" : {
1848
+ "nodetype" : "member",
1849
+ "module" : "TE-MIB"
1850
+ },
1851
+ "tePathComputedRoute" : {
1852
+ "nodetype" : "member",
1853
+ "module" : "TE-MIB"
1854
+ },
1855
+ "tePathRecordedRoute" : {
1856
+ "nodetype" : "member",
1857
+ "module" : "TE-MIB"
1858
+ },
1859
+ "teDistProtocol" : {
1860
+ "nodetype" : "member",
1861
+ "module" : "TE-MIB"
1862
+ },
1863
+ "teSignalingProto" : {
1864
+ "nodetype" : "member",
1865
+ "module" : "TE-MIB"
1866
+ },
1867
+ "teNotificationEnable" : {
1868
+ "nodetype" : "member",
1869
+ "module" : "TE-MIB"
1870
+ },
1871
+ "teNextTunnelIndex" : {
1872
+ "nodetype" : "member",
1873
+ "module" : "TE-MIB"
1874
+ },
1875
+ "teNextPathHopIndex" : {
1876
+ "nodetype" : "member",
1877
+ "module" : "TE-MIB"
1878
+ },
1879
+ "teAdminGroupName" : {
1880
+ "nodetype" : "member",
1881
+ "module" : "TE-MIB"
1882
+ },
1883
+ "teAdminGroupRowStatus" : {
1884
+ "nodetype" : "member",
1885
+ "module" : "TE-MIB"
1886
+ },
1887
+ "teConfiguredTunnels" : {
1888
+ "nodetype" : "member",
1889
+ "module" : "TE-MIB"
1890
+ },
1891
+ "teActiveTunnels" : {
1892
+ "nodetype" : "member",
1893
+ "module" : "TE-MIB"
1894
+ },
1895
+ "tePrimaryTunnels" : {
1896
+ "nodetype" : "member",
1897
+ "module" : "TE-MIB"
1898
+ },
1899
+ "tePathName" : {
1900
+ "nodetype" : "member",
1901
+ "module" : "TE-MIB"
1902
+ },
1903
+ "tePathType" : {
1904
+ "nodetype" : "member",
1905
+ "module" : "TE-MIB"
1906
+ },
1907
+ "tePathRowStatus" : {
1908
+ "nodetype" : "member",
1909
+ "module" : "TE-MIB"
1910
+ },
1911
+ "tePathStorageType" : {
1912
+ "nodetype" : "member",
1913
+ "module" : "TE-MIB"
1914
+ },
1915
+ "tePathConfiguredRoute" : {
1916
+ "nodetype" : "member",
1917
+ "module" : "TE-MIB"
1918
+ },
1919
+ "tePathHopRowStatus" : {
1920
+ "nodetype" : "member",
1921
+ "module" : "TE-MIB"
1922
+ },
1923
+ "tePathHopStorageType" : {
1924
+ "nodetype" : "member",
1925
+ "module" : "TE-MIB"
1926
+ },
1927
+ "tePathHopAddrType" : {
1928
+ "nodetype" : "member",
1929
+ "module" : "TE-MIB"
1930
+ },
1931
+ "tePathHopAddress" : {
1932
+ "nodetype" : "member",
1933
+ "module" : "TE-MIB"
1934
+ },
1935
+ "tePathHopType" : {
1936
+ "nodetype" : "member",
1937
+ "module" : "TE-MIB"
1938
+ },
1939
+ }, # members
1940
+ "description" :
1941
+ """Objects for Traffic Engineering in this MIB module.""",
1942
+ }, # group
1943
+ "teNotificationGroup" : {
1944
+ "nodetype" : "group",
1945
+ "moduleName" : "TE-MIB",
1946
+ "oid" : "1.3.6.1.2.1.122.2.1.2",
1947
+ "status" : "current",
1948
+ "members" : {
1949
+ "teTunnelUp" : {
1950
+ "nodetype" : "member",
1951
+ "module" : "TE-MIB"
1952
+ },
1953
+ "teTunnelDown" : {
1954
+ "nodetype" : "member",
1955
+ "module" : "TE-MIB"
1956
+ },
1957
+ "teTunnelChanged" : {
1958
+ "nodetype" : "member",
1959
+ "module" : "TE-MIB"
1960
+ },
1961
+ "teTunnelRerouted" : {
1962
+ "nodetype" : "member",
1963
+ "module" : "TE-MIB"
1964
+ },
1965
+ }, # members
1966
+ "description" :
1967
+ """Notifications specified in this MIB module.""",
1968
+ }, # group
1969
+ }, # groups
1970
+
1971
+ "compliances" : {
1972
+ "teModuleReadOnlyCompliance" : {
1973
+ "nodetype" : "compliance",
1974
+ "moduleName" : "TE-MIB",
1975
+ "oid" : "1.3.6.1.2.1.122.2.2.1",
1976
+ "status" : "current",
1977
+ "description" :
1978
+ """When this MIB module is implemented without support
1979
+ for read-create (i.e., in read-only mode), then such
1980
+ an implementation can claim read-only compliance.
1981
+ Such a device can be monitored but cannot be
1982
+ configured with this MIB module.""",
1983
+ "requires" : {
1984
+ "teTrafficEngineeringGroup" : {
1985
+ "nodetype" : "mandatory",
1986
+ "module" : "TE-MIB"
1987
+ },
1988
+ "teNotificationGroup" : {
1989
+ "nodetype" : "optional",
1990
+ "module" : "TE-MIB",
1991
+ "description" :
1992
+ """Implementation of this group is optional.""",
1993
+ },
1994
+ }, # requires
1995
+ "refinements" : {
1996
+ "teNotificationEnable" : {
1997
+ "module" : "TE-MIB",
1998
+ "access" : "readonly",
1999
+ "description" :
2000
+ """Write access is not required.""",
2001
+ },
2002
+ "teAdminGroupName" : {
2003
+ "module" : "TE-MIB",
2004
+ "access" : "readonly",
2005
+ "description" :
2006
+ """Write access is not required.""",
2007
+ },
2008
+ "teAdminGroupRowStatus" : {
2009
+ "module" : "TE-MIB",
2010
+ "syntax" : {
2011
+ "type" : {
2012
+ "basetype" : "Enumeration",
2013
+ "parent module" : {
2014
+ "name" : "SNMPv2-TC",
2015
+ "type" : "RowStatus",
2016
+ },
2017
+ "active" : {
2018
+ "nodetype" : "namednumber",
2019
+ "number" : "1"
2020
+ },
2021
+ },
2022
+ }, # syntax
2023
+ "access" : "readonly",
2024
+ "description" :
2025
+ """Write access is not required.""",
2026
+ },
2027
+ "teTunnelName" : {
2028
+ "module" : "TE-MIB",
2029
+ "access" : "readonly",
2030
+ "description" :
2031
+ """Write access is not required.""",
2032
+ },
2033
+ "teTunnelRowStatus" : {
2034
+ "module" : "TE-MIB",
2035
+ "syntax" : {
2036
+ "type" : {
2037
+ "basetype" : "Enumeration",
2038
+ "parent module" : {
2039
+ "name" : "SNMPv2-TC",
2040
+ "type" : "RowStatus",
2041
+ },
2042
+ "active" : {
2043
+ "nodetype" : "namednumber",
2044
+ "number" : "1"
2045
+ },
2046
+ },
2047
+ }, # syntax
2048
+ "access" : "readonly",
2049
+ "description" :
2050
+ """Write access is not required.""",
2051
+ },
2052
+ "teTunnelStorageType" : {
2053
+ "module" : "TE-MIB",
2054
+ "access" : "readonly",
2055
+ "description" :
2056
+ """Write access is not required.""",
2057
+ },
2058
+ "teTunnelSourceAddressType" : {
2059
+ "module" : "TE-MIB",
2060
+ "syntax" : {
2061
+ "type" : {
2062
+ "basetype" : "Enumeration",
2063
+ "parent module" : {
2064
+ "name" : "MPLS-TC-STD-MIB",
2065
+ "type" : "TeHopAddressType",
2066
+ },
2067
+ "ipv4" : {
2068
+ "nodetype" : "namednumber",
2069
+ "number" : "1"
2070
+ },
2071
+ "ipv6" : {
2072
+ "nodetype" : "namednumber",
2073
+ "number" : "2"
2074
+ },
2075
+ },
2076
+ }, # syntax
2077
+ "access" : "readonly",
2078
+ "description" :
2079
+ """Write access is not required. An
2080
+ implementation is only required to support
2081
+ IPv4 and IPv6 host addresses.""",
2082
+ },
2083
+ "teTunnelSourceAddress" : {
2084
+ "module" : "TE-MIB",
2085
+ "access" : "readonly",
2086
+ "description" :
2087
+ """Write access is not required.""",
2088
+ },
2089
+ "teTunnelDestinationAddressType" : {
2090
+ "module" : "TE-MIB",
2091
+ "access" : "readonly",
2092
+ "description" :
2093
+ """Write access is not required.""",
2094
+ },
2095
+ "teTunnelDestinationAddress" : {
2096
+ "module" : "TE-MIB",
2097
+ "access" : "readonly",
2098
+ "description" :
2099
+ """Write access is not required.""",
2100
+ },
2101
+ "tePathName" : {
2102
+ "module" : "TE-MIB",
2103
+ "access" : "readonly",
2104
+ "description" :
2105
+ """Write access is not required.""",
2106
+ },
2107
+ "tePathRowStatus" : {
2108
+ "module" : "TE-MIB",
2109
+ "syntax" : {
2110
+ "type" : {
2111
+ "basetype" : "Enumeration",
2112
+ "parent module" : {
2113
+ "name" : "SNMPv2-TC",
2114
+ "type" : "RowStatus",
2115
+ },
2116
+ "active" : {
2117
+ "nodetype" : "namednumber",
2118
+ "number" : "1"
2119
+ },
2120
+ },
2121
+ }, # syntax
2122
+ "access" : "readonly",
2123
+ "description" :
2124
+ """Write access is not required.""",
2125
+ },
2126
+ "tePathStorageType" : {
2127
+ "module" : "TE-MIB",
2128
+ "access" : "readonly",
2129
+ "description" :
2130
+ """Write access is not required.""",
2131
+ },
2132
+ "tePathType" : {
2133
+ "module" : "TE-MIB",
2134
+ "access" : "readonly",
2135
+ "description" :
2136
+ """Write access is not required.""",
2137
+ },
2138
+ "tePathConfiguredRoute" : {
2139
+ "module" : "TE-MIB",
2140
+ "access" : "readonly",
2141
+ "description" :
2142
+ """Write access is not required.""",
2143
+ },
2144
+ "tePathBandwidth" : {
2145
+ "module" : "TE-MIB",
2146
+ "access" : "readonly",
2147
+ "description" :
2148
+ """Write access is not required.""",
2149
+ },
2150
+ "tePathIncludeAny" : {
2151
+ "module" : "TE-MIB",
2152
+ "access" : "readonly",
2153
+ "description" :
2154
+ """Write access is not required.""",
2155
+ },
2156
+ "tePathIncludeAll" : {
2157
+ "module" : "TE-MIB",
2158
+ "access" : "readonly",
2159
+ "description" :
2160
+ """Write access is not required.""",
2161
+ },
2162
+ "tePathExclude" : {
2163
+ "module" : "TE-MIB",
2164
+ "access" : "readonly",
2165
+ "description" :
2166
+ """Write access is not required.""",
2167
+ },
2168
+ "tePathSetupPriority" : {
2169
+ "module" : "TE-MIB",
2170
+ "access" : "readonly",
2171
+ "description" :
2172
+ """Write access is not required.""",
2173
+ },
2174
+ "tePathHoldPriority" : {
2175
+ "module" : "TE-MIB",
2176
+ "access" : "readonly",
2177
+ "description" :
2178
+ """Write access is not required.""",
2179
+ },
2180
+ "tePathProperties" : {
2181
+ "module" : "TE-MIB",
2182
+ "access" : "readonly",
2183
+ "description" :
2184
+ """Write access is not required.""",
2185
+ },
2186
+ "tePathAdminStatus" : {
2187
+ "module" : "TE-MIB",
2188
+ "access" : "readonly",
2189
+ "description" :
2190
+ """Write access is not required.""",
2191
+ },
2192
+ "tePathHopRowStatus" : {
2193
+ "module" : "TE-MIB",
2194
+ "syntax" : {
2195
+ "type" : {
2196
+ "basetype" : "Enumeration",
2197
+ "parent module" : {
2198
+ "name" : "SNMPv2-TC",
2199
+ "type" : "RowStatus",
2200
+ },
2201
+ "active" : {
2202
+ "nodetype" : "namednumber",
2203
+ "number" : "1"
2204
+ },
2205
+ },
2206
+ }, # syntax
2207
+ "access" : "readonly",
2208
+ "description" :
2209
+ """Write access is not required.""",
2210
+ },
2211
+ "tePathHopStorageType" : {
2212
+ "module" : "TE-MIB",
2213
+ "access" : "readonly",
2214
+ "description" :
2215
+ """Write access is not required.""",
2216
+ },
2217
+ "tePathHopAddrType" : {
2218
+ "module" : "TE-MIB",
2219
+ "access" : "readonly",
2220
+ "description" :
2221
+ """Write access is not required.""",
2222
+ },
2223
+ "tePathHopAddress" : {
2224
+ "module" : "TE-MIB",
2225
+ "access" : "readonly",
2226
+ "description" :
2227
+ """Write access is not required.""",
2228
+ },
2229
+ }, # refinements
2230
+
2231
+ }, # compliance
2232
+ "teModuleFullCompliance" : {
2233
+ "nodetype" : "compliance",
2234
+ "moduleName" : "TE-MIB",
2235
+ "oid" : "1.3.6.1.2.1.122.2.2.2",
2236
+ "status" : "current",
2237
+ "description" :
2238
+ """When this MIB module is implemented with support for
2239
+ read-create, then the implementation can claim
2240
+ full compliance. Such devices can be both
2241
+
2242
+
2243
+
2244
+ monitored and configured with this MIB module.""",
2245
+ "requires" : {
2246
+ "teTrafficEngineeringGroup" : {
2247
+ "nodetype" : "mandatory",
2248
+ "module" : "TE-MIB"
2249
+ },
2250
+ "teNotificationGroup" : {
2251
+ "nodetype" : "optional",
2252
+ "module" : "TE-MIB",
2253
+ "description" :
2254
+ """Implementation of this group is optional.""",
2255
+ },
2256
+ }, # requires
2257
+ "refinements" : {
2258
+ "teAdminGroupRowStatus" : {
2259
+ "module" : "TE-MIB",
2260
+ "syntax" : {
2261
+ "type" : {
2262
+ "basetype" : "Enumeration",
2263
+ "parent module" : {
2264
+ "name" : "SNMPv2-TC",
2265
+ "type" : "RowStatus",
2266
+ },
2267
+ "active" : {
2268
+ "nodetype" : "namednumber",
2269
+ "number" : "1"
2270
+ },
2271
+ },
2272
+ }, # syntax
2273
+ "writesyntax" : {
2274
+ "type" : {
2275
+ "basetype" : "Enumeration",
2276
+ "parent module" : {
2277
+ "name" : "SNMPv2-TC",
2278
+ "type" : "RowStatus",
2279
+ },
2280
+ "createAndGo" : {
2281
+ "nodetype" : "namednumber",
2282
+ "number" : "4"
2283
+ },
2284
+ "destroy" : {
2285
+ "nodetype" : "namednumber",
2286
+ "number" : "6"
2287
+ },
2288
+ },
2289
+ }, # writesyntax
2290
+ "description" :
2291
+ """Support for notInService, createAndWait and
2292
+ notReady is not required.""",
2293
+ },
2294
+ "teTunnelRowStatus" : {
2295
+ "module" : "TE-MIB",
2296
+ "syntax" : {
2297
+ "type" : {
2298
+ "basetype" : "Enumeration",
2299
+ "parent module" : {
2300
+ "name" : "SNMPv2-TC",
2301
+ "type" : "RowStatus",
2302
+ },
2303
+ "active" : {
2304
+ "nodetype" : "namednumber",
2305
+ "number" : "1"
2306
+ },
2307
+ "notInService" : {
2308
+ "nodetype" : "namednumber",
2309
+ "number" : "2"
2310
+ },
2311
+ },
2312
+ }, # syntax
2313
+ "writesyntax" : {
2314
+ "type" : {
2315
+ "basetype" : "Enumeration",
2316
+ "parent module" : {
2317
+ "name" : "SNMPv2-TC",
2318
+ "type" : "RowStatus",
2319
+ },
2320
+ "active" : {
2321
+ "nodetype" : "namednumber",
2322
+ "number" : "1"
2323
+ },
2324
+ "notInService" : {
2325
+ "nodetype" : "namednumber",
2326
+ "number" : "2"
2327
+ },
2328
+ "createAndGo" : {
2329
+ "nodetype" : "namednumber",
2330
+ "number" : "4"
2331
+ },
2332
+ "destroy" : {
2333
+ "nodetype" : "namednumber",
2334
+ "number" : "6"
2335
+ },
2336
+ },
2337
+ }, # writesyntax
2338
+ "description" :
2339
+ """Support for createAndWait and notReady is not
2340
+ required.""",
2341
+ },
2342
+ "teTunnelSourceAddressType" : {
2343
+ "module" : "TE-MIB",
2344
+ "syntax" : {
2345
+ "type" : {
2346
+ "basetype" : "Enumeration",
2347
+ "parent module" : {
2348
+ "name" : "MPLS-TC-STD-MIB",
2349
+ "type" : "TeHopAddressType",
2350
+ },
2351
+ "ipv4" : {
2352
+ "nodetype" : "namednumber",
2353
+ "number" : "1"
2354
+ },
2355
+ "ipv6" : {
2356
+ "nodetype" : "namednumber",
2357
+ "number" : "2"
2358
+ },
2359
+ },
2360
+ }, # syntax
2361
+ "description" :
2362
+ """Write access is required. An implementation is
2363
+ only required to support IPv4 and IPv6 host
2364
+ addresses.""",
2365
+ },
2366
+ "tePathRowStatus" : {
2367
+ "module" : "TE-MIB",
2368
+ "syntax" : {
2369
+ "type" : {
2370
+ "basetype" : "Enumeration",
2371
+ "parent module" : {
2372
+ "name" : "SNMPv2-TC",
2373
+ "type" : "RowStatus",
2374
+ },
2375
+ "active" : {
2376
+ "nodetype" : "namednumber",
2377
+ "number" : "1"
2378
+ },
2379
+ "notInService" : {
2380
+ "nodetype" : "namednumber",
2381
+ "number" : "2"
2382
+ },
2383
+ },
2384
+ }, # syntax
2385
+ "writesyntax" : {
2386
+ "type" : {
2387
+ "basetype" : "Enumeration",
2388
+ "parent module" : {
2389
+ "name" : "SNMPv2-TC",
2390
+ "type" : "RowStatus",
2391
+ },
2392
+ "active" : {
2393
+ "nodetype" : "namednumber",
2394
+ "number" : "1"
2395
+ },
2396
+ "notInService" : {
2397
+ "nodetype" : "namednumber",
2398
+ "number" : "2"
2399
+ },
2400
+ "createAndGo" : {
2401
+ "nodetype" : "namednumber",
2402
+ "number" : "4"
2403
+ },
2404
+ "destroy" : {
2405
+ "nodetype" : "namednumber",
2406
+ "number" : "6"
2407
+ },
2408
+ },
2409
+ }, # writesyntax
2410
+ "description" :
2411
+ """Support for createAndWait and notReady is not
2412
+ required.""",
2413
+ },
2414
+ "tePathHopRowStatus" : {
2415
+ "module" : "TE-MIB",
2416
+ "syntax" : {
2417
+ "type" : {
2418
+ "basetype" : "Enumeration",
2419
+ "parent module" : {
2420
+ "name" : "SNMPv2-TC",
2421
+ "type" : "RowStatus",
2422
+ },
2423
+ "active" : {
2424
+ "nodetype" : "namednumber",
2425
+ "number" : "1"
2426
+ },
2427
+ "notInService" : {
2428
+ "nodetype" : "namednumber",
2429
+ "number" : "2"
2430
+ },
2431
+ },
2432
+ }, # syntax
2433
+ "writesyntax" : {
2434
+ "type" : {
2435
+ "basetype" : "Enumeration",
2436
+ "parent module" : {
2437
+ "name" : "SNMPv2-TC",
2438
+ "type" : "RowStatus",
2439
+ },
2440
+ "active" : {
2441
+ "nodetype" : "namednumber",
2442
+ "number" : "1"
2443
+ },
2444
+ "notInService" : {
2445
+ "nodetype" : "namednumber",
2446
+ "number" : "2"
2447
+ },
2448
+ "createAndGo" : {
2449
+ "nodetype" : "namednumber",
2450
+ "number" : "4"
2451
+ },
2452
+ "destroy" : {
2453
+ "nodetype" : "namednumber",
2454
+ "number" : "6"
2455
+ },
2456
+ },
2457
+ }, # writesyntax
2458
+ "description" :
2459
+ """Support for createAndWait and notReady is not
2460
+ required.""",
2461
+ },
2462
+ }, # refinements
2463
+
2464
+ }, # compliance
2465
+ "teModuleServerReadOnlyCompliance" : {
2466
+ "nodetype" : "compliance",
2467
+ "moduleName" : "TE-MIB",
2468
+ "oid" : "1.3.6.1.2.1.122.2.2.3",
2469
+ "status" : "current",
2470
+ "description" :
2471
+ """When this MIB module is implemented by a path
2472
+ computation server without support for read-create
2473
+ (i.e., in read-only mode), then the implementation
2474
+ can claim read-only compliance. Such
2475
+ a device can be monitored but cannot be
2476
+ configured with this MIB module.""",
2477
+ "requires" : {
2478
+ "teTrafficEngineeringGroup" : {
2479
+ "nodetype" : "mandatory",
2480
+ "module" : "TE-MIB"
2481
+ },
2482
+ "teNotificationGroup" : {
2483
+ "nodetype" : "optional",
2484
+ "module" : "TE-MIB",
2485
+ "description" :
2486
+ """Implementation of this group is optional.""",
2487
+ },
2488
+ }, # requires
2489
+ "refinements" : {
2490
+ "teNotificationEnable" : {
2491
+ "module" : "TE-MIB",
2492
+ "access" : "readonly",
2493
+ "description" :
2494
+ """Write access is not required.""",
2495
+ },
2496
+ "teAdminGroupName" : {
2497
+ "module" : "TE-MIB",
2498
+ "access" : "readonly",
2499
+ "description" :
2500
+ """Write access is not required.""",
2501
+ },
2502
+ "teAdminGroupRowStatus" : {
2503
+ "module" : "TE-MIB",
2504
+ "syntax" : {
2505
+ "type" : {
2506
+ "basetype" : "Enumeration",
2507
+ "parent module" : {
2508
+ "name" : "SNMPv2-TC",
2509
+ "type" : "RowStatus",
2510
+ },
2511
+ "active" : {
2512
+ "nodetype" : "namednumber",
2513
+ "number" : "1"
2514
+ },
2515
+ },
2516
+ }, # syntax
2517
+ "access" : "readonly",
2518
+ "description" :
2519
+ """Write access is not required.""",
2520
+ },
2521
+ "teTunnelName" : {
2522
+ "module" : "TE-MIB",
2523
+ "access" : "readonly",
2524
+ "description" :
2525
+ """Write access is not required.""",
2526
+ },
2527
+ "teTunnelRowStatus" : {
2528
+ "module" : "TE-MIB",
2529
+ "syntax" : {
2530
+ "type" : {
2531
+ "basetype" : "Enumeration",
2532
+ "parent module" : {
2533
+ "name" : "SNMPv2-TC",
2534
+ "type" : "RowStatus",
2535
+ },
2536
+ "active" : {
2537
+ "nodetype" : "namednumber",
2538
+ "number" : "1"
2539
+ },
2540
+ },
2541
+ }, # syntax
2542
+ "access" : "readonly",
2543
+ "description" :
2544
+ """Write access is not required.""",
2545
+ },
2546
+ "teTunnelStorageType" : {
2547
+ "module" : "TE-MIB",
2548
+ "access" : "readonly",
2549
+ "description" :
2550
+ """Write access is not required.""",
2551
+ },
2552
+ "teTunnelSourceAddressType" : {
2553
+ "module" : "TE-MIB",
2554
+ "access" : "readonly",
2555
+ "description" :
2556
+ """Write access is not required. A path
2557
+ computation server SHOULD implement all types
2558
+ of tunnel source address types.""",
2559
+ },
2560
+ "teTunnelSourceAddress" : {
2561
+ "module" : "TE-MIB",
2562
+ "access" : "readonly",
2563
+ "description" :
2564
+ """Write access is not required.""",
2565
+ },
2566
+ "teTunnelDestinationAddressType" : {
2567
+ "module" : "TE-MIB",
2568
+ "access" : "readonly",
2569
+ "description" :
2570
+ """Write access is not required.""",
2571
+ },
2572
+ "teTunnelDestinationAddress" : {
2573
+ "module" : "TE-MIB",
2574
+ "access" : "readonly",
2575
+ "description" :
2576
+ """Write access is not required.""",
2577
+ },
2578
+ "tePathName" : {
2579
+ "module" : "TE-MIB",
2580
+ "access" : "readonly",
2581
+ "description" :
2582
+ """Write access is not required.""",
2583
+ },
2584
+ "tePathRowStatus" : {
2585
+ "module" : "TE-MIB",
2586
+ "syntax" : {
2587
+ "type" : {
2588
+ "basetype" : "Enumeration",
2589
+ "parent module" : {
2590
+ "name" : "SNMPv2-TC",
2591
+ "type" : "RowStatus",
2592
+ },
2593
+ "active" : {
2594
+ "nodetype" : "namednumber",
2595
+ "number" : "1"
2596
+ },
2597
+ },
2598
+ }, # syntax
2599
+ "access" : "readonly",
2600
+ "description" :
2601
+ """Write access is not required.""",
2602
+ },
2603
+ "tePathStorageType" : {
2604
+ "module" : "TE-MIB",
2605
+ "access" : "readonly",
2606
+ "description" :
2607
+ """Write access is not required.""",
2608
+ },
2609
+ "tePathType" : {
2610
+ "module" : "TE-MIB",
2611
+ "access" : "readonly",
2612
+ "description" :
2613
+ """Write access is not required.""",
2614
+ },
2615
+ "tePathConfiguredRoute" : {
2616
+ "module" : "TE-MIB",
2617
+ "access" : "readonly",
2618
+ "description" :
2619
+ """Write access is not required.""",
2620
+ },
2621
+ "tePathBandwidth" : {
2622
+ "module" : "TE-MIB",
2623
+ "access" : "readonly",
2624
+ "description" :
2625
+ """Write access is not required.""",
2626
+ },
2627
+ "tePathIncludeAny" : {
2628
+ "module" : "TE-MIB",
2629
+ "access" : "readonly",
2630
+ "description" :
2631
+ """Write access is not required.""",
2632
+ },
2633
+ "tePathIncludeAll" : {
2634
+ "module" : "TE-MIB",
2635
+ "access" : "readonly",
2636
+ "description" :
2637
+ """Write access is not required.""",
2638
+ },
2639
+ "tePathExclude" : {
2640
+ "module" : "TE-MIB",
2641
+ "access" : "readonly",
2642
+ "description" :
2643
+ """Write access is not required.""",
2644
+ },
2645
+ "tePathSetupPriority" : {
2646
+ "module" : "TE-MIB",
2647
+ "access" : "readonly",
2648
+ "description" :
2649
+ """Write access is not required.""",
2650
+ },
2651
+ "tePathHoldPriority" : {
2652
+ "module" : "TE-MIB",
2653
+ "access" : "readonly",
2654
+ "description" :
2655
+ """Write access is not required.""",
2656
+ },
2657
+ "tePathProperties" : {
2658
+ "module" : "TE-MIB",
2659
+ "access" : "readonly",
2660
+ "description" :
2661
+ """Write access is not required.""",
2662
+ },
2663
+ "tePathAdminStatus" : {
2664
+ "module" : "TE-MIB",
2665
+ "access" : "readonly",
2666
+ "description" :
2667
+ """Write access is not required.""",
2668
+ },
2669
+ "tePathHopRowStatus" : {
2670
+ "module" : "TE-MIB",
2671
+ "syntax" : {
2672
+ "type" : {
2673
+ "basetype" : "Enumeration",
2674
+ "parent module" : {
2675
+ "name" : "SNMPv2-TC",
2676
+ "type" : "RowStatus",
2677
+ },
2678
+ "active" : {
2679
+ "nodetype" : "namednumber",
2680
+ "number" : "1"
2681
+ },
2682
+ },
2683
+ }, # syntax
2684
+ "access" : "readonly",
2685
+ "description" :
2686
+ """Write access is not required.""",
2687
+ },
2688
+ "tePathHopStorageType" : {
2689
+ "module" : "TE-MIB",
2690
+ "access" : "readonly",
2691
+ "description" :
2692
+ """Write access is not required.""",
2693
+ },
2694
+ "tePathHopAddrType" : {
2695
+ "module" : "TE-MIB",
2696
+ "access" : "readonly",
2697
+ "description" :
2698
+ """Write access is not required.""",
2699
+ },
2700
+ "tePathHopAddress" : {
2701
+ "module" : "TE-MIB",
2702
+ "access" : "readonly",
2703
+ "description" :
2704
+ """Write access is not required.""",
2705
+ },
2706
+ }, # refinements
2707
+
2708
+ }, # compliance
2709
+ "teModuleServerFullCompliance" : {
2710
+ "nodetype" : "compliance",
2711
+ "moduleName" : "TE-MIB",
2712
+ "oid" : "1.3.6.1.2.1.122.2.2.4",
2713
+ "status" : "current",
2714
+ "description" :
2715
+ """When this MIB module is implemented by a path
2716
+ computation server with support for read-create,
2717
+ then the implementation can claim full
2718
+ compliance.""",
2719
+ "requires" : {
2720
+ "teTrafficEngineeringGroup" : {
2721
+ "nodetype" : "mandatory",
2722
+ "module" : "TE-MIB"
2723
+ },
2724
+ "teNotificationGroup" : {
2725
+ "nodetype" : "optional",
2726
+ "module" : "TE-MIB",
2727
+ "description" :
2728
+ """Implementation of this group is optional.""",
2729
+ },
2730
+ }, # requires
2731
+ "refinements" : {
2732
+ "teAdminGroupRowStatus" : {
2733
+ "module" : "TE-MIB",
2734
+ "syntax" : {
2735
+ "type" : {
2736
+ "basetype" : "Enumeration",
2737
+ "parent module" : {
2738
+ "name" : "SNMPv2-TC",
2739
+ "type" : "RowStatus",
2740
+ },
2741
+ "active" : {
2742
+ "nodetype" : "namednumber",
2743
+ "number" : "1"
2744
+ },
2745
+ },
2746
+ }, # syntax
2747
+ "writesyntax" : {
2748
+ "type" : {
2749
+ "basetype" : "Enumeration",
2750
+ "parent module" : {
2751
+ "name" : "SNMPv2-TC",
2752
+ "type" : "RowStatus",
2753
+ },
2754
+ "createAndGo" : {
2755
+ "nodetype" : "namednumber",
2756
+ "number" : "4"
2757
+ },
2758
+ "destroy" : {
2759
+ "nodetype" : "namednumber",
2760
+ "number" : "6"
2761
+ },
2762
+ },
2763
+ }, # writesyntax
2764
+ "description" :
2765
+ """Support for notInService, createAndWait, and
2766
+ notReady is not required.""",
2767
+ },
2768
+ "teTunnelRowStatus" : {
2769
+ "module" : "TE-MIB",
2770
+ "syntax" : {
2771
+ "type" : {
2772
+ "basetype" : "Enumeration",
2773
+ "parent module" : {
2774
+ "name" : "SNMPv2-TC",
2775
+ "type" : "RowStatus",
2776
+ },
2777
+ "active" : {
2778
+ "nodetype" : "namednumber",
2779
+ "number" : "1"
2780
+ },
2781
+ "notInService" : {
2782
+ "nodetype" : "namednumber",
2783
+ "number" : "2"
2784
+ },
2785
+ },
2786
+ }, # syntax
2787
+ "writesyntax" : {
2788
+ "type" : {
2789
+ "basetype" : "Enumeration",
2790
+ "parent module" : {
2791
+ "name" : "SNMPv2-TC",
2792
+ "type" : "RowStatus",
2793
+ },
2794
+ "active" : {
2795
+ "nodetype" : "namednumber",
2796
+ "number" : "1"
2797
+ },
2798
+ "notInService" : {
2799
+ "nodetype" : "namednumber",
2800
+ "number" : "2"
2801
+ },
2802
+ "createAndGo" : {
2803
+ "nodetype" : "namednumber",
2804
+ "number" : "4"
2805
+ },
2806
+ "destroy" : {
2807
+ "nodetype" : "namednumber",
2808
+ "number" : "6"
2809
+ },
2810
+ },
2811
+ }, # writesyntax
2812
+ "description" :
2813
+ """Support for createAndWait and notReady is not
2814
+ required.""",
2815
+ },
2816
+ "teTunnelSourceAddressType" : {
2817
+ "module" : "TE-MIB",
2818
+ "description" :
2819
+ """Write access is required. An implementation
2820
+ of a path computation server SHOULD support all
2821
+ types of tunnel source address types.""",
2822
+ },
2823
+ "tePathRowStatus" : {
2824
+ "module" : "TE-MIB",
2825
+ "syntax" : {
2826
+ "type" : {
2827
+ "basetype" : "Enumeration",
2828
+ "parent module" : {
2829
+ "name" : "SNMPv2-TC",
2830
+ "type" : "RowStatus",
2831
+ },
2832
+ "active" : {
2833
+ "nodetype" : "namednumber",
2834
+ "number" : "1"
2835
+ },
2836
+ "notInService" : {
2837
+ "nodetype" : "namednumber",
2838
+ "number" : "2"
2839
+ },
2840
+ },
2841
+ }, # syntax
2842
+ "writesyntax" : {
2843
+ "type" : {
2844
+ "basetype" : "Enumeration",
2845
+ "parent module" : {
2846
+ "name" : "SNMPv2-TC",
2847
+ "type" : "RowStatus",
2848
+ },
2849
+ "active" : {
2850
+ "nodetype" : "namednumber",
2851
+ "number" : "1"
2852
+ },
2853
+ "notInService" : {
2854
+ "nodetype" : "namednumber",
2855
+ "number" : "2"
2856
+ },
2857
+ "createAndGo" : {
2858
+ "nodetype" : "namednumber",
2859
+ "number" : "4"
2860
+ },
2861
+ "destroy" : {
2862
+ "nodetype" : "namednumber",
2863
+ "number" : "6"
2864
+ },
2865
+ },
2866
+ }, # writesyntax
2867
+ "description" :
2868
+ """Support for createAndWait and notReady is not
2869
+ required.""",
2870
+ },
2871
+ "tePathHopRowStatus" : {
2872
+ "module" : "TE-MIB",
2873
+ "syntax" : {
2874
+ "type" : {
2875
+ "basetype" : "Enumeration",
2876
+ "parent module" : {
2877
+ "name" : "SNMPv2-TC",
2878
+ "type" : "RowStatus",
2879
+ },
2880
+ "active" : {
2881
+ "nodetype" : "namednumber",
2882
+ "number" : "1"
2883
+ },
2884
+ "notInService" : {
2885
+ "nodetype" : "namednumber",
2886
+ "number" : "2"
2887
+ },
2888
+ },
2889
+ }, # syntax
2890
+ "writesyntax" : {
2891
+ "type" : {
2892
+ "basetype" : "Enumeration",
2893
+ "parent module" : {
2894
+ "name" : "SNMPv2-TC",
2895
+ "type" : "RowStatus",
2896
+ },
2897
+ "active" : {
2898
+ "nodetype" : "namednumber",
2899
+ "number" : "1"
2900
+ },
2901
+ "notInService" : {
2902
+ "nodetype" : "namednumber",
2903
+ "number" : "2"
2904
+ },
2905
+ "createAndGo" : {
2906
+ "nodetype" : "namednumber",
2907
+ "number" : "4"
2908
+ },
2909
+ "destroy" : {
2910
+ "nodetype" : "namednumber",
2911
+ "number" : "6"
2912
+ },
2913
+ },
2914
+ }, # writesyntax
2915
+ "description" :
2916
+ """Support for createAndWait and notReady is not
2917
+ required.""",
2918
+ },
2919
+ }, # refinements
2920
+
2921
+ }, # compliance
2922
+ }, # compliances
2923
+
2924
+ }