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,3103 @@
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-LSR-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MPLS-LSR-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MPLS-LSR-STD-MIB",
11
+
12
+ "MPLS-LSR-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Multiprotocol Label Switching (MPLS) Working Group""",
17
+ "contact" :
18
+ """ Cheenu Srinivasan
19
+ Bloomberg L.P.
20
+ Email: cheenu@bloomberg.net
21
+
22
+ Arun Viswanathan
23
+ Force10 Networks, Inc.
24
+ Email: arunv@force10networks.com
25
+
26
+ Thomas D. Nadeau
27
+ Cisco Systems, Inc.
28
+ Email: tnadeau@cisco.com
29
+
30
+ Comments about this document should be emailed
31
+ directly to the MPLS working group mailing list at
32
+ mpls@uu.net.""",
33
+ "description" :
34
+ """This MIB module contains managed object definitions for
35
+ the Multiprotocol Label Switching (MPLS) Router as
36
+
37
+
38
+
39
+ defined in: Rosen, E., Viswanathan, A., and R.
40
+ Callon, Multiprotocol Label Switching Architecture,
41
+ RFC 3031, January 2001.
42
+
43
+ Copyright (C) The Internet Society (2004). The
44
+ initial version of this MIB module was published
45
+ in RFC 3812. For full legal notices see the RFC
46
+ itself or see:
47
+ http://www.ietf.org/copyrights/ianamib.html""",
48
+ "revisions" : (
49
+ {
50
+ "date" : "2004-06-03 00:00",
51
+ "description" :
52
+ """Initial revision, published as part of RFC 3813.""",
53
+ },
54
+ ),
55
+ "identity node" : "mplsLsrStdMIB",
56
+ },
57
+
58
+ "imports" : (
59
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
60
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
61
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
63
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
64
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
65
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
66
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
67
+ {"module" : "SNMPv2-SMI", "name" : "zeroDotZero"},
68
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
69
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
70
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
71
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
72
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
73
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
74
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
75
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
76
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
77
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
78
+ {"module" : "IF-MIB", "name" : "ifGeneralInformationGroup"},
79
+ {"module" : "IF-MIB", "name" : "ifCounterDiscontinuityGroup"},
80
+ {"module" : "MPLS-TC-STD-MIB", "name" : "mplsStdMIB"},
81
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLSPID"},
82
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLabel"},
83
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsBitRate"},
84
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsOwner"},
85
+ {"module" : "IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
86
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
87
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
88
+ ),
89
+
90
+ "typedefs" : {
91
+ "MplsIndexType" : {
92
+ "basetype" : "OctetString",
93
+ "status" : "current",
94
+ "ranges" : [
95
+ {
96
+ "min" : "1",
97
+ "max" : "24"
98
+ },
99
+ ],
100
+ "range" : {
101
+ "min" : "1",
102
+ "max" : "24"
103
+ },
104
+ "description" :
105
+ """This is an octet string that can be used as a table
106
+ index in cases where a large addressable space is
107
+ required such as on an LSR where many applications
108
+ may be provisioning labels.
109
+
110
+ Note that the string containing the single octet with
111
+ the value 0x00 is a reserved value used to represent
112
+ special cases. When this TEXTUAL-CONVENTION is used
113
+ as the SYNTAX of an object, the DESCRIPTION clause
114
+ MUST specify if this special value is valid and if so
115
+ what the special meaning is.
116
+
117
+ In systems that provide write access to the MPLS-LSR-STD
118
+ MIB, mplsIndexType SHOULD be used as a simple multi-digit
119
+ integer encoded as an octet string.
120
+ No further overloading of the meaning of an index SHOULD
121
+ be made.
122
+
123
+ In systems that do not offer write access to the MPLS-LSR-STD
124
+ MIB, the mplsIndexType may contain implicit formatting that is
125
+ specific to the implementation to convey additional
126
+ information such as interface index, physical card or
127
+ device, or application id. The interpretation of this
128
+ additional formatting is implementation dependent and
129
+ not covered in this document. Such formatting MUST
130
+
131
+
132
+
133
+ NOT impact the basic functionality of read-only access
134
+ to the MPLS-LSR-STD MIB by management applications that are
135
+ not aware of the formatting rules.""",
136
+ },
137
+ "MplsIndexNextType" : {
138
+ "basetype" : "OctetString",
139
+ "status" : "current",
140
+ "ranges" : [
141
+ {
142
+ "min" : "1",
143
+ "max" : "24"
144
+ },
145
+ ],
146
+ "range" : {
147
+ "min" : "1",
148
+ "max" : "24"
149
+ },
150
+ "description" :
151
+ """When a MIB module is used for configuration, an object with
152
+ this SYNTAX always contains a legal value (a non-zero-length
153
+ string) for an index that is not currently used in the relevant
154
+ table. The Command Generator (Network Management Application)
155
+ reads this variable and uses the (non-zero-length string)
156
+ value read when creating a new row with an SNMP SET.
157
+
158
+ When the SET is performed, the Command Responder (agent) must
159
+ determine whether the value is indeed still unused; Two Network
160
+ Management Applications may attempt to create a row
161
+ (configuration entry) simultaneously and use the same value. If
162
+ it is currently unused, the SET succeeds and the Command
163
+ Responder (agent) changes the value of this object, according
164
+ to an implementation-specific algorithm. If the value is in
165
+ use, however, the SET fails. The Network Management
166
+ Application must then re-read this variable to obtain a new
167
+ usable value.
168
+
169
+ Note that the string containing the single octet with
170
+ the value 0x00 is a reserved value used to represent
171
+ the special case where no additional indexes can be
172
+ provisioned, or in systems that do not offer
173
+ write access, objects defined using this TEXTUAL-CONVENTION
174
+ MUST return the string containing the single
175
+ octet with the value 0x00.""",
176
+ },
177
+ }, # typedefs
178
+
179
+ "nodes" : {
180
+ "mplsLsrStdMIB" : {
181
+ "nodetype" : "node",
182
+ "moduleName" : "MPLS-LSR-STD-MIB",
183
+ "oid" : "1.3.6.1.2.1.10.166.2",
184
+ "status" : "current",
185
+ }, # node
186
+ "mplsLsrNotifications" : {
187
+ "nodetype" : "node",
188
+ "moduleName" : "MPLS-LSR-STD-MIB",
189
+ "oid" : "1.3.6.1.2.1.10.166.2.0",
190
+ }, # node
191
+ "mplsLsrObjects" : {
192
+ "nodetype" : "node",
193
+ "moduleName" : "MPLS-LSR-STD-MIB",
194
+ "oid" : "1.3.6.1.2.1.10.166.2.1",
195
+ }, # node
196
+ "mplsInterfaceTable" : {
197
+ "nodetype" : "table",
198
+ "moduleName" : "MPLS-LSR-STD-MIB",
199
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1",
200
+ "status" : "current",
201
+ "description" :
202
+ """This table specifies per-interface MPLS capability
203
+ and associated information.""",
204
+ }, # table
205
+ "mplsInterfaceEntry" : {
206
+ "nodetype" : "row",
207
+ "moduleName" : "MPLS-LSR-STD-MIB",
208
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1",
209
+ "status" : "current",
210
+ "linkage" : [
211
+ "mplsInterfaceIndex",
212
+ ],
213
+ "description" :
214
+ """A conceptual row in this table is created
215
+ automatically by an LSR for every interface capable
216
+ of supporting MPLS and which is configured to do so.
217
+ A conceptual row in this table will exist if and only if
218
+ a corresponding entry in ifTable exists with ifType =
219
+ mpls(166). If this associated entry in ifTable is
220
+ operationally disabled (thus removing MPLS
221
+ capabilities on that interface), the corresponding
222
+ entry in this table MUST be deleted shortly thereafter.
223
+ An conceptual row with index 0 is created if the LSR
224
+ supports per-platform labels. This conceptual row
225
+ represents the per-platform label space and contains
226
+ parameters that apply to all interfaces that participate
227
+ in the per-platform label space. Other conceptual rows
228
+ in this table represent MPLS interfaces that may
229
+ participate in either the per-platform or per-
230
+ interface label spaces, or both. Implementations
231
+ that either only support per-platform labels,
232
+ or have only them configured, may choose to return
233
+ just the mplsInterfaceEntry of 0 and not return
234
+ the other rows. This will greatly reduce the number
235
+ of objects returned. Further information about label
236
+ space participation of an interface is provided in
237
+ the DESCRIPTION clause of
238
+ mplsInterfaceLabelParticipationType.""",
239
+ }, # row
240
+ "mplsInterfaceIndex" : {
241
+ "nodetype" : "column",
242
+ "moduleName" : "MPLS-LSR-STD-MIB",
243
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1.1",
244
+ "status" : "current",
245
+ "syntax" : {
246
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
247
+ },
248
+ "access" : "noaccess",
249
+ "description" :
250
+ """This is a unique index for an entry in the
251
+ MplsInterfaceTable. A non-zero index for an
252
+ entry indicates the ifIndex for the corresponding
253
+ interface entry of the MPLS-layer in the ifTable.
254
+ The entry with index 0 represents the per-platform
255
+ label space and contains parameters that apply to all
256
+ interfaces that participate in the per-platform label
257
+ space. Other entries defined in this table represent
258
+ additional MPLS interfaces that may participate in either
259
+ the per-platform or per-interface label spaces, or both.""",
260
+ "reference" :
261
+ """RFC 2863 - The Interfaces Group MIB, McCloghrie, K.,
262
+ and F. Kastenholtz, June 2000""",
263
+ }, # column
264
+ "mplsInterfaceLabelMinIn" : {
265
+ "nodetype" : "column",
266
+ "moduleName" : "MPLS-LSR-STD-MIB",
267
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1.2",
268
+ "status" : "current",
269
+ "syntax" : {
270
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
271
+ },
272
+ "access" : "readonly",
273
+ "description" :
274
+ """This is the minimum value of an MPLS label that this
275
+ LSR is willing to receive on this interface.""",
276
+ }, # column
277
+ "mplsInterfaceLabelMaxIn" : {
278
+ "nodetype" : "column",
279
+ "moduleName" : "MPLS-LSR-STD-MIB",
280
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1.3",
281
+ "status" : "current",
282
+ "syntax" : {
283
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
284
+ },
285
+ "access" : "readonly",
286
+ "description" :
287
+ """This is the maximum value of an MPLS label that this
288
+ LSR is willing to receive on this interface.""",
289
+ }, # column
290
+ "mplsInterfaceLabelMinOut" : {
291
+ "nodetype" : "column",
292
+ "moduleName" : "MPLS-LSR-STD-MIB",
293
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1.4",
294
+ "status" : "current",
295
+ "syntax" : {
296
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
297
+ },
298
+ "access" : "readonly",
299
+ "description" :
300
+ """This is the minimum value of an MPLS label that this
301
+
302
+
303
+
304
+ LSR is willing to send on this interface.""",
305
+ }, # column
306
+ "mplsInterfaceLabelMaxOut" : {
307
+ "nodetype" : "column",
308
+ "moduleName" : "MPLS-LSR-STD-MIB",
309
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1.5",
310
+ "status" : "current",
311
+ "syntax" : {
312
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
313
+ },
314
+ "access" : "readonly",
315
+ "description" :
316
+ """This is the maximum value of an MPLS label that this
317
+ LSR is willing to send on this interface.""",
318
+ }, # column
319
+ "mplsInterfaceTotalBandwidth" : {
320
+ "nodetype" : "column",
321
+ "moduleName" : "MPLS-LSR-STD-MIB",
322
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1.6",
323
+ "status" : "current",
324
+ "syntax" : {
325
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBitRate"},
326
+ },
327
+ "access" : "readonly",
328
+ "units" : "kilobits per second",
329
+ "description" :
330
+ """This value indicates the total amount of usable
331
+ bandwidth on this interface and is specified in
332
+ kilobits per second (Kbps). This variable is not
333
+ applicable when applied to the interface with index
334
+ 0. When this value cannot be measured, this value
335
+ should contain the nominal bandwidth.""",
336
+ }, # column
337
+ "mplsInterfaceAvailableBandwidth" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "MPLS-LSR-STD-MIB",
340
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1.7",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsBitRate"},
344
+ },
345
+ "access" : "readonly",
346
+ "description" :
347
+ """This value indicates the total amount of available
348
+ bandwidth available on this interface and is
349
+ specified in kilobits per second (Kbps). This value
350
+ is calculated as the difference between the amount
351
+ of bandwidth currently in use and that specified in
352
+ mplsInterfaceTotalBandwidth. This variable is not
353
+ applicable when applied to the interface with index
354
+ 0. When this value cannot be measured, this value
355
+ should contain the nominal bandwidth.""",
356
+ }, # column
357
+ "mplsInterfaceLabelParticipationType" : {
358
+ "nodetype" : "column",
359
+ "moduleName" : "MPLS-LSR-STD-MIB",
360
+ "oid" : "1.3.6.1.2.1.10.166.2.1.1.1.8",
361
+ "status" : "current",
362
+ "syntax" : {
363
+ "type" : {
364
+ "basetype" : "Bits",
365
+ "perPlatform" : {
366
+ "nodetype" : "namednumber",
367
+ "number" : "0"
368
+ },
369
+ "perInterface" : {
370
+ "nodetype" : "namednumber",
371
+ "number" : "1"
372
+ },
373
+ },
374
+ },
375
+ "access" : "readonly",
376
+ "description" :
377
+ """If the value of the mplsInterfaceIndex for this
378
+ entry is zero, then this entry corresponds to the
379
+ per-platform label space for all interfaces configured
380
+ to use that label space. In this case the perPlatform(0)
381
+ bit MUST be set; the perInterface(1) bit is meaningless
382
+ and MUST be ignored.
383
+
384
+ The remainder of this description applies to entries
385
+ with a non-zero value of mplsInterfaceIndex.
386
+
387
+ If the perInterface(1) bit is set then the value of
388
+ mplsInterfaceLabelMinIn, mplsInterfaceLabelMaxIn,
389
+ mplsInterfaceLabelMinOut, and
390
+ mplsInterfaceLabelMaxOut for this entry reflect the
391
+ label ranges for this interface.
392
+
393
+ If only the perPlatform(0) bit is set, then the value of
394
+ mplsInterfaceLabelMinIn, mplsInterfaceLabelMaxIn,
395
+ mplsInterfaceLabelMinOut, and
396
+ mplsInterfaceLabelMaxOut for this entry MUST be
397
+ identical to the instance of these objects with
398
+ index 0. These objects may only vary from the entry
399
+ with index 0 if both the perPlatform(0) and perInterface(1)
400
+ bits are set.
401
+
402
+ In all cases, at a minimum one of the perPlatform(0) or
403
+ perInterface(1) bits MUST be set to indicate that
404
+ at least one label space is in use by this interface. In
405
+ all cases, agents MUST ensure that label ranges are
406
+ specified consistently and MUST return an
407
+ inconsistentValue error when they do not.""",
408
+ "reference" :
409
+ """Rosen, E., Viswanathan, A., and R. Callon,
410
+ Multiprotocol Label Switching Architecture, RFC
411
+ 3031, January 2001.""",
412
+ }, # column
413
+ "mplsInterfacePerfTable" : {
414
+ "nodetype" : "table",
415
+ "moduleName" : "MPLS-LSR-STD-MIB",
416
+ "oid" : "1.3.6.1.2.1.10.166.2.1.2",
417
+ "status" : "current",
418
+ "description" :
419
+ """This table provides MPLS performance information on
420
+ a per-interface basis.""",
421
+ }, # table
422
+ "mplsInterfacePerfEntry" : {
423
+ "nodetype" : "row",
424
+ "moduleName" : "MPLS-LSR-STD-MIB",
425
+ "oid" : "1.3.6.1.2.1.10.166.2.1.2.1",
426
+ "status" : "current",
427
+ "linkage" : [
428
+ { "MPLS-LSR-STD-MIB" : {
429
+ "indexkind" : "augments",
430
+ "relatedNode" : "mplsInterfaceEntry",
431
+ }},
432
+ ],
433
+ "description" :
434
+ """An entry in this table is created by the LSR for
435
+ every interface capable of supporting MPLS. Its is
436
+ an extension to the mplsInterfaceEntry table.
437
+ Note that the discontinuity behavior of entries in
438
+ this table MUST be based on the corresponding
439
+ ifEntry's ifDiscontinuityTime.""",
440
+ }, # row
441
+ "mplsInterfacePerfInLabelsInUse" : {
442
+ "nodetype" : "column",
443
+ "moduleName" : "MPLS-LSR-STD-MIB",
444
+ "oid" : "1.3.6.1.2.1.10.166.2.1.2.1.1",
445
+ "status" : "current",
446
+ "syntax" : {
447
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
448
+ },
449
+ "access" : "readonly",
450
+ "description" :
451
+ """This object counts the number of labels that are in
452
+ use at this point in time on this interface in the
453
+ incoming direction. If the interface participates in
454
+ only the per-platform label space, then the value of
455
+ the instance of this object MUST be identical to
456
+ the value of the instance with index 0. If the
457
+ interface participates in the per-interface label
458
+ space, then the instance of this object MUST
459
+ represent the number of per-interface labels that
460
+ are in use on this interface.""",
461
+ }, # column
462
+ "mplsInterfacePerfInLabelLookupFailures" : {
463
+ "nodetype" : "column",
464
+ "moduleName" : "MPLS-LSR-STD-MIB",
465
+ "oid" : "1.3.6.1.2.1.10.166.2.1.2.1.2",
466
+ "status" : "current",
467
+ "syntax" : {
468
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
469
+ },
470
+ "access" : "readonly",
471
+ "description" :
472
+ """This object counts the number of labeled packets
473
+ that have been received on this interface and which
474
+ were discarded because there was no matching cross-
475
+ connect entry. This object MUST count on a per-
476
+ interface basis regardless of which label space the
477
+ interface participates in.""",
478
+ }, # column
479
+ "mplsInterfacePerfOutLabelsInUse" : {
480
+ "nodetype" : "column",
481
+ "moduleName" : "MPLS-LSR-STD-MIB",
482
+ "oid" : "1.3.6.1.2.1.10.166.2.1.2.1.3",
483
+ "status" : "current",
484
+ "syntax" : {
485
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
486
+ },
487
+ "access" : "readonly",
488
+ "description" :
489
+ """This object counts the number of top-most labels in
490
+ the outgoing label stacks that are in use at this
491
+ point in time on this interface. This object MUST
492
+ count on a per-interface basis regardless of which
493
+ label space the interface participates in.""",
494
+ }, # column
495
+ "mplsInterfacePerfOutFragmentedPkts" : {
496
+ "nodetype" : "column",
497
+ "moduleName" : "MPLS-LSR-STD-MIB",
498
+ "oid" : "1.3.6.1.2.1.10.166.2.1.2.1.4",
499
+ "status" : "current",
500
+ "syntax" : {
501
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
502
+ },
503
+ "access" : "readonly",
504
+ "description" :
505
+ """This object counts the number of outgoing MPLS
506
+ packets that required fragmentation before
507
+ transmission on this interface. This object MUST
508
+ count on a per-interface basis regardless of which
509
+ label space the interface participates in.""",
510
+ }, # column
511
+ "mplsInSegmentIndexNext" : {
512
+ "nodetype" : "scalar",
513
+ "moduleName" : "MPLS-LSR-STD-MIB",
514
+ "oid" : "1.3.6.1.2.1.10.166.2.1.3",
515
+ "status" : "current",
516
+ "syntax" : {
517
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexNextType"},
518
+ },
519
+ "access" : "readonly",
520
+ "description" :
521
+ """This object contains the next available value to
522
+ be used for mplsInSegmentIndex when creating entries
523
+ in the mplsInSegmentTable. The special value of a
524
+ string containing the single octet 0x00 indicates
525
+ that no new entries can be created in this table.
526
+ Agents not allowing managers to create entries
527
+
528
+
529
+
530
+ in this table MUST set this object to this special
531
+ value.""",
532
+ }, # scalar
533
+ "mplsInSegmentTable" : {
534
+ "nodetype" : "table",
535
+ "moduleName" : "MPLS-LSR-STD-MIB",
536
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4",
537
+ "status" : "current",
538
+ "description" :
539
+ """This table contains a description of the incoming MPLS
540
+ segments (labels) to an LSR and their associated parameters.
541
+ The index for this table is mplsInSegmentIndex.
542
+ The index structure of this table is specifically designed
543
+ to handle many different MPLS implementations that manage
544
+ their labels both in a distributed and centralized manner.
545
+ The table is also designed to handle existing MPLS labels
546
+ as defined in RFC3031 as well as longer ones that may
547
+ be necessary in the future.
548
+
549
+ In cases where the label cannot fit into the
550
+ mplsInSegmentLabel object, the mplsInSegmentLabelPtr
551
+ will indicate this by being set to the first accessible
552
+ column in the appropriate extension table's row.
553
+ In this case an additional table MUST
554
+ be provided and MUST be indexed by at least the indexes
555
+ used by this table. In all other cases when the label is
556
+ represented within the mplsInSegmentLabel object, the
557
+ mplsInSegmentLabelPtr MUST be set to 0.0. Due to the
558
+ fact that MPLS labels may not exceed 24 bits, the
559
+ mplsInSegmentLabelPtr object is only a provision for
560
+ future-proofing the MIB module. Thus, the definition
561
+ of any extension tables is beyond the scope of this
562
+ MIB module.""",
563
+ }, # table
564
+ "mplsInSegmentEntry" : {
565
+ "nodetype" : "row",
566
+ "moduleName" : "MPLS-LSR-STD-MIB",
567
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1",
568
+ "create" : "true",
569
+ "status" : "current",
570
+ "linkage" : [
571
+ "mplsInSegmentIndex",
572
+ ],
573
+ "description" :
574
+ """An entry in this table represents one incoming
575
+ segment as is represented in an LSR's LFIB.
576
+ An entry can be created by a network
577
+ administrator or an SNMP agent, or an MPLS signaling
578
+ protocol. The creator of the entry is denoted by
579
+ mplsInSegmentOwner.
580
+
581
+
582
+
583
+
584
+ The value of mplsInSegmentRowStatus cannot be active(1)
585
+ unless the ifTable entry corresponding to
586
+ mplsInSegmentInterface exists. An entry in this table
587
+ must match any incoming packets, and indicates an
588
+ instance of mplsXCEntry based on which forwarding
589
+ and/or switching actions are taken.""",
590
+ }, # row
591
+ "mplsInSegmentIndex" : {
592
+ "nodetype" : "column",
593
+ "moduleName" : "MPLS-LSR-STD-MIB",
594
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.1",
595
+ "status" : "current",
596
+ "syntax" : {
597
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
598
+ },
599
+ "access" : "noaccess",
600
+ "description" :
601
+ """The index for this in-segment. The
602
+ string containing the single octet 0x00
603
+ MUST not be used as an index.""",
604
+ }, # column
605
+ "mplsInSegmentInterface" : {
606
+ "nodetype" : "column",
607
+ "moduleName" : "MPLS-LSR-STD-MIB",
608
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.2",
609
+ "status" : "current",
610
+ "syntax" : {
611
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
612
+ },
613
+ "access" : "readwrite",
614
+ "description" :
615
+ """This object represents the
616
+ interface index for the incoming MPLS interface. A
617
+ value of zero represents all interfaces participating in
618
+ the per-platform label space. This may only be used
619
+ in cases where the incoming interface and label
620
+ are associated with the same mplsXCEntry. Specifically,
621
+ given a label and any incoming interface pair from the
622
+ per-platform label space, the outgoing label/interface
623
+ mapping remains the same. If this is not the case,
624
+ then individual entries MUST exist that
625
+
626
+
627
+
628
+ can then be mapped to unique mplsXCEntries.""",
629
+ }, # column
630
+ "mplsInSegmentLabel" : {
631
+ "nodetype" : "column",
632
+ "moduleName" : "MPLS-LSR-STD-MIB",
633
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.3",
634
+ "status" : "current",
635
+ "syntax" : {
636
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
637
+ },
638
+ "access" : "readwrite",
639
+ "description" :
640
+ """If the corresponding instance of mplsInSegmentLabelPtr is
641
+ zeroDotZero then this object MUST contain the incoming label
642
+ associated with this in-segment. If not this object SHOULD
643
+ be zero and MUST be ignored.""",
644
+ }, # column
645
+ "mplsInSegmentLabelPtr" : {
646
+ "nodetype" : "column",
647
+ "moduleName" : "MPLS-LSR-STD-MIB",
648
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.4",
649
+ "status" : "current",
650
+ "syntax" : {
651
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
652
+ },
653
+ "access" : "readwrite",
654
+ "default" : "0.0",
655
+ "description" :
656
+ """If the label for this segment cannot be represented
657
+ fully within the mplsInSegmentLabel object,
658
+ this object MUST point to the first accessible
659
+ column of a conceptual row in an external table containing
660
+ the label. In this case, the mplsInSegmentTopLabel
661
+ object SHOULD be set to 0 and ignored. This object MUST
662
+ be set to zeroDotZero otherwise.""",
663
+ }, # column
664
+ "mplsInSegmentNPop" : {
665
+ "nodetype" : "column",
666
+ "moduleName" : "MPLS-LSR-STD-MIB",
667
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.5",
668
+ "status" : "current",
669
+ "syntax" : {
670
+ "type" : {
671
+ "basetype" : "Integer32",
672
+ "ranges" : [
673
+ {
674
+ "min" : "1",
675
+ "max" : "2147483647"
676
+ },
677
+ ],
678
+ "range" : {
679
+ "min" : "1",
680
+ "max" : "2147483647"
681
+ },
682
+ },
683
+ },
684
+ "access" : "readwrite",
685
+ "default" : "1",
686
+ "description" :
687
+ """The number of labels to pop from the incoming
688
+ packet. Normally only the top label is popped from
689
+ the packet and used for all switching decisions for
690
+ that packet. This is indicated by setting this
691
+ object to the default value of 1. If an LSR supports
692
+ popping of more than one label, this object MUST
693
+ be set to that number. This object cannot be modified
694
+ if mplsInSegmentRowStatus is active(1).""",
695
+ }, # column
696
+ "mplsInSegmentAddrFamily" : {
697
+ "nodetype" : "column",
698
+ "moduleName" : "MPLS-LSR-STD-MIB",
699
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.6",
700
+ "status" : "current",
701
+ "syntax" : {
702
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
703
+ },
704
+ "access" : "readwrite",
705
+ "default" : "other",
706
+ "description" :
707
+ """The IANA address family [IANAFamily] of packets
708
+ received on this segment, which is used at an egress
709
+ LSR to deliver them to the appropriate layer 3 entity.
710
+ A value of other(0) indicates that the family type is
711
+ either unknown or undefined; this SHOULD NOT be used
712
+ at an egress LSR. This object cannot be
713
+ modified if mplsInSegmentRowStatus is active(1).""",
714
+ "reference" :
715
+ """Internet Assigned Numbers Authority (IANA), ADDRESS
716
+ FAMILY NUMBERS, (http://www.iana.org/assignments/
717
+ address-family-numbers), for MIB see:
718
+ http://www.iana.org/assignments/
719
+ ianaaddressfamilynumbers-mib""",
720
+ }, # column
721
+ "mplsInSegmentXCIndex" : {
722
+ "nodetype" : "column",
723
+ "moduleName" : "MPLS-LSR-STD-MIB",
724
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.7",
725
+ "status" : "current",
726
+ "syntax" : {
727
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
728
+ },
729
+ "access" : "readonly",
730
+ "description" :
731
+ """Index into mplsXCTable which identifies which cross-
732
+ connect entry this segment is part of. The string
733
+ containing the single octet 0x00 indicates that this
734
+ entry is not referred to by any cross-connect entry.
735
+ When a cross-connect entry is created which this
736
+ in-segment is a part of, this object is automatically
737
+ updated to reflect the value of mplsXCIndex of that
738
+ cross-connect entry.""",
739
+ }, # column
740
+ "mplsInSegmentOwner" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "MPLS-LSR-STD-MIB",
743
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.8",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsOwner"},
747
+ },
748
+ "access" : "readonly",
749
+ "description" :
750
+ """Denotes the entity that created and is responsible
751
+ for managing this segment.""",
752
+ }, # column
753
+ "mplsInSegmentTrafficParamPtr" : {
754
+ "nodetype" : "column",
755
+ "moduleName" : "MPLS-LSR-STD-MIB",
756
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.9",
757
+ "status" : "current",
758
+ "syntax" : {
759
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
760
+ },
761
+ "access" : "readwrite",
762
+ "default" : "0.0",
763
+ "description" :
764
+ """This variable represents a pointer to the traffic
765
+ parameter specification for this in-segment. This
766
+ value may point at an entry in the
767
+ mplsTunnelResourceTable in the MPLS-TE-STD-MIB (RFC3812)
768
+ to indicate which traffic parameter settings for this
769
+ segment if it represents an LSP used for a TE tunnel.
770
+
771
+ This value may optionally point at an
772
+ externally defined traffic parameter specification
773
+ table. A value of zeroDotZero indicates best-effort
774
+ treatment. By having the same value of this object,
775
+ two or more segments can indicate resource sharing
776
+ of such things as LSP queue space, etc.
777
+
778
+ This object cannot be modified if mplsInSegmentRowStatus
779
+ is active(1). For entries in this table that
780
+ are preserved after a re-boot, the agent MUST ensure
781
+ that their integrity be preserved, or this object should
782
+ be set to 0.0 if it cannot.""",
783
+ }, # column
784
+ "mplsInSegmentRowStatus" : {
785
+ "nodetype" : "column",
786
+ "moduleName" : "MPLS-LSR-STD-MIB",
787
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.10",
788
+ "status" : "current",
789
+ "syntax" : {
790
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
791
+ },
792
+ "access" : "readwrite",
793
+ "description" :
794
+ """This variable is used to create, modify, and/or
795
+ delete a row in this table. When a row in this
796
+ table has a row in the active(1) state, no
797
+ objects in this row can be modified except the
798
+ mplsInSegmentRowStatus and mplsInSegmentStorageType.""",
799
+ }, # column
800
+ "mplsInSegmentStorageType" : {
801
+ "nodetype" : "column",
802
+ "moduleName" : "MPLS-LSR-STD-MIB",
803
+ "oid" : "1.3.6.1.2.1.10.166.2.1.4.1.11",
804
+ "status" : "current",
805
+ "syntax" : {
806
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
807
+ },
808
+ "access" : "readwrite",
809
+ "default" : "volatile",
810
+ "description" :
811
+ """This variable indicates the storage type for this
812
+ object. The agent MUST ensure that this object's
813
+ value remains consistent with the associated
814
+ mplsXCEntry. Conceptual rows having the value
815
+ 'permanent' need not allow write-access to any
816
+ columnar objects in the row.""",
817
+ "reference" :
818
+ """See RFC2579.""",
819
+ }, # column
820
+ "mplsInSegmentPerfTable" : {
821
+ "nodetype" : "table",
822
+ "moduleName" : "MPLS-LSR-STD-MIB",
823
+ "oid" : "1.3.6.1.2.1.10.166.2.1.5",
824
+ "status" : "current",
825
+ "description" :
826
+ """This table contains statistical information for
827
+ incoming MPLS segments to an LSR.""",
828
+ }, # table
829
+ "mplsInSegmentPerfEntry" : {
830
+ "nodetype" : "row",
831
+ "moduleName" : "MPLS-LSR-STD-MIB",
832
+ "oid" : "1.3.6.1.2.1.10.166.2.1.5.1",
833
+ "status" : "current",
834
+ "linkage" : [
835
+ { "MPLS-LSR-STD-MIB" : {
836
+ "indexkind" : "augments",
837
+ "relatedNode" : "mplsInSegmentEntry",
838
+ }},
839
+ ],
840
+ "description" :
841
+ """An entry in this table contains statistical
842
+ information about one incoming segment which is
843
+ configured in the mplsInSegmentTable. The counters
844
+ in this entry should behave in a manner similar to
845
+ that of the interface.
846
+ mplsInSegmentPerfDiscontinuityTime indicates the
847
+ time of the last discontinuity in all of these
848
+ objects.""",
849
+ }, # row
850
+ "mplsInSegmentPerfOctets" : {
851
+ "nodetype" : "column",
852
+ "moduleName" : "MPLS-LSR-STD-MIB",
853
+ "oid" : "1.3.6.1.2.1.10.166.2.1.5.1.1",
854
+ "status" : "current",
855
+ "syntax" : {
856
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
857
+ },
858
+ "access" : "readonly",
859
+ "description" :
860
+ """This value represents the total number of octets
861
+ received by this segment. It MUST be equal to the
862
+ least significant 32 bits of
863
+ mplsInSegmentPerfHCOctets
864
+ if mplsInSegmentPerfHCOctets is supported according to
865
+ the rules spelled out in RFC2863.""",
866
+ }, # column
867
+ "mplsInSegmentPerfPackets" : {
868
+ "nodetype" : "column",
869
+ "moduleName" : "MPLS-LSR-STD-MIB",
870
+ "oid" : "1.3.6.1.2.1.10.166.2.1.5.1.2",
871
+ "status" : "current",
872
+ "syntax" : {
873
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
874
+ },
875
+ "access" : "readonly",
876
+ "description" :
877
+ """Total number of packets received by this segment.""",
878
+ }, # column
879
+ "mplsInSegmentPerfErrors" : {
880
+ "nodetype" : "column",
881
+ "moduleName" : "MPLS-LSR-STD-MIB",
882
+ "oid" : "1.3.6.1.2.1.10.166.2.1.5.1.3",
883
+ "status" : "current",
884
+ "syntax" : {
885
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
886
+ },
887
+ "access" : "readonly",
888
+ "description" :
889
+ """The number of errored packets received on this
890
+ segment.""",
891
+ }, # column
892
+ "mplsInSegmentPerfDiscards" : {
893
+ "nodetype" : "column",
894
+ "moduleName" : "MPLS-LSR-STD-MIB",
895
+ "oid" : "1.3.6.1.2.1.10.166.2.1.5.1.4",
896
+ "status" : "current",
897
+ "syntax" : {
898
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
899
+ },
900
+ "access" : "readonly",
901
+ "description" :
902
+ """The number of labeled packets received on this in-
903
+ segment, which were chosen to be discarded even
904
+ though no errors had been detected to prevent their
905
+ being transmitted. One possible reason for
906
+ discarding such a labeled packet could be to free up
907
+ buffer space.""",
908
+ }, # column
909
+ "mplsInSegmentPerfHCOctets" : {
910
+ "nodetype" : "column",
911
+ "moduleName" : "MPLS-LSR-STD-MIB",
912
+ "oid" : "1.3.6.1.2.1.10.166.2.1.5.1.5",
913
+ "status" : "current",
914
+ "syntax" : {
915
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
916
+ },
917
+ "access" : "readonly",
918
+ "description" :
919
+ """The total number of octets received. This is the 64
920
+ bit version of mplsInSegmentPerfOctets,
921
+ if mplsInSegmentPerfHCOctets is supported according to
922
+ the rules spelled out in RFC2863.""",
923
+ }, # column
924
+ "mplsInSegmentPerfDiscontinuityTime" : {
925
+ "nodetype" : "column",
926
+ "moduleName" : "MPLS-LSR-STD-MIB",
927
+ "oid" : "1.3.6.1.2.1.10.166.2.1.5.1.6",
928
+ "status" : "current",
929
+ "syntax" : {
930
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
931
+ },
932
+ "access" : "readonly",
933
+ "description" :
934
+ """The value of sysUpTime on the most recent occasion
935
+ at which any one or more of this segment's Counter32
936
+ or Counter64 suffered a discontinuity. If no such
937
+ discontinuities have occurred since the last re-
938
+ initialization of the local management subsystem,
939
+ then this object contains a zero value.""",
940
+ }, # column
941
+ "mplsOutSegmentIndexNext" : {
942
+ "nodetype" : "scalar",
943
+ "moduleName" : "MPLS-LSR-STD-MIB",
944
+ "oid" : "1.3.6.1.2.1.10.166.2.1.6",
945
+ "status" : "current",
946
+ "syntax" : {
947
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexNextType"},
948
+ },
949
+ "access" : "readonly",
950
+ "description" :
951
+ """This object contains the next available value to
952
+ be used for mplsOutSegmentIndex when creating entries
953
+ in the mplsOutSegmentTable. The special value of a
954
+ string containing the single octet 0x00
955
+ indicates that no new entries can be created in this
956
+ table. Agents not allowing managers to create entries
957
+ in this table MUST set this object to this special
958
+ value.""",
959
+ }, # scalar
960
+ "mplsOutSegmentTable" : {
961
+ "nodetype" : "table",
962
+ "moduleName" : "MPLS-LSR-STD-MIB",
963
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7",
964
+ "status" : "current",
965
+ "description" :
966
+ """This table contains a representation of the outgoing
967
+ segments from an LSR.""",
968
+ }, # table
969
+ "mplsOutSegmentEntry" : {
970
+ "nodetype" : "row",
971
+ "moduleName" : "MPLS-LSR-STD-MIB",
972
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1",
973
+ "create" : "true",
974
+ "status" : "current",
975
+ "linkage" : [
976
+ "mplsOutSegmentIndex",
977
+ ],
978
+ "description" :
979
+ """An entry in this table represents one outgoing
980
+
981
+
982
+
983
+ segment. An entry can be created by a network
984
+ administrator, an SNMP agent, or an MPLS signaling
985
+ protocol. The object mplsOutSegmentOwner indicates
986
+ the creator of this entry. The value of
987
+ mplsOutSegmentRowStatus cannot be active(1) unless
988
+ the ifTable entry corresponding to
989
+ mplsOutSegmentInterface exists.
990
+
991
+ Note that the indexing of this table uses a single,
992
+ arbitrary index (mplsOutSegmentIndex) to indicate
993
+ which out-segment (i.e.: label) is being switched to
994
+ from which in-segment (i.e: label) or in-segments.
995
+ This is necessary because it is possible to have an
996
+ equal-cost multi-path situation where two identical
997
+ out-going labels are assigned to the same
998
+ cross-connect (i.e.: they go to two different neighboring
999
+ LSRs); thus, requiring two out-segments. In order to
1000
+ preserve the uniqueness of the references
1001
+ by the mplsXCEntry, an arbitrary integer must be used as
1002
+ the index for this table.""",
1003
+ }, # row
1004
+ "mplsOutSegmentIndex" : {
1005
+ "nodetype" : "column",
1006
+ "moduleName" : "MPLS-LSR-STD-MIB",
1007
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.1",
1008
+ "status" : "current",
1009
+ "syntax" : {
1010
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1011
+ },
1012
+ "access" : "noaccess",
1013
+ "description" :
1014
+ """This value contains a unique index for this row.
1015
+ While a value of a string containing the single
1016
+ octet 0x00 is not valid as an index for entries
1017
+ in this table, it can be supplied as a valid value
1018
+ to index the mplsXCTable to represent entries for
1019
+
1020
+
1021
+
1022
+ which no out-segment has been configured or
1023
+ exists.""",
1024
+ }, # column
1025
+ "mplsOutSegmentInterface" : {
1026
+ "nodetype" : "column",
1027
+ "moduleName" : "MPLS-LSR-STD-MIB",
1028
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.2",
1029
+ "status" : "current",
1030
+ "syntax" : {
1031
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
1032
+ },
1033
+ "access" : "readwrite",
1034
+ "description" :
1035
+ """This value must contain the interface index of the
1036
+ outgoing interface. This object cannot be modified
1037
+ if mplsOutSegmentRowStatus is active(1). The
1038
+ mplsOutSegmentRowStatus cannot be set to active(1)
1039
+ until this object is set to a value corresponding to
1040
+ a valid ifEntry.""",
1041
+ }, # column
1042
+ "mplsOutSegmentPushTopLabel" : {
1043
+ "nodetype" : "column",
1044
+ "moduleName" : "MPLS-LSR-STD-MIB",
1045
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.3",
1046
+ "status" : "current",
1047
+ "syntax" : {
1048
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1049
+ },
1050
+ "access" : "readwrite",
1051
+ "default" : "true",
1052
+ "description" :
1053
+ """This value indicates whether or not a top label
1054
+ should be pushed onto the outgoing packet's label
1055
+ stack. The value of this variable MUST be set to
1056
+ true(1) if the outgoing interface does not support
1057
+ pop-and-go (and no label stack remains). For example,
1058
+ on ATM interface, or if the segment represents a
1059
+ tunnel origination. Note that it is considered
1060
+ an error in the case that mplsOutSegmentPushTopLabel
1061
+ is set to false, but the cross-connect entry which
1062
+ refers to this out-segment has a non-zero
1063
+ mplsLabelStackIndex. The LSR MUST ensure that this
1064
+ situation does not happen. This object cannot be
1065
+ modified if mplsOutSegmentRowStatus is active(1).""",
1066
+ }, # column
1067
+ "mplsOutSegmentTopLabel" : {
1068
+ "nodetype" : "column",
1069
+ "moduleName" : "MPLS-LSR-STD-MIB",
1070
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.4",
1071
+ "status" : "current",
1072
+ "syntax" : {
1073
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
1074
+ },
1075
+ "access" : "readwrite",
1076
+ "default" : "0",
1077
+ "description" :
1078
+ """If mplsOutSegmentPushTopLabel is true then this
1079
+ represents the label that should be pushed onto the
1080
+ top of the outgoing packet's label stack. Otherwise
1081
+ this value SHOULD be set to 0 by the management
1082
+ station and MUST be ignored by the agent. This
1083
+
1084
+
1085
+
1086
+ object cannot be modified if mplsOutSegmentRowStatus
1087
+ is active(1).""",
1088
+ }, # column
1089
+ "mplsOutSegmentTopLabelPtr" : {
1090
+ "nodetype" : "column",
1091
+ "moduleName" : "MPLS-LSR-STD-MIB",
1092
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.5",
1093
+ "status" : "current",
1094
+ "syntax" : {
1095
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1096
+ },
1097
+ "access" : "readwrite",
1098
+ "default" : "0.0",
1099
+ "description" :
1100
+ """If the label for this segment cannot be represented
1101
+ fully within the mplsOutSegmentLabel object,
1102
+ this object MUST point to the first accessible
1103
+ column of a conceptual row in an external table containing
1104
+ the label. In this case, the mplsOutSegmentTopLabel
1105
+ object SHOULD be set to 0 and ignored. This object
1106
+ MUST be set to zeroDotZero otherwise.""",
1107
+ }, # column
1108
+ "mplsOutSegmentNextHopAddrType" : {
1109
+ "nodetype" : "column",
1110
+ "moduleName" : "MPLS-LSR-STD-MIB",
1111
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.6",
1112
+ "status" : "current",
1113
+ "syntax" : {
1114
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1115
+ },
1116
+ "access" : "readwrite",
1117
+ "description" :
1118
+ """Indicates the next hop Internet address type.
1119
+ Only values unknown(0), ipv4(1) or ipv6(2)
1120
+ have to be supported.
1121
+
1122
+ A value of unknown(0) is allowed only when
1123
+ the outgoing interface is of type point-to-point.
1124
+ If any other unsupported values are attempted in a set
1125
+ operation, the agent MUST return an inconsistentValue
1126
+ error.""",
1127
+ "reference" :
1128
+ """See RFC3291.""",
1129
+ }, # column
1130
+ "mplsOutSegmentNextHopAddr" : {
1131
+ "nodetype" : "column",
1132
+ "moduleName" : "MPLS-LSR-STD-MIB",
1133
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.7",
1134
+ "status" : "current",
1135
+ "syntax" : {
1136
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1137
+ },
1138
+ "access" : "readwrite",
1139
+ "description" :
1140
+ """The internet address of the next hop. The type of
1141
+ this address is determined by the value of the
1142
+ mplslOutSegmentNextHopAddrType object.
1143
+
1144
+ This object cannot be modified if
1145
+
1146
+
1147
+
1148
+ mplsOutSegmentRowStatus is active(1).""",
1149
+ }, # column
1150
+ "mplsOutSegmentXCIndex" : {
1151
+ "nodetype" : "column",
1152
+ "moduleName" : "MPLS-LSR-STD-MIB",
1153
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.8",
1154
+ "status" : "current",
1155
+ "syntax" : {
1156
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1157
+ },
1158
+ "access" : "readonly",
1159
+ "description" :
1160
+ """Index into mplsXCTable which identifies which cross-
1161
+ connect entry this segment is part of. A value of
1162
+ the string containing the single octet 0x00
1163
+ indicates that this entry is not referred
1164
+ to by any cross-connect entry. When a cross-connect
1165
+ entry is created which this out-segment is a part of,
1166
+ this object MUST be updated by the agent to reflect
1167
+ the value of mplsXCIndex of that cross-connect
1168
+ entry.""",
1169
+ }, # column
1170
+ "mplsOutSegmentOwner" : {
1171
+ "nodetype" : "column",
1172
+ "moduleName" : "MPLS-LSR-STD-MIB",
1173
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.9",
1174
+ "status" : "current",
1175
+ "syntax" : {
1176
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsOwner"},
1177
+ },
1178
+ "access" : "readonly",
1179
+ "description" :
1180
+ """Denotes the entity which created and is responsible
1181
+ for managing this segment.""",
1182
+ }, # column
1183
+ "mplsOutSegmentTrafficParamPtr" : {
1184
+ "nodetype" : "column",
1185
+ "moduleName" : "MPLS-LSR-STD-MIB",
1186
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.10",
1187
+ "status" : "current",
1188
+ "syntax" : {
1189
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1190
+ },
1191
+ "access" : "readwrite",
1192
+ "default" : "0.0",
1193
+ "description" :
1194
+ """This variable represents a pointer to the traffic
1195
+ parameter specification for this out-segment. This
1196
+ value may point at an entry in the
1197
+ MplsTunnelResourceEntry in the MPLS-TE-STD-MIB (RFC3812)
1198
+
1199
+ RFC Editor: Please fill in RFC number.
1200
+
1201
+ to indicate which traffic parameter settings for this
1202
+ segment if it represents an LSP used for a TE tunnel.
1203
+
1204
+ This value may optionally point at an
1205
+ externally defined traffic parameter specification
1206
+ table. A value of zeroDotZero indicates best-effort
1207
+ treatment. By having the same value of this object,
1208
+ two or more segments can indicate resource sharing
1209
+
1210
+
1211
+
1212
+ of such things as LSP queue space, etc.
1213
+
1214
+ This object cannot be modified if
1215
+ mplsOutSegmentRowStatus is active(1).
1216
+ For entries in this table that
1217
+ are preserved after a re-boot, the agent MUST ensure
1218
+ that their integrity be preserved, or this object should
1219
+ be set to 0.0 if it cannot.""",
1220
+ }, # column
1221
+ "mplsOutSegmentRowStatus" : {
1222
+ "nodetype" : "column",
1223
+ "moduleName" : "MPLS-LSR-STD-MIB",
1224
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.11",
1225
+ "status" : "current",
1226
+ "syntax" : {
1227
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1228
+ },
1229
+ "access" : "readwrite",
1230
+ "description" :
1231
+ """For creating, modifying, and deleting this row.
1232
+ When a row in this table has a row in the active(1)
1233
+ state, no objects in this row can be modified
1234
+ except the mplsOutSegmentRowStatus or
1235
+ mplsOutSegmentStorageType.""",
1236
+ }, # column
1237
+ "mplsOutSegmentStorageType" : {
1238
+ "nodetype" : "column",
1239
+ "moduleName" : "MPLS-LSR-STD-MIB",
1240
+ "oid" : "1.3.6.1.2.1.10.166.2.1.7.1.12",
1241
+ "status" : "current",
1242
+ "syntax" : {
1243
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1244
+ },
1245
+ "access" : "readwrite",
1246
+ "default" : "volatile",
1247
+ "description" :
1248
+ """This variable indicates the storage type for this
1249
+ object. The agent MUST ensure that this object's value
1250
+ remains consistent with the associated mplsXCEntry.
1251
+ Conceptual rows having the value 'permanent'
1252
+ need not allow write-access to any columnar
1253
+ objects in the row.""",
1254
+ }, # column
1255
+ "mplsOutSegmentPerfTable" : {
1256
+ "nodetype" : "table",
1257
+ "moduleName" : "MPLS-LSR-STD-MIB",
1258
+ "oid" : "1.3.6.1.2.1.10.166.2.1.8",
1259
+ "status" : "current",
1260
+ "description" :
1261
+ """This table contains statistical information about
1262
+
1263
+
1264
+
1265
+ outgoing segments from an LSR. The counters in this
1266
+ entry should behave in a manner similar to that of
1267
+ the interface.""",
1268
+ }, # table
1269
+ "mplsOutSegmentPerfEntry" : {
1270
+ "nodetype" : "row",
1271
+ "moduleName" : "MPLS-LSR-STD-MIB",
1272
+ "oid" : "1.3.6.1.2.1.10.166.2.1.8.1",
1273
+ "status" : "current",
1274
+ "linkage" : [
1275
+ { "MPLS-LSR-STD-MIB" : {
1276
+ "indexkind" : "augments",
1277
+ "relatedNode" : "mplsOutSegmentEntry",
1278
+ }},
1279
+ ],
1280
+ "description" :
1281
+ """An entry in this table contains statistical
1282
+ information about one outgoing segment configured in
1283
+ mplsOutSegmentTable. The object
1284
+ mplsOutSegmentPerfDiscontinuityTime indicates the
1285
+ time of the last discontinuity in these objects. """,
1286
+ }, # row
1287
+ "mplsOutSegmentPerfOctets" : {
1288
+ "nodetype" : "column",
1289
+ "moduleName" : "MPLS-LSR-STD-MIB",
1290
+ "oid" : "1.3.6.1.2.1.10.166.2.1.8.1.1",
1291
+ "status" : "current",
1292
+ "syntax" : {
1293
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1294
+ },
1295
+ "access" : "readonly",
1296
+ "description" :
1297
+ """This value contains the total number of octets sent
1298
+ on this segment. It MUST be equal to the least
1299
+ significant 32 bits of mplsOutSegmentPerfHCOctets
1300
+ if mplsOutSegmentPerfHCOctets is supported according to
1301
+ the rules spelled out in RFC2863.""",
1302
+ }, # column
1303
+ "mplsOutSegmentPerfPackets" : {
1304
+ "nodetype" : "column",
1305
+ "moduleName" : "MPLS-LSR-STD-MIB",
1306
+ "oid" : "1.3.6.1.2.1.10.166.2.1.8.1.2",
1307
+ "status" : "current",
1308
+ "syntax" : {
1309
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1310
+ },
1311
+ "access" : "readonly",
1312
+ "description" :
1313
+ """This value contains the total number of packets sent
1314
+
1315
+
1316
+
1317
+ on this segment.""",
1318
+ }, # column
1319
+ "mplsOutSegmentPerfErrors" : {
1320
+ "nodetype" : "column",
1321
+ "moduleName" : "MPLS-LSR-STD-MIB",
1322
+ "oid" : "1.3.6.1.2.1.10.166.2.1.8.1.3",
1323
+ "status" : "current",
1324
+ "syntax" : {
1325
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1326
+ },
1327
+ "access" : "readonly",
1328
+ "description" :
1329
+ """Number of packets that could not be sent due to
1330
+ errors on this segment.""",
1331
+ }, # column
1332
+ "mplsOutSegmentPerfDiscards" : {
1333
+ "nodetype" : "column",
1334
+ "moduleName" : "MPLS-LSR-STD-MIB",
1335
+ "oid" : "1.3.6.1.2.1.10.166.2.1.8.1.4",
1336
+ "status" : "current",
1337
+ "syntax" : {
1338
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1339
+ },
1340
+ "access" : "readonly",
1341
+ "description" :
1342
+ """The number of labeled packets attempted to be transmitted
1343
+ on this out-segment, which were chosen to be discarded
1344
+ even though no errors had been detected to prevent their
1345
+ being transmitted. One possible reason for
1346
+ discarding such a labeled packet could be to free up
1347
+ buffer space.""",
1348
+ }, # column
1349
+ "mplsOutSegmentPerfHCOctets" : {
1350
+ "nodetype" : "column",
1351
+ "moduleName" : "MPLS-LSR-STD-MIB",
1352
+ "oid" : "1.3.6.1.2.1.10.166.2.1.8.1.5",
1353
+ "status" : "current",
1354
+ "syntax" : {
1355
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1356
+ },
1357
+ "access" : "readonly",
1358
+ "description" :
1359
+ """Total number of octets sent. This is the 64 bit
1360
+ version of mplsOutSegmentPerfOctets,
1361
+ if mplsOutSegmentPerfHCOctets is supported according to
1362
+ the rules spelled out in RFC2863.""",
1363
+ }, # column
1364
+ "mplsOutSegmentPerfDiscontinuityTime" : {
1365
+ "nodetype" : "column",
1366
+ "moduleName" : "MPLS-LSR-STD-MIB",
1367
+ "oid" : "1.3.6.1.2.1.10.166.2.1.8.1.6",
1368
+ "status" : "current",
1369
+ "syntax" : {
1370
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1371
+ },
1372
+ "access" : "readonly",
1373
+ "description" :
1374
+ """The value of sysUpTime on the most recent occasion
1375
+ at which any one or more of this segment's Counter32
1376
+ or Counter64 suffered a discontinuity. If no such
1377
+ discontinuities have occurred since the last re-
1378
+ initialization of the local management subsystem,
1379
+ then this object contains a zero value.""",
1380
+ }, # column
1381
+ "mplsXCIndexNext" : {
1382
+ "nodetype" : "scalar",
1383
+ "moduleName" : "MPLS-LSR-STD-MIB",
1384
+ "oid" : "1.3.6.1.2.1.10.166.2.1.9",
1385
+ "status" : "current",
1386
+ "syntax" : {
1387
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexNextType"},
1388
+ },
1389
+ "access" : "readonly",
1390
+ "description" :
1391
+ """This object contains the next available value to
1392
+ be used for mplsXCIndex when creating entries in
1393
+ the mplsXCTable. A special value of the zero length
1394
+ string indicates that no more new entries can be created
1395
+ in the relevant table. Agents not allowing managers
1396
+ to create entries in this table MUST set this value
1397
+ to the zero length string.""",
1398
+ }, # scalar
1399
+ "mplsXCTable" : {
1400
+ "nodetype" : "table",
1401
+ "moduleName" : "MPLS-LSR-STD-MIB",
1402
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10",
1403
+ "status" : "current",
1404
+ "description" :
1405
+ """This table specifies information for switching
1406
+ between LSP segments. It supports point-to-point,
1407
+ point-to-multipoint and multipoint-to-point
1408
+ connections. mplsLabelStackTable specifies the
1409
+ label stack information for a cross-connect LSR and
1410
+ is referred to from mplsXCTable.""",
1411
+ }, # table
1412
+ "mplsXCEntry" : {
1413
+ "nodetype" : "row",
1414
+ "moduleName" : "MPLS-LSR-STD-MIB",
1415
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1",
1416
+ "create" : "true",
1417
+ "status" : "current",
1418
+ "linkage" : [
1419
+ "mplsXCIndex",
1420
+ "mplsXCInSegmentIndex",
1421
+ "mplsXCOutSegmentIndex",
1422
+ ],
1423
+ "description" :
1424
+ """A row in this table represents one cross-connect
1425
+ entry. It is indexed by the following objects:
1426
+
1427
+ - cross-connect index mplsXCIndex that uniquely
1428
+ identifies a group of cross-connect entries
1429
+
1430
+ - in-segment index, mplsXCInSegmentIndex
1431
+
1432
+ - out-segment index, mplsXCOutSegmentIndex
1433
+
1434
+
1435
+
1436
+
1437
+ LSPs originating at this LSR:
1438
+ These are represented by using the special
1439
+ of value of mplsXCInSegmentIndex set to the
1440
+ string containing a single octet 0x00. In
1441
+ this case the mplsXCOutSegmentIndex
1442
+ MUST not be the string containing a single
1443
+ octet 0x00.
1444
+
1445
+ LSPs terminating at this LSR:
1446
+ These are represented by using the special value
1447
+ mplsXCOutSegmentIndex set to the string containing
1448
+ a single octet 0x00.
1449
+
1450
+ Special labels:
1451
+ Entries indexed by the strings containing the
1452
+ reserved MPLS label values as a single octet 0x00
1453
+ through 0x0f (inclusive) imply LSPs terminating at
1454
+ this LSR. Note that situations where LSPs are
1455
+ terminated with incoming label equal to the string
1456
+ containing a single octet 0x00 can be distinguished
1457
+ from LSPs originating at this LSR because the
1458
+ mplsXCOutSegmentIndex equals the string containing the
1459
+ single octet 0x00.
1460
+
1461
+ An entry can be created by a network administrator
1462
+ or by an SNMP agent as instructed by an MPLS
1463
+ signaling protocol.""",
1464
+ }, # row
1465
+ "mplsXCIndex" : {
1466
+ "nodetype" : "column",
1467
+ "moduleName" : "MPLS-LSR-STD-MIB",
1468
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.1",
1469
+ "status" : "current",
1470
+ "syntax" : {
1471
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1472
+ },
1473
+ "access" : "noaccess",
1474
+ "description" :
1475
+ """Primary index for the conceptual row identifying a
1476
+ group of cross-connect segments. The string
1477
+ containing a single octet 0x00 is an invalid index.""",
1478
+ }, # column
1479
+ "mplsXCInSegmentIndex" : {
1480
+ "nodetype" : "column",
1481
+ "moduleName" : "MPLS-LSR-STD-MIB",
1482
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.2",
1483
+ "status" : "current",
1484
+ "syntax" : {
1485
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1486
+ },
1487
+ "access" : "noaccess",
1488
+ "description" :
1489
+ """Incoming label index.
1490
+ If this object is set to the string containing
1491
+ a single octet 0x00, this indicates a special
1492
+ case outlined in the table's description above.
1493
+ In this case no corresponding mplsInSegmentEntry
1494
+ shall exist.""",
1495
+ }, # column
1496
+ "mplsXCOutSegmentIndex" : {
1497
+ "nodetype" : "column",
1498
+ "moduleName" : "MPLS-LSR-STD-MIB",
1499
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.3",
1500
+ "status" : "current",
1501
+ "syntax" : {
1502
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1503
+ },
1504
+ "access" : "noaccess",
1505
+ "description" :
1506
+ """Index of out-segment for LSPs not terminating on
1507
+ this LSR if not set to the string containing the
1508
+ single octet 0x00. If the segment identified by this
1509
+ entry is terminating, then this object MUST be set to
1510
+ the string containing a single octet 0x00 to indicate
1511
+ that no corresponding mplsOutSegmentEntry shall
1512
+ exist.""",
1513
+ }, # column
1514
+ "mplsXCLspId" : {
1515
+ "nodetype" : "column",
1516
+ "moduleName" : "MPLS-LSR-STD-MIB",
1517
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.4",
1518
+ "status" : "current",
1519
+ "syntax" : {
1520
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLSPID"},
1521
+ },
1522
+ "access" : "readwrite",
1523
+ "description" :
1524
+ """This value identifies the label switched path that
1525
+ this cross-connect entry belongs to. This object
1526
+ cannot be modified if mplsXCRowStatus is active(1)
1527
+ except for this object.""",
1528
+ }, # column
1529
+ "mplsXCLabelStackIndex" : {
1530
+ "nodetype" : "column",
1531
+ "moduleName" : "MPLS-LSR-STD-MIB",
1532
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.5",
1533
+ "status" : "current",
1534
+ "syntax" : {
1535
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1536
+ },
1537
+ "access" : "readwrite",
1538
+ "description" :
1539
+ """Primary index into mplsLabelStackTable identifying a
1540
+ stack of labels to be pushed beneath the top label.
1541
+ Note that the top label identified by the out-
1542
+ segment ensures that all the components of a
1543
+ multipoint-to-point connection have the same
1544
+ outgoing label. A value of the string containing the
1545
+ single octet 0x00 indicates that no labels are to
1546
+ be stacked beneath the top label.
1547
+ This object cannot be modified if mplsXCRowStatus is
1548
+ active(1).""",
1549
+ }, # column
1550
+ "mplsXCOwner" : {
1551
+ "nodetype" : "column",
1552
+ "moduleName" : "MPLS-LSR-STD-MIB",
1553
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.6",
1554
+ "status" : "current",
1555
+ "syntax" : {
1556
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsOwner"},
1557
+ },
1558
+ "access" : "readonly",
1559
+ "description" :
1560
+ """Denotes the entity that created and is responsible
1561
+ for managing this cross-connect.""",
1562
+ }, # column
1563
+ "mplsXCRowStatus" : {
1564
+ "nodetype" : "column",
1565
+ "moduleName" : "MPLS-LSR-STD-MIB",
1566
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.7",
1567
+ "status" : "current",
1568
+ "syntax" : {
1569
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1570
+ },
1571
+ "access" : "readwrite",
1572
+ "description" :
1573
+ """For creating, modifying, and deleting this row.
1574
+ When a row in this table has a row in the active(1)
1575
+ state, no objects in this row except this object
1576
+ and the mplsXCStorageType can be modified. """,
1577
+ }, # column
1578
+ "mplsXCStorageType" : {
1579
+ "nodetype" : "column",
1580
+ "moduleName" : "MPLS-LSR-STD-MIB",
1581
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.8",
1582
+ "status" : "current",
1583
+ "syntax" : {
1584
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1585
+ },
1586
+ "access" : "readwrite",
1587
+ "default" : "volatile",
1588
+ "description" :
1589
+ """This variable indicates the storage type for this
1590
+ object. The agent MUST ensure that the associated in
1591
+ and out segments also have the same StorageType value
1592
+ and are restored consistently upon system restart.
1593
+ This value SHOULD be set to permanent(4) if created
1594
+ as a result of a static LSP configuration.
1595
+
1596
+ Conceptual rows having the value 'permanent'
1597
+ need not allow write-access to any columnar
1598
+ objects in the row.""",
1599
+ }, # column
1600
+ "mplsXCAdminStatus" : {
1601
+ "nodetype" : "column",
1602
+ "moduleName" : "MPLS-LSR-STD-MIB",
1603
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.9",
1604
+ "status" : "current",
1605
+ "syntax" : {
1606
+ "type" : {
1607
+ "basetype" : "Enumeration",
1608
+ "up" : {
1609
+ "nodetype" : "namednumber",
1610
+ "number" : "1"
1611
+ },
1612
+ "down" : {
1613
+ "nodetype" : "namednumber",
1614
+ "number" : "2"
1615
+ },
1616
+ "testing" : {
1617
+ "nodetype" : "namednumber",
1618
+ "number" : "3"
1619
+ },
1620
+ },
1621
+ },
1622
+ "access" : "readwrite",
1623
+ "default" : "up",
1624
+ "description" :
1625
+ """The desired operational status of this segment.""",
1626
+ }, # column
1627
+ "mplsXCOperStatus" : {
1628
+ "nodetype" : "column",
1629
+ "moduleName" : "MPLS-LSR-STD-MIB",
1630
+ "oid" : "1.3.6.1.2.1.10.166.2.1.10.1.10",
1631
+ "status" : "current",
1632
+ "syntax" : {
1633
+ "type" : {
1634
+ "basetype" : "Enumeration",
1635
+ "up" : {
1636
+ "nodetype" : "namednumber",
1637
+ "number" : "1"
1638
+ },
1639
+ "down" : {
1640
+ "nodetype" : "namednumber",
1641
+ "number" : "2"
1642
+ },
1643
+ "testing" : {
1644
+ "nodetype" : "namednumber",
1645
+ "number" : "3"
1646
+ },
1647
+ "unknown" : {
1648
+ "nodetype" : "namednumber",
1649
+ "number" : "4"
1650
+ },
1651
+ "dormant" : {
1652
+ "nodetype" : "namednumber",
1653
+ "number" : "5"
1654
+ },
1655
+ "notPresent" : {
1656
+ "nodetype" : "namednumber",
1657
+ "number" : "6"
1658
+ },
1659
+ "lowerLayerDown" : {
1660
+ "nodetype" : "namednumber",
1661
+ "number" : "7"
1662
+ },
1663
+ },
1664
+ },
1665
+ "access" : "readonly",
1666
+ "description" :
1667
+ """The actual operational status of this cross-
1668
+ connect.""",
1669
+ }, # column
1670
+ "mplsMaxLabelStackDepth" : {
1671
+ "nodetype" : "scalar",
1672
+ "moduleName" : "MPLS-LSR-STD-MIB",
1673
+ "oid" : "1.3.6.1.2.1.10.166.2.1.11",
1674
+ "status" : "current",
1675
+ "syntax" : {
1676
+ "type" : {
1677
+ "basetype" : "Unsigned32",
1678
+ "ranges" : [
1679
+ {
1680
+ "min" : "1",
1681
+ "max" : "2147483647"
1682
+ },
1683
+ ],
1684
+ "range" : {
1685
+ "min" : "1",
1686
+ "max" : "2147483647"
1687
+ },
1688
+ },
1689
+ },
1690
+ "access" : "readonly",
1691
+ "description" :
1692
+ """The maximum stack depth supported by this LSR.""",
1693
+ }, # scalar
1694
+ "mplsLabelStackIndexNext" : {
1695
+ "nodetype" : "scalar",
1696
+ "moduleName" : "MPLS-LSR-STD-MIB",
1697
+ "oid" : "1.3.6.1.2.1.10.166.2.1.12",
1698
+ "status" : "current",
1699
+ "syntax" : {
1700
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexNextType"},
1701
+ },
1702
+ "access" : "readonly",
1703
+ "description" :
1704
+ """This object contains the next available value to
1705
+ be used for mplsLabelStackIndex when creating entries
1706
+ in the mplsLabelStackTable. The special string
1707
+ containing the single octet 0x00
1708
+ indicates that no more new entries can be created
1709
+ in the relevant table. Agents not allowing managers
1710
+ to create entries in this table MUST set this value
1711
+ to the string containing the single octet 0x00.""",
1712
+ }, # scalar
1713
+ "mplsLabelStackTable" : {
1714
+ "nodetype" : "table",
1715
+ "moduleName" : "MPLS-LSR-STD-MIB",
1716
+ "oid" : "1.3.6.1.2.1.10.166.2.1.13",
1717
+ "status" : "current",
1718
+ "description" :
1719
+ """This table specifies the label stack to be pushed
1720
+ onto a packet, beneath the top label. Entries into
1721
+ this table are referred to from mplsXCTable.""",
1722
+ }, # table
1723
+ "mplsLabelStackEntry" : {
1724
+ "nodetype" : "row",
1725
+ "moduleName" : "MPLS-LSR-STD-MIB",
1726
+ "oid" : "1.3.6.1.2.1.10.166.2.1.13.1",
1727
+ "create" : "true",
1728
+ "status" : "current",
1729
+ "linkage" : [
1730
+ "mplsLabelStackIndex",
1731
+ "mplsLabelStackLabelIndex",
1732
+ ],
1733
+ "description" :
1734
+ """An entry in this table represents one label which is
1735
+ to be pushed onto an outgoing packet, beneath the
1736
+ top label. An entry can be created by a network
1737
+ administrator or by an SNMP agent as instructed by
1738
+ an MPLS signaling protocol.""",
1739
+ }, # row
1740
+ "mplsLabelStackIndex" : {
1741
+ "nodetype" : "column",
1742
+ "moduleName" : "MPLS-LSR-STD-MIB",
1743
+ "oid" : "1.3.6.1.2.1.10.166.2.1.13.1.1",
1744
+ "status" : "current",
1745
+ "syntax" : {
1746
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1747
+ },
1748
+ "access" : "noaccess",
1749
+ "description" :
1750
+ """Primary index for this row identifying a stack of
1751
+ labels to be pushed on an outgoing packet, beneath
1752
+ the top label. An index containing the string with
1753
+ a single octet 0x00 MUST not be used.""",
1754
+ }, # column
1755
+ "mplsLabelStackLabelIndex" : {
1756
+ "nodetype" : "column",
1757
+ "moduleName" : "MPLS-LSR-STD-MIB",
1758
+ "oid" : "1.3.6.1.2.1.10.166.2.1.13.1.2",
1759
+ "status" : "current",
1760
+ "syntax" : {
1761
+ "type" : {
1762
+ "basetype" : "Unsigned32",
1763
+ "ranges" : [
1764
+ {
1765
+ "min" : "1",
1766
+ "max" : "2147483647"
1767
+ },
1768
+ ],
1769
+ "range" : {
1770
+ "min" : "1",
1771
+ "max" : "2147483647"
1772
+ },
1773
+ },
1774
+ },
1775
+ "access" : "noaccess",
1776
+ "description" :
1777
+ """Secondary index for this row identifying one label
1778
+ of the stack. Note that an entry with a smaller
1779
+ mplsLabelStackLabelIndex would refer to a label
1780
+ higher up the label stack and would be popped at a
1781
+ downstream LSR before a label represented by a
1782
+ higher mplsLabelStackLabelIndex at a downstream
1783
+ LSR.""",
1784
+ }, # column
1785
+ "mplsLabelStackLabel" : {
1786
+ "nodetype" : "column",
1787
+ "moduleName" : "MPLS-LSR-STD-MIB",
1788
+ "oid" : "1.3.6.1.2.1.10.166.2.1.13.1.3",
1789
+ "status" : "current",
1790
+ "syntax" : {
1791
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
1792
+ },
1793
+ "access" : "readwrite",
1794
+ "description" :
1795
+ """The label to pushed.""",
1796
+ }, # column
1797
+ "mplsLabelStackLabelPtr" : {
1798
+ "nodetype" : "column",
1799
+ "moduleName" : "MPLS-LSR-STD-MIB",
1800
+ "oid" : "1.3.6.1.2.1.10.166.2.1.13.1.4",
1801
+ "status" : "current",
1802
+ "syntax" : {
1803
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1804
+ },
1805
+ "access" : "readwrite",
1806
+ "default" : "0.0",
1807
+ "description" :
1808
+ """If the label for this segment cannot be represented
1809
+ fully within the mplsLabelStackLabel object,
1810
+ this object MUST point to the first accessible
1811
+ column of a conceptual row in an external table containing
1812
+ the label. In this case, the mplsLabelStackLabel
1813
+ object SHOULD be set to 0 and ignored. This object
1814
+ MUST be set to zeroDotZero otherwise.""",
1815
+ }, # column
1816
+ "mplsLabelStackRowStatus" : {
1817
+ "nodetype" : "column",
1818
+ "moduleName" : "MPLS-LSR-STD-MIB",
1819
+ "oid" : "1.3.6.1.2.1.10.166.2.1.13.1.5",
1820
+ "status" : "current",
1821
+ "syntax" : {
1822
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1823
+ },
1824
+ "access" : "readwrite",
1825
+ "description" :
1826
+ """For creating, modifying, and deleting this row.
1827
+ When a row in this table has a row in the active(1)
1828
+ state, no objects in this row except this object
1829
+ and the mplsLabelStackStorageType can be modified.""",
1830
+ }, # column
1831
+ "mplsLabelStackStorageType" : {
1832
+ "nodetype" : "column",
1833
+ "moduleName" : "MPLS-LSR-STD-MIB",
1834
+ "oid" : "1.3.6.1.2.1.10.166.2.1.13.1.6",
1835
+ "status" : "current",
1836
+ "syntax" : {
1837
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1838
+ },
1839
+ "access" : "readwrite",
1840
+ "default" : "volatile",
1841
+ "description" :
1842
+ """This variable indicates the storage type for this
1843
+ object. This object cannot be modified if
1844
+ mplsLabelStackRowStatus is active(1).
1845
+ No objects are required to be writable for
1846
+ rows in this table with this object set to
1847
+ permanent(4).
1848
+
1849
+ The agent MUST ensure that all related entries
1850
+ in this table retain the same value for this
1851
+ object. Agents MUST ensure that the storage type
1852
+ for all entries related to a particular mplsXCEntry
1853
+ retain the same value for this object as the
1854
+ mplsXCEntry's StorageType.""",
1855
+ }, # column
1856
+ "mplsInSegmentMapTable" : {
1857
+ "nodetype" : "table",
1858
+ "moduleName" : "MPLS-LSR-STD-MIB",
1859
+ "oid" : "1.3.6.1.2.1.10.166.2.1.14",
1860
+ "status" : "current",
1861
+ "description" :
1862
+ """This table specifies the mapping from the
1863
+ mplsInSegmentIndex to the corresponding
1864
+ mplsInSegmentInterface and mplsInSegmentLabel
1865
+ objects. The purpose of this table is to
1866
+ provide the manager with an alternative
1867
+ means by which to locate in-segments.""",
1868
+ }, # table
1869
+ "mplsInSegmentMapEntry" : {
1870
+ "nodetype" : "row",
1871
+ "moduleName" : "MPLS-LSR-STD-MIB",
1872
+ "oid" : "1.3.6.1.2.1.10.166.2.1.14.1",
1873
+ "status" : "current",
1874
+ "linkage" : [
1875
+ "mplsInSegmentMapInterface",
1876
+ "mplsInSegmentMapLabel",
1877
+ "mplsInSegmentMapLabelPtrIndex",
1878
+ ],
1879
+ "description" :
1880
+ """An entry in this table represents one interface
1881
+ and incoming label pair.
1882
+
1883
+ In cases where the label cannot fit into the
1884
+ mplsInSegmentLabel object, the mplsInSegmentLabelPtr
1885
+ will indicate this by being set to the first accessible
1886
+ column in the appropriate extension table's row,
1887
+ and the mplsInSegmentLabel SHOULD be set to 0.
1888
+ In all other cases when the label is
1889
+ represented within the mplsInSegmentLabel object, the
1890
+ mplsInSegmentLabelPtr MUST be 0.0.
1891
+
1892
+ Implementors need to be aware that if the value of
1893
+ the mplsInSegmentMapLabelPtrIndex (an OID) has more
1894
+ that 111 sub-identifiers, then OIDs of column
1895
+ instances in this table will have more than 128
1896
+ sub-identifiers and cannot be accessed using SNMPv1,
1897
+ SNMPv2c, or SNMPv3.""",
1898
+ }, # row
1899
+ "mplsInSegmentMapInterface" : {
1900
+ "nodetype" : "column",
1901
+ "moduleName" : "MPLS-LSR-STD-MIB",
1902
+ "oid" : "1.3.6.1.2.1.10.166.2.1.14.1.1",
1903
+ "status" : "current",
1904
+ "syntax" : {
1905
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
1906
+ },
1907
+ "access" : "noaccess",
1908
+ "description" :
1909
+ """This index contains the same value as the
1910
+ mplsInSegmentIndex in the mplsInSegmentTable.""",
1911
+ }, # column
1912
+ "mplsInSegmentMapLabel" : {
1913
+ "nodetype" : "column",
1914
+ "moduleName" : "MPLS-LSR-STD-MIB",
1915
+ "oid" : "1.3.6.1.2.1.10.166.2.1.14.1.2",
1916
+ "status" : "current",
1917
+ "syntax" : {
1918
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabel"},
1919
+ },
1920
+ "access" : "noaccess",
1921
+ "description" :
1922
+ """This index contains the same value as the
1923
+ mplsInSegmentLabel in the mplsInSegmentTable.""",
1924
+ }, # column
1925
+ "mplsInSegmentMapLabelPtrIndex" : {
1926
+ "nodetype" : "column",
1927
+ "moduleName" : "MPLS-LSR-STD-MIB",
1928
+ "oid" : "1.3.6.1.2.1.10.166.2.1.14.1.3",
1929
+ "status" : "current",
1930
+ "syntax" : {
1931
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1932
+ },
1933
+ "access" : "noaccess",
1934
+ "description" :
1935
+ """This index contains the same value as the
1936
+ mplsInSegmentLabelPtr.
1937
+
1938
+ If the label for the InSegment cannot be represented
1939
+ fully within the mplsInSegmentLabel object,
1940
+ this index MUST point to the first accessible
1941
+ column of a conceptual row in an external table containing
1942
+ the label. In this case, the mplsInSegmentTopLabel
1943
+ object SHOULD be set to 0 and ignored. This object MUST
1944
+ be set to zeroDotZero otherwise.""",
1945
+ }, # column
1946
+ "mplsInSegmentMapIndex" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "MPLS-LSR-STD-MIB",
1949
+ "oid" : "1.3.6.1.2.1.10.166.2.1.14.1.4",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1953
+ },
1954
+ "access" : "readonly",
1955
+ "description" :
1956
+ """The mplsInSegmentIndex that corresponds
1957
+ to the mplsInSegmentInterface and
1958
+ mplsInSegmentLabel, or the mplsInSegmentInterface
1959
+ and mplsInSegmentLabelPtr, if applicable.
1960
+ The string containing the single octet 0x00
1961
+ MUST not be returned.""",
1962
+ }, # column
1963
+ "mplsXCNotificationsEnable" : {
1964
+ "nodetype" : "scalar",
1965
+ "moduleName" : "MPLS-LSR-STD-MIB",
1966
+ "oid" : "1.3.6.1.2.1.10.166.2.1.15",
1967
+ "status" : "current",
1968
+ "syntax" : {
1969
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1970
+ },
1971
+ "access" : "readwrite",
1972
+ "default" : "false",
1973
+ "description" :
1974
+ """If this object is set to true(1), then it enables
1975
+ the emission of mplsXCUp and mplsXCDown
1976
+ notifications; otherwise these notifications are not
1977
+
1978
+
1979
+
1980
+ emitted.""",
1981
+ "reference" :
1982
+ """See also RFC3413 for explanation that
1983
+ notifications are under the ultimate control of the
1984
+ MIB module in this document.""",
1985
+ }, # scalar
1986
+ "mplsLsrConformance" : {
1987
+ "nodetype" : "node",
1988
+ "moduleName" : "MPLS-LSR-STD-MIB",
1989
+ "oid" : "1.3.6.1.2.1.10.166.2.2",
1990
+ }, # node
1991
+ "mplsLsrGroups" : {
1992
+ "nodetype" : "node",
1993
+ "moduleName" : "MPLS-LSR-STD-MIB",
1994
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1",
1995
+ }, # node
1996
+ "mplsLsrCompliances" : {
1997
+ "nodetype" : "node",
1998
+ "moduleName" : "MPLS-LSR-STD-MIB",
1999
+ "oid" : "1.3.6.1.2.1.10.166.2.2.2",
2000
+ }, # node
2001
+ }, # nodes
2002
+
2003
+ "notifications" : {
2004
+ "mplsXCUp" : {
2005
+ "nodetype" : "notification",
2006
+ "moduleName" : "MPLS-LSR-STD-MIB",
2007
+ "oid" : "1.3.6.1.2.1.10.166.2.0.1",
2008
+ "status" : "current",
2009
+ "objects" : {
2010
+ "mplsXCOperStatus" : {
2011
+ "nodetype" : "object",
2012
+ "module" : "MPLS-LSR-STD-MIB"
2013
+ },
2014
+ "mplsXCOperStatus" : {
2015
+ "nodetype" : "object",
2016
+ "module" : "MPLS-LSR-STD-MIB"
2017
+ },
2018
+ },
2019
+ "description" :
2020
+ """This notification is generated when the
2021
+ mplsXCOperStatus object for one or more contiguous
2022
+ entries in mplsXCTable are about to enter the up(1)
2023
+ state from some other state. The included values of
2024
+ mplsXCOperStatus MUST both be set equal to this
2025
+ new state (i.e: up(1)). The two instances of
2026
+ mplsXCOperStatus in this notification indicate the range
2027
+ of indexes that are affected. Note that all the indexes
2028
+ of the two ends of the range can be derived from the
2029
+ instance identifiers of these two objects. For
2030
+ cases where a contiguous range of cross-connects
2031
+ have transitioned into the up(1) state at roughly
2032
+ the same time, the device SHOULD issue a single
2033
+ notification for each range of contiguous indexes in
2034
+ an effort to minimize the emission of a large number
2035
+ of notifications. If a notification has to be
2036
+ issued for just a single cross-connect entry, then
2037
+ the instance identifier (and values) of the two
2038
+ mplsXCOperStatus objects MUST be the identical.""",
2039
+ }, # notification
2040
+ "mplsXCDown" : {
2041
+ "nodetype" : "notification",
2042
+ "moduleName" : "MPLS-LSR-STD-MIB",
2043
+ "oid" : "1.3.6.1.2.1.10.166.2.0.2",
2044
+ "status" : "current",
2045
+ "objects" : {
2046
+ "mplsXCOperStatus" : {
2047
+ "nodetype" : "object",
2048
+ "module" : "MPLS-LSR-STD-MIB"
2049
+ },
2050
+ "mplsXCOperStatus" : {
2051
+ "nodetype" : "object",
2052
+ "module" : "MPLS-LSR-STD-MIB"
2053
+ },
2054
+ },
2055
+ "description" :
2056
+ """This notification is generated when the
2057
+ mplsXCOperStatus object for one or more contiguous
2058
+ entries in mplsXCTable are about to enter the
2059
+ down(2) state from some other state. The included values
2060
+
2061
+
2062
+
2063
+ of mplsXCOperStatus MUST both be set equal to this
2064
+ down(2) state. The two instances of mplsXCOperStatus
2065
+ in this notification indicate the range of indexes
2066
+ that are affected. Note that all the indexes of the
2067
+ two ends of the range can be derived from the
2068
+ instance identifiers of these two objects. For
2069
+ cases where a contiguous range of cross-connects
2070
+ have transitioned into the down(2) state at roughly
2071
+ the same time, the device SHOULD issue a single
2072
+ notification for each range of contiguous indexes in
2073
+ an effort to minimize the emission of a large number
2074
+ of notifications. If a notification has to be
2075
+ issued for just a single cross-connect entry, then
2076
+ the instance identifier (and values) of the two
2077
+ mplsXCOperStatus objects MUST be identical.""",
2078
+ }, # notification
2079
+ }, # notifications
2080
+
2081
+ "groups" : {
2082
+ "mplsInterfaceGroup" : {
2083
+ "nodetype" : "group",
2084
+ "moduleName" : "MPLS-LSR-STD-MIB",
2085
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.1",
2086
+ "status" : "current",
2087
+ "members" : {
2088
+ "mplsInterfaceLabelMinIn" : {
2089
+ "nodetype" : "member",
2090
+ "module" : "MPLS-LSR-STD-MIB"
2091
+ },
2092
+ "mplsInterfaceLabelMaxIn" : {
2093
+ "nodetype" : "member",
2094
+ "module" : "MPLS-LSR-STD-MIB"
2095
+ },
2096
+ "mplsInterfaceLabelMinOut" : {
2097
+ "nodetype" : "member",
2098
+ "module" : "MPLS-LSR-STD-MIB"
2099
+ },
2100
+ "mplsInterfaceLabelMaxOut" : {
2101
+ "nodetype" : "member",
2102
+ "module" : "MPLS-LSR-STD-MIB"
2103
+ },
2104
+ "mplsInterfaceTotalBandwidth" : {
2105
+ "nodetype" : "member",
2106
+ "module" : "MPLS-LSR-STD-MIB"
2107
+ },
2108
+ "mplsInterfaceAvailableBandwidth" : {
2109
+ "nodetype" : "member",
2110
+ "module" : "MPLS-LSR-STD-MIB"
2111
+ },
2112
+ "mplsInterfaceLabelParticipationType" : {
2113
+ "nodetype" : "member",
2114
+ "module" : "MPLS-LSR-STD-MIB"
2115
+ },
2116
+ }, # members
2117
+ "description" :
2118
+ """Collection of objects needed for MPLS interface
2119
+ and interface performance information.""",
2120
+ }, # group
2121
+ "mplsInSegmentGroup" : {
2122
+ "nodetype" : "group",
2123
+ "moduleName" : "MPLS-LSR-STD-MIB",
2124
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.2",
2125
+ "status" : "current",
2126
+ "members" : {
2127
+ "mplsInSegmentIndexNext" : {
2128
+ "nodetype" : "member",
2129
+ "module" : "MPLS-LSR-STD-MIB"
2130
+ },
2131
+ "mplsInSegmentInterface" : {
2132
+ "nodetype" : "member",
2133
+ "module" : "MPLS-LSR-STD-MIB"
2134
+ },
2135
+ "mplsInSegmentLabel" : {
2136
+ "nodetype" : "member",
2137
+ "module" : "MPLS-LSR-STD-MIB"
2138
+ },
2139
+ "mplsInSegmentLabelPtr" : {
2140
+ "nodetype" : "member",
2141
+ "module" : "MPLS-LSR-STD-MIB"
2142
+ },
2143
+ "mplsInSegmentNPop" : {
2144
+ "nodetype" : "member",
2145
+ "module" : "MPLS-LSR-STD-MIB"
2146
+ },
2147
+ "mplsInSegmentAddrFamily" : {
2148
+ "nodetype" : "member",
2149
+ "module" : "MPLS-LSR-STD-MIB"
2150
+ },
2151
+ "mplsInSegmentXCIndex" : {
2152
+ "nodetype" : "member",
2153
+ "module" : "MPLS-LSR-STD-MIB"
2154
+ },
2155
+ "mplsInSegmentOwner" : {
2156
+ "nodetype" : "member",
2157
+ "module" : "MPLS-LSR-STD-MIB"
2158
+ },
2159
+ "mplsInSegmentRowStatus" : {
2160
+ "nodetype" : "member",
2161
+ "module" : "MPLS-LSR-STD-MIB"
2162
+ },
2163
+ "mplsInSegmentStorageType" : {
2164
+ "nodetype" : "member",
2165
+ "module" : "MPLS-LSR-STD-MIB"
2166
+ },
2167
+ "mplsInSegmentTrafficParamPtr" : {
2168
+ "nodetype" : "member",
2169
+ "module" : "MPLS-LSR-STD-MIB"
2170
+ },
2171
+ "mplsInSegmentMapIndex" : {
2172
+ "nodetype" : "member",
2173
+ "module" : "MPLS-LSR-STD-MIB"
2174
+ },
2175
+ }, # members
2176
+ "description" :
2177
+ """Collection of objects needed to implement an in-
2178
+ segment.""",
2179
+ }, # group
2180
+ "mplsOutSegmentGroup" : {
2181
+ "nodetype" : "group",
2182
+ "moduleName" : "MPLS-LSR-STD-MIB",
2183
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.3",
2184
+ "status" : "current",
2185
+ "members" : {
2186
+ "mplsOutSegmentIndexNext" : {
2187
+ "nodetype" : "member",
2188
+ "module" : "MPLS-LSR-STD-MIB"
2189
+ },
2190
+ "mplsOutSegmentInterface" : {
2191
+ "nodetype" : "member",
2192
+ "module" : "MPLS-LSR-STD-MIB"
2193
+ },
2194
+ "mplsOutSegmentPushTopLabel" : {
2195
+ "nodetype" : "member",
2196
+ "module" : "MPLS-LSR-STD-MIB"
2197
+ },
2198
+ "mplsOutSegmentTopLabel" : {
2199
+ "nodetype" : "member",
2200
+ "module" : "MPLS-LSR-STD-MIB"
2201
+ },
2202
+ "mplsOutSegmentTopLabelPtr" : {
2203
+ "nodetype" : "member",
2204
+ "module" : "MPLS-LSR-STD-MIB"
2205
+ },
2206
+ "mplsOutSegmentNextHopAddrType" : {
2207
+ "nodetype" : "member",
2208
+ "module" : "MPLS-LSR-STD-MIB"
2209
+ },
2210
+ "mplsOutSegmentNextHopAddr" : {
2211
+ "nodetype" : "member",
2212
+ "module" : "MPLS-LSR-STD-MIB"
2213
+ },
2214
+ "mplsOutSegmentXCIndex" : {
2215
+ "nodetype" : "member",
2216
+ "module" : "MPLS-LSR-STD-MIB"
2217
+ },
2218
+ "mplsOutSegmentOwner" : {
2219
+ "nodetype" : "member",
2220
+ "module" : "MPLS-LSR-STD-MIB"
2221
+ },
2222
+ "mplsOutSegmentPerfOctets" : {
2223
+ "nodetype" : "member",
2224
+ "module" : "MPLS-LSR-STD-MIB"
2225
+ },
2226
+ "mplsOutSegmentPerfDiscards" : {
2227
+ "nodetype" : "member",
2228
+ "module" : "MPLS-LSR-STD-MIB"
2229
+ },
2230
+ "mplsOutSegmentPerfErrors" : {
2231
+ "nodetype" : "member",
2232
+ "module" : "MPLS-LSR-STD-MIB"
2233
+ },
2234
+ "mplsOutSegmentRowStatus" : {
2235
+ "nodetype" : "member",
2236
+ "module" : "MPLS-LSR-STD-MIB"
2237
+ },
2238
+ "mplsOutSegmentStorageType" : {
2239
+ "nodetype" : "member",
2240
+ "module" : "MPLS-LSR-STD-MIB"
2241
+ },
2242
+ "mplsOutSegmentTrafficParamPtr" : {
2243
+ "nodetype" : "member",
2244
+ "module" : "MPLS-LSR-STD-MIB"
2245
+ },
2246
+ }, # members
2247
+ "description" :
2248
+ """Collection of objects needed to implement an out-
2249
+
2250
+
2251
+
2252
+ segment.""",
2253
+ }, # group
2254
+ "mplsXCGroup" : {
2255
+ "nodetype" : "group",
2256
+ "moduleName" : "MPLS-LSR-STD-MIB",
2257
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.4",
2258
+ "status" : "current",
2259
+ "members" : {
2260
+ "mplsXCIndexNext" : {
2261
+ "nodetype" : "member",
2262
+ "module" : "MPLS-LSR-STD-MIB"
2263
+ },
2264
+ "mplsXCLspId" : {
2265
+ "nodetype" : "member",
2266
+ "module" : "MPLS-LSR-STD-MIB"
2267
+ },
2268
+ "mplsXCLabelStackIndex" : {
2269
+ "nodetype" : "member",
2270
+ "module" : "MPLS-LSR-STD-MIB"
2271
+ },
2272
+ "mplsXCOwner" : {
2273
+ "nodetype" : "member",
2274
+ "module" : "MPLS-LSR-STD-MIB"
2275
+ },
2276
+ "mplsXCStorageType" : {
2277
+ "nodetype" : "member",
2278
+ "module" : "MPLS-LSR-STD-MIB"
2279
+ },
2280
+ "mplsXCAdminStatus" : {
2281
+ "nodetype" : "member",
2282
+ "module" : "MPLS-LSR-STD-MIB"
2283
+ },
2284
+ "mplsXCOperStatus" : {
2285
+ "nodetype" : "member",
2286
+ "module" : "MPLS-LSR-STD-MIB"
2287
+ },
2288
+ "mplsXCRowStatus" : {
2289
+ "nodetype" : "member",
2290
+ "module" : "MPLS-LSR-STD-MIB"
2291
+ },
2292
+ "mplsXCNotificationsEnable" : {
2293
+ "nodetype" : "member",
2294
+ "module" : "MPLS-LSR-STD-MIB"
2295
+ },
2296
+ }, # members
2297
+ "description" :
2298
+ """Collection of objects needed to implement a
2299
+ cross-connect entry.""",
2300
+ }, # group
2301
+ "mplsPerfGroup" : {
2302
+ "nodetype" : "group",
2303
+ "moduleName" : "MPLS-LSR-STD-MIB",
2304
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.5",
2305
+ "status" : "current",
2306
+ "members" : {
2307
+ "mplsInSegmentPerfOctets" : {
2308
+ "nodetype" : "member",
2309
+ "module" : "MPLS-LSR-STD-MIB"
2310
+ },
2311
+ "mplsInSegmentPerfPackets" : {
2312
+ "nodetype" : "member",
2313
+ "module" : "MPLS-LSR-STD-MIB"
2314
+ },
2315
+ "mplsInSegmentPerfErrors" : {
2316
+ "nodetype" : "member",
2317
+ "module" : "MPLS-LSR-STD-MIB"
2318
+ },
2319
+ "mplsInSegmentPerfDiscards" : {
2320
+ "nodetype" : "member",
2321
+ "module" : "MPLS-LSR-STD-MIB"
2322
+ },
2323
+ "mplsInSegmentPerfDiscontinuityTime" : {
2324
+ "nodetype" : "member",
2325
+ "module" : "MPLS-LSR-STD-MIB"
2326
+ },
2327
+ "mplsOutSegmentPerfOctets" : {
2328
+ "nodetype" : "member",
2329
+ "module" : "MPLS-LSR-STD-MIB"
2330
+ },
2331
+ "mplsOutSegmentPerfPackets" : {
2332
+ "nodetype" : "member",
2333
+ "module" : "MPLS-LSR-STD-MIB"
2334
+ },
2335
+ "mplsOutSegmentPerfDiscards" : {
2336
+ "nodetype" : "member",
2337
+ "module" : "MPLS-LSR-STD-MIB"
2338
+ },
2339
+ "mplsOutSegmentPerfDiscontinuityTime" : {
2340
+ "nodetype" : "member",
2341
+ "module" : "MPLS-LSR-STD-MIB"
2342
+ },
2343
+ "mplsInterfacePerfInLabelsInUse" : {
2344
+ "nodetype" : "member",
2345
+ "module" : "MPLS-LSR-STD-MIB"
2346
+ },
2347
+ "mplsInterfacePerfInLabelLookupFailures" : {
2348
+ "nodetype" : "member",
2349
+ "module" : "MPLS-LSR-STD-MIB"
2350
+ },
2351
+ "mplsInterfacePerfOutFragmentedPkts" : {
2352
+ "nodetype" : "member",
2353
+ "module" : "MPLS-LSR-STD-MIB"
2354
+ },
2355
+ "mplsInterfacePerfOutLabelsInUse" : {
2356
+ "nodetype" : "member",
2357
+ "module" : "MPLS-LSR-STD-MIB"
2358
+ },
2359
+ }, # members
2360
+ "description" :
2361
+ """Collection of objects providing performance
2362
+ information
2363
+ about an LSR.""",
2364
+ }, # group
2365
+ "mplsHCInSegmentPerfGroup" : {
2366
+ "nodetype" : "group",
2367
+ "moduleName" : "MPLS-LSR-STD-MIB",
2368
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.6",
2369
+ "status" : "current",
2370
+ "members" : {
2371
+ "mplsInSegmentPerfHCOctets" : {
2372
+ "nodetype" : "member",
2373
+ "module" : "MPLS-LSR-STD-MIB"
2374
+ },
2375
+ }, # members
2376
+ "description" :
2377
+ """Object(s) providing performance information
2378
+ specific to out-segments for which the object
2379
+ mplsInterfaceInOctets wraps around too quickly.""",
2380
+ }, # group
2381
+ "mplsHCOutSegmentPerfGroup" : {
2382
+ "nodetype" : "group",
2383
+ "moduleName" : "MPLS-LSR-STD-MIB",
2384
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.7",
2385
+ "status" : "current",
2386
+ "members" : {
2387
+ "mplsOutSegmentPerfHCOctets" : {
2388
+ "nodetype" : "member",
2389
+ "module" : "MPLS-LSR-STD-MIB"
2390
+ },
2391
+ }, # members
2392
+ "description" :
2393
+ """Object(s) providing performance information
2394
+ specific to out-segments for which the object
2395
+ mplsInterfaceOutOctets wraps around too
2396
+ quickly.""",
2397
+ }, # group
2398
+ "mplsLabelStackGroup" : {
2399
+ "nodetype" : "group",
2400
+ "moduleName" : "MPLS-LSR-STD-MIB",
2401
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.8",
2402
+ "status" : "current",
2403
+ "members" : {
2404
+ "mplsLabelStackLabel" : {
2405
+ "nodetype" : "member",
2406
+ "module" : "MPLS-LSR-STD-MIB"
2407
+ },
2408
+ "mplsLabelStackLabelPtr" : {
2409
+ "nodetype" : "member",
2410
+ "module" : "MPLS-LSR-STD-MIB"
2411
+ },
2412
+ "mplsLabelStackRowStatus" : {
2413
+ "nodetype" : "member",
2414
+ "module" : "MPLS-LSR-STD-MIB"
2415
+ },
2416
+ "mplsLabelStackStorageType" : {
2417
+ "nodetype" : "member",
2418
+ "module" : "MPLS-LSR-STD-MIB"
2419
+ },
2420
+ "mplsMaxLabelStackDepth" : {
2421
+ "nodetype" : "member",
2422
+ "module" : "MPLS-LSR-STD-MIB"
2423
+ },
2424
+ "mplsLabelStackIndexNext" : {
2425
+ "nodetype" : "member",
2426
+ "module" : "MPLS-LSR-STD-MIB"
2427
+ },
2428
+ }, # members
2429
+ "description" :
2430
+ """Objects needed to support label stacking.""",
2431
+ }, # group
2432
+ "mplsLsrNotificationGroup" : {
2433
+ "nodetype" : "group",
2434
+ "moduleName" : "MPLS-LSR-STD-MIB",
2435
+ "oid" : "1.3.6.1.2.1.10.166.2.2.1.9",
2436
+ "status" : "current",
2437
+ "members" : {
2438
+ "mplsXCUp" : {
2439
+ "nodetype" : "member",
2440
+ "module" : "MPLS-LSR-STD-MIB"
2441
+ },
2442
+ "mplsXCDown" : {
2443
+ "nodetype" : "member",
2444
+ "module" : "MPLS-LSR-STD-MIB"
2445
+ },
2446
+ }, # members
2447
+ "description" :
2448
+ """Set of notifications implemented in this
2449
+ module.""",
2450
+ }, # group
2451
+ }, # groups
2452
+
2453
+ "compliances" : {
2454
+ "mplsLsrModuleFullCompliance" : {
2455
+ "nodetype" : "compliance",
2456
+ "moduleName" : "MPLS-LSR-STD-MIB",
2457
+ "oid" : "1.3.6.1.2.1.10.166.2.2.2.1",
2458
+ "status" : "current",
2459
+ "description" :
2460
+ """Compliance statement for agents that provide full
2461
+ support for MPLS-LSR-STD-MIB. Such devices can
2462
+ then be monitored and also be configured using
2463
+ this MIB module.""",
2464
+ "requires" : {
2465
+ "ifGeneralInformationGroup" : {
2466
+ "nodetype" : "mandatory",
2467
+ "module" : "IF-MIB"
2468
+ },
2469
+ "ifCounterDiscontinuityGroup" : {
2470
+ "nodetype" : "mandatory",
2471
+ "module" : "IF-MIB"
2472
+ },
2473
+ "mplsInterfaceGroup" : {
2474
+ "nodetype" : "mandatory",
2475
+ "module" : "MPLS-LSR-STD-MIB"
2476
+ },
2477
+ "mplsInSegmentGroup" : {
2478
+ "nodetype" : "mandatory",
2479
+ "module" : "MPLS-LSR-STD-MIB"
2480
+ },
2481
+ "mplsOutSegmentGroup" : {
2482
+ "nodetype" : "mandatory",
2483
+ "module" : "MPLS-LSR-STD-MIB"
2484
+ },
2485
+ "mplsXCGroup" : {
2486
+ "nodetype" : "mandatory",
2487
+ "module" : "MPLS-LSR-STD-MIB"
2488
+ },
2489
+ "mplsPerfGroup" : {
2490
+ "nodetype" : "mandatory",
2491
+ "module" : "MPLS-LSR-STD-MIB"
2492
+ },
2493
+ "mplsLabelStackGroup" : {
2494
+ "nodetype" : "optional",
2495
+ "module" : "MPLS-LSR-STD-MIB",
2496
+ "description" :
2497
+ """This group is only mandatory for LSRs that wish to
2498
+ support the modification of LSP label stacks.""",
2499
+ },
2500
+ "mplsHCInSegmentPerfGroup" : {
2501
+ "nodetype" : "optional",
2502
+ "module" : "MPLS-LSR-STD-MIB",
2503
+ "description" :
2504
+ """This group is mandatory for those in-segment entries
2505
+ for which the object mplsInSegmentOutOctets wraps
2506
+ around too quickly based on the criteria specified in
2507
+ RFC 2863 for high-capacity counters.""",
2508
+ },
2509
+ "mplsHCOutSegmentPerfGroup" : {
2510
+ "nodetype" : "optional",
2511
+ "module" : "MPLS-LSR-STD-MIB",
2512
+ "description" :
2513
+ """This group is mandatory for those out-segment entries
2514
+ for which the object mplsOutSegmentPerfOctets wraps
2515
+ around too quickly based on the criteria specified in
2516
+ RFC 2863 for high-capacity counters.""",
2517
+ },
2518
+ "mplsLsrNotificationGroup" : {
2519
+ "nodetype" : "optional",
2520
+ "module" : "MPLS-LSR-STD-MIB",
2521
+ "description" :
2522
+ """This group is only mandatory for those implementations
2523
+ which can efficiently implement the notifications
2524
+ contained in this group.""",
2525
+ },
2526
+ }, # requires
2527
+ "refinements" : {
2528
+ "mplsInSegmentRowStatus" : {
2529
+ "module" : "MPLS-LSR-STD-MIB",
2530
+ "syntax" : {
2531
+ "type" : {
2532
+ "basetype" : "Enumeration",
2533
+ "parent module" : {
2534
+ "name" : "SNMPv2-TC",
2535
+ "type" : "RowStatus",
2536
+ },
2537
+ "active" : {
2538
+ "nodetype" : "namednumber",
2539
+ "number" : "1"
2540
+ },
2541
+ "notInService" : {
2542
+ "nodetype" : "namednumber",
2543
+ "number" : "2"
2544
+ },
2545
+ },
2546
+ }, # syntax
2547
+ "writesyntax" : {
2548
+ "type" : {
2549
+ "basetype" : "Enumeration",
2550
+ "parent module" : {
2551
+ "name" : "SNMPv2-TC",
2552
+ "type" : "RowStatus",
2553
+ },
2554
+ "active" : {
2555
+ "nodetype" : "namednumber",
2556
+ "number" : "1"
2557
+ },
2558
+ "notInService" : {
2559
+ "nodetype" : "namednumber",
2560
+ "number" : "2"
2561
+ },
2562
+ "createAndGo" : {
2563
+ "nodetype" : "namednumber",
2564
+ "number" : "4"
2565
+ },
2566
+ "destroy" : {
2567
+ "nodetype" : "namednumber",
2568
+ "number" : "6"
2569
+ },
2570
+ },
2571
+ }, # writesyntax
2572
+ "description" :
2573
+ """Support for createAndWait and notReady is
2574
+ not required.""",
2575
+ },
2576
+ "mplsOutSegmentNextHopAddrType" : {
2577
+ "module" : "MPLS-LSR-STD-MIB",
2578
+ "syntax" : {
2579
+ "type" : {
2580
+ "basetype" : "Enumeration",
2581
+ "parent module" : {
2582
+ "name" : "INET-ADDRESS-MIB",
2583
+ "type" : "InetAddressType",
2584
+ },
2585
+ "unknown" : {
2586
+ "nodetype" : "namednumber",
2587
+ "number" : "0"
2588
+ },
2589
+ "ipv4" : {
2590
+ "nodetype" : "namednumber",
2591
+ "number" : "1"
2592
+ },
2593
+ "ipv6" : {
2594
+ "nodetype" : "namednumber",
2595
+ "number" : "2"
2596
+ },
2597
+ },
2598
+ }, # syntax
2599
+ "description" :
2600
+ """Only unknown(0), ipv4(1) and ipv6(2) support
2601
+ is required.""",
2602
+ },
2603
+ "mplsOutSegmentNextHopAddr" : {
2604
+ "module" : "MPLS-LSR-STD-MIB",
2605
+ "syntax" : {
2606
+ "type" : {
2607
+ "basetype" : "OctetString",
2608
+ "parent module" : {
2609
+ "name" : "INET-ADDRESS-MIB",
2610
+ "type" : "InetAddress",
2611
+ },
2612
+ "ranges" : [
2613
+ {
2614
+ "min" : "0",
2615
+ "max" : "0"
2616
+ },
2617
+ {
2618
+ "min" : "4",
2619
+ "max" : "4"
2620
+ },
2621
+ {
2622
+ "min" : "16",
2623
+ "max" : "16"
2624
+ },
2625
+ ],
2626
+ "range" : {
2627
+ "min" : "0",
2628
+ "max" : "16"
2629
+ },
2630
+ },
2631
+ }, # syntax
2632
+ "description" :
2633
+ """An implementation is only required to support
2634
+ unknown(0), ipv4(1) and ipv6(2) sizes.""",
2635
+ },
2636
+ "mplsOutSegmentRowStatus" : {
2637
+ "module" : "MPLS-LSR-STD-MIB",
2638
+ "syntax" : {
2639
+ "type" : {
2640
+ "basetype" : "Enumeration",
2641
+ "parent module" : {
2642
+ "name" : "SNMPv2-TC",
2643
+ "type" : "RowStatus",
2644
+ },
2645
+ "active" : {
2646
+ "nodetype" : "namednumber",
2647
+ "number" : "1"
2648
+ },
2649
+ "notInService" : {
2650
+ "nodetype" : "namednumber",
2651
+ "number" : "2"
2652
+ },
2653
+ },
2654
+ }, # syntax
2655
+ "writesyntax" : {
2656
+ "type" : {
2657
+ "basetype" : "Enumeration",
2658
+ "parent module" : {
2659
+ "name" : "SNMPv2-TC",
2660
+ "type" : "RowStatus",
2661
+ },
2662
+ "active" : {
2663
+ "nodetype" : "namednumber",
2664
+ "number" : "1"
2665
+ },
2666
+ "notInService" : {
2667
+ "nodetype" : "namednumber",
2668
+ "number" : "2"
2669
+ },
2670
+ "createAndGo" : {
2671
+ "nodetype" : "namednumber",
2672
+ "number" : "4"
2673
+ },
2674
+ "destroy" : {
2675
+ "nodetype" : "namednumber",
2676
+ "number" : "6"
2677
+ },
2678
+ },
2679
+ }, # writesyntax
2680
+ "description" :
2681
+ """Support for createAndWait and notReady is not
2682
+ required.""",
2683
+ },
2684
+ "mplsLabelStackRowStatus" : {
2685
+ "module" : "MPLS-LSR-STD-MIB",
2686
+ "syntax" : {
2687
+ "type" : {
2688
+ "basetype" : "Enumeration",
2689
+ "parent module" : {
2690
+ "name" : "SNMPv2-TC",
2691
+ "type" : "RowStatus",
2692
+ },
2693
+ "active" : {
2694
+ "nodetype" : "namednumber",
2695
+ "number" : "1"
2696
+ },
2697
+ "notInService" : {
2698
+ "nodetype" : "namednumber",
2699
+ "number" : "2"
2700
+ },
2701
+ },
2702
+ }, # syntax
2703
+ "writesyntax" : {
2704
+ "type" : {
2705
+ "basetype" : "Enumeration",
2706
+ "parent module" : {
2707
+ "name" : "SNMPv2-TC",
2708
+ "type" : "RowStatus",
2709
+ },
2710
+ "active" : {
2711
+ "nodetype" : "namednumber",
2712
+ "number" : "1"
2713
+ },
2714
+ "notInService" : {
2715
+ "nodetype" : "namednumber",
2716
+ "number" : "2"
2717
+ },
2718
+ "createAndGo" : {
2719
+ "nodetype" : "namednumber",
2720
+ "number" : "4"
2721
+ },
2722
+ "destroy" : {
2723
+ "nodetype" : "namednumber",
2724
+ "number" : "6"
2725
+ },
2726
+ },
2727
+ }, # writesyntax
2728
+ "description" :
2729
+ """Support for createAndWait and notReady is not
2730
+ required.""",
2731
+ },
2732
+ "mplsXCRowStatus" : {
2733
+ "module" : "MPLS-LSR-STD-MIB",
2734
+ "syntax" : {
2735
+ "type" : {
2736
+ "basetype" : "Enumeration",
2737
+ "parent module" : {
2738
+ "name" : "SNMPv2-TC",
2739
+ "type" : "RowStatus",
2740
+ },
2741
+ "active" : {
2742
+ "nodetype" : "namednumber",
2743
+ "number" : "1"
2744
+ },
2745
+ "notInService" : {
2746
+ "nodetype" : "namednumber",
2747
+ "number" : "2"
2748
+ },
2749
+ },
2750
+ }, # syntax
2751
+ "writesyntax" : {
2752
+ "type" : {
2753
+ "basetype" : "Enumeration",
2754
+ "parent module" : {
2755
+ "name" : "SNMPv2-TC",
2756
+ "type" : "RowStatus",
2757
+ },
2758
+ "active" : {
2759
+ "nodetype" : "namednumber",
2760
+ "number" : "1"
2761
+ },
2762
+ "notInService" : {
2763
+ "nodetype" : "namednumber",
2764
+ "number" : "2"
2765
+ },
2766
+ "createAndGo" : {
2767
+ "nodetype" : "namednumber",
2768
+ "number" : "4"
2769
+ },
2770
+ "destroy" : {
2771
+ "nodetype" : "namednumber",
2772
+ "number" : "6"
2773
+ },
2774
+ },
2775
+ }, # writesyntax
2776
+ "description" :
2777
+ """Support for createAndWait and notReady is not
2778
+ required.""",
2779
+ },
2780
+ }, # refinements
2781
+
2782
+ }, # compliance
2783
+ "mplsLsrModuleReadOnlyCompliance" : {
2784
+ "nodetype" : "compliance",
2785
+ "moduleName" : "MPLS-LSR-STD-MIB",
2786
+ "oid" : "1.3.6.1.2.1.10.166.2.2.2.2",
2787
+ "status" : "current",
2788
+ "description" :
2789
+ """Compliance requirement for implementations that only
2790
+ provide read-only support for MPLS-LSR-STD-MIB. Such
2791
+ devices can then be monitored but cannot be configured
2792
+ using this MIB module.""",
2793
+ "requires" : {
2794
+ "ifGeneralInformationGroup" : {
2795
+ "nodetype" : "mandatory",
2796
+ "module" : "IF-MIB"
2797
+ },
2798
+ "ifCounterDiscontinuityGroup" : {
2799
+ "nodetype" : "mandatory",
2800
+ "module" : "IF-MIB"
2801
+ },
2802
+ "mplsInterfaceGroup" : {
2803
+ "nodetype" : "mandatory",
2804
+ "module" : "MPLS-LSR-STD-MIB"
2805
+ },
2806
+ "mplsInSegmentGroup" : {
2807
+ "nodetype" : "mandatory",
2808
+ "module" : "MPLS-LSR-STD-MIB"
2809
+ },
2810
+ "mplsOutSegmentGroup" : {
2811
+ "nodetype" : "mandatory",
2812
+ "module" : "MPLS-LSR-STD-MIB"
2813
+ },
2814
+ "mplsXCGroup" : {
2815
+ "nodetype" : "mandatory",
2816
+ "module" : "MPLS-LSR-STD-MIB"
2817
+ },
2818
+ "mplsPerfGroup" : {
2819
+ "nodetype" : "mandatory",
2820
+ "module" : "MPLS-LSR-STD-MIB"
2821
+ },
2822
+ "mplsLabelStackGroup" : {
2823
+ "nodetype" : "optional",
2824
+ "module" : "MPLS-LSR-STD-MIB",
2825
+ "description" :
2826
+ """This group is only mandatory for LSRs that wish to
2827
+ support the modification of LSP label stacks.""",
2828
+ },
2829
+ "mplsHCInSegmentPerfGroup" : {
2830
+ "nodetype" : "optional",
2831
+ "module" : "MPLS-LSR-STD-MIB",
2832
+ "description" :
2833
+ """This group is mandatory for those in-segment entries
2834
+ for which the object mplsInSegmentOutOctets wraps
2835
+ around too quickly based on the criteria specified in
2836
+ RFC 2863 for high-capacity counters.""",
2837
+ },
2838
+ "mplsHCOutSegmentPerfGroup" : {
2839
+ "nodetype" : "optional",
2840
+ "module" : "MPLS-LSR-STD-MIB",
2841
+ "description" :
2842
+ """This group is mandatory for those out-segment entries
2843
+ for which the object mplsOutSegmentPerfOctets wraps
2844
+ around too quickly based on the criteria specified in
2845
+ RFC 2863 for high-capacity counters.""",
2846
+ },
2847
+ "mplsLsrNotificationGroup" : {
2848
+ "nodetype" : "optional",
2849
+ "module" : "MPLS-LSR-STD-MIB",
2850
+ "description" :
2851
+ """This group is only mandatory for those implementations
2852
+ which can efficiently implement the notifications
2853
+ contained in this group.""",
2854
+ },
2855
+ }, # requires
2856
+ "refinements" : {
2857
+ "mplsInSegmentLabel" : {
2858
+ "module" : "MPLS-LSR-STD-MIB",
2859
+ "access" : "readonly",
2860
+ "description" :
2861
+ """Write access is not required.""",
2862
+ },
2863
+ "mplsInSegmentLabelPtr" : {
2864
+ "module" : "MPLS-LSR-STD-MIB",
2865
+ "access" : "readonly",
2866
+ "description" :
2867
+ """Write access is not required.""",
2868
+ },
2869
+ "mplsInSegmentNPop" : {
2870
+ "module" : "MPLS-LSR-STD-MIB",
2871
+ "syntax" : {
2872
+ "type" : {
2873
+ "basetype" : "Integer32",
2874
+ "ranges" : [
2875
+ {
2876
+ "min" : "1",
2877
+ "max" : "1"
2878
+ },
2879
+ ],
2880
+ "range" : {
2881
+ "min" : "1",
2882
+ "max" : "1"
2883
+ },
2884
+ },
2885
+ }, # syntax
2886
+ "access" : "readonly",
2887
+ "description" :
2888
+ """Write access is not required. This object
2889
+ SHOULD be set to 1 if it is read-only.""",
2890
+ },
2891
+ "mplsInSegmentAddrFamily" : {
2892
+ "module" : "MPLS-LSR-STD-MIB",
2893
+ "access" : "readonly",
2894
+ "description" :
2895
+ """Write access is not required. A value of other(0)
2896
+ should be supported because there may be cases where
2897
+ the agent may not know about or support any address
2898
+ types.""",
2899
+ },
2900
+ "mplsInSegmentRowStatus" : {
2901
+ "module" : "MPLS-LSR-STD-MIB",
2902
+ "syntax" : {
2903
+ "type" : {
2904
+ "basetype" : "Enumeration",
2905
+ "parent module" : {
2906
+ "name" : "SNMPv2-TC",
2907
+ "type" : "RowStatus",
2908
+ },
2909
+ "active" : {
2910
+ "nodetype" : "namednumber",
2911
+ "number" : "1"
2912
+ },
2913
+ },
2914
+ }, # syntax
2915
+ "access" : "readonly",
2916
+ "description" :
2917
+ """Write access is not required.""",
2918
+ },
2919
+ "mplsInSegmentStorageType" : {
2920
+ "module" : "MPLS-LSR-STD-MIB",
2921
+ "access" : "readonly",
2922
+ "description" :
2923
+ """Write access is not required.""",
2924
+ },
2925
+ "mplsOutSegmentInterface" : {
2926
+ "module" : "MPLS-LSR-STD-MIB",
2927
+ "access" : "readonly",
2928
+ "description" :
2929
+ """Write access is not required.""",
2930
+ },
2931
+ "mplsOutSegmentPushTopLabel" : {
2932
+ "module" : "MPLS-LSR-STD-MIB",
2933
+ "access" : "readonly",
2934
+ "description" :
2935
+ """Write access is not required.""",
2936
+ },
2937
+ "mplsOutSegmentTopLabel" : {
2938
+ "module" : "MPLS-LSR-STD-MIB",
2939
+ "access" : "readonly",
2940
+ "description" :
2941
+ """Write access is not required.""",
2942
+ },
2943
+ "mplsOutSegmentTopLabelPtr" : {
2944
+ "module" : "MPLS-LSR-STD-MIB",
2945
+ "access" : "readonly",
2946
+ "description" :
2947
+ """Write access is not required.""",
2948
+ },
2949
+ "mplsOutSegmentNextHopAddrType" : {
2950
+ "module" : "MPLS-LSR-STD-MIB",
2951
+ "syntax" : {
2952
+ "type" : {
2953
+ "basetype" : "Enumeration",
2954
+ "parent module" : {
2955
+ "name" : "INET-ADDRESS-MIB",
2956
+ "type" : "InetAddressType",
2957
+ },
2958
+ "unknown" : {
2959
+ "nodetype" : "namednumber",
2960
+ "number" : "0"
2961
+ },
2962
+ "ipv4" : {
2963
+ "nodetype" : "namednumber",
2964
+ "number" : "1"
2965
+ },
2966
+ "ipv6" : {
2967
+ "nodetype" : "namednumber",
2968
+ "number" : "2"
2969
+ },
2970
+ },
2971
+ }, # syntax
2972
+ "access" : "readonly",
2973
+ "description" :
2974
+ """Write access is not required. Only unknown(0),
2975
+ ipv4(1) and ipv6(2) support is required.""",
2976
+ },
2977
+ "mplsOutSegmentNextHopAddr" : {
2978
+ "module" : "MPLS-LSR-STD-MIB",
2979
+ "syntax" : {
2980
+ "type" : {
2981
+ "basetype" : "OctetString",
2982
+ "parent module" : {
2983
+ "name" : "INET-ADDRESS-MIB",
2984
+ "type" : "InetAddress",
2985
+ },
2986
+ "ranges" : [
2987
+ {
2988
+ "min" : "0",
2989
+ "max" : "0"
2990
+ },
2991
+ {
2992
+ "min" : "4",
2993
+ "max" : "4"
2994
+ },
2995
+ {
2996
+ "min" : "16",
2997
+ "max" : "16"
2998
+ },
2999
+ ],
3000
+ "range" : {
3001
+ "min" : "0",
3002
+ "max" : "16"
3003
+ },
3004
+ },
3005
+ }, # syntax
3006
+ "access" : "readonly",
3007
+ "description" :
3008
+ """Write access is not required. An implementation is
3009
+ only required to support unknown(0), ipv4(1) and
3010
+ ipv6(2) sizes.""",
3011
+ },
3012
+ "mplsOutSegmentRowStatus" : {
3013
+ "module" : "MPLS-LSR-STD-MIB",
3014
+ "syntax" : {
3015
+ "type" : {
3016
+ "basetype" : "Enumeration",
3017
+ "parent module" : {
3018
+ "name" : "SNMPv2-TC",
3019
+ "type" : "RowStatus",
3020
+ },
3021
+ "active" : {
3022
+ "nodetype" : "namednumber",
3023
+ "number" : "1"
3024
+ },
3025
+ },
3026
+ }, # syntax
3027
+ "access" : "readonly",
3028
+ "description" :
3029
+ """Write access is not required.""",
3030
+ },
3031
+ "mplsOutSegmentStorageType" : {
3032
+ "module" : "MPLS-LSR-STD-MIB",
3033
+ "access" : "readonly",
3034
+ "description" :
3035
+ """Write access is not required.""",
3036
+ },
3037
+ "mplsXCLabelStackIndex" : {
3038
+ "module" : "MPLS-LSR-STD-MIB",
3039
+ "access" : "readonly",
3040
+ "description" :
3041
+ """Write access is not required.""",
3042
+ },
3043
+ "mplsXCAdminStatus" : {
3044
+ "module" : "MPLS-LSR-STD-MIB",
3045
+ "access" : "readonly",
3046
+ "description" :
3047
+ """Read only support is required.""",
3048
+ },
3049
+ "mplsXCRowStatus" : {
3050
+ "module" : "MPLS-LSR-STD-MIB",
3051
+ "syntax" : {
3052
+ "type" : {
3053
+ "basetype" : "Enumeration",
3054
+ "parent module" : {
3055
+ "name" : "SNMPv2-TC",
3056
+ "type" : "RowStatus",
3057
+ },
3058
+ "active" : {
3059
+ "nodetype" : "namednumber",
3060
+ "number" : "1"
3061
+ },
3062
+ },
3063
+ }, # syntax
3064
+ "access" : "readonly",
3065
+ "description" :
3066
+ """Write access is not required.""",
3067
+ },
3068
+ "mplsXCStorageType" : {
3069
+ "module" : "MPLS-LSR-STD-MIB",
3070
+ "access" : "readonly",
3071
+ "description" :
3072
+ """Write access is not required.""",
3073
+ },
3074
+ "mplsLabelStackLabel" : {
3075
+ "module" : "MPLS-LSR-STD-MIB",
3076
+ "access" : "readonly",
3077
+ "description" :
3078
+ """Write access is not required.""",
3079
+ },
3080
+ "mplsLabelStackLabelPtr" : {
3081
+ "module" : "MPLS-LSR-STD-MIB",
3082
+ "access" : "readonly",
3083
+ "description" :
3084
+ """Write access is not required.""",
3085
+ },
3086
+ "mplsLabelStackRowStatus" : {
3087
+ "module" : "MPLS-LSR-STD-MIB",
3088
+ "access" : "readonly",
3089
+ "description" :
3090
+ """Write access is not required.""",
3091
+ },
3092
+ "mplsLabelStackStorageType" : {
3093
+ "module" : "MPLS-LSR-STD-MIB",
3094
+ "access" : "readonly",
3095
+ "description" :
3096
+ """Write access is not required.""",
3097
+ },
3098
+ }, # refinements
3099
+
3100
+ }, # compliance
3101
+ }, # compliances
3102
+
3103
+ }