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,2548 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python MPLS-L3VPN-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MPLS-L3VPN-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
11
+
12
+ "MPLS-L3VPN-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Layer-3 Virtual Private
17
+ Networks Working Group.""",
18
+ "contact" :
19
+ """ Thomas D. Nadeau
20
+ tnadeau@cisco.com
21
+
22
+ Harmen van der Linde
23
+ havander@cisco.com
24
+
25
+ Comments and discussion to l3vpn@ietf.org""",
26
+ "description" :
27
+ """This MIB contains managed object definitions for the
28
+ Layer-3 Multiprotocol Label Switching Virtual
29
+ Private Networks.
30
+
31
+ Copyright (C) The Internet Society (2006). This
32
+ version of this MIB module is part of RFC4382; see
33
+ the RFC itself for full legal notices.""",
34
+ "revisions" : (
35
+ {
36
+ "date" : "2006-01-23 00:00",
37
+ "description" :
38
+ """Initial version. Published as RFC 4382.""",
39
+ },
40
+ ),
41
+ "identity node" : "mplsL3VpnMIB",
42
+ },
43
+
44
+ "imports" : (
45
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
46
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
47
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
48
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
49
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
51
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
52
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
53
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
54
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
55
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
56
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
57
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
58
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
59
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
60
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
61
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
62
+ {"module" : "VPN-TC-STD-MIB", "name" : "VPNIdOrZero"},
63
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
64
+ {"module" : "IANA-RTPROTO-MIB", "name" : "IANAipRouteProtocol"},
65
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
66
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
67
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
68
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAutonomousSystemNumber"},
69
+ {"module" : "MPLS-TC-STD-MIB", "name" : "mplsStdMIB"},
70
+ {"module" : "MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
71
+ ),
72
+
73
+ "typedefs" : {
74
+ "MplsL3VpnName" : {
75
+ "basetype" : "OctetString",
76
+ "status" : "current",
77
+ "ranges" : [
78
+ {
79
+ "min" : "0",
80
+ "max" : "31"
81
+ },
82
+ ],
83
+ "range" : {
84
+ "min" : "0",
85
+ "max" : "31"
86
+ },
87
+ "description" :
88
+ """An identifier that is assigned to each MPLS/BGP VPN and
89
+ is used to uniquely identify it. This is assigned by the
90
+ system operator or NMS and SHOULD be unique throughout
91
+ the MPLS domain. If this is the case, then this identifier
92
+ can then be used at any LSR within a specific MPLS domain
93
+ to identify this MPLS/BGP VPN. It may also be possible to
94
+ preserve the uniqueness of this identifier across MPLS
95
+ domain boundaries, in which case this identifier can then
96
+ be used to uniquely identify MPLS/BGP VPNs on a more global
97
+ basis. This object MAY be set to the VPN ID as defined in
98
+ RFC 2685.""",
99
+ "reference" :
100
+ """RFC 2685 Fox B., et al, 'Virtual Private
101
+
102
+
103
+
104
+ Networks Identifier', September 1999.""",
105
+ },
106
+ "MplsL3VpnRouteDistinguisher" : {
107
+ "basetype" : "OctetString",
108
+ "status" : "current",
109
+ "ranges" : [
110
+ {
111
+ "min" : "0",
112
+ "max" : "256"
113
+ },
114
+ ],
115
+ "range" : {
116
+ "min" : "0",
117
+ "max" : "256"
118
+ },
119
+ "description" :
120
+ """Syntax for a route distinguisher and route target
121
+ as defined in [RFC4364].""",
122
+ "reference" :
123
+ """[RFC4364]""",
124
+ },
125
+ "MplsL3VpnRtType" : {
126
+ "basetype" : "Enumeration",
127
+ "status" : "current",
128
+ "import" : {
129
+ "nodetype" : "namednumber",
130
+ "number" : "1"
131
+ },
132
+ "export" : {
133
+ "nodetype" : "namednumber",
134
+ "number" : "2"
135
+ },
136
+ "both" : {
137
+ "nodetype" : "namednumber",
138
+ "number" : "3"
139
+ },
140
+ "description" :
141
+ """Used to define the type of a route target usage.
142
+ Route targets can be specified to be imported,
143
+ exported, or both. For a complete definition of a
144
+ route target, see [RFC4364].""",
145
+ "reference" :
146
+ """[RFC4364]""",
147
+ },
148
+ }, # typedefs
149
+
150
+ "nodes" : {
151
+ "mplsL3VpnMIB" : {
152
+ "nodetype" : "node",
153
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
154
+ "oid" : "1.3.6.1.2.1.10.166.11",
155
+ "status" : "current",
156
+ }, # node
157
+ "mplsL3VpnNotifications" : {
158
+ "nodetype" : "node",
159
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
160
+ "oid" : "1.3.6.1.2.1.10.166.11.0",
161
+ }, # node
162
+ "mplsL3VpnObjects" : {
163
+ "nodetype" : "node",
164
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
165
+ "oid" : "1.3.6.1.2.1.10.166.11.1",
166
+ }, # node
167
+ "mplsL3VpnScalars" : {
168
+ "nodetype" : "node",
169
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
170
+ "oid" : "1.3.6.1.2.1.10.166.11.1.1",
171
+ }, # node
172
+ "mplsL3VpnConfiguredVrfs" : {
173
+ "nodetype" : "scalar",
174
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
175
+ "oid" : "1.3.6.1.2.1.10.166.11.1.1.1",
176
+ "status" : "current",
177
+ "syntax" : {
178
+ "type" : { "module" :"", "name" : "Unsigned32"},
179
+ },
180
+ "access" : "readonly",
181
+ "description" :
182
+ """The number of VRFs that are configured on this node.""",
183
+ }, # scalar
184
+ "mplsL3VpnActiveVrfs" : {
185
+ "nodetype" : "scalar",
186
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
187
+ "oid" : "1.3.6.1.2.1.10.166.11.1.1.2",
188
+ "status" : "current",
189
+ "syntax" : {
190
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
191
+ },
192
+ "access" : "readonly",
193
+ "description" :
194
+ """The number of VRFs that are active on this node.
195
+ That is, those VRFs whose corresponding mplsL3VpnVrfOperStatus
196
+ object value is equal to operational (1).""",
197
+ }, # scalar
198
+ "mplsL3VpnConnectedInterfaces" : {
199
+ "nodetype" : "scalar",
200
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
201
+ "oid" : "1.3.6.1.2.1.10.166.11.1.1.3",
202
+ "status" : "current",
203
+ "syntax" : {
204
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
205
+ },
206
+ "access" : "readonly",
207
+ "description" :
208
+ """Total number of interfaces connected to a VRF.""",
209
+ }, # scalar
210
+ "mplsL3VpnNotificationEnable" : {
211
+ "nodetype" : "scalar",
212
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
213
+ "oid" : "1.3.6.1.2.1.10.166.11.1.1.4",
214
+ "status" : "current",
215
+ "syntax" : {
216
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
217
+ },
218
+ "access" : "readwrite",
219
+ "default" : "false",
220
+ "description" :
221
+ """If this object is true, then it enables the
222
+ generation of all notifications defined in
223
+ this MIB. This object's value should be
224
+ preserved across agent reboots.""",
225
+ "reference" :
226
+ """See also [RFC3413] for explanation that
227
+ notifications are under the ultimate control of the
228
+ MIB modules in this document.""",
229
+ }, # scalar
230
+ "mplsL3VpnVrfConfMaxPossRts" : {
231
+ "nodetype" : "scalar",
232
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
233
+ "oid" : "1.3.6.1.2.1.10.166.11.1.1.5",
234
+ "status" : "current",
235
+ "syntax" : {
236
+ "type" : { "module" :"", "name" : "Unsigned32"},
237
+ },
238
+ "access" : "readonly",
239
+ "description" :
240
+ """Denotes maximum number of routes that the device
241
+ will allow all VRFs jointly to hold. If this value is
242
+ set to 0, this indicates that the device is
243
+ unable to determine the absolute maximum. In this
244
+ case, the configured maximum MAY not actually
245
+ be allowed by the device.""",
246
+ }, # scalar
247
+ "mplsL3VpnVrfConfRteMxThrshTime" : {
248
+ "nodetype" : "scalar",
249
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
250
+ "oid" : "1.3.6.1.2.1.10.166.11.1.1.6",
251
+ "status" : "current",
252
+ "syntax" : {
253
+ "type" : { "module" :"", "name" : "Unsigned32"},
254
+ },
255
+ "access" : "readonly",
256
+ "default" : "0",
257
+ "units" : "seconds",
258
+ "description" :
259
+ """Denotes the interval in seconds, at which the route max threshold
260
+ notification may be reissued after the maximum value has been
261
+ exceeded (or has been reached if mplsL3VpnVrfConfMaxRoutes and
262
+ mplsL3VpnVrfConfHighRteThresh are equal) and the initial
263
+ notification has been issued. This value is intended to prevent
264
+ continuous generation of notifications by an agent in the event
265
+ that routes are continually added to a VRF after it has reached
266
+ its maximum value. If this value is set to 0, the agent should
267
+ only issue a single notification at the time that the maximum
268
+ threshold has been reached, and should not issue any more
269
+ notifications until the value of routes has fallen below the
270
+ configured threshold value. This is the recommended default
271
+ behavior.""",
272
+ }, # scalar
273
+ "mplsL3VpnIllLblRcvThrsh" : {
274
+ "nodetype" : "scalar",
275
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
276
+ "oid" : "1.3.6.1.2.1.10.166.11.1.1.7",
277
+ "status" : "current",
278
+ "syntax" : {
279
+ "type" : { "module" :"", "name" : "Unsigned32"},
280
+ },
281
+ "access" : "readwrite",
282
+ "description" :
283
+ """The number of illegally received labels above which
284
+ the mplsNumVrfSecIllglLblThrshExcd notification
285
+ is issued. The persistence of this value mimics
286
+ that of the device's configuration.""",
287
+ }, # scalar
288
+ "mplsL3VpnConf" : {
289
+ "nodetype" : "node",
290
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
291
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2",
292
+ }, # node
293
+ "mplsL3VpnIfConfTable" : {
294
+ "nodetype" : "table",
295
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
296
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.1",
297
+ "status" : "current",
298
+ "description" :
299
+ """This table specifies per-interface MPLS capability
300
+ and associated information.""",
301
+ }, # table
302
+ "mplsL3VpnIfConfEntry" : {
303
+ "nodetype" : "row",
304
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
305
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.1.1",
306
+ "create" : "true",
307
+ "status" : "current",
308
+ "linkage" : [
309
+ "mplsL3VpnVrfName",
310
+ "mplsL3VpnIfConfIndex",
311
+ ],
312
+ "description" :
313
+ """An entry in this table is created by an LSR for
314
+ every interface capable of supporting MPLS L3VPN.
315
+ Each entry in this table is meant to correspond to
316
+ an entry in the Interfaces Table.""",
317
+ }, # row
318
+ "mplsL3VpnIfConfIndex" : {
319
+ "nodetype" : "column",
320
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
321
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.1.1.1",
322
+ "status" : "current",
323
+ "syntax" : {
324
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
325
+ },
326
+ "access" : "noaccess",
327
+ "description" :
328
+ """This is a unique index for an entry in the
329
+ mplsL3VpnIfConfTable. A non-zero index for an
330
+ entry indicates the ifIndex for the corresponding
331
+ interface entry in the MPLS-VPN-layer in the ifTable.
332
+ Note that this table does not necessarily correspond
333
+ one-to-one with all entries in the Interface MIB
334
+ having an ifType of MPLS-layer; rather, only those
335
+ that are enabled for MPLS L3VPN functionality.""",
336
+ "reference" :
337
+ """RFC2863""",
338
+ }, # column
339
+ "mplsL3VpnIfVpnClassification" : {
340
+ "nodetype" : "column",
341
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
342
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.1.1.2",
343
+ "status" : "current",
344
+ "syntax" : {
345
+ "type" : {
346
+ "basetype" : "Enumeration",
347
+ "carrierOfCarrier" : {
348
+ "nodetype" : "namednumber",
349
+ "number" : "1"
350
+ },
351
+ "enterprise" : {
352
+ "nodetype" : "namednumber",
353
+ "number" : "2"
354
+ },
355
+ "interProvider" : {
356
+ "nodetype" : "namednumber",
357
+ "number" : "3"
358
+ },
359
+ },
360
+ },
361
+ "access" : "readwrite",
362
+ "default" : "enterprise",
363
+ "description" :
364
+ """Denotes whether this link participates in a
365
+ carrier's carrier, enterprise, or inter-provider
366
+ scenario.""",
367
+ }, # column
368
+ "mplsL3VpnIfVpnRouteDistProtocol" : {
369
+ "nodetype" : "column",
370
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
371
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.1.1.3",
372
+ "status" : "current",
373
+ "syntax" : {
374
+ "type" : {
375
+ "basetype" : "Bits",
376
+ "none" : {
377
+ "nodetype" : "namednumber",
378
+ "number" : "0"
379
+ },
380
+ "bgp" : {
381
+ "nodetype" : "namednumber",
382
+ "number" : "1"
383
+ },
384
+ "ospf" : {
385
+ "nodetype" : "namednumber",
386
+ "number" : "2"
387
+ },
388
+ "rip" : {
389
+ "nodetype" : "namednumber",
390
+ "number" : "3"
391
+ },
392
+ "isis" : {
393
+ "nodetype" : "namednumber",
394
+ "number" : "4"
395
+ },
396
+ "static" : {
397
+ "nodetype" : "namednumber",
398
+ "number" : "5"
399
+ },
400
+ "other" : {
401
+ "nodetype" : "namednumber",
402
+ "number" : "6"
403
+ },
404
+ },
405
+ },
406
+ "access" : "readwrite",
407
+ "description" :
408
+ """Denotes the route distribution protocol across the
409
+ PE-CE link. Note that more than one routing protocol
410
+ may be enabled at the same time; thus, this object is
411
+ specified as a bitmask. For example, static(5) and
412
+ ospf(2) are a typical configuration.""",
413
+ }, # column
414
+ "mplsL3VpnIfConfStorageType" : {
415
+ "nodetype" : "column",
416
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
417
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.1.1.4",
418
+ "status" : "current",
419
+ "syntax" : {
420
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
421
+ },
422
+ "access" : "readwrite",
423
+ "default" : "volatile",
424
+ "description" :
425
+ """The storage type for this VPN If entry.
426
+ Conceptual rows having the value 'permanent'
427
+ need not allow write access to any columnar
428
+ objects in the row.""",
429
+ "reference" :
430
+ """See RFC2579.""",
431
+ }, # column
432
+ "mplsL3VpnIfConfRowStatus" : {
433
+ "nodetype" : "column",
434
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
435
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.1.1.5",
436
+ "status" : "current",
437
+ "syntax" : {
438
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
439
+ },
440
+ "access" : "readwrite",
441
+ "description" :
442
+ """This variable is used to create, modify, and/or
443
+ delete a row in this table. Rows in this
444
+ table signify that the specified interface is
445
+ associated with this VRF. If the row creation
446
+ operation succeeds, the interface will have been
447
+ associated with the specified VRF, otherwise the
448
+ agent MUST not allow the association. If the agent
449
+ only allows read-only operations on this table, it
450
+ MUST create entries in this table as they are created
451
+ on the device. When a row in this table is in
452
+ active(1) state, no objects in that row can be
453
+ modified except mplsL3VpnIfConfStorageType and
454
+ mplsL3VpnIfConfRowStatus.""",
455
+ }, # column
456
+ "mplsL3VpnVrfTable" : {
457
+ "nodetype" : "table",
458
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
459
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2",
460
+ "status" : "current",
461
+ "description" :
462
+ """This table specifies per-interface MPLS L3VPN
463
+ VRF Table capability and associated information.
464
+ Entries in this table define VRF routing instances
465
+ associated with MPLS/VPN interfaces. Note that
466
+ multiple interfaces can belong to the same VRF
467
+ instance. The collection of all VRF instances
468
+ comprises an actual VPN.""",
469
+ }, # table
470
+ "mplsL3VpnVrfEntry" : {
471
+ "nodetype" : "row",
472
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
473
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1",
474
+ "create" : "true",
475
+ "status" : "current",
476
+ "linkage" : [
477
+ "mplsL3VpnVrfName",
478
+ ],
479
+ "description" :
480
+ """An entry in this table is created by an LSR for
481
+ every VRF capable of supporting MPLS L3VPN. The
482
+ indexing provides an ordering of VRFs per-VPN
483
+ interface.""",
484
+ }, # row
485
+ "mplsL3VpnVrfName" : {
486
+ "nodetype" : "column",
487
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
488
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.1",
489
+ "status" : "current",
490
+ "syntax" : {
491
+ "type" : { "module" :"MPLS-L3VPN-STD-MIB", "name" : "MplsL3VpnName"},
492
+ },
493
+ "access" : "noaccess",
494
+ "description" :
495
+ """The human-readable name of this VPN. This MAY
496
+ be equivalent to the [RFC2685] VPN-ID, but may
497
+ also vary. If it is set to the VPN ID, it MUST
498
+ be equivalent to the value of mplsL3VpnVrfVpnId.
499
+ It is strongly recommended that all sites supporting
500
+ VRFs that are part of the same VPN use the same
501
+ naming convention for VRFs as well as the same VPN
502
+ ID.""",
503
+ "reference" :
504
+ """[RFC2685]""",
505
+ }, # column
506
+ "mplsL3VpnVrfVpnId" : {
507
+ "nodetype" : "column",
508
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
509
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.2",
510
+ "status" : "current",
511
+ "syntax" : {
512
+ "type" : { "module" :"VPN-TC-STD-MIB", "name" : "VPNIdOrZero"},
513
+ },
514
+ "access" : "readwrite",
515
+ "description" :
516
+ """The VPN ID as specified in [RFC2685]. If a VPN ID
517
+ has not been specified for this VRF, then this
518
+ variable SHOULD be set to a zero-length OCTET
519
+ STRING.""",
520
+ }, # column
521
+ "mplsL3VpnVrfDescription" : {
522
+ "nodetype" : "column",
523
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
524
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.3",
525
+ "status" : "current",
526
+ "syntax" : {
527
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
528
+ },
529
+ "access" : "readwrite",
530
+ "default" : "",
531
+ "description" :
532
+ """The human-readable description of this VRF.""",
533
+ }, # column
534
+ "mplsL3VpnVrfRD" : {
535
+ "nodetype" : "column",
536
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
537
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.4",
538
+ "status" : "current",
539
+ "syntax" : {
540
+ "type" : { "module" :"MPLS-L3VPN-STD-MIB", "name" : "MplsL3VpnRouteDistinguisher"},
541
+ },
542
+ "access" : "readwrite",
543
+ "default" : "",
544
+ "description" :
545
+ """The route distinguisher for this VRF.""",
546
+ }, # column
547
+ "mplsL3VpnVrfCreationTime" : {
548
+ "nodetype" : "column",
549
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
550
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.5",
551
+ "status" : "current",
552
+ "syntax" : {
553
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
554
+ },
555
+ "access" : "readonly",
556
+ "description" :
557
+ """The time at which this VRF entry was created.""",
558
+ }, # column
559
+ "mplsL3VpnVrfOperStatus" : {
560
+ "nodetype" : "column",
561
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
562
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.6",
563
+ "status" : "current",
564
+ "syntax" : {
565
+ "type" : {
566
+ "basetype" : "Enumeration",
567
+ "up" : {
568
+ "nodetype" : "namednumber",
569
+ "number" : "1"
570
+ },
571
+ "down" : {
572
+ "nodetype" : "namednumber",
573
+ "number" : "2"
574
+ },
575
+ },
576
+ },
577
+ "access" : "readonly",
578
+ "description" :
579
+ """Denotes whether or not a VRF is operational. A VRF is
580
+ up(1) when there is at least one interface associated
581
+ with the VRF whose ifOperStatus is up(1). A VRF is
582
+ down(2) when:
583
+ a. There does not exist at least one interface whose
584
+ ifOperStatus is up(1).
585
+ b. There are no interfaces associated with the VRF.""",
586
+ }, # column
587
+ "mplsL3VpnVrfActiveInterfaces" : {
588
+ "nodetype" : "column",
589
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
590
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.7",
591
+ "status" : "current",
592
+ "syntax" : {
593
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
594
+ },
595
+ "access" : "readonly",
596
+ "description" :
597
+ """Total number of interfaces connected to this VRF with
598
+ ifOperStatus = up(1).
599
+
600
+ This value should increase when an interface is associated
601
+ with the corresponding VRF and its corresponding ifOperStatus
602
+ is equal to up(1). If an interface is associated whose
603
+ ifOperStatus is not up(1), then the value is not incremented
604
+ until such time as it transitions to this state.
605
+
606
+ This value should be decremented when an interface is
607
+ disassociated with a VRF or the corresponding ifOperStatus
608
+ transitions out of the up(1) state to any other state.""",
609
+ }, # column
610
+ "mplsL3VpnVrfAssociatedInterfaces" : {
611
+ "nodetype" : "column",
612
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
613
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.8",
614
+ "status" : "current",
615
+ "syntax" : {
616
+ "type" : { "module" :"", "name" : "Unsigned32"},
617
+ },
618
+ "access" : "readonly",
619
+ "description" :
620
+ """Total number of interfaces connected to this VRF
621
+ (independent of ifOperStatus type).""",
622
+ }, # column
623
+ "mplsL3VpnVrfConfMidRteThresh" : {
624
+ "nodetype" : "column",
625
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
626
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.9",
627
+ "status" : "current",
628
+ "syntax" : {
629
+ "type" : { "module" :"", "name" : "Unsigned32"},
630
+ },
631
+ "access" : "readwrite",
632
+ "default" : "0",
633
+ "description" :
634
+ """Denotes mid-level water marker for the number
635
+ of routes that this VRF may hold.""",
636
+ }, # column
637
+ "mplsL3VpnVrfConfHighRteThresh" : {
638
+ "nodetype" : "column",
639
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
640
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.10",
641
+ "status" : "current",
642
+ "syntax" : {
643
+ "type" : { "module" :"", "name" : "Unsigned32"},
644
+ },
645
+ "access" : "readwrite",
646
+ "default" : "0",
647
+ "description" :
648
+ """Denotes high-level water marker for the number of
649
+ routes that this VRF may hold.""",
650
+ }, # column
651
+ "mplsL3VpnVrfConfMaxRoutes" : {
652
+ "nodetype" : "column",
653
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
654
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.11",
655
+ "status" : "current",
656
+ "syntax" : {
657
+ "type" : { "module" :"", "name" : "Unsigned32"},
658
+ },
659
+ "access" : "readwrite",
660
+ "default" : "0",
661
+ "description" :
662
+ """Denotes maximum number of routes that this VRF is
663
+ configured to hold. This value MUST be less than or
664
+ equal to mplsL3VpnVrfConfMaxPossRts unless it is set
665
+ to 0.""",
666
+ }, # column
667
+ "mplsL3VpnVrfConfLastChanged" : {
668
+ "nodetype" : "column",
669
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
670
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.12",
671
+ "status" : "current",
672
+ "syntax" : {
673
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
674
+ },
675
+ "access" : "readonly",
676
+ "description" :
677
+ """The value of sysUpTime at the time of the last
678
+ change of this table entry, which includes changes of
679
+ VRF parameters defined in this table or addition or
680
+ deletion of interfaces associated with this VRF.""",
681
+ }, # column
682
+ "mplsL3VpnVrfConfRowStatus" : {
683
+ "nodetype" : "column",
684
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
685
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.13",
686
+ "status" : "current",
687
+ "syntax" : {
688
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
689
+ },
690
+ "access" : "readwrite",
691
+ "description" :
692
+ """This variable is used to create, modify, and/or
693
+ delete a row in this table.
694
+
695
+
696
+
697
+
698
+ When a row in this table is in active(1) state, no
699
+ objects in that row can be modified except
700
+ mplsL3VpnVrfConfAdminStatus, mplsL3VpnVrfConfRowStatus,
701
+ and mplsL3VpnVrfConfStorageType.""",
702
+ }, # column
703
+ "mplsL3VpnVrfConfAdminStatus" : {
704
+ "nodetype" : "column",
705
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
706
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.14",
707
+ "status" : "current",
708
+ "syntax" : {
709
+ "type" : {
710
+ "basetype" : "Enumeration",
711
+ "up" : {
712
+ "nodetype" : "namednumber",
713
+ "number" : "1"
714
+ },
715
+ "down" : {
716
+ "nodetype" : "namednumber",
717
+ "number" : "2"
718
+ },
719
+ "testing" : {
720
+ "nodetype" : "namednumber",
721
+ "number" : "3"
722
+ },
723
+ },
724
+ },
725
+ "access" : "readwrite",
726
+ "description" :
727
+ """Indicates the desired operational status of this
728
+ VRF.""",
729
+ }, # column
730
+ "mplsL3VpnVrfConfStorageType" : {
731
+ "nodetype" : "column",
732
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
733
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.2.1.15",
734
+ "status" : "current",
735
+ "syntax" : {
736
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
737
+ },
738
+ "access" : "readwrite",
739
+ "default" : "volatile",
740
+ "description" :
741
+ """The storage type for this VPN VRF entry.
742
+ Conceptual rows having the value 'permanent'
743
+ need not allow write access to any columnar
744
+ objects in the row.""",
745
+ "reference" :
746
+ """See RFC2579.""",
747
+ }, # column
748
+ "mplsL3VpnVrfRTTable" : {
749
+ "nodetype" : "table",
750
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
751
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.3",
752
+ "status" : "current",
753
+ "description" :
754
+ """This table specifies per-VRF route target association.
755
+ Each entry identifies a connectivity policy supported
756
+ as part of a VPN.""",
757
+ }, # table
758
+ "mplsL3VpnVrfRTEntry" : {
759
+ "nodetype" : "row",
760
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
761
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.3.1",
762
+ "create" : "true",
763
+ "status" : "current",
764
+ "linkage" : [
765
+ "mplsL3VpnVrfName",
766
+ "mplsL3VpnVrfRTIndex",
767
+ "mplsL3VpnVrfRTType",
768
+ ],
769
+ "description" :
770
+ """An entry in this table is created by an LSR for
771
+ each route target configured for a VRF supporting
772
+ a MPLS L3VPN instance. The indexing provides an
773
+ ordering per-VRF instance. See [RFC4364] for a
774
+ complete definition of a route target.""",
775
+ }, # row
776
+ "mplsL3VpnVrfRTIndex" : {
777
+ "nodetype" : "column",
778
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
779
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.3.1.2",
780
+ "status" : "current",
781
+ "syntax" : {
782
+ "type" : {
783
+ "basetype" : "Unsigned32",
784
+ "ranges" : [
785
+ {
786
+ "min" : "1",
787
+ "max" : "4294967295"
788
+ },
789
+ ],
790
+ "range" : {
791
+ "min" : "1",
792
+ "max" : "4294967295"
793
+ },
794
+ },
795
+ },
796
+ "access" : "noaccess",
797
+ "description" :
798
+ """Auxiliary index for route targets configured for a
799
+ particular VRF.""",
800
+ }, # column
801
+ "mplsL3VpnVrfRTType" : {
802
+ "nodetype" : "column",
803
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
804
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.3.1.3",
805
+ "status" : "current",
806
+ "syntax" : {
807
+ "type" : { "module" :"MPLS-L3VPN-STD-MIB", "name" : "MplsL3VpnRtType"},
808
+ },
809
+ "access" : "noaccess",
810
+ "description" :
811
+ """The route target distribution type.""",
812
+ }, # column
813
+ "mplsL3VpnVrfRT" : {
814
+ "nodetype" : "column",
815
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
816
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.3.1.4",
817
+ "status" : "current",
818
+ "syntax" : {
819
+ "type" : { "module" :"MPLS-L3VPN-STD-MIB", "name" : "MplsL3VpnRouteDistinguisher"},
820
+ },
821
+ "access" : "readwrite",
822
+ "default" : "",
823
+ "description" :
824
+ """The route target distribution policy.""",
825
+ }, # column
826
+ "mplsL3VpnVrfRTDescr" : {
827
+ "nodetype" : "column",
828
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
829
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.3.1.5",
830
+ "status" : "current",
831
+ "syntax" : {
832
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
833
+ },
834
+ "access" : "readwrite",
835
+ "default" : "",
836
+ "description" :
837
+ """Description of the route target.""",
838
+ }, # column
839
+ "mplsL3VpnVrfRTRowStatus" : {
840
+ "nodetype" : "column",
841
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
842
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.3.1.6",
843
+ "status" : "current",
844
+ "syntax" : {
845
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
846
+ },
847
+ "access" : "readwrite",
848
+ "description" :
849
+ """This variable is used to create, modify, and/or
850
+ delete a row in this table. When a row in this
851
+ table is in active(1) state, no objects in that row
852
+ can be modified except mplsL3VpnVrfRTRowStatus.""",
853
+ }, # column
854
+ "mplsL3VpnVrfRTStorageType" : {
855
+ "nodetype" : "column",
856
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
857
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.3.1.7",
858
+ "status" : "current",
859
+ "syntax" : {
860
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
861
+ },
862
+ "access" : "readwrite",
863
+ "default" : "volatile",
864
+ "description" :
865
+ """The storage type for this VPN route target (RT) entry.
866
+ Conceptual rows having the value 'permanent'
867
+ need not allow write access to any columnar
868
+ objects in the row.""",
869
+ "reference" :
870
+ """See RFC2579.""",
871
+ }, # column
872
+ "mplsL3VpnVrfSecTable" : {
873
+ "nodetype" : "table",
874
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
875
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.6",
876
+ "status" : "current",
877
+ "description" :
878
+ """This table specifies per MPLS L3VPN VRF Table
879
+ security-related counters.""",
880
+ }, # table
881
+ "mplsL3VpnVrfSecEntry" : {
882
+ "nodetype" : "row",
883
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
884
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.6.1",
885
+ "status" : "current",
886
+ "linkage" : [
887
+ { "MPLS-L3VPN-STD-MIB" : {
888
+ "indexkind" : "augments",
889
+ "relatedNode" : "mplsL3VpnVrfEntry",
890
+ }},
891
+ ],
892
+ "description" :
893
+ """An entry in this table is created by an LSR for
894
+ every VRF capable of supporting MPLS L3VPN. Each
895
+ entry in this table is used to indicate security-related
896
+ information for each VRF entry.""",
897
+ }, # row
898
+ "mplsL3VpnVrfSecIllegalLblVltns" : {
899
+ "nodetype" : "column",
900
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
901
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.6.1.1",
902
+ "status" : "current",
903
+ "syntax" : {
904
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
905
+ },
906
+ "access" : "readonly",
907
+ "description" :
908
+ """Indicates the number of illegally received
909
+ labels on this VPN/VRF.
910
+
911
+ Discontinuities in the value of this counter can occur
912
+ at re-initialization of the management system, and at
913
+ other times as indicated by the value of
914
+ mplsL3VpnVrfSecDiscontinuityTime.""",
915
+ }, # column
916
+ "mplsL3VpnVrfSecDiscontinuityTime" : {
917
+ "nodetype" : "column",
918
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
919
+ "oid" : "1.3.6.1.2.1.10.166.11.1.2.6.1.2",
920
+ "status" : "current",
921
+ "syntax" : {
922
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
923
+ },
924
+ "access" : "readonly",
925
+ "description" :
926
+ """The value of sysUpTime on the most recent occasion at
927
+ which any one or more of this entry's counters suffered
928
+ a discontinuity. If no such discontinuities have
929
+ occurred since the last re-initialization of the local
930
+ management subsystem, then this object contains a zero
931
+ value.""",
932
+ }, # column
933
+ "mplsL3VpnPerf" : {
934
+ "nodetype" : "node",
935
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
936
+ "oid" : "1.3.6.1.2.1.10.166.11.1.3",
937
+ }, # node
938
+ "mplsL3VpnVrfPerfTable" : {
939
+ "nodetype" : "table",
940
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
941
+ "oid" : "1.3.6.1.2.1.10.166.11.1.3.1",
942
+ "status" : "current",
943
+ "description" :
944
+ """This table specifies per MPLS L3VPN VRF Table performance
945
+
946
+
947
+
948
+ information.""",
949
+ }, # table
950
+ "mplsL3VpnVrfPerfEntry" : {
951
+ "nodetype" : "row",
952
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
953
+ "oid" : "1.3.6.1.2.1.10.166.11.1.3.1.1",
954
+ "status" : "current",
955
+ "linkage" : [
956
+ { "MPLS-L3VPN-STD-MIB" : {
957
+ "indexkind" : "augments",
958
+ "relatedNode" : "mplsL3VpnVrfEntry",
959
+ }},
960
+ ],
961
+ "description" :
962
+ """An entry in this table is created by an LSR for
963
+ every VRF capable of supporting MPLS L3VPN.""",
964
+ }, # row
965
+ "mplsL3VpnVrfPerfRoutesAdded" : {
966
+ "nodetype" : "column",
967
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
968
+ "oid" : "1.3.6.1.2.1.10.166.11.1.3.1.1.1",
969
+ "status" : "current",
970
+ "syntax" : {
971
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
972
+ },
973
+ "access" : "readonly",
974
+ "description" :
975
+ """Indicates the number of routes added to this VPN/VRF
976
+ since the last discontinuity. Discontinuities in
977
+ the value of this counter can occur
978
+ at re-initialization of the management system, and at
979
+ other times as indicated by the value of
980
+ mplsL3VpnVrfPerfDiscTime.""",
981
+ }, # column
982
+ "mplsL3VpnVrfPerfRoutesDeleted" : {
983
+ "nodetype" : "column",
984
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
985
+ "oid" : "1.3.6.1.2.1.10.166.11.1.3.1.1.2",
986
+ "status" : "current",
987
+ "syntax" : {
988
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
989
+ },
990
+ "access" : "readonly",
991
+ "description" :
992
+ """Indicates the number of routes removed from this VPN/VRF.
993
+
994
+ Discontinuities in the value of this counter can occur
995
+ at re-initialization of the management system, and at
996
+ other times as indicated by the value of
997
+ mplsL3VpnVrfPerfDiscTime.""",
998
+ }, # column
999
+ "mplsL3VpnVrfPerfCurrNumRoutes" : {
1000
+ "nodetype" : "column",
1001
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1002
+ "oid" : "1.3.6.1.2.1.10.166.11.1.3.1.1.3",
1003
+ "status" : "current",
1004
+ "syntax" : {
1005
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1006
+ },
1007
+ "access" : "readonly",
1008
+ "description" :
1009
+ """Indicates the number of routes currently used by this
1010
+ VRF.""",
1011
+ }, # column
1012
+ "mplsL3VpnVrfPerfRoutesDropped" : {
1013
+ "nodetype" : "column",
1014
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1015
+ "oid" : "1.3.6.1.2.1.10.166.11.1.3.1.1.4",
1016
+ "status" : "current",
1017
+ "syntax" : {
1018
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1019
+ },
1020
+ "access" : "readonly",
1021
+ "description" :
1022
+ """This counter should be incremented when the number of routes
1023
+ contained by the specified VRF exceeds or attempts to exceed
1024
+ the maximum allowed value as indicated by
1025
+ mplsL3VpnVrfMaxRouteThreshold.
1026
+
1027
+ Discontinuities in the value of this counter can occur
1028
+ at re-initialization of the management system, and at
1029
+ other times as indicated by the value of
1030
+ mplsL3VpnVrfPerfDiscTime.""",
1031
+ }, # column
1032
+ "mplsL3VpnVrfPerfDiscTime" : {
1033
+ "nodetype" : "column",
1034
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1035
+ "oid" : "1.3.6.1.2.1.10.166.11.1.3.1.1.5",
1036
+ "status" : "current",
1037
+ "syntax" : {
1038
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1039
+ },
1040
+ "access" : "readonly",
1041
+ "description" :
1042
+ """The value of sysUpTime on the most recent occasion at
1043
+ which any one or more of this entry's counters suffered
1044
+ a discontinuity. If no such discontinuities have
1045
+ occurred since the last re-initialization of the local
1046
+ management subsystem, then this object contains a zero
1047
+ value.""",
1048
+ }, # column
1049
+ "mplsL3VpnRoute" : {
1050
+ "nodetype" : "node",
1051
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1052
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4",
1053
+ }, # node
1054
+ "mplsL3VpnVrfRteTable" : {
1055
+ "nodetype" : "table",
1056
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1057
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1",
1058
+ "status" : "current",
1059
+ "description" :
1060
+ """This table specifies per-interface MPLS L3VPN VRF Table
1061
+ routing information. Entries in this table define VRF routing
1062
+ entries associated with the specified MPLS/VPN interfaces. Note
1063
+
1064
+
1065
+
1066
+ that this table contains both BGP and Interior Gateway Protocol
1067
+ IGP routes, as both may appear in the same VRF.""",
1068
+ "reference" :
1069
+ """[RFC2096]""",
1070
+ }, # table
1071
+ "mplsL3VpnVrfRteEntry" : {
1072
+ "nodetype" : "row",
1073
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1074
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1",
1075
+ "create" : "true",
1076
+ "status" : "current",
1077
+ "linkage" : [
1078
+ "mplsL3VpnVrfName",
1079
+ "mplsL3VpnVrfRteInetCidrDestType",
1080
+ "mplsL3VpnVrfRteInetCidrDest",
1081
+ "mplsL3VpnVrfRteInetCidrPfxLen",
1082
+ "mplsL3VpnVrfRteInetCidrPolicy",
1083
+ "mplsL3VpnVrfRteInetCidrNHopType",
1084
+ "mplsL3VpnVrfRteInetCidrNextHop",
1085
+ ],
1086
+ "description" :
1087
+ """An entry in this table is created by an LSR for every route
1088
+ present configured (either dynamically or statically) within
1089
+ the context of a specific VRF capable of supporting MPLS/BGP
1090
+ VPN. The indexing provides an ordering of VRFs per-VPN
1091
+ interface.
1092
+
1093
+ Implementers need to be aware that there are quite a few
1094
+ index objects that together can exceed the size allowed
1095
+ for an Object Identifier (OID). So implementers must make
1096
+ sure that OIDs of column instances in this table will have
1097
+ no more than 128 sub-identifiers, otherwise they cannot be
1098
+ accessed using SNMPv1, SNMPv2c, or SNMPv3.""",
1099
+ }, # row
1100
+ "mplsL3VpnVrfRteInetCidrDestType" : {
1101
+ "nodetype" : "column",
1102
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1103
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.1",
1104
+ "status" : "current",
1105
+ "syntax" : {
1106
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1107
+ },
1108
+ "access" : "noaccess",
1109
+ "description" :
1110
+ """The type of the mplsL3VpnVrfRteInetCidrDest address, as
1111
+ defined in the InetAddress MIB.
1112
+
1113
+ Only those address types that may appear in an actual
1114
+ routing table are allowed as values of this object.""",
1115
+ "reference" :
1116
+ """RFC4001""",
1117
+ }, # column
1118
+ "mplsL3VpnVrfRteInetCidrDest" : {
1119
+ "nodetype" : "column",
1120
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1121
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.2",
1122
+ "status" : "current",
1123
+ "syntax" : {
1124
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1125
+ },
1126
+ "access" : "noaccess",
1127
+ "description" :
1128
+ """The destination IP address of this route.
1129
+
1130
+ The type of this address is determined by the value of
1131
+ the mplsL3VpnVrfRteInetCidrDestType object.
1132
+
1133
+ The values for the index objects
1134
+ mplsL3VpnVrfRteInetCidrDest and
1135
+ mplsL3VpnVrfRteInetCidrPfxLen must be consistent. When
1136
+ the value of mplsL3VpnVrfRteInetCidrDest is x, then
1137
+ the bitwise logical-AND of x with the value of the mask
1138
+ formed from the corresponding index object
1139
+ mplsL3VpnVrfRteInetCidrPfxLen MUST be
1140
+ equal to x. If not, then the index pair is not
1141
+ consistent and an inconsistentName error must be
1142
+ returned on SET or CREATE requests.""",
1143
+ }, # column
1144
+ "mplsL3VpnVrfRteInetCidrPfxLen" : {
1145
+ "nodetype" : "column",
1146
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1147
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.3",
1148
+ "status" : "current",
1149
+ "syntax" : {
1150
+ "type" : {
1151
+ "basetype" : "Unsigned32",
1152
+ "parent module" : {
1153
+ "name" : "INET-ADDRESS-MIB",
1154
+ "type" : "InetAddressPrefixLength",
1155
+ },
1156
+ "ranges" : [
1157
+ {
1158
+ "min" : "0",
1159
+ "max" : "128"
1160
+ },
1161
+ ],
1162
+ "range" : {
1163
+ "min" : "0",
1164
+ "max" : "128"
1165
+ },
1166
+ },
1167
+ },
1168
+ "access" : "noaccess",
1169
+ "description" :
1170
+ """Indicates the number of leading one bits that form the
1171
+
1172
+
1173
+
1174
+ mask to be logical-ANDed with the destination address
1175
+ before being compared to the value in the
1176
+ mplsL3VpnVrfRteInetCidrDest field.
1177
+
1178
+ The values for the index objects
1179
+ mplsL3VpnVrfRteInetCidrDest and
1180
+ mplsL3VpnVrfRteInetCidrPfxLen must be consistent. When
1181
+ the value of mplsL3VpnVrfRteInetCidrDest is x, then the
1182
+ bitwise logical-AND of x with the value of the mask
1183
+ formed from the corresponding index object
1184
+ mplsL3VpnVrfRteInetCidrPfxLen MUST be
1185
+ equal to x. If not, then the index pair is not
1186
+ consistent and an inconsistentName error must be
1187
+ returned on SET or CREATE requests.""",
1188
+ }, # column
1189
+ "mplsL3VpnVrfRteInetCidrPolicy" : {
1190
+ "nodetype" : "column",
1191
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1192
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.4",
1193
+ "status" : "current",
1194
+ "syntax" : {
1195
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1196
+ },
1197
+ "access" : "noaccess",
1198
+ "description" :
1199
+ """This object is an opaque object without any defined
1200
+ semantics. Its purpose is to serve as an additional
1201
+ index that may delineate between multiple entries to
1202
+ the same destination. The value { 0 0 } shall be used
1203
+ as the default value for this object.""",
1204
+ }, # column
1205
+ "mplsL3VpnVrfRteInetCidrNHopType" : {
1206
+ "nodetype" : "column",
1207
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1208
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.5",
1209
+ "status" : "current",
1210
+ "syntax" : {
1211
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1212
+ },
1213
+ "access" : "noaccess",
1214
+ "description" :
1215
+ """The type of the mplsL3VpnVrfRteInetCidrNextHop address,
1216
+ as defined in the InetAddress MIB.
1217
+
1218
+ Value should be set to unknown(0) for non-remote
1219
+ routes.
1220
+
1221
+ Only those address types that may appear in an actual
1222
+ routing table are allowed as values of this object.""",
1223
+ "reference" :
1224
+ """RFC4001""",
1225
+ }, # column
1226
+ "mplsL3VpnVrfRteInetCidrNextHop" : {
1227
+ "nodetype" : "column",
1228
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1229
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.6",
1230
+ "status" : "current",
1231
+ "syntax" : {
1232
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1233
+ },
1234
+ "access" : "noaccess",
1235
+ "description" :
1236
+ """On remote routes, the address of the next system en
1237
+ route. For non-remote routes, a zero-length string.
1238
+ The type of this address is determined by the value of
1239
+ the mplsL3VpnVrfRteInetCidrNHopType object.""",
1240
+ }, # column
1241
+ "mplsL3VpnVrfRteInetCidrIfIndex" : {
1242
+ "nodetype" : "column",
1243
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1244
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.7",
1245
+ "status" : "current",
1246
+ "syntax" : {
1247
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
1248
+ },
1249
+ "access" : "readwrite",
1250
+ "default" : "0",
1251
+ "description" :
1252
+ """The ifIndex value that identifies the local interface
1253
+ through which the next hop of this route should be
1254
+ reached. A value of 0 is valid and represents the
1255
+ scenario where no interface is specified.""",
1256
+ }, # column
1257
+ "mplsL3VpnVrfRteInetCidrType" : {
1258
+ "nodetype" : "column",
1259
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1260
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.8",
1261
+ "status" : "current",
1262
+ "syntax" : {
1263
+ "type" : {
1264
+ "basetype" : "Enumeration",
1265
+ "other" : {
1266
+ "nodetype" : "namednumber",
1267
+ "number" : "1"
1268
+ },
1269
+ "reject" : {
1270
+ "nodetype" : "namednumber",
1271
+ "number" : "2"
1272
+ },
1273
+ "local" : {
1274
+ "nodetype" : "namednumber",
1275
+ "number" : "3"
1276
+ },
1277
+ "remote" : {
1278
+ "nodetype" : "namednumber",
1279
+ "number" : "4"
1280
+ },
1281
+ "blackhole" : {
1282
+ "nodetype" : "namednumber",
1283
+ "number" : "5"
1284
+ },
1285
+ },
1286
+ },
1287
+ "access" : "readwrite",
1288
+ "default" : "other",
1289
+ "description" :
1290
+ """The type of route. Note that local(3) refers to a
1291
+ route for which the next hop is the final destination;
1292
+ remote(4) refers to a route for which the next hop is
1293
+ not the final destination.
1294
+
1295
+ Routes that do not result in traffic forwarding or
1296
+ rejection should not be displayed even if the
1297
+ implementation keeps them stored internally.
1298
+
1299
+ reject(2) refers to a route that, if matched, discards
1300
+ the message as unreachable and returns a notification
1301
+ (e.g., ICMP error) to the message sender. This is used
1302
+ in some protocols as a means of correctly aggregating
1303
+ routes.
1304
+
1305
+ blackhole(5) refers to a route that, if matched,
1306
+
1307
+
1308
+
1309
+ discards the message silently.""",
1310
+ }, # column
1311
+ "mplsL3VpnVrfRteInetCidrProto" : {
1312
+ "nodetype" : "column",
1313
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1314
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.9",
1315
+ "status" : "current",
1316
+ "syntax" : {
1317
+ "type" : { "module" :"IANA-RTPROTO-MIB", "name" : "IANAipRouteProtocol"},
1318
+ },
1319
+ "access" : "readonly",
1320
+ "description" :
1321
+ """The routing mechanism via which this route was learned.
1322
+ Inclusion of values for gateway routing protocols is
1323
+ not intended to imply that hosts should support those
1324
+ protocols.""",
1325
+ }, # column
1326
+ "mplsL3VpnVrfRteInetCidrAge" : {
1327
+ "nodetype" : "column",
1328
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1329
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.10",
1330
+ "status" : "current",
1331
+ "syntax" : {
1332
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1333
+ },
1334
+ "access" : "readonly",
1335
+ "description" :
1336
+ """The number of seconds since this route was last updated
1337
+ or otherwise determined to be correct. Note that no
1338
+ semantics of 'too old' can be implied except through
1339
+ knowledge of the routing protocol by which the route
1340
+ was learned.""",
1341
+ }, # column
1342
+ "mplsL3VpnVrfRteInetCidrNextHopAS" : {
1343
+ "nodetype" : "column",
1344
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1345
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.11",
1346
+ "status" : "current",
1347
+ "syntax" : {
1348
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAutonomousSystemNumber"},
1349
+ },
1350
+ "access" : "readwrite",
1351
+ "default" : "0",
1352
+ "description" :
1353
+ """The Autonomous System Number of the next hop. The
1354
+ semantics of this object are determined by the
1355
+ routing protocol specified in the route's
1356
+ mplsL3VpnVrfRteInetCidrProto value. When this
1357
+ object is unknown or not relevant, its value should
1358
+ be set to zero.""",
1359
+ }, # column
1360
+ "mplsL3VpnVrfRteInetCidrMetric1" : {
1361
+ "nodetype" : "column",
1362
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1363
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.12",
1364
+ "status" : "current",
1365
+ "syntax" : {
1366
+ "type" : {
1367
+ "basetype" : "Integer32",
1368
+ "ranges" : [
1369
+ {
1370
+ "min" : "-1",
1371
+ "max" : "2147483647"
1372
+ },
1373
+ ],
1374
+ "range" : {
1375
+ "min" : "-1",
1376
+ "max" : "2147483647"
1377
+ },
1378
+ },
1379
+ },
1380
+ "access" : "readwrite",
1381
+ "default" : "-1",
1382
+ "description" :
1383
+ """The primary routing metric for this route. The
1384
+ semantics of this metric are determined by the
1385
+
1386
+
1387
+
1388
+ routing protocol specified in the route's
1389
+ mplsL3VpnVrfRteInetCidrProto value. If this
1390
+ metric is not used, its value should be set to
1391
+ -1.""",
1392
+ }, # column
1393
+ "mplsL3VpnVrfRteInetCidrMetric2" : {
1394
+ "nodetype" : "column",
1395
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1396
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.13",
1397
+ "status" : "current",
1398
+ "syntax" : {
1399
+ "type" : {
1400
+ "basetype" : "Integer32",
1401
+ "ranges" : [
1402
+ {
1403
+ "min" : "-1",
1404
+ "max" : "2147483647"
1405
+ },
1406
+ ],
1407
+ "range" : {
1408
+ "min" : "-1",
1409
+ "max" : "2147483647"
1410
+ },
1411
+ },
1412
+ },
1413
+ "access" : "readwrite",
1414
+ "default" : "-1",
1415
+ "description" :
1416
+ """An alternate routing metric for this route. The
1417
+ semantics of this metric are determined by the routing
1418
+ protocol specified in the route's
1419
+ mplsL3VpnVrfRteInetCidrProto
1420
+ value. If this metric is not used, its value should be
1421
+ set to -1.""",
1422
+ }, # column
1423
+ "mplsL3VpnVrfRteInetCidrMetric3" : {
1424
+ "nodetype" : "column",
1425
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1426
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.14",
1427
+ "status" : "current",
1428
+ "syntax" : {
1429
+ "type" : {
1430
+ "basetype" : "Integer32",
1431
+ "ranges" : [
1432
+ {
1433
+ "min" : "-1",
1434
+ "max" : "2147483647"
1435
+ },
1436
+ ],
1437
+ "range" : {
1438
+ "min" : "-1",
1439
+ "max" : "2147483647"
1440
+ },
1441
+ },
1442
+ },
1443
+ "access" : "readwrite",
1444
+ "default" : "-1",
1445
+ "description" :
1446
+ """An alternate routing metric for this route. The
1447
+ semantics of this metric are determined by the routing
1448
+ protocol specified in the route's
1449
+ mplsL3VpnVrfRteInetCidrProto
1450
+ value. If this metric is not used, its value should be
1451
+ set to -1.""",
1452
+ }, # column
1453
+ "mplsL3VpnVrfRteInetCidrMetric4" : {
1454
+ "nodetype" : "column",
1455
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1456
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.15",
1457
+ "status" : "current",
1458
+ "syntax" : {
1459
+ "type" : {
1460
+ "basetype" : "Integer32",
1461
+ "ranges" : [
1462
+ {
1463
+ "min" : "-1",
1464
+ "max" : "2147483647"
1465
+ },
1466
+ ],
1467
+ "range" : {
1468
+ "min" : "-1",
1469
+ "max" : "2147483647"
1470
+ },
1471
+ },
1472
+ },
1473
+ "access" : "readwrite",
1474
+ "default" : "-1",
1475
+ "description" :
1476
+ """An alternate routing metric for this route. The
1477
+ semantics of this metric are determined by the routing
1478
+ protocol specified in the route's
1479
+ mplsL3VpnVrfRteInetCidrProto value. If this metric
1480
+ is not used, its value should be set to -1.""",
1481
+ }, # column
1482
+ "mplsL3VpnVrfRteInetCidrMetric5" : {
1483
+ "nodetype" : "column",
1484
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1485
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.16",
1486
+ "status" : "current",
1487
+ "syntax" : {
1488
+ "type" : {
1489
+ "basetype" : "Integer32",
1490
+ "ranges" : [
1491
+ {
1492
+ "min" : "-1",
1493
+ "max" : "2147483647"
1494
+ },
1495
+ ],
1496
+ "range" : {
1497
+ "min" : "-1",
1498
+ "max" : "2147483647"
1499
+ },
1500
+ },
1501
+ },
1502
+ "access" : "readwrite",
1503
+ "default" : "-1",
1504
+ "description" :
1505
+ """An alternate routing metric for this route. The
1506
+ semantics of this metric are determined by the routing
1507
+ protocol specified in the route's
1508
+ mplsL3VpnVrfRteInetCidrProto value. If this metric is
1509
+ not used, its value should be set to -1.""",
1510
+ }, # column
1511
+ "mplsL3VpnVrfRteXCPointer" : {
1512
+ "nodetype" : "column",
1513
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1514
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.17",
1515
+ "status" : "current",
1516
+ "syntax" : {
1517
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1518
+ },
1519
+ "access" : "readwrite",
1520
+ "description" :
1521
+ """Index into mplsXCTable that identifies which cross-
1522
+ connect entry is associated with this VRF route entry
1523
+ by containing the mplsXCIndex of that cross-connect entry.
1524
+ The string containing the single-octet 0x00 indicates that
1525
+ a label stack is not associated with this route entry. This
1526
+ can be the case because the label bindings have not yet
1527
+ been established, or because some change in the agent has
1528
+ removed them.
1529
+
1530
+ When the label stack associated with this VRF route is created,
1531
+ it MUST establish the associated cross-connect
1532
+ entry in the mplsXCTable and then set that index to the value
1533
+ of this object. Changes to the cross-connect object in the
1534
+ mplsXCTable MUST automatically be reflected in the value of
1535
+ this object. If this object represents a static routing entry,
1536
+ then the manager must ensure that this entry is maintained
1537
+ consistently in the corresponding mplsXCTable as well.""",
1538
+ "reference" :
1539
+ """RFC 3813 - Multiprotocol Label Switching (MPLS) Label Switching
1540
+ Router (LSR) Management Information base (MIB), C. Srinivasan,
1541
+ A. Vishwanathan, and T. Nadeau, June 2004""",
1542
+ }, # column
1543
+ "mplsL3VpnVrfRteInetCidrStatus" : {
1544
+ "nodetype" : "column",
1545
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1546
+ "oid" : "1.3.6.1.2.1.10.166.11.1.4.1.1.18",
1547
+ "status" : "current",
1548
+ "syntax" : {
1549
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1550
+ },
1551
+ "access" : "readwrite",
1552
+ "description" :
1553
+ """The row status variable, used according to row
1554
+ installation and removal conventions.
1555
+
1556
+
1557
+
1558
+ A row entry cannot be modified when the status is
1559
+ marked as active(1).""",
1560
+ }, # column
1561
+ "mplsL3VpnConformance" : {
1562
+ "nodetype" : "node",
1563
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1564
+ "oid" : "1.3.6.1.2.1.10.166.11.2",
1565
+ }, # node
1566
+ "mplsL3VpnGroups" : {
1567
+ "nodetype" : "node",
1568
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1569
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1",
1570
+ }, # node
1571
+ "mplsL3VpnCompliances" : {
1572
+ "nodetype" : "node",
1573
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1574
+ "oid" : "1.3.6.1.2.1.10.166.11.2.2",
1575
+ }, # node
1576
+ }, # nodes
1577
+
1578
+ "notifications" : {
1579
+ "mplsL3VpnVrfUp" : {
1580
+ "nodetype" : "notification",
1581
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1582
+ "oid" : "1.3.6.1.2.1.10.166.11.0.1",
1583
+ "status" : "current",
1584
+ "objects" : {
1585
+ "mplsL3VpnIfConfRowStatus" : {
1586
+ "nodetype" : "object",
1587
+ "module" : "MPLS-L3VPN-STD-MIB"
1588
+ },
1589
+ "mplsL3VpnVrfOperStatus" : {
1590
+ "nodetype" : "object",
1591
+ "module" : "MPLS-L3VPN-STD-MIB"
1592
+ },
1593
+ },
1594
+ "description" :
1595
+ """This notification is generated when:
1596
+ a. No interface is associated with this VRF, and the first
1597
+ (and only first) interface associated with it has its
1598
+ ifOperStatus change to up(1).
1599
+
1600
+ b. One interface is associated with this VRF, and
1601
+ the ifOperStatus of this interface changes to up(1).
1602
+
1603
+ c. Multiple interfaces are associated with this VRF, and the
1604
+ ifOperStatus of all interfaces is down(2), and the first
1605
+ of those interfaces has its ifOperStatus change to up(1).""",
1606
+ }, # notification
1607
+ "mplsL3VpnVrfDown" : {
1608
+ "nodetype" : "notification",
1609
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1610
+ "oid" : "1.3.6.1.2.1.10.166.11.0.2",
1611
+ "status" : "current",
1612
+ "objects" : {
1613
+ "mplsL3VpnIfConfRowStatus" : {
1614
+ "nodetype" : "object",
1615
+ "module" : "MPLS-L3VPN-STD-MIB"
1616
+ },
1617
+ "mplsL3VpnVrfOperStatus" : {
1618
+ "nodetype" : "object",
1619
+ "module" : "MPLS-L3VPN-STD-MIB"
1620
+ },
1621
+ },
1622
+ "description" :
1623
+ """This notification is generated when:
1624
+ a. One interface is associated with this VRF, and
1625
+ the ifOperStatus of this interface changes from up(1)
1626
+ to down(2).
1627
+
1628
+ b. Multiple interfaces are associated with this VRF, and
1629
+ the ifOperStatus of all except one of these interfaces is
1630
+ equal to up(1), and the ifOperStatus of that interface
1631
+ changes from up(1) to down(2).
1632
+
1633
+ c. The last interface with ifOperStatus equal to up(1)
1634
+ is disassociated from a VRF.""",
1635
+ }, # notification
1636
+ "mplsL3VpnVrfRouteMidThreshExceeded" : {
1637
+ "nodetype" : "notification",
1638
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1639
+ "oid" : "1.3.6.1.2.1.10.166.11.0.3",
1640
+ "status" : "current",
1641
+ "objects" : {
1642
+ "mplsL3VpnVrfPerfCurrNumRoutes" : {
1643
+ "nodetype" : "object",
1644
+ "module" : "MPLS-L3VPN-STD-MIB"
1645
+ },
1646
+ "mplsL3VpnVrfConfMidRteThresh" : {
1647
+ "nodetype" : "object",
1648
+ "module" : "MPLS-L3VPN-STD-MIB"
1649
+ },
1650
+ },
1651
+ "description" :
1652
+ """This notification is generated when the number of routes
1653
+ contained by the specified VRF exceeds the value indicated by
1654
+ mplsL3VpnVrfMidRouteThreshold. A single notification MUST be
1655
+ generated when this threshold is exceeded, and no other
1656
+ notifications of this type should be issued until the value
1657
+ of mplsL3VpnVrfPerfCurrNumRoutes has fallen below that of
1658
+ mplsL3VpnVrfConfMidRteThresh.""",
1659
+ }, # notification
1660
+ "mplsL3VpnVrfNumVrfRouteMaxThreshExceeded" : {
1661
+ "nodetype" : "notification",
1662
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1663
+ "oid" : "1.3.6.1.2.1.10.166.11.0.4",
1664
+ "status" : "current",
1665
+ "objects" : {
1666
+ "mplsL3VpnVrfPerfCurrNumRoutes" : {
1667
+ "nodetype" : "object",
1668
+ "module" : "MPLS-L3VPN-STD-MIB"
1669
+ },
1670
+ "mplsL3VpnVrfConfHighRteThresh" : {
1671
+ "nodetype" : "object",
1672
+ "module" : "MPLS-L3VPN-STD-MIB"
1673
+ },
1674
+ },
1675
+ "description" :
1676
+ """This notification is generated when the number of routes
1677
+ contained by the specified VRF exceeds or attempts to exceed
1678
+ the maximum allowed value as indicated by
1679
+ mplsL3VpnVrfMaxRouteThreshold. In cases where
1680
+ mplsL3VpnVrfConfHighRteThresh is set to the same value
1681
+ as mplsL3VpnVrfConfMaxRoutes, mplsL3VpnVrfConfHighRteThresh
1682
+ need not be exceeded; rather, just reached for this notification
1683
+ to be issued.
1684
+
1685
+ Note that mplsL3VpnVrfConfRteMxThrshTime denotes the interval
1686
+ at which the this notification will be reissued after the
1687
+ maximum value has been exceeded (or reached if
1688
+ mplsL3VpnVrfConfMaxRoutes and mplsL3VpnVrfConfHighRteThresh are
1689
+ equal) and the initial notification has been issued. This value
1690
+ is intended to prevent continuous generation of notifications by
1691
+ an agent in the event that routes are continually added to a VRF
1692
+ after it has reached its maximum value. The default value is 0
1693
+ minutes. If this value is set to 0, the agent should only issue
1694
+ a single notification at the time that the maximum threshold has
1695
+ been reached, and should not issue any more notifications until
1696
+ the value of routes has fallen below the configured threshold
1697
+ value.""",
1698
+ }, # notification
1699
+ "mplsL3VpnNumVrfSecIllglLblThrshExcd" : {
1700
+ "nodetype" : "notification",
1701
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1702
+ "oid" : "1.3.6.1.2.1.10.166.11.0.5",
1703
+ "status" : "current",
1704
+ "objects" : {
1705
+ "mplsL3VpnVrfSecIllegalLblVltns" : {
1706
+ "nodetype" : "object",
1707
+ "module" : "MPLS-L3VPN-STD-MIB"
1708
+ },
1709
+ },
1710
+ "description" :
1711
+ """This notification is generated when the number of illegal
1712
+ label violations on a VRF as indicated by
1713
+
1714
+
1715
+
1716
+ mplsL3VpnVrfSecIllegalLblVltns has exceeded
1717
+ mplsL3VpnIllLblRcvThrsh. The threshold is not
1718
+ included in the varbind here because the value of
1719
+ mplsL3VpnVrfSecIllegalLblVltns should be one greater than
1720
+ the threshold at the time this notification is issued.""",
1721
+ }, # notification
1722
+ "mplsL3VpnNumVrfRouteMaxThreshCleared" : {
1723
+ "nodetype" : "notification",
1724
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1725
+ "oid" : "1.3.6.1.2.1.10.166.11.0.6",
1726
+ "status" : "current",
1727
+ "objects" : {
1728
+ "mplsL3VpnVrfPerfCurrNumRoutes" : {
1729
+ "nodetype" : "object",
1730
+ "module" : "MPLS-L3VPN-STD-MIB"
1731
+ },
1732
+ "mplsL3VpnVrfConfHighRteThresh" : {
1733
+ "nodetype" : "object",
1734
+ "module" : "MPLS-L3VPN-STD-MIB"
1735
+ },
1736
+ },
1737
+ "description" :
1738
+ """This notification is generated only after the number of routes
1739
+ contained by the specified VRF exceeds or attempts to exceed
1740
+ the maximum allowed value as indicated by
1741
+ mplsVrfMaxRouteThreshold, and then falls below this value. The
1742
+ emission of this notification informs the operator that the
1743
+ error condition has been cleared without the operator having to
1744
+ query the device.
1745
+
1746
+ Note that mplsL3VpnVrfConfRteMxThrshTime denotes the interval at
1747
+ which the mplsNumVrfRouteMaxThreshExceeded notification will
1748
+ be reissued after the maximum value has been exceeded (or
1749
+ reached if mplsL3VpnVrfConfMaxRoutes and
1750
+ mplsL3VpnVrfConfHighRteThresh are equal) and the initial
1751
+ notification has been issued. Therefore,
1752
+ the generation of this notification should also be emitted with
1753
+ this same frequency (assuming that the error condition is
1754
+ cleared). Specifically, if the error condition is reached and
1755
+ cleared several times during the period of time specified in
1756
+ mplsL3VpnVrfConfRteMxThrshTime, only a single notification will
1757
+ be issued to indicate the first instance of the error condition
1758
+ as well as the first time the error condition is cleared.
1759
+ This behavior is intended to prevent continuous generation of
1760
+ notifications by an agent in the event that routes are
1761
+ continually added and removed to/from a VRF after it has
1762
+ reached its maximum value. The default value is 0. If this
1763
+ value is set to 0, the agent should issue a notification
1764
+ whenever the maximum threshold has been cleared.""",
1765
+ }, # notification
1766
+ }, # notifications
1767
+
1768
+ "groups" : {
1769
+ "mplsL3VpnScalarGroup" : {
1770
+ "nodetype" : "group",
1771
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1772
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.1",
1773
+ "status" : "current",
1774
+ "members" : {
1775
+ "mplsL3VpnConfiguredVrfs" : {
1776
+ "nodetype" : "member",
1777
+ "module" : "MPLS-L3VPN-STD-MIB"
1778
+ },
1779
+ "mplsL3VpnActiveVrfs" : {
1780
+ "nodetype" : "member",
1781
+ "module" : "MPLS-L3VPN-STD-MIB"
1782
+ },
1783
+ "mplsL3VpnConnectedInterfaces" : {
1784
+ "nodetype" : "member",
1785
+ "module" : "MPLS-L3VPN-STD-MIB"
1786
+ },
1787
+ "mplsL3VpnNotificationEnable" : {
1788
+ "nodetype" : "member",
1789
+ "module" : "MPLS-L3VPN-STD-MIB"
1790
+ },
1791
+ "mplsL3VpnVrfConfMaxPossRts" : {
1792
+ "nodetype" : "member",
1793
+ "module" : "MPLS-L3VPN-STD-MIB"
1794
+ },
1795
+ "mplsL3VpnVrfConfRteMxThrshTime" : {
1796
+ "nodetype" : "member",
1797
+ "module" : "MPLS-L3VPN-STD-MIB"
1798
+ },
1799
+ "mplsL3VpnIllLblRcvThrsh" : {
1800
+ "nodetype" : "member",
1801
+ "module" : "MPLS-L3VPN-STD-MIB"
1802
+ },
1803
+ }, # members
1804
+ "description" :
1805
+ """Collection of scalar objects required for MPLS VPN
1806
+ management.""",
1807
+ }, # group
1808
+ "mplsL3VpnVrfGroup" : {
1809
+ "nodetype" : "group",
1810
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1811
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.2",
1812
+ "status" : "current",
1813
+ "members" : {
1814
+ "mplsL3VpnVrfVpnId" : {
1815
+ "nodetype" : "member",
1816
+ "module" : "MPLS-L3VPN-STD-MIB"
1817
+ },
1818
+ "mplsL3VpnVrfDescription" : {
1819
+ "nodetype" : "member",
1820
+ "module" : "MPLS-L3VPN-STD-MIB"
1821
+ },
1822
+ "mplsL3VpnVrfRD" : {
1823
+ "nodetype" : "member",
1824
+ "module" : "MPLS-L3VPN-STD-MIB"
1825
+ },
1826
+ "mplsL3VpnVrfCreationTime" : {
1827
+ "nodetype" : "member",
1828
+ "module" : "MPLS-L3VPN-STD-MIB"
1829
+ },
1830
+ "mplsL3VpnVrfOperStatus" : {
1831
+ "nodetype" : "member",
1832
+ "module" : "MPLS-L3VPN-STD-MIB"
1833
+ },
1834
+ "mplsL3VpnVrfActiveInterfaces" : {
1835
+ "nodetype" : "member",
1836
+ "module" : "MPLS-L3VPN-STD-MIB"
1837
+ },
1838
+ "mplsL3VpnVrfAssociatedInterfaces" : {
1839
+ "nodetype" : "member",
1840
+ "module" : "MPLS-L3VPN-STD-MIB"
1841
+ },
1842
+ "mplsL3VpnVrfConfMidRteThresh" : {
1843
+ "nodetype" : "member",
1844
+ "module" : "MPLS-L3VPN-STD-MIB"
1845
+ },
1846
+ "mplsL3VpnVrfConfHighRteThresh" : {
1847
+ "nodetype" : "member",
1848
+ "module" : "MPLS-L3VPN-STD-MIB"
1849
+ },
1850
+ "mplsL3VpnVrfConfMaxRoutes" : {
1851
+ "nodetype" : "member",
1852
+ "module" : "MPLS-L3VPN-STD-MIB"
1853
+ },
1854
+ "mplsL3VpnVrfConfLastChanged" : {
1855
+ "nodetype" : "member",
1856
+ "module" : "MPLS-L3VPN-STD-MIB"
1857
+ },
1858
+ "mplsL3VpnVrfConfRowStatus" : {
1859
+ "nodetype" : "member",
1860
+ "module" : "MPLS-L3VPN-STD-MIB"
1861
+ },
1862
+ "mplsL3VpnVrfConfAdminStatus" : {
1863
+ "nodetype" : "member",
1864
+ "module" : "MPLS-L3VPN-STD-MIB"
1865
+ },
1866
+ "mplsL3VpnVrfConfStorageType" : {
1867
+ "nodetype" : "member",
1868
+ "module" : "MPLS-L3VPN-STD-MIB"
1869
+ },
1870
+ }, # members
1871
+ "description" :
1872
+ """Collection of objects needed for MPLS VPN VRF
1873
+ management.""",
1874
+ }, # group
1875
+ "mplsL3VpnIfGroup" : {
1876
+ "nodetype" : "group",
1877
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1878
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.3",
1879
+ "status" : "current",
1880
+ "members" : {
1881
+ "mplsL3VpnIfVpnClassification" : {
1882
+ "nodetype" : "member",
1883
+ "module" : "MPLS-L3VPN-STD-MIB"
1884
+ },
1885
+ "mplsL3VpnIfVpnRouteDistProtocol" : {
1886
+ "nodetype" : "member",
1887
+ "module" : "MPLS-L3VPN-STD-MIB"
1888
+ },
1889
+ "mplsL3VpnIfConfStorageType" : {
1890
+ "nodetype" : "member",
1891
+ "module" : "MPLS-L3VPN-STD-MIB"
1892
+ },
1893
+ "mplsL3VpnIfConfRowStatus" : {
1894
+ "nodetype" : "member",
1895
+ "module" : "MPLS-L3VPN-STD-MIB"
1896
+ },
1897
+ }, # members
1898
+ "description" :
1899
+ """Collection of objects needed for MPLS VPN interface
1900
+ management.""",
1901
+ }, # group
1902
+ "mplsL3VpnPerfGroup" : {
1903
+ "nodetype" : "group",
1904
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1905
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.4",
1906
+ "status" : "current",
1907
+ "members" : {
1908
+ "mplsL3VpnVrfPerfRoutesAdded" : {
1909
+ "nodetype" : "member",
1910
+ "module" : "MPLS-L3VPN-STD-MIB"
1911
+ },
1912
+ "mplsL3VpnVrfPerfRoutesDeleted" : {
1913
+ "nodetype" : "member",
1914
+ "module" : "MPLS-L3VPN-STD-MIB"
1915
+ },
1916
+ "mplsL3VpnVrfPerfCurrNumRoutes" : {
1917
+ "nodetype" : "member",
1918
+ "module" : "MPLS-L3VPN-STD-MIB"
1919
+ },
1920
+ }, # members
1921
+ "description" :
1922
+ """Collection of objects needed for MPLS VPN
1923
+ performance information.""",
1924
+ }, # group
1925
+ "mplsL3VpnPerfRouteGroup" : {
1926
+ "nodetype" : "group",
1927
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1928
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.5",
1929
+ "status" : "current",
1930
+ "members" : {
1931
+ "mplsL3VpnVrfPerfRoutesDropped" : {
1932
+ "nodetype" : "member",
1933
+ "module" : "MPLS-L3VPN-STD-MIB"
1934
+ },
1935
+ "mplsL3VpnVrfPerfDiscTime" : {
1936
+ "nodetype" : "member",
1937
+ "module" : "MPLS-L3VPN-STD-MIB"
1938
+ },
1939
+ }, # members
1940
+ "description" :
1941
+ """Collection of objects needed to track MPLS VPN
1942
+ routing table dropped routes.""",
1943
+ }, # group
1944
+ "mplsL3VpnSecGroup" : {
1945
+ "nodetype" : "group",
1946
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1947
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.7",
1948
+ "status" : "current",
1949
+ "members" : {
1950
+ "mplsL3VpnVrfSecIllegalLblVltns" : {
1951
+ "nodetype" : "member",
1952
+ "module" : "MPLS-L3VPN-STD-MIB"
1953
+ },
1954
+ "mplsL3VpnVrfSecDiscontinuityTime" : {
1955
+ "nodetype" : "member",
1956
+ "module" : "MPLS-L3VPN-STD-MIB"
1957
+ },
1958
+ }, # members
1959
+ "description" :
1960
+ """Collection of objects needed for MPLS VPN
1961
+ security-related information.""",
1962
+ }, # group
1963
+ "mplsL3VpnVrfRteGroup" : {
1964
+ "nodetype" : "group",
1965
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
1966
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.8",
1967
+ "status" : "current",
1968
+ "members" : {
1969
+ "mplsL3VpnVrfRteInetCidrIfIndex" : {
1970
+ "nodetype" : "member",
1971
+ "module" : "MPLS-L3VPN-STD-MIB"
1972
+ },
1973
+ "mplsL3VpnVrfRteInetCidrType" : {
1974
+ "nodetype" : "member",
1975
+ "module" : "MPLS-L3VPN-STD-MIB"
1976
+ },
1977
+ "mplsL3VpnVrfRteInetCidrProto" : {
1978
+ "nodetype" : "member",
1979
+ "module" : "MPLS-L3VPN-STD-MIB"
1980
+ },
1981
+ "mplsL3VpnVrfRteInetCidrAge" : {
1982
+ "nodetype" : "member",
1983
+ "module" : "MPLS-L3VPN-STD-MIB"
1984
+ },
1985
+ "mplsL3VpnVrfRteInetCidrNextHopAS" : {
1986
+ "nodetype" : "member",
1987
+ "module" : "MPLS-L3VPN-STD-MIB"
1988
+ },
1989
+ "mplsL3VpnVrfRteInetCidrMetric1" : {
1990
+ "nodetype" : "member",
1991
+ "module" : "MPLS-L3VPN-STD-MIB"
1992
+ },
1993
+ "mplsL3VpnVrfRteInetCidrMetric2" : {
1994
+ "nodetype" : "member",
1995
+ "module" : "MPLS-L3VPN-STD-MIB"
1996
+ },
1997
+ "mplsL3VpnVrfRteInetCidrMetric3" : {
1998
+ "nodetype" : "member",
1999
+ "module" : "MPLS-L3VPN-STD-MIB"
2000
+ },
2001
+ "mplsL3VpnVrfRteInetCidrMetric4" : {
2002
+ "nodetype" : "member",
2003
+ "module" : "MPLS-L3VPN-STD-MIB"
2004
+ },
2005
+ "mplsL3VpnVrfRteInetCidrMetric5" : {
2006
+ "nodetype" : "member",
2007
+ "module" : "MPLS-L3VPN-STD-MIB"
2008
+ },
2009
+ "mplsL3VpnVrfRteXCPointer" : {
2010
+ "nodetype" : "member",
2011
+ "module" : "MPLS-L3VPN-STD-MIB"
2012
+ },
2013
+ "mplsL3VpnVrfRteInetCidrStatus" : {
2014
+ "nodetype" : "member",
2015
+ "module" : "MPLS-L3VPN-STD-MIB"
2016
+ },
2017
+ }, # members
2018
+ "description" :
2019
+ """Objects required for VRF route table management.""",
2020
+ }, # group
2021
+ "mplsL3VpnVrfRTGroup" : {
2022
+ "nodetype" : "group",
2023
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
2024
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.9",
2025
+ "status" : "current",
2026
+ "members" : {
2027
+ "mplsL3VpnVrfRTDescr" : {
2028
+ "nodetype" : "member",
2029
+ "module" : "MPLS-L3VPN-STD-MIB"
2030
+ },
2031
+ "mplsL3VpnVrfRT" : {
2032
+ "nodetype" : "member",
2033
+ "module" : "MPLS-L3VPN-STD-MIB"
2034
+ },
2035
+ "mplsL3VpnVrfRTRowStatus" : {
2036
+ "nodetype" : "member",
2037
+ "module" : "MPLS-L3VPN-STD-MIB"
2038
+ },
2039
+ "mplsL3VpnVrfRTStorageType" : {
2040
+ "nodetype" : "member",
2041
+ "module" : "MPLS-L3VPN-STD-MIB"
2042
+ },
2043
+ }, # members
2044
+ "description" :
2045
+ """Objects required for VRF route target management.""",
2046
+ }, # group
2047
+ "mplsL3VpnNotificationGroup" : {
2048
+ "nodetype" : "group",
2049
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
2050
+ "oid" : "1.3.6.1.2.1.10.166.11.2.1.10",
2051
+ "status" : "current",
2052
+ "members" : {
2053
+ "mplsL3VpnVrfUp" : {
2054
+ "nodetype" : "member",
2055
+ "module" : "MPLS-L3VPN-STD-MIB"
2056
+ },
2057
+ "mplsL3VpnVrfDown" : {
2058
+ "nodetype" : "member",
2059
+ "module" : "MPLS-L3VPN-STD-MIB"
2060
+ },
2061
+ "mplsL3VpnVrfRouteMidThreshExceeded" : {
2062
+ "nodetype" : "member",
2063
+ "module" : "MPLS-L3VPN-STD-MIB"
2064
+ },
2065
+ "mplsL3VpnVrfNumVrfRouteMaxThreshExceeded" : {
2066
+ "nodetype" : "member",
2067
+ "module" : "MPLS-L3VPN-STD-MIB"
2068
+ },
2069
+ "mplsL3VpnNumVrfSecIllglLblThrshExcd" : {
2070
+ "nodetype" : "member",
2071
+ "module" : "MPLS-L3VPN-STD-MIB"
2072
+ },
2073
+ "mplsL3VpnNumVrfRouteMaxThreshCleared" : {
2074
+ "nodetype" : "member",
2075
+ "module" : "MPLS-L3VPN-STD-MIB"
2076
+ },
2077
+ }, # members
2078
+ "description" :
2079
+ """Objects required for MPLS VPN notifications.""",
2080
+ }, # group
2081
+ }, # groups
2082
+
2083
+ "compliances" : {
2084
+ "mplsL3VpnModuleFullCompliance" : {
2085
+ "nodetype" : "compliance",
2086
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
2087
+ "oid" : "1.3.6.1.2.1.10.166.11.2.2.1",
2088
+ "status" : "current",
2089
+ "description" :
2090
+ """Compliance statement for agents that provide full support
2091
+ for the MPLS-L3VPN-STD-MIB""",
2092
+ "requires" : {
2093
+ "mplsL3VpnScalarGroup" : {
2094
+ "nodetype" : "mandatory",
2095
+ "module" : "MPLS-L3VPN-STD-MIB"
2096
+ },
2097
+ "mplsL3VpnVrfGroup" : {
2098
+ "nodetype" : "mandatory",
2099
+ "module" : "MPLS-L3VPN-STD-MIB"
2100
+ },
2101
+ "mplsL3VpnIfGroup" : {
2102
+ "nodetype" : "mandatory",
2103
+ "module" : "MPLS-L3VPN-STD-MIB"
2104
+ },
2105
+ "mplsL3VpnPerfGroup" : {
2106
+ "nodetype" : "mandatory",
2107
+ "module" : "MPLS-L3VPN-STD-MIB"
2108
+ },
2109
+ "mplsL3VpnVrfRteGroup" : {
2110
+ "nodetype" : "mandatory",
2111
+ "module" : "MPLS-L3VPN-STD-MIB"
2112
+ },
2113
+ "mplsL3VpnVrfRTGroup" : {
2114
+ "nodetype" : "mandatory",
2115
+ "module" : "MPLS-L3VPN-STD-MIB"
2116
+ },
2117
+ "mplsL3VpnSecGroup" : {
2118
+ "nodetype" : "mandatory",
2119
+ "module" : "MPLS-L3VPN-STD-MIB"
2120
+ },
2121
+ "mplsL3VpnNotificationGroup" : {
2122
+ "nodetype" : "mandatory",
2123
+ "module" : "MPLS-L3VPN-STD-MIB"
2124
+ },
2125
+ "mplsL3VpnPerfRouteGroup" : {
2126
+ "nodetype" : "optional",
2127
+ "module" : "MPLS-L3VPN-STD-MIB",
2128
+ "description" :
2129
+ """This group is only mandatory for LSRs that
2130
+ support tracking the number of routes attempted
2131
+ to be added to VRFs.""",
2132
+ },
2133
+ }, # requires
2134
+ "refinements" : {
2135
+ "mplsL3VpnIfConfRowStatus" : {
2136
+ "module" : "MPLS-L3VPN-STD-MIB",
2137
+ "syntax" : {
2138
+ "type" : {
2139
+ "basetype" : "Enumeration",
2140
+ "parent module" : {
2141
+ "name" : "SNMPv2-TC",
2142
+ "type" : "RowStatus",
2143
+ },
2144
+ "active" : {
2145
+ "nodetype" : "namednumber",
2146
+ "number" : "1"
2147
+ },
2148
+ "notInService" : {
2149
+ "nodetype" : "namednumber",
2150
+ "number" : "2"
2151
+ },
2152
+ },
2153
+ }, # syntax
2154
+ "writesyntax" : {
2155
+ "type" : {
2156
+ "basetype" : "Enumeration",
2157
+ "parent module" : {
2158
+ "name" : "SNMPv2-TC",
2159
+ "type" : "RowStatus",
2160
+ },
2161
+ "active" : {
2162
+ "nodetype" : "namednumber",
2163
+ "number" : "1"
2164
+ },
2165
+ "notInService" : {
2166
+ "nodetype" : "namednumber",
2167
+ "number" : "2"
2168
+ },
2169
+ "createAndGo" : {
2170
+ "nodetype" : "namednumber",
2171
+ "number" : "4"
2172
+ },
2173
+ "destroy" : {
2174
+ "nodetype" : "namednumber",
2175
+ "number" : "6"
2176
+ },
2177
+ },
2178
+ }, # writesyntax
2179
+ "description" :
2180
+ """Support for createAndWait and notReady is
2181
+ not required.""",
2182
+ },
2183
+ "mplsL3VpnVrfConfRowStatus" : {
2184
+ "module" : "MPLS-L3VPN-STD-MIB",
2185
+ "syntax" : {
2186
+ "type" : {
2187
+ "basetype" : "Enumeration",
2188
+ "parent module" : {
2189
+ "name" : "SNMPv2-TC",
2190
+ "type" : "RowStatus",
2191
+ },
2192
+ "active" : {
2193
+ "nodetype" : "namednumber",
2194
+ "number" : "1"
2195
+ },
2196
+ "notInService" : {
2197
+ "nodetype" : "namednumber",
2198
+ "number" : "2"
2199
+ },
2200
+ },
2201
+ }, # syntax
2202
+ "writesyntax" : {
2203
+ "type" : {
2204
+ "basetype" : "Enumeration",
2205
+ "parent module" : {
2206
+ "name" : "SNMPv2-TC",
2207
+ "type" : "RowStatus",
2208
+ },
2209
+ "active" : {
2210
+ "nodetype" : "namednumber",
2211
+ "number" : "1"
2212
+ },
2213
+ "notInService" : {
2214
+ "nodetype" : "namednumber",
2215
+ "number" : "2"
2216
+ },
2217
+ "createAndGo" : {
2218
+ "nodetype" : "namednumber",
2219
+ "number" : "4"
2220
+ },
2221
+ "destroy" : {
2222
+ "nodetype" : "namednumber",
2223
+ "number" : "6"
2224
+ },
2225
+ },
2226
+ }, # writesyntax
2227
+ "description" :
2228
+ """Support for createAndWait and notReady is
2229
+ not required.""",
2230
+ },
2231
+ "mplsL3VpnVrfRTRowStatus" : {
2232
+ "module" : "MPLS-L3VPN-STD-MIB",
2233
+ "syntax" : {
2234
+ "type" : {
2235
+ "basetype" : "Enumeration",
2236
+ "parent module" : {
2237
+ "name" : "SNMPv2-TC",
2238
+ "type" : "RowStatus",
2239
+ },
2240
+ "active" : {
2241
+ "nodetype" : "namednumber",
2242
+ "number" : "1"
2243
+ },
2244
+ "notInService" : {
2245
+ "nodetype" : "namednumber",
2246
+ "number" : "2"
2247
+ },
2248
+ },
2249
+ }, # syntax
2250
+ "writesyntax" : {
2251
+ "type" : {
2252
+ "basetype" : "Enumeration",
2253
+ "parent module" : {
2254
+ "name" : "SNMPv2-TC",
2255
+ "type" : "RowStatus",
2256
+ },
2257
+ "active" : {
2258
+ "nodetype" : "namednumber",
2259
+ "number" : "1"
2260
+ },
2261
+ "notInService" : {
2262
+ "nodetype" : "namednumber",
2263
+ "number" : "2"
2264
+ },
2265
+ "createAndGo" : {
2266
+ "nodetype" : "namednumber",
2267
+ "number" : "4"
2268
+ },
2269
+ "destroy" : {
2270
+ "nodetype" : "namednumber",
2271
+ "number" : "6"
2272
+ },
2273
+ },
2274
+ }, # writesyntax
2275
+ "description" :
2276
+ """Support for createAndWait and notReady is
2277
+ not required.""",
2278
+ },
2279
+ }, # refinements
2280
+
2281
+ }, # compliance
2282
+ "mplsL3VpnModuleReadOnlyCompliance" : {
2283
+ "nodetype" : "compliance",
2284
+ "moduleName" : "MPLS-L3VPN-STD-MIB",
2285
+ "oid" : "1.3.6.1.2.1.10.166.11.2.2.2",
2286
+ "status" : "current",
2287
+ "description" :
2288
+ """Compliance requirement for implementations that only
2289
+ provide read-only support for MPLS-L3VPN-STD-MIB.
2290
+ Such devices can then be monitored but cannot be
2291
+ configured using this MIB module.""",
2292
+ "requires" : {
2293
+ "mplsL3VpnScalarGroup" : {
2294
+ "nodetype" : "mandatory",
2295
+ "module" : "MPLS-L3VPN-STD-MIB"
2296
+ },
2297
+ "mplsL3VpnVrfGroup" : {
2298
+ "nodetype" : "mandatory",
2299
+ "module" : "MPLS-L3VPN-STD-MIB"
2300
+ },
2301
+ "mplsL3VpnIfGroup" : {
2302
+ "nodetype" : "mandatory",
2303
+ "module" : "MPLS-L3VPN-STD-MIB"
2304
+ },
2305
+ "mplsL3VpnPerfGroup" : {
2306
+ "nodetype" : "mandatory",
2307
+ "module" : "MPLS-L3VPN-STD-MIB"
2308
+ },
2309
+ "mplsL3VpnVrfRteGroup" : {
2310
+ "nodetype" : "mandatory",
2311
+ "module" : "MPLS-L3VPN-STD-MIB"
2312
+ },
2313
+ "mplsL3VpnVrfRTGroup" : {
2314
+ "nodetype" : "mandatory",
2315
+ "module" : "MPLS-L3VPN-STD-MIB"
2316
+ },
2317
+ "mplsL3VpnSecGroup" : {
2318
+ "nodetype" : "mandatory",
2319
+ "module" : "MPLS-L3VPN-STD-MIB"
2320
+ },
2321
+ "mplsL3VpnNotificationGroup" : {
2322
+ "nodetype" : "mandatory",
2323
+ "module" : "MPLS-L3VPN-STD-MIB"
2324
+ },
2325
+ "mplsL3VpnPerfRouteGroup" : {
2326
+ "nodetype" : "optional",
2327
+ "module" : "MPLS-L3VPN-STD-MIB",
2328
+ "description" :
2329
+ """This group is only mandatory for LSRs that
2330
+ support tracking the number of routes attempted to
2331
+ be added to VRFs.""",
2332
+ },
2333
+ }, # requires
2334
+ "refinements" : {
2335
+ "mplsL3VpnIfConfRowStatus" : {
2336
+ "module" : "MPLS-L3VPN-STD-MIB",
2337
+ "syntax" : {
2338
+ "type" : {
2339
+ "basetype" : "Enumeration",
2340
+ "parent module" : {
2341
+ "name" : "SNMPv2-TC",
2342
+ "type" : "RowStatus",
2343
+ },
2344
+ "active" : {
2345
+ "nodetype" : "namednumber",
2346
+ "number" : "1"
2347
+ },
2348
+ },
2349
+ }, # syntax
2350
+ "access" : "readonly",
2351
+ "description" :
2352
+ """Write access is not required.""",
2353
+ },
2354
+ "mplsL3VpnVrfConfRowStatus" : {
2355
+ "module" : "MPLS-L3VPN-STD-MIB",
2356
+ "syntax" : {
2357
+ "type" : {
2358
+ "basetype" : "Enumeration",
2359
+ "parent module" : {
2360
+ "name" : "SNMPv2-TC",
2361
+ "type" : "RowStatus",
2362
+ },
2363
+ "active" : {
2364
+ "nodetype" : "namednumber",
2365
+ "number" : "1"
2366
+ },
2367
+ },
2368
+ }, # syntax
2369
+ "access" : "readonly",
2370
+ "description" :
2371
+ """Write access is not required.""",
2372
+ },
2373
+ "mplsL3VpnVrfRTRowStatus" : {
2374
+ "module" : "MPLS-L3VPN-STD-MIB",
2375
+ "syntax" : {
2376
+ "type" : {
2377
+ "basetype" : "Enumeration",
2378
+ "parent module" : {
2379
+ "name" : "SNMPv2-TC",
2380
+ "type" : "RowStatus",
2381
+ },
2382
+ "active" : {
2383
+ "nodetype" : "namednumber",
2384
+ "number" : "1"
2385
+ },
2386
+ },
2387
+ }, # syntax
2388
+ "access" : "readonly",
2389
+ "description" :
2390
+ """Write access is not required.""",
2391
+ },
2392
+ "mplsL3VpnIfVpnClassification" : {
2393
+ "module" : "MPLS-L3VPN-STD-MIB",
2394
+ "access" : "readonly",
2395
+ "description" :
2396
+ """Write access is not required.""",
2397
+ },
2398
+ "mplsL3VpnIfVpnRouteDistProtocol" : {
2399
+ "module" : "MPLS-L3VPN-STD-MIB",
2400
+ "access" : "readonly",
2401
+ "description" :
2402
+ """Write access is not required.""",
2403
+ },
2404
+ "mplsL3VpnIfConfStorageType" : {
2405
+ "module" : "MPLS-L3VPN-STD-MIB",
2406
+ "access" : "readonly",
2407
+ "description" :
2408
+ """Write access is not required.""",
2409
+ },
2410
+ "mplsL3VpnVrfVpnId" : {
2411
+ "module" : "MPLS-L3VPN-STD-MIB",
2412
+ "access" : "readonly",
2413
+ "description" :
2414
+ """Write access is not required.""",
2415
+ },
2416
+ "mplsL3VpnVrfDescription" : {
2417
+ "module" : "MPLS-L3VPN-STD-MIB",
2418
+ "access" : "readonly",
2419
+ "description" :
2420
+ """Write access is not required.""",
2421
+ },
2422
+ "mplsL3VpnVrfRD" : {
2423
+ "module" : "MPLS-L3VPN-STD-MIB",
2424
+ "access" : "readonly",
2425
+ "description" :
2426
+ """Write access is not required.""",
2427
+ },
2428
+ "mplsL3VpnVrfConfMidRteThresh" : {
2429
+ "module" : "MPLS-L3VPN-STD-MIB",
2430
+ "access" : "readonly",
2431
+ "description" :
2432
+ """Write access is not required.""",
2433
+ },
2434
+ "mplsL3VpnVrfConfHighRteThresh" : {
2435
+ "module" : "MPLS-L3VPN-STD-MIB",
2436
+ "access" : "readonly",
2437
+ "description" :
2438
+ """Write access is not required.""",
2439
+ },
2440
+ "mplsL3VpnVrfConfMaxRoutes" : {
2441
+ "module" : "MPLS-L3VPN-STD-MIB",
2442
+ "access" : "readonly",
2443
+ "description" :
2444
+ """Write access is not required.""",
2445
+ },
2446
+ "mplsL3VpnVrfConfStorageType" : {
2447
+ "module" : "MPLS-L3VPN-STD-MIB",
2448
+ "access" : "readonly",
2449
+ "description" :
2450
+ """Write access is not required.""",
2451
+ },
2452
+ "mplsL3VpnVrfRT" : {
2453
+ "module" : "MPLS-L3VPN-STD-MIB",
2454
+ "access" : "readonly",
2455
+ "description" :
2456
+ """Write access is not required.""",
2457
+ },
2458
+ "mplsL3VpnVrfRTDescr" : {
2459
+ "module" : "MPLS-L3VPN-STD-MIB",
2460
+ "access" : "readonly",
2461
+ "description" :
2462
+ """Write access is not required.""",
2463
+ },
2464
+ "mplsL3VpnVrfRTStorageType" : {
2465
+ "module" : "MPLS-L3VPN-STD-MIB",
2466
+ "access" : "readonly",
2467
+ "description" :
2468
+ """Write access is not required.""",
2469
+ },
2470
+ "mplsL3VpnVrfRteInetCidrIfIndex" : {
2471
+ "module" : "MPLS-L3VPN-STD-MIB",
2472
+ "access" : "readonly",
2473
+ "description" :
2474
+ """Write access is not required.""",
2475
+ },
2476
+ "mplsL3VpnVrfRteInetCidrType" : {
2477
+ "module" : "MPLS-L3VPN-STD-MIB",
2478
+ "access" : "readonly",
2479
+ "description" :
2480
+ """Write access is not required.""",
2481
+ },
2482
+ "mplsL3VpnVrfRteInetCidrNextHopAS" : {
2483
+ "module" : "MPLS-L3VPN-STD-MIB",
2484
+ "access" : "readonly",
2485
+ "description" :
2486
+ """Write access is not required.""",
2487
+ },
2488
+ "mplsL3VpnVrfRteInetCidrMetric1" : {
2489
+ "module" : "MPLS-L3VPN-STD-MIB",
2490
+ "access" : "readonly",
2491
+ "description" :
2492
+ """Write access is not required.""",
2493
+ },
2494
+ "mplsL3VpnVrfRteInetCidrMetric2" : {
2495
+ "module" : "MPLS-L3VPN-STD-MIB",
2496
+ "access" : "readonly",
2497
+ "description" :
2498
+ """Write access is not required.""",
2499
+ },
2500
+ "mplsL3VpnVrfRteInetCidrMetric3" : {
2501
+ "module" : "MPLS-L3VPN-STD-MIB",
2502
+ "access" : "readonly",
2503
+ "description" :
2504
+ """Write access is not required.""",
2505
+ },
2506
+ "mplsL3VpnVrfRteInetCidrMetric4" : {
2507
+ "module" : "MPLS-L3VPN-STD-MIB",
2508
+ "access" : "readonly",
2509
+ "description" :
2510
+ """Write access is not required.""",
2511
+ },
2512
+ "mplsL3VpnVrfRteInetCidrMetric5" : {
2513
+ "module" : "MPLS-L3VPN-STD-MIB",
2514
+ "access" : "readonly",
2515
+ "description" :
2516
+ """Write access is not required.""",
2517
+ },
2518
+ "mplsL3VpnVrfRteXCPointer" : {
2519
+ "module" : "MPLS-L3VPN-STD-MIB",
2520
+ "access" : "readonly",
2521
+ "description" :
2522
+ """Write access is not required.""",
2523
+ },
2524
+ "mplsL3VpnVrfRteInetCidrStatus" : {
2525
+ "module" : "MPLS-L3VPN-STD-MIB",
2526
+ "syntax" : {
2527
+ "type" : {
2528
+ "basetype" : "Enumeration",
2529
+ "parent module" : {
2530
+ "name" : "SNMPv2-TC",
2531
+ "type" : "RowStatus",
2532
+ },
2533
+ "active" : {
2534
+ "nodetype" : "namednumber",
2535
+ "number" : "1"
2536
+ },
2537
+ },
2538
+ }, # syntax
2539
+ "access" : "readonly",
2540
+ "description" :
2541
+ """Write access is not required.""",
2542
+ },
2543
+ }, # refinements
2544
+
2545
+ }, # compliance
2546
+ }, # compliances
2547
+
2548
+ }