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,3657 @@
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-LDP-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MPLS-LDP-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MPLS-LDP-STD-MIB",
11
+
12
+ "MPLS-LDP-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Multiprotocol Label Switching (mpls)
17
+ Working Group""",
18
+ "contact" :
19
+ """Joan Cucchiara (jcucchiara@mindspring.com)
20
+ Marconi Communications, Inc.
21
+
22
+ Hans Sjostrand (hans@ipunplugged.com)
23
+ ipUnplugged
24
+
25
+ James V. Luciani (james_luciani@mindspring.com)
26
+ Marconi Communications, Inc.
27
+
28
+ Working Group Chairs:
29
+ George Swallow, email: swallow@cisco.com
30
+ Loa Andersson, email: loa@pi.se
31
+
32
+ MPLS Working Group, email: mpls@uu.net""",
33
+ "description" :
34
+ """Copyright (C) The Internet Society (2004). The
35
+ initial version of this MIB module was published
36
+
37
+
38
+
39
+ in RFC 3815. For full legal notices see the RFC
40
+ itself or see:
41
+ http://www.ietf.org/copyrights/ianamib.html
42
+
43
+ This MIB contains managed object definitions for the
44
+ 'Multiprotocol Label Switching, Label Distribution
45
+ Protocol, LDP' document.""",
46
+ "revisions" : (
47
+ {
48
+ "date" : "2004-06-03 00:00",
49
+ "description" :
50
+ """Initial version published as part of RFC 3815.""",
51
+ },
52
+ ),
53
+ "identity node" : "mplsLdpStdMIB",
54
+ },
55
+
56
+ "imports" : (
57
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
58
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
59
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
60
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
61
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
63
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
64
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
65
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
66
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
67
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
68
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
69
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
70
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
71
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
72
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
73
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
74
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
75
+ {"module" : "DIFFSERV-MIB", "name" : "IndexInteger"},
76
+ {"module" : "DIFFSERV-MIB", "name" : "IndexIntegerNextFree"},
77
+ {"module" : "MPLS-TC-STD-MIB", "name" : "mplsStdMIB"},
78
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLabelDistributionMethod"},
79
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLdpIdentifier"},
80
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLdpLabelType"},
81
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLspType"},
82
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsLsrIdentifier"},
83
+ {"module" : "MPLS-TC-STD-MIB", "name" : "MplsRetentionMode"},
84
+ {"module" : "MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
85
+ ),
86
+
87
+ "nodes" : {
88
+ "mplsLdpStdMIB" : {
89
+ "nodetype" : "node",
90
+ "moduleName" : "MPLS-LDP-STD-MIB",
91
+ "oid" : "1.3.6.1.2.1.10.166.4",
92
+ "status" : "current",
93
+ }, # node
94
+ "mplsLdpNotifications" : {
95
+ "nodetype" : "node",
96
+ "moduleName" : "MPLS-LDP-STD-MIB",
97
+ "oid" : "1.3.6.1.2.1.10.166.4.0",
98
+ }, # node
99
+ "mplsLdpObjects" : {
100
+ "nodetype" : "node",
101
+ "moduleName" : "MPLS-LDP-STD-MIB",
102
+ "oid" : "1.3.6.1.2.1.10.166.4.1",
103
+ }, # node
104
+ "mplsLdpLsrObjects" : {
105
+ "nodetype" : "node",
106
+ "moduleName" : "MPLS-LDP-STD-MIB",
107
+ "oid" : "1.3.6.1.2.1.10.166.4.1.1",
108
+ }, # node
109
+ "mplsLdpLsrId" : {
110
+ "nodetype" : "scalar",
111
+ "moduleName" : "MPLS-LDP-STD-MIB",
112
+ "oid" : "1.3.6.1.2.1.10.166.4.1.1.1",
113
+ "status" : "current",
114
+ "syntax" : {
115
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLsrIdentifier"},
116
+ },
117
+ "access" : "readonly",
118
+ "description" :
119
+ """The Label Switching Router's Identifier.""",
120
+ }, # scalar
121
+ "mplsLdpLsrLoopDetectionCapable" : {
122
+ "nodetype" : "scalar",
123
+ "moduleName" : "MPLS-LDP-STD-MIB",
124
+ "oid" : "1.3.6.1.2.1.10.166.4.1.1.2",
125
+ "status" : "current",
126
+ "syntax" : {
127
+ "type" : {
128
+ "basetype" : "Enumeration",
129
+ "none" : {
130
+ "nodetype" : "namednumber",
131
+ "number" : "1"
132
+ },
133
+ "other" : {
134
+ "nodetype" : "namednumber",
135
+ "number" : "2"
136
+ },
137
+ "hopCount" : {
138
+ "nodetype" : "namednumber",
139
+ "number" : "3"
140
+ },
141
+ "pathVector" : {
142
+ "nodetype" : "namednumber",
143
+ "number" : "4"
144
+ },
145
+ "hopCountAndPathVector" : {
146
+ "nodetype" : "namednumber",
147
+ "number" : "5"
148
+ },
149
+ },
150
+ },
151
+ "access" : "readonly",
152
+ "description" :
153
+ """A indication of whether this
154
+ Label Switching Router supports
155
+ loop detection.
156
+
157
+ none(1) -- Loop Detection is not supported
158
+ on this LSR.
159
+
160
+ other(2) -- Loop Detection is supported but
161
+ by a method other than those
162
+ listed below.
163
+
164
+ hopCount(3) -- Loop Detection is supported by
165
+ Hop Count only.
166
+
167
+ pathVector(4) -- Loop Detection is supported by
168
+ Path Vector only.
169
+
170
+ hopCountAndPathVector(5) -- Loop Detection is
171
+ supported by both Hop Count
172
+ And Path Vector.
173
+
174
+ Since Loop Detection is determined during
175
+ Session Initialization, an individual session
176
+ may not be running with loop detection. This
177
+ object simply gives an indication of whether or not the
178
+ LSR has the ability to support Loop Detection and
179
+ which types.""",
180
+ }, # scalar
181
+ "mplsLdpEntityObjects" : {
182
+ "nodetype" : "node",
183
+ "moduleName" : "MPLS-LDP-STD-MIB",
184
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2",
185
+ }, # node
186
+ "mplsLdpEntityLastChange" : {
187
+ "nodetype" : "scalar",
188
+ "moduleName" : "MPLS-LDP-STD-MIB",
189
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.1",
190
+ "status" : "current",
191
+ "syntax" : {
192
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
193
+ },
194
+ "access" : "readonly",
195
+ "description" :
196
+ """The value of sysUpTime at the time of the most
197
+ recent addition or deletion of an entry
198
+ to/from the mplsLdpEntityTable/mplsLdpEntityStatsTable, or
199
+ the most recent change in value of any objects in the
200
+ mplsLdpEntityTable.
201
+
202
+
203
+
204
+ If no such changes have occurred since the last
205
+ re-initialization of the local management subsystem,
206
+ then this object contains a zero value.""",
207
+ }, # scalar
208
+ "mplsLdpEntityIndexNext" : {
209
+ "nodetype" : "scalar",
210
+ "moduleName" : "MPLS-LDP-STD-MIB",
211
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.2",
212
+ "status" : "current",
213
+ "syntax" : {
214
+ "type" : { "module" :"DIFFSERV-MIB", "name" : "IndexIntegerNextFree"},
215
+ },
216
+ "access" : "readonly",
217
+ "description" :
218
+ """This object contains an appropriate value to
219
+ be used for mplsLdpEntityIndex when creating
220
+ entries in the mplsLdpEntityTable. The value
221
+ 0 indicates that no unassigned entries are
222
+ available.""",
223
+ }, # scalar
224
+ "mplsLdpEntityTable" : {
225
+ "nodetype" : "table",
226
+ "moduleName" : "MPLS-LDP-STD-MIB",
227
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3",
228
+ "status" : "current",
229
+ "description" :
230
+ """This table contains information about the
231
+ MPLS Label Distribution Protocol Entities which
232
+ exist on this Label Switching Router (LSR)
233
+ or Label Edge Router (LER).""",
234
+ }, # table
235
+ "mplsLdpEntityEntry" : {
236
+ "nodetype" : "row",
237
+ "moduleName" : "MPLS-LDP-STD-MIB",
238
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1",
239
+ "create" : "true",
240
+ "status" : "current",
241
+ "linkage" : [
242
+ "mplsLdpEntityLdpId",
243
+ "mplsLdpEntityIndex",
244
+ ],
245
+ "description" :
246
+ """An entry in this table represents an LDP entity.
247
+ An entry can be created by a network administrator
248
+ or by an SNMP agent as instructed by LDP.""",
249
+ }, # row
250
+ "mplsLdpEntityLdpId" : {
251
+ "nodetype" : "column",
252
+ "moduleName" : "MPLS-LDP-STD-MIB",
253
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.1",
254
+ "status" : "current",
255
+ "syntax" : {
256
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLdpIdentifier"},
257
+ },
258
+ "access" : "noaccess",
259
+ "description" :
260
+ """The LDP identifier.""",
261
+ "reference" :
262
+ """RFC3036, LDP Specification, Section on LDP Identifiers.""",
263
+ }, # column
264
+ "mplsLdpEntityIndex" : {
265
+ "nodetype" : "column",
266
+ "moduleName" : "MPLS-LDP-STD-MIB",
267
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.2",
268
+ "status" : "current",
269
+ "syntax" : {
270
+ "type" : { "module" :"DIFFSERV-MIB", "name" : "IndexInteger"},
271
+ },
272
+ "access" : "noaccess",
273
+ "description" :
274
+ """This index is used as a secondary index to uniquely
275
+ identify this row. Before creating a row in this table,
276
+ the 'mplsLdpEntityIndexNext' object should be retrieved.
277
+ That value should be used for the value of this index
278
+ when creating a row in this table. NOTE: if a value
279
+ of zero (0) is retrieved, that indicates that no rows
280
+ can be created in this table at this time.
281
+
282
+ A secondary index (this object) is meaningful to some
283
+ but not all, LDP implementations. For example
284
+ an LDP implementation which uses PPP would
285
+ use this index to differentiate PPP sub-links.
286
+
287
+ Another way to use this index is to give this the
288
+ value of ifIndex. However, this is dependant
289
+
290
+
291
+
292
+ on the implementation.""",
293
+ }, # column
294
+ "mplsLdpEntityProtocolVersion" : {
295
+ "nodetype" : "column",
296
+ "moduleName" : "MPLS-LDP-STD-MIB",
297
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.3",
298
+ "status" : "current",
299
+ "syntax" : {
300
+ "type" : {
301
+ "basetype" : "Unsigned32",
302
+ "ranges" : [
303
+ {
304
+ "min" : "1",
305
+ "max" : "65535"
306
+ },
307
+ ],
308
+ "range" : {
309
+ "min" : "1",
310
+ "max" : "65535"
311
+ },
312
+ },
313
+ },
314
+ "access" : "readwrite",
315
+ "default" : "1",
316
+ "description" :
317
+ """The version number of the LDP protocol which will be
318
+ used in the session initialization message.
319
+
320
+ Section 3.5.3 in the LDP Specification specifies
321
+ that the version of the LDP protocol is negotiated during
322
+ session establishment. The value of this object
323
+ represents the value that is sent in the initialization
324
+ message.""",
325
+ "reference" :
326
+ """RFC3036, LDP Specification, Section 3.5.3 Initialization
327
+ Message.""",
328
+ }, # column
329
+ "mplsLdpEntityAdminStatus" : {
330
+ "nodetype" : "column",
331
+ "moduleName" : "MPLS-LDP-STD-MIB",
332
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.4",
333
+ "status" : "current",
334
+ "syntax" : {
335
+ "type" : {
336
+ "basetype" : "Enumeration",
337
+ "enable" : {
338
+ "nodetype" : "namednumber",
339
+ "number" : "1"
340
+ },
341
+ "disable" : {
342
+ "nodetype" : "namednumber",
343
+ "number" : "2"
344
+ },
345
+ },
346
+ },
347
+ "access" : "readwrite",
348
+ "default" : "enable",
349
+ "description" :
350
+ """The administrative status of this LDP Entity.
351
+ If this object is changed from 'enable' to 'disable'
352
+ and this entity has already attempted to establish
353
+ contact with a Peer, then all contact with that
354
+ Peer is lost and all information from that Peer
355
+ needs to be removed from the MIB. (This implies
356
+ that the network management subsystem should clean
357
+ up any related entry in the mplsLdpPeerTable. This
358
+ further implies that a 'tear-down' for that session
359
+ is issued and the session and all information related
360
+ to that session cease to exist).
361
+
362
+ At this point the operator is able to change values
363
+ which are related to this entity.
364
+
365
+ When the admin status is set back to 'enable', then
366
+ this Entity will attempt to establish a new session
367
+ with the Peer.""",
368
+ }, # column
369
+ "mplsLdpEntityOperStatus" : {
370
+ "nodetype" : "column",
371
+ "moduleName" : "MPLS-LDP-STD-MIB",
372
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.5",
373
+ "status" : "current",
374
+ "syntax" : {
375
+ "type" : {
376
+ "basetype" : "Enumeration",
377
+ "unknown" : {
378
+ "nodetype" : "namednumber",
379
+ "number" : "1"
380
+ },
381
+ "enabled" : {
382
+ "nodetype" : "namednumber",
383
+ "number" : "2"
384
+ },
385
+ "disabled" : {
386
+ "nodetype" : "namednumber",
387
+ "number" : "3"
388
+ },
389
+ },
390
+ },
391
+ "access" : "readonly",
392
+ "description" :
393
+ """The operational status of this LDP Entity.
394
+
395
+ The value of unknown(1) indicates that the
396
+ operational status cannot be determined at
397
+ this time. The value of unknown should be
398
+ a transient condition before changing
399
+ to enabled(2) or disabled(3).""",
400
+ }, # column
401
+ "mplsLdpEntityTcpPort" : {
402
+ "nodetype" : "column",
403
+ "moduleName" : "MPLS-LDP-STD-MIB",
404
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.6",
405
+ "status" : "current",
406
+ "syntax" : {
407
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
408
+ },
409
+ "access" : "readwrite",
410
+ "default" : "646",
411
+ "description" :
412
+ """The TCP Port for
413
+ LDP. The default value is the well-known
414
+ value of this port.""",
415
+ "reference" :
416
+ """RFC3036, LDP Specification, Section 3.10, Well-known
417
+ Numbers, and Section 3.10.1. UDP and TCP Ports.""",
418
+ }, # column
419
+ "mplsLdpEntityUdpDscPort" : {
420
+ "nodetype" : "column",
421
+ "moduleName" : "MPLS-LDP-STD-MIB",
422
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.7",
423
+ "status" : "current",
424
+ "syntax" : {
425
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
426
+ },
427
+ "access" : "readwrite",
428
+ "default" : "646",
429
+ "description" :
430
+ """The UDP Discovery Port for
431
+ LDP. The default value is the
432
+ well-known value for this port.""",
433
+ "reference" :
434
+ """RFC3036, LDP Specification, Section 2.4.1,
435
+ Basic Discovery Mechanism, Section 2.4.2,
436
+ Extended Discovery Mechanism, Section
437
+ 3.10, Well-known Numbers, and Section 3.10.1.
438
+
439
+
440
+
441
+ UDP and TCP Ports.""",
442
+ }, # column
443
+ "mplsLdpEntityMaxPduLength" : {
444
+ "nodetype" : "column",
445
+ "moduleName" : "MPLS-LDP-STD-MIB",
446
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.8",
447
+ "status" : "current",
448
+ "syntax" : {
449
+ "type" : {
450
+ "basetype" : "Unsigned32",
451
+ "ranges" : [
452
+ {
453
+ "min" : "256",
454
+ "max" : "65535"
455
+ },
456
+ ],
457
+ "range" : {
458
+ "min" : "256",
459
+ "max" : "65535"
460
+ },
461
+ },
462
+ },
463
+ "access" : "readwrite",
464
+ "default" : "4096",
465
+ "units" : "octets",
466
+ "description" :
467
+ """The maximum PDU Length that is sent in
468
+ the Common Session Parameters of an Initialization
469
+ Message. According to the LDP Specification [RFC3036]
470
+ a value of 255 or less specifies the
471
+ default maximum length of 4096 octets, this is why
472
+ the value of this object starts at 256. The operator
473
+ should explicitly choose the default value (i.e., 4096),
474
+ or some other value.
475
+
476
+ The receiving LSR MUST calculate the maximum PDU
477
+ length for the session by using the smaller of its and
478
+ its peer's proposals for Max PDU Length.""",
479
+ "reference" :
480
+ """RFC3036, LDP Specification, Section 3.5.3.
481
+ Initialization Message.""",
482
+ }, # column
483
+ "mplsLdpEntityKeepAliveHoldTimer" : {
484
+ "nodetype" : "column",
485
+ "moduleName" : "MPLS-LDP-STD-MIB",
486
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.9",
487
+ "status" : "current",
488
+ "syntax" : {
489
+ "type" : {
490
+ "basetype" : "Unsigned32",
491
+ "ranges" : [
492
+ {
493
+ "min" : "1",
494
+ "max" : "65535"
495
+ },
496
+ ],
497
+ "range" : {
498
+ "min" : "1",
499
+ "max" : "65535"
500
+ },
501
+ },
502
+ },
503
+ "access" : "readwrite",
504
+ "default" : "40",
505
+ "units" : "seconds",
506
+ "description" :
507
+ """The 16-bit integer value which is the proposed keep
508
+ alive hold timer for this LDP Entity.""",
509
+ }, # column
510
+ "mplsLdpEntityHelloHoldTimer" : {
511
+ "nodetype" : "column",
512
+ "moduleName" : "MPLS-LDP-STD-MIB",
513
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.10",
514
+ "status" : "current",
515
+ "syntax" : {
516
+ "type" : {
517
+ "basetype" : "Unsigned32",
518
+ "ranges" : [
519
+ {
520
+ "min" : "0",
521
+ "max" : "65535"
522
+ },
523
+ ],
524
+ "range" : {
525
+ "min" : "0",
526
+ "max" : "65535"
527
+ },
528
+ },
529
+ },
530
+ "access" : "readwrite",
531
+ "default" : "0",
532
+ "units" : "seconds",
533
+ "description" :
534
+ """The 16-bit integer value which is the proposed Hello
535
+ hold timer for this LDP Entity. The Hello Hold time
536
+ in seconds.
537
+
538
+
539
+
540
+ An LSR maintains a record of Hellos received
541
+ from potential peers. This object represents
542
+ the Hold Time in the Common Hello Parameters TLV of
543
+ the Hello Message.
544
+
545
+ A value of 0 is a default value and should be
546
+ interpretted in conjunction with the
547
+ mplsLdpEntityTargetPeer object.
548
+
549
+ If the value of this object is 0: if the value of the
550
+ mplsLdpEntityTargetPeer object is false(2), then this
551
+ specifies that the Hold Time's actual default value is
552
+ 15 seconds (i.e., the default Hold time for Link Hellos
553
+ is 15 seconds). Otherwise if the value of the
554
+ mplsLdpEntityTargetPeer object is true(1), then this
555
+ specifies that the Hold Time's actual default value is
556
+ 45 seconds (i.e., the default Hold time for Targeted
557
+ Hellos is 45 seconds).
558
+
559
+ A value of 65535 means infinite (i.e., wait forever).
560
+
561
+ All other values represent the amount of time in
562
+ seconds to wait for a Hello Message. Setting the
563
+ hold time to a value smaller than 15 is not
564
+ recommended, although not forbidden according
565
+ to RFC3036.""",
566
+ "reference" :
567
+ """RFC3036, LDP Specification, Section 3.5.2.,
568
+ Hello Message.""",
569
+ }, # column
570
+ "mplsLdpEntityInitSessionThreshold" : {
571
+ "nodetype" : "column",
572
+ "moduleName" : "MPLS-LDP-STD-MIB",
573
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.11",
574
+ "status" : "current",
575
+ "syntax" : {
576
+ "type" : {
577
+ "basetype" : "Integer32",
578
+ "ranges" : [
579
+ {
580
+ "min" : "0",
581
+ "max" : "100"
582
+ },
583
+ ],
584
+ "range" : {
585
+ "min" : "0",
586
+ "max" : "100"
587
+ },
588
+ },
589
+ },
590
+ "access" : "readwrite",
591
+ "default" : "8",
592
+ "description" :
593
+ """When attempting to establish a session with
594
+ a given Peer, the given LDP Entity should
595
+ send out the SNMP notification,
596
+ 'mplsLdpInitSessionThresholdExceeded', when
597
+ the number of Session Initialization messages
598
+ sent exceeds this threshold.
599
+
600
+ The notification is used to notify an
601
+ operator when this Entity and its Peer are
602
+ possibly engaged in an endless sequence
603
+ of messages as each NAKs the other's
604
+
605
+
606
+
607
+ Initialization messages with Error Notification
608
+ messages. Setting this threshold which triggers
609
+ the notification is one way to notify the
610
+ operator. The notification should be generated
611
+ each time this threshold is exceeded and
612
+ for every subsequent Initialization message
613
+ which is NAK'd with an Error Notification
614
+ message after this threshold is exceeded.
615
+
616
+ A value of 0 (zero) for this object
617
+ indicates that the threshold is infinity, thus
618
+ the SNMP notification will never be generated.""",
619
+ "reference" :
620
+ """RFC3036, LDP Specification,
621
+ Section 2.5.3 Session Initialization.""",
622
+ }, # column
623
+ "mplsLdpEntityLabelDistMethod" : {
624
+ "nodetype" : "column",
625
+ "moduleName" : "MPLS-LDP-STD-MIB",
626
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.12",
627
+ "status" : "current",
628
+ "syntax" : {
629
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabelDistributionMethod"},
630
+ },
631
+ "access" : "readwrite",
632
+ "description" :
633
+ """For any given LDP session, the method of
634
+ label distribution must be specified.""",
635
+ }, # column
636
+ "mplsLdpEntityLabelRetentionMode" : {
637
+ "nodetype" : "column",
638
+ "moduleName" : "MPLS-LDP-STD-MIB",
639
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.13",
640
+ "status" : "current",
641
+ "syntax" : {
642
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsRetentionMode"},
643
+ },
644
+ "access" : "readwrite",
645
+ "description" :
646
+ """The LDP Entity can be configured to use either
647
+ conservative or liberal label retention mode.
648
+
649
+ If the value of this object is conservative(1)
650
+ then advertized label mappings are retained
651
+ only if they will be used to forward packets,
652
+ i.e., if label came from a valid next hop.
653
+
654
+ If the value of this object is liberal(2)
655
+ then all advertized label mappings are retained
656
+ whether they are from a valid next hop or not.""",
657
+ }, # column
658
+ "mplsLdpEntityPathVectorLimit" : {
659
+ "nodetype" : "column",
660
+ "moduleName" : "MPLS-LDP-STD-MIB",
661
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.14",
662
+ "status" : "current",
663
+ "syntax" : {
664
+ "type" : {
665
+ "basetype" : "Integer32",
666
+ "ranges" : [
667
+ {
668
+ "min" : "0",
669
+ "max" : "255"
670
+ },
671
+ ],
672
+ "range" : {
673
+ "min" : "0",
674
+ "max" : "255"
675
+ },
676
+ },
677
+ },
678
+ "access" : "readwrite",
679
+ "description" :
680
+ """If the value of this object is 0 (zero) then
681
+ Loop Detection for Path Vectors is disabled.
682
+
683
+ Otherwise, if this object has a value greater than
684
+ zero, then Loop Dection for Path Vectors is enabled,
685
+ and the Path Vector Limit is this value.
686
+ Also, the value of the object,
687
+ 'mplsLdpLsrLoopDetectionCapable', must be set to
688
+ either 'pathVector(4)' or 'hopCountAndPathVector(5)',
689
+ if this object has a value greater than 0 (zero),
690
+ otherwise it is ignored.""",
691
+ "reference" :
692
+ """RFC3036, LDP Specification, Section 2.8 Loop Dection,
693
+ Section 3.4.5 Path Vector TLV.""",
694
+ }, # column
695
+ "mplsLdpEntityHopCountLimit" : {
696
+ "nodetype" : "column",
697
+ "moduleName" : "MPLS-LDP-STD-MIB",
698
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.15",
699
+ "status" : "current",
700
+ "syntax" : {
701
+ "type" : {
702
+ "basetype" : "Integer32",
703
+ "ranges" : [
704
+ {
705
+ "min" : "0",
706
+ "max" : "255"
707
+ },
708
+ ],
709
+ "range" : {
710
+ "min" : "0",
711
+ "max" : "255"
712
+ },
713
+ },
714
+ },
715
+ "access" : "readwrite",
716
+ "default" : "0",
717
+ "description" :
718
+ """If the value of this object is 0 (zero),
719
+ then Loop Detection using Hop Counters is
720
+ disabled.
721
+
722
+ If the value of this object is greater than
723
+ 0 (zero) then Loop Detection using Hop
724
+ Counters is enabled, and this object
725
+ specifies this Entity's maximum allowable
726
+ value for the Hop Count.
727
+ Also, the value of the object
728
+ mplsLdpLsrLoopDetectionCapable must be set
729
+ to either 'hopCount(3)' or
730
+ 'hopCountAndPathVector(5)' if this object
731
+ has a value greater than 0 (zero), otherwise
732
+ it is ignored.""",
733
+ }, # column
734
+ "mplsLdpEntityTransportAddrKind" : {
735
+ "nodetype" : "column",
736
+ "moduleName" : "MPLS-LDP-STD-MIB",
737
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.16",
738
+ "status" : "current",
739
+ "syntax" : {
740
+ "type" : {
741
+ "basetype" : "Enumeration",
742
+ "interface" : {
743
+ "nodetype" : "namednumber",
744
+ "number" : "1"
745
+ },
746
+ "loopback" : {
747
+ "nodetype" : "namednumber",
748
+ "number" : "2"
749
+ },
750
+ },
751
+ },
752
+ "access" : "readwrite",
753
+ "default" : "loopback",
754
+ "description" :
755
+ """This specifies whether the loopback or interface
756
+ address is to be used as the transport address
757
+ in the transport address TLV of the
758
+ hello message.
759
+
760
+ If the value is interface(1), then the IP
761
+ address of the interface from which hello
762
+ messages are sent is used as the transport
763
+ address in the hello message.
764
+
765
+ Otherwise, if the value is loopback(2), then the IP
766
+ address of the loopback interface is used as the
767
+ transport address in the hello message.""",
768
+ }, # column
769
+ "mplsLdpEntityTargetPeer" : {
770
+ "nodetype" : "column",
771
+ "moduleName" : "MPLS-LDP-STD-MIB",
772
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.17",
773
+ "status" : "current",
774
+ "syntax" : {
775
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
776
+ },
777
+ "access" : "readwrite",
778
+ "default" : "false",
779
+ "description" :
780
+ """If this LDP entity uses targeted peer then set
781
+ this to true.""",
782
+ }, # column
783
+ "mplsLdpEntityTargetPeerAddrType" : {
784
+ "nodetype" : "column",
785
+ "moduleName" : "MPLS-LDP-STD-MIB",
786
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.18",
787
+ "status" : "current",
788
+ "syntax" : {
789
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
790
+ },
791
+ "access" : "readwrite",
792
+ "description" :
793
+ """The type of the internetwork layer address used for
794
+ the Extended Discovery. This object indicates how
795
+ the value of mplsLdpEntityTargetPeerAddr is to
796
+ be interpreted.""",
797
+ }, # column
798
+ "mplsLdpEntityTargetPeerAddr" : {
799
+ "nodetype" : "column",
800
+ "moduleName" : "MPLS-LDP-STD-MIB",
801
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.19",
802
+ "status" : "current",
803
+ "syntax" : {
804
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
805
+ },
806
+ "access" : "readwrite",
807
+ "description" :
808
+ """The value of the internetwork layer address
809
+ used for the Extended Discovery. The value of
810
+ mplsLdpEntityTargetPeerAddrType specifies how
811
+ this address is to be interpreted.""",
812
+ }, # column
813
+ "mplsLdpEntityLabelType" : {
814
+ "nodetype" : "column",
815
+ "moduleName" : "MPLS-LDP-STD-MIB",
816
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.20",
817
+ "status" : "current",
818
+ "syntax" : {
819
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLdpLabelType"},
820
+ },
821
+ "access" : "readwrite",
822
+ "description" :
823
+ """Specifies the optional parameters for the LDP
824
+ Initialization Message.
825
+
826
+ If the value is generic(1) then no
827
+ optional parameters will be sent in
828
+ the LDP Initialization message associated
829
+ with this Entity.
830
+
831
+ If the value is atmParameters(2) then
832
+ a row must be created in the
833
+ mplsLdpEntityAtmTable, which
834
+ corresponds to this entry.
835
+
836
+ If the value is frameRelayParameters(3) then
837
+ a row must be created in the
838
+ mplsLdpEntityFrameRelayTable, which
839
+ corresponds to this entry.""",
840
+ "reference" :
841
+ """RFC3036, LDP Specification, Section 3.5.3.,
842
+ Initialization Message.""",
843
+ }, # column
844
+ "mplsLdpEntityDiscontinuityTime" : {
845
+ "nodetype" : "column",
846
+ "moduleName" : "MPLS-LDP-STD-MIB",
847
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.21",
848
+ "status" : "current",
849
+ "syntax" : {
850
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
851
+ },
852
+ "access" : "readonly",
853
+ "description" :
854
+ """The value of sysUpTime on the most recent occasion
855
+ at which any one or more of this entity's counters
856
+ suffered a discontinuity. The relevant counters
857
+ are the specific instances associated with this
858
+ entity of any Counter32 object contained
859
+ in the 'mplsLdpEntityStatsTable'. If no such
860
+ discontinuities have occurred since the last
861
+ re-initialization of the local management
862
+ subsystem, then this object contains a zero
863
+ value.""",
864
+ }, # column
865
+ "mplsLdpEntityStorageType" : {
866
+ "nodetype" : "column",
867
+ "moduleName" : "MPLS-LDP-STD-MIB",
868
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.22",
869
+ "status" : "current",
870
+ "syntax" : {
871
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
872
+ },
873
+ "access" : "readwrite",
874
+ "default" : "nonVolatile",
875
+ "description" :
876
+ """The storage type for this conceptual row.
877
+ Conceptual rows having the value 'permanent(4)'
878
+ need not allow write-access to any columnar
879
+ objects in the row.""",
880
+ }, # column
881
+ "mplsLdpEntityRowStatus" : {
882
+ "nodetype" : "column",
883
+ "moduleName" : "MPLS-LDP-STD-MIB",
884
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.3.1.23",
885
+ "status" : "current",
886
+ "syntax" : {
887
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
888
+ },
889
+ "access" : "readwrite",
890
+ "description" :
891
+ """The status of this conceptual row. All writable
892
+ objects in this row may be modified at any
893
+ time, however, as described in detail in
894
+ the section entitled, 'Changing Values After
895
+ Session Establishment', and again described
896
+ in the DESCRIPTION clause of the
897
+ mplsLdpEntityAdminStatus object, if a session
898
+ has been initiated with a Peer, changing objects
899
+ in this table will wreak havoc with the session
900
+ and interrupt traffic. To repeat again:
901
+ the recommended procedure is to
902
+ set the mplsLdpEntityAdminStatus to down, thereby
903
+ explicitly causing a session to be torn down. Then,
904
+ change objects in this entry, then set
905
+ the mplsLdpEntityAdminStatus to enable,
906
+ which enables a new session to be initiated.""",
907
+ }, # column
908
+ "mplsLdpEntityStatsTable" : {
909
+ "nodetype" : "table",
910
+ "moduleName" : "MPLS-LDP-STD-MIB",
911
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4",
912
+ "status" : "current",
913
+ "description" :
914
+ """This table is a read-only table which augments
915
+ the mplsLdpEntityTable. The purpose of this
916
+ table is to keep statistical information about
917
+ the LDP Entities on the LSR.""",
918
+ }, # table
919
+ "mplsLdpEntityStatsEntry" : {
920
+ "nodetype" : "row",
921
+ "moduleName" : "MPLS-LDP-STD-MIB",
922
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1",
923
+ "status" : "current",
924
+ "linkage" : [
925
+ { "MPLS-LDP-STD-MIB" : {
926
+ "indexkind" : "augments",
927
+ "relatedNode" : "mplsLdpEntityEntry",
928
+ }},
929
+ ],
930
+ "description" :
931
+ """A row in this table contains statistical information
932
+ about an LDP Entity. Some counters contained in a
933
+ row are for fatal errors received during a former
934
+ LDP Session associated with this entry. For example,
935
+ an LDP PDU received on a TCP connection during an
936
+ LDP Session contains a fatal error. That
937
+ error is counted here, because the
938
+ session is terminated.
939
+
940
+ If the error is NOT fatal (i.e., the Session
941
+ remains), then the error is counted in the
942
+ mplsLdpSessionStatsEntry.""",
943
+ }, # row
944
+ "mplsLdpEntityStatsSessionAttempts" : {
945
+ "nodetype" : "column",
946
+ "moduleName" : "MPLS-LDP-STD-MIB",
947
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.1",
948
+ "status" : "current",
949
+ "syntax" : {
950
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
951
+ },
952
+ "access" : "readonly",
953
+ "description" :
954
+ """A count of the Session Initialization messages
955
+ which were sent or received by this LDP Entity and
956
+ were NAK'd. In other words, this counter counts
957
+ the number of session initializations that failed.
958
+
959
+ Discontinuities in the value of this counter can occur
960
+ at re-initialization of the management system, and at
961
+ other times as indicated by the value of
962
+ mplsLdpEntityDiscontinuityTime.""",
963
+ }, # column
964
+ "mplsLdpEntityStatsSessionRejectedNoHelloErrors" : {
965
+ "nodetype" : "column",
966
+ "moduleName" : "MPLS-LDP-STD-MIB",
967
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.2",
968
+ "status" : "current",
969
+ "syntax" : {
970
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
971
+ },
972
+ "access" : "readonly",
973
+ "description" :
974
+ """A count of the Session Rejected/No Hello Error
975
+ Notification Messages sent or received by
976
+ this LDP Entity.
977
+
978
+ Discontinuities in the value of this counter can occur
979
+ at re-initialization of the management system, and at
980
+ other times as indicated by the value of
981
+ mplsLdpEntityDiscontinuityTime.""",
982
+ }, # column
983
+ "mplsLdpEntityStatsSessionRejectedAdErrors" : {
984
+ "nodetype" : "column",
985
+ "moduleName" : "MPLS-LDP-STD-MIB",
986
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.3",
987
+ "status" : "current",
988
+ "syntax" : {
989
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
990
+ },
991
+ "access" : "readonly",
992
+ "description" :
993
+ """A count of the Session Rejected/Parameters
994
+ Advertisement Mode Error Notification Messages sent
995
+ or received by this LDP Entity.
996
+
997
+ Discontinuities in the value of this counter can occur
998
+ at re-initialization of the management system, and at
999
+ other times as indicated by the value of
1000
+ mplsLdpEntityDiscontinuityTime.""",
1001
+ }, # column
1002
+ "mplsLdpEntityStatsSessionRejectedMaxPduErrors" : {
1003
+ "nodetype" : "column",
1004
+ "moduleName" : "MPLS-LDP-STD-MIB",
1005
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.4",
1006
+ "status" : "current",
1007
+ "syntax" : {
1008
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1009
+ },
1010
+ "access" : "readonly",
1011
+ "description" :
1012
+ """A count of the Session Rejected/Parameters
1013
+
1014
+ Max Pdu Length Error Notification Messages sent
1015
+ or received by this LDP Entity.
1016
+
1017
+ Discontinuities in the value of this counter can occur
1018
+ at re-initialization of the management system, and at
1019
+ other times as indicated by the value of
1020
+ mplsLdpEntityDiscontinuityTime.""",
1021
+ }, # column
1022
+ "mplsLdpEntityStatsSessionRejectedLRErrors" : {
1023
+ "nodetype" : "column",
1024
+ "moduleName" : "MPLS-LDP-STD-MIB",
1025
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.5",
1026
+ "status" : "current",
1027
+ "syntax" : {
1028
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1029
+ },
1030
+ "access" : "readonly",
1031
+ "description" :
1032
+ """A count of the Session Rejected/Parameters
1033
+ Label Range Notification Messages sent
1034
+ or received by this LDP Entity.
1035
+
1036
+ Discontinuities in the value of this counter can occur
1037
+ at re-initialization of the management system, and at
1038
+ other times as indicated by the value of
1039
+ mplsLdpEntityDiscontinuityTime.""",
1040
+ }, # column
1041
+ "mplsLdpEntityStatsBadLdpIdentifierErrors" : {
1042
+ "nodetype" : "column",
1043
+ "moduleName" : "MPLS-LDP-STD-MIB",
1044
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.6",
1045
+ "status" : "current",
1046
+ "syntax" : {
1047
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1048
+ },
1049
+ "access" : "readonly",
1050
+ "description" :
1051
+ """This object counts the number of Bad LDP Identifier
1052
+ Fatal Errors detected by the session(s)
1053
+ (past and present) associated with this LDP Entity.
1054
+
1055
+ Discontinuities in the value of this counter can occur
1056
+ at re-initialization of the management system, and at
1057
+ other times as indicated by the value of
1058
+ mplsLdpEntityDiscontinuityTime.""",
1059
+ "reference" :
1060
+ """RFC3036, LDP Specification, Section 3.5.1.2.""",
1061
+ }, # column
1062
+ "mplsLdpEntityStatsBadPduLengthErrors" : {
1063
+ "nodetype" : "column",
1064
+ "moduleName" : "MPLS-LDP-STD-MIB",
1065
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.7",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1069
+ },
1070
+ "access" : "readonly",
1071
+ "description" :
1072
+ """This object counts the number of Bad PDU Length
1073
+ Fatal Errors detected by the session(s)
1074
+ (past and present) associated with this LDP Entity.
1075
+
1076
+ Discontinuities in the value of this counter can occur
1077
+ at re-initialization of the management system, and at
1078
+ other times as indicated by the value of
1079
+ mplsLdpEntityDiscontinuityTime.""",
1080
+ "reference" :
1081
+ """RFC3036, LDP Specification, Section 3.5.1.2.""",
1082
+ }, # column
1083
+ "mplsLdpEntityStatsBadMessageLengthErrors" : {
1084
+ "nodetype" : "column",
1085
+ "moduleName" : "MPLS-LDP-STD-MIB",
1086
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.8",
1087
+ "status" : "current",
1088
+ "syntax" : {
1089
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1090
+ },
1091
+ "access" : "readonly",
1092
+ "description" :
1093
+ """This object counts the number of Bad Message
1094
+ Length Fatal Errors detected by the session(s)
1095
+ (past and present) associated with this LDP Entity.
1096
+
1097
+ Discontinuities in the value of this counter can occur
1098
+ at re-initialization of the management system, and at
1099
+ other times as indicated by the value of
1100
+ mplsLdpEntityDiscontinuityTime.""",
1101
+ "reference" :
1102
+ """RFC3036, LDP Specification, Section 3.5.1.2.""",
1103
+ }, # column
1104
+ "mplsLdpEntityStatsBadTlvLengthErrors" : {
1105
+ "nodetype" : "column",
1106
+ "moduleName" : "MPLS-LDP-STD-MIB",
1107
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.9",
1108
+ "status" : "current",
1109
+ "syntax" : {
1110
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1111
+ },
1112
+ "access" : "readonly",
1113
+ "description" :
1114
+ """This object counts the number of Bad TLV
1115
+ Length Fatal Errors detected by the session(s)
1116
+ (past and present) associated with this LDP Entity.
1117
+
1118
+ Discontinuities in the value of this counter can occur
1119
+ at re-initialization of the management system, and at
1120
+ other times as indicated by the value of
1121
+ mplsLdpEntityDiscontinuityTime.""",
1122
+ "reference" :
1123
+ """RFC3036, LDP Specification, Section 3.5.1.2.""",
1124
+ }, # column
1125
+ "mplsLdpEntityStatsMalformedTlvValueErrors" : {
1126
+ "nodetype" : "column",
1127
+ "moduleName" : "MPLS-LDP-STD-MIB",
1128
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.10",
1129
+ "status" : "current",
1130
+ "syntax" : {
1131
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1132
+ },
1133
+ "access" : "readonly",
1134
+ "description" :
1135
+ """This object counts the number of Malformed TLV
1136
+ Value Fatal Errors detected by the session(s)
1137
+ (past and present) associated with this
1138
+ LDP Entity.
1139
+
1140
+ Discontinuities in the value of this counter can occur
1141
+ at re-initialization of the management system, and at
1142
+ other times as indicated by the value of
1143
+ mplsLdpEntityDiscontinuityTime.""",
1144
+ "reference" :
1145
+ """RFC3036, LDP Specification, Section 3.5.1.2.""",
1146
+ }, # column
1147
+ "mplsLdpEntityStatsKeepAliveTimerExpErrors" : {
1148
+ "nodetype" : "column",
1149
+ "moduleName" : "MPLS-LDP-STD-MIB",
1150
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.11",
1151
+ "status" : "current",
1152
+ "syntax" : {
1153
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1154
+ },
1155
+ "access" : "readonly",
1156
+ "description" :
1157
+ """This object counts the number of Session Keep Alive
1158
+ Timer Expired Errors detected by the session(s)
1159
+ (past and present) associated with this LDP Entity.
1160
+
1161
+ Discontinuities in the value of this counter can occur
1162
+ at re-initialization of the management system, and at
1163
+ other times as indicated by the value of
1164
+ mplsLdpEntityDiscontinuityTime.""",
1165
+ "reference" :
1166
+ """RFC3036, LDP Specification, Section 3.5.1.2.""",
1167
+ }, # column
1168
+ "mplsLdpEntityStatsShutdownReceivedNotifications" : {
1169
+ "nodetype" : "column",
1170
+ "moduleName" : "MPLS-LDP-STD-MIB",
1171
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.12",
1172
+ "status" : "current",
1173
+ "syntax" : {
1174
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1175
+ },
1176
+ "access" : "readonly",
1177
+ "description" :
1178
+ """This object counts the number of Shutdown Notifications
1179
+ received related to session(s) (past and present)
1180
+ associated with this LDP Entity.
1181
+
1182
+ Discontinuities in the value of this counter can occur
1183
+ at re-initialization of the management system, and at
1184
+ other times as indicated by the value of
1185
+ mplsLdpEntityDiscontinuityTime.""",
1186
+ }, # column
1187
+ "mplsLdpEntityStatsShutdownSentNotifications" : {
1188
+ "nodetype" : "column",
1189
+ "moduleName" : "MPLS-LDP-STD-MIB",
1190
+ "oid" : "1.3.6.1.2.1.10.166.4.1.2.4.1.13",
1191
+ "status" : "current",
1192
+ "syntax" : {
1193
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1194
+ },
1195
+ "access" : "readonly",
1196
+ "description" :
1197
+ """This object counts the number of Shutdown Notfications
1198
+ sent related to session(s) (past and present) associated
1199
+ with this LDP Entity.
1200
+
1201
+ Discontinuities in the value of this counter can occur
1202
+ at re-initialization of the management system, and at
1203
+ other times as indicated by the value of
1204
+
1205
+
1206
+
1207
+ mplsLdpEntityDiscontinuityTime.""",
1208
+ }, # column
1209
+ "mplsLdpSessionObjects" : {
1210
+ "nodetype" : "node",
1211
+ "moduleName" : "MPLS-LDP-STD-MIB",
1212
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3",
1213
+ }, # node
1214
+ "mplsLdpPeerLastChange" : {
1215
+ "nodetype" : "scalar",
1216
+ "moduleName" : "MPLS-LDP-STD-MIB",
1217
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.1",
1218
+ "status" : "current",
1219
+ "syntax" : {
1220
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1221
+ },
1222
+ "access" : "readonly",
1223
+ "description" :
1224
+ """The value of sysUpTime at the time of the most
1225
+ recent addition or deletion to/from the
1226
+ mplsLdpPeerTable/mplsLdpSessionTable.""",
1227
+ }, # scalar
1228
+ "mplsLdpPeerTable" : {
1229
+ "nodetype" : "table",
1230
+ "moduleName" : "MPLS-LDP-STD-MIB",
1231
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.2",
1232
+ "status" : "current",
1233
+ "description" :
1234
+ """Information about LDP peers known by Entities in
1235
+ the mplsLdpEntityTable. The information in this table
1236
+ is based on information from the Entity-Peer interaction
1237
+ during session initialization but is not appropriate
1238
+ for the mplsLdpSessionTable, because objects in this
1239
+ table may or may not be used in session establishment.""",
1240
+ }, # table
1241
+ "mplsLdpPeerEntry" : {
1242
+ "nodetype" : "row",
1243
+ "moduleName" : "MPLS-LDP-STD-MIB",
1244
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.2.1",
1245
+ "status" : "current",
1246
+ "linkage" : [
1247
+ "mplsLdpEntityLdpId",
1248
+ "mplsLdpEntityIndex",
1249
+ "mplsLdpPeerLdpId",
1250
+ ],
1251
+ "description" :
1252
+ """Information about a single Peer which is related
1253
+ to a Session. This table is augmented by
1254
+ the mplsLdpSessionTable.""",
1255
+ }, # row
1256
+ "mplsLdpPeerLdpId" : {
1257
+ "nodetype" : "column",
1258
+ "moduleName" : "MPLS-LDP-STD-MIB",
1259
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.2.1.1",
1260
+ "status" : "current",
1261
+ "syntax" : {
1262
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLdpIdentifier"},
1263
+ },
1264
+ "access" : "noaccess",
1265
+ "description" :
1266
+ """The LDP identifier of this LDP Peer.""",
1267
+ }, # column
1268
+ "mplsLdpPeerLabelDistMethod" : {
1269
+ "nodetype" : "column",
1270
+ "moduleName" : "MPLS-LDP-STD-MIB",
1271
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.2.1.2",
1272
+ "status" : "current",
1273
+ "syntax" : {
1274
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLabelDistributionMethod"},
1275
+ },
1276
+ "access" : "readonly",
1277
+ "description" :
1278
+ """For any given LDP session, the method of
1279
+ label distribution must be specified.""",
1280
+ }, # column
1281
+ "mplsLdpPeerPathVectorLimit" : {
1282
+ "nodetype" : "column",
1283
+ "moduleName" : "MPLS-LDP-STD-MIB",
1284
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.2.1.3",
1285
+ "status" : "current",
1286
+ "syntax" : {
1287
+ "type" : {
1288
+ "basetype" : "Integer32",
1289
+ "ranges" : [
1290
+ {
1291
+ "min" : "0",
1292
+ "max" : "255"
1293
+ },
1294
+ ],
1295
+ "range" : {
1296
+ "min" : "0",
1297
+ "max" : "255"
1298
+ },
1299
+ },
1300
+ },
1301
+ "access" : "readonly",
1302
+ "description" :
1303
+ """If the value of this object is 0 (zero) then
1304
+ Loop Dection for Path Vectors for this Peer
1305
+ is disabled.
1306
+
1307
+ Otherwise, if this object has a value greater than
1308
+ zero, then Loop Dection for Path Vectors for this
1309
+ Peer is enabled and the Path Vector Limit is this value.""",
1310
+ "reference" :
1311
+ """RFC3036, LDP Specification, Section 2.8 Loop Dection,
1312
+ Section 3.4.5 Path Vector TLV.""",
1313
+ }, # column
1314
+ "mplsLdpPeerTransportAddrType" : {
1315
+ "nodetype" : "column",
1316
+ "moduleName" : "MPLS-LDP-STD-MIB",
1317
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.2.1.4",
1318
+ "status" : "current",
1319
+ "syntax" : {
1320
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1321
+ },
1322
+ "access" : "readonly",
1323
+ "description" :
1324
+ """The type of the Internet address for the
1325
+ mplsLdpPeerTransportAddr object. The LDP
1326
+ specification describes this as being either
1327
+ an IPv4 Transport Address or IPv6 Transport
1328
+
1329
+
1330
+
1331
+ Address which is used in opening the LDP session's
1332
+ TCP connection, or if the optional TLV is not
1333
+ present, then this is the IPv4/IPv6 source
1334
+ address for the UPD packet carrying the Hellos.
1335
+
1336
+ This object specifies how the value of the
1337
+ mplsLdpPeerTransportAddr object should be
1338
+ interpreted.""",
1339
+ "reference" :
1340
+ """RFC3036, LDP Specification, Section 2.5.2
1341
+ Transport Connection Establishment and
1342
+ Section 3.5.2.1 Hello Message Procedures.""",
1343
+ }, # column
1344
+ "mplsLdpPeerTransportAddr" : {
1345
+ "nodetype" : "column",
1346
+ "moduleName" : "MPLS-LDP-STD-MIB",
1347
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.2.1.5",
1348
+ "status" : "current",
1349
+ "syntax" : {
1350
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1351
+ },
1352
+ "access" : "readonly",
1353
+ "description" :
1354
+ """The Internet address advertised by the peer
1355
+ in the Hello Message or the Hello source address.
1356
+
1357
+ The type of this address is specified by the
1358
+ value of the mplsLdpPeerTransportAddrType
1359
+ object.""",
1360
+ "reference" :
1361
+ """RFC3036, LDP Specification, Section 2.5.2
1362
+ Transport Connection Establishment and
1363
+ Section 3.5.2.1 Hello Message Procedures.""",
1364
+ }, # column
1365
+ "mplsLdpSessionTable" : {
1366
+ "nodetype" : "table",
1367
+ "moduleName" : "MPLS-LDP-STD-MIB",
1368
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3",
1369
+ "status" : "current",
1370
+ "description" :
1371
+ """A table of Sessions between the LDP Entities
1372
+ and LDP Peers. This table AUGMENTS the
1373
+ mplsLdpPeerTable. Each row in this table
1374
+ represents a single session.""",
1375
+ }, # table
1376
+ "mplsLdpSessionEntry" : {
1377
+ "nodetype" : "row",
1378
+ "moduleName" : "MPLS-LDP-STD-MIB",
1379
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1",
1380
+ "status" : "current",
1381
+ "linkage" : [
1382
+ { "MPLS-LDP-STD-MIB" : {
1383
+ "indexkind" : "augments",
1384
+ "relatedNode" : "mplsLdpPeerEntry",
1385
+ }},
1386
+ ],
1387
+ "description" :
1388
+ """An entry in this table represents information on a
1389
+ single session between an LDP Entity and LDP Peer.
1390
+ The information contained in a row is read-only.
1391
+
1392
+ Please note: the Path Vector Limit for the
1393
+ Session is the value which is configured in
1394
+ the corresponding mplsLdpEntityEntry. The
1395
+ Peer's Path Vector Limit is in the
1396
+ mplsLdpPeerPathVectorLimit object in the
1397
+ mplsLdpPeerTable.
1398
+
1399
+ Values which may differ from those configured are
1400
+ noted in the objects of this table, the
1401
+ mplsLdpAtmSessionTable and the
1402
+ mplsLdpFrameRelaySessionTable. A value will
1403
+ differ if it was negotiated between the
1404
+ Entity and the Peer. Values may or may not
1405
+ be negotiated. For example, if the values
1406
+ are the same then no negotiation takes place.
1407
+ If they are negotiated, then they may differ.""",
1408
+ }, # row
1409
+ "mplsLdpSessionStateLastChange" : {
1410
+ "nodetype" : "column",
1411
+ "moduleName" : "MPLS-LDP-STD-MIB",
1412
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1.1",
1413
+ "status" : "current",
1414
+ "syntax" : {
1415
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1416
+ },
1417
+ "access" : "readonly",
1418
+ "description" :
1419
+ """The value of sysUpTime at the time this
1420
+ Session entered its current state as
1421
+ denoted by the mplsLdpSessionState
1422
+ object.""",
1423
+ }, # column
1424
+ "mplsLdpSessionState" : {
1425
+ "nodetype" : "column",
1426
+ "moduleName" : "MPLS-LDP-STD-MIB",
1427
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1.2",
1428
+ "status" : "current",
1429
+ "syntax" : {
1430
+ "type" : {
1431
+ "basetype" : "Enumeration",
1432
+ "nonexistent" : {
1433
+ "nodetype" : "namednumber",
1434
+ "number" : "1"
1435
+ },
1436
+ "initialized" : {
1437
+ "nodetype" : "namednumber",
1438
+ "number" : "2"
1439
+ },
1440
+ "openrec" : {
1441
+ "nodetype" : "namednumber",
1442
+ "number" : "3"
1443
+ },
1444
+ "opensent" : {
1445
+ "nodetype" : "namednumber",
1446
+ "number" : "4"
1447
+ },
1448
+ "operational" : {
1449
+ "nodetype" : "namednumber",
1450
+ "number" : "5"
1451
+ },
1452
+ },
1453
+ },
1454
+ "access" : "readonly",
1455
+ "description" :
1456
+ """The current state of the session, all of the
1457
+ states 1 to 5 are based on the state machine
1458
+ for session negotiation behavior.""",
1459
+ "reference" :
1460
+ """RFC3036, LDP Specification, Section 2.5.4,
1461
+ Initialization State Machine.""",
1462
+ }, # column
1463
+ "mplsLdpSessionRole" : {
1464
+ "nodetype" : "column",
1465
+ "moduleName" : "MPLS-LDP-STD-MIB",
1466
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1.3",
1467
+ "status" : "current",
1468
+ "syntax" : {
1469
+ "type" : {
1470
+ "basetype" : "Enumeration",
1471
+ "unknown" : {
1472
+ "nodetype" : "namednumber",
1473
+ "number" : "1"
1474
+ },
1475
+ "active" : {
1476
+ "nodetype" : "namednumber",
1477
+ "number" : "2"
1478
+ },
1479
+ "passive" : {
1480
+ "nodetype" : "namednumber",
1481
+ "number" : "3"
1482
+ },
1483
+ },
1484
+ },
1485
+ "access" : "readonly",
1486
+ "description" :
1487
+ """During session establishment the LSR/LER takes either
1488
+ the active role or the passive role based on address
1489
+ comparisons. This object indicates whether this LSR/LER
1490
+ was behaving in an active role or passive role during
1491
+ this session's establishment.
1492
+
1493
+ The value of unknown(1), indicates that the role is not
1494
+ able to be determined at the present time.""",
1495
+ "reference" :
1496
+ """RFC3036, LDP Specification, Section 2.5.3.,
1497
+ Session Initialization""",
1498
+ }, # column
1499
+ "mplsLdpSessionProtocolVersion" : {
1500
+ "nodetype" : "column",
1501
+ "moduleName" : "MPLS-LDP-STD-MIB",
1502
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1.4",
1503
+ "status" : "current",
1504
+ "syntax" : {
1505
+ "type" : {
1506
+ "basetype" : "Unsigned32",
1507
+ "ranges" : [
1508
+ {
1509
+ "min" : "1",
1510
+ "max" : "65535"
1511
+ },
1512
+ ],
1513
+ "range" : {
1514
+ "min" : "1",
1515
+ "max" : "65535"
1516
+ },
1517
+ },
1518
+ },
1519
+ "access" : "readonly",
1520
+ "description" :
1521
+ """The version of the LDP Protocol which
1522
+ this session is using. This is the version of
1523
+
1524
+
1525
+
1526
+ the LDP protocol which has been negotiated
1527
+ during session initialization.""",
1528
+ "reference" :
1529
+ """RFC3036, LDP Specification, Section 3.5.3,
1530
+ Initialization Message.""",
1531
+ }, # column
1532
+ "mplsLdpSessionKeepAliveHoldTimeRem" : {
1533
+ "nodetype" : "column",
1534
+ "moduleName" : "MPLS-LDP-STD-MIB",
1535
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1.5",
1536
+ "status" : "current",
1537
+ "syntax" : {
1538
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1539
+ },
1540
+ "access" : "readonly",
1541
+ "description" :
1542
+ """The keep alive hold time remaining for
1543
+ this session.""",
1544
+ }, # column
1545
+ "mplsLdpSessionKeepAliveTime" : {
1546
+ "nodetype" : "column",
1547
+ "moduleName" : "MPLS-LDP-STD-MIB",
1548
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1.6",
1549
+ "status" : "current",
1550
+ "syntax" : {
1551
+ "type" : {
1552
+ "basetype" : "Unsigned32",
1553
+ "ranges" : [
1554
+ {
1555
+ "min" : "1",
1556
+ "max" : "65535"
1557
+ },
1558
+ ],
1559
+ "range" : {
1560
+ "min" : "1",
1561
+ "max" : "65535"
1562
+ },
1563
+ },
1564
+ },
1565
+ "access" : "readonly",
1566
+ "units" : "seconds",
1567
+ "description" :
1568
+ """The negotiated KeepAlive Time which
1569
+ represents the amount of seconds between
1570
+ keep alive messages. The
1571
+ mplsLdpEntityKeepAliveHoldTimer
1572
+ related to this Session is the
1573
+ value that was proposed as the
1574
+ KeepAlive Time for this session.
1575
+
1576
+ This value is negotiated during
1577
+ session initialization between
1578
+ the entity's proposed value
1579
+ (i.e., the value configured in
1580
+ mplsLdpEntityKeepAliveHoldTimer)
1581
+ and the peer's proposed
1582
+ KeepAlive Hold Timer value.
1583
+ This value is the smaller
1584
+ of the two proposed values.""",
1585
+ "reference" :
1586
+ """RFC3036, LDP Specification, Section 3.5.3,
1587
+ Initialization Message.""",
1588
+ }, # column
1589
+ "mplsLdpSessionMaxPduLength" : {
1590
+ "nodetype" : "column",
1591
+ "moduleName" : "MPLS-LDP-STD-MIB",
1592
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1.7",
1593
+ "status" : "current",
1594
+ "syntax" : {
1595
+ "type" : {
1596
+ "basetype" : "Unsigned32",
1597
+ "ranges" : [
1598
+ {
1599
+ "min" : "1",
1600
+ "max" : "65535"
1601
+ },
1602
+ ],
1603
+ "range" : {
1604
+ "min" : "1",
1605
+ "max" : "65535"
1606
+ },
1607
+ },
1608
+ },
1609
+ "access" : "readonly",
1610
+ "units" : "octets",
1611
+ "description" :
1612
+ """The value of maximum allowable length for LDP PDUs for
1613
+ this session. This value may have been negotiated
1614
+ during the Session Initialization. This object is
1615
+ related to the mplsLdpEntityMaxPduLength object. The
1616
+ mplsLdpEntityMaxPduLength object specifies the requested
1617
+ LDP PDU length, and this object reflects the negotiated
1618
+ LDP PDU length between the Entity and
1619
+ the Peer.""",
1620
+ "reference" :
1621
+ """RFC3036, LDP Specification, Section 3.5.3,
1622
+ Initialization Message.""",
1623
+ }, # column
1624
+ "mplsLdpSessionDiscontinuityTime" : {
1625
+ "nodetype" : "column",
1626
+ "moduleName" : "MPLS-LDP-STD-MIB",
1627
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.3.1.8",
1628
+ "status" : "current",
1629
+ "syntax" : {
1630
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1631
+ },
1632
+ "access" : "readonly",
1633
+ "description" :
1634
+ """The value of sysUpTime on the most recent occasion
1635
+ at which any one or more of this session's counters
1636
+ suffered a discontinuity. The relevant counters are
1637
+ the specific instances associated with this session
1638
+ of any Counter32 object contained in the
1639
+ mplsLdpSessionStatsTable.
1640
+
1641
+ The initial value of this object is the value of
1642
+ sysUpTime when the entry was created in this table.
1643
+
1644
+ Also, a command generator can distinguish when a session
1645
+ between a given Entity and Peer goes away and a new
1646
+ session is established. This value would change and
1647
+ thus indicate to the command generator that this is a
1648
+ different session.""",
1649
+ }, # column
1650
+ "mplsLdpSessionStatsTable" : {
1651
+ "nodetype" : "table",
1652
+ "moduleName" : "MPLS-LDP-STD-MIB",
1653
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.4",
1654
+ "status" : "current",
1655
+ "description" :
1656
+ """A table of statistics for Sessions between
1657
+ LDP Entities and LDP Peers. This table AUGMENTS
1658
+
1659
+
1660
+
1661
+ the mplsLdpPeerTable.""",
1662
+ }, # table
1663
+ "mplsLdpSessionStatsEntry" : {
1664
+ "nodetype" : "row",
1665
+ "moduleName" : "MPLS-LDP-STD-MIB",
1666
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.4.1",
1667
+ "status" : "current",
1668
+ "linkage" : [
1669
+ { "MPLS-LDP-STD-MIB" : {
1670
+ "indexkind" : "augments",
1671
+ "relatedNode" : "mplsLdpPeerEntry",
1672
+ }},
1673
+ ],
1674
+ "description" :
1675
+ """An entry in this table represents statistical
1676
+ information on a single session between an LDP
1677
+ Entity and LDP Peer.""",
1678
+ }, # row
1679
+ "mplsLdpSessionStatsUnknownMesTypeErrors" : {
1680
+ "nodetype" : "column",
1681
+ "moduleName" : "MPLS-LDP-STD-MIB",
1682
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.4.1.1",
1683
+ "status" : "current",
1684
+ "syntax" : {
1685
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1686
+ },
1687
+ "access" : "readonly",
1688
+ "description" :
1689
+ """This object counts the number of Unknown Message Type
1690
+ Errors detected by this LSR/LER during this session.
1691
+
1692
+ Discontinuities in the value of this counter can occur
1693
+ at re-initialization of the management system, and at
1694
+ other times as indicated by the value of
1695
+ mplsLdpSessionDiscontinuityTime.""",
1696
+ }, # column
1697
+ "mplsLdpSessionStatsUnknownTlvErrors" : {
1698
+ "nodetype" : "column",
1699
+ "moduleName" : "MPLS-LDP-STD-MIB",
1700
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.4.1.2",
1701
+ "status" : "current",
1702
+ "syntax" : {
1703
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1704
+ },
1705
+ "access" : "readonly",
1706
+ "description" :
1707
+ """This object counts the number of Unknown TLV Errors
1708
+ detected by this LSR/LER during this session.
1709
+
1710
+ Discontinuities in the value of this counter can occur
1711
+ at re-initialization of the management system, and at
1712
+ other times as indicated by the value of
1713
+ mplsLdpSessionDiscontinuityTime.""",
1714
+ }, # column
1715
+ "mplsLdpHelloAdjacencyObjects" : {
1716
+ "nodetype" : "node",
1717
+ "moduleName" : "MPLS-LDP-STD-MIB",
1718
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.5",
1719
+ }, # node
1720
+ "mplsLdpHelloAdjacencyTable" : {
1721
+ "nodetype" : "table",
1722
+ "moduleName" : "MPLS-LDP-STD-MIB",
1723
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.5.1",
1724
+ "status" : "current",
1725
+ "description" :
1726
+ """A table of Hello Adjacencies for Sessions.""",
1727
+ }, # table
1728
+ "mplsLdpHelloAdjacencyEntry" : {
1729
+ "nodetype" : "row",
1730
+ "moduleName" : "MPLS-LDP-STD-MIB",
1731
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.5.1.1",
1732
+ "status" : "current",
1733
+ "linkage" : [
1734
+ "mplsLdpEntityLdpId",
1735
+ "mplsLdpEntityIndex",
1736
+ "mplsLdpPeerLdpId",
1737
+ "mplsLdpHelloAdjacencyIndex",
1738
+ ],
1739
+ "description" :
1740
+ """Each row represents a single LDP Hello Adjacency.
1741
+ An LDP Session can have one or more Hello
1742
+ Adjacencies.""",
1743
+ }, # row
1744
+ "mplsLdpHelloAdjacencyIndex" : {
1745
+ "nodetype" : "column",
1746
+ "moduleName" : "MPLS-LDP-STD-MIB",
1747
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.5.1.1.1",
1748
+ "status" : "current",
1749
+ "syntax" : {
1750
+ "type" : {
1751
+ "basetype" : "Unsigned32",
1752
+ "ranges" : [
1753
+ {
1754
+ "min" : "1",
1755
+ "max" : "4294967295"
1756
+ },
1757
+ ],
1758
+ "range" : {
1759
+ "min" : "1",
1760
+ "max" : "4294967295"
1761
+ },
1762
+ },
1763
+ },
1764
+ "access" : "noaccess",
1765
+ "description" :
1766
+ """An identifier for this specific adjacency.""",
1767
+ }, # column
1768
+ "mplsLdpHelloAdjacencyHoldTimeRem" : {
1769
+ "nodetype" : "column",
1770
+ "moduleName" : "MPLS-LDP-STD-MIB",
1771
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.5.1.1.2",
1772
+ "status" : "current",
1773
+ "syntax" : {
1774
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1775
+ },
1776
+ "access" : "readonly",
1777
+ "units" : "seconds",
1778
+ "description" :
1779
+ """If the value of this object is 65535,
1780
+ this means that the hold time is infinite
1781
+ (i.e., wait forever).
1782
+
1783
+ Otherwise, the time remaining for
1784
+ this Hello Adjacency to receive its
1785
+ next Hello Message.
1786
+
1787
+ This interval will change when the 'next'
1788
+ Hello Message which corresponds to this
1789
+ Hello Adjacency is received unless it
1790
+ is infinite.""",
1791
+ }, # column
1792
+ "mplsLdpHelloAdjacencyHoldTime" : {
1793
+ "nodetype" : "column",
1794
+ "moduleName" : "MPLS-LDP-STD-MIB",
1795
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.5.1.1.3",
1796
+ "status" : "current",
1797
+ "syntax" : {
1798
+ "type" : {
1799
+ "basetype" : "Unsigned32",
1800
+ "ranges" : [
1801
+ {
1802
+ "min" : "0",
1803
+ "max" : "65535"
1804
+ },
1805
+ ],
1806
+ "range" : {
1807
+ "min" : "0",
1808
+ "max" : "65535"
1809
+ },
1810
+ },
1811
+ },
1812
+ "access" : "readonly",
1813
+ "description" :
1814
+ """The Hello hold time which is negotiated between
1815
+ the Entity and the Peer. The entity associated
1816
+ with this Hello Adjacency issues a proposed
1817
+ Hello Hold Time value in the
1818
+ mplsLdpEntityHelloHoldTimer object. The peer
1819
+ also proposes a value and this object represents
1820
+ the negotiated value.
1821
+
1822
+ A value of 0 means the default,
1823
+ which is 15 seconds for Link Hellos
1824
+ and 45 seconds for Targeted Hellos.
1825
+ A value of 65535 indicates an
1826
+ infinite hold time.""",
1827
+ "reference" :
1828
+ """RFC3036, LDP Specification, Section 3.5.2 Hello Message""",
1829
+ }, # column
1830
+ "mplsLdpHelloAdjacencyType" : {
1831
+ "nodetype" : "column",
1832
+ "moduleName" : "MPLS-LDP-STD-MIB",
1833
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.5.1.1.4",
1834
+ "status" : "current",
1835
+ "syntax" : {
1836
+ "type" : {
1837
+ "basetype" : "Enumeration",
1838
+ "link" : {
1839
+ "nodetype" : "namednumber",
1840
+ "number" : "1"
1841
+ },
1842
+ "targeted" : {
1843
+ "nodetype" : "namednumber",
1844
+ "number" : "2"
1845
+ },
1846
+ },
1847
+ },
1848
+ "access" : "readonly",
1849
+ "description" :
1850
+ """This adjacency is the result of a 'link'
1851
+ hello if the value of this object is link(1).
1852
+
1853
+
1854
+
1855
+ Otherwise, it is a result of a 'targeted'
1856
+ hello, targeted(2).""",
1857
+ }, # column
1858
+ "mplsInSegmentLdpLspTable" : {
1859
+ "nodetype" : "table",
1860
+ "moduleName" : "MPLS-LDP-STD-MIB",
1861
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.6",
1862
+ "status" : "current",
1863
+ "description" :
1864
+ """A table of LDP LSP's which
1865
+ map to the mplsInSegmentTable in the
1866
+ MPLS-LSR-STD-MIB module.""",
1867
+ }, # table
1868
+ "mplsInSegmentLdpLspEntry" : {
1869
+ "nodetype" : "row",
1870
+ "moduleName" : "MPLS-LDP-STD-MIB",
1871
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.6.1",
1872
+ "status" : "current",
1873
+ "linkage" : [
1874
+ "mplsLdpEntityLdpId",
1875
+ "mplsLdpEntityIndex",
1876
+ "mplsLdpPeerLdpId",
1877
+ "mplsInSegmentLdpLspIndex",
1878
+ ],
1879
+ "description" :
1880
+ """An entry in this table represents information
1881
+ on a single LDP LSP which is represented by
1882
+ a session's index triple (mplsLdpEntityLdpId,
1883
+ mplsLdpEntityIndex, mplsLdpPeerLdpId) AND the
1884
+ index for the mplsInSegmentTable
1885
+ (mplsInSegmentLdpLspLabelIndex) from the
1886
+ MPLS-LSR-STD-MIB.
1887
+
1888
+ The information contained in a row is read-only.""",
1889
+ }, # row
1890
+ "mplsInSegmentLdpLspIndex" : {
1891
+ "nodetype" : "column",
1892
+ "moduleName" : "MPLS-LDP-STD-MIB",
1893
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.6.1.1",
1894
+ "status" : "current",
1895
+ "syntax" : {
1896
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1897
+ },
1898
+ "access" : "noaccess",
1899
+ "description" :
1900
+ """This contains the same value as the
1901
+ mplsInSegmentIndex in the
1902
+ MPLS-LSR-STD-MIB's mplsInSegmentTable.""",
1903
+ }, # column
1904
+ "mplsInSegmentLdpLspLabelType" : {
1905
+ "nodetype" : "column",
1906
+ "moduleName" : "MPLS-LDP-STD-MIB",
1907
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.6.1.2",
1908
+ "status" : "current",
1909
+ "syntax" : {
1910
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLdpLabelType"},
1911
+ },
1912
+ "access" : "readonly",
1913
+ "description" :
1914
+ """The Layer 2 Label Type.""",
1915
+ }, # column
1916
+ "mplsInSegmentLdpLspType" : {
1917
+ "nodetype" : "column",
1918
+ "moduleName" : "MPLS-LDP-STD-MIB",
1919
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.6.1.3",
1920
+ "status" : "current",
1921
+ "syntax" : {
1922
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLspType"},
1923
+ },
1924
+ "access" : "readonly",
1925
+ "description" :
1926
+ """The type of LSP connection.""",
1927
+ }, # column
1928
+ "mplsOutSegmentLdpLspTable" : {
1929
+ "nodetype" : "table",
1930
+ "moduleName" : "MPLS-LDP-STD-MIB",
1931
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.7",
1932
+ "status" : "current",
1933
+ "description" :
1934
+ """A table of LDP LSP's which
1935
+ map to the mplsOutSegmentTable in the
1936
+ MPLS-LSR-STD-MIB.""",
1937
+ }, # table
1938
+ "mplsOutSegmentLdpLspEntry" : {
1939
+ "nodetype" : "row",
1940
+ "moduleName" : "MPLS-LDP-STD-MIB",
1941
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.7.1",
1942
+ "status" : "current",
1943
+ "linkage" : [
1944
+ "mplsLdpEntityLdpId",
1945
+ "mplsLdpEntityIndex",
1946
+ "mplsLdpPeerLdpId",
1947
+ "mplsOutSegmentLdpLspIndex",
1948
+ ],
1949
+ "description" :
1950
+ """An entry in this table represents information
1951
+ on a single LDP LSP which is represented by
1952
+ a session's index triple (mplsLdpEntityLdpId,
1953
+ mplsLdpEntityIndex, mplsLdpPeerLdpId) AND the
1954
+ index (mplsOutSegmentLdpLspIndex)
1955
+ for the mplsOutSegmentTable.
1956
+
1957
+ The information contained in a row is read-only.""",
1958
+ }, # row
1959
+ "mplsOutSegmentLdpLspIndex" : {
1960
+ "nodetype" : "column",
1961
+ "moduleName" : "MPLS-LDP-STD-MIB",
1962
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.7.1.1",
1963
+ "status" : "current",
1964
+ "syntax" : {
1965
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
1966
+ },
1967
+ "access" : "noaccess",
1968
+ "description" :
1969
+ """This contains the same value as the
1970
+ mplsOutSegmentIndex in the
1971
+ MPLS-LSR-STD-MIB's mplsOutSegmentTable.""",
1972
+ }, # column
1973
+ "mplsOutSegmentLdpLspLabelType" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "MPLS-LDP-STD-MIB",
1976
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.7.1.2",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLdpLabelType"},
1980
+ },
1981
+ "access" : "readonly",
1982
+ "description" :
1983
+ """The Layer 2 Label Type.""",
1984
+ }, # column
1985
+ "mplsOutSegmentLdpLspType" : {
1986
+ "nodetype" : "column",
1987
+ "moduleName" : "MPLS-LDP-STD-MIB",
1988
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.7.1.3",
1989
+ "status" : "current",
1990
+ "syntax" : {
1991
+ "type" : { "module" :"MPLS-TC-STD-MIB", "name" : "MplsLspType"},
1992
+ },
1993
+ "access" : "readonly",
1994
+ "description" :
1995
+ """The type of LSP connection.""",
1996
+ }, # column
1997
+ "mplsFecObjects" : {
1998
+ "nodetype" : "node",
1999
+ "moduleName" : "MPLS-LDP-STD-MIB",
2000
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8",
2001
+ }, # node
2002
+ "mplsFecLastChange" : {
2003
+ "nodetype" : "scalar",
2004
+ "moduleName" : "MPLS-LDP-STD-MIB",
2005
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.1",
2006
+ "status" : "current",
2007
+ "syntax" : {
2008
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2009
+ },
2010
+ "access" : "readonly",
2011
+ "description" :
2012
+ """The value of sysUpTime at the time of the most
2013
+ recent addition/deletion of an entry
2014
+ to/from the mplsLdpFectTable or
2015
+ the most recent change in values to any objects
2016
+ in the mplsLdpFecTable.
2017
+
2018
+ If no such changes have occurred since the last
2019
+ re-initialization of the local management subsystem,
2020
+ then this object contains a zero value.""",
2021
+ }, # scalar
2022
+ "mplsFecIndexNext" : {
2023
+ "nodetype" : "scalar",
2024
+ "moduleName" : "MPLS-LDP-STD-MIB",
2025
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.2",
2026
+ "status" : "current",
2027
+ "syntax" : {
2028
+ "type" : { "module" :"DIFFSERV-MIB", "name" : "IndexIntegerNextFree"},
2029
+ },
2030
+ "access" : "readonly",
2031
+ "description" :
2032
+ """This object contains an appropriate value to
2033
+ be used for mplsFecIndex when creating
2034
+ entries in the mplsFecTable. The value
2035
+ 0 indicates that no unassigned entries are
2036
+ available.""",
2037
+ }, # scalar
2038
+ "mplsFecTable" : {
2039
+ "nodetype" : "table",
2040
+ "moduleName" : "MPLS-LDP-STD-MIB",
2041
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3",
2042
+ "status" : "current",
2043
+ "description" :
2044
+ """This table represents the FEC
2045
+ (Forwarding Equivalence Class)
2046
+ Information associated with an LSP.""",
2047
+ }, # table
2048
+ "mplsFecEntry" : {
2049
+ "nodetype" : "row",
2050
+ "moduleName" : "MPLS-LDP-STD-MIB",
2051
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3.1",
2052
+ "create" : "true",
2053
+ "status" : "current",
2054
+ "linkage" : [
2055
+ "mplsFecIndex",
2056
+ ],
2057
+ "description" :
2058
+ """Each row represents a single FEC Element.""",
2059
+ }, # row
2060
+ "mplsFecIndex" : {
2061
+ "nodetype" : "column",
2062
+ "moduleName" : "MPLS-LDP-STD-MIB",
2063
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3.1.1",
2064
+ "status" : "current",
2065
+ "syntax" : {
2066
+ "type" : { "module" :"DIFFSERV-MIB", "name" : "IndexInteger"},
2067
+ },
2068
+ "access" : "noaccess",
2069
+ "description" :
2070
+ """The index which uniquely identifies this entry.""",
2071
+ }, # column
2072
+ "mplsFecType" : {
2073
+ "nodetype" : "column",
2074
+ "moduleName" : "MPLS-LDP-STD-MIB",
2075
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3.1.2",
2076
+ "status" : "current",
2077
+ "syntax" : {
2078
+ "type" : {
2079
+ "basetype" : "Enumeration",
2080
+ "prefix" : {
2081
+ "nodetype" : "namednumber",
2082
+ "number" : "1"
2083
+ },
2084
+ "hostAddress" : {
2085
+ "nodetype" : "namednumber",
2086
+ "number" : "2"
2087
+ },
2088
+ },
2089
+ },
2090
+ "access" : "readwrite",
2091
+ "description" :
2092
+ """The type of the FEC. If the value of this object
2093
+ is 'prefix(1)' then the FEC type described by this
2094
+ row is an address prefix.
2095
+
2096
+ If the value of this object is 'hostAddress(2)' then
2097
+ the FEC type described by this row is a host address.""",
2098
+ "reference" :
2099
+ """RFC3036, Section 3.4.1. FEC TLV.""",
2100
+ }, # column
2101
+ "mplsFecAddrPrefixLength" : {
2102
+ "nodetype" : "column",
2103
+ "moduleName" : "MPLS-LDP-STD-MIB",
2104
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3.1.3",
2105
+ "status" : "current",
2106
+ "syntax" : {
2107
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
2108
+ },
2109
+ "access" : "readwrite",
2110
+ "default" : "0",
2111
+ "description" :
2112
+ """If the value of the 'mplsFecType' is 'hostAddress(2)'
2113
+ then this object is undefined.
2114
+
2115
+ If the value of 'mplsFecType' is 'prefix(1)'
2116
+ then the value of this object is the length in
2117
+ bits of the address prefix represented by
2118
+ 'mplsFecAddr', or zero. If the value of this
2119
+ object is zero, this indicates that the
2120
+ prefix matches all addresses. In this case the
2121
+ address prefix MUST also be zero (i.e., 'mplsFecAddr'
2122
+ should have the value of zero.)""",
2123
+ "reference" :
2124
+ """RFC3036, Section 3.4.1. FEC TLV.""",
2125
+ }, # column
2126
+ "mplsFecAddrType" : {
2127
+ "nodetype" : "column",
2128
+ "moduleName" : "MPLS-LDP-STD-MIB",
2129
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3.1.4",
2130
+ "status" : "current",
2131
+ "syntax" : {
2132
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
2133
+ },
2134
+ "access" : "readwrite",
2135
+ "description" :
2136
+ """The value of this object is the type of the
2137
+ Internet address. The value of this object,
2138
+ decides how the value of the mplsFecAddr object
2139
+ is interpreted.""",
2140
+ "reference" :
2141
+ """RFC3036, Section 3.4.1. FEC TLV.""",
2142
+ }, # column
2143
+ "mplsFecAddr" : {
2144
+ "nodetype" : "column",
2145
+ "moduleName" : "MPLS-LDP-STD-MIB",
2146
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3.1.5",
2147
+ "status" : "current",
2148
+ "syntax" : {
2149
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2150
+ },
2151
+ "access" : "readwrite",
2152
+ "description" :
2153
+ """The value of this object is interpreted based
2154
+ on the value of the 'mplsFecAddrType' object.
2155
+
2156
+ This address is then further interpretted as
2157
+ an being used with the address prefix,
2158
+ or as the host address. This further interpretation
2159
+ is indicated by the 'mplsFecType' object.
2160
+ In other words, the FEC element is populated
2161
+ according to the Prefix FEC Element value encoding, or
2162
+ the Host Address FEC Element encoding.""",
2163
+ "reference" :
2164
+ """RFC3036, Section 3.4.1 FEC TLV.""",
2165
+ }, # column
2166
+ "mplsFecStorageType" : {
2167
+ "nodetype" : "column",
2168
+ "moduleName" : "MPLS-LDP-STD-MIB",
2169
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3.1.6",
2170
+ "status" : "current",
2171
+ "syntax" : {
2172
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
2173
+ },
2174
+ "access" : "readwrite",
2175
+ "default" : "nonVolatile",
2176
+ "description" :
2177
+ """The storage type for this conceptual row.
2178
+ Conceptual rows having the value 'permanent(4)'
2179
+ need not allow write-access to any columnar
2180
+ objects in the row.""",
2181
+ }, # column
2182
+ "mplsFecRowStatus" : {
2183
+ "nodetype" : "column",
2184
+ "moduleName" : "MPLS-LDP-STD-MIB",
2185
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.8.3.1.7",
2186
+ "status" : "current",
2187
+ "syntax" : {
2188
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2189
+ },
2190
+ "access" : "readwrite",
2191
+ "description" :
2192
+ """The status of this conceptual row. If the value of this
2193
+ object is 'active(1)', then none of the writable objects
2194
+ of this entry can be modified, except to set this object
2195
+ to 'destroy(6)'.
2196
+
2197
+ NOTE: if this row is being referenced by any entry in
2198
+ the mplsLdpLspFecTable, then a request to destroy
2199
+ this row, will result in an inconsistentValue error.""",
2200
+ }, # column
2201
+ "mplsLdpLspFecLastChange" : {
2202
+ "nodetype" : "scalar",
2203
+ "moduleName" : "MPLS-LDP-STD-MIB",
2204
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.9",
2205
+ "status" : "current",
2206
+ "syntax" : {
2207
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2208
+ },
2209
+ "access" : "readonly",
2210
+ "description" :
2211
+ """The value of sysUpTime at the time of the most
2212
+ recent addition/deletion of an entry
2213
+ to/from the mplsLdpLspFecTable or
2214
+ the most recent change in values to any objects in the
2215
+ mplsLdpLspFecTable.
2216
+
2217
+ If no such changes have occurred since the last
2218
+ re-initialization of the local management subsystem,
2219
+ then this object contains a zero value.""",
2220
+ }, # scalar
2221
+ "mplsLdpLspFecTable" : {
2222
+ "nodetype" : "table",
2223
+ "moduleName" : "MPLS-LDP-STD-MIB",
2224
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.10",
2225
+ "status" : "current",
2226
+ "description" :
2227
+ """A table which shows the relationship between
2228
+ LDP LSPs and FECs. Each row represents
2229
+ a single LDP LSP to FEC association.""",
2230
+ }, # table
2231
+ "mplsLdpLspFecEntry" : {
2232
+ "nodetype" : "row",
2233
+ "moduleName" : "MPLS-LDP-STD-MIB",
2234
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.10.1",
2235
+ "create" : "true",
2236
+ "status" : "current",
2237
+ "linkage" : [
2238
+ "mplsLdpEntityLdpId",
2239
+ "mplsLdpEntityIndex",
2240
+ "mplsLdpPeerLdpId",
2241
+ "mplsLdpLspFecSegment",
2242
+ "mplsLdpLspFecSegmentIndex",
2243
+ "mplsLdpLspFecIndex",
2244
+ ],
2245
+ "description" :
2246
+ """An entry represents a LDP LSP
2247
+ to FEC association.""",
2248
+ }, # row
2249
+ "mplsLdpLspFecSegment" : {
2250
+ "nodetype" : "column",
2251
+ "moduleName" : "MPLS-LDP-STD-MIB",
2252
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.10.1.1",
2253
+ "status" : "current",
2254
+ "syntax" : {
2255
+ "type" : {
2256
+ "basetype" : "Enumeration",
2257
+ "inSegment" : {
2258
+ "nodetype" : "namednumber",
2259
+ "number" : "1"
2260
+ },
2261
+ "outSegment" : {
2262
+ "nodetype" : "namednumber",
2263
+ "number" : "2"
2264
+ },
2265
+ },
2266
+ },
2267
+ "access" : "noaccess",
2268
+ "description" :
2269
+ """If the value is inSegment(1), then this
2270
+ indicates that the following index,
2271
+ mplsLdpLspFecSegmentIndex, contains the same
2272
+ value as the mplsInSegmentLdpLspIndex.
2273
+
2274
+ Otherwise, if the value of this object is
2275
+
2276
+
2277
+
2278
+ outSegment(2), then this
2279
+ indicates that following index,
2280
+ mplsLdpLspFecSegmentIndex, contains the same
2281
+ value as the mplsOutSegmentLdpLspIndex.""",
2282
+ }, # column
2283
+ "mplsLdpLspFecSegmentIndex" : {
2284
+ "nodetype" : "column",
2285
+ "moduleName" : "MPLS-LDP-STD-MIB",
2286
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.10.1.2",
2287
+ "status" : "current",
2288
+ "syntax" : {
2289
+ "type" : { "module" :"MPLS-LSR-STD-MIB", "name" : "MplsIndexType"},
2290
+ },
2291
+ "access" : "noaccess",
2292
+ "description" :
2293
+ """This index is interpretted by using the value
2294
+ of the mplsLdpLspFecSegment.
2295
+
2296
+ If the mplsLdpLspFecSegment is inSegment(1),
2297
+ then this index has the same value as
2298
+ mplsInSegmentLdpLspIndex.
2299
+
2300
+ If the mplsLdpLspFecSegment is outSegment(2),
2301
+ then this index has the same value as
2302
+ mplsOutSegmentLdpLspIndex.""",
2303
+ }, # column
2304
+ "mplsLdpLspFecIndex" : {
2305
+ "nodetype" : "column",
2306
+ "moduleName" : "MPLS-LDP-STD-MIB",
2307
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.10.1.3",
2308
+ "status" : "current",
2309
+ "syntax" : {
2310
+ "type" : { "module" :"DIFFSERV-MIB", "name" : "IndexInteger"},
2311
+ },
2312
+ "access" : "noaccess",
2313
+ "description" :
2314
+ """This index identifies the FEC entry in the
2315
+ mplsFecTable associated with this session.
2316
+ In other words, the value of this index
2317
+ is the same as the value of the mplsFecIndex
2318
+ that denotes the FEC associated with this
2319
+ Session.""",
2320
+ }, # column
2321
+ "mplsLdpLspFecStorageType" : {
2322
+ "nodetype" : "column",
2323
+ "moduleName" : "MPLS-LDP-STD-MIB",
2324
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.10.1.4",
2325
+ "status" : "current",
2326
+ "syntax" : {
2327
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
2328
+ },
2329
+ "access" : "readwrite",
2330
+ "default" : "nonVolatile",
2331
+ "description" :
2332
+ """The storage type for this conceptual row.
2333
+ Conceptual rows having the value 'permanent(4)'
2334
+ need not allow write-access to any columnar
2335
+ objects in the row.""",
2336
+ }, # column
2337
+ "mplsLdpLspFecRowStatus" : {
2338
+ "nodetype" : "column",
2339
+ "moduleName" : "MPLS-LDP-STD-MIB",
2340
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.10.1.5",
2341
+ "status" : "current",
2342
+ "syntax" : {
2343
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2344
+ },
2345
+ "access" : "readwrite",
2346
+ "description" :
2347
+ """The status of this conceptual row. If the
2348
+ value of this object is 'active(1)', then
2349
+ none of the writable objects of this entry
2350
+ can be modified.
2351
+
2352
+ The Agent should delete this row when
2353
+ the session ceases to exist. If an
2354
+ operator wants to associate the session with
2355
+ a different FEC, the recommended
2356
+ procedure is (as described in detail in the section
2357
+ entitled, 'Changing Values After Session
2358
+ Establishment', and again described in the
2359
+ DESCRIPTION clause of the
2360
+ mplsLdpEntityAdminStatus object)
2361
+ is to set the mplsLdpEntityAdminStatus to
2362
+ down, thereby explicitly causing a session
2363
+ to be torn down. This will also
2364
+ cause this entry to be deleted.
2365
+
2366
+ Then, set the mplsLdpEntityAdminStatus
2367
+ to enable which enables a new session to be initiated.
2368
+ Once the session is initiated, an entry may be
2369
+ added to this table to associate the new session
2370
+ with a FEC.""",
2371
+ }, # column
2372
+ "mplsLdpSessionPeerAddrTable" : {
2373
+ "nodetype" : "table",
2374
+ "moduleName" : "MPLS-LDP-STD-MIB",
2375
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.11",
2376
+ "status" : "current",
2377
+ "description" :
2378
+ """This table 'extends' the mplsLdpSessionTable.
2379
+ This table is used to store Label Address Information
2380
+ from Label Address Messages received by this LSR from
2381
+ Peers. This table is read-only and should be updated
2382
+
2383
+
2384
+
2385
+ when Label Withdraw Address Messages are received, i.e.,
2386
+ Rows should be deleted as appropriate.
2387
+
2388
+ NOTE: since more than one address may be contained
2389
+ in a Label Address Message, this table 'sparse augments',
2390
+ the mplsLdpSessionTable's information.""",
2391
+ }, # table
2392
+ "mplsLdpSessionPeerAddrEntry" : {
2393
+ "nodetype" : "row",
2394
+ "moduleName" : "MPLS-LDP-STD-MIB",
2395
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.11.1",
2396
+ "status" : "current",
2397
+ "linkage" : [
2398
+ "mplsLdpEntityLdpId",
2399
+ "mplsLdpEntityIndex",
2400
+ "mplsLdpPeerLdpId",
2401
+ "mplsLdpSessionPeerAddrIndex",
2402
+ ],
2403
+ "description" :
2404
+ """An entry in this table represents information on
2405
+ a session's single next hop address which was
2406
+ advertised in an Address Message from the LDP peer.
2407
+ The information contained in a row is read-only.""",
2408
+ }, # row
2409
+ "mplsLdpSessionPeerAddrIndex" : {
2410
+ "nodetype" : "column",
2411
+ "moduleName" : "MPLS-LDP-STD-MIB",
2412
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.11.1.1",
2413
+ "status" : "current",
2414
+ "syntax" : {
2415
+ "type" : {
2416
+ "basetype" : "Unsigned32",
2417
+ "ranges" : [
2418
+ {
2419
+ "min" : "1",
2420
+ "max" : "4294967295"
2421
+ },
2422
+ ],
2423
+ "range" : {
2424
+ "min" : "1",
2425
+ "max" : "4294967295"
2426
+ },
2427
+ },
2428
+ },
2429
+ "access" : "noaccess",
2430
+ "description" :
2431
+ """An index which uniquely identifies this entry within
2432
+ a given session.""",
2433
+ }, # column
2434
+ "mplsLdpSessionPeerNextHopAddrType" : {
2435
+ "nodetype" : "column",
2436
+ "moduleName" : "MPLS-LDP-STD-MIB",
2437
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.11.1.2",
2438
+ "status" : "current",
2439
+ "syntax" : {
2440
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
2441
+ },
2442
+ "access" : "readonly",
2443
+ "description" :
2444
+ """The internetwork layer address type of this Next Hop
2445
+ Address as specified in the Label Address Message
2446
+ associated with this Session. The value of this
2447
+ object indicates how to interpret the value of
2448
+
2449
+
2450
+
2451
+ mplsLdpSessionPeerNextHopAddr.""",
2452
+ }, # column
2453
+ "mplsLdpSessionPeerNextHopAddr" : {
2454
+ "nodetype" : "column",
2455
+ "moduleName" : "MPLS-LDP-STD-MIB",
2456
+ "oid" : "1.3.6.1.2.1.10.166.4.1.3.11.1.3",
2457
+ "status" : "current",
2458
+ "syntax" : {
2459
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2460
+ },
2461
+ "access" : "readonly",
2462
+ "description" :
2463
+ """The next hop address. The type of this address
2464
+ is specified by the value of the
2465
+ mplsLdpSessionPeerNextHopAddrType.""",
2466
+ "reference" :
2467
+ """RFC3036, Section 2.7. LDP Identifiers
2468
+ and Next Hop Addresses""",
2469
+ }, # column
2470
+ "mplsLdpConformance" : {
2471
+ "nodetype" : "node",
2472
+ "moduleName" : "MPLS-LDP-STD-MIB",
2473
+ "oid" : "1.3.6.1.2.1.10.166.4.2",
2474
+ }, # node
2475
+ "mplsLdpGroups" : {
2476
+ "nodetype" : "node",
2477
+ "moduleName" : "MPLS-LDP-STD-MIB",
2478
+ "oid" : "1.3.6.1.2.1.10.166.4.2.1",
2479
+ }, # node
2480
+ "mplsLdpCompliances" : {
2481
+ "nodetype" : "node",
2482
+ "moduleName" : "MPLS-LDP-STD-MIB",
2483
+ "oid" : "1.3.6.1.2.1.10.166.4.2.2",
2484
+ }, # node
2485
+ }, # nodes
2486
+
2487
+ "notifications" : {
2488
+ "mplsLdpInitSessionThresholdExceeded" : {
2489
+ "nodetype" : "notification",
2490
+ "moduleName" : "MPLS-LDP-STD-MIB",
2491
+ "oid" : "1.3.6.1.2.1.10.166.4.0.1",
2492
+ "status" : "current",
2493
+ "objects" : {
2494
+ "mplsLdpEntityInitSessionThreshold" : {
2495
+ "nodetype" : "object",
2496
+ "module" : "MPLS-LDP-STD-MIB"
2497
+ },
2498
+ },
2499
+ "description" :
2500
+ """This notification is generated when the value of
2501
+ the 'mplsLdpEntityInitSessionThreshold' object
2502
+ is not zero, and the number of Session
2503
+ Initialization messages exceeds the value
2504
+ of the 'mplsLdpEntityInitSessionThreshold' object.""",
2505
+ }, # notification
2506
+ "mplsLdpPathVectorLimitMismatch" : {
2507
+ "nodetype" : "notification",
2508
+ "moduleName" : "MPLS-LDP-STD-MIB",
2509
+ "oid" : "1.3.6.1.2.1.10.166.4.0.2",
2510
+ "status" : "current",
2511
+ "objects" : {
2512
+ "mplsLdpEntityPathVectorLimit" : {
2513
+ "nodetype" : "object",
2514
+ "module" : "MPLS-LDP-STD-MIB"
2515
+ },
2516
+ "mplsLdpPeerPathVectorLimit" : {
2517
+ "nodetype" : "object",
2518
+ "module" : "MPLS-LDP-STD-MIB"
2519
+ },
2520
+ },
2521
+ "description" :
2522
+ """This notification is sent when the
2523
+ 'mplsLdpEntityPathVectorLimit' does NOT match
2524
+ the value of the 'mplsLdpPeerPathVectorLimit' for
2525
+ a specific Entity.""",
2526
+ "reference" :
2527
+ """RFC3036, LDP Specification, Section 3.5.3.""",
2528
+ }, # notification
2529
+ "mplsLdpSessionUp" : {
2530
+ "nodetype" : "notification",
2531
+ "moduleName" : "MPLS-LDP-STD-MIB",
2532
+ "oid" : "1.3.6.1.2.1.10.166.4.0.3",
2533
+ "status" : "current",
2534
+ "objects" : {
2535
+ "mplsLdpSessionState" : {
2536
+ "nodetype" : "object",
2537
+ "module" : "MPLS-LDP-STD-MIB"
2538
+ },
2539
+ "mplsLdpSessionDiscontinuityTime" : {
2540
+ "nodetype" : "object",
2541
+ "module" : "MPLS-LDP-STD-MIB"
2542
+ },
2543
+ "mplsLdpSessionStatsUnknownMesTypeErrors" : {
2544
+ "nodetype" : "object",
2545
+ "module" : "MPLS-LDP-STD-MIB"
2546
+ },
2547
+ "mplsLdpSessionStatsUnknownTlvErrors" : {
2548
+ "nodetype" : "object",
2549
+ "module" : "MPLS-LDP-STD-MIB"
2550
+ },
2551
+ },
2552
+ "description" :
2553
+ """If this notification is sent when the
2554
+ value of 'mplsLdpSessionState' enters
2555
+ the 'operational(5)' state.""",
2556
+ }, # notification
2557
+ "mplsLdpSessionDown" : {
2558
+ "nodetype" : "notification",
2559
+ "moduleName" : "MPLS-LDP-STD-MIB",
2560
+ "oid" : "1.3.6.1.2.1.10.166.4.0.4",
2561
+ "status" : "current",
2562
+ "objects" : {
2563
+ "mplsLdpSessionState" : {
2564
+ "nodetype" : "object",
2565
+ "module" : "MPLS-LDP-STD-MIB"
2566
+ },
2567
+ "mplsLdpSessionDiscontinuityTime" : {
2568
+ "nodetype" : "object",
2569
+ "module" : "MPLS-LDP-STD-MIB"
2570
+ },
2571
+ "mplsLdpSessionStatsUnknownMesTypeErrors" : {
2572
+ "nodetype" : "object",
2573
+ "module" : "MPLS-LDP-STD-MIB"
2574
+ },
2575
+ "mplsLdpSessionStatsUnknownTlvErrors" : {
2576
+ "nodetype" : "object",
2577
+ "module" : "MPLS-LDP-STD-MIB"
2578
+ },
2579
+ },
2580
+ "description" :
2581
+ """This notification is sent when the
2582
+ value of 'mplsLdpSessionState' leaves
2583
+ the 'operational(5)' state.""",
2584
+ }, # notification
2585
+ }, # notifications
2586
+
2587
+ "groups" : {
2588
+ "mplsLdpGeneralGroup" : {
2589
+ "nodetype" : "group",
2590
+ "moduleName" : "MPLS-LDP-STD-MIB",
2591
+ "oid" : "1.3.6.1.2.1.10.166.4.2.1.1",
2592
+ "status" : "current",
2593
+ "members" : {
2594
+ "mplsLdpLsrId" : {
2595
+ "nodetype" : "member",
2596
+ "module" : "MPLS-LDP-STD-MIB"
2597
+ },
2598
+ "mplsLdpLsrLoopDetectionCapable" : {
2599
+ "nodetype" : "member",
2600
+ "module" : "MPLS-LDP-STD-MIB"
2601
+ },
2602
+ "mplsLdpEntityLastChange" : {
2603
+ "nodetype" : "member",
2604
+ "module" : "MPLS-LDP-STD-MIB"
2605
+ },
2606
+ "mplsLdpEntityIndexNext" : {
2607
+ "nodetype" : "member",
2608
+ "module" : "MPLS-LDP-STD-MIB"
2609
+ },
2610
+ "mplsLdpEntityProtocolVersion" : {
2611
+ "nodetype" : "member",
2612
+ "module" : "MPLS-LDP-STD-MIB"
2613
+ },
2614
+ "mplsLdpEntityAdminStatus" : {
2615
+ "nodetype" : "member",
2616
+ "module" : "MPLS-LDP-STD-MIB"
2617
+ },
2618
+ "mplsLdpEntityOperStatus" : {
2619
+ "nodetype" : "member",
2620
+ "module" : "MPLS-LDP-STD-MIB"
2621
+ },
2622
+ "mplsLdpEntityTcpPort" : {
2623
+ "nodetype" : "member",
2624
+ "module" : "MPLS-LDP-STD-MIB"
2625
+ },
2626
+ "mplsLdpEntityUdpDscPort" : {
2627
+ "nodetype" : "member",
2628
+ "module" : "MPLS-LDP-STD-MIB"
2629
+ },
2630
+ "mplsLdpEntityMaxPduLength" : {
2631
+ "nodetype" : "member",
2632
+ "module" : "MPLS-LDP-STD-MIB"
2633
+ },
2634
+ "mplsLdpEntityKeepAliveHoldTimer" : {
2635
+ "nodetype" : "member",
2636
+ "module" : "MPLS-LDP-STD-MIB"
2637
+ },
2638
+ "mplsLdpEntityHelloHoldTimer" : {
2639
+ "nodetype" : "member",
2640
+ "module" : "MPLS-LDP-STD-MIB"
2641
+ },
2642
+ "mplsLdpEntityInitSessionThreshold" : {
2643
+ "nodetype" : "member",
2644
+ "module" : "MPLS-LDP-STD-MIB"
2645
+ },
2646
+ "mplsLdpEntityLabelDistMethod" : {
2647
+ "nodetype" : "member",
2648
+ "module" : "MPLS-LDP-STD-MIB"
2649
+ },
2650
+ "mplsLdpEntityLabelRetentionMode" : {
2651
+ "nodetype" : "member",
2652
+ "module" : "MPLS-LDP-STD-MIB"
2653
+ },
2654
+ "mplsLdpEntityPathVectorLimit" : {
2655
+ "nodetype" : "member",
2656
+ "module" : "MPLS-LDP-STD-MIB"
2657
+ },
2658
+ "mplsLdpEntityHopCountLimit" : {
2659
+ "nodetype" : "member",
2660
+ "module" : "MPLS-LDP-STD-MIB"
2661
+ },
2662
+ "mplsLdpEntityTransportAddrKind" : {
2663
+ "nodetype" : "member",
2664
+ "module" : "MPLS-LDP-STD-MIB"
2665
+ },
2666
+ "mplsLdpEntityTargetPeer" : {
2667
+ "nodetype" : "member",
2668
+ "module" : "MPLS-LDP-STD-MIB"
2669
+ },
2670
+ "mplsLdpEntityTargetPeerAddrType" : {
2671
+ "nodetype" : "member",
2672
+ "module" : "MPLS-LDP-STD-MIB"
2673
+ },
2674
+ "mplsLdpEntityTargetPeerAddr" : {
2675
+ "nodetype" : "member",
2676
+ "module" : "MPLS-LDP-STD-MIB"
2677
+ },
2678
+ "mplsLdpEntityLabelType" : {
2679
+ "nodetype" : "member",
2680
+ "module" : "MPLS-LDP-STD-MIB"
2681
+ },
2682
+ "mplsLdpEntityDiscontinuityTime" : {
2683
+ "nodetype" : "member",
2684
+ "module" : "MPLS-LDP-STD-MIB"
2685
+ },
2686
+ "mplsLdpEntityStorageType" : {
2687
+ "nodetype" : "member",
2688
+ "module" : "MPLS-LDP-STD-MIB"
2689
+ },
2690
+ "mplsLdpEntityRowStatus" : {
2691
+ "nodetype" : "member",
2692
+ "module" : "MPLS-LDP-STD-MIB"
2693
+ },
2694
+ "mplsLdpEntityStatsSessionAttempts" : {
2695
+ "nodetype" : "member",
2696
+ "module" : "MPLS-LDP-STD-MIB"
2697
+ },
2698
+ "mplsLdpEntityStatsSessionRejectedNoHelloErrors" : {
2699
+ "nodetype" : "member",
2700
+ "module" : "MPLS-LDP-STD-MIB"
2701
+ },
2702
+ "mplsLdpEntityStatsSessionRejectedAdErrors" : {
2703
+ "nodetype" : "member",
2704
+ "module" : "MPLS-LDP-STD-MIB"
2705
+ },
2706
+ "mplsLdpEntityStatsSessionRejectedMaxPduErrors" : {
2707
+ "nodetype" : "member",
2708
+ "module" : "MPLS-LDP-STD-MIB"
2709
+ },
2710
+ "mplsLdpEntityStatsSessionRejectedLRErrors" : {
2711
+ "nodetype" : "member",
2712
+ "module" : "MPLS-LDP-STD-MIB"
2713
+ },
2714
+ "mplsLdpEntityStatsBadLdpIdentifierErrors" : {
2715
+ "nodetype" : "member",
2716
+ "module" : "MPLS-LDP-STD-MIB"
2717
+ },
2718
+ "mplsLdpEntityStatsBadPduLengthErrors" : {
2719
+ "nodetype" : "member",
2720
+ "module" : "MPLS-LDP-STD-MIB"
2721
+ },
2722
+ "mplsLdpEntityStatsBadMessageLengthErrors" : {
2723
+ "nodetype" : "member",
2724
+ "module" : "MPLS-LDP-STD-MIB"
2725
+ },
2726
+ "mplsLdpEntityStatsBadTlvLengthErrors" : {
2727
+ "nodetype" : "member",
2728
+ "module" : "MPLS-LDP-STD-MIB"
2729
+ },
2730
+ "mplsLdpEntityStatsMalformedTlvValueErrors" : {
2731
+ "nodetype" : "member",
2732
+ "module" : "MPLS-LDP-STD-MIB"
2733
+ },
2734
+ "mplsLdpEntityStatsKeepAliveTimerExpErrors" : {
2735
+ "nodetype" : "member",
2736
+ "module" : "MPLS-LDP-STD-MIB"
2737
+ },
2738
+ "mplsLdpEntityStatsShutdownReceivedNotifications" : {
2739
+ "nodetype" : "member",
2740
+ "module" : "MPLS-LDP-STD-MIB"
2741
+ },
2742
+ "mplsLdpEntityStatsShutdownSentNotifications" : {
2743
+ "nodetype" : "member",
2744
+ "module" : "MPLS-LDP-STD-MIB"
2745
+ },
2746
+ "mplsLdpPeerLastChange" : {
2747
+ "nodetype" : "member",
2748
+ "module" : "MPLS-LDP-STD-MIB"
2749
+ },
2750
+ "mplsLdpPeerLabelDistMethod" : {
2751
+ "nodetype" : "member",
2752
+ "module" : "MPLS-LDP-STD-MIB"
2753
+ },
2754
+ "mplsLdpPeerPathVectorLimit" : {
2755
+ "nodetype" : "member",
2756
+ "module" : "MPLS-LDP-STD-MIB"
2757
+ },
2758
+ "mplsLdpPeerTransportAddrType" : {
2759
+ "nodetype" : "member",
2760
+ "module" : "MPLS-LDP-STD-MIB"
2761
+ },
2762
+ "mplsLdpPeerTransportAddr" : {
2763
+ "nodetype" : "member",
2764
+ "module" : "MPLS-LDP-STD-MIB"
2765
+ },
2766
+ "mplsLdpHelloAdjacencyHoldTimeRem" : {
2767
+ "nodetype" : "member",
2768
+ "module" : "MPLS-LDP-STD-MIB"
2769
+ },
2770
+ "mplsLdpHelloAdjacencyHoldTime" : {
2771
+ "nodetype" : "member",
2772
+ "module" : "MPLS-LDP-STD-MIB"
2773
+ },
2774
+ "mplsLdpHelloAdjacencyType" : {
2775
+ "nodetype" : "member",
2776
+ "module" : "MPLS-LDP-STD-MIB"
2777
+ },
2778
+ "mplsLdpSessionStateLastChange" : {
2779
+ "nodetype" : "member",
2780
+ "module" : "MPLS-LDP-STD-MIB"
2781
+ },
2782
+ "mplsLdpSessionState" : {
2783
+ "nodetype" : "member",
2784
+ "module" : "MPLS-LDP-STD-MIB"
2785
+ },
2786
+ "mplsLdpSessionRole" : {
2787
+ "nodetype" : "member",
2788
+ "module" : "MPLS-LDP-STD-MIB"
2789
+ },
2790
+ "mplsLdpSessionProtocolVersion" : {
2791
+ "nodetype" : "member",
2792
+ "module" : "MPLS-LDP-STD-MIB"
2793
+ },
2794
+ "mplsLdpSessionKeepAliveHoldTimeRem" : {
2795
+ "nodetype" : "member",
2796
+ "module" : "MPLS-LDP-STD-MIB"
2797
+ },
2798
+ "mplsLdpSessionKeepAliveTime" : {
2799
+ "nodetype" : "member",
2800
+ "module" : "MPLS-LDP-STD-MIB"
2801
+ },
2802
+ "mplsLdpSessionMaxPduLength" : {
2803
+ "nodetype" : "member",
2804
+ "module" : "MPLS-LDP-STD-MIB"
2805
+ },
2806
+ "mplsLdpSessionDiscontinuityTime" : {
2807
+ "nodetype" : "member",
2808
+ "module" : "MPLS-LDP-STD-MIB"
2809
+ },
2810
+ "mplsLdpSessionStatsUnknownMesTypeErrors" : {
2811
+ "nodetype" : "member",
2812
+ "module" : "MPLS-LDP-STD-MIB"
2813
+ },
2814
+ "mplsLdpSessionStatsUnknownTlvErrors" : {
2815
+ "nodetype" : "member",
2816
+ "module" : "MPLS-LDP-STD-MIB"
2817
+ },
2818
+ "mplsLdpSessionPeerNextHopAddrType" : {
2819
+ "nodetype" : "member",
2820
+ "module" : "MPLS-LDP-STD-MIB"
2821
+ },
2822
+ "mplsLdpSessionPeerNextHopAddr" : {
2823
+ "nodetype" : "member",
2824
+ "module" : "MPLS-LDP-STD-MIB"
2825
+ },
2826
+ "mplsFecLastChange" : {
2827
+ "nodetype" : "member",
2828
+ "module" : "MPLS-LDP-STD-MIB"
2829
+ },
2830
+ "mplsFecIndexNext" : {
2831
+ "nodetype" : "member",
2832
+ "module" : "MPLS-LDP-STD-MIB"
2833
+ },
2834
+ "mplsFecType" : {
2835
+ "nodetype" : "member",
2836
+ "module" : "MPLS-LDP-STD-MIB"
2837
+ },
2838
+ "mplsFecAddrType" : {
2839
+ "nodetype" : "member",
2840
+ "module" : "MPLS-LDP-STD-MIB"
2841
+ },
2842
+ "mplsFecAddr" : {
2843
+ "nodetype" : "member",
2844
+ "module" : "MPLS-LDP-STD-MIB"
2845
+ },
2846
+ "mplsFecAddrPrefixLength" : {
2847
+ "nodetype" : "member",
2848
+ "module" : "MPLS-LDP-STD-MIB"
2849
+ },
2850
+ "mplsFecStorageType" : {
2851
+ "nodetype" : "member",
2852
+ "module" : "MPLS-LDP-STD-MIB"
2853
+ },
2854
+ "mplsFecRowStatus" : {
2855
+ "nodetype" : "member",
2856
+ "module" : "MPLS-LDP-STD-MIB"
2857
+ },
2858
+ }, # members
2859
+ "description" :
2860
+ """Objects that apply to all MPLS LDP implementations.""",
2861
+ }, # group
2862
+ "mplsLdpLspGroup" : {
2863
+ "nodetype" : "group",
2864
+ "moduleName" : "MPLS-LDP-STD-MIB",
2865
+ "oid" : "1.3.6.1.2.1.10.166.4.2.1.2",
2866
+ "status" : "current",
2867
+ "members" : {
2868
+ "mplsInSegmentLdpLspLabelType" : {
2869
+ "nodetype" : "member",
2870
+ "module" : "MPLS-LDP-STD-MIB"
2871
+ },
2872
+ "mplsInSegmentLdpLspType" : {
2873
+ "nodetype" : "member",
2874
+ "module" : "MPLS-LDP-STD-MIB"
2875
+ },
2876
+ "mplsOutSegmentLdpLspLabelType" : {
2877
+ "nodetype" : "member",
2878
+ "module" : "MPLS-LDP-STD-MIB"
2879
+ },
2880
+ "mplsOutSegmentLdpLspType" : {
2881
+ "nodetype" : "member",
2882
+ "module" : "MPLS-LDP-STD-MIB"
2883
+ },
2884
+ "mplsLdpLspFecLastChange" : {
2885
+ "nodetype" : "member",
2886
+ "module" : "MPLS-LDP-STD-MIB"
2887
+ },
2888
+ "mplsLdpLspFecStorageType" : {
2889
+ "nodetype" : "member",
2890
+ "module" : "MPLS-LDP-STD-MIB"
2891
+ },
2892
+ "mplsLdpLspFecRowStatus" : {
2893
+ "nodetype" : "member",
2894
+ "module" : "MPLS-LDP-STD-MIB"
2895
+ },
2896
+ }, # members
2897
+ "description" :
2898
+ """These objects are for LDP implementations
2899
+ which interface to the Label Information Base (LIB)
2900
+ in the MPLS-LSR-STD-MIB. The LIB is
2901
+ represented in the mplsInSegmentTable,
2902
+ mplsOutSegmentTable and mplsXCTable.""",
2903
+ }, # group
2904
+ "mplsLdpNotificationsGroup" : {
2905
+ "nodetype" : "group",
2906
+ "moduleName" : "MPLS-LDP-STD-MIB",
2907
+ "oid" : "1.3.6.1.2.1.10.166.4.2.1.3",
2908
+ "status" : "current",
2909
+ "members" : {
2910
+ "mplsLdpInitSessionThresholdExceeded" : {
2911
+ "nodetype" : "member",
2912
+ "module" : "MPLS-LDP-STD-MIB"
2913
+ },
2914
+ "mplsLdpPathVectorLimitMismatch" : {
2915
+ "nodetype" : "member",
2916
+ "module" : "MPLS-LDP-STD-MIB"
2917
+ },
2918
+ "mplsLdpSessionUp" : {
2919
+ "nodetype" : "member",
2920
+ "module" : "MPLS-LDP-STD-MIB"
2921
+ },
2922
+ "mplsLdpSessionDown" : {
2923
+ "nodetype" : "member",
2924
+ "module" : "MPLS-LDP-STD-MIB"
2925
+ },
2926
+ }, # members
2927
+ "description" :
2928
+ """The notification for an MPLS LDP implementation.""",
2929
+ }, # group
2930
+ }, # groups
2931
+
2932
+ "compliances" : {
2933
+ "mplsLdpModuleFullCompliance" : {
2934
+ "nodetype" : "compliance",
2935
+ "moduleName" : "MPLS-LDP-STD-MIB",
2936
+ "oid" : "1.3.6.1.2.1.10.166.4.2.2.1",
2937
+ "status" : "current",
2938
+ "description" :
2939
+ """The Module is implemented with support
2940
+ for read-create and read-write. In other
2941
+
2942
+
2943
+
2944
+ words, both monitoring and configuration
2945
+ are available when using this MODULE-COMPLIANCE.""",
2946
+ "requires" : {
2947
+ "mplsLdpGeneralGroup" : {
2948
+ "nodetype" : "mandatory",
2949
+ "module" : "MPLS-LDP-STD-MIB"
2950
+ },
2951
+ "mplsLdpNotificationsGroup" : {
2952
+ "nodetype" : "mandatory",
2953
+ "module" : "MPLS-LDP-STD-MIB"
2954
+ },
2955
+ "mplsLdpLspGroup" : {
2956
+ "nodetype" : "optional",
2957
+ "module" : "MPLS-LDP-STD-MIB",
2958
+ "description" :
2959
+ """This group must be supported if the LSR MIB is
2960
+ implemented, specifically the mplsInSegmentTable,
2961
+ the mplsOutSegmentTable or the mplsXCTable.""",
2962
+ },
2963
+ }, # requires
2964
+ "refinements" : {
2965
+ "mplsLdpEntityTargetPeerAddrType" : {
2966
+ "module" : "MPLS-LDP-STD-MIB",
2967
+ "syntax" : {
2968
+ "type" : {
2969
+ "basetype" : "Enumeration",
2970
+ "parent module" : {
2971
+ "name" : "INET-ADDRESS-MIB",
2972
+ "type" : "InetAddressType",
2973
+ },
2974
+ "unknown" : {
2975
+ "nodetype" : "namednumber",
2976
+ "number" : "0"
2977
+ },
2978
+ "ipv4" : {
2979
+ "nodetype" : "namednumber",
2980
+ "number" : "1"
2981
+ },
2982
+ "ipv6" : {
2983
+ "nodetype" : "namednumber",
2984
+ "number" : "2"
2985
+ },
2986
+ },
2987
+ }, # syntax
2988
+ "description" :
2989
+ """An implementation is only required to support
2990
+ 'unknown(0)', IPv4 and globally unique IPv6 addresses.""",
2991
+ },
2992
+ "mplsLdpEntityTargetPeerAddr" : {
2993
+ "module" : "MPLS-LDP-STD-MIB",
2994
+ "syntax" : {
2995
+ "type" : {
2996
+ "basetype" : "OctetString",
2997
+ "parent module" : {
2998
+ "name" : "INET-ADDRESS-MIB",
2999
+ "type" : "InetAddress",
3000
+ },
3001
+ "ranges" : [
3002
+ {
3003
+ "min" : "0",
3004
+ "max" : "0"
3005
+ },
3006
+ {
3007
+ "min" : "4",
3008
+ "max" : "4"
3009
+ },
3010
+ {
3011
+ "min" : "16",
3012
+ "max" : "16"
3013
+ },
3014
+ ],
3015
+ "range" : {
3016
+ "min" : "0",
3017
+ "max" : "16"
3018
+ },
3019
+ },
3020
+ }, # syntax
3021
+ "description" :
3022
+ """An implementation is only required to support IPv4 and
3023
+ globally unique IPv6 addresses.""",
3024
+ },
3025
+ "mplsLdpEntityRowStatus" : {
3026
+ "module" : "MPLS-LDP-STD-MIB",
3027
+ "syntax" : {
3028
+ "type" : {
3029
+ "basetype" : "Enumeration",
3030
+ "parent module" : {
3031
+ "name" : "SNMPv2-TC",
3032
+ "type" : "RowStatus",
3033
+ },
3034
+ "active" : {
3035
+ "nodetype" : "namednumber",
3036
+ "number" : "1"
3037
+ },
3038
+ },
3039
+ }, # syntax
3040
+ "writesyntax" : {
3041
+ "type" : {
3042
+ "basetype" : "Enumeration",
3043
+ "parent module" : {
3044
+ "name" : "SNMPv2-TC",
3045
+ "type" : "RowStatus",
3046
+ },
3047
+ "createAndGo" : {
3048
+ "nodetype" : "namednumber",
3049
+ "number" : "4"
3050
+ },
3051
+ "destroy" : {
3052
+ "nodetype" : "namednumber",
3053
+ "number" : "6"
3054
+ },
3055
+ },
3056
+ }, # writesyntax
3057
+ "description" :
3058
+ """Support for createAndWait and notInService is not
3059
+ required.""",
3060
+ },
3061
+ "mplsFecAddrType" : {
3062
+ "module" : "MPLS-LDP-STD-MIB",
3063
+ "syntax" : {
3064
+ "type" : {
3065
+ "basetype" : "Enumeration",
3066
+ "parent module" : {
3067
+ "name" : "INET-ADDRESS-MIB",
3068
+ "type" : "InetAddressType",
3069
+ },
3070
+ "unknown" : {
3071
+ "nodetype" : "namednumber",
3072
+ "number" : "0"
3073
+ },
3074
+ "ipv4" : {
3075
+ "nodetype" : "namednumber",
3076
+ "number" : "1"
3077
+ },
3078
+ "ipv6" : {
3079
+ "nodetype" : "namednumber",
3080
+ "number" : "2"
3081
+ },
3082
+ },
3083
+ }, # syntax
3084
+ "description" :
3085
+ """An implementation is only required to support
3086
+ 'unknown(0)', IPv4 and globally unique IPv6 addresses.""",
3087
+ },
3088
+ "mplsFecAddr" : {
3089
+ "module" : "MPLS-LDP-STD-MIB",
3090
+ "syntax" : {
3091
+ "type" : {
3092
+ "basetype" : "OctetString",
3093
+ "parent module" : {
3094
+ "name" : "INET-ADDRESS-MIB",
3095
+ "type" : "InetAddress",
3096
+ },
3097
+ "ranges" : [
3098
+ {
3099
+ "min" : "0",
3100
+ "max" : "0"
3101
+ },
3102
+ {
3103
+ "min" : "4",
3104
+ "max" : "4"
3105
+ },
3106
+ {
3107
+ "min" : "16",
3108
+ "max" : "16"
3109
+ },
3110
+ ],
3111
+ "range" : {
3112
+ "min" : "0",
3113
+ "max" : "16"
3114
+ },
3115
+ },
3116
+ }, # syntax
3117
+ "description" :
3118
+ """An implementation is only required to support IPv4 and
3119
+ globally unique IPv6 addresses.""",
3120
+ },
3121
+ "mplsFecRowStatus" : {
3122
+ "module" : "MPLS-LDP-STD-MIB",
3123
+ "syntax" : {
3124
+ "type" : {
3125
+ "basetype" : "Enumeration",
3126
+ "parent module" : {
3127
+ "name" : "SNMPv2-TC",
3128
+ "type" : "RowStatus",
3129
+ },
3130
+ "active" : {
3131
+ "nodetype" : "namednumber",
3132
+ "number" : "1"
3133
+ },
3134
+ },
3135
+ }, # syntax
3136
+ "writesyntax" : {
3137
+ "type" : {
3138
+ "basetype" : "Enumeration",
3139
+ "parent module" : {
3140
+ "name" : "SNMPv2-TC",
3141
+ "type" : "RowStatus",
3142
+ },
3143
+ "createAndGo" : {
3144
+ "nodetype" : "namednumber",
3145
+ "number" : "4"
3146
+ },
3147
+ "destroy" : {
3148
+ "nodetype" : "namednumber",
3149
+ "number" : "6"
3150
+ },
3151
+ },
3152
+ }, # writesyntax
3153
+ "description" :
3154
+ """Support for createAndWait and notInService is not
3155
+ required.""",
3156
+ },
3157
+ "mplsLdpLspFecRowStatus" : {
3158
+ "module" : "MPLS-LDP-STD-MIB",
3159
+ "syntax" : {
3160
+ "type" : {
3161
+ "basetype" : "Enumeration",
3162
+ "parent module" : {
3163
+ "name" : "SNMPv2-TC",
3164
+ "type" : "RowStatus",
3165
+ },
3166
+ "active" : {
3167
+ "nodetype" : "namednumber",
3168
+ "number" : "1"
3169
+ },
3170
+ },
3171
+ }, # syntax
3172
+ "writesyntax" : {
3173
+ "type" : {
3174
+ "basetype" : "Enumeration",
3175
+ "parent module" : {
3176
+ "name" : "SNMPv2-TC",
3177
+ "type" : "RowStatus",
3178
+ },
3179
+ "createAndGo" : {
3180
+ "nodetype" : "namednumber",
3181
+ "number" : "4"
3182
+ },
3183
+ "destroy" : {
3184
+ "nodetype" : "namednumber",
3185
+ "number" : "6"
3186
+ },
3187
+ },
3188
+ }, # writesyntax
3189
+ "description" :
3190
+ """Support for createAndWait and notInService is not
3191
+ required.""",
3192
+ },
3193
+ "mplsLdpSessionPeerNextHopAddrType" : {
3194
+ "module" : "MPLS-LDP-STD-MIB",
3195
+ "syntax" : {
3196
+ "type" : {
3197
+ "basetype" : "Enumeration",
3198
+ "parent module" : {
3199
+ "name" : "INET-ADDRESS-MIB",
3200
+ "type" : "InetAddressType",
3201
+ },
3202
+ "unknown" : {
3203
+ "nodetype" : "namednumber",
3204
+ "number" : "0"
3205
+ },
3206
+ "ipv4" : {
3207
+ "nodetype" : "namednumber",
3208
+ "number" : "1"
3209
+ },
3210
+ "ipv6" : {
3211
+ "nodetype" : "namednumber",
3212
+ "number" : "2"
3213
+ },
3214
+ },
3215
+ }, # syntax
3216
+ "description" :
3217
+ """An implementation is only required to support
3218
+ 'unknown(0)', IPv4 and globally unique IPv6 addresses.""",
3219
+ },
3220
+ "mplsLdpSessionPeerNextHopAddr" : {
3221
+ "module" : "MPLS-LDP-STD-MIB",
3222
+ "syntax" : {
3223
+ "type" : {
3224
+ "basetype" : "OctetString",
3225
+ "parent module" : {
3226
+ "name" : "INET-ADDRESS-MIB",
3227
+ "type" : "InetAddress",
3228
+ },
3229
+ "ranges" : [
3230
+ {
3231
+ "min" : "0",
3232
+ "max" : "0"
3233
+ },
3234
+ {
3235
+ "min" : "4",
3236
+ "max" : "4"
3237
+ },
3238
+ {
3239
+ "min" : "16",
3240
+ "max" : "16"
3241
+ },
3242
+ ],
3243
+ "range" : {
3244
+ "min" : "0",
3245
+ "max" : "16"
3246
+ },
3247
+ },
3248
+ }, # syntax
3249
+ "description" :
3250
+ """An implementation is only required to support IPv4
3251
+ and globally unique IPv6 addresses.""",
3252
+ },
3253
+ }, # refinements
3254
+
3255
+ }, # compliance
3256
+ "mplsLdpModuleReadOnlyCompliance" : {
3257
+ "nodetype" : "compliance",
3258
+ "moduleName" : "MPLS-LDP-STD-MIB",
3259
+ "oid" : "1.3.6.1.2.1.10.166.4.2.2.2",
3260
+ "status" : "current",
3261
+ "description" :
3262
+ """The Module is implemented with support
3263
+ for read-only. In other words, only monitoring
3264
+ is available by implementing this MODULE-COMPLIANCE.""",
3265
+ "requires" : {
3266
+ "mplsLdpGeneralGroup" : {
3267
+ "nodetype" : "mandatory",
3268
+ "module" : "MPLS-LDP-STD-MIB"
3269
+ },
3270
+ "mplsLdpNotificationsGroup" : {
3271
+ "nodetype" : "mandatory",
3272
+ "module" : "MPLS-LDP-STD-MIB"
3273
+ },
3274
+ "mplsLdpLspGroup" : {
3275
+ "nodetype" : "optional",
3276
+ "module" : "MPLS-LDP-STD-MIB",
3277
+ "description" :
3278
+ """This group must be supported if the LSR MIB is
3279
+ implemented, specifically the mplsInSegmentTable,
3280
+ the mplsOutSegmentTable or the mplsXCTable.""",
3281
+ },
3282
+ }, # requires
3283
+ "refinements" : {
3284
+ "mplsLdpEntityProtocolVersion" : {
3285
+ "module" : "MPLS-LDP-STD-MIB",
3286
+ "access" : "readonly",
3287
+ "description" :
3288
+ """Write access is not required.""",
3289
+ },
3290
+ "mplsLdpEntityAdminStatus" : {
3291
+ "module" : "MPLS-LDP-STD-MIB",
3292
+ "access" : "readonly",
3293
+ "description" :
3294
+ """Write access is not required.""",
3295
+ },
3296
+ "mplsLdpEntityTcpPort" : {
3297
+ "module" : "MPLS-LDP-STD-MIB",
3298
+ "access" : "readonly",
3299
+ "description" :
3300
+ """Write access is not required.""",
3301
+ },
3302
+ "mplsLdpEntityUdpDscPort" : {
3303
+ "module" : "MPLS-LDP-STD-MIB",
3304
+ "access" : "readonly",
3305
+ "description" :
3306
+ """Write access is not required.""",
3307
+ },
3308
+ "mplsLdpEntityMaxPduLength" : {
3309
+ "module" : "MPLS-LDP-STD-MIB",
3310
+ "access" : "readonly",
3311
+ "description" :
3312
+ """Write access is not required.""",
3313
+ },
3314
+ "mplsLdpEntityKeepAliveHoldTimer" : {
3315
+ "module" : "MPLS-LDP-STD-MIB",
3316
+ "access" : "readonly",
3317
+ "description" :
3318
+ """Write access is not required.""",
3319
+ },
3320
+ "mplsLdpEntityHelloHoldTimer" : {
3321
+ "module" : "MPLS-LDP-STD-MIB",
3322
+ "access" : "readonly",
3323
+ "description" :
3324
+ """Write access is not required.""",
3325
+ },
3326
+ "mplsLdpEntityInitSessionThreshold" : {
3327
+ "module" : "MPLS-LDP-STD-MIB",
3328
+ "access" : "readonly",
3329
+ "description" :
3330
+ """Write access is not required.""",
3331
+ },
3332
+ "mplsLdpEntityLabelDistMethod" : {
3333
+ "module" : "MPLS-LDP-STD-MIB",
3334
+ "access" : "readonly",
3335
+ "description" :
3336
+ """Write access is not required.""",
3337
+ },
3338
+ "mplsLdpEntityLabelRetentionMode" : {
3339
+ "module" : "MPLS-LDP-STD-MIB",
3340
+ "access" : "readonly",
3341
+ "description" :
3342
+ """Write access is not required.""",
3343
+ },
3344
+ "mplsLdpEntityPathVectorLimit" : {
3345
+ "module" : "MPLS-LDP-STD-MIB",
3346
+ "access" : "readonly",
3347
+ "description" :
3348
+ """Write access is not required.""",
3349
+ },
3350
+ "mplsLdpEntityHopCountLimit" : {
3351
+ "module" : "MPLS-LDP-STD-MIB",
3352
+ "access" : "readonly",
3353
+ "description" :
3354
+ """Write access is not required.""",
3355
+ },
3356
+ "mplsLdpEntityTransportAddrKind" : {
3357
+ "module" : "MPLS-LDP-STD-MIB",
3358
+ "access" : "readonly",
3359
+ "description" :
3360
+ """Write access is not required.""",
3361
+ },
3362
+ "mplsLdpEntityTargetPeer" : {
3363
+ "module" : "MPLS-LDP-STD-MIB",
3364
+ "access" : "readonly",
3365
+ "description" :
3366
+ """Write access is not required.""",
3367
+ },
3368
+ "mplsLdpEntityTargetPeerAddrType" : {
3369
+ "module" : "MPLS-LDP-STD-MIB",
3370
+ "syntax" : {
3371
+ "type" : {
3372
+ "basetype" : "Enumeration",
3373
+ "parent module" : {
3374
+ "name" : "INET-ADDRESS-MIB",
3375
+ "type" : "InetAddressType",
3376
+ },
3377
+ "unknown" : {
3378
+ "nodetype" : "namednumber",
3379
+ "number" : "0"
3380
+ },
3381
+ "ipv4" : {
3382
+ "nodetype" : "namednumber",
3383
+ "number" : "1"
3384
+ },
3385
+ "ipv6" : {
3386
+ "nodetype" : "namednumber",
3387
+ "number" : "2"
3388
+ },
3389
+ },
3390
+ }, # syntax
3391
+ "access" : "readonly",
3392
+ "description" :
3393
+ """Write access is not required.
3394
+ An implementation is only required to support
3395
+ 'unknown(0)', IPv4 and globally unique IPv6 addresses.""",
3396
+ },
3397
+ "mplsLdpEntityTargetPeerAddr" : {
3398
+ "module" : "MPLS-LDP-STD-MIB",
3399
+ "syntax" : {
3400
+ "type" : {
3401
+ "basetype" : "OctetString",
3402
+ "parent module" : {
3403
+ "name" : "INET-ADDRESS-MIB",
3404
+ "type" : "InetAddress",
3405
+ },
3406
+ "ranges" : [
3407
+ {
3408
+ "min" : "0",
3409
+ "max" : "0"
3410
+ },
3411
+ {
3412
+ "min" : "4",
3413
+ "max" : "4"
3414
+ },
3415
+ {
3416
+ "min" : "16",
3417
+ "max" : "16"
3418
+ },
3419
+ ],
3420
+ "range" : {
3421
+ "min" : "0",
3422
+ "max" : "16"
3423
+ },
3424
+ },
3425
+ }, # syntax
3426
+ "access" : "readonly",
3427
+ "description" :
3428
+ """Write access is not required.
3429
+ An implementation is only required to support IPv4 and
3430
+ globally unique IPv6 addresses.""",
3431
+ },
3432
+ "mplsLdpEntityLabelType" : {
3433
+ "module" : "MPLS-LDP-STD-MIB",
3434
+ "access" : "readonly",
3435
+ "description" :
3436
+ """Write access is not required.""",
3437
+ },
3438
+ "mplsLdpEntityStorageType" : {
3439
+ "module" : "MPLS-LDP-STD-MIB",
3440
+ "access" : "readonly",
3441
+ "description" :
3442
+ """Write access is not required.""",
3443
+ },
3444
+ "mplsLdpEntityRowStatus" : {
3445
+ "module" : "MPLS-LDP-STD-MIB",
3446
+ "syntax" : {
3447
+ "type" : {
3448
+ "basetype" : "Enumeration",
3449
+ "parent module" : {
3450
+ "name" : "SNMPv2-TC",
3451
+ "type" : "RowStatus",
3452
+ },
3453
+ "active" : {
3454
+ "nodetype" : "namednumber",
3455
+ "number" : "1"
3456
+ },
3457
+ },
3458
+ }, # syntax
3459
+ "access" : "readonly",
3460
+ "description" :
3461
+ """Write access is not required, and active is the
3462
+ only status that needs to be supported.""",
3463
+ },
3464
+ "mplsFecType" : {
3465
+ "module" : "MPLS-LDP-STD-MIB",
3466
+ "access" : "readonly",
3467
+ "description" :
3468
+ """Write access is not required.""",
3469
+ },
3470
+ "mplsFecAddrPrefixLength" : {
3471
+ "module" : "MPLS-LDP-STD-MIB",
3472
+ "access" : "readonly",
3473
+ "description" :
3474
+ """Write access is not required.""",
3475
+ },
3476
+ "mplsFecAddrType" : {
3477
+ "module" : "MPLS-LDP-STD-MIB",
3478
+ "syntax" : {
3479
+ "type" : {
3480
+ "basetype" : "Enumeration",
3481
+ "parent module" : {
3482
+ "name" : "INET-ADDRESS-MIB",
3483
+ "type" : "InetAddressType",
3484
+ },
3485
+ "unknown" : {
3486
+ "nodetype" : "namednumber",
3487
+ "number" : "0"
3488
+ },
3489
+ "ipv4" : {
3490
+ "nodetype" : "namednumber",
3491
+ "number" : "1"
3492
+ },
3493
+ "ipv6" : {
3494
+ "nodetype" : "namednumber",
3495
+ "number" : "2"
3496
+ },
3497
+ },
3498
+ }, # syntax
3499
+ "access" : "readonly",
3500
+ "description" :
3501
+ """Write access is not required.
3502
+ An implementation is only required to support
3503
+ 'unknown(0)', IPv4 and globally unique IPv6 addresses.""",
3504
+ },
3505
+ "mplsFecAddr" : {
3506
+ "module" : "MPLS-LDP-STD-MIB",
3507
+ "syntax" : {
3508
+ "type" : {
3509
+ "basetype" : "OctetString",
3510
+ "parent module" : {
3511
+ "name" : "INET-ADDRESS-MIB",
3512
+ "type" : "InetAddress",
3513
+ },
3514
+ "ranges" : [
3515
+ {
3516
+ "min" : "0",
3517
+ "max" : "0"
3518
+ },
3519
+ {
3520
+ "min" : "4",
3521
+ "max" : "4"
3522
+ },
3523
+ {
3524
+ "min" : "16",
3525
+ "max" : "16"
3526
+ },
3527
+ ],
3528
+ "range" : {
3529
+ "min" : "0",
3530
+ "max" : "16"
3531
+ },
3532
+ },
3533
+ }, # syntax
3534
+ "access" : "readonly",
3535
+ "description" :
3536
+ """Write access is not required.
3537
+ An implementation is only required to support IPv4 and
3538
+ globally unique IPv6 addresses.""",
3539
+ },
3540
+ "mplsFecStorageType" : {
3541
+ "module" : "MPLS-LDP-STD-MIB",
3542
+ "access" : "readonly",
3543
+ "description" :
3544
+ """Write access is not required.""",
3545
+ },
3546
+ "mplsFecRowStatus" : {
3547
+ "module" : "MPLS-LDP-STD-MIB",
3548
+ "syntax" : {
3549
+ "type" : {
3550
+ "basetype" : "Enumeration",
3551
+ "parent module" : {
3552
+ "name" : "SNMPv2-TC",
3553
+ "type" : "RowStatus",
3554
+ },
3555
+ "active" : {
3556
+ "nodetype" : "namednumber",
3557
+ "number" : "1"
3558
+ },
3559
+ },
3560
+ }, # syntax
3561
+ "access" : "readonly",
3562
+ "description" :
3563
+ """Write access is not required, and active is the
3564
+ only status that needs to be supported.""",
3565
+ },
3566
+ "mplsLdpLspFecStorageType" : {
3567
+ "module" : "MPLS-LDP-STD-MIB",
3568
+ "access" : "readonly",
3569
+ "description" :
3570
+ """Write access is not required.""",
3571
+ },
3572
+ "mplsLdpLspFecRowStatus" : {
3573
+ "module" : "MPLS-LDP-STD-MIB",
3574
+ "syntax" : {
3575
+ "type" : {
3576
+ "basetype" : "Enumeration",
3577
+ "parent module" : {
3578
+ "name" : "SNMPv2-TC",
3579
+ "type" : "RowStatus",
3580
+ },
3581
+ "active" : {
3582
+ "nodetype" : "namednumber",
3583
+ "number" : "1"
3584
+ },
3585
+ },
3586
+ }, # syntax
3587
+ "access" : "readonly",
3588
+ "description" :
3589
+ """Write access is not required, and active is the
3590
+ only status that needs to be supported.""",
3591
+ },
3592
+ "mplsLdpSessionPeerNextHopAddrType" : {
3593
+ "module" : "MPLS-LDP-STD-MIB",
3594
+ "syntax" : {
3595
+ "type" : {
3596
+ "basetype" : "Enumeration",
3597
+ "parent module" : {
3598
+ "name" : "INET-ADDRESS-MIB",
3599
+ "type" : "InetAddressType",
3600
+ },
3601
+ "unknown" : {
3602
+ "nodetype" : "namednumber",
3603
+ "number" : "0"
3604
+ },
3605
+ "ipv4" : {
3606
+ "nodetype" : "namednumber",
3607
+ "number" : "1"
3608
+ },
3609
+ "ipv6" : {
3610
+ "nodetype" : "namednumber",
3611
+ "number" : "2"
3612
+ },
3613
+ },
3614
+ }, # syntax
3615
+ "description" :
3616
+ """An implementation is only required to support
3617
+ 'unknown(0)', IPv4 and globally unique IPv6 addresses.""",
3618
+ },
3619
+ "mplsLdpSessionPeerNextHopAddr" : {
3620
+ "module" : "MPLS-LDP-STD-MIB",
3621
+ "syntax" : {
3622
+ "type" : {
3623
+ "basetype" : "OctetString",
3624
+ "parent module" : {
3625
+ "name" : "INET-ADDRESS-MIB",
3626
+ "type" : "InetAddress",
3627
+ },
3628
+ "ranges" : [
3629
+ {
3630
+ "min" : "0",
3631
+ "max" : "0"
3632
+ },
3633
+ {
3634
+ "min" : "4",
3635
+ "max" : "4"
3636
+ },
3637
+ {
3638
+ "min" : "16",
3639
+ "max" : "16"
3640
+ },
3641
+ ],
3642
+ "range" : {
3643
+ "min" : "0",
3644
+ "max" : "16"
3645
+ },
3646
+ },
3647
+ }, # syntax
3648
+ "description" :
3649
+ """An implementation is only required to support IPv4
3650
+ and globally unique IPv6 addresses.""",
3651
+ },
3652
+ }, # refinements
3653
+
3654
+ }, # compliance
3655
+ }, # compliances
3656
+
3657
+ }