MIBs Depot

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

FromSymbols
IANA-ADDRESS-FAMILY-NUMBERS-MIBAddressFamilyNumbers
MPLS-L3VPN-STD-MIBMplsL3VpnName
SNMPv2-CONFMODULE-COMPLIANCE, NOTIFICATION-GROUP, OBJECT-GROUP
SNMPv2-SMICounter64, Integer32, MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-IDENTITY, OBJECT-TYPE, TimeTicks, Unsigned32, iso, mib-2
SNMPv2-TCDisplayString, 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

NameOIDSyntaxAccessStatus
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

NameOIDSyntaxAccessStatus
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.1not-accessiblecurrent
lispFeaturesEntry
OBJECT-TYPE
An entry (conceptual row) in the lispFeaturesTable.
1.3.6.1.2.1.220.1.1.1not-accessiblecurrent
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.1Unsigned32 (0..16777215)not-accessiblecurrent
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.2AddressFamilyNumbersnot-accessiblecurrent
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.3TruthValueread-onlycurrent
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.4TruthValueread-onlycurrent
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.5TruthValueread-onlycurrent
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.6TruthValueread-onlycurrent
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.7TruthValueread-onlycurrent
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.8TruthValueread-onlycurrent
lispFeaturesMapCacheSize
OBJECT-TYPE
Size of EID-to-RLOC map-cache on this device.
1.3.6.1.2.1.220.1.1.1.9Unsigned32read-onlycurrent
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.10Unsigned32read-onlycurrent
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.11Unsigned32read-onlycurrent
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.12TruthValueread-onlycurrent
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.13TruthValueread-onlycurrent
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.14TruthValueread-onlycurrent
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.15TimeStampread-onlycurrent
lispIidToVrfTable
OBJECT-TYPE
This table represents the mapping of a LISP Instance ID to a VRF.
1.3.6.1.2.1.220.1.2not-accessiblecurrent
lispIidToVrfEntry
OBJECT-TYPE
An entry (conceptual row) in the lispIidToVrfTable.
1.3.6.1.2.1.220.1.2.1not-accessiblecurrent
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.1MplsL3VpnNameread-onlycurrent
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.3not-accessiblecurrent
lispGlobalStatsEntry
OBJECT-TYPE
An entry (conceptual row) in the lispGlobalStatsTable.
1.3.6.1.2.1.220.1.3.1not-accessiblecurrent
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.1Counter64read-onlycurrent
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.2Counter64read-onlycurrent
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.3Counter64read-onlycurrent
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.4Counter64read-onlycurrent
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.5Counter64read-onlycurrent
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.6Counter64read-onlycurrent
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.4not-accessiblecurrent
lispMappingDatabaseEntry
OBJECT-TYPE
An entry (conceptual row) in lispMappingDatabaseTable.
1.3.6.1.2.1.220.1.4.1not-accessiblecurrent
lispMappingDatabaseEidLength
OBJECT-TYPE
This object gives the octet-length of lispMappingDatabaseEid.
1.3.6.1.2.1.220.1.4.1.1Integer32 (5..39)not-accessiblecurrent
lispMappingDatabaseEid
OBJECT-TYPE
The EID-Prefix of the mapping database.
1.3.6.1.2.1.220.1.4.1.2LispAddressTypenot-accessiblecurrent
lispMappingDatabaseLsb
OBJECT-TYPE
The locator status bits for this EID-Prefix.
1.3.6.1.2.1.220.1.4.1.3Unsigned32 (0..4294967295)read-onlycurrent
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.4TruthValueread-onlycurrent
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.5TimeStampread-onlycurrent
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.6Counter64read-onlycurrent
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.7Counter64read-onlycurrent
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.8Counter64read-onlycurrent
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.9Counter64read-onlycurrent
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.5not-accessiblecurrent
lispMappingDatabaseLocatorEntry
OBJECT-TYPE
An entry (conceptual row) in the lispMappingDatabaseLocatorTable.
1.3.6.1.2.1.220.1.5.1not-accessiblecurrent
lispMappingDatabaseLocatorRlocLength
OBJECT-TYPE
This object is used to get the octet-length of lispMappingDatabaseLocatorRloc.
1.3.6.1.2.1.220.1.5.1.1Integer32 (5..39)not-accessiblecurrent
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.2LispAddressTypenot-accessiblecurrent
lispMappingDatabaseLocatorRlocPriority
OBJECT-TYPE
The unicast priority of the RLOC.
1.3.6.1.2.1.220.1.5.1.3Integer32 (0..255)read-onlycurrent
lispMappingDatabaseLocatorRlocWeight
OBJECT-TYPE
The unicast weight of the RLOC.
1.3.6.1.2.1.220.1.5.1.4Integer32 (0..100)read-onlycurrent
lispMappingDatabaseLocatorRlocMPriority
OBJECT-TYPE
The multicast priority of the RLOC.
1.3.6.1.2.1.220.1.5.1.5Integer32 (0..255)read-onlycurrent
lispMappingDatabaseLocatorRlocMWeight
OBJECT-TYPE
The multicast weight of the RLOC.
1.3.6.1.2.1.220.1.5.1.6Integer32 (0..100)read-onlycurrent
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.7INTEGER {up(1), down(2), unreachable(3)}read-onlycurrent
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.8INTEGER {siteself(1), sitelocal(2)}read-onlycurrent
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.9TimeStampread-onlycurrent
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.10Counter64read-onlycurrent
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.11Counter64read-onlycurrent
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.12Counter64read-onlycurrent
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.13Counter64read-onlycurrent
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.6not-accessiblecurrent
lispMapCacheEntry
OBJECT-TYPE
An entry (conceptual row) in the lispMapCacheTable.
1.3.6.1.2.1.220.1.6.1not-accessiblecurrent
lispMapCacheEidLength
OBJECT-TYPE
This object is used to get the octet-length of lispMapCacheEid.
1.3.6.1.2.1.220.1.6.1.1Integer32 (5..39)not-accessiblecurrent
lispMapCacheEid
OBJECT-TYPE
The EID-Prefix in the mapping cache.
1.3.6.1.2.1.220.1.6.1.2LispAddressTypenot-accessiblecurrent
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.3TimeStampread-onlycurrent
lispMapCacheEidExpiryTime
OBJECT-TYPE
The time remaining before the ITR times-out this EID-Prefix.
1.3.6.1.2.1.220.1.6.1.4TimeTicksread-onlycurrent
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.5TruthValueread-onlycurrent
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.6TruthValueread-onlycurrent
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.7Counter64read-onlycurrent
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.8Counter64read-onlycurrent
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.9Counter64read-onlycurrent
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.10Counter64read-onlycurrent
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.7not-accessiblecurrent
lispMapCacheLocatorEntry
OBJECT-TYPE
An entry (conceptual row) in the lispMapCacheLocatorTable.
1.3.6.1.2.1.220.1.7.1not-accessiblecurrent
lispMapCacheLocatorRlocLength
OBJECT-TYPE
This object is used to get the octet-length of lispMapCacheLocatorRloc.
1.3.6.1.2.1.220.1.7.1.1Integer32 (5..39)not-accessiblecurrent
lispMapCacheLocatorRloc
OBJECT-TYPE
The locator for the EID-Prefix in the mapping cache.
1.3.6.1.2.1.220.1.7.1.2LispAddressTypenot-accessiblecurrent
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.3Integer32 (0..255)read-onlycurrent
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.4Integer32 (0..100)read-onlycurrent
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.5Integer32 (0..255)read-onlycurrent
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.6Integer32 (0..100)read-onlycurrent
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.7INTEGER {up(1), down(2), unreachable(3)}read-onlycurrent
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.8TimeStampread-onlycurrent
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.9TimeTicksread-onlycurrent
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.10TimeTicksread-onlycurrent
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.11TimeTicksread-onlycurrent
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.12TimeTicksread-onlycurrent
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.13TimeTicksread-onlycurrent
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.14TimeTicksread-onlycurrent
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.15Counter64read-onlycurrent
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.16Counter64read-onlycurrent
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.17Counter64read-onlycurrent
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.18Counter64read-onlycurrent
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.8not-accessiblecurrent
lispConfiguredLocatorEntry
OBJECT-TYPE
An entry (conceptual row) in the lispConfiguredLocatorTable.
1.3.6.1.2.1.220.1.8.1not-accessiblecurrent
lispConfiguredLocatorRlocLength
OBJECT-TYPE
This object is used to get the octet-length of lispConfiguredLocatorRloc.
1.3.6.1.2.1.220.1.8.1.1Integer32 (5..39)not-accessiblecurrent
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.2LispAddressTypenot-accessiblecurrent
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.3INTEGER {up(1), down(2), unreachable(3)}read-onlycurrent
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.4INTEGER {siteself(1), sitelocal(2)}read-onlycurrent
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.5TimeStampread-onlycurrent
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.6Counter64read-onlycurrent
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.7Counter64read-onlycurrent
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.8Counter64read-onlycurrent
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.9Counter64read-onlycurrent
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.9not-accessiblecurrent
lispEidRegistrationEntry
OBJECT-TYPE
An entry (conceptual row) in the lispEidRegistrationTable.
1.3.6.1.2.1.220.1.9.1not-accessiblecurrent
lispEidRegistrationEidLength
OBJECT-TYPE
This object is used to get the octet-length of lispEidRegistrationEid.
1.3.6.1.2.1.220.1.9.1.1Integer32 (5..39)not-accessiblecurrent
lispEidRegistrationEid
OBJECT-TYPE
The EID-Prefix that is being registered.
1.3.6.1.2.1.220.1.9.1.2LispAddressTypenot-accessiblecurrent
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.3OCTET STRING (SIZE(0..63))read-onlycurrent
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.4OCTET STRING (SIZE(0..255))read-onlycurrent
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.5TruthValueread-onlycurrent
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.6TimeStampread-onlycurrent
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.7TimeStampread-onlycurrent
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.8Integer32 (5..39)read-onlycurrent
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.9LispAddressTyperead-onlycurrent
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.10Counter64read-onlycurrent
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.11Counter64read-onlycurrent
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.10not-accessiblecurrent
lispEidRegistrationEtrEntry
OBJECT-TYPE
An entry (conceptual row) in the lispEidRegistrationEtrTable.
1.3.6.1.2.1.220.1.10.1not-accessiblecurrent
lispEidRegistrationEtrSenderLength
OBJECT-TYPE
This object is used to get the octet-length of lispEidRegistrationEtrSender.
1.3.6.1.2.1.220.1.10.1.1Integer32 (5..39)not-accessiblecurrent
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.2LispAddressTypenot-accessiblecurrent
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.3TimeStampread-onlycurrent
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.4Unsigned32read-onlycurrent
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.5TruthValueread-onlycurrent
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.6TruthValueread-onlycurrent
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.11not-accessiblecurrent
lispEidRegistrationLocatorEntry
OBJECT-TYPE
An entry (conceptual row) in the lispEidRegistrationLocatorTable.
1.3.6.1.2.1.220.1.11.1not-accessiblecurrent
lispEidRegistrationLocatorRlocLength
OBJECT-TYPE
This object is used to get the octet-length of lispEidRegistrationLocatorRloc.
1.3.6.1.2.1.220.1.11.1.1Integer32 (5..39)not-accessiblecurrent
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.2LispAddressTypenot-accessiblecurrent
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.3INTEGER {up(1), down(2)}read-onlycurrent
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.4TruthValueread-onlycurrent
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.5Integer32 (0..255)read-onlycurrent
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.6Integer32 (0..100)read-onlycurrent
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.7Integer32 (0..255)read-onlycurrent
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.8Integer32 (0..100)read-onlycurrent
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.12not-accessiblecurrent
lispUseMapServerEntry
OBJECT-TYPE
An entry (conceptual row) in the lispUseMapServerTable.
1.3.6.1.2.1.220.1.12.1not-accessiblecurrent
lispUseMapServerAddressLength
OBJECT-TYPE
This object is used to get the octet-length of lispUseMapServerAddress.
1.3.6.1.2.1.220.1.12.1.1Integer32 (5..39)not-accessiblecurrent
lispUseMapServerAddress
OBJECT-TYPE
Address of a Map-Server configured on this device.
1.3.6.1.2.1.220.1.12.1.2LispAddressTypenot-accessiblecurrent
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.3INTEGER {up(1), down(2), unreachable(3)}read-onlycurrent
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.13not-accessiblecurrent
lispUseMapResolverEntry
OBJECT-TYPE
An entry (conceptual row) in the lispUseMapResolverTable.
1.3.6.1.2.1.220.1.13.1not-accessiblecurrent
lispUseMapResolverAddressLength
OBJECT-TYPE
This object is used to get the octet-length of lispUseMapResolverAddress.
1.3.6.1.2.1.220.1.13.1.1Integer32 (5..39)not-accessiblecurrent
lispUseMapResolverAddress
OBJECT-TYPE
Address of Map-Resolver configured on this device.
1.3.6.1.2.1.220.1.13.1.2LispAddressTypenot-accessiblecurrent
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.3INTEGER {up(1), down(2)}read-onlycurrent
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.14not-accessiblecurrent
lispUseProxyEtrEntry
OBJECT-TYPE
An entry (conceptual row) in the lispUseProxyEtrTable.
1.3.6.1.2.1.220.1.14.1not-accessiblecurrent
lispUseProxyEtrAddressLength
OBJECT-TYPE
This object is used to get the octet-length of lispUseProxyEtrAddress.
1.3.6.1.2.1.220.1.14.1.1Integer32 (5..39)not-accessiblecurrent
lispUseProxyEtrAddress
OBJECT-TYPE
Address of Proxy ETR configured on this device.
1.3.6.1.2.1.220.1.14.1.2LispAddressTypenot-accessiblecurrent
lispUseProxyEtrPriority
OBJECT-TYPE
The unicast priority of the PETR locator.
1.3.6.1.2.1.220.1.14.1.3Integer32 (0..255)read-onlycurrent
lispUseProxyEtrWeight
OBJECT-TYPE
The unicast weight of the PETR locator.
1.3.6.1.2.1.220.1.14.1.4Integer32 (0..100)read-onlycurrent
lispUseProxyEtrMPriority
OBJECT-TYPE
The multicast priority of the PETR locator.
1.3.6.1.2.1.220.1.14.1.5Integer32 (0..255)read-onlycurrent
lispUseProxyEtrMWeight
OBJECT-TYPE
The multicast weight of the PETR locator.
1.3.6.1.2.1.220.1.14.1.6Integer32 (0..100)read-onlycurrent
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.7INTEGER {down(0), up(1)}read-onlycurrent
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

NameOIDStatus
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.1current
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.2current
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.3current
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.4current
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.5current
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.6current
lispMIBEtrGroup
OBJECT-GROUP
A collection of objects to support reporting of basic LISP ETR parameters.
1.3.6.1.2.1.220.2.2.1current
lispMIBItrGroup
OBJECT-GROUP
A collection of objects to support reporting of basic LISP ITR parameters.
1.3.6.1.2.1.220.2.2.2current
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.3current
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.4current
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.5current
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.6current
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.7current
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.8current
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.9current
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.10current
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.11current
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.12current
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.13current
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.14current