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,4067 @@
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 LISP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/LISP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "LISP-MIB",
11
+
12
+ "LISP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Locator/ID Separation Protocol (LISP) Working Group""",
17
+ "contact" :
18
+ """Email: lisp@ietf.org
19
+ WG charter:
20
+ http://datatracker.ietf.org/wg/lisp/charter/""",
21
+ "description" :
22
+ """This MIB module contains managed objects to support
23
+ monitoring devices that support the Locator/ID Separation
24
+ Protocol (LISP).
25
+
26
+ Copyright (c) 2013 IETF Trust and the persons identified
27
+ as authors of the code. All rights reserved.
28
+
29
+ Redistribution and use in source and binary forms, with
30
+ or without modification, is permitted pursuant to, and
31
+ subject to the license terms contained in, the Simplified
32
+ BSD License set forth in Section 4.c of the IETF Trust's
33
+ Legal Provisions Relating to IETF Documents
34
+ (http://trustee.ietf.org/license-info).""",
35
+ "revisions" : (
36
+ {
37
+ "date" : "2013-10-21 00:00",
38
+ "description" :
39
+ """Initial version of the IETF LISP-MIB module.
40
+ Published as RFC 7052.""",
41
+ },
42
+ ),
43
+ "identity node" : "lispMIB",
44
+ },
45
+
46
+ "imports" : (
47
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
48
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
49
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
50
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
51
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
52
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
53
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
54
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
55
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
56
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
57
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
58
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
59
+ {"module" : "MPLS-L3VPN-STD-MIB", "name" : "MplsL3VpnName"},
60
+ {"module" : "IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
61
+ ),
62
+
63
+ "typedefs" : {
64
+ "LispAddressType" : {
65
+ "basetype" : "OctetString",
66
+ "status" : "current",
67
+ "ranges" : [
68
+ {
69
+ "min" : "5",
70
+ "max" : "39"
71
+ },
72
+ ],
73
+ "range" : {
74
+ "min" : "5",
75
+ "max" : "39"
76
+ },
77
+ "format" : "39a",
78
+ "description" :
79
+ """LISP architecture can be applied to a wide variety of
80
+ address-families. This textual-convention is a generalization
81
+ for representing addresses belonging to those address-families.
82
+ For convenience, this document refers to any such address as a
83
+ LISP address. LispAddressType textual-convention consists of
84
+ the following four-tuple:
85
+ 1. IANA Address Family Number: A field of length 2 octets,
86
+ whose value is of the form following the assigned
87
+ AddressFamilyNumbers textual-convention described in
88
+ IANA-ADDRESS-FAMILY-NUMBERS-MIB DEFINITIONS, available from
89
+ http://www.iana.org/assignments/ianaaddressfamilynumbers-mib.
90
+ The enumerations are also listed in [IANA]. Note that this
91
+ list of address family numbers is maintained by IANA.
92
+ 2. Length of LISP address: A field of length 1 octet, whose
93
+ value indicates the octet-length of the next (third)
94
+ field of this LispAddressType four-tuple.
95
+ 3. LISP address: A field of variable length as indicated in
96
+ the previous (second) field, whose value is an address
97
+ of the IANA Address Family indicated in the first field
98
+ of this LispAddressType four-tuple. Note that any of
99
+ the IANA Address Families can be represented.
100
+ Particularly when the address family is LISP Canonical
101
+ Address Format (LCAF)
102
+ with IANA-assigned Address Family Number 16387, then the
103
+ first octet of this field indicates the LCAF type, and the
104
+ rest of this field is same as the encoding format of the
105
+ LISP Canonical Address after the length field, as defined
106
+ in LCAF document.
107
+ 4. Mask-length of address: A field of length 1 octet, whose
108
+ value is the mask-length to be applied to the LISP
109
+ address specified in the previous (third) field.
110
+
111
+ To illustrate the use of this object, consider the LISP MIB
112
+ Object below titled lispMapCacheEntry. This object begins
113
+ with the following entities:
114
+
115
+ lispMapCacheEntry ::= SEQUENCE {
116
+ lispMapCacheEidLength INTEGER,
117
+ lispMapCacheEid LispAddressType,
118
+ ... [skip] ...
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+ Example 1: Suppose that the IPv4 EID-Prefix stored is
127
+ 192.0.2.0/24. In this case, the values within
128
+ lispMapCacheEntry would be:
129
+
130
+ lispMapCacheEidLength = 8
131
+ lispMapCacheEid = 1, 4, 192.0.2.0, 24
132
+ ... [skip] ...
133
+
134
+ where 8 is the total length in octets of the next object
135
+ (lispMapCacheEID of type LispAddressType). Then, the value
136
+ 1 indicates the IPv4 AF (per the
137
+ IANA-ADDRESS-FAMILY-NUMBERS-MIB), the value 4 indicates that
138
+ the AF is 4 octets in length, 192.0.2.0 is the IPv4 address,
139
+ and the value 24 is the mask-length in bits. Note that the
140
+ lispMapCacheEidLength value of 8 is used to compute the
141
+ length of the fourth (last) field in lispMapCacheEid to be 1
142
+ octet -- as computed by 8 - (2 + 1 + 4) = 1.
143
+
144
+ Example 2: Suppose that the IPv6 EID-Prefix stored is
145
+ 2001:db8:a::/48. In this case, the values within
146
+ lispMapCacheEntry would be:
147
+
148
+ lispMapCacheEidLength = 20
149
+ lispMapCacheEid = 2, 16, 2001:db8:a::, 48
150
+ ... [skip] ...
151
+
152
+ where 20 is the total length in octets of the next object
153
+ (lispMapCacheEID of type LispAddressType). Then, the value
154
+ 2 indicates the IPv6 AF (per the
155
+ IANA-ADDRESS-FAMILY-NUMBERS-MIB), the value 16 indicates
156
+ that the AF is 16 octets in length, 2001:db8:a:: is the IPv6
157
+ address, and the value 48 is the mask-length in bits. Note
158
+ that the lispMapCacheEidLength value of 20 is used to
159
+ compute the length of the fourth (last) field in
160
+ lispMapCacheEid to be 1 octet -- as computed by
161
+ 20 - (2 + 1 + 16) = 1.
162
+
163
+ Example 3: As an example where LCAF is used, suppose
164
+ that the IPv4 EID-Prefix stored is 192.0.2.0/24 and it
165
+ is part of LISP Instance ID 101. In this case, the values
166
+ within lispMapCacheEntry would be:
167
+
168
+ lispMapCacheEidLength = 11
169
+ lispMapCacheEid = 16387, 7, 2, 101, 1, 192.0.2.0, 24
170
+ ... [skip] ...
171
+
172
+
173
+
174
+
175
+
176
+
177
+ where 11 is the total length in octets of the next object
178
+ (lispMapCacheEID of type LispAddressType). Then, the value
179
+ 16387 indicates the LCAF AF (see the
180
+ IANA-ADDRESS-FAMILY-NUMBERS-MIB), the value 7 indicates that
181
+ the LCAF AF is 7 octets in length in this case, 2 indicates
182
+ that LCAF Type 2 encoding is used (see the LCAF document), 101
183
+ gives the Instance ID, 1 gives the AFI (per the
184
+ IANA-ADDRESS-FAMILY-NUMBERS-MIB) for an IPv4 address, 192.0.2.0
185
+ is the IPv4 address, and 24 is the mask-length in bits. Note
186
+ that the lispMapCacheEidLength value of 11 octets is used to
187
+ compute the length of the last field in lispMapCacheEid to be 1
188
+ octet -- as computed by 11 - (2 + 1 + 1 + 1 + 1 + 4) = 1.
189
+
190
+ Note: all LISP header formats and locations of specific
191
+ flags, bits, and fields are as given in the base LISP
192
+ references of RFC 6830, RFC 6832, and RFC 6833.""",
193
+ "reference" :
194
+ """RFC 6830, Section 14.2 and
195
+ LISP Canonical Address Format (LCAF), Work in Progress,
196
+ March 2013.""",
197
+ },
198
+ }, # typedefs
199
+
200
+ "nodes" : {
201
+ "lispMIB" : {
202
+ "nodetype" : "node",
203
+ "moduleName" : "LISP-MIB",
204
+ "oid" : "1.3.6.1.2.1.220",
205
+ "status" : "current",
206
+ }, # node
207
+ "lispObjects" : {
208
+ "nodetype" : "node",
209
+ "moduleName" : "LISP-MIB",
210
+ "oid" : "1.3.6.1.2.1.220.1",
211
+ }, # node
212
+ "lispFeaturesTable" : {
213
+ "nodetype" : "table",
214
+ "moduleName" : "LISP-MIB",
215
+ "oid" : "1.3.6.1.2.1.220.1.1",
216
+ "status" : "current",
217
+ "description" :
218
+ """This table represents the ON/OFF status of the
219
+ various LISP features that can be enabled on LISP devices.""",
220
+ "reference" :
221
+ """RFC 6830, Section 4, Section 5.5., Section 6.3.""",
222
+ }, # table
223
+ "lispFeaturesEntry" : {
224
+ "nodetype" : "row",
225
+ "moduleName" : "LISP-MIB",
226
+ "oid" : "1.3.6.1.2.1.220.1.1.1",
227
+ "status" : "current",
228
+ "linkage" : [
229
+ "lispFeaturesInstanceID",
230
+ "lispFeaturesAddressFamily",
231
+ ],
232
+ "description" :
233
+ """An entry (conceptual row) in the lispFeaturesTable.""",
234
+ }, # row
235
+ "lispFeaturesInstanceID" : {
236
+ "nodetype" : "column",
237
+ "moduleName" : "LISP-MIB",
238
+ "oid" : "1.3.6.1.2.1.220.1.1.1.1",
239
+ "status" : "current",
240
+ "syntax" : {
241
+ "type" : {
242
+ "basetype" : "Unsigned32",
243
+ "ranges" : [
244
+ {
245
+ "min" : "0",
246
+ "max" : "16777215"
247
+ },
248
+ ],
249
+ "range" : {
250
+ "min" : "0",
251
+ "max" : "16777215"
252
+ },
253
+ },
254
+ },
255
+ "access" : "noaccess",
256
+ "default" : "0",
257
+ "description" :
258
+ """This represents the Instance ID of the LISP header.
259
+ An Instance ID in the LISP address encoding helps
260
+ uniquely identify the AFI-based address space to which
261
+ a given EID belongs. Its default value is 0.""",
262
+ }, # column
263
+ "lispFeaturesAddressFamily" : {
264
+ "nodetype" : "column",
265
+ "moduleName" : "LISP-MIB",
266
+ "oid" : "1.3.6.1.2.1.220.1.1.1.2",
267
+ "status" : "current",
268
+ "syntax" : {
269
+ "type" : { "module" :"IANA-ADDRESS-FAMILY-NUMBERS-MIB", "name" : "AddressFamilyNumbers"},
270
+ },
271
+ "access" : "noaccess",
272
+ "description" :
273
+ """The IANA Address Family Number of destination address
274
+ of packets that this LISP device is enabled to process.""",
275
+ }, # column
276
+ "lispFeaturesItrEnabled" : {
277
+ "nodetype" : "column",
278
+ "moduleName" : "LISP-MIB",
279
+ "oid" : "1.3.6.1.2.1.220.1.1.1.3",
280
+ "status" : "current",
281
+ "syntax" : {
282
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
283
+ },
284
+ "access" : "readonly",
285
+ "description" :
286
+ """Indicates the status of ITR role on this device. If
287
+ this object is true, then the ITR feature is enabled.""",
288
+ }, # column
289
+ "lispFeaturesEtrEnabled" : {
290
+ "nodetype" : "column",
291
+ "moduleName" : "LISP-MIB",
292
+ "oid" : "1.3.6.1.2.1.220.1.1.1.4",
293
+ "status" : "current",
294
+ "syntax" : {
295
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
296
+ },
297
+ "access" : "readonly",
298
+ "description" :
299
+ """Indicates the status of ETR role on this device. If
300
+ this object is true, then the ETR feature is enabled.""",
301
+ }, # column
302
+ "lispFeaturesProxyItrEnabled" : {
303
+ "nodetype" : "column",
304
+ "moduleName" : "LISP-MIB",
305
+ "oid" : "1.3.6.1.2.1.220.1.1.1.5",
306
+ "status" : "current",
307
+ "syntax" : {
308
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
309
+ },
310
+ "access" : "readonly",
311
+ "description" :
312
+ """Indicates the status of Proxy-ITR role on this device.
313
+ If this object is true, then the Proxy-ITR feature is
314
+ enabled.""",
315
+ }, # column
316
+ "lispFeaturesProxyEtrEnabled" : {
317
+ "nodetype" : "column",
318
+ "moduleName" : "LISP-MIB",
319
+ "oid" : "1.3.6.1.2.1.220.1.1.1.6",
320
+ "status" : "current",
321
+ "syntax" : {
322
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
323
+ },
324
+ "access" : "readonly",
325
+ "description" :
326
+ """Indicates the status of Proxy-ETR role on this device.
327
+ If this object is true, then the Proxy-ETR feature is
328
+ enabled.""",
329
+ }, # column
330
+ "lispFeaturesMapServerEnabled" : {
331
+ "nodetype" : "column",
332
+ "moduleName" : "LISP-MIB",
333
+ "oid" : "1.3.6.1.2.1.220.1.1.1.7",
334
+ "status" : "current",
335
+ "syntax" : {
336
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
337
+ },
338
+ "access" : "readonly",
339
+ "description" :
340
+ """Indicates the status of Map Server role on this device.
341
+ If this object is true, then the Map-Server feature is
342
+ enabled.""",
343
+ }, # column
344
+ "lispFeaturesMapResolverEnabled" : {
345
+ "nodetype" : "column",
346
+ "moduleName" : "LISP-MIB",
347
+ "oid" : "1.3.6.1.2.1.220.1.1.1.8",
348
+ "status" : "current",
349
+ "syntax" : {
350
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
351
+ },
352
+ "access" : "readonly",
353
+ "description" :
354
+ """Indicates the status of Map Resolver role on this device.
355
+ If this object is true, then Map-Resolver feature is
356
+ enabled.""",
357
+ }, # column
358
+ "lispFeaturesMapCacheSize" : {
359
+ "nodetype" : "column",
360
+ "moduleName" : "LISP-MIB",
361
+ "oid" : "1.3.6.1.2.1.220.1.1.1.9",
362
+ "status" : "current",
363
+ "syntax" : {
364
+ "type" : { "module" :"", "name" : "Unsigned32"},
365
+ },
366
+ "access" : "readonly",
367
+ "description" :
368
+ """Size of EID-to-RLOC map-cache on this device.""",
369
+ }, # column
370
+ "lispFeaturesMapCacheLimit" : {
371
+ "nodetype" : "column",
372
+ "moduleName" : "LISP-MIB",
373
+ "oid" : "1.3.6.1.2.1.220.1.1.1.10",
374
+ "status" : "current",
375
+ "syntax" : {
376
+ "type" : { "module" :"", "name" : "Unsigned32"},
377
+ },
378
+ "access" : "readonly",
379
+ "description" :
380
+ """Maximum permissible entries in EID-to-RLOC map-cache on
381
+ this device.""",
382
+ }, # column
383
+ "lispFeaturesEtrMapCacheTtl" : {
384
+ "nodetype" : "column",
385
+ "moduleName" : "LISP-MIB",
386
+ "oid" : "1.3.6.1.2.1.220.1.1.1.11",
387
+ "status" : "current",
388
+ "syntax" : {
389
+ "type" : { "module" :"", "name" : "Unsigned32"},
390
+ },
391
+ "access" : "readonly",
392
+ "description" :
393
+ """The stored Record TTL of the EID-to-RLOC map record in
394
+ the map-cache.""",
395
+ }, # column
396
+ "lispFeaturesRlocProbeEnabled" : {
397
+ "nodetype" : "column",
398
+ "moduleName" : "LISP-MIB",
399
+ "oid" : "1.3.6.1.2.1.220.1.1.1.12",
400
+ "status" : "current",
401
+ "syntax" : {
402
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
403
+ },
404
+ "access" : "readonly",
405
+ "description" :
406
+ """Indicates the status of RLOC-Probing feature on this
407
+ device. If this object is true, then this feature is
408
+ enabled.""",
409
+ }, # column
410
+ "lispFeaturesEtrAcceptMapDataEnabled" : {
411
+ "nodetype" : "column",
412
+ "moduleName" : "LISP-MIB",
413
+ "oid" : "1.3.6.1.2.1.220.1.1.1.13",
414
+ "status" : "current",
415
+ "syntax" : {
416
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
417
+ },
418
+ "access" : "readonly",
419
+ "description" :
420
+ """Indicates the status of accepting piggybacked mapping
421
+ data received in a map-request on this device. If this
422
+ object is true, then this device accepts piggybacked
423
+ mapping data.""",
424
+ }, # column
425
+ "lispFeaturesEtrAcceptMapDataVerifyEnabled" : {
426
+ "nodetype" : "column",
427
+ "moduleName" : "LISP-MIB",
428
+ "oid" : "1.3.6.1.2.1.220.1.1.1.14",
429
+ "status" : "current",
430
+ "syntax" : {
431
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
432
+ },
433
+ "access" : "readonly",
434
+ "description" :
435
+ """Indicates the status of verifying accepted piggybacked
436
+ mapping data received in a map-request on this device.
437
+ If this object is true, then this device verifies
438
+ accepted piggybacked mapping data.""",
439
+ }, # column
440
+ "lispFeaturesRouterTimeStamp" : {
441
+ "nodetype" : "column",
442
+ "moduleName" : "LISP-MIB",
443
+ "oid" : "1.3.6.1.2.1.220.1.1.1.15",
444
+ "status" : "current",
445
+ "syntax" : {
446
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
447
+ },
448
+ "access" : "readonly",
449
+ "default" : "0",
450
+ "description" :
451
+ """The value of sysUpTime at which the LISP feature was
452
+ enabled on this device.
453
+
454
+ If this information was present at the most recent
455
+ reinitialization of the local management subsystem,
456
+ then this object contains a zero value.""",
457
+ }, # column
458
+ "lispIidToVrfTable" : {
459
+ "nodetype" : "table",
460
+ "moduleName" : "LISP-MIB",
461
+ "oid" : "1.3.6.1.2.1.220.1.2",
462
+ "status" : "current",
463
+ "description" :
464
+ """This table represents the mapping of a LISP Instance ID
465
+ to a VRF.""",
466
+ "reference" :
467
+ """RFC 6830, Section 5.5., and RFC 4382, Section 7.""",
468
+ }, # table
469
+ "lispIidToVrfEntry" : {
470
+ "nodetype" : "row",
471
+ "moduleName" : "LISP-MIB",
472
+ "oid" : "1.3.6.1.2.1.220.1.2.1",
473
+ "status" : "current",
474
+ "linkage" : [
475
+ "lispFeaturesInstanceID",
476
+ ],
477
+ "description" :
478
+ """An entry (conceptual row) in the lispIidToVrfTable.""",
479
+ }, # row
480
+ "lispIidToVrfName" : {
481
+ "nodetype" : "column",
482
+ "moduleName" : "LISP-MIB",
483
+ "oid" : "1.3.6.1.2.1.220.1.2.1.1",
484
+ "status" : "current",
485
+ "syntax" : {
486
+ "type" : { "module" :"MPLS-L3VPN-STD-MIB", "name" : "MplsL3VpnName"},
487
+ },
488
+ "access" : "readonly",
489
+ "description" :
490
+ """The identifier for each VPN that is mapped to the
491
+ given LISP Instance ID.""",
492
+ }, # column
493
+ "lispGlobalStatsTable" : {
494
+ "nodetype" : "table",
495
+ "moduleName" : "LISP-MIB",
496
+ "oid" : "1.3.6.1.2.1.220.1.3",
497
+ "status" : "current",
498
+ "description" :
499
+ """This table provides global statistics for a given
500
+ Instance ID per address family on a LISP device.""",
501
+ "reference" :
502
+ """RFC 6830, Section 6.1.""",
503
+ }, # table
504
+ "lispGlobalStatsEntry" : {
505
+ "nodetype" : "row",
506
+ "moduleName" : "LISP-MIB",
507
+ "oid" : "1.3.6.1.2.1.220.1.3.1",
508
+ "status" : "current",
509
+ "linkage" : [
510
+ "lispFeaturesInstanceID",
511
+ "lispFeaturesAddressFamily",
512
+ ],
513
+ "description" :
514
+ """An entry (conceptual row) in the
515
+ lispGlobalStatsTable.""",
516
+ }, # row
517
+ "lispGlobalStatsMapRequestsIn" : {
518
+ "nodetype" : "column",
519
+ "moduleName" : "LISP-MIB",
520
+ "oid" : "1.3.6.1.2.1.220.1.3.1.1",
521
+ "status" : "current",
522
+ "syntax" : {
523
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
524
+ },
525
+ "access" : "readonly",
526
+ "description" :
527
+ """Total number of map requests received by this device for
528
+ any EID-Prefix of the given address family and Instance ID.
529
+
530
+ Discontinuities in this monotonically increasing value occur
531
+ at reinitialization of the management system.
532
+ Discontinuities can also occur as a result of LISP features
533
+ being removed, which can be detected by observing the value
534
+ of lispFeaturesRouterTimeStamp.""",
535
+ }, # column
536
+ "lispGlobalStatsMapRequestsOut" : {
537
+ "nodetype" : "column",
538
+ "moduleName" : "LISP-MIB",
539
+ "oid" : "1.3.6.1.2.1.220.1.3.1.2",
540
+ "status" : "current",
541
+ "syntax" : {
542
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
543
+ },
544
+ "access" : "readonly",
545
+ "description" :
546
+ """Total number of map requests sent by this device for any
547
+ EID-Prefix of the given address family and Instance ID.
548
+
549
+ Discontinuities in this monotonically increasing value occur
550
+ at reinitialization of the management system.
551
+ Discontinuities can also occur as a result of LISP features
552
+ being removed, which can be detected by observing the value
553
+ of lispFeaturesRouterTimeStamp.""",
554
+ }, # column
555
+ "lispGlobalStatsMapRepliesIn" : {
556
+ "nodetype" : "column",
557
+ "moduleName" : "LISP-MIB",
558
+ "oid" : "1.3.6.1.2.1.220.1.3.1.3",
559
+ "status" : "current",
560
+ "syntax" : {
561
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
562
+ },
563
+ "access" : "readonly",
564
+ "description" :
565
+ """Total number of map replies received by this device for any
566
+ EID-Prefix of the given address family and Instance ID.
567
+
568
+
569
+
570
+
571
+
572
+ Discontinuities in this monotonically increasing value occur
573
+ at reinitialization of the management system.
574
+ Discontinuities can also occur as a result of LISP features
575
+ being removed, which can be detected by observing the value
576
+ of lispFeaturesRouterTimeStamp.""",
577
+ }, # column
578
+ "lispGlobalStatsMapRepliesOut" : {
579
+ "nodetype" : "column",
580
+ "moduleName" : "LISP-MIB",
581
+ "oid" : "1.3.6.1.2.1.220.1.3.1.4",
582
+ "status" : "current",
583
+ "syntax" : {
584
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
585
+ },
586
+ "access" : "readonly",
587
+ "description" :
588
+ """Total number of map replies sent by this device for any EID
589
+ prefix of the given address family and Instance ID.
590
+
591
+ Discontinuities in this monotonically increasing value occur
592
+ at reinitialization of the management system.
593
+ Discontinuities can also occur as a result of LISP features
594
+ being removed, which can be detected by observing the value
595
+ of lispFeaturesRouterTimeStamp.""",
596
+ }, # column
597
+ "lispGlobalStatsMapRegistersIn" : {
598
+ "nodetype" : "column",
599
+ "moduleName" : "LISP-MIB",
600
+ "oid" : "1.3.6.1.2.1.220.1.3.1.5",
601
+ "status" : "current",
602
+ "syntax" : {
603
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
604
+ },
605
+ "access" : "readonly",
606
+ "description" :
607
+ """Total number of map registers received by this device for
608
+ any EID-Prefix of the given address family and Instance ID.
609
+
610
+ Discontinuities in this monotonically increasing value occur
611
+ at reinitialization of the management system.
612
+ Discontinuities can also occur as a result of LISP features
613
+ being removed, which can be detected by observing the value
614
+ of lispFeaturesRouterTimeStamp.""",
615
+ }, # column
616
+ "lispGlobalStatsMapRegistersOut" : {
617
+ "nodetype" : "column",
618
+ "moduleName" : "LISP-MIB",
619
+ "oid" : "1.3.6.1.2.1.220.1.3.1.6",
620
+ "status" : "current",
621
+ "syntax" : {
622
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
623
+ },
624
+ "access" : "readonly",
625
+ "description" :
626
+ """Total number of map registers sent by this device for any
627
+ EID-Prefix of the given address family and Instance ID.
628
+
629
+ Discontinuities in this monotonically increasing value occur
630
+ at reinitialization of the management system.
631
+ Discontinuities can also occur as a result of LISP features
632
+
633
+
634
+
635
+ being removed, which can be detected by observing the value
636
+ of lispFeaturesRouterTimeStamp.""",
637
+ }, # column
638
+ "lispMappingDatabaseTable" : {
639
+ "nodetype" : "table",
640
+ "moduleName" : "LISP-MIB",
641
+ "oid" : "1.3.6.1.2.1.220.1.4",
642
+ "status" : "current",
643
+ "description" :
644
+ """This table represents the EID-to-RLOC mapping database
645
+ that contains the EID-Prefix to RLOC mappings configured
646
+ on an ETR.
647
+
648
+ This table represents all such mappings for the given LISP
649
+ site to which this device belongs.""",
650
+ "reference" :
651
+ """RFC 6830, Section 6.""",
652
+ }, # table
653
+ "lispMappingDatabaseEntry" : {
654
+ "nodetype" : "row",
655
+ "moduleName" : "LISP-MIB",
656
+ "oid" : "1.3.6.1.2.1.220.1.4.1",
657
+ "status" : "current",
658
+ "linkage" : [
659
+ "lispMappingDatabaseEidLength",
660
+ "lispMappingDatabaseEid",
661
+ ],
662
+ "description" :
663
+ """An entry (conceptual row) in lispMappingDatabaseTable.""",
664
+ }, # row
665
+ "lispMappingDatabaseEidLength" : {
666
+ "nodetype" : "column",
667
+ "moduleName" : "LISP-MIB",
668
+ "oid" : "1.3.6.1.2.1.220.1.4.1.1",
669
+ "status" : "current",
670
+ "syntax" : {
671
+ "type" : {
672
+ "basetype" : "Integer32",
673
+ "ranges" : [
674
+ {
675
+ "min" : "5",
676
+ "max" : "39"
677
+ },
678
+ ],
679
+ "range" : {
680
+ "min" : "5",
681
+ "max" : "39"
682
+ },
683
+ },
684
+ },
685
+ "access" : "noaccess",
686
+ "description" :
687
+ """This object gives the octet-length of
688
+ lispMappingDatabaseEid.""",
689
+ }, # column
690
+ "lispMappingDatabaseEid" : {
691
+ "nodetype" : "column",
692
+ "moduleName" : "LISP-MIB",
693
+ "oid" : "1.3.6.1.2.1.220.1.4.1.2",
694
+ "status" : "current",
695
+ "syntax" : {
696
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
697
+ },
698
+ "access" : "noaccess",
699
+ "description" :
700
+ """The EID-Prefix of the mapping database.""",
701
+ }, # column
702
+ "lispMappingDatabaseLsb" : {
703
+ "nodetype" : "column",
704
+ "moduleName" : "LISP-MIB",
705
+ "oid" : "1.3.6.1.2.1.220.1.4.1.3",
706
+ "status" : "current",
707
+ "syntax" : {
708
+ "type" : {
709
+ "basetype" : "Unsigned32",
710
+ "ranges" : [
711
+ {
712
+ "min" : "0",
713
+ "max" : "4294967295"
714
+ },
715
+ ],
716
+ "range" : {
717
+ "min" : "0",
718
+ "max" : "4294967295"
719
+ },
720
+ },
721
+ },
722
+ "access" : "readonly",
723
+ "description" :
724
+ """The locator status bits for this EID-Prefix.""",
725
+ }, # column
726
+ "lispMappingDatabaseEidPartitioned" : {
727
+ "nodetype" : "column",
728
+ "moduleName" : "LISP-MIB",
729
+ "oid" : "1.3.6.1.2.1.220.1.4.1.4",
730
+ "status" : "current",
731
+ "syntax" : {
732
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
733
+ },
734
+ "access" : "readonly",
735
+ "description" :
736
+ """Indicates if this device is partitioned from the site that
737
+ contains this EID-Prefix. If this object is true, then it
738
+ means this device is partitioned from the site.""",
739
+ }, # column
740
+ "lispMappingDatabaseTimeStamp" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "LISP-MIB",
743
+ "oid" : "1.3.6.1.2.1.220.1.4.1.5",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
747
+ },
748
+ "access" : "readonly",
749
+ "default" : "0",
750
+ "description" :
751
+ """The value of sysUpTime at which the EID Prefix information
752
+ represented by this mapping database entry was configured
753
+ on this device.
754
+
755
+
756
+
757
+
758
+
759
+
760
+
761
+ If this information was present at the most recent
762
+ reinitialization of the local management subsystem, then
763
+ this object contains a zero value.""",
764
+ }, # column
765
+ "lispMappingDatabaseDecapOctets" : {
766
+ "nodetype" : "column",
767
+ "moduleName" : "LISP-MIB",
768
+ "oid" : "1.3.6.1.2.1.220.1.4.1.6",
769
+ "status" : "current",
770
+ "syntax" : {
771
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
772
+ },
773
+ "access" : "readonly",
774
+ "description" :
775
+ """The number of octets, after decapsulation, of LISP packets
776
+ that were decapsulated by this device addressed to a host
777
+ within this EID-Prefix.
778
+
779
+ Discontinuities in this monotonically increasing value occur
780
+ at reinitialization of the management system.
781
+ Discontinuities can also occur as a result of LISP features
782
+ being removed, which can be detected by observing the value
783
+ of lispMappingDatabaseTimeStamp.""",
784
+ }, # column
785
+ "lispMappingDatabaseDecapPackets" : {
786
+ "nodetype" : "column",
787
+ "moduleName" : "LISP-MIB",
788
+ "oid" : "1.3.6.1.2.1.220.1.4.1.7",
789
+ "status" : "current",
790
+ "syntax" : {
791
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
792
+ },
793
+ "access" : "readonly",
794
+ "description" :
795
+ """The number of LISP packets that were decapsulated by this
796
+ device addressed to a host within this EID-Prefix.
797
+
798
+ Discontinuities in this monotonically increasing value occur
799
+ at reinitialization of the management system.
800
+ Discontinuities can also occur as a result of LISP features
801
+ being removed, which can be detected by observing the value
802
+ of lispMappingDatabaseTimeStamp.""",
803
+ }, # column
804
+ "lispMappingDatabaseEncapOctets" : {
805
+ "nodetype" : "column",
806
+ "moduleName" : "LISP-MIB",
807
+ "oid" : "1.3.6.1.2.1.220.1.4.1.8",
808
+ "status" : "current",
809
+ "syntax" : {
810
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
811
+ },
812
+ "access" : "readonly",
813
+ "description" :
814
+ """The number of octets, before encapsulation, of LISP packets
815
+ that were encapsulated by this device, whose inner header
816
+ source address matched this EID-Prefix.
817
+
818
+
819
+
820
+
821
+
822
+
823
+ Discontinuities in this monotonically increasing value occur
824
+ at reinitialization of the management system.
825
+ Discontinuities can also occur as a result of LISP features
826
+ being removed, which can be detected by observing the value
827
+ of lispMappingDatabaseTimeStamp.""",
828
+ }, # column
829
+ "lispMappingDatabaseEncapPackets" : {
830
+ "nodetype" : "column",
831
+ "moduleName" : "LISP-MIB",
832
+ "oid" : "1.3.6.1.2.1.220.1.4.1.9",
833
+ "status" : "current",
834
+ "syntax" : {
835
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
836
+ },
837
+ "access" : "readonly",
838
+ "description" :
839
+ """The number of LISP packets that were encapsulated by this
840
+ device whose inner header source address matched this EID
841
+ prefix.
842
+
843
+ Discontinuities in this monotonically increasing value occur
844
+ at reinitialization of the management system.
845
+ Discontinuities can also occur as a result of LISP features
846
+ being removed, which can be detected by observing the value
847
+ of lispMappingDatabaseTimeStamp.""",
848
+ }, # column
849
+ "lispMappingDatabaseLocatorTable" : {
850
+ "nodetype" : "table",
851
+ "moduleName" : "LISP-MIB",
852
+ "oid" : "1.3.6.1.2.1.220.1.5",
853
+ "status" : "current",
854
+ "description" :
855
+ """This table represents the set of routing locators per EID
856
+ prefix contained in the EID-to-RLOC database configured on
857
+ this ETR.""",
858
+ "reference" :
859
+ """RFC 6830, Section 6.2.""",
860
+ }, # table
861
+ "lispMappingDatabaseLocatorEntry" : {
862
+ "nodetype" : "row",
863
+ "moduleName" : "LISP-MIB",
864
+ "oid" : "1.3.6.1.2.1.220.1.5.1",
865
+ "status" : "current",
866
+ "linkage" : [
867
+ "lispMappingDatabaseEidLength",
868
+ "lispMappingDatabaseEid",
869
+ "lispMappingDatabaseLocatorRlocLength",
870
+ "lispMappingDatabaseLocatorRloc",
871
+ ],
872
+ "description" :
873
+ """An entry (conceptual row) in the
874
+ lispMappingDatabaseLocatorTable.""",
875
+ }, # row
876
+ "lispMappingDatabaseLocatorRlocLength" : {
877
+ "nodetype" : "column",
878
+ "moduleName" : "LISP-MIB",
879
+ "oid" : "1.3.6.1.2.1.220.1.5.1.1",
880
+ "status" : "current",
881
+ "syntax" : {
882
+ "type" : {
883
+ "basetype" : "Integer32",
884
+ "ranges" : [
885
+ {
886
+ "min" : "5",
887
+ "max" : "39"
888
+ },
889
+ ],
890
+ "range" : {
891
+ "min" : "5",
892
+ "max" : "39"
893
+ },
894
+ },
895
+ },
896
+ "access" : "noaccess",
897
+ "description" :
898
+ """This object is used to get the octet-length of
899
+ lispMappingDatabaseLocatorRloc.""",
900
+ }, # column
901
+ "lispMappingDatabaseLocatorRloc" : {
902
+ "nodetype" : "column",
903
+ "moduleName" : "LISP-MIB",
904
+ "oid" : "1.3.6.1.2.1.220.1.5.1.2",
905
+ "status" : "current",
906
+ "syntax" : {
907
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
908
+ },
909
+ "access" : "noaccess",
910
+ "description" :
911
+ """This object is a locator for the given EID-Prefix in
912
+ the mapping database.""",
913
+ }, # column
914
+ "lispMappingDatabaseLocatorRlocPriority" : {
915
+ "nodetype" : "column",
916
+ "moduleName" : "LISP-MIB",
917
+ "oid" : "1.3.6.1.2.1.220.1.5.1.3",
918
+ "status" : "current",
919
+ "syntax" : {
920
+ "type" : {
921
+ "basetype" : "Integer32",
922
+ "ranges" : [
923
+ {
924
+ "min" : "0",
925
+ "max" : "255"
926
+ },
927
+ ],
928
+ "range" : {
929
+ "min" : "0",
930
+ "max" : "255"
931
+ },
932
+ },
933
+ },
934
+ "access" : "readonly",
935
+ "description" :
936
+ """The unicast priority of the RLOC.""",
937
+ }, # column
938
+ "lispMappingDatabaseLocatorRlocWeight" : {
939
+ "nodetype" : "column",
940
+ "moduleName" : "LISP-MIB",
941
+ "oid" : "1.3.6.1.2.1.220.1.5.1.4",
942
+ "status" : "current",
943
+ "syntax" : {
944
+ "type" : {
945
+ "basetype" : "Integer32",
946
+ "ranges" : [
947
+ {
948
+ "min" : "0",
949
+ "max" : "100"
950
+ },
951
+ ],
952
+ "range" : {
953
+ "min" : "0",
954
+ "max" : "100"
955
+ },
956
+ },
957
+ },
958
+ "access" : "readonly",
959
+ "description" :
960
+ """The unicast weight of the RLOC.""",
961
+ }, # column
962
+ "lispMappingDatabaseLocatorRlocMPriority" : {
963
+ "nodetype" : "column",
964
+ "moduleName" : "LISP-MIB",
965
+ "oid" : "1.3.6.1.2.1.220.1.5.1.5",
966
+ "status" : "current",
967
+ "syntax" : {
968
+ "type" : {
969
+ "basetype" : "Integer32",
970
+ "ranges" : [
971
+ {
972
+ "min" : "0",
973
+ "max" : "255"
974
+ },
975
+ ],
976
+ "range" : {
977
+ "min" : "0",
978
+ "max" : "255"
979
+ },
980
+ },
981
+ },
982
+ "access" : "readonly",
983
+ "description" :
984
+ """The multicast priority of the RLOC.""",
985
+ }, # column
986
+ "lispMappingDatabaseLocatorRlocMWeight" : {
987
+ "nodetype" : "column",
988
+ "moduleName" : "LISP-MIB",
989
+ "oid" : "1.3.6.1.2.1.220.1.5.1.6",
990
+ "status" : "current",
991
+ "syntax" : {
992
+ "type" : {
993
+ "basetype" : "Integer32",
994
+ "ranges" : [
995
+ {
996
+ "min" : "0",
997
+ "max" : "100"
998
+ },
999
+ ],
1000
+ "range" : {
1001
+ "min" : "0",
1002
+ "max" : "100"
1003
+ },
1004
+ },
1005
+ },
1006
+ "access" : "readonly",
1007
+ "description" :
1008
+ """The multicast weight of the RLOC.""",
1009
+ }, # column
1010
+ "lispMappingDatabaseLocatorRlocState" : {
1011
+ "nodetype" : "column",
1012
+ "moduleName" : "LISP-MIB",
1013
+ "oid" : "1.3.6.1.2.1.220.1.5.1.7",
1014
+ "status" : "current",
1015
+ "syntax" : {
1016
+ "type" : {
1017
+ "basetype" : "Enumeration",
1018
+ "up" : {
1019
+ "nodetype" : "namednumber",
1020
+ "number" : "1"
1021
+ },
1022
+ "down" : {
1023
+ "nodetype" : "namednumber",
1024
+ "number" : "2"
1025
+ },
1026
+ "unreachable" : {
1027
+ "nodetype" : "namednumber",
1028
+ "number" : "3"
1029
+ },
1030
+ },
1031
+ },
1032
+ "access" : "readonly",
1033
+ "description" :
1034
+ """The state of this RLOC as per this device.
1035
+ (1 = RLOC is up; 2 = RLOC is down; 3 = RLOC is unreachable).""",
1036
+ }, # column
1037
+ "lispMappingDatabaseLocatorRlocLocal" : {
1038
+ "nodetype" : "column",
1039
+ "moduleName" : "LISP-MIB",
1040
+ "oid" : "1.3.6.1.2.1.220.1.5.1.8",
1041
+ "status" : "current",
1042
+ "syntax" : {
1043
+ "type" : {
1044
+ "basetype" : "Enumeration",
1045
+ "siteself" : {
1046
+ "nodetype" : "namednumber",
1047
+ "number" : "1"
1048
+ },
1049
+ "sitelocal" : {
1050
+ "nodetype" : "namednumber",
1051
+ "number" : "2"
1052
+ },
1053
+ },
1054
+ },
1055
+ "access" : "readonly",
1056
+ "description" :
1057
+ """Indicates whether the RLOC is local to this device
1058
+ (or remote, meaning local to another device in the same LISP
1059
+ site). (1 = RLOC is an address on this device; 2 = RLOC is
1060
+ an address on another device).""",
1061
+ }, # column
1062
+ "lispMappingDatabaseLocatorRlocTimeStamp" : {
1063
+ "nodetype" : "column",
1064
+ "moduleName" : "LISP-MIB",
1065
+ "oid" : "1.3.6.1.2.1.220.1.5.1.9",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1069
+ },
1070
+ "access" : "readonly",
1071
+ "default" : "0",
1072
+ "description" :
1073
+ """The value of sysUpTime at which the RLOC of the EID Prefix
1074
+ represented by this mapping database entry was configured
1075
+ on this device.
1076
+
1077
+ If this information was present at the most recent
1078
+ reinitialization of the local management subsystem, then
1079
+ this object contains a zero value.""",
1080
+ }, # column
1081
+ "lispMappingDatabaseLocatorRlocDecapOctets" : {
1082
+ "nodetype" : "column",
1083
+ "moduleName" : "LISP-MIB",
1084
+ "oid" : "1.3.6.1.2.1.220.1.5.1.10",
1085
+ "status" : "current",
1086
+ "syntax" : {
1087
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1088
+ },
1089
+ "access" : "readonly",
1090
+ "description" :
1091
+ """The number of octets of LISP packets that were
1092
+ addressed to this RLOC of the EID-Prefix and
1093
+ were decapsulated.
1094
+
1095
+ Discontinuities in this monotonically increasing value occur
1096
+ at reinitialization of the management system.
1097
+ Discontinuities can also occur as a result of database
1098
+ mappings getting reconfigured or RLOC status changes, which
1099
+ can be detected by observing the value of
1100
+ lispMappingDatabaseLocatorRlocTimeStamp.""",
1101
+ }, # column
1102
+ "lispMappingDatabaseLocatorRlocDecapPackets" : {
1103
+ "nodetype" : "column",
1104
+ "moduleName" : "LISP-MIB",
1105
+ "oid" : "1.3.6.1.2.1.220.1.5.1.11",
1106
+ "status" : "current",
1107
+ "syntax" : {
1108
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1109
+ },
1110
+ "access" : "readonly",
1111
+ "description" :
1112
+ """The number of LISP packets that were addressed to this RLOC
1113
+ of the EID-Prefix and were decapsulated.
1114
+
1115
+ Discontinuities in this monotonically increasing value occur
1116
+ at reinitialization of the management system.
1117
+
1118
+ Discontinuities can also occur as a result of database
1119
+ mappings getting reconfigured or RLOC status changes, which
1120
+ can be detected by observing the value of
1121
+ lispMappingDatabaseLocatorRlocTimeStamp.""",
1122
+ }, # column
1123
+ "lispMappingDatabaseLocatorRlocEncapOctets" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "LISP-MIB",
1126
+ "oid" : "1.3.6.1.2.1.220.1.5.1.12",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1130
+ },
1131
+ "access" : "readonly",
1132
+ "description" :
1133
+ """The number of octets of LISP packets that were encapsulated
1134
+ by this device using this RLOC address as the source, and
1135
+ that were sourced by an address of this EID-Prefix.
1136
+
1137
+ Discontinuities in this monotonically increasing value occur
1138
+ at reinitialization of the management system.
1139
+ Discontinuities can also occur as a result of database
1140
+ mappings getting reconfigured or RLOC status changes, which
1141
+ can be detected by observing the value of
1142
+ lispMappingDatabaseLocatorRlocTimeStamp.""",
1143
+ }, # column
1144
+ "lispMappingDatabaseLocatorRlocEncapPackets" : {
1145
+ "nodetype" : "column",
1146
+ "moduleName" : "LISP-MIB",
1147
+ "oid" : "1.3.6.1.2.1.220.1.5.1.13",
1148
+ "status" : "current",
1149
+ "syntax" : {
1150
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1151
+ },
1152
+ "access" : "readonly",
1153
+ "description" :
1154
+ """The number of LISP packets that were encapsulated by this
1155
+ device using this RLOC address as the source and that were
1156
+ sourced by an address of this EID-Prefix.
1157
+
1158
+ Discontinuities in this monotonically increasing value occur
1159
+ at reinitialization of the management system.
1160
+ Discontinuities can also occur as a result of database
1161
+ mappings getting reconfigured or RLOC status changes, which
1162
+ can be detected by observing the value of
1163
+ lispMappingDatabaseLocatorRlocTimeStamp.""",
1164
+ }, # column
1165
+ "lispMapCacheTable" : {
1166
+ "nodetype" : "table",
1167
+ "moduleName" : "LISP-MIB",
1168
+ "oid" : "1.3.6.1.2.1.220.1.6",
1169
+ "status" : "current",
1170
+ "description" :
1171
+ """This table represents the short-lived, on-demand table on
1172
+ an ITR that stores, tracks, and is responsible for
1173
+ timing-out and otherwise validating EID-to-RLOC mappings.""",
1174
+ "reference" :
1175
+ """RFC 6830, Sections 6 and Section 12.""",
1176
+ }, # table
1177
+ "lispMapCacheEntry" : {
1178
+ "nodetype" : "row",
1179
+ "moduleName" : "LISP-MIB",
1180
+ "oid" : "1.3.6.1.2.1.220.1.6.1",
1181
+ "status" : "current",
1182
+ "linkage" : [
1183
+ "lispMapCacheEidLength",
1184
+ "lispMapCacheEid",
1185
+ ],
1186
+ "description" :
1187
+ """An entry (conceptual row) in the
1188
+ lispMapCacheTable.""",
1189
+ }, # row
1190
+ "lispMapCacheEidLength" : {
1191
+ "nodetype" : "column",
1192
+ "moduleName" : "LISP-MIB",
1193
+ "oid" : "1.3.6.1.2.1.220.1.6.1.1",
1194
+ "status" : "current",
1195
+ "syntax" : {
1196
+ "type" : {
1197
+ "basetype" : "Integer32",
1198
+ "ranges" : [
1199
+ {
1200
+ "min" : "5",
1201
+ "max" : "39"
1202
+ },
1203
+ ],
1204
+ "range" : {
1205
+ "min" : "5",
1206
+ "max" : "39"
1207
+ },
1208
+ },
1209
+ },
1210
+ "access" : "noaccess",
1211
+ "description" :
1212
+ """This object is used to get the octet-length of
1213
+ lispMapCacheEid.""",
1214
+ }, # column
1215
+ "lispMapCacheEid" : {
1216
+ "nodetype" : "column",
1217
+ "moduleName" : "LISP-MIB",
1218
+ "oid" : "1.3.6.1.2.1.220.1.6.1.2",
1219
+ "status" : "current",
1220
+ "syntax" : {
1221
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
1222
+ },
1223
+ "access" : "noaccess",
1224
+ "description" :
1225
+ """The EID-Prefix in the mapping cache.""",
1226
+ }, # column
1227
+ "lispMapCacheEidTimeStamp" : {
1228
+ "nodetype" : "column",
1229
+ "moduleName" : "LISP-MIB",
1230
+ "oid" : "1.3.6.1.2.1.220.1.6.1.3",
1231
+ "status" : "current",
1232
+ "syntax" : {
1233
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1234
+ },
1235
+ "access" : "readonly",
1236
+ "default" : "0",
1237
+ "description" :
1238
+ """The value of sysUpTime at which the EID Prefix information
1239
+ represented by this entry was learned by this device.
1240
+
1241
+
1242
+
1243
+ If this information was present at the most recent
1244
+ reinitialization of the local management subsystem, then
1245
+ this object contains a zero value.""",
1246
+ }, # column
1247
+ "lispMapCacheEidExpiryTime" : {
1248
+ "nodetype" : "column",
1249
+ "moduleName" : "LISP-MIB",
1250
+ "oid" : "1.3.6.1.2.1.220.1.6.1.4",
1251
+ "status" : "current",
1252
+ "syntax" : {
1253
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1254
+ },
1255
+ "access" : "readonly",
1256
+ "description" :
1257
+ """The time remaining before the ITR times-out this
1258
+ EID-Prefix.""",
1259
+ }, # column
1260
+ "lispMapCacheEidState" : {
1261
+ "nodetype" : "column",
1262
+ "moduleName" : "LISP-MIB",
1263
+ "oid" : "1.3.6.1.2.1.220.1.6.1.5",
1264
+ "status" : "current",
1265
+ "syntax" : {
1266
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1267
+ },
1268
+ "access" : "readonly",
1269
+ "description" :
1270
+ """This object is used to indicate the activity of this EID
1271
+ prefix. If this object is true, then it means this EID
1272
+ prefix is seeing activity.""",
1273
+ }, # column
1274
+ "lispMapCacheEidAuthoritative" : {
1275
+ "nodetype" : "column",
1276
+ "moduleName" : "LISP-MIB",
1277
+ "oid" : "1.3.6.1.2.1.220.1.6.1.6",
1278
+ "status" : "current",
1279
+ "syntax" : {
1280
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1281
+ },
1282
+ "access" : "readonly",
1283
+ "description" :
1284
+ """This object is used to indicate whether the EID-Prefix was
1285
+ installed by an authoritative map-reply. If this object is
1286
+ true, then it means this EID-Prefix was installed by an
1287
+ authoritative map-reply.""",
1288
+ }, # column
1289
+ "lispMapCacheEidDecapOctets" : {
1290
+ "nodetype" : "column",
1291
+ "moduleName" : "LISP-MIB",
1292
+ "oid" : "1.3.6.1.2.1.220.1.6.1.7",
1293
+ "status" : "current",
1294
+ "syntax" : {
1295
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1296
+ },
1297
+ "access" : "readonly",
1298
+ "description" :
1299
+ """The number of octets of LISP packets that were decapsulated
1300
+ by this device and were sourced from a remote host within
1301
+ this EID-Prefix.
1302
+
1303
+ Discontinuities in this monotonically increasing value occur
1304
+ at reinitialization of the management system.
1305
+ Discontinuities can also occur as a result of cache being
1306
+
1307
+
1308
+
1309
+ removed and replaced, which can be detected by observing the
1310
+ value of lispMapCacheEidTimeStamp.""",
1311
+ }, # column
1312
+ "lispMapCacheEidDecapPackets" : {
1313
+ "nodetype" : "column",
1314
+ "moduleName" : "LISP-MIB",
1315
+ "oid" : "1.3.6.1.2.1.220.1.6.1.8",
1316
+ "status" : "current",
1317
+ "syntax" : {
1318
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1319
+ },
1320
+ "access" : "readonly",
1321
+ "description" :
1322
+ """The number of LISP packets that were decapsulated by this
1323
+ device and were sourced from a remote host within this
1324
+ EID-Prefix.
1325
+
1326
+ Discontinuities in this monotonically increasing value occur
1327
+ at reinitialization of the management system.
1328
+ Discontinuities can also occur as a result of cache being
1329
+ removed and replaced, which can be detected by observing the
1330
+ value of lispMapCacheEidTimeStamp.""",
1331
+ }, # column
1332
+ "lispMapCacheEidEncapOctets" : {
1333
+ "nodetype" : "column",
1334
+ "moduleName" : "LISP-MIB",
1335
+ "oid" : "1.3.6.1.2.1.220.1.6.1.9",
1336
+ "status" : "current",
1337
+ "syntax" : {
1338
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1339
+ },
1340
+ "access" : "readonly",
1341
+ "description" :
1342
+ """The number of octets of LISP packets that were encapsulated
1343
+ by this device using the given EID-Prefix in the map-cache.
1344
+
1345
+ Discontinuities in this monotonically increasing value occur
1346
+ at reinitialization of the management system.
1347
+ Discontinuities can also occur as a result of cache being
1348
+ removed and replaced, which can be detected by observing the
1349
+ value of lispMapCacheEidTimeStamp.""",
1350
+ }, # column
1351
+ "lispMapCacheEidEncapPackets" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "LISP-MIB",
1354
+ "oid" : "1.3.6.1.2.1.220.1.6.1.10",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1358
+ },
1359
+ "access" : "readonly",
1360
+ "description" :
1361
+ """The number of LISP packets that were encapsulated by this
1362
+ device using the given EID-Prefix in the map-cache.
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+
1369
+
1370
+
1371
+
1372
+ Discontinuities in this monotonically increasing value occur
1373
+ at reinitialization of the management system.
1374
+ Discontinuities can also occur as a result of cache being
1375
+ removed and replaced, which can be detected by observing the
1376
+ value of lispMapCacheEidTimeStamp.""",
1377
+ }, # column
1378
+ "lispMapCacheLocatorTable" : {
1379
+ "nodetype" : "table",
1380
+ "moduleName" : "LISP-MIB",
1381
+ "oid" : "1.3.6.1.2.1.220.1.7",
1382
+ "status" : "current",
1383
+ "description" :
1384
+ """This table represents the set of locators per EID-Prefix
1385
+ contained in the map-cache table of an ITR.""",
1386
+ "reference" :
1387
+ """RFC 6830, Section 6.3.""",
1388
+ }, # table
1389
+ "lispMapCacheLocatorEntry" : {
1390
+ "nodetype" : "row",
1391
+ "moduleName" : "LISP-MIB",
1392
+ "oid" : "1.3.6.1.2.1.220.1.7.1",
1393
+ "status" : "current",
1394
+ "linkage" : [
1395
+ "lispMapCacheEidLength",
1396
+ "lispMapCacheEid",
1397
+ "lispMapCacheLocatorRlocLength",
1398
+ "lispMapCacheLocatorRloc",
1399
+ ],
1400
+ "description" :
1401
+ """An entry (conceptual row) in the
1402
+ lispMapCacheLocatorTable.""",
1403
+ }, # row
1404
+ "lispMapCacheLocatorRlocLength" : {
1405
+ "nodetype" : "column",
1406
+ "moduleName" : "LISP-MIB",
1407
+ "oid" : "1.3.6.1.2.1.220.1.7.1.1",
1408
+ "status" : "current",
1409
+ "syntax" : {
1410
+ "type" : {
1411
+ "basetype" : "Integer32",
1412
+ "ranges" : [
1413
+ {
1414
+ "min" : "5",
1415
+ "max" : "39"
1416
+ },
1417
+ ],
1418
+ "range" : {
1419
+ "min" : "5",
1420
+ "max" : "39"
1421
+ },
1422
+ },
1423
+ },
1424
+ "access" : "noaccess",
1425
+ "description" :
1426
+ """This object is used to get the octet-length of
1427
+ lispMapCacheLocatorRloc.""",
1428
+ }, # column
1429
+ "lispMapCacheLocatorRloc" : {
1430
+ "nodetype" : "column",
1431
+ "moduleName" : "LISP-MIB",
1432
+ "oid" : "1.3.6.1.2.1.220.1.7.1.2",
1433
+ "status" : "current",
1434
+ "syntax" : {
1435
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
1436
+ },
1437
+ "access" : "noaccess",
1438
+ "description" :
1439
+ """The locator for the EID-Prefix in the mapping cache.""",
1440
+ }, # column
1441
+ "lispMapCacheLocatorRlocPriority" : {
1442
+ "nodetype" : "column",
1443
+ "moduleName" : "LISP-MIB",
1444
+ "oid" : "1.3.6.1.2.1.220.1.7.1.3",
1445
+ "status" : "current",
1446
+ "syntax" : {
1447
+ "type" : {
1448
+ "basetype" : "Integer32",
1449
+ "ranges" : [
1450
+ {
1451
+ "min" : "0",
1452
+ "max" : "255"
1453
+ },
1454
+ ],
1455
+ "range" : {
1456
+ "min" : "0",
1457
+ "max" : "255"
1458
+ },
1459
+ },
1460
+ },
1461
+ "access" : "readonly",
1462
+ "description" :
1463
+ """The unicast priority of the RLOC for this EID-Prefix
1464
+ (0-255); lower is more preferred.""",
1465
+ }, # column
1466
+ "lispMapCacheLocatorRlocWeight" : {
1467
+ "nodetype" : "column",
1468
+ "moduleName" : "LISP-MIB",
1469
+ "oid" : "1.3.6.1.2.1.220.1.7.1.4",
1470
+ "status" : "current",
1471
+ "syntax" : {
1472
+ "type" : {
1473
+ "basetype" : "Integer32",
1474
+ "ranges" : [
1475
+ {
1476
+ "min" : "0",
1477
+ "max" : "100"
1478
+ },
1479
+ ],
1480
+ "range" : {
1481
+ "min" : "0",
1482
+ "max" : "100"
1483
+ },
1484
+ },
1485
+ },
1486
+ "access" : "readonly",
1487
+ "description" :
1488
+ """The unicast weight of the RLOC for this EID-Prefix
1489
+ (0 - 100) percentage.""",
1490
+ }, # column
1491
+ "lispMapCacheLocatorRlocMPriority" : {
1492
+ "nodetype" : "column",
1493
+ "moduleName" : "LISP-MIB",
1494
+ "oid" : "1.3.6.1.2.1.220.1.7.1.5",
1495
+ "status" : "current",
1496
+ "syntax" : {
1497
+ "type" : {
1498
+ "basetype" : "Integer32",
1499
+ "ranges" : [
1500
+ {
1501
+ "min" : "0",
1502
+ "max" : "255"
1503
+ },
1504
+ ],
1505
+ "range" : {
1506
+ "min" : "0",
1507
+ "max" : "255"
1508
+ },
1509
+ },
1510
+ },
1511
+ "access" : "readonly",
1512
+ "description" :
1513
+ """The multicast priority of the RLOC for this EID-Prefix
1514
+ (0-255); lower is more preferred.""",
1515
+ }, # column
1516
+ "lispMapCacheLocatorRlocMWeight" : {
1517
+ "nodetype" : "column",
1518
+ "moduleName" : "LISP-MIB",
1519
+ "oid" : "1.3.6.1.2.1.220.1.7.1.6",
1520
+ "status" : "current",
1521
+ "syntax" : {
1522
+ "type" : {
1523
+ "basetype" : "Integer32",
1524
+ "ranges" : [
1525
+ {
1526
+ "min" : "0",
1527
+ "max" : "100"
1528
+ },
1529
+ ],
1530
+ "range" : {
1531
+ "min" : "0",
1532
+ "max" : "100"
1533
+ },
1534
+ },
1535
+ },
1536
+ "access" : "readonly",
1537
+ "description" :
1538
+ """The multicast weight of the RLOC for this EID-Prefix
1539
+ (0 - 100) percentage.""",
1540
+ }, # column
1541
+ "lispMapCacheLocatorRlocState" : {
1542
+ "nodetype" : "column",
1543
+ "moduleName" : "LISP-MIB",
1544
+ "oid" : "1.3.6.1.2.1.220.1.7.1.7",
1545
+ "status" : "current",
1546
+ "syntax" : {
1547
+ "type" : {
1548
+ "basetype" : "Enumeration",
1549
+ "up" : {
1550
+ "nodetype" : "namednumber",
1551
+ "number" : "1"
1552
+ },
1553
+ "down" : {
1554
+ "nodetype" : "namednumber",
1555
+ "number" : "2"
1556
+ },
1557
+ "unreachable" : {
1558
+ "nodetype" : "namednumber",
1559
+ "number" : "3"
1560
+ },
1561
+ },
1562
+ },
1563
+ "access" : "readonly",
1564
+ "description" :
1565
+ """The state of this RLOC as per this device
1566
+ (1 = RLOC is up; 2 = RLOC is down; 3 = RLOC is unreachable).""",
1567
+ }, # column
1568
+ "lispMapCacheLocatorRlocTimeStamp" : {
1569
+ "nodetype" : "column",
1570
+ "moduleName" : "LISP-MIB",
1571
+ "oid" : "1.3.6.1.2.1.220.1.7.1.8",
1572
+ "status" : "current",
1573
+ "syntax" : {
1574
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1575
+ },
1576
+ "access" : "readonly",
1577
+ "default" : "0",
1578
+ "description" :
1579
+ """The value of sysUpTime at which the RLOC of EID-Prefix
1580
+ information represented by this entry was learned by
1581
+ this device.
1582
+
1583
+ If this information was present at the most recent
1584
+ reinitialization of the local management subsystem,
1585
+ then this object contains a zero value.""",
1586
+ }, # column
1587
+ "lispMapCacheLocatorRlocLastPriorityChange" : {
1588
+ "nodetype" : "column",
1589
+ "moduleName" : "LISP-MIB",
1590
+ "oid" : "1.3.6.1.2.1.220.1.7.1.9",
1591
+ "status" : "current",
1592
+ "syntax" : {
1593
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1594
+ },
1595
+ "access" : "readonly",
1596
+ "description" :
1597
+ """Time elapsed since the last change of the unicast priority
1598
+ of the RLOC for this EID-Prefix. Note that this is
1599
+ independent of lispMapCacheLocatorRlocTimeStamp.""",
1600
+ }, # column
1601
+ "lispMapCacheLocatorRlocLastWeightChange" : {
1602
+ "nodetype" : "column",
1603
+ "moduleName" : "LISP-MIB",
1604
+ "oid" : "1.3.6.1.2.1.220.1.7.1.10",
1605
+ "status" : "current",
1606
+ "syntax" : {
1607
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1608
+ },
1609
+ "access" : "readonly",
1610
+ "description" :
1611
+ """Time elapsed since the last change of the unicast weight
1612
+ of the RLOC for this EID-Prefix. Note that this is
1613
+ independent of lispMapCacheLocatorRlocTimeStamp.""",
1614
+ }, # column
1615
+ "lispMapCacheLocatorRlocLastMPriorityChange" : {
1616
+ "nodetype" : "column",
1617
+ "moduleName" : "LISP-MIB",
1618
+ "oid" : "1.3.6.1.2.1.220.1.7.1.11",
1619
+ "status" : "current",
1620
+ "syntax" : {
1621
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1622
+ },
1623
+ "access" : "readonly",
1624
+ "description" :
1625
+ """Time since the last change of the multicast priority of the
1626
+ RLOC for this EID-Prefix.""",
1627
+ }, # column
1628
+ "lispMapCacheLocatorRlocLastMWeightChange" : {
1629
+ "nodetype" : "column",
1630
+ "moduleName" : "LISP-MIB",
1631
+ "oid" : "1.3.6.1.2.1.220.1.7.1.12",
1632
+ "status" : "current",
1633
+ "syntax" : {
1634
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1635
+ },
1636
+ "access" : "readonly",
1637
+ "description" :
1638
+ """Time since the last change of the multicast weight of the
1639
+ RLOC for this EID-Prefix.""",
1640
+ }, # column
1641
+ "lispMapCacheLocatorRlocLastStateChange" : {
1642
+ "nodetype" : "column",
1643
+ "moduleName" : "LISP-MIB",
1644
+ "oid" : "1.3.6.1.2.1.220.1.7.1.13",
1645
+ "status" : "current",
1646
+ "syntax" : {
1647
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1648
+ },
1649
+ "access" : "readonly",
1650
+ "description" :
1651
+ """Time since the last change of the up/down state of the
1652
+ RLOC for this EID-Prefix.""",
1653
+ }, # column
1654
+ "lispMapCacheLocatorRlocRtt" : {
1655
+ "nodetype" : "column",
1656
+ "moduleName" : "LISP-MIB",
1657
+ "oid" : "1.3.6.1.2.1.220.1.7.1.14",
1658
+ "status" : "current",
1659
+ "syntax" : {
1660
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1661
+ },
1662
+ "access" : "readonly",
1663
+ "description" :
1664
+ """Round-trip time of RLOC probe and map-reply for this RLOC
1665
+ address for this prefix.""",
1666
+ }, # column
1667
+ "lispMapCacheLocatorRlocDecapOctets" : {
1668
+ "nodetype" : "column",
1669
+ "moduleName" : "LISP-MIB",
1670
+ "oid" : "1.3.6.1.2.1.220.1.7.1.15",
1671
+ "status" : "current",
1672
+ "syntax" : {
1673
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1674
+ },
1675
+ "access" : "readonly",
1676
+ "description" :
1677
+ """The number of octets of LISP packets that were decapsulated
1678
+ by this device and were sourced from a remote host within
1679
+ this EID-Prefix and were encapsulated for this RLOC.
1680
+
1681
+ Discontinuities in this monotonically increasing value occur
1682
+ at reinitialization of the management system.
1683
+ Discontinuities can also occur as a result of RLOC of cache
1684
+ being removed and replaced, which can be detected by
1685
+ observing the value of lispMapCacheLocatorRlocTimeStamp.""",
1686
+ }, # column
1687
+ "lispMapCacheLocatorRlocDecapPackets" : {
1688
+ "nodetype" : "column",
1689
+ "moduleName" : "LISP-MIB",
1690
+ "oid" : "1.3.6.1.2.1.220.1.7.1.16",
1691
+ "status" : "current",
1692
+ "syntax" : {
1693
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1694
+ },
1695
+ "access" : "readonly",
1696
+ "description" :
1697
+ """The number of LISP packets that were decapsulated by this
1698
+ device and were sourced from a remote host within this
1699
+ EID-Prefix and were encapsulated for this RLOC.
1700
+
1701
+ Discontinuities in this monotonically increasing value occur
1702
+ at reinitialization of the management system.
1703
+ Discontinuities can also occur as a result of RLOC of cache
1704
+ being removed and replaced, which can be detected by
1705
+ observing the value of lispMapCacheLocatorRlocTimeStamp.""",
1706
+ }, # column
1707
+ "lispMapCacheLocatorRlocEncapOctets" : {
1708
+ "nodetype" : "column",
1709
+ "moduleName" : "LISP-MIB",
1710
+ "oid" : "1.3.6.1.2.1.220.1.7.1.17",
1711
+ "status" : "current",
1712
+ "syntax" : {
1713
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1714
+ },
1715
+ "access" : "readonly",
1716
+ "description" :
1717
+ """The number of octets of LISP packets that matched this
1718
+ EID-Prefix and were encapsulated using this RLOC address.
1719
+
1720
+ Discontinuities in this monotonically increasing value occur
1721
+ at reinitialization of the management system.
1722
+ Discontinuities can also occur as a result of RLOC of cache
1723
+ being removed and replaced, which can be detected by
1724
+ observing the value of lispMapCacheLocatorRlocTimeStamp.""",
1725
+ }, # column
1726
+ "lispMapCacheLocatorRlocEncapPackets" : {
1727
+ "nodetype" : "column",
1728
+ "moduleName" : "LISP-MIB",
1729
+ "oid" : "1.3.6.1.2.1.220.1.7.1.18",
1730
+ "status" : "current",
1731
+ "syntax" : {
1732
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1733
+ },
1734
+ "access" : "readonly",
1735
+ "description" :
1736
+ """The number of LISP packets that matched this EID-Prefix
1737
+ and were encapsulated using this RLOC address.
1738
+
1739
+ Discontinuities in this monotonically increasing value occur
1740
+ at reinitialization of the management system.
1741
+ Discontinuities can also occur as a result of RLOC of cache
1742
+ being removed and replaced, which can be detected by
1743
+ observing the value of lispMapCacheLocatorRlocTimeStamp.""",
1744
+ }, # column
1745
+ "lispConfiguredLocatorTable" : {
1746
+ "nodetype" : "table",
1747
+ "moduleName" : "LISP-MIB",
1748
+ "oid" : "1.3.6.1.2.1.220.1.8",
1749
+ "status" : "current",
1750
+ "description" :
1751
+ """This table represents the set of routing locators
1752
+ configured on this device. Note that the addresses
1753
+ configured by Proxy-ITR are treated as routing locators
1754
+ and therefore can be part of this table.""",
1755
+ "reference" :
1756
+ """RFC 6830, Section 6.3.""",
1757
+ }, # table
1758
+ "lispConfiguredLocatorEntry" : {
1759
+ "nodetype" : "row",
1760
+ "moduleName" : "LISP-MIB",
1761
+ "oid" : "1.3.6.1.2.1.220.1.8.1",
1762
+ "status" : "current",
1763
+ "linkage" : [
1764
+ "lispConfiguredLocatorRlocLength",
1765
+ "lispConfiguredLocatorRloc",
1766
+ ],
1767
+ "description" :
1768
+ """An entry (conceptual row) in the
1769
+ lispConfiguredLocatorTable.""",
1770
+ }, # row
1771
+ "lispConfiguredLocatorRlocLength" : {
1772
+ "nodetype" : "column",
1773
+ "moduleName" : "LISP-MIB",
1774
+ "oid" : "1.3.6.1.2.1.220.1.8.1.1",
1775
+ "status" : "current",
1776
+ "syntax" : {
1777
+ "type" : {
1778
+ "basetype" : "Integer32",
1779
+ "ranges" : [
1780
+ {
1781
+ "min" : "5",
1782
+ "max" : "39"
1783
+ },
1784
+ ],
1785
+ "range" : {
1786
+ "min" : "5",
1787
+ "max" : "39"
1788
+ },
1789
+ },
1790
+ },
1791
+ "access" : "noaccess",
1792
+ "description" :
1793
+ """This object is used to get the octet-length of
1794
+ lispConfiguredLocatorRloc.""",
1795
+ }, # column
1796
+ "lispConfiguredLocatorRloc" : {
1797
+ "nodetype" : "column",
1798
+ "moduleName" : "LISP-MIB",
1799
+ "oid" : "1.3.6.1.2.1.220.1.8.1.2",
1800
+ "status" : "current",
1801
+ "syntax" : {
1802
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
1803
+ },
1804
+ "access" : "noaccess",
1805
+ "description" :
1806
+ """This object is an RLOC address configured on this device.
1807
+ It can be an RLOC that is local to this device or can be an
1808
+ RLOC that belongs to another ETR within the same site.
1809
+ Proxy-ITR address is treated as an RLOC.""",
1810
+ }, # column
1811
+ "lispConfiguredLocatorRlocState" : {
1812
+ "nodetype" : "column",
1813
+ "moduleName" : "LISP-MIB",
1814
+ "oid" : "1.3.6.1.2.1.220.1.8.1.3",
1815
+ "status" : "current",
1816
+ "syntax" : {
1817
+ "type" : {
1818
+ "basetype" : "Enumeration",
1819
+ "up" : {
1820
+ "nodetype" : "namednumber",
1821
+ "number" : "1"
1822
+ },
1823
+ "down" : {
1824
+ "nodetype" : "namednumber",
1825
+ "number" : "2"
1826
+ },
1827
+ "unreachable" : {
1828
+ "nodetype" : "namednumber",
1829
+ "number" : "3"
1830
+ },
1831
+ },
1832
+ },
1833
+ "access" : "readonly",
1834
+ "description" :
1835
+ """The state of this RLOC as per this device. (1 = RLOC is up;
1836
+ 2 = RLOC is down; 3 = RLOC is unreachable).""",
1837
+ }, # column
1838
+ "lispConfiguredLocatorRlocLocal" : {
1839
+ "nodetype" : "column",
1840
+ "moduleName" : "LISP-MIB",
1841
+ "oid" : "1.3.6.1.2.1.220.1.8.1.4",
1842
+ "status" : "current",
1843
+ "syntax" : {
1844
+ "type" : {
1845
+ "basetype" : "Enumeration",
1846
+ "siteself" : {
1847
+ "nodetype" : "namednumber",
1848
+ "number" : "1"
1849
+ },
1850
+ "sitelocal" : {
1851
+ "nodetype" : "namednumber",
1852
+ "number" : "2"
1853
+ },
1854
+ },
1855
+ },
1856
+ "access" : "readonly",
1857
+ "description" :
1858
+ """Indicates whether the RLOC is local to this device (or
1859
+ remote, meaning local to another device in the same LISP
1860
+ site). (1 = RLOC is an address on this device; 2 = RLOC is
1861
+ an address on another device).""",
1862
+ }, # column
1863
+ "lispConfiguredLocatorRlocTimeStamp" : {
1864
+ "nodetype" : "column",
1865
+ "moduleName" : "LISP-MIB",
1866
+ "oid" : "1.3.6.1.2.1.220.1.8.1.5",
1867
+ "status" : "current",
1868
+ "syntax" : {
1869
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1870
+ },
1871
+ "access" : "readonly",
1872
+ "default" : "0",
1873
+ "description" :
1874
+ """The value of sysUpTime at which the RLOC was configured on
1875
+ this device.
1876
+
1877
+ If this information was present at the most recent
1878
+ reinitialization of the local management subsystem, then
1879
+ this object contains a zero value.""",
1880
+ }, # column
1881
+ "lispConfiguredLocatorRlocDecapOctets" : {
1882
+ "nodetype" : "column",
1883
+ "moduleName" : "LISP-MIB",
1884
+ "oid" : "1.3.6.1.2.1.220.1.8.1.6",
1885
+ "status" : "current",
1886
+ "syntax" : {
1887
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1888
+ },
1889
+ "access" : "readonly",
1890
+ "description" :
1891
+ """The number of octets of LISP packets that were addressed to
1892
+ this RLOC and were decapsulated.
1893
+
1894
+ Discontinuities in this monotonically increasing value occur
1895
+ at reinitialization of the management system.
1896
+ Discontinuities can also occur as a result of configured
1897
+ RLOC being removed and replaced, which can be detected by
1898
+ observing the value of lispConfiguredLocatorRlocTimeStamp.""",
1899
+ }, # column
1900
+ "lispConfiguredLocatorRlocDecapPackets" : {
1901
+ "nodetype" : "column",
1902
+ "moduleName" : "LISP-MIB",
1903
+ "oid" : "1.3.6.1.2.1.220.1.8.1.7",
1904
+ "status" : "current",
1905
+ "syntax" : {
1906
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1907
+ },
1908
+ "access" : "readonly",
1909
+ "description" :
1910
+ """The number of LISP packets that were addressed to this RLOC
1911
+ and were decapsulated.
1912
+
1913
+ Discontinuities in this monotonically increasing value occur
1914
+ at reinitialization of the management system.
1915
+ Discontinuities can also occur as a result of configured
1916
+ RLOC being removed and replaced, which can be detected by
1917
+ observing the value of lispConfiguredLocatorRlocTimeStamp.""",
1918
+ }, # column
1919
+ "lispConfiguredLocatorRlocEncapOctets" : {
1920
+ "nodetype" : "column",
1921
+ "moduleName" : "LISP-MIB",
1922
+ "oid" : "1.3.6.1.2.1.220.1.8.1.8",
1923
+ "status" : "current",
1924
+ "syntax" : {
1925
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1926
+ },
1927
+ "access" : "readonly",
1928
+ "description" :
1929
+ """The number of octets of LISP packets that were encapsulated
1930
+ by this device using this RLOC address as the source.
1931
+
1932
+ Discontinuities in this monotonically increasing value occur
1933
+ at reinitialization of the management system.
1934
+ Discontinuities can also occur as a result of configured
1935
+ RLOC being removed and replaced, which can be detected by
1936
+ observing the value of lispConfiguredLocatorRlocTimeStamp.""",
1937
+ }, # column
1938
+ "lispConfiguredLocatorRlocEncapPackets" : {
1939
+ "nodetype" : "column",
1940
+ "moduleName" : "LISP-MIB",
1941
+ "oid" : "1.3.6.1.2.1.220.1.8.1.9",
1942
+ "status" : "current",
1943
+ "syntax" : {
1944
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1945
+ },
1946
+ "access" : "readonly",
1947
+ "description" :
1948
+ """The number of LISP packets that were encapsulated by this
1949
+ device using this RLOC address as the source.
1950
+
1951
+ Discontinuities in this monotonically increasing value occur
1952
+ at reinitialization of the management system.
1953
+ Discontinuities can also occur as a result of configured
1954
+ RLOC being removed and replaced, which can be detected by
1955
+ observing the value of lispConfiguredLocatorRlocTimeStamp.""",
1956
+ }, # column
1957
+ "lispEidRegistrationTable" : {
1958
+ "nodetype" : "table",
1959
+ "moduleName" : "LISP-MIB",
1960
+ "oid" : "1.3.6.1.2.1.220.1.9",
1961
+ "status" : "current",
1962
+ "description" :
1963
+ """This table provides the properties of each LISP EID-Prefix
1964
+ that is registered with this device when configured to be
1965
+ a Map-Server.""",
1966
+ "reference" :
1967
+ """RFC 6833, Section 4.""",
1968
+ }, # table
1969
+ "lispEidRegistrationEntry" : {
1970
+ "nodetype" : "row",
1971
+ "moduleName" : "LISP-MIB",
1972
+ "oid" : "1.3.6.1.2.1.220.1.9.1",
1973
+ "status" : "current",
1974
+ "linkage" : [
1975
+ "lispEidRegistrationEidLength",
1976
+ "lispEidRegistrationEid",
1977
+ ],
1978
+ "description" :
1979
+ """An entry (conceptual row) in the lispEidRegistrationTable.""",
1980
+ }, # row
1981
+ "lispEidRegistrationEidLength" : {
1982
+ "nodetype" : "column",
1983
+ "moduleName" : "LISP-MIB",
1984
+ "oid" : "1.3.6.1.2.1.220.1.9.1.1",
1985
+ "status" : "current",
1986
+ "syntax" : {
1987
+ "type" : {
1988
+ "basetype" : "Integer32",
1989
+ "ranges" : [
1990
+ {
1991
+ "min" : "5",
1992
+ "max" : "39"
1993
+ },
1994
+ ],
1995
+ "range" : {
1996
+ "min" : "5",
1997
+ "max" : "39"
1998
+ },
1999
+ },
2000
+ },
2001
+ "access" : "noaccess",
2002
+ "description" :
2003
+ """This object is used to get the octet-length of
2004
+ lispEidRegistrationEid.""",
2005
+ }, # column
2006
+ "lispEidRegistrationEid" : {
2007
+ "nodetype" : "column",
2008
+ "moduleName" : "LISP-MIB",
2009
+ "oid" : "1.3.6.1.2.1.220.1.9.1.2",
2010
+ "status" : "current",
2011
+ "syntax" : {
2012
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
2013
+ },
2014
+ "access" : "noaccess",
2015
+ "description" :
2016
+ """The EID-Prefix that is being registered.""",
2017
+ }, # column
2018
+ "lispEidRegistrationSiteName" : {
2019
+ "nodetype" : "column",
2020
+ "moduleName" : "LISP-MIB",
2021
+ "oid" : "1.3.6.1.2.1.220.1.9.1.3",
2022
+ "status" : "current",
2023
+ "syntax" : {
2024
+ "type" : {
2025
+ "basetype" : "OctetString",
2026
+ "ranges" : [
2027
+ {
2028
+ "min" : "0",
2029
+ "max" : "63"
2030
+ },
2031
+ ],
2032
+ "range" : {
2033
+ "min" : "0",
2034
+ "max" : "63"
2035
+ },
2036
+ },
2037
+ },
2038
+ "access" : "readonly",
2039
+ "description" :
2040
+ """Site name used by a Map-Server to distinguish different
2041
+ LISP sites that are registering with it.""",
2042
+ }, # column
2043
+ "lispEidRegistrationSiteDescription" : {
2044
+ "nodetype" : "column",
2045
+ "moduleName" : "LISP-MIB",
2046
+ "oid" : "1.3.6.1.2.1.220.1.9.1.4",
2047
+ "status" : "current",
2048
+ "syntax" : {
2049
+ "type" : {
2050
+ "basetype" : "OctetString",
2051
+ "ranges" : [
2052
+ {
2053
+ "min" : "0",
2054
+ "max" : "255"
2055
+ },
2056
+ ],
2057
+ "range" : {
2058
+ "min" : "0",
2059
+ "max" : "255"
2060
+ },
2061
+ },
2062
+ },
2063
+ "access" : "readonly",
2064
+ "description" :
2065
+ """Description for a site name used by a Map-Server. The EID
2066
+ prefix that is being registered belongs to this site.""",
2067
+ }, # column
2068
+ "lispEidRegistrationIsRegistered" : {
2069
+ "nodetype" : "column",
2070
+ "moduleName" : "LISP-MIB",
2071
+ "oid" : "1.3.6.1.2.1.220.1.9.1.5",
2072
+ "status" : "current",
2073
+ "syntax" : {
2074
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2075
+ },
2076
+ "access" : "readonly",
2077
+ "description" :
2078
+ """Indicates the registration status of the given EID-Prefix.
2079
+ If this object is true, then it means the EID-Prefix is
2080
+ registered.
2081
+
2082
+ The value false implies the EID-Prefix is not registered
2083
+ with the Map Server. There are multiple scenarios when this
2084
+ could happen like authentication failures, routing problems,
2085
+ misconfigs to name a few.""",
2086
+ }, # column
2087
+ "lispEidRegistrationFirstTimeStamp" : {
2088
+ "nodetype" : "column",
2089
+ "moduleName" : "LISP-MIB",
2090
+ "oid" : "1.3.6.1.2.1.220.1.9.1.6",
2091
+ "status" : "current",
2092
+ "syntax" : {
2093
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2094
+ },
2095
+ "access" : "readonly",
2096
+ "default" : "0",
2097
+ "description" :
2098
+ """The value of sysUpTime at which the first valid register
2099
+ message for the EID Prefix information represented by this
2100
+ entry was received by this device.
2101
+
2102
+ If this information was present at the most recent
2103
+ reinitialization of the local management subsystem, then
2104
+ this object contains a zero value.""",
2105
+ }, # column
2106
+ "lispEidRegistrationLastTimeStamp" : {
2107
+ "nodetype" : "column",
2108
+ "moduleName" : "LISP-MIB",
2109
+ "oid" : "1.3.6.1.2.1.220.1.9.1.7",
2110
+ "status" : "current",
2111
+ "syntax" : {
2112
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2113
+ },
2114
+ "access" : "readonly",
2115
+ "default" : "0",
2116
+ "description" :
2117
+ """The value of sysUpTime at which the last valid register
2118
+ message for the EID Prefix information represented by this
2119
+ entry was received by this device.
2120
+
2121
+
2122
+
2123
+
2124
+
2125
+
2126
+ If this information was present at the most recent
2127
+ reinitialization of the local management subsystem, then
2128
+ this object contains a zero value.""",
2129
+ }, # column
2130
+ "lispEidRegistrationLastRegisterSenderLength" : {
2131
+ "nodetype" : "column",
2132
+ "moduleName" : "LISP-MIB",
2133
+ "oid" : "1.3.6.1.2.1.220.1.9.1.8",
2134
+ "status" : "current",
2135
+ "syntax" : {
2136
+ "type" : {
2137
+ "basetype" : "Integer32",
2138
+ "ranges" : [
2139
+ {
2140
+ "min" : "5",
2141
+ "max" : "39"
2142
+ },
2143
+ ],
2144
+ "range" : {
2145
+ "min" : "5",
2146
+ "max" : "39"
2147
+ },
2148
+ },
2149
+ },
2150
+ "access" : "readonly",
2151
+ "description" :
2152
+ """This object is used to get the octet-length of
2153
+ lispEidRegistrationLastRegisterSender, the next
2154
+ object.""",
2155
+ }, # column
2156
+ "lispEidRegistrationLastRegisterSender" : {
2157
+ "nodetype" : "column",
2158
+ "moduleName" : "LISP-MIB",
2159
+ "oid" : "1.3.6.1.2.1.220.1.9.1.9",
2160
+ "status" : "current",
2161
+ "syntax" : {
2162
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
2163
+ },
2164
+ "access" : "readonly",
2165
+ "description" :
2166
+ """Source address of the last valid register message for the
2167
+ given EID-Prefix that was received by this device.""",
2168
+ }, # column
2169
+ "lispEidRegistrationAuthenticationErrors" : {
2170
+ "nodetype" : "column",
2171
+ "moduleName" : "LISP-MIB",
2172
+ "oid" : "1.3.6.1.2.1.220.1.9.1.10",
2173
+ "status" : "current",
2174
+ "syntax" : {
2175
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2176
+ },
2177
+ "access" : "readonly",
2178
+ "description" :
2179
+ """Count of total authentication errors of map-registers
2180
+ received for the given EID-Prefix.
2181
+
2182
+ Discontinuities in this monotonically increasing value occur
2183
+ at reinitialization of the management system.
2184
+ Discontinuities can also occur as a result of site config
2185
+ changes, which can be detected by observing the value of
2186
+ lispEidRegistrationFirstTimeStamp.""",
2187
+ }, # column
2188
+ "lispEidRegistrationRlocsMismatch" : {
2189
+ "nodetype" : "column",
2190
+ "moduleName" : "LISP-MIB",
2191
+ "oid" : "1.3.6.1.2.1.220.1.9.1.11",
2192
+ "status" : "current",
2193
+ "syntax" : {
2194
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2195
+ },
2196
+ "access" : "readonly",
2197
+ "description" :
2198
+ """Count of total map-registers received that had at least one
2199
+ RLOC that was not in the allowed list of RLOCs for the given
2200
+ EID-Prefix.
2201
+
2202
+
2203
+
2204
+ Discontinuities in this monotonically increasing value occur
2205
+ at reinitialization of the management system.
2206
+ Discontinuities can also occur as a result of site config
2207
+ changes, which can be detected by observing the value of
2208
+ lispEidRegistrationFirstTimeStamp.""",
2209
+ }, # column
2210
+ "lispEidRegistrationEtrTable" : {
2211
+ "nodetype" : "table",
2212
+ "moduleName" : "LISP-MIB",
2213
+ "oid" : "1.3.6.1.2.1.220.1.10",
2214
+ "status" : "current",
2215
+ "description" :
2216
+ """This table provides the properties of ETRs that register
2217
+ the given EID-Prefix with this device when configured to
2218
+ be a Map-Server.""",
2219
+ "reference" :
2220
+ """RFC 6830, Section 6.1.""",
2221
+ }, # table
2222
+ "lispEidRegistrationEtrEntry" : {
2223
+ "nodetype" : "row",
2224
+ "moduleName" : "LISP-MIB",
2225
+ "oid" : "1.3.6.1.2.1.220.1.10.1",
2226
+ "status" : "current",
2227
+ "linkage" : [
2228
+ "lispEidRegistrationEidLength",
2229
+ "lispEidRegistrationEid",
2230
+ "lispEidRegistrationEtrSenderLength",
2231
+ "lispEidRegistrationEtrSender",
2232
+ ],
2233
+ "description" :
2234
+ """An entry (conceptual row) in the
2235
+ lispEidRegistrationEtrTable.""",
2236
+ }, # row
2237
+ "lispEidRegistrationEtrSenderLength" : {
2238
+ "nodetype" : "column",
2239
+ "moduleName" : "LISP-MIB",
2240
+ "oid" : "1.3.6.1.2.1.220.1.10.1.1",
2241
+ "status" : "current",
2242
+ "syntax" : {
2243
+ "type" : {
2244
+ "basetype" : "Integer32",
2245
+ "ranges" : [
2246
+ {
2247
+ "min" : "5",
2248
+ "max" : "39"
2249
+ },
2250
+ ],
2251
+ "range" : {
2252
+ "min" : "5",
2253
+ "max" : "39"
2254
+ },
2255
+ },
2256
+ },
2257
+ "access" : "noaccess",
2258
+ "description" :
2259
+ """This object is used to get the octet-length of
2260
+ lispEidRegistrationEtrSender.""",
2261
+ }, # column
2262
+ "lispEidRegistrationEtrSender" : {
2263
+ "nodetype" : "column",
2264
+ "moduleName" : "LISP-MIB",
2265
+ "oid" : "1.3.6.1.2.1.220.1.10.1.2",
2266
+ "status" : "current",
2267
+ "syntax" : {
2268
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
2269
+ },
2270
+ "access" : "noaccess",
2271
+ "description" :
2272
+ """Source address of the ETR that is sending valid register
2273
+ messages for this EID-Prefix to this device.""",
2274
+ }, # column
2275
+ "lispEidRegistrationEtrLastTimeStamp" : {
2276
+ "nodetype" : "column",
2277
+ "moduleName" : "LISP-MIB",
2278
+ "oid" : "1.3.6.1.2.1.220.1.10.1.3",
2279
+ "status" : "current",
2280
+ "syntax" : {
2281
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2282
+ },
2283
+ "access" : "readonly",
2284
+ "default" : "0",
2285
+ "description" :
2286
+ """The value of sysUpTime at which the last valid register
2287
+ message from this ETR for the EID Prefix information
2288
+ represented by this entry was received by this device.
2289
+
2290
+ If this information was present at the most recent
2291
+ reinitialization of the local management subsystem,
2292
+ then this object contains a zero value.""",
2293
+ }, # column
2294
+ "lispEidRegistrationEtrTtl" : {
2295
+ "nodetype" : "column",
2296
+ "moduleName" : "LISP-MIB",
2297
+ "oid" : "1.3.6.1.2.1.220.1.10.1.4",
2298
+ "status" : "current",
2299
+ "syntax" : {
2300
+ "type" : { "module" :"", "name" : "Unsigned32"},
2301
+ },
2302
+ "access" : "readonly",
2303
+ "description" :
2304
+ """The Record TTL of the registering ETR device for this
2305
+ EID-Prefix.""",
2306
+ }, # column
2307
+ "lispEidRegistrationEtrProxyReply" : {
2308
+ "nodetype" : "column",
2309
+ "moduleName" : "LISP-MIB",
2310
+ "oid" : "1.3.6.1.2.1.220.1.10.1.5",
2311
+ "status" : "current",
2312
+ "syntax" : {
2313
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2314
+ },
2315
+ "access" : "readonly",
2316
+ "description" :
2317
+ """Indicates proxy-replying status of the registering ETR for
2318
+ this EID-Prefix. If this object is true, then it means the
2319
+ Map-Server can proxy-reply.""",
2320
+ }, # column
2321
+ "lispEidRegistrationEtrWantsMapNotify" : {
2322
+ "nodetype" : "column",
2323
+ "moduleName" : "LISP-MIB",
2324
+ "oid" : "1.3.6.1.2.1.220.1.10.1.6",
2325
+ "status" : "current",
2326
+ "syntax" : {
2327
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2328
+ },
2329
+ "access" : "readonly",
2330
+ "description" :
2331
+ """Indicates whether the EID-Prefix wants Map-Notifications.
2332
+ If this object is true, then it means the EID-Prefix wants
2333
+ Map-Notifications.""",
2334
+ }, # column
2335
+ "lispEidRegistrationLocatorTable" : {
2336
+ "nodetype" : "table",
2337
+ "moduleName" : "LISP-MIB",
2338
+ "oid" : "1.3.6.1.2.1.220.1.11",
2339
+ "status" : "current",
2340
+ "description" :
2341
+ """This table provides the properties of all locators per
2342
+ LISP site that are served by this device when configured
2343
+ to be a Map-Server.""",
2344
+ "reference" :
2345
+ """RFC 6830, Section 6.1.""",
2346
+ }, # table
2347
+ "lispEidRegistrationLocatorEntry" : {
2348
+ "nodetype" : "row",
2349
+ "moduleName" : "LISP-MIB",
2350
+ "oid" : "1.3.6.1.2.1.220.1.11.1",
2351
+ "status" : "current",
2352
+ "linkage" : [
2353
+ "lispEidRegistrationEidLength",
2354
+ "lispEidRegistrationEid",
2355
+ "lispEidRegistrationEtrSenderLength",
2356
+ "lispEidRegistrationEtrSender",
2357
+ "lispEidRegistrationLocatorRlocLength",
2358
+ "lispEidRegistrationLocatorRloc",
2359
+ ],
2360
+ "description" :
2361
+ """An entry (conceptual row) in the
2362
+ lispEidRegistrationLocatorTable.""",
2363
+ }, # row
2364
+ "lispEidRegistrationLocatorRlocLength" : {
2365
+ "nodetype" : "column",
2366
+ "moduleName" : "LISP-MIB",
2367
+ "oid" : "1.3.6.1.2.1.220.1.11.1.1",
2368
+ "status" : "current",
2369
+ "syntax" : {
2370
+ "type" : {
2371
+ "basetype" : "Integer32",
2372
+ "ranges" : [
2373
+ {
2374
+ "min" : "5",
2375
+ "max" : "39"
2376
+ },
2377
+ ],
2378
+ "range" : {
2379
+ "min" : "5",
2380
+ "max" : "39"
2381
+ },
2382
+ },
2383
+ },
2384
+ "access" : "noaccess",
2385
+ "description" :
2386
+ """This object is used to get the octet-length of
2387
+ lispEidRegistrationLocatorRloc.""",
2388
+ }, # column
2389
+ "lispEidRegistrationLocatorRloc" : {
2390
+ "nodetype" : "column",
2391
+ "moduleName" : "LISP-MIB",
2392
+ "oid" : "1.3.6.1.2.1.220.1.11.1.2",
2393
+ "status" : "current",
2394
+ "syntax" : {
2395
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
2396
+ },
2397
+ "access" : "noaccess",
2398
+ "description" :
2399
+ """The locator of the given EID-Prefix being registered by the
2400
+ given ETR with this device.""",
2401
+ }, # column
2402
+ "lispEidRegistrationLocatorRlocState" : {
2403
+ "nodetype" : "column",
2404
+ "moduleName" : "LISP-MIB",
2405
+ "oid" : "1.3.6.1.2.1.220.1.11.1.3",
2406
+ "status" : "current",
2407
+ "syntax" : {
2408
+ "type" : {
2409
+ "basetype" : "Enumeration",
2410
+ "up" : {
2411
+ "nodetype" : "namednumber",
2412
+ "number" : "1"
2413
+ },
2414
+ "down" : {
2415
+ "nodetype" : "namednumber",
2416
+ "number" : "2"
2417
+ },
2418
+ },
2419
+ },
2420
+ "access" : "readonly",
2421
+ "description" :
2422
+ """The cached state of this RLOC received in map-register from
2423
+ the ETR by the device, in the capacity of a Map-Server.
2424
+ Value 1 refers to up, value 2 refers to down.""",
2425
+ }, # column
2426
+ "lispEidRegistrationLocatorIsLocal" : {
2427
+ "nodetype" : "column",
2428
+ "moduleName" : "LISP-MIB",
2429
+ "oid" : "1.3.6.1.2.1.220.1.11.1.4",
2430
+ "status" : "current",
2431
+ "syntax" : {
2432
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2433
+ },
2434
+ "access" : "readonly",
2435
+ "description" :
2436
+ """Indicates if the given locator is local to the registering
2437
+ ETR. If this object is true, it means the locator is
2438
+ local.""",
2439
+ }, # column
2440
+ "lispEidRegistrationLocatorPriority" : {
2441
+ "nodetype" : "column",
2442
+ "moduleName" : "LISP-MIB",
2443
+ "oid" : "1.3.6.1.2.1.220.1.11.1.5",
2444
+ "status" : "current",
2445
+ "syntax" : {
2446
+ "type" : {
2447
+ "basetype" : "Integer32",
2448
+ "ranges" : [
2449
+ {
2450
+ "min" : "0",
2451
+ "max" : "255"
2452
+ },
2453
+ ],
2454
+ "range" : {
2455
+ "min" : "0",
2456
+ "max" : "255"
2457
+ },
2458
+ },
2459
+ },
2460
+ "access" : "readonly",
2461
+ "description" :
2462
+ """The unicast priority of the RLOC for this EID-Prefix in the
2463
+ register message sent by the given ETR.""",
2464
+ }, # column
2465
+ "lispEidRegistrationLocatorWeight" : {
2466
+ "nodetype" : "column",
2467
+ "moduleName" : "LISP-MIB",
2468
+ "oid" : "1.3.6.1.2.1.220.1.11.1.6",
2469
+ "status" : "current",
2470
+ "syntax" : {
2471
+ "type" : {
2472
+ "basetype" : "Integer32",
2473
+ "ranges" : [
2474
+ {
2475
+ "min" : "0",
2476
+ "max" : "100"
2477
+ },
2478
+ ],
2479
+ "range" : {
2480
+ "min" : "0",
2481
+ "max" : "100"
2482
+ },
2483
+ },
2484
+ },
2485
+ "access" : "readonly",
2486
+ "description" :
2487
+ """The unicast weight of the RLOC for this EID-Prefix in the
2488
+ register message sent by the given ETR.""",
2489
+ }, # column
2490
+ "lispEidRegistrationLocatorMPriority" : {
2491
+ "nodetype" : "column",
2492
+ "moduleName" : "LISP-MIB",
2493
+ "oid" : "1.3.6.1.2.1.220.1.11.1.7",
2494
+ "status" : "current",
2495
+ "syntax" : {
2496
+ "type" : {
2497
+ "basetype" : "Integer32",
2498
+ "ranges" : [
2499
+ {
2500
+ "min" : "0",
2501
+ "max" : "255"
2502
+ },
2503
+ ],
2504
+ "range" : {
2505
+ "min" : "0",
2506
+ "max" : "255"
2507
+ },
2508
+ },
2509
+ },
2510
+ "access" : "readonly",
2511
+ "description" :
2512
+ """The multicast priority of the RLOC for this EID-Prefix in
2513
+ the register message sent by the given ETR.""",
2514
+ }, # column
2515
+ "lispEidRegistrationLocatorMWeight" : {
2516
+ "nodetype" : "column",
2517
+ "moduleName" : "LISP-MIB",
2518
+ "oid" : "1.3.6.1.2.1.220.1.11.1.8",
2519
+ "status" : "current",
2520
+ "syntax" : {
2521
+ "type" : {
2522
+ "basetype" : "Integer32",
2523
+ "ranges" : [
2524
+ {
2525
+ "min" : "0",
2526
+ "max" : "100"
2527
+ },
2528
+ ],
2529
+ "range" : {
2530
+ "min" : "0",
2531
+ "max" : "100"
2532
+ },
2533
+ },
2534
+ },
2535
+ "access" : "readonly",
2536
+ "description" :
2537
+ """The multicast weight of the RLOC for this EID-Prefix in the
2538
+ register message sent by the given ETR.""",
2539
+ }, # column
2540
+ "lispUseMapServerTable" : {
2541
+ "nodetype" : "table",
2542
+ "moduleName" : "LISP-MIB",
2543
+ "oid" : "1.3.6.1.2.1.220.1.12",
2544
+ "status" : "current",
2545
+ "description" :
2546
+ """This table provides the properties of the Map-Server(s)
2547
+ with which this device is configured to register.""",
2548
+ "reference" :
2549
+ """RFC 6833, Section 4.3.""",
2550
+ }, # table
2551
+ "lispUseMapServerEntry" : {
2552
+ "nodetype" : "row",
2553
+ "moduleName" : "LISP-MIB",
2554
+ "oid" : "1.3.6.1.2.1.220.1.12.1",
2555
+ "status" : "current",
2556
+ "linkage" : [
2557
+ "lispUseMapServerAddressLength",
2558
+ "lispUseMapServerAddress",
2559
+ ],
2560
+ "description" :
2561
+ """An entry (conceptual row) in the lispUseMapServerTable.""",
2562
+ }, # row
2563
+ "lispUseMapServerAddressLength" : {
2564
+ "nodetype" : "column",
2565
+ "moduleName" : "LISP-MIB",
2566
+ "oid" : "1.3.6.1.2.1.220.1.12.1.1",
2567
+ "status" : "current",
2568
+ "syntax" : {
2569
+ "type" : {
2570
+ "basetype" : "Integer32",
2571
+ "ranges" : [
2572
+ {
2573
+ "min" : "5",
2574
+ "max" : "39"
2575
+ },
2576
+ ],
2577
+ "range" : {
2578
+ "min" : "5",
2579
+ "max" : "39"
2580
+ },
2581
+ },
2582
+ },
2583
+ "access" : "noaccess",
2584
+ "description" :
2585
+ """This object is used to get the octet-length of
2586
+ lispUseMapServerAddress.""",
2587
+ }, # column
2588
+ "lispUseMapServerAddress" : {
2589
+ "nodetype" : "column",
2590
+ "moduleName" : "LISP-MIB",
2591
+ "oid" : "1.3.6.1.2.1.220.1.12.1.2",
2592
+ "status" : "current",
2593
+ "syntax" : {
2594
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
2595
+ },
2596
+ "access" : "noaccess",
2597
+ "description" :
2598
+ """Address of a Map-Server configured on this device.""",
2599
+ }, # column
2600
+ "lispUseMapServerState" : {
2601
+ "nodetype" : "column",
2602
+ "moduleName" : "LISP-MIB",
2603
+ "oid" : "1.3.6.1.2.1.220.1.12.1.3",
2604
+ "status" : "current",
2605
+ "syntax" : {
2606
+ "type" : {
2607
+ "basetype" : "Enumeration",
2608
+ "up" : {
2609
+ "nodetype" : "namednumber",
2610
+ "number" : "1"
2611
+ },
2612
+ "down" : {
2613
+ "nodetype" : "namednumber",
2614
+ "number" : "2"
2615
+ },
2616
+ "unreachable" : {
2617
+ "nodetype" : "namednumber",
2618
+ "number" : "3"
2619
+ },
2620
+ },
2621
+ },
2622
+ "access" : "readonly",
2623
+ "description" :
2624
+ """State of this Map-Server configured on this device
2625
+ (1 = Map-Server is up; 2 = Map-Server is down).""",
2626
+ }, # column
2627
+ "lispUseMapResolverTable" : {
2628
+ "nodetype" : "table",
2629
+ "moduleName" : "LISP-MIB",
2630
+ "oid" : "1.3.6.1.2.1.220.1.13",
2631
+ "status" : "current",
2632
+ "description" :
2633
+ """This table provides the properties of the Map-Resolver(s)
2634
+ this device is configured to use.""",
2635
+ "reference" :
2636
+ """RFC 6833, Section 4.4.""",
2637
+ }, # table
2638
+ "lispUseMapResolverEntry" : {
2639
+ "nodetype" : "row",
2640
+ "moduleName" : "LISP-MIB",
2641
+ "oid" : "1.3.6.1.2.1.220.1.13.1",
2642
+ "status" : "current",
2643
+ "linkage" : [
2644
+ "lispUseMapResolverAddressLength",
2645
+ "lispUseMapResolverAddress",
2646
+ ],
2647
+ "description" :
2648
+ """An entry (conceptual row) in the
2649
+ lispUseMapResolverTable.""",
2650
+ }, # row
2651
+ "lispUseMapResolverAddressLength" : {
2652
+ "nodetype" : "column",
2653
+ "moduleName" : "LISP-MIB",
2654
+ "oid" : "1.3.6.1.2.1.220.1.13.1.1",
2655
+ "status" : "current",
2656
+ "syntax" : {
2657
+ "type" : {
2658
+ "basetype" : "Integer32",
2659
+ "ranges" : [
2660
+ {
2661
+ "min" : "5",
2662
+ "max" : "39"
2663
+ },
2664
+ ],
2665
+ "range" : {
2666
+ "min" : "5",
2667
+ "max" : "39"
2668
+ },
2669
+ },
2670
+ },
2671
+ "access" : "noaccess",
2672
+ "description" :
2673
+ """This object is used to get the octet-length of
2674
+ lispUseMapResolverAddress.""",
2675
+ }, # column
2676
+ "lispUseMapResolverAddress" : {
2677
+ "nodetype" : "column",
2678
+ "moduleName" : "LISP-MIB",
2679
+ "oid" : "1.3.6.1.2.1.220.1.13.1.2",
2680
+ "status" : "current",
2681
+ "syntax" : {
2682
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
2683
+ },
2684
+ "access" : "noaccess",
2685
+ "description" :
2686
+ """Address of Map-Resolver configured on this device.""",
2687
+ }, # column
2688
+ "lispUseMapResolverState" : {
2689
+ "nodetype" : "column",
2690
+ "moduleName" : "LISP-MIB",
2691
+ "oid" : "1.3.6.1.2.1.220.1.13.1.3",
2692
+ "status" : "current",
2693
+ "syntax" : {
2694
+ "type" : {
2695
+ "basetype" : "Enumeration",
2696
+ "up" : {
2697
+ "nodetype" : "namednumber",
2698
+ "number" : "1"
2699
+ },
2700
+ "down" : {
2701
+ "nodetype" : "namednumber",
2702
+ "number" : "2"
2703
+ },
2704
+ },
2705
+ },
2706
+ "access" : "readonly",
2707
+ "description" :
2708
+ """State of this Map-Resolver configured on this device
2709
+ (1 = Map-Resolver is up; 2 = Map-Resolver is down).""",
2710
+ }, # column
2711
+ "lispUseProxyEtrTable" : {
2712
+ "nodetype" : "table",
2713
+ "moduleName" : "LISP-MIB",
2714
+ "oid" : "1.3.6.1.2.1.220.1.14",
2715
+ "status" : "current",
2716
+ "description" :
2717
+ """This table provides the properties of all Proxy ETRs that
2718
+ this device is configured to use.""",
2719
+ "reference" :
2720
+ """RFC 6830, Section 6.""",
2721
+ }, # table
2722
+ "lispUseProxyEtrEntry" : {
2723
+ "nodetype" : "row",
2724
+ "moduleName" : "LISP-MIB",
2725
+ "oid" : "1.3.6.1.2.1.220.1.14.1",
2726
+ "status" : "current",
2727
+ "linkage" : [
2728
+ "lispUseProxyEtrAddressLength",
2729
+ "lispUseProxyEtrAddress",
2730
+ ],
2731
+ "description" :
2732
+ """An entry (conceptual row) in the
2733
+ lispUseProxyEtrTable.""",
2734
+ }, # row
2735
+ "lispUseProxyEtrAddressLength" : {
2736
+ "nodetype" : "column",
2737
+ "moduleName" : "LISP-MIB",
2738
+ "oid" : "1.3.6.1.2.1.220.1.14.1.1",
2739
+ "status" : "current",
2740
+ "syntax" : {
2741
+ "type" : {
2742
+ "basetype" : "Integer32",
2743
+ "ranges" : [
2744
+ {
2745
+ "min" : "5",
2746
+ "max" : "39"
2747
+ },
2748
+ ],
2749
+ "range" : {
2750
+ "min" : "5",
2751
+ "max" : "39"
2752
+ },
2753
+ },
2754
+ },
2755
+ "access" : "noaccess",
2756
+ "description" :
2757
+ """This object is used to get the octet-length of
2758
+ lispUseProxyEtrAddress.""",
2759
+ }, # column
2760
+ "lispUseProxyEtrAddress" : {
2761
+ "nodetype" : "column",
2762
+ "moduleName" : "LISP-MIB",
2763
+ "oid" : "1.3.6.1.2.1.220.1.14.1.2",
2764
+ "status" : "current",
2765
+ "syntax" : {
2766
+ "type" : { "module" :"LISP-MIB", "name" : "LispAddressType"},
2767
+ },
2768
+ "access" : "noaccess",
2769
+ "description" :
2770
+ """Address of Proxy ETR configured on this device.""",
2771
+ }, # column
2772
+ "lispUseProxyEtrPriority" : {
2773
+ "nodetype" : "column",
2774
+ "moduleName" : "LISP-MIB",
2775
+ "oid" : "1.3.6.1.2.1.220.1.14.1.3",
2776
+ "status" : "current",
2777
+ "syntax" : {
2778
+ "type" : {
2779
+ "basetype" : "Integer32",
2780
+ "ranges" : [
2781
+ {
2782
+ "min" : "0",
2783
+ "max" : "255"
2784
+ },
2785
+ ],
2786
+ "range" : {
2787
+ "min" : "0",
2788
+ "max" : "255"
2789
+ },
2790
+ },
2791
+ },
2792
+ "access" : "readonly",
2793
+ "description" :
2794
+ """The unicast priority of the PETR locator.""",
2795
+ }, # column
2796
+ "lispUseProxyEtrWeight" : {
2797
+ "nodetype" : "column",
2798
+ "moduleName" : "LISP-MIB",
2799
+ "oid" : "1.3.6.1.2.1.220.1.14.1.4",
2800
+ "status" : "current",
2801
+ "syntax" : {
2802
+ "type" : {
2803
+ "basetype" : "Integer32",
2804
+ "ranges" : [
2805
+ {
2806
+ "min" : "0",
2807
+ "max" : "100"
2808
+ },
2809
+ ],
2810
+ "range" : {
2811
+ "min" : "0",
2812
+ "max" : "100"
2813
+ },
2814
+ },
2815
+ },
2816
+ "access" : "readonly",
2817
+ "description" :
2818
+ """The unicast weight of the PETR locator.""",
2819
+ }, # column
2820
+ "lispUseProxyEtrMPriority" : {
2821
+ "nodetype" : "column",
2822
+ "moduleName" : "LISP-MIB",
2823
+ "oid" : "1.3.6.1.2.1.220.1.14.1.5",
2824
+ "status" : "current",
2825
+ "syntax" : {
2826
+ "type" : {
2827
+ "basetype" : "Integer32",
2828
+ "ranges" : [
2829
+ {
2830
+ "min" : "0",
2831
+ "max" : "255"
2832
+ },
2833
+ ],
2834
+ "range" : {
2835
+ "min" : "0",
2836
+ "max" : "255"
2837
+ },
2838
+ },
2839
+ },
2840
+ "access" : "readonly",
2841
+ "description" :
2842
+ """The multicast priority of the PETR locator.""",
2843
+ }, # column
2844
+ "lispUseProxyEtrMWeight" : {
2845
+ "nodetype" : "column",
2846
+ "moduleName" : "LISP-MIB",
2847
+ "oid" : "1.3.6.1.2.1.220.1.14.1.6",
2848
+ "status" : "current",
2849
+ "syntax" : {
2850
+ "type" : {
2851
+ "basetype" : "Integer32",
2852
+ "ranges" : [
2853
+ {
2854
+ "min" : "0",
2855
+ "max" : "100"
2856
+ },
2857
+ ],
2858
+ "range" : {
2859
+ "min" : "0",
2860
+ "max" : "100"
2861
+ },
2862
+ },
2863
+ },
2864
+ "access" : "readonly",
2865
+ "description" :
2866
+ """The multicast weight of the PETR locator.""",
2867
+ }, # column
2868
+ "lispUseProxyEtrState" : {
2869
+ "nodetype" : "column",
2870
+ "moduleName" : "LISP-MIB",
2871
+ "oid" : "1.3.6.1.2.1.220.1.14.1.7",
2872
+ "status" : "current",
2873
+ "syntax" : {
2874
+ "type" : {
2875
+ "basetype" : "Enumeration",
2876
+ "down" : {
2877
+ "nodetype" : "namednumber",
2878
+ "number" : "0"
2879
+ },
2880
+ "up" : {
2881
+ "nodetype" : "namednumber",
2882
+ "number" : "1"
2883
+ },
2884
+ },
2885
+ },
2886
+ "access" : "readonly",
2887
+ "description" :
2888
+ """State of this Proxy ETR configured on this device
2889
+ (0 = Proxy ETR is down; 1 = Proxy ETR is up).""",
2890
+ }, # column
2891
+ "lispConformance" : {
2892
+ "nodetype" : "node",
2893
+ "moduleName" : "LISP-MIB",
2894
+ "oid" : "1.3.6.1.2.1.220.2",
2895
+ }, # node
2896
+ "lispCompliances" : {
2897
+ "nodetype" : "node",
2898
+ "moduleName" : "LISP-MIB",
2899
+ "oid" : "1.3.6.1.2.1.220.2.1",
2900
+ }, # node
2901
+ "lispGroups" : {
2902
+ "nodetype" : "node",
2903
+ "moduleName" : "LISP-MIB",
2904
+ "oid" : "1.3.6.1.2.1.220.2.2",
2905
+ }, # node
2906
+ }, # nodes
2907
+
2908
+ "groups" : {
2909
+ "lispMIBEtrGroup" : {
2910
+ "nodetype" : "group",
2911
+ "moduleName" : "LISP-MIB",
2912
+ "oid" : "1.3.6.1.2.1.220.2.2.1",
2913
+ "status" : "current",
2914
+ "members" : {
2915
+ "lispFeaturesEtrEnabled" : {
2916
+ "nodetype" : "member",
2917
+ "module" : "LISP-MIB"
2918
+ },
2919
+ "lispMappingDatabaseLsb" : {
2920
+ "nodetype" : "member",
2921
+ "module" : "LISP-MIB"
2922
+ },
2923
+ "lispMappingDatabaseLocatorRlocPriority" : {
2924
+ "nodetype" : "member",
2925
+ "module" : "LISP-MIB"
2926
+ },
2927
+ "lispMappingDatabaseLocatorRlocWeight" : {
2928
+ "nodetype" : "member",
2929
+ "module" : "LISP-MIB"
2930
+ },
2931
+ "lispMappingDatabaseLocatorRlocMPriority" : {
2932
+ "nodetype" : "member",
2933
+ "module" : "LISP-MIB"
2934
+ },
2935
+ "lispMappingDatabaseLocatorRlocMWeight" : {
2936
+ "nodetype" : "member",
2937
+ "module" : "LISP-MIB"
2938
+ },
2939
+ "lispMappingDatabaseLocatorRlocState" : {
2940
+ "nodetype" : "member",
2941
+ "module" : "LISP-MIB"
2942
+ },
2943
+ "lispMappingDatabaseLocatorRlocLocal" : {
2944
+ "nodetype" : "member",
2945
+ "module" : "LISP-MIB"
2946
+ },
2947
+ "lispConfiguredLocatorRlocState" : {
2948
+ "nodetype" : "member",
2949
+ "module" : "LISP-MIB"
2950
+ },
2951
+ "lispConfiguredLocatorRlocLocal" : {
2952
+ "nodetype" : "member",
2953
+ "module" : "LISP-MIB"
2954
+ },
2955
+ "lispUseMapServerState" : {
2956
+ "nodetype" : "member",
2957
+ "module" : "LISP-MIB"
2958
+ },
2959
+ }, # members
2960
+ "description" :
2961
+ """A collection of objects to support reporting of basic
2962
+ LISP ETR parameters.""",
2963
+ }, # group
2964
+ "lispMIBItrGroup" : {
2965
+ "nodetype" : "group",
2966
+ "moduleName" : "LISP-MIB",
2967
+ "oid" : "1.3.6.1.2.1.220.2.2.2",
2968
+ "status" : "current",
2969
+ "members" : {
2970
+ "lispFeaturesItrEnabled" : {
2971
+ "nodetype" : "member",
2972
+ "module" : "LISP-MIB"
2973
+ },
2974
+ "lispFeaturesMapCacheSize" : {
2975
+ "nodetype" : "member",
2976
+ "module" : "LISP-MIB"
2977
+ },
2978
+ "lispMappingDatabaseLsb" : {
2979
+ "nodetype" : "member",
2980
+ "module" : "LISP-MIB"
2981
+ },
2982
+ "lispMapCacheLocatorRlocPriority" : {
2983
+ "nodetype" : "member",
2984
+ "module" : "LISP-MIB"
2985
+ },
2986
+ "lispMapCacheLocatorRlocWeight" : {
2987
+ "nodetype" : "member",
2988
+ "module" : "LISP-MIB"
2989
+ },
2990
+ "lispMapCacheLocatorRlocMPriority" : {
2991
+ "nodetype" : "member",
2992
+ "module" : "LISP-MIB"
2993
+ },
2994
+ "lispMapCacheLocatorRlocMWeight" : {
2995
+ "nodetype" : "member",
2996
+ "module" : "LISP-MIB"
2997
+ },
2998
+ "lispMapCacheLocatorRlocState" : {
2999
+ "nodetype" : "member",
3000
+ "module" : "LISP-MIB"
3001
+ },
3002
+ "lispMapCacheEidTimeStamp" : {
3003
+ "nodetype" : "member",
3004
+ "module" : "LISP-MIB"
3005
+ },
3006
+ "lispMapCacheEidExpiryTime" : {
3007
+ "nodetype" : "member",
3008
+ "module" : "LISP-MIB"
3009
+ },
3010
+ "lispUseMapResolverState" : {
3011
+ "nodetype" : "member",
3012
+ "module" : "LISP-MIB"
3013
+ },
3014
+ "lispUseProxyEtrPriority" : {
3015
+ "nodetype" : "member",
3016
+ "module" : "LISP-MIB"
3017
+ },
3018
+ "lispUseProxyEtrWeight" : {
3019
+ "nodetype" : "member",
3020
+ "module" : "LISP-MIB"
3021
+ },
3022
+ "lispUseProxyEtrMPriority" : {
3023
+ "nodetype" : "member",
3024
+ "module" : "LISP-MIB"
3025
+ },
3026
+ "lispUseProxyEtrMWeight" : {
3027
+ "nodetype" : "member",
3028
+ "module" : "LISP-MIB"
3029
+ },
3030
+ "lispUseProxyEtrState" : {
3031
+ "nodetype" : "member",
3032
+ "module" : "LISP-MIB"
3033
+ },
3034
+ }, # members
3035
+ "description" :
3036
+ """A collection of objects to support reporting of basic
3037
+ LISP ITR parameters.""",
3038
+ }, # group
3039
+ "lispMIBPetrGroup" : {
3040
+ "nodetype" : "group",
3041
+ "moduleName" : "LISP-MIB",
3042
+ "oid" : "1.3.6.1.2.1.220.2.2.3",
3043
+ "status" : "current",
3044
+ "members" : {
3045
+ "lispFeaturesProxyEtrEnabled" : {
3046
+ "nodetype" : "member",
3047
+ "module" : "LISP-MIB"
3048
+ },
3049
+ }, # members
3050
+ "description" :
3051
+ """A collection of objects to support reporting of basic
3052
+ LISP Proxy-ETR parameters.""",
3053
+ }, # group
3054
+ "lispMIBPitrGroup" : {
3055
+ "nodetype" : "group",
3056
+ "moduleName" : "LISP-MIB",
3057
+ "oid" : "1.3.6.1.2.1.220.2.2.4",
3058
+ "status" : "current",
3059
+ "members" : {
3060
+ "lispFeaturesProxyItrEnabled" : {
3061
+ "nodetype" : "member",
3062
+ "module" : "LISP-MIB"
3063
+ },
3064
+ "lispConfiguredLocatorRlocState" : {
3065
+ "nodetype" : "member",
3066
+ "module" : "LISP-MIB"
3067
+ },
3068
+ "lispConfiguredLocatorRlocLocal" : {
3069
+ "nodetype" : "member",
3070
+ "module" : "LISP-MIB"
3071
+ },
3072
+ }, # members
3073
+ "description" :
3074
+ """A collection of objects to support reporting of basic
3075
+ LISP Proxy-ITR parameters.""",
3076
+ }, # group
3077
+ "lispMIBMapServerGroup" : {
3078
+ "nodetype" : "group",
3079
+ "moduleName" : "LISP-MIB",
3080
+ "oid" : "1.3.6.1.2.1.220.2.2.5",
3081
+ "status" : "current",
3082
+ "members" : {
3083
+ "lispFeaturesMapServerEnabled" : {
3084
+ "nodetype" : "member",
3085
+ "module" : "LISP-MIB"
3086
+ },
3087
+ "lispEidRegistrationIsRegistered" : {
3088
+ "nodetype" : "member",
3089
+ "module" : "LISP-MIB"
3090
+ },
3091
+ "lispEidRegistrationLocatorRlocState" : {
3092
+ "nodetype" : "member",
3093
+ "module" : "LISP-MIB"
3094
+ },
3095
+ }, # members
3096
+ "description" :
3097
+ """A collection of objects to support reporting of basic
3098
+ LISP Map Server parameters.""",
3099
+ }, # group
3100
+ "lispMIBMapResolverGroup" : {
3101
+ "nodetype" : "group",
3102
+ "moduleName" : "LISP-MIB",
3103
+ "oid" : "1.3.6.1.2.1.220.2.2.6",
3104
+ "status" : "current",
3105
+ "members" : {
3106
+ "lispFeaturesMapResolverEnabled" : {
3107
+ "nodetype" : "member",
3108
+ "module" : "LISP-MIB"
3109
+ },
3110
+ }, # members
3111
+ "description" :
3112
+ """A collection of objects to support reporting of basic
3113
+ LISP Map Resolver parameters.""",
3114
+ }, # group
3115
+ "lispMIBEtrExtendedGroup" : {
3116
+ "nodetype" : "group",
3117
+ "moduleName" : "LISP-MIB",
3118
+ "oid" : "1.3.6.1.2.1.220.2.2.7",
3119
+ "status" : "current",
3120
+ "members" : {
3121
+ "lispFeaturesRlocProbeEnabled" : {
3122
+ "nodetype" : "member",
3123
+ "module" : "LISP-MIB"
3124
+ },
3125
+ "lispFeaturesEtrAcceptMapDataEnabled" : {
3126
+ "nodetype" : "member",
3127
+ "module" : "LISP-MIB"
3128
+ },
3129
+ "lispFeaturesEtrAcceptMapDataVerifyEnabled" : {
3130
+ "nodetype" : "member",
3131
+ "module" : "LISP-MIB"
3132
+ },
3133
+ "lispMappingDatabaseEidPartitioned" : {
3134
+ "nodetype" : "member",
3135
+ "module" : "LISP-MIB"
3136
+ },
3137
+ }, # members
3138
+ "description" :
3139
+ """A collection of objects to support reporting of
3140
+ LISP features and properties on ETRs.""",
3141
+ }, # group
3142
+ "lispMIBItrExtendedGroup" : {
3143
+ "nodetype" : "group",
3144
+ "moduleName" : "LISP-MIB",
3145
+ "oid" : "1.3.6.1.2.1.220.2.2.8",
3146
+ "status" : "current",
3147
+ "members" : {
3148
+ "lispFeaturesRlocProbeEnabled" : {
3149
+ "nodetype" : "member",
3150
+ "module" : "LISP-MIB"
3151
+ },
3152
+ "lispMapCacheEidState" : {
3153
+ "nodetype" : "member",
3154
+ "module" : "LISP-MIB"
3155
+ },
3156
+ "lispMapCacheEidAuthoritative" : {
3157
+ "nodetype" : "member",
3158
+ "module" : "LISP-MIB"
3159
+ },
3160
+ "lispMapCacheLocatorRlocTimeStamp" : {
3161
+ "nodetype" : "member",
3162
+ "module" : "LISP-MIB"
3163
+ },
3164
+ "lispMapCacheLocatorRlocLastPriorityChange" : {
3165
+ "nodetype" : "member",
3166
+ "module" : "LISP-MIB"
3167
+ },
3168
+ "lispMapCacheLocatorRlocLastWeightChange" : {
3169
+ "nodetype" : "member",
3170
+ "module" : "LISP-MIB"
3171
+ },
3172
+ "lispMapCacheLocatorRlocLastMPriorityChange" : {
3173
+ "nodetype" : "member",
3174
+ "module" : "LISP-MIB"
3175
+ },
3176
+ "lispMapCacheLocatorRlocLastMWeightChange" : {
3177
+ "nodetype" : "member",
3178
+ "module" : "LISP-MIB"
3179
+ },
3180
+ "lispMapCacheLocatorRlocLastStateChange" : {
3181
+ "nodetype" : "member",
3182
+ "module" : "LISP-MIB"
3183
+ },
3184
+ "lispMapCacheLocatorRlocRtt" : {
3185
+ "nodetype" : "member",
3186
+ "module" : "LISP-MIB"
3187
+ },
3188
+ }, # members
3189
+ "description" :
3190
+ """A collection of objects to support reporting of
3191
+ LISP features and properties on ITRs.""",
3192
+ }, # group
3193
+ "lispMIBMapServerExtendedGroup" : {
3194
+ "nodetype" : "group",
3195
+ "moduleName" : "LISP-MIB",
3196
+ "oid" : "1.3.6.1.2.1.220.2.2.9",
3197
+ "status" : "current",
3198
+ "members" : {
3199
+ "lispEidRegistrationSiteName" : {
3200
+ "nodetype" : "member",
3201
+ "module" : "LISP-MIB"
3202
+ },
3203
+ "lispEidRegistrationSiteDescription" : {
3204
+ "nodetype" : "member",
3205
+ "module" : "LISP-MIB"
3206
+ },
3207
+ "lispEidRegistrationIsRegistered" : {
3208
+ "nodetype" : "member",
3209
+ "module" : "LISP-MIB"
3210
+ },
3211
+ "lispEidRegistrationFirstTimeStamp" : {
3212
+ "nodetype" : "member",
3213
+ "module" : "LISP-MIB"
3214
+ },
3215
+ "lispEidRegistrationLastTimeStamp" : {
3216
+ "nodetype" : "member",
3217
+ "module" : "LISP-MIB"
3218
+ },
3219
+ "lispEidRegistrationLastRegisterSenderLength" : {
3220
+ "nodetype" : "member",
3221
+ "module" : "LISP-MIB"
3222
+ },
3223
+ "lispEidRegistrationLastRegisterSender" : {
3224
+ "nodetype" : "member",
3225
+ "module" : "LISP-MIB"
3226
+ },
3227
+ "lispEidRegistrationEtrLastTimeStamp" : {
3228
+ "nodetype" : "member",
3229
+ "module" : "LISP-MIB"
3230
+ },
3231
+ "lispEidRegistrationEtrTtl" : {
3232
+ "nodetype" : "member",
3233
+ "module" : "LISP-MIB"
3234
+ },
3235
+ "lispEidRegistrationEtrProxyReply" : {
3236
+ "nodetype" : "member",
3237
+ "module" : "LISP-MIB"
3238
+ },
3239
+ "lispEidRegistrationEtrWantsMapNotify" : {
3240
+ "nodetype" : "member",
3241
+ "module" : "LISP-MIB"
3242
+ },
3243
+ "lispEidRegistrationLocatorIsLocal" : {
3244
+ "nodetype" : "member",
3245
+ "module" : "LISP-MIB"
3246
+ },
3247
+ "lispEidRegistrationLocatorPriority" : {
3248
+ "nodetype" : "member",
3249
+ "module" : "LISP-MIB"
3250
+ },
3251
+ "lispEidRegistrationLocatorWeight" : {
3252
+ "nodetype" : "member",
3253
+ "module" : "LISP-MIB"
3254
+ },
3255
+ "lispEidRegistrationLocatorMPriority" : {
3256
+ "nodetype" : "member",
3257
+ "module" : "LISP-MIB"
3258
+ },
3259
+ "lispEidRegistrationLocatorMWeight" : {
3260
+ "nodetype" : "member",
3261
+ "module" : "LISP-MIB"
3262
+ },
3263
+ }, # members
3264
+ "description" :
3265
+ """A collection of objects to support the reporting of
3266
+ LISP features and properties on Map Servers
3267
+ related to EID registrations.""",
3268
+ }, # group
3269
+ "lispMIBTuningParametersGroup" : {
3270
+ "nodetype" : "group",
3271
+ "moduleName" : "LISP-MIB",
3272
+ "oid" : "1.3.6.1.2.1.220.2.2.10",
3273
+ "status" : "current",
3274
+ "members" : {
3275
+ "lispFeaturesMapCacheLimit" : {
3276
+ "nodetype" : "member",
3277
+ "module" : "LISP-MIB"
3278
+ },
3279
+ "lispFeaturesEtrMapCacheTtl" : {
3280
+ "nodetype" : "member",
3281
+ "module" : "LISP-MIB"
3282
+ },
3283
+ }, # members
3284
+ "description" :
3285
+ """A collection of objects used to support the reporting of
3286
+ parameters used to control LISP behavior and to tune
3287
+ performance.""",
3288
+ }, # group
3289
+ "lispMIBEncapStatisticsGroup" : {
3290
+ "nodetype" : "group",
3291
+ "moduleName" : "LISP-MIB",
3292
+ "oid" : "1.3.6.1.2.1.220.2.2.11",
3293
+ "status" : "current",
3294
+ "members" : {
3295
+ "lispMappingDatabaseTimeStamp" : {
3296
+ "nodetype" : "member",
3297
+ "module" : "LISP-MIB"
3298
+ },
3299
+ "lispMappingDatabaseEncapOctets" : {
3300
+ "nodetype" : "member",
3301
+ "module" : "LISP-MIB"
3302
+ },
3303
+ "lispMappingDatabaseEncapPackets" : {
3304
+ "nodetype" : "member",
3305
+ "module" : "LISP-MIB"
3306
+ },
3307
+ "lispMappingDatabaseLocatorRlocTimeStamp" : {
3308
+ "nodetype" : "member",
3309
+ "module" : "LISP-MIB"
3310
+ },
3311
+ "lispMappingDatabaseLocatorRlocEncapOctets" : {
3312
+ "nodetype" : "member",
3313
+ "module" : "LISP-MIB"
3314
+ },
3315
+ "lispMappingDatabaseLocatorRlocEncapPackets" : {
3316
+ "nodetype" : "member",
3317
+ "module" : "LISP-MIB"
3318
+ },
3319
+ "lispMapCacheEidTimeStamp" : {
3320
+ "nodetype" : "member",
3321
+ "module" : "LISP-MIB"
3322
+ },
3323
+ "lispMapCacheEidEncapOctets" : {
3324
+ "nodetype" : "member",
3325
+ "module" : "LISP-MIB"
3326
+ },
3327
+ "lispMapCacheEidEncapPackets" : {
3328
+ "nodetype" : "member",
3329
+ "module" : "LISP-MIB"
3330
+ },
3331
+ "lispMapCacheLocatorRlocTimeStamp" : {
3332
+ "nodetype" : "member",
3333
+ "module" : "LISP-MIB"
3334
+ },
3335
+ "lispMapCacheLocatorRlocEncapOctets" : {
3336
+ "nodetype" : "member",
3337
+ "module" : "LISP-MIB"
3338
+ },
3339
+ "lispMapCacheLocatorRlocEncapPackets" : {
3340
+ "nodetype" : "member",
3341
+ "module" : "LISP-MIB"
3342
+ },
3343
+ "lispConfiguredLocatorRlocTimeStamp" : {
3344
+ "nodetype" : "member",
3345
+ "module" : "LISP-MIB"
3346
+ },
3347
+ "lispConfiguredLocatorRlocEncapOctets" : {
3348
+ "nodetype" : "member",
3349
+ "module" : "LISP-MIB"
3350
+ },
3351
+ "lispConfiguredLocatorRlocEncapPackets" : {
3352
+ "nodetype" : "member",
3353
+ "module" : "LISP-MIB"
3354
+ },
3355
+ }, # members
3356
+ "description" :
3357
+ """A collection of objects used to support the reporting of
3358
+ LISP encapsulation statistics for the device.""",
3359
+ }, # group
3360
+ "lispMIBDecapStatisticsGroup" : {
3361
+ "nodetype" : "group",
3362
+ "moduleName" : "LISP-MIB",
3363
+ "oid" : "1.3.6.1.2.1.220.2.2.12",
3364
+ "status" : "current",
3365
+ "members" : {
3366
+ "lispMappingDatabaseTimeStamp" : {
3367
+ "nodetype" : "member",
3368
+ "module" : "LISP-MIB"
3369
+ },
3370
+ "lispMappingDatabaseDecapOctets" : {
3371
+ "nodetype" : "member",
3372
+ "module" : "LISP-MIB"
3373
+ },
3374
+ "lispMappingDatabaseDecapPackets" : {
3375
+ "nodetype" : "member",
3376
+ "module" : "LISP-MIB"
3377
+ },
3378
+ "lispMappingDatabaseLocatorRlocTimeStamp" : {
3379
+ "nodetype" : "member",
3380
+ "module" : "LISP-MIB"
3381
+ },
3382
+ "lispMappingDatabaseLocatorRlocDecapOctets" : {
3383
+ "nodetype" : "member",
3384
+ "module" : "LISP-MIB"
3385
+ },
3386
+ "lispMappingDatabaseLocatorRlocDecapPackets" : {
3387
+ "nodetype" : "member",
3388
+ "module" : "LISP-MIB"
3389
+ },
3390
+ "lispMapCacheEidTimeStamp" : {
3391
+ "nodetype" : "member",
3392
+ "module" : "LISP-MIB"
3393
+ },
3394
+ "lispMapCacheEidDecapOctets" : {
3395
+ "nodetype" : "member",
3396
+ "module" : "LISP-MIB"
3397
+ },
3398
+ "lispMapCacheEidDecapPackets" : {
3399
+ "nodetype" : "member",
3400
+ "module" : "LISP-MIB"
3401
+ },
3402
+ "lispMapCacheLocatorRlocTimeStamp" : {
3403
+ "nodetype" : "member",
3404
+ "module" : "LISP-MIB"
3405
+ },
3406
+ "lispMapCacheLocatorRlocDecapOctets" : {
3407
+ "nodetype" : "member",
3408
+ "module" : "LISP-MIB"
3409
+ },
3410
+ "lispMapCacheLocatorRlocDecapPackets" : {
3411
+ "nodetype" : "member",
3412
+ "module" : "LISP-MIB"
3413
+ },
3414
+ "lispConfiguredLocatorRlocTimeStamp" : {
3415
+ "nodetype" : "member",
3416
+ "module" : "LISP-MIB"
3417
+ },
3418
+ "lispConfiguredLocatorRlocDecapOctets" : {
3419
+ "nodetype" : "member",
3420
+ "module" : "LISP-MIB"
3421
+ },
3422
+ "lispConfiguredLocatorRlocDecapPackets" : {
3423
+ "nodetype" : "member",
3424
+ "module" : "LISP-MIB"
3425
+ },
3426
+ }, # members
3427
+ "description" :
3428
+ """A collection of objects used to support the reporting of
3429
+ LISP decapsulation statistics for the device.""",
3430
+ }, # group
3431
+ "lispMIBDiagnosticsGroup" : {
3432
+ "nodetype" : "group",
3433
+ "moduleName" : "LISP-MIB",
3434
+ "oid" : "1.3.6.1.2.1.220.2.2.13",
3435
+ "status" : "current",
3436
+ "members" : {
3437
+ "lispFeaturesRouterTimeStamp" : {
3438
+ "nodetype" : "member",
3439
+ "module" : "LISP-MIB"
3440
+ },
3441
+ "lispGlobalStatsMapRequestsIn" : {
3442
+ "nodetype" : "member",
3443
+ "module" : "LISP-MIB"
3444
+ },
3445
+ "lispGlobalStatsMapRequestsOut" : {
3446
+ "nodetype" : "member",
3447
+ "module" : "LISP-MIB"
3448
+ },
3449
+ "lispGlobalStatsMapRepliesIn" : {
3450
+ "nodetype" : "member",
3451
+ "module" : "LISP-MIB"
3452
+ },
3453
+ "lispGlobalStatsMapRepliesOut" : {
3454
+ "nodetype" : "member",
3455
+ "module" : "LISP-MIB"
3456
+ },
3457
+ "lispGlobalStatsMapRegistersIn" : {
3458
+ "nodetype" : "member",
3459
+ "module" : "LISP-MIB"
3460
+ },
3461
+ "lispGlobalStatsMapRegistersOut" : {
3462
+ "nodetype" : "member",
3463
+ "module" : "LISP-MIB"
3464
+ },
3465
+ "lispEidRegistrationAuthenticationErrors" : {
3466
+ "nodetype" : "member",
3467
+ "module" : "LISP-MIB"
3468
+ },
3469
+ "lispEidRegistrationRlocsMismatch" : {
3470
+ "nodetype" : "member",
3471
+ "module" : "LISP-MIB"
3472
+ },
3473
+ }, # members
3474
+ "description" :
3475
+ """A collection of objects used to support the reporting of
3476
+ additional diagnostics related to the LISP control-plane
3477
+ state of a LISP device.""",
3478
+ }, # group
3479
+ "lispMIBVrfGroup" : {
3480
+ "nodetype" : "group",
3481
+ "moduleName" : "LISP-MIB",
3482
+ "oid" : "1.3.6.1.2.1.220.2.2.14",
3483
+ "status" : "current",
3484
+ "members" : {
3485
+ "lispIidToVrfName" : {
3486
+ "nodetype" : "member",
3487
+ "module" : "LISP-MIB"
3488
+ },
3489
+ }, # members
3490
+ "description" :
3491
+ """A collection of objects used to support reporting of
3492
+ VRF-related information on a LISP device.""",
3493
+ }, # group
3494
+ }, # groups
3495
+
3496
+ "compliances" : {
3497
+ "lispMIBComplianceEtr" : {
3498
+ "nodetype" : "compliance",
3499
+ "moduleName" : "LISP-MIB",
3500
+ "oid" : "1.3.6.1.2.1.220.2.1.1",
3501
+ "status" : "current",
3502
+ "description" :
3503
+ """The compliance statement for LISP ETRs. It conveys
3504
+ whether the device supports the ETR feature, and,
3505
+ if so, the relevant state associated with that feature.""",
3506
+ "requires" : {
3507
+ "lispMIBEtrGroup" : {
3508
+ "nodetype" : "mandatory",
3509
+ "module" : "LISP-MIB"
3510
+ },
3511
+ "lispMIBItrGroup" : {
3512
+ "nodetype" : "optional",
3513
+ "module" : "LISP-MIB",
3514
+ "description" :
3515
+ """This group is optional.""",
3516
+ },
3517
+ "lispMIBPetrGroup" : {
3518
+ "nodetype" : "optional",
3519
+ "module" : "LISP-MIB",
3520
+ "description" :
3521
+ """This group is optional.""",
3522
+ },
3523
+ "lispMIBPitrGroup" : {
3524
+ "nodetype" : "optional",
3525
+ "module" : "LISP-MIB",
3526
+ "description" :
3527
+ """This group is optional.""",
3528
+ },
3529
+ "lispMIBMapServerGroup" : {
3530
+ "nodetype" : "optional",
3531
+ "module" : "LISP-MIB",
3532
+ "description" :
3533
+ """This group is optional.""",
3534
+ },
3535
+ "lispMIBMapResolverGroup" : {
3536
+ "nodetype" : "optional",
3537
+ "module" : "LISP-MIB",
3538
+ "description" :
3539
+ """This group is optional.""",
3540
+ },
3541
+ "lispMIBEtrExtendedGroup" : {
3542
+ "nodetype" : "optional",
3543
+ "module" : "LISP-MIB",
3544
+ "description" :
3545
+ """This group is optional.""",
3546
+ },
3547
+ "lispMIBItrExtendedGroup" : {
3548
+ "nodetype" : "optional",
3549
+ "module" : "LISP-MIB",
3550
+ "description" :
3551
+ """This group is optional.""",
3552
+ },
3553
+ "lispMIBMapServerExtendedGroup" : {
3554
+ "nodetype" : "optional",
3555
+ "module" : "LISP-MIB",
3556
+ "description" :
3557
+ """This group is optional.""",
3558
+ },
3559
+ "lispMIBTuningParametersGroup" : {
3560
+ "nodetype" : "optional",
3561
+ "module" : "LISP-MIB",
3562
+ "description" :
3563
+ """This group is optional.""",
3564
+ },
3565
+ "lispMIBEncapStatisticsGroup" : {
3566
+ "nodetype" : "optional",
3567
+ "module" : "LISP-MIB",
3568
+ "description" :
3569
+ """This group is optional.""",
3570
+ },
3571
+ "lispMIBDecapStatisticsGroup" : {
3572
+ "nodetype" : "optional",
3573
+ "module" : "LISP-MIB",
3574
+ "description" :
3575
+ """This group is optional.""",
3576
+ },
3577
+ "lispMIBDiagnosticsGroup" : {
3578
+ "nodetype" : "optional",
3579
+ "module" : "LISP-MIB",
3580
+ "description" :
3581
+ """This group is optional.""",
3582
+ },
3583
+ "lispMIBVrfGroup" : {
3584
+ "nodetype" : "optional",
3585
+ "module" : "LISP-MIB",
3586
+ "description" :
3587
+ """This group is optional.""",
3588
+ },
3589
+ }, # requires
3590
+ }, # compliance
3591
+ "lispMIBComplianceItr" : {
3592
+ "nodetype" : "compliance",
3593
+ "moduleName" : "LISP-MIB",
3594
+ "oid" : "1.3.6.1.2.1.220.2.1.2",
3595
+ "status" : "current",
3596
+ "description" :
3597
+ """The compliance statement for LISP ITRs. It conveys
3598
+ whether the device supports the ITR feature, and,
3599
+ if so, the relevant state associated with that feature.""",
3600
+ "requires" : {
3601
+ "lispMIBItrGroup" : {
3602
+ "nodetype" : "mandatory",
3603
+ "module" : "LISP-MIB"
3604
+ },
3605
+ "lispMIBEtrGroup" : {
3606
+ "nodetype" : "optional",
3607
+ "module" : "LISP-MIB",
3608
+ "description" :
3609
+ """This group is optional.""",
3610
+ },
3611
+ "lispMIBPetrGroup" : {
3612
+ "nodetype" : "optional",
3613
+ "module" : "LISP-MIB",
3614
+ "description" :
3615
+ """This group is optional.""",
3616
+ },
3617
+ "lispMIBPitrGroup" : {
3618
+ "nodetype" : "optional",
3619
+ "module" : "LISP-MIB",
3620
+ "description" :
3621
+ """This group is optional.""",
3622
+ },
3623
+ "lispMIBMapServerGroup" : {
3624
+ "nodetype" : "optional",
3625
+ "module" : "LISP-MIB",
3626
+ "description" :
3627
+ """This group is optional.""",
3628
+ },
3629
+ "lispMIBMapResolverGroup" : {
3630
+ "nodetype" : "optional",
3631
+ "module" : "LISP-MIB",
3632
+ "description" :
3633
+ """This group is optional.""",
3634
+ },
3635
+ "lispMIBEtrExtendedGroup" : {
3636
+ "nodetype" : "optional",
3637
+ "module" : "LISP-MIB",
3638
+ "description" :
3639
+ """This group is optional.""",
3640
+ },
3641
+ "lispMIBItrExtendedGroup" : {
3642
+ "nodetype" : "optional",
3643
+ "module" : "LISP-MIB",
3644
+ "description" :
3645
+ """This group is optional.""",
3646
+ },
3647
+ "lispMIBMapServerExtendedGroup" : {
3648
+ "nodetype" : "optional",
3649
+ "module" : "LISP-MIB",
3650
+ "description" :
3651
+ """This group is optional.""",
3652
+ },
3653
+ "lispMIBTuningParametersGroup" : {
3654
+ "nodetype" : "optional",
3655
+ "module" : "LISP-MIB",
3656
+ "description" :
3657
+ """This group is optional.""",
3658
+ },
3659
+ "lispMIBEncapStatisticsGroup" : {
3660
+ "nodetype" : "optional",
3661
+ "module" : "LISP-MIB",
3662
+ "description" :
3663
+ """This group is optional.""",
3664
+ },
3665
+ "lispMIBDecapStatisticsGroup" : {
3666
+ "nodetype" : "optional",
3667
+ "module" : "LISP-MIB",
3668
+ "description" :
3669
+ """This group is optional.""",
3670
+ },
3671
+ "lispMIBDiagnosticsGroup" : {
3672
+ "nodetype" : "optional",
3673
+ "module" : "LISP-MIB",
3674
+ "description" :
3675
+ """This group is optional.""",
3676
+ },
3677
+ "lispMIBVrfGroup" : {
3678
+ "nodetype" : "optional",
3679
+ "module" : "LISP-MIB",
3680
+ "description" :
3681
+ """This group is optional.""",
3682
+ },
3683
+ }, # requires
3684
+ }, # compliance
3685
+ "lispMIBCompliancePetr" : {
3686
+ "nodetype" : "compliance",
3687
+ "moduleName" : "LISP-MIB",
3688
+ "oid" : "1.3.6.1.2.1.220.2.1.3",
3689
+ "status" : "current",
3690
+ "description" :
3691
+ """The compliance statement for LISP Proxy-ETRs. It
3692
+ conveys whether the device supports the Proxy-ETR
3693
+ feature, and, if so, the relevant state associated
3694
+ with that feature.""",
3695
+ "requires" : {
3696
+ "lispMIBPetrGroup" : {
3697
+ "nodetype" : "mandatory",
3698
+ "module" : "LISP-MIB"
3699
+ },
3700
+ "lispMIBEtrGroup" : {
3701
+ "nodetype" : "optional",
3702
+ "module" : "LISP-MIB",
3703
+ "description" :
3704
+ """This group is optional.""",
3705
+ },
3706
+ "lispMIBItrGroup" : {
3707
+ "nodetype" : "optional",
3708
+ "module" : "LISP-MIB",
3709
+ "description" :
3710
+ """This group is optional.""",
3711
+ },
3712
+ "lispMIBPitrGroup" : {
3713
+ "nodetype" : "optional",
3714
+ "module" : "LISP-MIB",
3715
+ "description" :
3716
+ """This group is optional.""",
3717
+ },
3718
+ "lispMIBMapServerGroup" : {
3719
+ "nodetype" : "optional",
3720
+ "module" : "LISP-MIB",
3721
+ "description" :
3722
+ """This group is optional.""",
3723
+ },
3724
+ "lispMIBMapResolverGroup" : {
3725
+ "nodetype" : "optional",
3726
+ "module" : "LISP-MIB",
3727
+ "description" :
3728
+ """This group is optional.""",
3729
+ },
3730
+ "lispMIBEtrExtendedGroup" : {
3731
+ "nodetype" : "optional",
3732
+ "module" : "LISP-MIB",
3733
+ "description" :
3734
+ """This group is optional.""",
3735
+ },
3736
+ "lispMIBItrExtendedGroup" : {
3737
+ "nodetype" : "optional",
3738
+ "module" : "LISP-MIB",
3739
+ "description" :
3740
+ """This group is optional.""",
3741
+ },
3742
+ "lispMIBMapServerExtendedGroup" : {
3743
+ "nodetype" : "optional",
3744
+ "module" : "LISP-MIB",
3745
+ "description" :
3746
+ """This group is optional.""",
3747
+ },
3748
+ "lispMIBTuningParametersGroup" : {
3749
+ "nodetype" : "optional",
3750
+ "module" : "LISP-MIB",
3751
+ "description" :
3752
+ """This group is optional.""",
3753
+ },
3754
+ "lispMIBEncapStatisticsGroup" : {
3755
+ "nodetype" : "optional",
3756
+ "module" : "LISP-MIB",
3757
+ "description" :
3758
+ """This group is optional.""",
3759
+ },
3760
+ "lispMIBDecapStatisticsGroup" : {
3761
+ "nodetype" : "optional",
3762
+ "module" : "LISP-MIB",
3763
+ "description" :
3764
+ """This group is optional.""",
3765
+ },
3766
+ "lispMIBDiagnosticsGroup" : {
3767
+ "nodetype" : "optional",
3768
+ "module" : "LISP-MIB",
3769
+ "description" :
3770
+ """This group is optional.""",
3771
+ },
3772
+ "lispMIBVrfGroup" : {
3773
+ "nodetype" : "optional",
3774
+ "module" : "LISP-MIB",
3775
+ "description" :
3776
+ """This group is optional.""",
3777
+ },
3778
+ }, # requires
3779
+ }, # compliance
3780
+ "lispMIBCompliancePitr" : {
3781
+ "nodetype" : "compliance",
3782
+ "moduleName" : "LISP-MIB",
3783
+ "oid" : "1.3.6.1.2.1.220.2.1.4",
3784
+ "status" : "current",
3785
+ "description" :
3786
+ """The compliance statement for LISP Proxy-ITRs. It
3787
+ conveys whether the device supports the Proxy-ITR
3788
+ feature, and, if so, the relevant state associated
3789
+ with that feature.""",
3790
+ "requires" : {
3791
+ "lispMIBPitrGroup" : {
3792
+ "nodetype" : "mandatory",
3793
+ "module" : "LISP-MIB"
3794
+ },
3795
+ "lispMIBEtrGroup" : {
3796
+ "nodetype" : "optional",
3797
+ "module" : "LISP-MIB",
3798
+ "description" :
3799
+ """This group is optional.""",
3800
+ },
3801
+ "lispMIBItrGroup" : {
3802
+ "nodetype" : "optional",
3803
+ "module" : "LISP-MIB",
3804
+ "description" :
3805
+ """This group is optional.""",
3806
+ },
3807
+ "lispMIBPetrGroup" : {
3808
+ "nodetype" : "optional",
3809
+ "module" : "LISP-MIB",
3810
+ "description" :
3811
+ """This group is optional.""",
3812
+ },
3813
+ "lispMIBMapServerGroup" : {
3814
+ "nodetype" : "optional",
3815
+ "module" : "LISP-MIB",
3816
+ "description" :
3817
+ """This group is optional.""",
3818
+ },
3819
+ "lispMIBMapResolverGroup" : {
3820
+ "nodetype" : "optional",
3821
+ "module" : "LISP-MIB",
3822
+ "description" :
3823
+ """This group is optional.""",
3824
+ },
3825
+ "lispMIBEtrExtendedGroup" : {
3826
+ "nodetype" : "optional",
3827
+ "module" : "LISP-MIB",
3828
+ "description" :
3829
+ """This group is optional.""",
3830
+ },
3831
+ "lispMIBItrExtendedGroup" : {
3832
+ "nodetype" : "optional",
3833
+ "module" : "LISP-MIB",
3834
+ "description" :
3835
+ """This group is optional.""",
3836
+ },
3837
+ "lispMIBMapServerExtendedGroup" : {
3838
+ "nodetype" : "optional",
3839
+ "module" : "LISP-MIB",
3840
+ "description" :
3841
+ """This group is optional.""",
3842
+ },
3843
+ "lispMIBTuningParametersGroup" : {
3844
+ "nodetype" : "optional",
3845
+ "module" : "LISP-MIB",
3846
+ "description" :
3847
+ """This group is optional.""",
3848
+ },
3849
+ "lispMIBEncapStatisticsGroup" : {
3850
+ "nodetype" : "optional",
3851
+ "module" : "LISP-MIB",
3852
+ "description" :
3853
+ """This group is optional.""",
3854
+ },
3855
+ "lispMIBDecapStatisticsGroup" : {
3856
+ "nodetype" : "optional",
3857
+ "module" : "LISP-MIB",
3858
+ "description" :
3859
+ """This group is optional.""",
3860
+ },
3861
+ "lispMIBDiagnosticsGroup" : {
3862
+ "nodetype" : "optional",
3863
+ "module" : "LISP-MIB",
3864
+ "description" :
3865
+ """This group is optional.""",
3866
+ },
3867
+ "lispMIBVrfGroup" : {
3868
+ "nodetype" : "optional",
3869
+ "module" : "LISP-MIB",
3870
+ "description" :
3871
+ """This group is optional.""",
3872
+ },
3873
+ }, # requires
3874
+ }, # compliance
3875
+ "lispMIBComplianceMapServer" : {
3876
+ "nodetype" : "compliance",
3877
+ "moduleName" : "LISP-MIB",
3878
+ "oid" : "1.3.6.1.2.1.220.2.1.5",
3879
+ "status" : "current",
3880
+ "description" :
3881
+ """The compliance statement for LISP Map Servers. It
3882
+ conveys whether the device supports the Map Server
3883
+ feature, and, if so, the relevant state associated
3884
+ with that feature.""",
3885
+ "requires" : {
3886
+ "lispMIBMapServerGroup" : {
3887
+ "nodetype" : "mandatory",
3888
+ "module" : "LISP-MIB"
3889
+ },
3890
+ "lispMIBEtrGroup" : {
3891
+ "nodetype" : "optional",
3892
+ "module" : "LISP-MIB",
3893
+ "description" :
3894
+ """This group is optional.""",
3895
+ },
3896
+ "lispMIBItrGroup" : {
3897
+ "nodetype" : "optional",
3898
+ "module" : "LISP-MIB",
3899
+ "description" :
3900
+ """This group is optional.""",
3901
+ },
3902
+ "lispMIBPetrGroup" : {
3903
+ "nodetype" : "optional",
3904
+ "module" : "LISP-MIB",
3905
+ "description" :
3906
+ """This group is optional.""",
3907
+ },
3908
+ "lispMIBPitrGroup" : {
3909
+ "nodetype" : "optional",
3910
+ "module" : "LISP-MIB",
3911
+ "description" :
3912
+ """This group is optional.""",
3913
+ },
3914
+ "lispMIBMapResolverGroup" : {
3915
+ "nodetype" : "optional",
3916
+ "module" : "LISP-MIB",
3917
+ "description" :
3918
+ """This group is optional.""",
3919
+ },
3920
+ "lispMIBEtrExtendedGroup" : {
3921
+ "nodetype" : "optional",
3922
+ "module" : "LISP-MIB",
3923
+ "description" :
3924
+ """This group is optional.""",
3925
+ },
3926
+ "lispMIBItrExtendedGroup" : {
3927
+ "nodetype" : "optional",
3928
+ "module" : "LISP-MIB",
3929
+ "description" :
3930
+ """This group is optional.""",
3931
+ },
3932
+ "lispMIBMapServerExtendedGroup" : {
3933
+ "nodetype" : "optional",
3934
+ "module" : "LISP-MIB",
3935
+ "description" :
3936
+ """This group is optional.""",
3937
+ },
3938
+ "lispMIBTuningParametersGroup" : {
3939
+ "nodetype" : "optional",
3940
+ "module" : "LISP-MIB",
3941
+ "description" :
3942
+ """This group is optional.""",
3943
+ },
3944
+ "lispMIBEncapStatisticsGroup" : {
3945
+ "nodetype" : "optional",
3946
+ "module" : "LISP-MIB",
3947
+ "description" :
3948
+ """This group is optional.""",
3949
+ },
3950
+ "lispMIBDecapStatisticsGroup" : {
3951
+ "nodetype" : "optional",
3952
+ "module" : "LISP-MIB",
3953
+ "description" :
3954
+ """This group is optional.""",
3955
+ },
3956
+ "lispMIBDiagnosticsGroup" : {
3957
+ "nodetype" : "optional",
3958
+ "module" : "LISP-MIB",
3959
+ "description" :
3960
+ """This group is optional.""",
3961
+ },
3962
+ "lispMIBVrfGroup" : {
3963
+ "nodetype" : "optional",
3964
+ "module" : "LISP-MIB",
3965
+ "description" :
3966
+ """This group is optional.""",
3967
+ },
3968
+ }, # requires
3969
+ }, # compliance
3970
+ "lispMIBComplianceMapResolver" : {
3971
+ "nodetype" : "compliance",
3972
+ "moduleName" : "LISP-MIB",
3973
+ "oid" : "1.3.6.1.2.1.220.2.1.6",
3974
+ "status" : "current",
3975
+ "description" :
3976
+ """The compliance statement for LISP Map Resolvers. It
3977
+ conveys whether the device supports the Map Resolver
3978
+ feature, and, if so, the relevant state associated
3979
+ with that feature.""",
3980
+ "requires" : {
3981
+ "lispMIBMapResolverGroup" : {
3982
+ "nodetype" : "mandatory",
3983
+ "module" : "LISP-MIB"
3984
+ },
3985
+ "lispMIBEtrGroup" : {
3986
+ "nodetype" : "optional",
3987
+ "module" : "LISP-MIB",
3988
+ "description" :
3989
+ """This group is optional.""",
3990
+ },
3991
+ "lispMIBItrGroup" : {
3992
+ "nodetype" : "optional",
3993
+ "module" : "LISP-MIB",
3994
+ "description" :
3995
+ """This group is optional.""",
3996
+ },
3997
+ "lispMIBPetrGroup" : {
3998
+ "nodetype" : "optional",
3999
+ "module" : "LISP-MIB",
4000
+ "description" :
4001
+ """This group is optional.""",
4002
+ },
4003
+ "lispMIBPitrGroup" : {
4004
+ "nodetype" : "optional",
4005
+ "module" : "LISP-MIB",
4006
+ "description" :
4007
+ """This group is optional.""",
4008
+ },
4009
+ "lispMIBMapServerGroup" : {
4010
+ "nodetype" : "optional",
4011
+ "module" : "LISP-MIB",
4012
+ "description" :
4013
+ """This group is optional.""",
4014
+ },
4015
+ "lispMIBEtrExtendedGroup" : {
4016
+ "nodetype" : "optional",
4017
+ "module" : "LISP-MIB",
4018
+ "description" :
4019
+ """This group is optional.""",
4020
+ },
4021
+ "lispMIBItrExtendedGroup" : {
4022
+ "nodetype" : "optional",
4023
+ "module" : "LISP-MIB",
4024
+ "description" :
4025
+ """This group is optional.""",
4026
+ },
4027
+ "lispMIBMapServerExtendedGroup" : {
4028
+ "nodetype" : "optional",
4029
+ "module" : "LISP-MIB",
4030
+ "description" :
4031
+ """This group is optional.""",
4032
+ },
4033
+ "lispMIBTuningParametersGroup" : {
4034
+ "nodetype" : "optional",
4035
+ "module" : "LISP-MIB",
4036
+ "description" :
4037
+ """This group is optional.""",
4038
+ },
4039
+ "lispMIBEncapStatisticsGroup" : {
4040
+ "nodetype" : "optional",
4041
+ "module" : "LISP-MIB",
4042
+ "description" :
4043
+ """This group is optional.""",
4044
+ },
4045
+ "lispMIBDecapStatisticsGroup" : {
4046
+ "nodetype" : "optional",
4047
+ "module" : "LISP-MIB",
4048
+ "description" :
4049
+ """This group is optional.""",
4050
+ },
4051
+ "lispMIBDiagnosticsGroup" : {
4052
+ "nodetype" : "optional",
4053
+ "module" : "LISP-MIB",
4054
+ "description" :
4055
+ """This group is optional.""",
4056
+ },
4057
+ "lispMIBVrfGroup" : {
4058
+ "nodetype" : "optional",
4059
+ "module" : "LISP-MIB",
4060
+ "description" :
4061
+ """This group is optional.""",
4062
+ },
4063
+ }, # requires
4064
+ }, # compliance
4065
+ }, # compliances
4066
+
4067
+ }