LISP-MIB
- Registered at
- 1.3.6.1.2.1.220
- Last updated
- 2013-10-21 00:00
- Organization
- IETF Locator/ID Separation Protocol (LISP) Working Group
- Revisions
- 2013-10-21 00:00
- Namespace
- standard
- Source file
LISP-MIB- Digest
sha256:e53ae6d39e9ad3f620b7bd2ba6d2d8922c3a97ff7b12d8d412460e55dc95c07f
Description
This MIB module contains managed objects to support monitoring devices that support the Locator/ID Separation Protocol (LISP). Copyright (c) 2013 IETF Trust and the persons identified as authors of the code. All rights reserved. Redistribution and use in source and binary forms, with or without modification, is permitted pursuant to, and subject to the license terms contained in, the Simplified BSD License set forth in Section 4.c of the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info).
Contact
Email: lisp@ietf.org WG charter: http://datatracker.ietf.org/wg/lisp/charter/
Imports
| From | Symbols |
|---|---|
| IANA-ADDRESS-FAMILY-NUMBERS-MIB | AddressFamilyNumbers |
| MPLS-L3VPN-STD-MIB | MplsL3VpnName |
| SNMPv2-CONF | MODULE-COMPLIANCE, NOTIFICATION-GROUP, OBJECT-GROUP |
| SNMPv2-SMI | Counter64, Integer32, MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-IDENTITY, OBJECT-TYPE, TimeTicks, Unsigned32, iso, mib-2 |
| SNMPv2-TC | DisplayString, TEXTUAL-CONVENTION, TimeStamp, TruthValue |
Imported by
1 module(s) in this corpus import this one.
Load order
Every file a consumer needs in order to load this module, dependencies first.
IANA-ADDRESS-FAMILY-NUMBERS-MIB IANA-RTPROTO-MIB IANAifType-MIB IF-MIB INET-ADDRESS-MIB LISP-MIB MPLS-L3VPN-STD-MIB MPLS-LSR-STD-MIB MPLS-TC-STD-MIB SNMP-FRAMEWORK-MIB SNMPv2-CONF SNMPv2-MIB SNMPv2-SMI SNMPv2-TC VPN-TC-STD-MIB
Textual conventions
| Name | OID | Syntax | Access | Status |
|---|---|---|---|---|
| LispAddressType TEXTUAL-CONVENTION LISP architecture can be applied to a wide variety of address-families. This textual-convention is a generalization for representing addresses belonging to those address-families. For convenience, this document refers to any such address as a LISP address. LispAddressType textual-convention consists of the following four-tuple: 1. IANA Address Family Number: A field of length 2 octets, whose value is of the form following the assigned AddressFamilyNumbers textual-convention described in IANA-ADDRESS-FAMILY-NUMBERS-MIB DEFINITIONS, available from http://www.iana.org/assignments/ianaaddressfamilynumbers-mib. The enumerations are also listed in [IANA]. Note that this list of address family numbers is maintained by IANA. 2. Length of LISP address: A field of length 1 octet, whose value indicates the octet-length of the next (third) field of this LispAddressType four-tuple. 3. LISP address: A field of variable length as indicated in the previous (second) field, whose value is an address of the IANA Address Family indicated in the first field of this LispAddressType four-tuple. Note that any of the IANA Address Families can be represented. Particularly when the address family is LISP Canonical Address Format (LCAF) with IANA-assigned Address Family Number 16387, then the first octet of this field indicates the LCAF type, and the rest of this field is same as the encoding format of the LISP Canonical Address after the length field, as defined in LCAF document. 4. Mask-length of address: A field of length 1 octet, whose value is the mask-length to be applied to the LISP address specified in the previous (third) field. To illustrate the use of this object, consider the LISP MIB Object below titled lispMapCacheEntry. This object begins with the following entities: lispMapCacheEntry ::= SEQUENCE { lispMapCacheEidLength INTEGER, lispMapCacheEid LispAddressType, ... [skip] ... Example 1: Suppose that the IPv4 EID-Prefix stored is 192.0.2.0/24. In this case, the values within lispMapCacheEntry would be: lispMapCacheEidLength = 8 lispMapCacheEid = 1, 4, 192.0.2.0, 24 ... [skip] ... where 8 is the total length in octets of the next object (lispMapCacheEID of type LispAddressType). Then, the value 1 indicates the IPv4 AF (per the IANA-ADDRESS-FAMILY-NUMBERS-MIB), the value 4 indicates that the AF is 4 octets in length, 192.0.2.0 is the IPv4 address, and the value 24 is the mask-length in bits. Note that the lispMapCacheEidLength value of 8 is used to compute the length of the fourth (last) field in lispMapCacheEid to be 1 octet -- as computed by 8 - (2 + 1 + 4) = 1. Example 2: Suppose that the IPv6 EID-Prefix stored is 2001:db8:a::/48. In this case, the values within lispMapCacheEntry would be: lispMapCacheEidLength = 20 lispMapCacheEid = 2, 16, 2001:db8:a::, 48 ... [skip] ... where 20 is the total length in octets of the next object (lispMapCacheEID of type LispAddressType). Then, the value 2 indicates the IPv6 AF (per the IANA-ADDRESS-FAMILY-NUMBERS-MIB), the value 16 indicates that the AF is 16 octets in length, 2001:db8:a:: is the IPv6 address, and the value 48 is the mask-length in bits. Note that the lispMapCacheEidLength value of 20 is used to compute the length of the fourth (last) field in lispMapCacheEid to be 1 octet -- as computed by 20 - (2 + 1 + 16) = 1. Example 3: As an example where LCAF is used, suppose that the IPv4 EID-Prefix stored is 192.0.2.0/24 and it is part of LISP Instance ID 101. In this case, the values within lispMapCacheEntry would be: lispMapCacheEidLength = 11 lispMapCacheEid = 16387, 7, 2, 101, 1, 192.0.2.0, 24 ... [skip] ... where 11 is the total length in octets of the next object (lispMapCacheEID of type LispAddressType). Then, the value 16387 indicates the LCAF AF (see the IANA-ADDRESS-FAMILY-NUMBERS-MIB), the value 7 indicates that the LCAF AF is 7 octets in length in this case, 2 indicates that LCAF Type 2 encoding is used (see the LCAF document), 101 gives the Instance ID, 1 gives the AFI (per the IANA-ADDRESS-FAMILY-NUMBERS-MIB) for an IPv4 address, 192.0.2.0 is the IPv4 address, and 24 is the mask-length in bits. Note that the lispMapCacheEidLength value of 11 octets is used to compute the length of the last field in lispMapCacheEid to be 1 octet -- as computed by 11 - (2 + 1 + 1 + 1 + 1 + 4) = 1. Note: all LISP header formats and locations of specific flags, bits, and fields are as given in the base LISP references of RFC 6830, RFC 6832, and RFC 6833. | current |
Objects
| Name | OID | Syntax | Access | Status |
|---|---|---|---|---|
| lispObjects OBJECT-IDENTITY | 1.3.6.1.2.1.220.1 | |||
| lispFeaturesTable OBJECT-TYPE This table represents the ON/OFF status of the various LISP features that can be enabled on LISP devices. | 1.3.6.1.2.1.220.1.1 | not-accessible | current | |
| lispFeaturesEntry OBJECT-TYPE An entry (conceptual row) in the lispFeaturesTable. | 1.3.6.1.2.1.220.1.1.1 | not-accessible | current | |
| lispFeaturesInstanceID OBJECT-TYPE This represents the Instance ID of the LISP header. An Instance ID in the LISP address encoding helps uniquely identify the AFI-based address space to which a given EID belongs. Its default value is 0. | 1.3.6.1.2.1.220.1.1.1.1 | Unsigned32 (0..16777215) | not-accessible | current |
| lispFeaturesAddressFamily OBJECT-TYPE The IANA Address Family Number of destination address of packets that this LISP device is enabled to process. | 1.3.6.1.2.1.220.1.1.1.2 | AddressFamilyNumbers | not-accessible | current |
| lispFeaturesItrEnabled OBJECT-TYPE Indicates the status of ITR role on this device. If this object is true, then the ITR feature is enabled. | 1.3.6.1.2.1.220.1.1.1.3 | TruthValue | read-only | current |
| lispFeaturesEtrEnabled OBJECT-TYPE Indicates the status of ETR role on this device. If this object is true, then the ETR feature is enabled. | 1.3.6.1.2.1.220.1.1.1.4 | TruthValue | read-only | current |
| lispFeaturesProxyItrEnabled OBJECT-TYPE Indicates the status of Proxy-ITR role on this device. If this object is true, then the Proxy-ITR feature is enabled. | 1.3.6.1.2.1.220.1.1.1.5 | TruthValue | read-only | current |
| lispFeaturesProxyEtrEnabled OBJECT-TYPE Indicates the status of Proxy-ETR role on this device. If this object is true, then the Proxy-ETR feature is enabled. | 1.3.6.1.2.1.220.1.1.1.6 | TruthValue | read-only | current |
| lispFeaturesMapServerEnabled OBJECT-TYPE Indicates the status of Map Server role on this device. If this object is true, then the Map-Server feature is enabled. | 1.3.6.1.2.1.220.1.1.1.7 | TruthValue | read-only | current |
| lispFeaturesMapResolverEnabled OBJECT-TYPE Indicates the status of Map Resolver role on this device. If this object is true, then Map-Resolver feature is enabled. | 1.3.6.1.2.1.220.1.1.1.8 | TruthValue | read-only | current |
| lispFeaturesMapCacheSize OBJECT-TYPE Size of EID-to-RLOC map-cache on this device. | 1.3.6.1.2.1.220.1.1.1.9 | Unsigned32 | read-only | current |
| lispFeaturesMapCacheLimit OBJECT-TYPE Maximum permissible entries in EID-to-RLOC map-cache on this device. | 1.3.6.1.2.1.220.1.1.1.10 | Unsigned32 | read-only | current |
| lispFeaturesEtrMapCacheTtl OBJECT-TYPE The stored Record TTL of the EID-to-RLOC map record in the map-cache. | 1.3.6.1.2.1.220.1.1.1.11 | Unsigned32 | read-only | current |
| lispFeaturesRlocProbeEnabled OBJECT-TYPE Indicates the status of RLOC-Probing feature on this device. If this object is true, then this feature is enabled. | 1.3.6.1.2.1.220.1.1.1.12 | TruthValue | read-only | current |
| lispFeaturesEtrAcceptMapDataEnabled OBJECT-TYPE Indicates the status of accepting piggybacked mapping data received in a map-request on this device. If this object is true, then this device accepts piggybacked mapping data. | 1.3.6.1.2.1.220.1.1.1.13 | TruthValue | read-only | current |
| lispFeaturesEtrAcceptMapDataVerifyEnabled OBJECT-TYPE Indicates the status of verifying accepted piggybacked mapping data received in a map-request on this device. If this object is true, then this device verifies accepted piggybacked mapping data. | 1.3.6.1.2.1.220.1.1.1.14 | TruthValue | read-only | current |
| lispFeaturesRouterTimeStamp OBJECT-TYPE The value of sysUpTime at which the LISP feature was enabled on this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.1.1.15 | TimeStamp | read-only | current |
| lispIidToVrfTable OBJECT-TYPE This table represents the mapping of a LISP Instance ID to a VRF. | 1.3.6.1.2.1.220.1.2 | not-accessible | current | |
| lispIidToVrfEntry OBJECT-TYPE An entry (conceptual row) in the lispIidToVrfTable. | 1.3.6.1.2.1.220.1.2.1 | not-accessible | current | |
| lispIidToVrfName OBJECT-TYPE The identifier for each VPN that is mapped to the given LISP Instance ID. | 1.3.6.1.2.1.220.1.2.1.1 | MplsL3VpnName | read-only | current |
| lispGlobalStatsTable OBJECT-TYPE This table provides global statistics for a given Instance ID per address family on a LISP device. | 1.3.6.1.2.1.220.1.3 | not-accessible | current | |
| lispGlobalStatsEntry OBJECT-TYPE An entry (conceptual row) in the lispGlobalStatsTable. | 1.3.6.1.2.1.220.1.3.1 | not-accessible | current | |
| lispGlobalStatsMapRequestsIn OBJECT-TYPE Total number of map requests received by this device for any EID-Prefix of the given address family and Instance ID. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispFeaturesRouterTimeStamp. | 1.3.6.1.2.1.220.1.3.1.1 | Counter64 | read-only | current |
| lispGlobalStatsMapRequestsOut OBJECT-TYPE Total number of map requests sent by this device for any EID-Prefix of the given address family and Instance ID. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispFeaturesRouterTimeStamp. | 1.3.6.1.2.1.220.1.3.1.2 | Counter64 | read-only | current |
| lispGlobalStatsMapRepliesIn OBJECT-TYPE Total number of map replies received by this device for any EID-Prefix of the given address family and Instance ID. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispFeaturesRouterTimeStamp. | 1.3.6.1.2.1.220.1.3.1.3 | Counter64 | read-only | current |
| lispGlobalStatsMapRepliesOut OBJECT-TYPE Total number of map replies sent by this device for any EID prefix of the given address family and Instance ID. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispFeaturesRouterTimeStamp. | 1.3.6.1.2.1.220.1.3.1.4 | Counter64 | read-only | current |
| lispGlobalStatsMapRegistersIn OBJECT-TYPE Total number of map registers received by this device for any EID-Prefix of the given address family and Instance ID. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispFeaturesRouterTimeStamp. | 1.3.6.1.2.1.220.1.3.1.5 | Counter64 | read-only | current |
| lispGlobalStatsMapRegistersOut OBJECT-TYPE Total number of map registers sent by this device for any EID-Prefix of the given address family and Instance ID. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispFeaturesRouterTimeStamp. | 1.3.6.1.2.1.220.1.3.1.6 | Counter64 | read-only | current |
| lispMappingDatabaseTable OBJECT-TYPE This table represents the EID-to-RLOC mapping database that contains the EID-Prefix to RLOC mappings configured on an ETR. This table represents all such mappings for the given LISP site to which this device belongs. | 1.3.6.1.2.1.220.1.4 | not-accessible | current | |
| lispMappingDatabaseEntry OBJECT-TYPE An entry (conceptual row) in lispMappingDatabaseTable. | 1.3.6.1.2.1.220.1.4.1 | not-accessible | current | |
| lispMappingDatabaseEidLength OBJECT-TYPE This object gives the octet-length of lispMappingDatabaseEid. | 1.3.6.1.2.1.220.1.4.1.1 | Integer32 (5..39) | not-accessible | current |
| lispMappingDatabaseEid OBJECT-TYPE The EID-Prefix of the mapping database. | 1.3.6.1.2.1.220.1.4.1.2 | LispAddressType | not-accessible | current |
| lispMappingDatabaseLsb OBJECT-TYPE The locator status bits for this EID-Prefix. | 1.3.6.1.2.1.220.1.4.1.3 | Unsigned32 (0..4294967295) | read-only | current |
| lispMappingDatabaseEidPartitioned OBJECT-TYPE Indicates if this device is partitioned from the site that contains this EID-Prefix. If this object is true, then it means this device is partitioned from the site. | 1.3.6.1.2.1.220.1.4.1.4 | TruthValue | read-only | current |
| lispMappingDatabaseTimeStamp OBJECT-TYPE The value of sysUpTime at which the EID Prefix information represented by this mapping database entry was configured on this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.4.1.5 | TimeStamp | read-only | current |
| lispMappingDatabaseDecapOctets OBJECT-TYPE The number of octets, after decapsulation, of LISP packets that were decapsulated by this device addressed to a host within this EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispMappingDatabaseTimeStamp. | 1.3.6.1.2.1.220.1.4.1.6 | Counter64 | read-only | current |
| lispMappingDatabaseDecapPackets OBJECT-TYPE The number of LISP packets that were decapsulated by this device addressed to a host within this EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispMappingDatabaseTimeStamp. | 1.3.6.1.2.1.220.1.4.1.7 | Counter64 | read-only | current |
| lispMappingDatabaseEncapOctets OBJECT-TYPE The number of octets, before encapsulation, of LISP packets that were encapsulated by this device, whose inner header source address matched this EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispMappingDatabaseTimeStamp. | 1.3.6.1.2.1.220.1.4.1.8 | Counter64 | read-only | current |
| lispMappingDatabaseEncapPackets OBJECT-TYPE The number of LISP packets that were encapsulated by this device whose inner header source address matched this EID prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of LISP features being removed, which can be detected by observing the value of lispMappingDatabaseTimeStamp. | 1.3.6.1.2.1.220.1.4.1.9 | Counter64 | read-only | current |
| lispMappingDatabaseLocatorTable OBJECT-TYPE This table represents the set of routing locators per EID prefix contained in the EID-to-RLOC database configured on this ETR. | 1.3.6.1.2.1.220.1.5 | not-accessible | current | |
| lispMappingDatabaseLocatorEntry OBJECT-TYPE An entry (conceptual row) in the lispMappingDatabaseLocatorTable. | 1.3.6.1.2.1.220.1.5.1 | not-accessible | current | |
| lispMappingDatabaseLocatorRlocLength OBJECT-TYPE This object is used to get the octet-length of lispMappingDatabaseLocatorRloc. | 1.3.6.1.2.1.220.1.5.1.1 | Integer32 (5..39) | not-accessible | current |
| lispMappingDatabaseLocatorRloc OBJECT-TYPE This object is a locator for the given EID-Prefix in the mapping database. | 1.3.6.1.2.1.220.1.5.1.2 | LispAddressType | not-accessible | current |
| lispMappingDatabaseLocatorRlocPriority OBJECT-TYPE The unicast priority of the RLOC. | 1.3.6.1.2.1.220.1.5.1.3 | Integer32 (0..255) | read-only | current |
| lispMappingDatabaseLocatorRlocWeight OBJECT-TYPE The unicast weight of the RLOC. | 1.3.6.1.2.1.220.1.5.1.4 | Integer32 (0..100) | read-only | current |
| lispMappingDatabaseLocatorRlocMPriority OBJECT-TYPE The multicast priority of the RLOC. | 1.3.6.1.2.1.220.1.5.1.5 | Integer32 (0..255) | read-only | current |
| lispMappingDatabaseLocatorRlocMWeight OBJECT-TYPE The multicast weight of the RLOC. | 1.3.6.1.2.1.220.1.5.1.6 | Integer32 (0..100) | read-only | current |
| lispMappingDatabaseLocatorRlocState OBJECT-TYPE The state of this RLOC as per this device. (1 = RLOC is up; 2 = RLOC is down; 3 = RLOC is unreachable). | 1.3.6.1.2.1.220.1.5.1.7 | INTEGER {up(1), down(2), unreachable(3)} | read-only | current |
| lispMappingDatabaseLocatorRlocLocal OBJECT-TYPE Indicates whether the RLOC is local to this device (or remote, meaning local to another device in the same LISP site). (1 = RLOC is an address on this device; 2 = RLOC is an address on another device). | 1.3.6.1.2.1.220.1.5.1.8 | INTEGER {siteself(1), sitelocal(2)} | read-only | current |
| lispMappingDatabaseLocatorRlocTimeStamp OBJECT-TYPE The value of sysUpTime at which the RLOC of the EID Prefix represented by this mapping database entry was configured on this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.5.1.9 | TimeStamp | read-only | current |
| lispMappingDatabaseLocatorRlocDecapOctets OBJECT-TYPE The number of octets of LISP packets that were addressed to this RLOC of the EID-Prefix and were decapsulated. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of database mappings getting reconfigured or RLOC status changes, which can be detected by observing the value of lispMappingDatabaseLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.5.1.10 | Counter64 | read-only | current |
| lispMappingDatabaseLocatorRlocDecapPackets OBJECT-TYPE The number of LISP packets that were addressed to this RLOC of the EID-Prefix and were decapsulated. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of database mappings getting reconfigured or RLOC status changes, which can be detected by observing the value of lispMappingDatabaseLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.5.1.11 | Counter64 | read-only | current |
| lispMappingDatabaseLocatorRlocEncapOctets OBJECT-TYPE The number of octets of LISP packets that were encapsulated by this device using this RLOC address as the source, and that were sourced by an address of this EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of database mappings getting reconfigured or RLOC status changes, which can be detected by observing the value of lispMappingDatabaseLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.5.1.12 | Counter64 | read-only | current |
| lispMappingDatabaseLocatorRlocEncapPackets OBJECT-TYPE The number of LISP packets that were encapsulated by this device using this RLOC address as the source and that were sourced by an address of this EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of database mappings getting reconfigured or RLOC status changes, which can be detected by observing the value of lispMappingDatabaseLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.5.1.13 | Counter64 | read-only | current |
| lispMapCacheTable OBJECT-TYPE This table represents the short-lived, on-demand table on an ITR that stores, tracks, and is responsible for timing-out and otherwise validating EID-to-RLOC mappings. | 1.3.6.1.2.1.220.1.6 | not-accessible | current | |
| lispMapCacheEntry OBJECT-TYPE An entry (conceptual row) in the lispMapCacheTable. | 1.3.6.1.2.1.220.1.6.1 | not-accessible | current | |
| lispMapCacheEidLength OBJECT-TYPE This object is used to get the octet-length of lispMapCacheEid. | 1.3.6.1.2.1.220.1.6.1.1 | Integer32 (5..39) | not-accessible | current |
| lispMapCacheEid OBJECT-TYPE The EID-Prefix in the mapping cache. | 1.3.6.1.2.1.220.1.6.1.2 | LispAddressType | not-accessible | current |
| lispMapCacheEidTimeStamp OBJECT-TYPE The value of sysUpTime at which the EID Prefix information represented by this entry was learned by this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.6.1.3 | TimeStamp | read-only | current |
| lispMapCacheEidExpiryTime OBJECT-TYPE The time remaining before the ITR times-out this EID-Prefix. | 1.3.6.1.2.1.220.1.6.1.4 | TimeTicks | read-only | current |
| lispMapCacheEidState OBJECT-TYPE This object is used to indicate the activity of this EID prefix. If this object is true, then it means this EID prefix is seeing activity. | 1.3.6.1.2.1.220.1.6.1.5 | TruthValue | read-only | current |
| lispMapCacheEidAuthoritative OBJECT-TYPE This object is used to indicate whether the EID-Prefix was installed by an authoritative map-reply. If this object is true, then it means this EID-Prefix was installed by an authoritative map-reply. | 1.3.6.1.2.1.220.1.6.1.6 | TruthValue | read-only | current |
| lispMapCacheEidDecapOctets OBJECT-TYPE The number of octets of LISP packets that were decapsulated by this device and were sourced from a remote host within this EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of cache being removed and replaced, which can be detected by observing the value of lispMapCacheEidTimeStamp. | 1.3.6.1.2.1.220.1.6.1.7 | Counter64 | read-only | current |
| lispMapCacheEidDecapPackets OBJECT-TYPE The number of LISP packets that were decapsulated by this device and were sourced from a remote host within this EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of cache being removed and replaced, which can be detected by observing the value of lispMapCacheEidTimeStamp. | 1.3.6.1.2.1.220.1.6.1.8 | Counter64 | read-only | current |
| lispMapCacheEidEncapOctets OBJECT-TYPE The number of octets of LISP packets that were encapsulated by this device using the given EID-Prefix in the map-cache. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of cache being removed and replaced, which can be detected by observing the value of lispMapCacheEidTimeStamp. | 1.3.6.1.2.1.220.1.6.1.9 | Counter64 | read-only | current |
| lispMapCacheEidEncapPackets OBJECT-TYPE The number of LISP packets that were encapsulated by this device using the given EID-Prefix in the map-cache. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of cache being removed and replaced, which can be detected by observing the value of lispMapCacheEidTimeStamp. | 1.3.6.1.2.1.220.1.6.1.10 | Counter64 | read-only | current |
| lispMapCacheLocatorTable OBJECT-TYPE This table represents the set of locators per EID-Prefix contained in the map-cache table of an ITR. | 1.3.6.1.2.1.220.1.7 | not-accessible | current | |
| lispMapCacheLocatorEntry OBJECT-TYPE An entry (conceptual row) in the lispMapCacheLocatorTable. | 1.3.6.1.2.1.220.1.7.1 | not-accessible | current | |
| lispMapCacheLocatorRlocLength OBJECT-TYPE This object is used to get the octet-length of lispMapCacheLocatorRloc. | 1.3.6.1.2.1.220.1.7.1.1 | Integer32 (5..39) | not-accessible | current |
| lispMapCacheLocatorRloc OBJECT-TYPE The locator for the EID-Prefix in the mapping cache. | 1.3.6.1.2.1.220.1.7.1.2 | LispAddressType | not-accessible | current |
| lispMapCacheLocatorRlocPriority OBJECT-TYPE The unicast priority of the RLOC for this EID-Prefix (0-255); lower is more preferred. | 1.3.6.1.2.1.220.1.7.1.3 | Integer32 (0..255) | read-only | current |
| lispMapCacheLocatorRlocWeight OBJECT-TYPE The unicast weight of the RLOC for this EID-Prefix (0 - 100) percentage. | 1.3.6.1.2.1.220.1.7.1.4 | Integer32 (0..100) | read-only | current |
| lispMapCacheLocatorRlocMPriority OBJECT-TYPE The multicast priority of the RLOC for this EID-Prefix (0-255); lower is more preferred. | 1.3.6.1.2.1.220.1.7.1.5 | Integer32 (0..255) | read-only | current |
| lispMapCacheLocatorRlocMWeight OBJECT-TYPE The multicast weight of the RLOC for this EID-Prefix (0 - 100) percentage. | 1.3.6.1.2.1.220.1.7.1.6 | Integer32 (0..100) | read-only | current |
| lispMapCacheLocatorRlocState OBJECT-TYPE The state of this RLOC as per this device (1 = RLOC is up; 2 = RLOC is down; 3 = RLOC is unreachable). | 1.3.6.1.2.1.220.1.7.1.7 | INTEGER {up(1), down(2), unreachable(3)} | read-only | current |
| lispMapCacheLocatorRlocTimeStamp OBJECT-TYPE The value of sysUpTime at which the RLOC of EID-Prefix information represented by this entry was learned by this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.7.1.8 | TimeStamp | read-only | current |
| lispMapCacheLocatorRlocLastPriorityChange OBJECT-TYPE Time elapsed since the last change of the unicast priority of the RLOC for this EID-Prefix. Note that this is independent of lispMapCacheLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.7.1.9 | TimeTicks | read-only | current |
| lispMapCacheLocatorRlocLastWeightChange OBJECT-TYPE Time elapsed since the last change of the unicast weight of the RLOC for this EID-Prefix. Note that this is independent of lispMapCacheLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.7.1.10 | TimeTicks | read-only | current |
| lispMapCacheLocatorRlocLastMPriorityChange OBJECT-TYPE Time since the last change of the multicast priority of the RLOC for this EID-Prefix. | 1.3.6.1.2.1.220.1.7.1.11 | TimeTicks | read-only | current |
| lispMapCacheLocatorRlocLastMWeightChange OBJECT-TYPE Time since the last change of the multicast weight of the RLOC for this EID-Prefix. | 1.3.6.1.2.1.220.1.7.1.12 | TimeTicks | read-only | current |
| lispMapCacheLocatorRlocLastStateChange OBJECT-TYPE Time since the last change of the up/down state of the RLOC for this EID-Prefix. | 1.3.6.1.2.1.220.1.7.1.13 | TimeTicks | read-only | current |
| lispMapCacheLocatorRlocRtt OBJECT-TYPE Round-trip time of RLOC probe and map-reply for this RLOC address for this prefix. | 1.3.6.1.2.1.220.1.7.1.14 | TimeTicks | read-only | current |
| lispMapCacheLocatorRlocDecapOctets OBJECT-TYPE The number of octets of LISP packets that were decapsulated by this device and were sourced from a remote host within this EID-Prefix and were encapsulated for this RLOC. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of RLOC of cache being removed and replaced, which can be detected by observing the value of lispMapCacheLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.7.1.15 | Counter64 | read-only | current |
| lispMapCacheLocatorRlocDecapPackets OBJECT-TYPE The number of LISP packets that were decapsulated by this device and were sourced from a remote host within this EID-Prefix and were encapsulated for this RLOC. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of RLOC of cache being removed and replaced, which can be detected by observing the value of lispMapCacheLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.7.1.16 | Counter64 | read-only | current |
| lispMapCacheLocatorRlocEncapOctets OBJECT-TYPE The number of octets of LISP packets that matched this EID-Prefix and were encapsulated using this RLOC address. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of RLOC of cache being removed and replaced, which can be detected by observing the value of lispMapCacheLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.7.1.17 | Counter64 | read-only | current |
| lispMapCacheLocatorRlocEncapPackets OBJECT-TYPE The number of LISP packets that matched this EID-Prefix and were encapsulated using this RLOC address. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of RLOC of cache being removed and replaced, which can be detected by observing the value of lispMapCacheLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.7.1.18 | Counter64 | read-only | current |
| lispConfiguredLocatorTable OBJECT-TYPE This table represents the set of routing locators configured on this device. Note that the addresses configured by Proxy-ITR are treated as routing locators and therefore can be part of this table. | 1.3.6.1.2.1.220.1.8 | not-accessible | current | |
| lispConfiguredLocatorEntry OBJECT-TYPE An entry (conceptual row) in the lispConfiguredLocatorTable. | 1.3.6.1.2.1.220.1.8.1 | not-accessible | current | |
| lispConfiguredLocatorRlocLength OBJECT-TYPE This object is used to get the octet-length of lispConfiguredLocatorRloc. | 1.3.6.1.2.1.220.1.8.1.1 | Integer32 (5..39) | not-accessible | current |
| lispConfiguredLocatorRloc OBJECT-TYPE This object is an RLOC address configured on this device. It can be an RLOC that is local to this device or can be an RLOC that belongs to another ETR within the same site. Proxy-ITR address is treated as an RLOC. | 1.3.6.1.2.1.220.1.8.1.2 | LispAddressType | not-accessible | current |
| lispConfiguredLocatorRlocState OBJECT-TYPE The state of this RLOC as per this device. (1 = RLOC is up; 2 = RLOC is down; 3 = RLOC is unreachable). | 1.3.6.1.2.1.220.1.8.1.3 | INTEGER {up(1), down(2), unreachable(3)} | read-only | current |
| lispConfiguredLocatorRlocLocal OBJECT-TYPE Indicates whether the RLOC is local to this device (or remote, meaning local to another device in the same LISP site). (1 = RLOC is an address on this device; 2 = RLOC is an address on another device). | 1.3.6.1.2.1.220.1.8.1.4 | INTEGER {siteself(1), sitelocal(2)} | read-only | current |
| lispConfiguredLocatorRlocTimeStamp OBJECT-TYPE The value of sysUpTime at which the RLOC was configured on this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.8.1.5 | TimeStamp | read-only | current |
| lispConfiguredLocatorRlocDecapOctets OBJECT-TYPE The number of octets of LISP packets that were addressed to this RLOC and were decapsulated. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of configured RLOC being removed and replaced, which can be detected by observing the value of lispConfiguredLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.8.1.6 | Counter64 | read-only | current |
| lispConfiguredLocatorRlocDecapPackets OBJECT-TYPE The number of LISP packets that were addressed to this RLOC and were decapsulated. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of configured RLOC being removed and replaced, which can be detected by observing the value of lispConfiguredLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.8.1.7 | Counter64 | read-only | current |
| lispConfiguredLocatorRlocEncapOctets OBJECT-TYPE The number of octets of LISP packets that were encapsulated by this device using this RLOC address as the source. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of configured RLOC being removed and replaced, which can be detected by observing the value of lispConfiguredLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.8.1.8 | Counter64 | read-only | current |
| lispConfiguredLocatorRlocEncapPackets OBJECT-TYPE The number of LISP packets that were encapsulated by this device using this RLOC address as the source. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of configured RLOC being removed and replaced, which can be detected by observing the value of lispConfiguredLocatorRlocTimeStamp. | 1.3.6.1.2.1.220.1.8.1.9 | Counter64 | read-only | current |
| lispEidRegistrationTable OBJECT-TYPE This table provides the properties of each LISP EID-Prefix that is registered with this device when configured to be a Map-Server. | 1.3.6.1.2.1.220.1.9 | not-accessible | current | |
| lispEidRegistrationEntry OBJECT-TYPE An entry (conceptual row) in the lispEidRegistrationTable. | 1.3.6.1.2.1.220.1.9.1 | not-accessible | current | |
| lispEidRegistrationEidLength OBJECT-TYPE This object is used to get the octet-length of lispEidRegistrationEid. | 1.3.6.1.2.1.220.1.9.1.1 | Integer32 (5..39) | not-accessible | current |
| lispEidRegistrationEid OBJECT-TYPE The EID-Prefix that is being registered. | 1.3.6.1.2.1.220.1.9.1.2 | LispAddressType | not-accessible | current |
| lispEidRegistrationSiteName OBJECT-TYPE Site name used by a Map-Server to distinguish different LISP sites that are registering with it. | 1.3.6.1.2.1.220.1.9.1.3 | OCTET STRING (SIZE(0..63)) | read-only | current |
| lispEidRegistrationSiteDescription OBJECT-TYPE Description for a site name used by a Map-Server. The EID prefix that is being registered belongs to this site. | 1.3.6.1.2.1.220.1.9.1.4 | OCTET STRING (SIZE(0..255)) | read-only | current |
| lispEidRegistrationIsRegistered OBJECT-TYPE Indicates the registration status of the given EID-Prefix. If this object is true, then it means the EID-Prefix is registered. The value false implies the EID-Prefix is not registered with the Map Server. There are multiple scenarios when this could happen like authentication failures, routing problems, misconfigs to name a few. | 1.3.6.1.2.1.220.1.9.1.5 | TruthValue | read-only | current |
| lispEidRegistrationFirstTimeStamp OBJECT-TYPE The value of sysUpTime at which the first valid register message for the EID Prefix information represented by this entry was received by this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.9.1.6 | TimeStamp | read-only | current |
| lispEidRegistrationLastTimeStamp OBJECT-TYPE The value of sysUpTime at which the last valid register message for the EID Prefix information represented by this entry was received by this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.9.1.7 | TimeStamp | read-only | current |
| lispEidRegistrationLastRegisterSenderLength OBJECT-TYPE This object is used to get the octet-length of lispEidRegistrationLastRegisterSender, the next object. | 1.3.6.1.2.1.220.1.9.1.8 | Integer32 (5..39) | read-only | current |
| lispEidRegistrationLastRegisterSender OBJECT-TYPE Source address of the last valid register message for the given EID-Prefix that was received by this device. | 1.3.6.1.2.1.220.1.9.1.9 | LispAddressType | read-only | current |
| lispEidRegistrationAuthenticationErrors OBJECT-TYPE Count of total authentication errors of map-registers received for the given EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of site config changes, which can be detected by observing the value of lispEidRegistrationFirstTimeStamp. | 1.3.6.1.2.1.220.1.9.1.10 | Counter64 | read-only | current |
| lispEidRegistrationRlocsMismatch OBJECT-TYPE Count of total map-registers received that had at least one RLOC that was not in the allowed list of RLOCs for the given EID-Prefix. Discontinuities in this monotonically increasing value occur at reinitialization of the management system. Discontinuities can also occur as a result of site config changes, which can be detected by observing the value of lispEidRegistrationFirstTimeStamp. | 1.3.6.1.2.1.220.1.9.1.11 | Counter64 | read-only | current |
| lispEidRegistrationEtrTable OBJECT-TYPE This table provides the properties of ETRs that register the given EID-Prefix with this device when configured to be a Map-Server. | 1.3.6.1.2.1.220.1.10 | not-accessible | current | |
| lispEidRegistrationEtrEntry OBJECT-TYPE An entry (conceptual row) in the lispEidRegistrationEtrTable. | 1.3.6.1.2.1.220.1.10.1 | not-accessible | current | |
| lispEidRegistrationEtrSenderLength OBJECT-TYPE This object is used to get the octet-length of lispEidRegistrationEtrSender. | 1.3.6.1.2.1.220.1.10.1.1 | Integer32 (5..39) | not-accessible | current |
| lispEidRegistrationEtrSender OBJECT-TYPE Source address of the ETR that is sending valid register messages for this EID-Prefix to this device. | 1.3.6.1.2.1.220.1.10.1.2 | LispAddressType | not-accessible | current |
| lispEidRegistrationEtrLastTimeStamp OBJECT-TYPE The value of sysUpTime at which the last valid register message from this ETR for the EID Prefix information represented by this entry was received by this device. If this information was present at the most recent reinitialization of the local management subsystem, then this object contains a zero value. | 1.3.6.1.2.1.220.1.10.1.3 | TimeStamp | read-only | current |
| lispEidRegistrationEtrTtl OBJECT-TYPE The Record TTL of the registering ETR device for this EID-Prefix. | 1.3.6.1.2.1.220.1.10.1.4 | Unsigned32 | read-only | current |
| lispEidRegistrationEtrProxyReply OBJECT-TYPE Indicates proxy-replying status of the registering ETR for this EID-Prefix. If this object is true, then it means the Map-Server can proxy-reply. | 1.3.6.1.2.1.220.1.10.1.5 | TruthValue | read-only | current |
| lispEidRegistrationEtrWantsMapNotify OBJECT-TYPE Indicates whether the EID-Prefix wants Map-Notifications. If this object is true, then it means the EID-Prefix wants Map-Notifications. | 1.3.6.1.2.1.220.1.10.1.6 | TruthValue | read-only | current |
| lispEidRegistrationLocatorTable OBJECT-TYPE This table provides the properties of all locators per LISP site that are served by this device when configured to be a Map-Server. | 1.3.6.1.2.1.220.1.11 | not-accessible | current | |
| lispEidRegistrationLocatorEntry OBJECT-TYPE An entry (conceptual row) in the lispEidRegistrationLocatorTable. | 1.3.6.1.2.1.220.1.11.1 | not-accessible | current | |
| lispEidRegistrationLocatorRlocLength OBJECT-TYPE This object is used to get the octet-length of lispEidRegistrationLocatorRloc. | 1.3.6.1.2.1.220.1.11.1.1 | Integer32 (5..39) | not-accessible | current |
| lispEidRegistrationLocatorRloc OBJECT-TYPE The locator of the given EID-Prefix being registered by the given ETR with this device. | 1.3.6.1.2.1.220.1.11.1.2 | LispAddressType | not-accessible | current |
| lispEidRegistrationLocatorRlocState OBJECT-TYPE The cached state of this RLOC received in map-register from the ETR by the device, in the capacity of a Map-Server. Value 1 refers to up, value 2 refers to down. | 1.3.6.1.2.1.220.1.11.1.3 | INTEGER {up(1), down(2)} | read-only | current |
| lispEidRegistrationLocatorIsLocal OBJECT-TYPE Indicates if the given locator is local to the registering ETR. If this object is true, it means the locator is local. | 1.3.6.1.2.1.220.1.11.1.4 | TruthValue | read-only | current |
| lispEidRegistrationLocatorPriority OBJECT-TYPE The unicast priority of the RLOC for this EID-Prefix in the register message sent by the given ETR. | 1.3.6.1.2.1.220.1.11.1.5 | Integer32 (0..255) | read-only | current |
| lispEidRegistrationLocatorWeight OBJECT-TYPE The unicast weight of the RLOC for this EID-Prefix in the register message sent by the given ETR. | 1.3.6.1.2.1.220.1.11.1.6 | Integer32 (0..100) | read-only | current |
| lispEidRegistrationLocatorMPriority OBJECT-TYPE The multicast priority of the RLOC for this EID-Prefix in the register message sent by the given ETR. | 1.3.6.1.2.1.220.1.11.1.7 | Integer32 (0..255) | read-only | current |
| lispEidRegistrationLocatorMWeight OBJECT-TYPE The multicast weight of the RLOC for this EID-Prefix in the register message sent by the given ETR. | 1.3.6.1.2.1.220.1.11.1.8 | Integer32 (0..100) | read-only | current |
| lispUseMapServerTable OBJECT-TYPE This table provides the properties of the Map-Server(s) with which this device is configured to register. | 1.3.6.1.2.1.220.1.12 | not-accessible | current | |
| lispUseMapServerEntry OBJECT-TYPE An entry (conceptual row) in the lispUseMapServerTable. | 1.3.6.1.2.1.220.1.12.1 | not-accessible | current | |
| lispUseMapServerAddressLength OBJECT-TYPE This object is used to get the octet-length of lispUseMapServerAddress. | 1.3.6.1.2.1.220.1.12.1.1 | Integer32 (5..39) | not-accessible | current |
| lispUseMapServerAddress OBJECT-TYPE Address of a Map-Server configured on this device. | 1.3.6.1.2.1.220.1.12.1.2 | LispAddressType | not-accessible | current |
| lispUseMapServerState OBJECT-TYPE State of this Map-Server configured on this device (1 = Map-Server is up; 2 = Map-Server is down). | 1.3.6.1.2.1.220.1.12.1.3 | INTEGER {up(1), down(2), unreachable(3)} | read-only | current |
| lispUseMapResolverTable OBJECT-TYPE This table provides the properties of the Map-Resolver(s) this device is configured to use. | 1.3.6.1.2.1.220.1.13 | not-accessible | current | |
| lispUseMapResolverEntry OBJECT-TYPE An entry (conceptual row) in the lispUseMapResolverTable. | 1.3.6.1.2.1.220.1.13.1 | not-accessible | current | |
| lispUseMapResolverAddressLength OBJECT-TYPE This object is used to get the octet-length of lispUseMapResolverAddress. | 1.3.6.1.2.1.220.1.13.1.1 | Integer32 (5..39) | not-accessible | current |
| lispUseMapResolverAddress OBJECT-TYPE Address of Map-Resolver configured on this device. | 1.3.6.1.2.1.220.1.13.1.2 | LispAddressType | not-accessible | current |
| lispUseMapResolverState OBJECT-TYPE State of this Map-Resolver configured on this device (1 = Map-Resolver is up; 2 = Map-Resolver is down). | 1.3.6.1.2.1.220.1.13.1.3 | INTEGER {up(1), down(2)} | read-only | current |
| lispUseProxyEtrTable OBJECT-TYPE This table provides the properties of all Proxy ETRs that this device is configured to use. | 1.3.6.1.2.1.220.1.14 | not-accessible | current | |
| lispUseProxyEtrEntry OBJECT-TYPE An entry (conceptual row) in the lispUseProxyEtrTable. | 1.3.6.1.2.1.220.1.14.1 | not-accessible | current | |
| lispUseProxyEtrAddressLength OBJECT-TYPE This object is used to get the octet-length of lispUseProxyEtrAddress. | 1.3.6.1.2.1.220.1.14.1.1 | Integer32 (5..39) | not-accessible | current |
| lispUseProxyEtrAddress OBJECT-TYPE Address of Proxy ETR configured on this device. | 1.3.6.1.2.1.220.1.14.1.2 | LispAddressType | not-accessible | current |
| lispUseProxyEtrPriority OBJECT-TYPE The unicast priority of the PETR locator. | 1.3.6.1.2.1.220.1.14.1.3 | Integer32 (0..255) | read-only | current |
| lispUseProxyEtrWeight OBJECT-TYPE The unicast weight of the PETR locator. | 1.3.6.1.2.1.220.1.14.1.4 | Integer32 (0..100) | read-only | current |
| lispUseProxyEtrMPriority OBJECT-TYPE The multicast priority of the PETR locator. | 1.3.6.1.2.1.220.1.14.1.5 | Integer32 (0..255) | read-only | current |
| lispUseProxyEtrMWeight OBJECT-TYPE The multicast weight of the PETR locator. | 1.3.6.1.2.1.220.1.14.1.6 | Integer32 (0..100) | read-only | current |
| lispUseProxyEtrState OBJECT-TYPE State of this Proxy ETR configured on this device (0 = Proxy ETR is down; 1 = Proxy ETR is up). | 1.3.6.1.2.1.220.1.14.1.7 | INTEGER {down(0), up(1)} | read-only | current |
| lispConformance OBJECT-IDENTITY | 1.3.6.1.2.1.220.2 | |||
| lispCompliances OBJECT-IDENTITY | 1.3.6.1.2.1.220.2.1 | |||
| lispGroups OBJECT-IDENTITY | 1.3.6.1.2.1.220.2.2 |
Conformance
| Name | OID | Status |
|---|---|---|
| lispMIBComplianceEtr MODULE-COMPLIANCE The compliance statement for LISP ETRs. It conveys whether the device supports the ETR feature, and, if so, the relevant state associated with that feature. | 1.3.6.1.2.1.220.2.1.1 | current |
| lispMIBComplianceItr MODULE-COMPLIANCE The compliance statement for LISP ITRs. It conveys whether the device supports the ITR feature, and, if so, the relevant state associated with that feature. | 1.3.6.1.2.1.220.2.1.2 | current |
| lispMIBCompliancePetr MODULE-COMPLIANCE The compliance statement for LISP Proxy-ETRs. It conveys whether the device supports the Proxy-ETR feature, and, if so, the relevant state associated with that feature. | 1.3.6.1.2.1.220.2.1.3 | current |
| lispMIBCompliancePitr MODULE-COMPLIANCE The compliance statement for LISP Proxy-ITRs. It conveys whether the device supports the Proxy-ITR feature, and, if so, the relevant state associated with that feature. | 1.3.6.1.2.1.220.2.1.4 | current |
| lispMIBComplianceMapServer MODULE-COMPLIANCE The compliance statement for LISP Map Servers. It conveys whether the device supports the Map Server feature, and, if so, the relevant state associated with that feature. | 1.3.6.1.2.1.220.2.1.5 | current |
| lispMIBComplianceMapResolver MODULE-COMPLIANCE The compliance statement for LISP Map Resolvers. It conveys whether the device supports the Map Resolver feature, and, if so, the relevant state associated with that feature. | 1.3.6.1.2.1.220.2.1.6 | current |
| lispMIBEtrGroup OBJECT-GROUP A collection of objects to support reporting of basic LISP ETR parameters. | 1.3.6.1.2.1.220.2.2.1 | current |
| lispMIBItrGroup OBJECT-GROUP A collection of objects to support reporting of basic LISP ITR parameters. | 1.3.6.1.2.1.220.2.2.2 | current |
| lispMIBPetrGroup OBJECT-GROUP A collection of objects to support reporting of basic LISP Proxy-ETR parameters. | 1.3.6.1.2.1.220.2.2.3 | current |
| lispMIBPitrGroup OBJECT-GROUP A collection of objects to support reporting of basic LISP Proxy-ITR parameters. | 1.3.6.1.2.1.220.2.2.4 | current |
| lispMIBMapServerGroup OBJECT-GROUP A collection of objects to support reporting of basic LISP Map Server parameters. | 1.3.6.1.2.1.220.2.2.5 | current |
| lispMIBMapResolverGroup OBJECT-GROUP A collection of objects to support reporting of basic LISP Map Resolver parameters. | 1.3.6.1.2.1.220.2.2.6 | current |
| lispMIBEtrExtendedGroup OBJECT-GROUP A collection of objects to support reporting of LISP features and properties on ETRs. | 1.3.6.1.2.1.220.2.2.7 | current |
| lispMIBItrExtendedGroup OBJECT-GROUP A collection of objects to support reporting of LISP features and properties on ITRs. | 1.3.6.1.2.1.220.2.2.8 | current |
| lispMIBMapServerExtendedGroup OBJECT-GROUP A collection of objects to support the reporting of LISP features and properties on Map Servers related to EID registrations. | 1.3.6.1.2.1.220.2.2.9 | current |
| lispMIBTuningParametersGroup OBJECT-GROUP A collection of objects used to support the reporting of parameters used to control LISP behavior and to tune performance. | 1.3.6.1.2.1.220.2.2.10 | current |
| lispMIBEncapStatisticsGroup OBJECT-GROUP A collection of objects used to support the reporting of LISP encapsulation statistics for the device. | 1.3.6.1.2.1.220.2.2.11 | current |
| lispMIBDecapStatisticsGroup OBJECT-GROUP A collection of objects used to support the reporting of LISP decapsulation statistics for the device. | 1.3.6.1.2.1.220.2.2.12 | current |
| lispMIBDiagnosticsGroup OBJECT-GROUP A collection of objects used to support the reporting of additional diagnostics related to the LISP control-plane state of a LISP device. | 1.3.6.1.2.1.220.2.2.13 | current |
| lispMIBVrfGroup OBJECT-GROUP A collection of objects used to support reporting of VRF-related information on a LISP device. | 1.3.6.1.2.1.220.2.2.14 | current |