idnits 2.17.1 draft-ietf-lisp-mib-11.txt: Checking boilerplate required by RFC 5378 and the IETF Trust (see https://trustee.ietf.org/license-info): ---------------------------------------------------------------------------- No issues found here. Checking nits according to https://www.ietf.org/id-info/1id-guidelines.txt: ---------------------------------------------------------------------------- No issues found here. Checking nits according to https://www.ietf.org/id-info/checklist : ---------------------------------------------------------------------------- No issues found here. Miscellaneous warnings: ---------------------------------------------------------------------------- == The copyright year in the IETF Trust and authors Copyright Line does not match the current year -- The document date (June 17, 2013) is 3959 days in the past. Is this intentional? Checking references for intended status: Experimental ---------------------------------------------------------------------------- == Unused Reference: 'RFC6831' is defined on line 2986, but no explicit reference was found in the text ** Obsolete normative reference: RFC 6830 (Obsoleted by RFC 9300, RFC 9301) ** Obsolete normative reference: RFC 6833 (Obsoleted by RFC 9301) == Outdated reference: A later version (-22) exists of draft-ietf-lisp-lcaf-02 Summary: 2 errors (**), 0 flaws (~~), 3 warnings (==), 1 comment (--). Run idnits with the --verbose option for more detailed information about the items above. -------------------------------------------------------------------------------- 2 Network Working Group G. Schudel 3 Internet-Draft cisco Systems 4 Intended status: Experimental A. Jain 5 Expires: December 19, 2013 Juniper Networks 6 V. Moreno 7 cisco Systems 8 June 17, 2013 10 LISP MIB 11 draft-ietf-lisp-mib-11 13 Abstract 15 This document defines the MIB module that contains managed objects to 16 support the monitoring devices that support the Locator/ID Separation 17 Protocol (LISP). These objects provide information useful for 18 monitoring LISP devices, including determining basic LISP 19 configuration information, LISP functional status, and operational 20 counters and other statistics. 22 Status of This Memo 24 This Internet-Draft is submitted in full conformance with the 25 provisions of BCP 78 and BCP 79. 27 Internet-Drafts are working documents of the Internet Engineering 28 Task Force (IETF). Note that other groups may also distribute 29 working documents as Internet-Drafts. The list of current Internet- 30 Drafts is at http://datatracker.ietf.org/drafts/current/. 32 Internet-Drafts are draft documents valid for a maximum of six months 33 and may be updated, replaced, or obsoleted by other documents at any 34 time. It is inappropriate to use Internet-Drafts as reference 35 material or to cite them other than as "work in progress." 37 This Internet-Draft will expire on December 19, 2013. 39 Copyright Notice 41 Copyright (c) 2013 IETF Trust and the persons identified as the 42 document authors. All rights reserved. 44 This document is subject to BCP 78 and the IETF Trust's Legal 45 Provisions Relating to IETF Documents 46 (http://trustee.ietf.org/license-info) in effect on the date of 47 publication of this document. Please review these documents 48 carefully, as they describe your rights and restrictions with respect 49 to this document. Code Components extracted from this document must 50 include Simplified BSD License text as described in Section 4.e of 51 the Trust Legal Provisions and are provided without warranty as 52 described in the Simplified BSD License. 54 Table of Contents 56 1. Requirements Notation . . . . . . . . . . . . . . . . . . . . 3 57 2. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3 58 3. The Internet-Standard Management Framework . . . . . . . . . . 3 59 4. Definition of Terms . . . . . . . . . . . . . . . . . . . . . 4 60 5. LISP MIB Objectives . . . . . . . . . . . . . . . . . . . . . 4 61 6. Structure of LISP MIB Module . . . . . . . . . . . . . . . . . 5 62 6.1. Overview of Defined Notifications . . . . . . . . . . . . 5 63 6.2. Overview of Defined Tables . . . . . . . . . . . . . . . . 5 64 7. LISP MIB Definitions . . . . . . . . . . . . . . . . . . . . . 6 65 8. Relationship to Other MIB Modules . . . . . . . . . . . . . . 61 66 8.1. MIB modules required for IMPORTS . . . . . . . . . . . . . 61 67 9. Security Considerations . . . . . . . . . . . . . . . . . . . 62 68 10. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 62 69 11. References . . . . . . . . . . . . . . . . . . . . . . . . . . 63 70 11.1. Normative References . . . . . . . . . . . . . . . . . . . 63 71 11.2. Informative References . . . . . . . . . . . . . . . . . . 63 72 Appendix A. Acknowledgments . . . . . . . . . . . . . . . . . . . 64 74 1. Requirements Notation 76 The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", 77 "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and 78 "OPTIONAL" in this document are to be interpreted as described in 79 [RFC2119]. 81 2. Introduction 83 This draft describes the Management Information Base (MIB) module for 84 use with network management protocols in the Internet community. 85 Specifically, the MIB for managing devices that support the 86 Locator/ID Separation Protocol (LISP) is described. 88 LISP [RFC6830] specifies a network-based architecture and mechanisms 89 that implement a new semantic for IP addressing using two separate 90 name spaces: Endpoint Identifiers (EIDs), used within sites, and 91 Routing Locators (RLOCs), used on the transit networks that make up 92 the Internet infrastructure. To achieve this separation, LISP 93 defines protocol mechanisms for mapping from EIDs to RLOCs. 95 From a data plane perspective, LISP traffic is handled exclusively at 96 the network layer by devices performing Ingress Tunnel Router (ITR) 97 and Egress Tunnel Router (ETR) LISP functions. Data plane operations 98 performed by these devices are described in [RFC6830]. Additionally, 99 data plane interworking between legacy (Internet) and LISP sites is 100 implemented by devices performing Proxy ITR (PITR) and Proxy ETR 101 (PETR) functions. The data plane operations of these devices is 102 described in [RFC6832]. 104 From a control plane perspective, LISP employs mechanisms related to 105 creating, maintaining, and resolving mappings from EIDs to RLOCs. 106 LISP ITRs, ETRs, PITRs, and PETRs perform specific control plane 107 functions, and these control plane operations are described in 108 [RFC6830]. Additionally, LISP infrastructure devices supporting LISP 109 control plane functionality include Map-Servers and Map-Resolvers, 110 and the control plane operations of these devices are described in 111 [RFC6833]. 113 3. The Internet-Standard Management Framework 115 For a detailed overview of the documents that describe the current 116 Internet-Standard Management Framework, please refer to section 7 of 117 RFC 3410 [RFC3410]. 119 Managed objects are accessed via a virtual information store, termed 120 the Management Information Base or MIB. MIB objects are generally 121 accessed through the Simple Network Management Protocol (SNMP). 123 Objects in the MIB are defined using the mechanisms defined in the 124 Structure of Management Information (SMI). This memo specifies a MIB 125 module that is compliant to the SMIv2, which is described in STD 58, 126 RFC 2578 [RFC2578], STD 58, RFC 2579 [RFC2579] and STD 58, RFC 2580 127 [RFC2580]. 129 4. Definition of Terms 131 This document does not define any new terms. All terms used in this 132 document are listed here for completeness; the authoritative 133 definition of each term can be found in the definition section of the 134 respective, specified reference. 136 Endpoint ID (EID): [RFC6830] 138 Routing Locator (RLOC): [RFC6830] 140 EID-to-RLOC Cache: [RFC6830] 142 EID-to-RLOC Database: [RFC6830] 144 Ingress Tunnel Router (ITR): [RFC6830] 146 Egress Tunnel Router (ETR): [RFC6830] 148 xTR: [RFC6830] 150 Proxy ITR (PITR): [RFC6832] 152 Proxy ETR (PETR): [RFC6832] 154 LISP Site: [RFC6830] 156 Map-Server: [RFC6833] 158 Map-Resolver: [RFC6833] 160 Map-Request: [RFC6833] 162 Map-Reply: [RFC6833] 164 Negative Map-Reply: [RFC6833] 166 5. LISP MIB Objectives 168 The objectives for this LISP MIB module are to provide a read-only 169 meachanism to support the following functions: 171 o Provide a means for obtaining (read-only) a current status of LISP 172 features enabled on a device, and (read-only) a current status of 173 configuration attributes related to those features. (This MIB 174 provides read-only capabilities; it does not provide any 175 capablities for setting or changing features.) As one example, 176 this MIB could determine the ON/OFF status of LISP features such 177 as ITR, ETR, PITR, PETR, MS or MR support, specifically as 178 realated to both IPv4 or IPv6 address families. Other examples 179 could include: obtaining the (read-only) status of whether rloc- 180 probing is enabled, whether the use of a PETR is configured, and 181 obtaining the (read-only) values of other related attributes such 182 as the map-cache limit value, or a mapping time-to-live value. 184 o Provide a means for obtaining (read-only) the current attributes 185 of various LISP tables, such as the EID-to-RLOC policy data 186 contained in the Map-Cache, or the local EID-to-RLOC policy data 187 contained in the Mapping-Database. 189 o Provide a means for obtaining (read-only) the current operational 190 statistics of various LISP functions, such as the number of 191 packets encapsulated and decapsulated by the device. Other 192 counters of operational interest, depending on LISP function, 193 include things like the current number of map-cache entries, and 194 the total number and rate of map-requests received and sent by the 195 device. 197 6. Structure of LISP MIB Module 199 6.1. Overview of Defined Notifications 201 No LISP MIB notifications are defined. 203 6.2. Overview of Defined Tables 205 The LISP MIB module is composed of the following tables of objects: 207 lispFeatures - This table provides information representing the 208 various lisp features that can be enabled on LISP devices. 210 lispIidToVrf - This table provides information representing the 211 mapping of a LISP instance ID to a VRF (Virtual Routing/ 212 Forwarding). 214 lispGlobalStats - This table provides global statistics for a given 215 Instance ID per address-family on a LISP device. 217 lispMappingDatabase - This table represents the EID-to-RLOC database 218 that contains the EID-prefix to RLOC mappings configured on an 219 ETR. In general, this table would be representative of all such 220 mappings for a given site that this device belongs to. 222 lispMappingDatabaseLocator - This table represents the set of 223 routing locators contained in the EID-to-RLOC database configured 224 on an ETR. 226 lispMapCache - This table represents the short-lived, on-demand 227 table maintained on an ITR that stores, tracks, and times-out EID- 228 to-RLOC mappings. 230 lispMapCacheLocator - This table represents the set of locators per 231 EID prefix contained in the map-cache table of an ITR. 233 lispConfiguredLocator - This table represents the set of routing 234 locators configured on a LISP device. 236 lispEidRegistration - This table provides the properties of each EID 237 prefix that is registered with this device when configured to be a 238 Map-Server. 240 lispEidRegistrationEtr - This table provides the properties of the 241 different ETRs that send registers, for a given EID prefix, to 242 this device when configured to be a Map-Server. 244 lispEidRegistrationLocator - This table provides the properties of 245 the different locators per EID prefix that is registered with this 246 device when configured to be a Map-Server. 248 lispUseMapServer - This table provides the properties of all Map- 249 Servers that this device is configured to use. 251 lispUseMapResolver - This table provides the properties of all Map- 252 Resolvers that this device is configured to use. 254 lispUseProxyEtr - This table provides the properties of all Proxy 255 ETRs that this device is configured to use. 257 7. LISP MIB Definitions 259 LISP-MIB DEFINITIONS ::= BEGIN 261 IMPORTS 262 MODULE-IDENTITY, OBJECT-TYPE, 263 mib-2, Unsigned32, Counter64, 264 Integer32, TimeTicks FROM SNMPv2-SMI -- [RFC2578] 265 TruthValue, TEXTUAL-CONVENTION, 266 TimeStamp FROM SNMPv2-TC -- [RFC2579] 267 MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF -- [RFC2580] 268 MplsL3VpnName 269 FROM MPLS-L3VPN-STD-MIB -- [RFC4382] 270 AddressFamilyNumbers 271 FROM IANA-ADDRESS-FAMILY-NUMBERS-MIB; -- [IANA] 273 lispMIB MODULE-IDENTITY 274 LAST-UPDATED "201306170000Z" -- 17 June 2013 275 ORGANIZATION 276 "IETF Locator/ID Separation Protocol (LISP) Working Group" 277 CONTACT-INFO 278 "Email: lisp@ietf.org 279 WG charter: 280 http://www.ietf.org/html.charters/lisp-charter.html" 281 DESCRIPTION 282 "This MIB module contains managed objects to support 283 monitoring devices that support the Locator/ID Separation 284 Protocol (LISP). 286 Copyright (C) The IETF Trust (2013)." 287 REVISION "201306170000Z" -- 17 June 2013 288 DESCRIPTION "Initial version of the IETF LISP-MIB module. Published 289 as RFC xxxx." 290 -- RFC Ed.: RFC-editor pls fill in xxxx 291 ::= { mib-2 XXX } 292 -- RFC Ed.: assigned by IANA, see section 10 for details 294 -- 295 -- Textual Conventions 296 -- 298 LispAddressType ::= TEXTUAL-CONVENTION 299 DISPLAY-HINT "39a" 300 STATUS current 301 DESCRIPTION 302 "LISP architecture can be applied to a wide variety of 303 address-families. This textual-convention is a generalization 304 for representing addresses belonging to those address-families. 305 For convenience, this document refers to any such address as a 306 LISP address. LispAddressType textual-convention consists of 307 the following four-tuple: 308 1. IANA Address Family Number: A field of length 2-octets, 309 whose value is of the form following the assigned 310 AddressFamilyNumbers textual-convention described in 311 [IANA]. The enumerations are listed in [IANA]. Note 312 that this list of address family numbers is maintained 313 by IANA. 314 2. Length of LISP address: A field of length 1-octet, whose 315 value indicates the octet-length of the next (third) 316 field of this LispAddressType four-tuple. 317 3. LISP address: A field of variable length as indicated in 318 the previous (second) field, whose value is an address 319 of the IANA Address Family indicated in the first field 320 of this LispAddressType four-tuple. Note that any of 321 the IANA Address Families can be represented. 322 Particularly when the address family is LISP Canonical 323 Address Format (LCAF) [LCAF] with IANA assigned Address 324 Family Number 16387, then the first octet of this field 325 indicates the LCAF type, and the rest of this field is 326 same as the encoding format of the LISP Canonical Address 327 after the length field, as defined in [LCAF]. 328 4. Mask-length of address: A field of length 1-octet, whose 329 value is the mask-length to be applied to the LISP 330 address specified in the previous (third) field. 332 To illustrate the use of this object, consider the LISP MIB 333 Object below entitled lispMapCacheEntry. This object begins 334 with the following entities: 336 lispMapCacheEntry ::= SEQUENCE { 337 lispMapCacheEidLength INTEGER, 338 lispMapCacheEid LispAddressType, 339 ... [skip] ... 341 Example 1: Suppose that the IPv4 EID prefix stored is 342 192.0.2.0/24. In this case, the values within 343 lispMapCacheEntry would be: 345 lispMapCacheEidLength = 8 346 lispMapCacheEid = 1, 4, 192.0.2.0, 24 347 ... [skip] ... 349 where 8 is the total length in octets of the next 350 object (lispMapCacheEID of type LispAddressType). Then, 351 the value 1 indicates the IPv4 AF (per [IANA]), the 352 value 4 indicates that the AF is 4-octets in length, 353 192.0.2.0 is the IPv4 address, and the value 24 is the 354 mask-length in bits. Note that the lispMapCacheEidLength 355 value of 8 is used to compute the length of the fourth 356 (last) field in lispMapCacheEid to be 1 octet - as 357 computed by 8 - (2 + 1 + 4) = 1. 359 Example 2: Suppose that the IPv6 EID prefix stored is 360 2001:db8:a::/48. In this case, the values within 361 lispMapCacheEntry would be: 363 lispMapCacheEidLength = 20 364 lispMapCacheEid = 2, 16, 2001:db8:a::, 48 365 ... [skip] ... 367 where 20 is the total length in octets of the next 368 object (lispMapCacheEID of type LispAddressType). Then, 369 the value 2 indicates the IPv4 AF (per [IANA]), the 370 value 16 indicates that the AF is 16-octets in length, 371 2001:db8:a:: is the IPv6 address, and the value 48 is the 372 mask-length in bits. Note that the lispMapCacheEidLength 373 value of 20 is used to compute the length of the fourth 374 (last) field in lispMapCacheEid to be 1 octet - as 375 computed by 20 - (2 + 1 + 16) = 1. 377 Example 3: As an example where LCAF is used, suppose 378 that the IPv4 EID prefix stored is 192.0.2.0/24 and it 379 is part of LISP Instance ID 101. In this case, the values 380 within lispMapCacheEntry would be: 382 lispMapCacheEidLength = 11 383 lispMapCacheEid = 16387, 7, 2, 101, 1, 192.0.2.0, 24 384 ... [skip] ... 386 where 11 is the total length in octets of the next object 387 (lispMapCacheEID of type LispAddressType). Then, the value 388 16387 indicates the LCAF AF (see [IANA]), the value 7 389 indicates that the LCAF AF is 7-octets in length in this 390 case, 2 indicates that LCAF Type 2 encoding is used (see 391 [LCAF]), 101 gives the Instance ID, 1 gives the AFI (per 392 [IANA]) for an IPv4 address, 192.0.2.0 is the IPv4 address, 393 and 24 is the mask-length in bits. Note that the 394 lispMapCacheEidLength value of 11 octets is used to compute 395 the length of the last field in lispMapCacheEid to be 1 octet, 396 as computed by 11 - (2 + 1 + 1 + 1 + 1 + 1 + 4) = 1. 398 Note: all LISP header formats and locations of specific 399 flags, bits, and fields are as given in the base LISP 400 references of RFC6830, RFC6832, and RFC6833." 402 REFERENCE 403 "RFC6830, Section 14.2, draft-ietf-lisp-lcaf-02.txt." 404 SYNTAX OCTET STRING (SIZE (5..39)) 406 -- 407 -- Top level components of this MIB. 408 -- 409 lispObjects OBJECT IDENTIFIER ::= { lispMIB 1 } 410 lispConformance OBJECT IDENTIFIER ::= { lispMIB 2 } 412 lispFeaturesTable OBJECT-TYPE 413 SYNTAX SEQUENCE OF LispFeaturesEntry 414 MAX-ACCESS not-accessible 415 STATUS current 416 DESCRIPTION 417 "This table represents the ON/OFF status of the 418 various LISP features that can be enabled on LISP devices." 419 REFERENCE 420 "RFC6830, Section 4.0., Section 5.5., Section 6.3." 421 ::= { lispObjects 1 } 423 lispFeaturesEntry OBJECT-TYPE 424 SYNTAX LispFeaturesEntry 425 MAX-ACCESS not-accessible 426 STATUS current 427 DESCRIPTION 428 "An entry (conceptual row) in the lispFeaturesTable." 429 INDEX { lispFeaturesInstanceID, 430 lispFeaturesAddressFamily } 431 ::= { lispFeaturesTable 1 } 433 LispFeaturesEntry ::= SEQUENCE { 434 lispFeaturesInstanceID Unsigned32, 435 lispFeaturesAddressFamily AddressFamilyNumbers, 436 lispFeaturesItrEnabled TruthValue, 437 lispFeaturesEtrEnabled TruthValue, 438 lispFeaturesProxyItrEnabled TruthValue, 439 lispFeaturesProxyEtrEnabled TruthValue, 440 lispFeaturesMapServerEnabled TruthValue, 441 lispFeaturesMapResolverEnabled TruthValue, 442 lispFeaturesMapCacheSize Unsigned32, 443 lispFeaturesMapCacheLimit Unsigned32, 444 lispFeaturesEtrMapCacheTtl Unsigned32, 445 lispFeaturesRlocProbeEnabled TruthValue, 446 lispFeaturesEtrAcceptMapDataEnabled TruthValue, 447 lispFeaturesEtrAcceptMapDataVerifyEnabled TruthValue, 448 lispFeaturesRouterTimeStamp TimeStamp 449 } 451 lispFeaturesInstanceID OBJECT-TYPE 452 SYNTAX Unsigned32 (0..16777215) 453 MAX-ACCESS not-accessible 454 STATUS current 455 DESCRIPTION 456 "This represents the Instance ID of the LISP header. 457 An Instance ID in the LISP address encoding helps 458 uniquely identify the AFI-based address space to which 459 a given EID belongs. It's default value is 0." 460 DEFVAL { 0 } 461 ::= { lispFeaturesEntry 1 } 463 lispFeaturesAddressFamily OBJECT-TYPE 464 SYNTAX AddressFamilyNumbers 465 MAX-ACCESS not-accessible 466 STATUS current 467 DESCRIPTION 468 "The IANA address family number of destination address 469 of packets that this LISP device is enabled to process." 470 ::= { lispFeaturesEntry 2 } 472 lispFeaturesItrEnabled OBJECT-TYPE 473 SYNTAX TruthValue 474 MAX-ACCESS read-only 475 STATUS current 476 DESCRIPTION 477 "Indicates the status of ITR role on this device. If 478 this object is TRUE, then ITR feature is enabled." 479 ::= { lispFeaturesEntry 3 } 481 lispFeaturesEtrEnabled OBJECT-TYPE 482 SYNTAX TruthValue 483 MAX-ACCESS read-only 484 STATUS current 485 DESCRIPTION 486 "Indicates the status of ETR role on this device. If 487 this object is TRUE, then ETR feature is enabled." 488 ::= { lispFeaturesEntry 4 } 490 lispFeaturesProxyItrEnabled OBJECT-TYPE 491 SYNTAX TruthValue 492 MAX-ACCESS read-only 493 STATUS current 494 DESCRIPTION 495 "Indicates the status of Proxy-ITR role on this device. 496 If this object is TRUE, then Proxy-ITR feature is enabled." 497 ::= { lispFeaturesEntry 5 } 499 lispFeaturesProxyEtrEnabled OBJECT-TYPE 500 SYNTAX TruthValue 501 MAX-ACCESS read-only 502 STATUS current 503 DESCRIPTION 504 "Indicates the status of Proxy-ETR role on this device. 505 If this object is TRUE, then Proxy-ETR feature is enabled." 506 ::= { lispFeaturesEntry 6 } 508 lispFeaturesMapServerEnabled OBJECT-TYPE 509 SYNTAX TruthValue 510 MAX-ACCESS read-only 511 STATUS current 512 DESCRIPTION 513 "Indicates the status of Map Server role on this device. 514 If this object is TRUE, then Map Server feature is 515 enabled." 516 ::= { lispFeaturesEntry 7 } 518 lispFeaturesMapResolverEnabled OBJECT-TYPE 519 SYNTAX TruthValue 520 MAX-ACCESS read-only 521 STATUS current 522 DESCRIPTION 523 "Indicates the status of Map Resolver role on this device. 524 If this object is TRUE, then Map Resolver feature is 525 enabled." 526 ::= { lispFeaturesEntry 8 } 528 lispFeaturesMapCacheSize OBJECT-TYPE 529 SYNTAX Unsigned32 530 MAX-ACCESS read-only 531 STATUS current 532 DESCRIPTION 533 "Size of EID-to-RLOC map cache on this device." 534 ::= { lispFeaturesEntry 9 } 536 lispFeaturesMapCacheLimit OBJECT-TYPE 537 SYNTAX Unsigned32 538 MAX-ACCESS read-only 539 STATUS current 540 DESCRIPTION 541 "Maximum permissible entries in EID-to-RLOC map cache on 542 this device." 543 ::= { lispFeaturesEntry 10 } 545 lispFeaturesEtrMapCacheTtl OBJECT-TYPE 546 SYNTAX Unsigned32 547 MAX-ACCESS read-only 548 STATUS current 549 DESCRIPTION 550 "The stored Record TTL of the EID-to-RLOC map record in 551 the map cache." 552 ::= { lispFeaturesEntry 11 } 554 lispFeaturesRlocProbeEnabled OBJECT-TYPE 555 SYNTAX TruthValue 556 MAX-ACCESS read-only 557 STATUS current 558 DESCRIPTION 559 "Indicates the status of rloc-probing feature on this 560 device. If this object is TRUE, then this feature is 561 enabled." 562 ::= { lispFeaturesEntry 12 } 564 lispFeaturesEtrAcceptMapDataEnabled OBJECT-TYPE 565 SYNTAX TruthValue 566 MAX-ACCESS read-only 567 STATUS current 568 DESCRIPTION 569 "Indicates the status of accepting piggybacked mapping 570 data received in a map-request on this device. If this 571 object is TRUE, then this device accepts piggybacked 572 mapping data." 573 ::= { lispFeaturesEntry 13 } 575 lispFeaturesEtrAcceptMapDataVerifyEnabled OBJECT-TYPE 576 SYNTAX TruthValue 577 MAX-ACCESS read-only 578 STATUS current 579 DESCRIPTION 580 "Indicates the status of verifying accepted piggybacked 581 mapping data received in a map-request on this device. 582 If this object is TRUE, then this device verifies 583 accepted piggybacked mapping data." 584 ::= { lispFeaturesEntry 14 } 586 lispFeaturesRouterTimeStamp OBJECT-TYPE 587 SYNTAX TimeStamp 588 MAX-ACCESS read-only 589 STATUS current 590 DESCRIPTION 591 "The value of sysUpTime at which LISP feature was 592 enabled on this device. 594 If this information was present at the most recent 595 re-initialization of the local management subsystem, 596 then this object contains a zero value." 597 DEFVAL { 0 } 598 ::= { lispFeaturesEntry 15 } 600 lispIidToVrfTable OBJECT-TYPE 601 SYNTAX SEQUENCE OF LispIidToVrfEntry 602 MAX-ACCESS not-accessible 603 STATUS current 604 DESCRIPTION 605 "This table represents the mapping of LISP Instance ID 606 to a VRF." 607 REFERENCE 608 "RFC6830, Section 5.5. and RFC4382, Section 7." 609 ::= { lispObjects 2 } 611 lispIidToVrfEntry OBJECT-TYPE 612 SYNTAX LispIidToVrfEntry 613 MAX-ACCESS not-accessible 614 STATUS current 615 DESCRIPTION 616 "An entry (conceptual row) in the lispIidToVrfTable." 617 INDEX { lispFeaturesInstanceID } 618 ::= { lispIidToVrfTable 1 } 620 LispIidToVrfEntry ::= SEQUENCE { 621 lispIidToVrfName MplsL3VpnName 622 } 624 lispIidToVrfName OBJECT-TYPE 625 SYNTAX MplsL3VpnName 626 MAX-ACCESS read-only 627 STATUS current 628 DESCRIPTION 629 "The identifier for each VPN that is mapped to the 630 given LISP Instance ID." 631 ::= { lispIidToVrfEntry 1 } 633 lispGlobalStatsTable OBJECT-TYPE 634 SYNTAX SEQUENCE OF LispGlobalStatsEntry 635 MAX-ACCESS not-accessible 636 STATUS current 637 DESCRIPTION 638 "This table provides global statistics for a given 639 Instance ID per address-family on a LISP device." 640 REFERENCE 641 "RFC6830, Section 6.1." 642 ::= { lispObjects 3 } 644 lispGlobalStatsEntry OBJECT-TYPE 645 SYNTAX LispGlobalStatsEntry 646 MAX-ACCESS not-accessible 647 STATUS current 648 DESCRIPTION 649 "An entry (conceptual row) in the 650 lispGlobalStatsTable." 651 INDEX { lispFeaturesInstanceID, 652 lispFeaturesAddressFamily } 653 ::= { lispGlobalStatsTable 1 } 655 LispGlobalStatsEntry ::= SEQUENCE { 656 lispGlobalStatsMapRequestsIn Counter64, 657 lispGlobalStatsMapRequestsOut Counter64, 658 lispGlobalStatsMapRepliesIn Counter64, 659 lispGlobalStatsMapRepliesOut Counter64, 660 lispGlobalStatsMapRegistersIn Counter64, 661 lispGlobalStatsMapRegistersOut Counter64 662 } 664 lispGlobalStatsMapRequestsIn OBJECT-TYPE 665 SYNTAX Counter64 666 MAX-ACCESS read-only 667 STATUS current 668 DESCRIPTION 669 "Total number of map requests received by this device for 670 any EID prefix of the given address family and Instance ID. 672 Discontinuities in this monotonically increasing value occur 673 at re-initialization of the management system. 674 Discontinuities can also occur as a result of LISP features 675 being removed, which can be detected by observing the value 676 of lispFeaturesRouterTimeStamp." 677 ::= { lispGlobalStatsEntry 1 } 679 lispGlobalStatsMapRequestsOut OBJECT-TYPE 680 SYNTAX Counter64 681 MAX-ACCESS read-only 682 STATUS current 683 DESCRIPTION 684 "Total number of map requests sent by this device for any 685 EID prefix of the given address family and Instance ID. 687 Discontinuities in this monotonically increasing value occur 688 at re-initialization of the management system. 690 Discontinuities can also occur as a result of LISP features 691 being removed, which can be detected by observing the value 692 of lispFeaturesRouterTimeStamp." 693 ::= { lispGlobalStatsEntry 2 } 695 lispGlobalStatsMapRepliesIn OBJECT-TYPE 696 SYNTAX Counter64 697 MAX-ACCESS read-only 698 STATUS current 699 DESCRIPTION 700 "Total number of map replies received by this device for any 701 EID prefix of the given address family and Instance ID. 703 Discontinuities in this monotonically increasing value occur 704 at re-initialization of the management system. 705 Discontinuities can also occur as a result of LISP features 706 being removed, which can be detected by observing the value 707 of lispFeaturesRouterTimeStamp." 708 ::= { lispGlobalStatsEntry 3 } 710 lispGlobalStatsMapRepliesOut OBJECT-TYPE 711 SYNTAX Counter64 712 MAX-ACCESS read-only 713 STATUS current 714 DESCRIPTION 715 "Total number of map replies sent by this device for any EID 716 prefix of the given address family and Instance ID. 718 Discontinuities in this monotonically increasing value occur 719 at re-initialization of the management system. 720 Discontinuities can also occur as a result of LISP features 721 being removed, which can be detected by observing the value 722 of lispFeaturesRouterTimeStamp." 723 ::= { lispGlobalStatsEntry 4 } 725 lispGlobalStatsMapRegistersIn OBJECT-TYPE 726 SYNTAX Counter64 727 MAX-ACCESS read-only 728 STATUS current 729 DESCRIPTION 730 "Total number of map registers received by this device for 731 any EID prefix of the given address family and Instance ID. 733 Discontinuities in this monotonically increasing value occur 734 at re-initialization of the management system. 735 Discontinuities can also occur as a result of LISP features 736 being removed, which can be detected by observing the value 737 of lispFeaturesRouterTimeStamp." 739 ::= { lispGlobalStatsEntry 5 } 741 lispGlobalStatsMapRegistersOut OBJECT-TYPE 742 SYNTAX Counter64 743 MAX-ACCESS read-only 744 STATUS current 745 DESCRIPTION 746 "Total number of map registers sent by this device for any 747 EID prefix of the given address family and Instance ID. 749 Discontinuities in this monotonically increasing value occur 750 at re-initialization of the management system. 751 Discontinuities can also occur as a result of LISP features 752 being removed, which can be detected by observing the value 753 of lispFeaturesRouterTimeStamp." 754 ::= { lispGlobalStatsEntry 6 } 756 lispMappingDatabaseTable OBJECT-TYPE 757 SYNTAX SEQUENCE OF LispMappingDatabaseEntry 758 MAX-ACCESS not-accessible 759 STATUS current 760 DESCRIPTION 761 "This table represents the EID-to-RLOC mapping database 762 that contains the EID-prefix to RLOC mappings configured 763 on an ETR. 765 In general, this table would be representative of all 766 such mappings for the given LISP site to which this device 767 belongs." 768 REFERENCE 769 "RFC6830, Section 6.0." 770 ::= { lispObjects 4 } 772 lispMappingDatabaseEntry OBJECT-TYPE 773 SYNTAX LispMappingDatabaseEntry 775 MAX-ACCESS not-accessible 776 STATUS current 777 DESCRIPTION 778 "An entry (conceptual row) in lispMappingDatabaseTable." 779 INDEX { lispMappingDatabaseEidLength, 780 lispMappingDatabaseEid } 781 ::= { lispMappingDatabaseTable 1 } 783 LispMappingDatabaseEntry ::= SEQUENCE { 784 lispMappingDatabaseEidLength Integer32, 785 lispMappingDatabaseEid LispAddressType, 786 lispMappingDatabaseLsb Unsigned32, 787 lispMappingDatabaseEidPartitioned TruthValue, 788 lispMappingDatabaseTimeStamp TimeStamp, 789 lispMappingDatabaseDecapOctets Counter64, 790 lispMappingDatabaseDecapPackets Counter64, 791 lispMappingDatabaseEncapOctets Counter64, 792 lispMappingDatabaseEncapPackets Counter64 793 } 795 lispMappingDatabaseEidLength OBJECT-TYPE 796 SYNTAX Integer32 (5..259) 797 MAX-ACCESS not-accessible 798 STATUS current 799 DESCRIPTION 800 "This object gives the octet-length of 801 lispMappingDatabaseEid." 802 ::= { lispMappingDatabaseEntry 1 } 804 lispMappingDatabaseEid OBJECT-TYPE 805 SYNTAX LispAddressType 806 MAX-ACCESS not-accessible 807 STATUS current 808 DESCRIPTION 809 "The EID prefix of the mapping database." 810 ::= { lispMappingDatabaseEntry 2 } 812 lispMappingDatabaseLsb OBJECT-TYPE 813 SYNTAX Unsigned32 (0..4294967295) 814 MAX-ACCESS read-only 815 STATUS current 816 DESCRIPTION 817 "The locator status bits for this EID prefix." 818 ::= { lispMappingDatabaseEntry 3 } 820 lispMappingDatabaseEidPartitioned OBJECT-TYPE 821 SYNTAX TruthValue 822 MAX-ACCESS read-only 824 STATUS current 825 DESCRIPTION 826 "Indicates if this device is partitioned from the site that 827 contains this EID prefix. If this object is TRUE, then it 828 means this device is partitioned from the site." 829 ::= { lispMappingDatabaseEntry 4 } 831 lispMappingDatabaseTimeStamp OBJECT-TYPE 832 SYNTAX TimeStamp 833 MAX-ACCESS read-only 834 STATUS current 835 DESCRIPTION 836 "The value of sysUpTime at which the EID Prefix information 837 represented by this mapping database entry was configured 838 on this device. 840 If this information was present at the most recent 841 re-initialization of the local management subsystem, then 842 this object contains a zero value." 843 DEFVAL { 0 } 844 ::= { lispMappingDatabaseEntry 5 } 846 lispMappingDatabaseDecapOctets OBJECT-TYPE 847 SYNTAX Counter64 848 MAX-ACCESS read-only 849 STATUS current 850 DESCRIPTION 851 "The number of octets of LISP packets that were decapsulated 852 by this device addressed to a host within this EID-prefix. 854 Discontinuities in this monotonically increasing value occur 855 at re-initialization of the management system. 856 Discontinuities can also occur as a result of LISP features 857 being removed, which can be detected by observing the value 858 of lispMappingDatabaseTimeStamp." 859 ::= { lispMappingDatabaseEntry 6 } 861 lispMappingDatabaseDecapPackets OBJECT-TYPE 862 SYNTAX Counter64 863 MAX-ACCESS read-only 864 STATUS current 865 DESCRIPTION 866 "The number of LISP packets that were decapsulated by this 867 device addressed to a host within this EID-prefix. 869 Discontinuities in this monotonically increasing value occur 870 at re-initialization of the management system. 871 Discontinuities can also occur as a result of LISP features 872 being removed, which can be detected by observing the value 873 of lispMappingDatabaseTimeStamp." 874 ::= { lispMappingDatabaseEntry 7 } 876 lispMappingDatabaseEncapOctets OBJECT-TYPE 877 SYNTAX Counter64 878 MAX-ACCESS read-only 879 STATUS current 880 DESCRIPTION 881 "The number of octets of LISP packets that were encapsulated 882 by this device, whose inner header source address matched 883 this EID prefix. 885 Discontinuities in this monotonically increasing value occur 886 at re-initialization of the management system. 887 Discontinuities can also occur as a result of LISP features 888 being removed, which can be detected by observing the value 889 of lispMappingDatabaseTimeStamp." 890 ::= { lispMappingDatabaseEntry 8 } 892 lispMappingDatabaseEncapPackets OBJECT-TYPE 893 SYNTAX Counter64 894 MAX-ACCESS read-only 895 STATUS current 896 DESCRIPTION 897 "The number of LISP packets that were encapsulated by this 898 device whose inner header source address matched this EID 899 prefix. 901 Discontinuities in this monotonically increasing value occur 902 at re-initialization of the management system. 903 Discontinuities can also occur as a result of LISP features 904 being removed, which can be detected by observing the value 905 of lispMappingDatabaseTimeStamp." 906 ::= { lispMappingDatabaseEntry 9 } 908 lispMappingDatabaseLocatorTable OBJECT-TYPE 909 SYNTAX SEQUENCE OF LispMappingDatabaseLocatorEntry 910 MAX-ACCESS not-accessible 911 STATUS current 912 DESCRIPTION 913 "This table represents the set of routing locators per EID 914 prefix contained in the EID-to-RLOC database configured on 915 this ETR." 916 REFERENCE 917 "RFC6830, Section 6.2." 918 ::= { lispObjects 5 } 920 lispMappingDatabaseLocatorEntry OBJECT-TYPE 921 SYNTAX LispMappingDatabaseLocatorEntry 922 MAX-ACCESS not-accessible 923 STATUS current 924 DESCRIPTION 925 "An entry (conceptual row) in the 926 lispMappingDatabaseLocatorTable." 927 INDEX { lispMappingDatabaseEidLength, 928 lispMappingDatabaseEid, 929 lispMappingDatabaseLocatorRlocLength, 930 lispMappingDatabaseLocatorRloc } 931 ::= { lispMappingDatabaseLocatorTable 1 } 933 LispMappingDatabaseLocatorEntry ::= SEQUENCE { 934 lispMappingDatabaseLocatorRlocLength Integer32, 935 lispMappingDatabaseLocatorRloc LispAddressType, 936 lispMappingDatabaseLocatorRlocPriority Integer32, 937 lispMappingDatabaseLocatorRlocWeight Integer32, 938 lispMappingDatabaseLocatorRlocMPriority Integer32, 939 lispMappingDatabaseLocatorRlocMWeight Integer32, 940 lispMappingDatabaseLocatorRlocState INTEGER, 941 lispMappingDatabaseLocatorRlocLocal INTEGER, 942 lispMappingDatabaseLocatorRlocTimeStamp TimeStamp, 943 lispMappingDatabaseLocatorRlocDecapOctets Counter64, 944 lispMappingDatabaseLocatorRlocDecapPackets Counter64, 945 lispMappingDatabaseLocatorRlocEncapOctets Counter64, 946 lispMappingDatabaseLocatorRlocEncapPackets Counter64 947 } 949 lispMappingDatabaseLocatorRlocLength OBJECT-TYPE 950 SYNTAX Integer32 (5..259) 951 MAX-ACCESS not-accessible 952 STATUS current 953 DESCRIPTION 954 "This object is used to get the octet-length of 955 lispMappingDatabaseLocatorRloc." 956 ::= { lispMappingDatabaseLocatorEntry 1 } 958 lispMappingDatabaseLocatorRloc OBJECT-TYPE 959 SYNTAX LispAddressType 960 MAX-ACCESS not-accessible 961 STATUS current 962 DESCRIPTION 963 "This object is a locator for the given EID prefix in 964 the mapping database." 965 ::= { lispMappingDatabaseLocatorEntry 2 } 967 lispMappingDatabaseLocatorRlocPriority OBJECT-TYPE 968 SYNTAX Integer32 (0..255) 969 MAX-ACCESS read-only 970 STATUS current 971 DESCRIPTION 972 "The unicast priority of the RLOC." 973 ::= { lispMappingDatabaseLocatorEntry 3 } 975 lispMappingDatabaseLocatorRlocWeight OBJECT-TYPE 976 SYNTAX Integer32 (0..100) 977 MAX-ACCESS read-only 978 STATUS current 979 DESCRIPTION 980 "The unicast weight of the RLOC." 981 ::= { lispMappingDatabaseLocatorEntry 4 } 983 lispMappingDatabaseLocatorRlocMPriority OBJECT-TYPE 984 SYNTAX Integer32 (0..255) 985 MAX-ACCESS read-only 986 STATUS current 987 DESCRIPTION 988 "The multicast priority of the RLOC." 989 ::= { lispMappingDatabaseLocatorEntry 5 } 991 lispMappingDatabaseLocatorRlocMWeight OBJECT-TYPE 992 SYNTAX Integer32 (0..100) 993 MAX-ACCESS read-only 994 STATUS current 995 DESCRIPTION 996 "The multicast weight of the RLOC." 997 ::= { lispMappingDatabaseLocatorEntry 6 } 999 lispMappingDatabaseLocatorRlocState OBJECT-TYPE 1000 SYNTAX INTEGER { 1001 up (1), 1002 down (2), 1003 unreachable (3) 1004 } 1005 MAX-ACCESS read-only 1006 STATUS current 1007 DESCRIPTION 1008 "The state of this RLOC as per this device. 1009 (1 = RLOC is up; 2 = RLOC is down; 3 = RLOC is unreachable)." 1010 ::= { lispMappingDatabaseLocatorEntry 7 } 1012 lispMappingDatabaseLocatorRlocLocal OBJECT-TYPE 1013 SYNTAX INTEGER { 1014 siteself (1), 1015 sitelocal (2) 1016 } 1017 MAX-ACCESS read-only 1018 STATUS current 1019 DESCRIPTION 1020 "Indicates whether the RLOC is local to this device 1021 (or remote, meaning local to another device in the same LISP 1022 site). (1 = RLOC is an address on this device; 2 = RLOC is 1023 an address on another device)." 1024 ::= { lispMappingDatabaseLocatorEntry 8 } 1026 lispMappingDatabaseLocatorRlocTimeStamp OBJECT-TYPE 1027 SYNTAX TimeStamp 1028 MAX-ACCESS read-only 1029 STATUS current 1030 DESCRIPTION 1031 "The value of sysUpTime at which the RLOC of the EID Prefix 1032 represented by this mapping database entry was configured 1033 on this device. 1035 If this information was present at the most recent 1036 re-initialization of the local management subsystem, then 1037 this object contains a zero value." 1038 DEFVAL { 0 } 1039 ::= { lispMappingDatabaseLocatorEntry 9 } 1041 lispMappingDatabaseLocatorRlocDecapOctets OBJECT-TYPE 1042 SYNTAX Counter64 1043 MAX-ACCESS read-only 1044 STATUS current 1045 DESCRIPTION 1046 "The number of octets of LISP packets that were 1047 addressed to this RLOC of the EID-prefix and 1048 were decapsulated. 1050 Discontinuities in this monotonically increasing value occur 1051 at re-initialization of the management system. 1052 Discontinuities can also occur as a result of database 1053 mappings getting re-configured or RLOC status changes, which 1054 can be detected by observing the value of 1055 lispMappingDatabaseLocatorRlocTimeStamp." 1056 ::= { lispMappingDatabaseLocatorEntry 10 } 1058 lispMappingDatabaseLocatorRlocDecapPackets OBJECT-TYPE 1059 SYNTAX Counter64 1060 MAX-ACCESS read-only 1061 STATUS current 1062 DESCRIPTION 1063 "The number of LISP packets that were addressed to this RLOC 1064 of the EID-prefix and were decapsulated. 1066 Discontinuities in this monotonically increasing value occur 1067 at re-initialization of the management system. 1068 Discontinuities can also occur as a result of database 1069 mappings getting re-configured or RLOC status changes, which 1070 can be detected by observing the value of 1071 lispMappingDatabaseLocatorRlocTimeStamp." 1072 ::= { lispMappingDatabaseLocatorEntry 11 } 1074 lispMappingDatabaseLocatorRlocEncapOctets OBJECT-TYPE 1075 SYNTAX Counter64 1076 MAX-ACCESS read-only 1077 STATUS current 1078 DESCRIPTION 1079 "The number of octets of LISP packets that were encapsulated 1080 by this device using this RLOC address as the source, and 1081 that were sourced by an address of this EID-prefix. 1083 Discontinuities in this monotonically increasing value occur 1084 at re-initialization of the management system. 1085 Discontinuities can also occur as a result of database 1086 mappings getting re-configured or RLOC status changes, which 1087 can be detected by observing the value of 1088 lispMappingDatabaseLocatorRlocTimeStamp." 1089 ::= { lispMappingDatabaseLocatorEntry 12 } 1091 lispMappingDatabaseLocatorRlocEncapPackets OBJECT-TYPE 1092 SYNTAX Counter64 1093 MAX-ACCESS read-only 1094 STATUS current 1095 DESCRIPTION 1096 "The number of LISP packets that were encapsulated by this 1097 device using this RLOC address as the source, and that were 1098 sourced by an address of this EID-prefix. 1100 Discontinuities in this monotonically increasing value occur 1101 at re-initialization of the management system. 1102 Discontinuities can also occur as a result of database 1103 mappings getting re-configured or RLOC status changes, which 1104 can be detected by observing the value of 1105 lispMappingDatabaseLocatorRlocTimeStamp." 1106 ::= { lispMappingDatabaseLocatorEntry 13 } 1108 lispMapCacheTable OBJECT-TYPE 1109 SYNTAX SEQUENCE OF LispMapCacheEntry 1110 MAX-ACCESS not-accessible 1111 STATUS current 1112 DESCRIPTION 1113 "This table represents the short-lived, on-demand table on 1114 an ITR that stores, tracks, and is responsible for 1115 timing-out and otherwise validating EID-to-RLOC mappings." 1116 REFERENCE 1117 "RFC6830, Section 6.0., Section 12.0." 1118 ::= { lispObjects 6 } 1120 lispMapCacheEntry OBJECT-TYPE 1121 SYNTAX LispMapCacheEntry 1122 MAX-ACCESS not-accessible 1123 STATUS current 1124 DESCRIPTION 1125 "An entry (conceptual row) in the 1126 lispMapCacheTable." 1127 INDEX { lispMapCacheEidLength, 1128 lispMapCacheEid } 1129 ::= { lispMapCacheTable 1 } 1131 LispMapCacheEntry ::= SEQUENCE { 1132 lispMapCacheEidLength Integer32, 1133 lispMapCacheEid LispAddressType, 1134 lispMapCacheEidTimeStamp TimeStamp, 1135 lispMapCacheEidExpiryTime TimeTicks, 1136 lispMapCacheEidState TruthValue, 1137 lispMapCacheEidAuthoritative TruthValue, 1138 lispMapCacheEidDecapOctets Counter64, 1139 lispMapCacheEidDecapPackets Counter64, 1140 lispMapCacheEidEncapOctets Counter64, 1141 lispMapCacheEidEncapPackets Counter64 1142 } 1144 lispMapCacheEidLength OBJECT-TYPE 1145 SYNTAX Integer32 (5..259) 1146 MAX-ACCESS not-accessible 1147 STATUS current 1148 DESCRIPTION 1149 "This object is used to get the octet-length of 1150 lispMapCacheEid." 1151 ::= { lispMapCacheEntry 1 } 1153 lispMapCacheEid OBJECT-TYPE 1154 SYNTAX LispAddressType 1155 MAX-ACCESS not-accessible 1156 STATUS current 1157 DESCRIPTION 1158 "The EID prefix in the mapping cache." 1159 ::= { lispMapCacheEntry 2 } 1161 lispMapCacheEidTimeStamp OBJECT-TYPE 1162 SYNTAX TimeStamp 1163 MAX-ACCESS read-only 1164 STATUS current 1165 DESCRIPTION 1166 "The value of sysUpTime at which the EID Prefix information 1167 represented by this entry was learned by this device. 1169 If this information was present at the most recent 1170 re-initialization of the local management subsystem, then 1171 this object contains a zero value." 1172 DEFVAL { 0 } 1173 ::= { lispMapCacheEntry 3 } 1175 lispMapCacheEidExpiryTime OBJECT-TYPE 1176 SYNTAX TimeTicks 1177 MAX-ACCESS read-only 1178 STATUS current 1179 DESCRIPTION 1180 "The time remaining before the ITR times-out this 1181 EID prefix." 1182 ::= { lispMapCacheEntry 4 } 1184 lispMapCacheEidState OBJECT-TYPE 1185 SYNTAX TruthValue 1186 MAX-ACCESS read-only 1187 STATUS current 1188 DESCRIPTION 1189 "This object is used to indicate the activity of this EID 1190 prefix. If this object is TRUE, then it means this EID 1191 prefix is seeing activity." 1192 ::= { lispMapCacheEntry 5 } 1194 lispMapCacheEidAuthoritative OBJECT-TYPE 1195 SYNTAX TruthValue 1196 MAX-ACCESS read-only 1197 STATUS current 1198 DESCRIPTION 1199 "This object is used to indicate whether the EID prefix was 1200 installed by an authoritative map-reply. If this object is 1201 TRUE, then it means this EID prefix was installed by an 1202 authoritative map-reply." 1203 ::= { lispMapCacheEntry 6 } 1205 lispMapCacheEidDecapOctets OBJECT-TYPE 1206 SYNTAX Counter64 1207 MAX-ACCESS read-only 1208 STATUS current 1209 DESCRIPTION 1210 "The number of octets of LISP packets that were decapsulated 1211 by this device and were sourced from a remote host within 1212 this EID-prefix. 1214 Discontinuities in this monotonically increasing value occur 1215 at re-initialization of the management system. 1216 Discontinuities can also occur as a result of cache being 1217 removed and replaced, which can be detected by observing the 1218 value of lispMapCacheEidTimeStamp." 1219 ::= { lispMapCacheEntry 7 } 1221 lispMapCacheEidDecapPackets OBJECT-TYPE 1222 SYNTAX Counter64 1223 MAX-ACCESS read-only 1224 STATUS current 1225 DESCRIPTION 1226 "The number of LISP packets that were decapsulated by this 1227 device and were sourced from a remote host within this 1228 EID-prefix. 1230 Discontinuities in this monotonically increasing value occur 1231 at re-initialization of the management system. 1232 Discontinuities can also occur as a result of cache being 1233 removed and replaced, which can be detected by observing the 1234 value of lispMapCacheEidTimeStamp." 1235 ::= { lispMapCacheEntry 8 } 1237 lispMapCacheEidEncapOctets OBJECT-TYPE 1238 SYNTAX Counter64 1239 MAX-ACCESS read-only 1240 STATUS current 1241 DESCRIPTION 1242 "The number of octets of LISP packets that were encapsulated 1243 by this device using the given EID-prefix in the map cache. 1245 Discontinuities in this monotonically increasing value occur 1246 at re-initialization of the management system. 1247 Discontinuities can also occur as a result of cache being 1248 removed and replaced, which can be detected by observing the 1249 value of lispMapCacheEidTimeStamp." 1250 ::= { lispMapCacheEntry 9 } 1252 lispMapCacheEidEncapPackets OBJECT-TYPE 1253 SYNTAX Counter64 1254 MAX-ACCESS read-only 1255 STATUS current 1256 DESCRIPTION 1257 "The number of LISP packets that were encapsulated by this 1258 device using the given EID-prefix in the map cache. 1260 Discontinuities in this monotonically increasing value occur 1261 at re-initialization of the management system. 1262 Discontinuities can also occur as a result of cache being 1263 removed and replaced, which can be detected by observing the 1264 value of lispMapCacheEidTimeStamp." 1266 ::= { lispMapCacheEntry 10 } 1268 lispMapCacheLocatorTable OBJECT-TYPE 1269 SYNTAX SEQUENCE OF LispMapCacheLocatorEntry 1270 MAX-ACCESS not-accessible 1271 STATUS current 1272 DESCRIPTION 1273 "This table represents the set of locators per EID prefix 1274 contained in the map-cache table of an ITR." 1275 REFERENCE 1276 "RFC6830, Section 6.3." 1277 ::= { lispObjects 7 } 1279 lispMapCacheLocatorEntry OBJECT-TYPE 1280 SYNTAX LispMapCacheLocatorEntry 1281 MAX-ACCESS not-accessible 1282 STATUS current 1283 DESCRIPTION 1284 "An entry (conceptual row) in the 1285 lispMapCacheLocatorTable." 1286 INDEX { lispMapCacheEidLength, 1287 lispMapCacheEid, 1288 lispMapCacheLocatorRlocLength, 1289 lispMapCacheLocatorRloc } 1290 ::= { lispMapCacheLocatorTable 1 } 1292 LispMapCacheLocatorEntry ::= SEQUENCE { 1293 lispMapCacheLocatorRlocLength Integer32, 1294 lispMapCacheLocatorRloc LispAddressType, 1295 lispMapCacheLocatorRlocPriority Integer32, 1296 lispMapCacheLocatorRlocWeight Integer32, 1297 lispMapCacheLocatorRlocMPriority Integer32, 1298 lispMapCacheLocatorRlocMWeight Integer32, 1299 lispMapCacheLocatorRlocState INTEGER, 1300 lispMapCacheLocatorRlocTimeStamp TimeStamp, 1301 lispMapCacheLocatorRlocLastPriorityChange TimeTicks, 1302 lispMapCacheLocatorRlocLastWeightChange TimeTicks, 1303 lispMapCacheLocatorRlocLastMPriorityChange TimeTicks, 1304 lispMapCacheLocatorRlocLastMWeightChange TimeTicks, 1305 lispMapCacheLocatorRlocLastStateChange TimeTicks, 1306 lispMapCacheLocatorRlocRtt TimeTicks, 1307 lispMapCacheLocatorRlocDecapOctets Counter64, 1308 lispMapCacheLocatorRlocDecapPackets Counter64, 1309 lispMapCacheLocatorRlocEncapOctets Counter64, 1310 lispMapCacheLocatorRlocEncapPackets Counter64 1311 } 1312 lispMapCacheLocatorRlocLength OBJECT-TYPE 1313 SYNTAX Integer32 (5..259) 1314 MAX-ACCESS not-accessible 1315 STATUS current 1316 DESCRIPTION 1317 "This object is used to get the octet-length of 1318 lispMapCacheLocatorRloc." 1319 ::= { lispMapCacheLocatorEntry 1 } 1321 lispMapCacheLocatorRloc OBJECT-TYPE 1322 SYNTAX LispAddressType 1323 MAX-ACCESS not-accessible 1324 STATUS current 1325 DESCRIPTION 1326 "The locator for the EID prefix in the mapping cache." 1327 ::= { lispMapCacheLocatorEntry 2 } 1329 lispMapCacheLocatorRlocPriority OBJECT-TYPE 1330 SYNTAX Integer32 (0..255) 1331 MAX-ACCESS read-only 1332 STATUS current 1333 DESCRIPTION 1334 "The unicast priority of the RLOC for this EID prefix 1335 (0-255); lower more preferred. " 1336 ::= { lispMapCacheLocatorEntry 3 } 1338 lispMapCacheLocatorRlocWeight OBJECT-TYPE 1339 SYNTAX Integer32 (0..100) 1340 MAX-ACCESS read-only 1341 STATUS current 1342 DESCRIPTION 1343 "The unicast weight of the RLOC for this EID prefix 1344 (0 - 100) percentage. " 1345 ::= { lispMapCacheLocatorEntry 4 } 1347 lispMapCacheLocatorRlocMPriority OBJECT-TYPE 1348 SYNTAX Integer32 (0..255) 1349 MAX-ACCESS read-only 1350 STATUS current 1351 DESCRIPTION 1352 "The multicast priority of the RLOC for this EID prefix 1353 (0-255); lower more preferred." 1354 ::= { lispMapCacheLocatorEntry 5 } 1356 lispMapCacheLocatorRlocMWeight OBJECT-TYPE 1357 SYNTAX Integer32 (0..100) 1358 MAX-ACCESS read-only 1359 STATUS current 1360 DESCRIPTION 1361 "The multicast weight of the RLOC for this EID prefix 1362 (0 - 100) percentage." 1363 ::= { lispMapCacheLocatorEntry 6 } 1365 lispMapCacheLocatorRlocState OBJECT-TYPE 1366 SYNTAX INTEGER { 1367 up (1), 1368 down (2), 1369 unreachable (3) 1370 } 1371 MAX-ACCESS read-only 1372 STATUS current 1373 DESCRIPTION 1374 "The state of this RLOC as per this device 1375 (1 = RLOC is up; 2 = RLOC is down; 3 = RLOC is unreachable)." 1376 ::= { lispMapCacheLocatorEntry 7 } 1378 lispMapCacheLocatorRlocTimeStamp OBJECT-TYPE 1379 SYNTAX TimeStamp 1380 MAX-ACCESS read-only 1381 STATUS current 1382 DESCRIPTION 1383 "The value of sysUpTime at which the RLOC of EID prefix 1384 information represented by this entry was learned by 1385 this device. 1387 If this information was present at the most recent 1388 re-initialization of the local management subsystem, 1389 then this object contains a zero value." 1390 DEFVAL { 0 } 1391 ::= { lispMapCacheLocatorEntry 8 } 1393 lispMapCacheLocatorRlocLastPriorityChange OBJECT-TYPE 1394 SYNTAX TimeTicks 1395 MAX-ACCESS read-only 1396 STATUS current 1397 DESCRIPTION 1398 "Time elapsed since the last change of the unicast priority 1399 of the RLOC for this EID prefix. Note that this is 1400 independent of lispMapCacheLocatorRlocTimeStamp." 1401 ::= { lispMapCacheLocatorEntry 9 } 1403 lispMapCacheLocatorRlocLastWeightChange OBJECT-TYPE 1404 SYNTAX TimeTicks 1405 MAX-ACCESS read-only 1406 STATUS current 1407 DESCRIPTION 1408 "Time elapsed since the last change of the unicast weight 1409 of the RLOC for this EID prefix. Note that this is 1410 independent of lispMapCacheLocatorRlocTimeStamp." 1411 ::= { lispMapCacheLocatorEntry 10 } 1413 lispMapCacheLocatorRlocLastMPriorityChange OBJECT-TYPE 1414 SYNTAX TimeTicks 1415 MAX-ACCESS read-only 1416 STATUS current 1417 DESCRIPTION 1418 "Time since the last change of the multicast priority of the 1419 RLOC for this EID prefix." 1420 ::= { lispMapCacheLocatorEntry 11 } 1422 lispMapCacheLocatorRlocLastMWeightChange OBJECT-TYPE 1423 SYNTAX TimeTicks 1424 MAX-ACCESS read-only 1425 STATUS current 1426 DESCRIPTION 1427 "Time since the last change of the multicast weight of the 1428 RLOC for this EID prefix." 1429 ::= { lispMapCacheLocatorEntry 12 } 1431 lispMapCacheLocatorRlocLastStateChange OBJECT-TYPE 1432 SYNTAX TimeTicks 1433 MAX-ACCESS read-only 1434 STATUS current 1435 DESCRIPTION 1436 "Time since the last change of the up/down state of the 1437 RLOC for this EID prefix." 1438 ::= { lispMapCacheLocatorEntry 13 } 1440 lispMapCacheLocatorRlocRtt OBJECT-TYPE 1441 SYNTAX TimeTicks 1442 MAX-ACCESS read-only 1443 STATUS current 1444 DESCRIPTION 1445 "Round trip time of RLOC probe and map-reply for this RLOC 1446 address for this prefix." 1447 ::= { lispMapCacheLocatorEntry 14 } 1449 lispMapCacheLocatorRlocDecapOctets OBJECT-TYPE 1450 SYNTAX Counter64 1451 MAX-ACCESS read-only 1452 STATUS current 1453 DESCRIPTION 1454 "The number of octets of LISP packets that were decapsulated 1455 by this device and were sourced from a remote host within 1456 this EID-prefix and were encapsulated for this RLOC. 1458 Discontinuities in this monotonically increasing value occur 1459 at re-initialization of the management system. 1460 Discontinuities can also occur as a result of RLOC of cache 1461 being removed and replaced, which can be detected by 1462 observing the value of lispMapCacheLocatorRlocTimeStamp." 1463 ::= { lispMapCacheLocatorEntry 15 } 1465 lispMapCacheLocatorRlocDecapPackets OBJECT-TYPE 1466 SYNTAX Counter64 1467 MAX-ACCESS read-only 1468 STATUS current 1469 DESCRIPTION 1470 "The number of LISP packets that were decapsulated by this 1471 device and were sourced from a remote host within this 1472 EID-prefix and were encapsulated for this RLOC. 1474 Discontinuities in this monotonically increasing value occur 1475 at re-initialization of the management system. 1476 Discontinuities can also occur as a result of RLOC of cache 1477 being removed and replaced, which can be detected by 1478 observing the value of lispMapCacheLocatorRlocTimeStamp." 1479 ::= { lispMapCacheLocatorEntry 16 } 1481 lispMapCacheLocatorRlocEncapOctets OBJECT-TYPE 1482 SYNTAX Counter64 1483 MAX-ACCESS read-only 1484 STATUS current 1485 DESCRIPTION 1486 "The number of octets of LISP packets that matched this 1487 EID prefix and were encapsulated using this RLOC address. 1489 Discontinuities in this monotonically increasing value occur 1490 at re-initialization of the management system. 1491 Discontinuities can also occur as a result of RLOC of cache 1492 being removed and replaced, which can be detected by 1493 observing the value of lispMapCacheLocatorRlocTimeStamp." 1494 ::= { lispMapCacheLocatorEntry 17 } 1496 lispMapCacheLocatorRlocEncapPackets OBJECT-TYPE 1497 SYNTAX Counter64 1498 MAX-ACCESS read-only 1499 STATUS current 1500 DESCRIPTION 1501 "The number of LISP packets that matched this EID prefix 1502 and were encapsulated using this RLOC address. 1504 Discontinuities in this monotonically increasing value occur 1505 at re-initialization of the management system. 1506 Discontinuities can also occur as a result of RLOC of cache 1507 being removed and replaced, which can be detected by 1508 observing the value of lispMapCacheLocatorRlocTimeStamp." 1509 ::= { lispMapCacheLocatorEntry 18 } 1511 lispConfiguredLocatorTable OBJECT-TYPE 1512 SYNTAX SEQUENCE OF LispConfiguredLocatorEntry 1513 MAX-ACCESS not-accessible 1514 STATUS current 1515 DESCRIPTION 1516 "This table represents the set of routing locators 1517 configured on this device. Note that the Proxy-ITR 1518 configured addresses are treated as routing locators 1519 and therefore can be part of this table." 1520 REFERENCE 1521 "RFC6830, Section 6.3." 1522 ::= { lispObjects 8 } 1524 lispConfiguredLocatorEntry OBJECT-TYPE 1525 SYNTAX LispConfiguredLocatorEntry 1526 MAX-ACCESS not-accessible 1527 STATUS current 1528 DESCRIPTION 1529 "An entry (conceptual row) in the 1530 lispConfiguredLocatorTable." 1531 INDEX { lispConfiguredLocatorRlocLength, 1532 lispConfiguredLocatorRloc } 1533 ::= { lispConfiguredLocatorTable 1 } 1535 LispConfiguredLocatorEntry ::= SEQUENCE { 1536 lispConfiguredLocatorRlocLength Integer32, 1537 lispConfiguredLocatorRloc LispAddressType, 1538 lispConfiguredLocatorRlocState INTEGER, 1539 lispConfiguredLocatorRlocLocal INTEGER, 1540 lispConfiguredLocatorRlocTimeStamp TimeStamp, 1541 lispConfiguredLocatorRlocDecapOctets Counter64, 1542 lispConfiguredLocatorRlocDecapPackets Counter64, 1543 lispConfiguredLocatorRlocEncapOctets Counter64, 1544 lispConfiguredLocatorRlocEncapPackets Counter64 1545 } 1547 lispConfiguredLocatorRlocLength OBJECT-TYPE 1548 SYNTAX Integer32 (5..259) 1549 MAX-ACCESS not-accessible 1550 STATUS current 1551 DESCRIPTION 1552 "This object is used to get the octet-length of 1553 lispConfiguredLocatorRloc." 1554 ::= { lispConfiguredLocatorEntry 1 } 1556 lispConfiguredLocatorRloc OBJECT-TYPE 1557 SYNTAX LispAddressType 1558 MAX-ACCESS not-accessible 1559 STATUS current 1560 DESCRIPTION 1561 "This object is a RLOC address configured on this device. 1562 It can be an RLOC that is local to this device or can be an 1563 RLOC which belongs to another ETR within the same site. 1564 Proxy-ITR address is treated as an RLOC." 1565 ::= { lispConfiguredLocatorEntry 2 } 1567 lispConfiguredLocatorRlocState OBJECT-TYPE 1568 SYNTAX INTEGER { 1569 up (1), 1570 down (2), 1571 unreachable (3) 1572 } 1573 MAX-ACCESS read-only 1574 STATUS current 1575 DESCRIPTION 1576 "The state of this RLOC as per this device. (1 = RLOC is up; 1577 2 = RLOC is down; 3 = RLOC is unreachable)." 1578 ::= { lispConfiguredLocatorEntry 3 } 1580 lispConfiguredLocatorRlocLocal OBJECT-TYPE 1581 SYNTAX INTEGER { 1582 siteself (1), 1583 sitelocal (2) 1584 } 1585 MAX-ACCESS read-only 1586 STATUS current 1587 DESCRIPTION 1588 "Indicates whether the RLOC is local to this device (or 1589 remote, meaning local to another device in the same LISP 1590 site). (1 = RLOC is an address on this device; 2 = RLOC is 1591 an address on another device)." 1592 ::= { lispConfiguredLocatorEntry 4 } 1594 lispConfiguredLocatorRlocTimeStamp OBJECT-TYPE 1595 SYNTAX TimeStamp 1596 MAX-ACCESS read-only 1597 STATUS current 1598 DESCRIPTION 1599 "The value of sysUpTime at which the RLOC was configured on 1600 this device. 1602 If this information was present at the most recent 1603 re-initialization of the local management subsystem, then 1604 this object contains a zero value." 1605 DEFVAL { 0 } 1606 ::= { lispConfiguredLocatorEntry 5 } 1608 lispConfiguredLocatorRlocDecapOctets OBJECT-TYPE 1609 SYNTAX Counter64 1610 MAX-ACCESS read-only 1611 STATUS current 1612 DESCRIPTION 1613 "The number of octets of LISP packets that were addressed to 1614 this RLOC and were decapsulated. 1616 Discontinuities in this monotonically increasing value occur 1617 at re-initialization of the management system. 1618 Discontinuities can also occur as a result of configured 1619 RLOC being removed and replaced, which can be detected by 1620 observing the value of lispConfiguredLocatorRlocTimeStamp." 1621 ::= { lispConfiguredLocatorEntry 6 } 1623 lispConfiguredLocatorRlocDecapPackets OBJECT-TYPE 1624 SYNTAX Counter64 1625 MAX-ACCESS read-only 1626 STATUS current 1627 DESCRIPTION 1628 "The number of LISP packets that were addressed to this RLOC 1629 and were decapsulated. 1631 Discontinuities in this monotonically increasing value occur 1632 at re-initialization of the management system. 1633 Discontinuities can also occur as a result of configured 1634 RLOC being removed and replaced, which can be detected by 1635 observing the value of lispConfiguredLocatorRlocTimeStamp." 1636 ::= { lispConfiguredLocatorEntry 7 } 1638 lispConfiguredLocatorRlocEncapOctets OBJECT-TYPE 1639 SYNTAX Counter64 1640 MAX-ACCESS read-only 1641 STATUS current 1642 DESCRIPTION 1643 "The number of octets of LISP packets that were encapsulated 1644 by this device using this RLOC address as the source. 1646 Discontinuities in this monotonically increasing value occur 1647 at re-initialization of the management system. 1648 Discontinuities can also occur as a result of configured 1649 RLOC being removed and replaced, which can be detected by 1650 observing the value of lispConfiguredLocatorRlocTimeStamp." 1651 ::= { lispConfiguredLocatorEntry 8 } 1653 lispConfiguredLocatorRlocEncapPackets OBJECT-TYPE 1654 SYNTAX Counter64 1655 MAX-ACCESS read-only 1656 STATUS current 1657 DESCRIPTION 1658 "The number of LISP packets that were encapsulated by this 1659 device using this RLOC address as the source. 1661 Discontinuities in this monotonically increasing value occur 1662 at re-initialization of the management system. 1663 Discontinuities can also occur as a result of configured 1664 RLOC being removed and replaced, which can be detected by 1665 observing the value of lispConfiguredLocatorRlocTimeStamp." 1666 ::= { lispConfiguredLocatorEntry 9 } 1668 lispEidRegistrationTable OBJECT-TYPE 1669 SYNTAX SEQUENCE OF LispEidRegistrationEntry 1670 MAX-ACCESS not-accessible 1671 STATUS current 1672 DESCRIPTION 1673 "This table provides the properties of each LISP EID prefix 1674 that is registered with this device when configured to be 1675 a Map-Server." 1676 REFERENCE 1677 "RFC6833, Section 4.0." 1678 ::= { lispObjects 9 } 1680 lispEidRegistrationEntry OBJECT-TYPE 1681 SYNTAX LispEidRegistrationEntry 1682 MAX-ACCESS not-accessible 1683 STATUS current 1684 DESCRIPTION 1685 "An entry (conceptual row) in the lispEidRegistrationTable." 1686 INDEX { lispEidRegistrationEidLength, 1687 lispEidRegistrationEid } 1688 ::= { lispEidRegistrationTable 1 } 1690 LispEidRegistrationEntry ::= SEQUENCE { 1691 lispEidRegistrationEidLength Integer32, 1692 lispEidRegistrationEid LispAddressType, 1693 lispEidRegistrationSiteName OCTET STRING, 1694 lispEidRegistrationSiteDescription OCTET STRING, 1695 lispEidRegistrationIsRegistered TruthValue, 1696 lispEidRegistrationFirstTimeStamp TimeStamp, 1697 lispEidRegistrationLastTimeStamp TimeStamp, 1698 lispEidRegistrationLastRegisterSenderLength Integer32, 1699 lispEidRegistrationLastRegisterSender LispAddressType, 1700 lispEidRegistrationAuthenticationErrors Counter64, 1701 lispEidRegistrationRlocsMismatch Counter64 1702 } 1704 lispEidRegistrationEidLength OBJECT-TYPE 1705 SYNTAX Integer32 (5..259) 1706 MAX-ACCESS not-accessible 1707 STATUS current 1708 DESCRIPTION 1709 "This object is used to get the octet-length of 1710 lispEidRegistrationEid." 1711 ::= { lispEidRegistrationEntry 1 } 1713 lispEidRegistrationEid OBJECT-TYPE 1714 SYNTAX LispAddressType 1715 MAX-ACCESS not-accessible 1716 STATUS current 1717 DESCRIPTION 1718 "The EID prefix that is being registered." 1719 ::= { lispEidRegistrationEntry 2 } 1721 lispEidRegistrationSiteName OBJECT-TYPE 1722 SYNTAX OCTET STRING (SIZE(0..63)) 1723 MAX-ACCESS read-only 1724 STATUS current 1725 DESCRIPTION 1726 "Site name used by a Map-Server to distinguish different 1727 LISP sites that are registering with it." 1728 ::= { lispEidRegistrationEntry 3 } 1730 lispEidRegistrationSiteDescription OBJECT-TYPE 1731 SYNTAX OCTET STRING (SIZE(0..255)) 1732 MAX-ACCESS read-only 1733 STATUS current 1734 DESCRIPTION 1735 "Description for a site name used by a Map-Server. The EID 1736 prefix that is being registered belongs to this site." 1737 ::= { lispEidRegistrationEntry 4 } 1739 lispEidRegistrationIsRegistered OBJECT-TYPE 1740 SYNTAX TruthValue 1741 MAX-ACCESS read-only 1742 STATUS current 1743 DESCRIPTION 1744 "Indicates the registration status of the given EID prefix. 1745 If this object is TRUE, then it means the EID prefix is 1746 registered. 1748 The value FALSE implies the EID prefix is not registered 1749 with the Map Server. There are multiple scenarios when this 1750 could happen like authentication failures, routing problems, 1751 misconfigs to name a few." 1752 ::= { lispEidRegistrationEntry 5 } 1754 lispEidRegistrationFirstTimeStamp OBJECT-TYPE 1755 SYNTAX TimeStamp 1756 MAX-ACCESS read-only 1757 STATUS current 1758 DESCRIPTION 1759 "The value of sysUpTime at which the first valid register 1760 message for the EID Prefix information represented by this 1761 entry was received by this device. 1763 If this information was present at the most recent 1764 re-initialization of the local management subsystem, then 1765 this object contains a zero value." 1766 DEFVAL { 0 } 1767 ::= { lispEidRegistrationEntry 6 } 1769 lispEidRegistrationLastTimeStamp OBJECT-TYPE 1770 SYNTAX TimeStamp 1771 MAX-ACCESS read-only 1772 STATUS current 1773 DESCRIPTION 1774 "The value of sysUpTime at which the last valid register 1775 message for the EID Prefix information represented by this 1776 entry was received by this device. 1778 If this information was present at the most recent 1779 re-initialization of the local management subsystem, then 1780 this object contains a zero value." 1781 DEFVAL { 0 } 1782 ::= { lispEidRegistrationEntry 7 } 1784 lispEidRegistrationLastRegisterSenderLength OBJECT-TYPE 1785 SYNTAX Integer32 (5..259) 1786 MAX-ACCESS read-only 1787 STATUS current 1788 DESCRIPTION 1789 "This object is used to get the octet-length of 1790 lispEidRegistrationLastRegisterSender, the next 1791 object." 1792 ::= { lispEidRegistrationEntry 8 } 1794 lispEidRegistrationLastRegisterSender OBJECT-TYPE 1795 SYNTAX LispAddressType 1796 MAX-ACCESS read-only 1797 STATUS current 1798 DESCRIPTION 1799 "Source address of the last valid register message for the 1800 given EID prefix that was received by this device." 1801 ::= { lispEidRegistrationEntry 9 } 1803 lispEidRegistrationAuthenticationErrors OBJECT-TYPE 1804 SYNTAX Counter64 1805 MAX-ACCESS read-only 1806 STATUS current 1807 DESCRIPTION 1808 "Count of total authentication errors of map-registers 1809 received for the given EID prefix. 1811 Discontinuities in this monotonically increasing value occur 1812 at re-initialization of the management system. 1813 Discontinuities can also occur as a result of site config 1814 changes, which can be detected by observing the value of 1815 lispEidRegistrationFirstTimeStamp." 1816 ::= { lispEidRegistrationEntry 10 } 1818 lispEidRegistrationRlocsMismatch OBJECT-TYPE 1819 SYNTAX Counter64 1820 MAX-ACCESS read-only 1821 STATUS current 1822 DESCRIPTION 1823 "Count of total map-registers received that had at least one 1824 RLOC that was not in the allowed list of RLOCs for the given 1825 EID prefix. 1827 Discontinuities in this monotonically increasing value occur 1828 at re-initialization of the management system. 1829 Discontinuities can also occur as a result of site config 1830 changes, which can be detected by observing the value of 1831 lispEidRegistrationFirstTimeStamp." 1832 ::= { lispEidRegistrationEntry 11 } 1834 lispEidRegistrationEtrTable OBJECT-TYPE 1835 SYNTAX SEQUENCE OF LispEidRegistrationEtrEntry 1836 MAX-ACCESS not-accessible 1837 STATUS current 1838 DESCRIPTION 1839 "This table provides the properties of ETRs that register 1840 the given EID prefix with this device when configured to 1841 be a Map-Server." 1842 REFERENCE 1843 "RFC6830, Section 6.1." 1844 ::= { lispObjects 10 } 1846 lispEidRegistrationEtrEntry OBJECT-TYPE 1847 SYNTAX LispEidRegistrationEtrEntry 1848 MAX-ACCESS not-accessible 1849 STATUS current 1850 DESCRIPTION 1851 "An entry (conceptual row) in the 1852 lispEidRegistrationEtrTable." 1853 INDEX { lispEidRegistrationEidLength, 1854 lispEidRegistrationEid, 1855 lispEidRegistrationEtrSenderLength, 1856 lispEidRegistrationEtrSender } 1857 ::= { lispEidRegistrationEtrTable 1 } 1859 LispEidRegistrationEtrEntry ::= SEQUENCE { 1860 lispEidRegistrationEtrSenderLength Integer32, 1861 lispEidRegistrationEtrSender LispAddressType, 1862 lispEidRegistrationEtrLastTimeStamp TimeStamp, 1863 lispEidRegistrationEtrTtl Unsigned32, 1864 lispEidRegistrationEtrProxyReply TruthValue, 1865 lispEidRegistrationEtrWantsMapNotify TruthValue 1866 } 1868 lispEidRegistrationEtrSenderLength OBJECT-TYPE 1869 SYNTAX Integer32 (5..259) 1870 MAX-ACCESS not-accessible 1871 STATUS current 1872 DESCRIPTION 1873 "This object is used to get the octet-length of 1874 lispEidRegistrationEtrSender." 1875 ::= { lispEidRegistrationEtrEntry 1 } 1877 lispEidRegistrationEtrSender OBJECT-TYPE 1878 SYNTAX LispAddressType 1879 MAX-ACCESS not-accessible 1880 STATUS current 1881 DESCRIPTION 1882 "Source address of the ETR that is sending valid register 1883 messages for this EID prefix to this device." 1885 ::= { lispEidRegistrationEtrEntry 2 } 1887 lispEidRegistrationEtrLastTimeStamp OBJECT-TYPE 1888 SYNTAX TimeStamp 1889 MAX-ACCESS read-only 1890 STATUS current 1891 DESCRIPTION 1892 "The value of sysUpTime at which the last valid register 1893 message from this ETR for the EID Prefix information 1894 represented by this entry was received by this device. 1896 If this information was present at the most recent 1897 re-initialization of the local management subsystem, 1898 then this object contains a zero value." 1899 DEFVAL { 0 } 1900 ::= { lispEidRegistrationEtrEntry 3 } 1902 lispEidRegistrationEtrTtl OBJECT-TYPE 1903 SYNTAX Unsigned32 1904 MAX-ACCESS read-only 1905 STATUS current 1906 DESCRIPTION 1907 "The Record TTL of the registering ETR device for this 1908 EID prefix." 1909 ::= { lispEidRegistrationEtrEntry 4 } 1911 lispEidRegistrationEtrProxyReply OBJECT-TYPE 1912 SYNTAX TruthValue 1913 MAX-ACCESS read-only 1914 STATUS current 1915 DESCRIPTION 1916 "Indicates proxy-replying status of the registering ETR for 1917 this EID prefix. If this object is TRUE, then it means the 1918 Map-Server can proxy-reply." 1919 ::= { lispEidRegistrationEtrEntry 5 } 1921 lispEidRegistrationEtrWantsMapNotify OBJECT-TYPE 1922 SYNTAX TruthValue 1923 MAX-ACCESS read-only 1924 STATUS current 1925 DESCRIPTION 1926 "Indicates whether the EID prefix wants Map-Notifications. 1927 If this object is TRUE, then it means the EID prefix wants 1928 Map-Notifications." 1929 ::= { lispEidRegistrationEtrEntry 6 } 1931 lispEidRegistrationLocatorTable OBJECT-TYPE 1932 SYNTAX SEQUENCE OF LispEidRegistrationLocatorEntry 1933 MAX-ACCESS not-accessible 1934 STATUS current 1935 DESCRIPTION 1936 "This table provides the properties of all locators per 1937 LISP site that are served by this device when configured 1938 to be a Map-Server." 1939 REFERENCE 1940 "RFC6830, Section 6.1." 1941 ::= { lispObjects 11 } 1943 lispEidRegistrationLocatorEntry OBJECT-TYPE 1944 SYNTAX LispEidRegistrationLocatorEntry 1945 MAX-ACCESS not-accessible 1946 STATUS current 1947 DESCRIPTION 1948 "An entry (conceptual row) in the 1949 lispEidRegistrationLocatorTable." 1950 INDEX { lispEidRegistrationEidLength, 1951 lispEidRegistrationEid, 1952 lispEidRegistrationEtrSenderLength, 1953 lispEidRegistrationEtrSender, 1954 lispEidRegistrationLocatorRlocLength, 1955 lispEidRegistrationLocatorRloc } 1956 ::= { lispEidRegistrationLocatorTable 1 } 1958 LispEidRegistrationLocatorEntry ::= SEQUENCE { 1959 lispEidRegistrationLocatorRlocLength Integer32, 1960 lispEidRegistrationLocatorRloc LispAddressType, 1961 lispEidRegistrationLocatorRlocState INTEGER, 1962 lispEidRegistrationLocatorIsLocal TruthValue, 1963 lispEidRegistrationLocatorPriority Integer32, 1964 lispEidRegistrationLocatorWeight Integer32, 1965 lispEidRegistrationLocatorMPriority Integer32, 1966 lispEidRegistrationLocatorMWeight Integer32 1967 } 1969 lispEidRegistrationLocatorRlocLength OBJECT-TYPE 1970 SYNTAX Integer32 (5..259) 1971 MAX-ACCESS not-accessible 1972 STATUS current 1973 DESCRIPTION 1974 "This object is used to get the octet-length of 1975 lispEidRegistrationLocatorRloc." 1976 ::= { lispEidRegistrationLocatorEntry 1 } 1978 lispEidRegistrationLocatorRloc OBJECT-TYPE 1979 SYNTAX LispAddressType 1980 MAX-ACCESS not-accessible 1981 STATUS current 1982 DESCRIPTION 1983 "The locator of the given EID prefix being registered by the 1984 given ETR with this device." 1985 ::= { lispEidRegistrationLocatorEntry 2 } 1987 lispEidRegistrationLocatorRlocState OBJECT-TYPE 1988 SYNTAX INTEGER { 1989 up (1), 1990 down (2) 1991 } 1992 MAX-ACCESS read-only 1993 STATUS current 1994 DESCRIPTION 1995 "The cached state of this RLOC received in map-register from 1996 the ETR by the device, in the capacity of a Map-Server. 1997 Value 1 refers to up, value 2 refers to down." 1998 ::= { lispEidRegistrationLocatorEntry 3 } 2000 lispEidRegistrationLocatorIsLocal OBJECT-TYPE 2001 SYNTAX TruthValue 2002 MAX-ACCESS read-only 2003 STATUS current 2004 DESCRIPTION 2005 "Indicates if the given locator is local to the registering 2006 ETR. If this object is TRUE, it means the locator is local." 2007 ::= { lispEidRegistrationLocatorEntry 4 } 2009 lispEidRegistrationLocatorPriority OBJECT-TYPE 2010 SYNTAX Integer32 (0..255) 2011 MAX-ACCESS read-only 2012 STATUS current 2013 DESCRIPTION 2014 "The unicast priority of the RLOC for this EID prefix in the 2015 register message sent by the given ETR." 2016 ::= { lispEidRegistrationLocatorEntry 5 } 2018 lispEidRegistrationLocatorWeight OBJECT-TYPE 2019 SYNTAX Integer32 (0..100) 2020 MAX-ACCESS read-only 2021 STATUS current 2022 DESCRIPTION 2023 "The unicast weight of the RLOC for this EID prefix in the 2024 register message sent by the given ETR." 2025 ::= { lispEidRegistrationLocatorEntry 6 } 2027 lispEidRegistrationLocatorMPriority OBJECT-TYPE 2028 SYNTAX Integer32 (0..255) 2029 MAX-ACCESS read-only 2030 STATUS current 2031 DESCRIPTION 2032 "The multicast priority of the RLOC for this EID prefix in 2033 the register message sent by the given ETR." 2034 ::= { lispEidRegistrationLocatorEntry 7 } 2036 lispEidRegistrationLocatorMWeight OBJECT-TYPE 2037 SYNTAX Integer32 (0..100) 2038 MAX-ACCESS read-only 2039 STATUS current 2040 DESCRIPTION 2041 "The multicast weight of the RLOC for this EID prefix in the 2042 register message sent by the given ETR." 2043 ::= { lispEidRegistrationLocatorEntry 8 } 2045 lispUseMapServerTable OBJECT-TYPE 2046 SYNTAX SEQUENCE OF LispUseMapServerEntry 2047 MAX-ACCESS not-accessible 2048 STATUS current 2049 DESCRIPTION 2050 "This table provides the properties of the map-server(s) 2051 with which this device is configured to register." 2052 REFERENCE 2053 "RFC6833, Section 4.3." 2054 ::= { lispObjects 12 } 2056 lispUseMapServerEntry OBJECT-TYPE 2057 SYNTAX LispUseMapServerEntry 2058 MAX-ACCESS not-accessible 2059 STATUS current 2060 DESCRIPTION 2061 "An entry (conceptual row) in the lispUseMapServerTable." 2062 INDEX { lispUseMapServerAddressLength, 2063 lispUseMapServerAddress } 2064 ::= { lispUseMapServerTable 1 } 2066 LispUseMapServerEntry ::= SEQUENCE { 2067 lispUseMapServerAddressLength Integer32, 2068 lispUseMapServerAddress LispAddressType, 2069 lispUseMapServerState INTEGER 2070 } 2072 lispUseMapServerAddressLength OBJECT-TYPE 2073 SYNTAX Integer32 (5..259) 2074 MAX-ACCESS not-accessible 2075 STATUS current 2076 DESCRIPTION 2077 "This object is used to get the octet-length of 2078 lispUseMapServerAddress." 2079 ::= { lispUseMapServerEntry 1 } 2081 lispUseMapServerAddress OBJECT-TYPE 2082 SYNTAX LispAddressType 2083 MAX-ACCESS not-accessible 2084 STATUS current 2085 DESCRIPTION 2086 "Address of Map-Server configured on this device." 2087 ::= { lispUseMapServerEntry 2 } 2089 lispUseMapServerState OBJECT-TYPE 2090 SYNTAX INTEGER { 2091 up (1), 2092 down (2), 2093 unreachable (3) 2094 } 2095 MAX-ACCESS read-only 2096 STATUS current 2097 DESCRIPTION 2098 "State of this Map-Server configured on this device 2099 (1 = Map-Server is up; 2 = Map-Server is down)." 2100 ::= { lispUseMapServerEntry 3 } 2102 lispUseMapResolverTable OBJECT-TYPE 2103 SYNTAX SEQUENCE OF LispUseMapResolverEntry 2104 MAX-ACCESS not-accessible 2105 STATUS current 2106 DESCRIPTION 2107 "This table provides the properties of the map-resolver(s) 2108 this device is configured to use." 2109 REFERENCE 2110 "RFC6833, Section 4.4." 2111 ::= { lispObjects 13 } 2113 lispUseMapResolverEntry OBJECT-TYPE 2114 SYNTAX LispUseMapResolverEntry 2115 MAX-ACCESS not-accessible 2116 STATUS current 2117 DESCRIPTION 2118 "An entry (conceptual row) in the 2119 lispUseMapResolverTable." 2120 INDEX { lispUseMapResolverAddressLength, 2121 lispUseMapResolverAddress } 2122 ::= { lispUseMapResolverTable 1 } 2124 LispUseMapResolverEntry ::= SEQUENCE { 2125 lispUseMapResolverAddressLength Integer32, 2126 lispUseMapResolverAddress LispAddressType, 2127 lispUseMapResolverState INTEGER 2128 } 2130 lispUseMapResolverAddressLength OBJECT-TYPE 2131 SYNTAX Integer32 (5..259) 2132 MAX-ACCESS not-accessible 2133 STATUS current 2134 DESCRIPTION 2135 "This object is used to get the octet-length of 2136 lispUseMapResolverAddress." 2137 ::= { lispUseMapResolverEntry 1 } 2139 lispUseMapResolverAddress OBJECT-TYPE 2140 SYNTAX LispAddressType 2141 MAX-ACCESS not-accessible 2142 STATUS current 2143 DESCRIPTION 2144 "Address of map-resolver configured on this device." 2145 ::= { lispUseMapResolverEntry 2 } 2147 lispUseMapResolverState OBJECT-TYPE 2148 SYNTAX INTEGER { 2149 up (1), 2150 down (2) 2151 } 2152 MAX-ACCESS read-only 2153 STATUS current 2154 DESCRIPTION 2155 "State of this Map-Resolver configured on this device 2156 (1 = Map-Resolver is up; 2 = Map-Resolver is down)." 2157 ::= { lispUseMapResolverEntry 3 } 2159 lispUseProxyEtrTable OBJECT-TYPE 2160 SYNTAX SEQUENCE OF LispUseProxyEtrEntry 2161 MAX-ACCESS not-accessible 2162 STATUS current 2163 DESCRIPTION 2164 "This table provides the properties of all Proxy ETRs that 2165 this device is configured to use." 2166 REFERENCE 2167 "RFC6830, Section 6.0." 2168 ::= { lispObjects 14 } 2170 lispUseProxyEtrEntry OBJECT-TYPE 2171 SYNTAX LispUseProxyEtrEntry 2172 MAX-ACCESS not-accessible 2173 STATUS current 2174 DESCRIPTION 2175 "An entry (conceptual row) in the 2176 lispUseProxyEtrTable." 2177 INDEX { lispUseProxyEtrAddressLength, 2178 lispUseProxyEtrAddress } 2179 ::= { lispUseProxyEtrTable 1 } 2181 LispUseProxyEtrEntry ::= SEQUENCE { 2182 lispUseProxyEtrAddressLength Integer32, 2183 lispUseProxyEtrAddress LispAddressType, 2184 lispUseProxyEtrPriority Integer32, 2185 lispUseProxyEtrWeight Integer32, 2186 lispUseProxyEtrMPriority Integer32, 2187 lispUseProxyEtrMWeight Integer32, 2188 lispUseProxyEtrState INTEGER 2189 } 2191 lispUseProxyEtrAddressLength OBJECT-TYPE 2192 SYNTAX Integer32 (5..259) 2193 MAX-ACCESS not-accessible 2194 STATUS current 2195 DESCRIPTION 2196 "This object is used to get the octet-length of 2197 lispUseProxyEtrAddress." 2198 ::= { lispUseProxyEtrEntry 1 } 2200 lispUseProxyEtrAddress OBJECT-TYPE 2201 SYNTAX LispAddressType 2202 MAX-ACCESS not-accessible 2203 STATUS current 2204 DESCRIPTION 2205 "Address of Proxy ETR configured on this device." 2206 ::= { lispUseProxyEtrEntry 2 } 2208 lispUseProxyEtrPriority OBJECT-TYPE 2209 SYNTAX Integer32 (0..255) 2210 MAX-ACCESS read-only 2211 STATUS current 2212 DESCRIPTION 2213 "The unicast priority of the PETR locator." 2214 ::= { lispUseProxyEtrEntry 3 } 2216 lispUseProxyEtrWeight OBJECT-TYPE 2217 SYNTAX Integer32 (0..100) 2218 MAX-ACCESS read-only 2219 STATUS current 2220 DESCRIPTION 2221 "The unicast weight of the PETR locator." 2222 ::= { lispUseProxyEtrEntry 4 } 2224 lispUseProxyEtrMPriority OBJECT-TYPE 2225 SYNTAX Integer32 (0..255) 2226 MAX-ACCESS read-only 2227 STATUS current 2228 DESCRIPTION 2229 "The multicast priority of the PETR locator." 2230 ::= { lispUseProxyEtrEntry 5 } 2232 lispUseProxyEtrMWeight OBJECT-TYPE 2233 SYNTAX Integer32 (0..100) 2234 MAX-ACCESS read-only 2235 STATUS current 2236 DESCRIPTION 2237 "The multicast weight of the PETR locator." 2238 ::= { lispUseProxyEtrEntry 6 } 2240 lispUseProxyEtrState OBJECT-TYPE 2241 SYNTAX INTEGER { 2242 down (0), 2243 up (1) 2244 } 2245 MAX-ACCESS read-only 2246 STATUS current 2247 DESCRIPTION 2248 "State of this Proxy ETR configured on this device 2249 (0 = Proxy ETR is down; 1 = Proxy ETR is up)." 2250 ::= { lispUseProxyEtrEntry 7 } 2252 -- 2253 -- Conformance Information 2254 -- 2256 lispCompliances OBJECT IDENTIFIER ::= { lispConformance 1 } 2257 lispGroups OBJECT IDENTIFIER ::= { lispConformance 2 } 2259 -- 2260 -- Compliance Statements 2261 -- 2262 lispMIBComplianceEtr MODULE-COMPLIANCE 2263 STATUS current 2264 DESCRIPTION 2265 "The compliance statement for LISP ETRs. It conveys 2266 information if device supports ETR feature, and relevant 2267 state associated with that feature." 2268 MODULE -- this module 2269 MANDATORY-GROUPS { lispMIBEtrGroup } 2271 GROUP lispMIBItrGroup 2272 DESCRIPTION 2273 "This group is optional." 2275 GROUP lispMIBPetrGroup 2276 DESCRIPTION 2277 "This group is optional." 2279 GROUP lispMIBPitrGroup 2280 DESCRIPTION 2281 "This group is optional." 2283 GROUP lispMIBMapServerGroup 2284 DESCRIPTION 2285 "This group is optional." 2287 GROUP lispMIBMapResolverGroup 2288 DESCRIPTION 2289 "This group is optional." 2291 GROUP lispMIBEtrExtendedGroup 2292 DESCRIPTION 2293 "This group is optional." 2295 GROUP lispMIBItrExtendedGroup 2296 DESCRIPTION 2297 "This group is optional." 2299 GROUP lispMIBMapServerExtendedGroup 2300 DESCRIPTION 2301 "This group is optional." 2303 GROUP lispMIBTuningParametersGroup 2304 DESCRIPTION 2305 "This group is optional." 2307 GROUP lispMIBEncapStatisticsGroup 2308 DESCRIPTION 2309 "This group is optional." 2311 GROUP lispMIBDecapStatisticsGroup 2312 DESCRIPTION 2313 "This group is optional." 2315 GROUP lispMIBDiagnosticsGroup 2316 DESCRIPTION 2317 "This group is optional." 2319 GROUP lispMIBVrfGroup 2320 DESCRIPTION 2321 "This group is optional." 2323 ::= { lispCompliances 1 } 2325 lispMIBComplianceItr MODULE-COMPLIANCE 2326 STATUS current 2327 DESCRIPTION 2328 "The compliance statement for LISP ITRs. It conveys 2329 information if device supports ITR feature, and any 2330 state associated with that feature." 2331 MODULE -- this module 2332 MANDATORY-GROUPS { lispMIBItrGroup } 2334 GROUP lispMIBEtrGroup 2335 DESCRIPTION 2336 "This group is optional." 2338 GROUP lispMIBPetrGroup 2339 DESCRIPTION 2340 "This group is optional." 2342 GROUP lispMIBPitrGroup 2343 DESCRIPTION 2344 "This group is optional." 2346 GROUP lispMIBMapServerGroup 2347 DESCRIPTION 2348 "This group is optional." 2350 GROUP lispMIBMapResolverGroup 2351 DESCRIPTION 2352 "This group is optional." 2354 GROUP lispMIBEtrExtendedGroup 2355 DESCRIPTION 2356 "This group is optional." 2358 GROUP lispMIBItrExtendedGroup 2359 DESCRIPTION 2360 "This group is optional." 2362 GROUP lispMIBMapServerExtendedGroup 2363 DESCRIPTION 2364 "This group is optional." 2366 GROUP lispMIBTuningParametersGroup 2367 DESCRIPTION 2368 "This group is optional." 2370 GROUP lispMIBEncapStatisticsGroup 2371 DESCRIPTION 2372 "This group is optional." 2374 GROUP lispMIBDecapStatisticsGroup 2375 DESCRIPTION 2376 "This group is optional." 2378 GROUP lispMIBDiagnosticsGroup 2379 DESCRIPTION 2380 "This group is optional." 2382 GROUP lispMIBVrfGroup 2383 DESCRIPTION 2384 "This group is optional." 2386 ::= { lispCompliances 2 } 2388 lispMIBCompliancePetr MODULE-COMPLIANCE 2389 STATUS current 2390 DESCRIPTION 2391 "The compliance statement for LISP Proxy-ETRs. It conveys 2392 information if given device supports Proxy-ETR feature, 2393 and relevant state associated with that feature." 2394 MODULE -- this module 2395 MANDATORY-GROUPS { lispMIBPetrGroup } 2397 GROUP lispMIBEtrGroup 2398 DESCRIPTION 2399 "This group is optional." 2401 GROUP lispMIBItrGroup 2402 DESCRIPTION 2403 "This group is optional." 2405 GROUP lispMIBPitrGroup 2406 DESCRIPTION 2407 "This group is optional." 2409 GROUP lispMIBMapServerGroup 2410 DESCRIPTION 2411 "This group is optional." 2413 GROUP lispMIBMapResolverGroup 2414 DESCRIPTION 2415 "This group is optional." 2417 GROUP lispMIBEtrExtendedGroup 2418 DESCRIPTION 2419 "This group is optional." 2421 GROUP lispMIBItrExtendedGroup 2422 DESCRIPTION 2423 "This group is optional." 2425 GROUP lispMIBMapServerExtendedGroup 2426 DESCRIPTION 2427 "This group is optional." 2429 GROUP lispMIBTuningParametersGroup 2430 DESCRIPTION 2431 "This group is optional." 2433 GROUP lispMIBEncapStatisticsGroup 2434 DESCRIPTION 2435 "This group is optional." 2437 GROUP lispMIBDecapStatisticsGroup 2438 DESCRIPTION 2439 "This group is optional." 2441 GROUP lispMIBDiagnosticsGroup 2442 DESCRIPTION 2443 "This group is optional." 2445 GROUP lispMIBVrfGroup 2446 DESCRIPTION 2447 "This group is optional." 2449 ::= { lispCompliances 3 } 2451 lispMIBCompliancePitr MODULE-COMPLIANCE 2452 STATUS current 2453 DESCRIPTION 2454 "The compliance statement for LISP Proxy-ITRs. It conveys 2455 information if device supports Proxy-ITR feature, and 2456 relevant state associated with that feature." 2457 MODULE -- this module 2458 MANDATORY-GROUPS { lispMIBPitrGroup } 2460 GROUP lispMIBEtrGroup 2461 DESCRIPTION 2462 "This group is optional." 2464 GROUP lispMIBItrGroup 2465 DESCRIPTION 2466 "This group is optional." 2468 GROUP lispMIBPetrGroup 2469 DESCRIPTION 2470 "This group is optional." 2472 GROUP lispMIBMapServerGroup 2473 DESCRIPTION 2474 "This group is optional." 2476 GROUP lispMIBMapResolverGroup 2477 DESCRIPTION 2478 "This group is optional." 2480 GROUP lispMIBEtrExtendedGroup 2481 DESCRIPTION 2482 "This group is optional." 2484 GROUP lispMIBItrExtendedGroup 2485 DESCRIPTION 2486 "This group is optional." 2488 GROUP lispMIBMapServerExtendedGroup 2489 DESCRIPTION 2490 "This group is optional." 2492 GROUP lispMIBTuningParametersGroup 2493 DESCRIPTION 2494 "This group is optional." 2496 GROUP lispMIBEncapStatisticsGroup 2497 DESCRIPTION 2498 "This group is optional." 2500 GROUP lispMIBDecapStatisticsGroup 2501 DESCRIPTION 2502 "This group is optional." 2504 GROUP lispMIBDiagnosticsGroup 2505 DESCRIPTION 2506 "This group is optional." 2508 GROUP lispMIBVrfGroup 2509 DESCRIPTION 2510 "This group is optional." 2512 ::= { lispCompliances 4 } 2514 lispMIBComplianceMapServer MODULE-COMPLIANCE 2515 STATUS current 2516 DESCRIPTION 2517 "The compliance statement for LISP Map Servers. It 2518 conveys information if device supports Map Server 2519 feature, and relevant state associated with that 2520 feature." 2521 MODULE -- this module 2522 MANDATORY-GROUPS { lispMIBMapServerGroup } 2524 GROUP lispMIBEtrGroup 2525 DESCRIPTION 2526 "This group is optional." 2528 GROUP lispMIBItrGroup 2529 DESCRIPTION 2530 "This group is optional." 2532 GROUP lispMIBPetrGroup 2533 DESCRIPTION 2534 "This group is optional." 2536 GROUP lispMIBPitrGroup 2537 DESCRIPTION 2538 "This group is optional." 2540 GROUP lispMIBMapResolverGroup 2541 DESCRIPTION 2542 "This group is optional." 2544 GROUP lispMIBEtrExtendedGroup 2545 DESCRIPTION 2546 "This group is optional." 2548 GROUP lispMIBItrExtendedGroup 2549 DESCRIPTION 2550 "This group is optional." 2552 GROUP lispMIBMapServerExtendedGroup 2553 DESCRIPTION 2554 "This group is optional." 2556 GROUP lispMIBTuningParametersGroup 2557 DESCRIPTION 2558 "This group is optional." 2560 GROUP lispMIBEncapStatisticsGroup 2561 DESCRIPTION 2562 "This group is optional." 2564 GROUP lispMIBDecapStatisticsGroup 2565 DESCRIPTION 2566 "This group is optional." 2568 GROUP lispMIBDiagnosticsGroup 2569 DESCRIPTION 2570 "This group is optional." 2572 GROUP lispMIBVrfGroup 2573 DESCRIPTION 2574 "This group is optional." 2576 ::= { lispCompliances 5 } 2578 lispMIBComplianceMapResolver MODULE-COMPLIANCE 2579 STATUS current 2580 DESCRIPTION 2581 "The compliance statement for LISP Map Resolvers. It 2582 conveys information if device supports Map Server 2583 feature, and relevant state associated with that 2584 feature." 2585 MODULE -- this module 2586 MANDATORY-GROUPS { lispMIBMapResolverGroup } 2588 GROUP lispMIBEtrGroup 2589 DESCRIPTION 2590 "This group is optional." 2592 GROUP lispMIBItrGroup 2593 DESCRIPTION 2594 "This group is optional." 2596 GROUP lispMIBPetrGroup 2597 DESCRIPTION 2598 "This group is optional." 2600 GROUP lispMIBPitrGroup 2601 DESCRIPTION 2602 "This group is optional." 2604 GROUP lispMIBMapServerGroup 2605 DESCRIPTION 2606 "This group is optional." 2608 GROUP lispMIBEtrExtendedGroup 2609 DESCRIPTION 2610 "This group is optional." 2612 GROUP lispMIBItrExtendedGroup 2613 DESCRIPTION 2614 "This group is optional." 2616 GROUP lispMIBMapServerExtendedGroup 2617 DESCRIPTION 2618 "This group is optional." 2620 GROUP lispMIBTuningParametersGroup 2621 DESCRIPTION 2622 "This group is optional." 2624 GROUP lispMIBEncapStatisticsGroup 2625 DESCRIPTION 2626 "This group is optional." 2628 GROUP lispMIBDecapStatisticsGroup 2629 DESCRIPTION 2630 "This group is optional." 2632 GROUP lispMIBDiagnosticsGroup 2633 DESCRIPTION 2634 "This group is optional." 2636 GROUP lispMIBVrfGroup 2637 DESCRIPTION 2638 "This group is optional." 2640 ::= { lispCompliances 6 } 2642 -- 2643 -- Units of Conformance 2644 -- 2646 lispMIBEtrGroup OBJECT-GROUP 2647 OBJECTS { lispFeaturesEtrEnabled, 2648 lispMappingDatabaseLsb, 2649 lispMappingDatabaseLocatorRlocPriority, 2650 lispMappingDatabaseLocatorRlocWeight, 2651 lispMappingDatabaseLocatorRlocMPriority, 2652 lispMappingDatabaseLocatorRlocMWeight, 2653 lispMappingDatabaseLocatorRlocState, 2654 lispMappingDatabaseLocatorRlocLocal, 2655 lispConfiguredLocatorRlocState, 2656 lispConfiguredLocatorRlocLocal, 2657 lispUseMapServerState 2658 } 2659 STATUS current 2660 DESCRIPTION 2661 "A collection of objects to support basic 2662 management of LISP ETRs." 2663 ::= { lispGroups 1 } 2665 lispMIBItrGroup OBJECT-GROUP 2666 OBJECTS { lispFeaturesItrEnabled, 2667 lispFeaturesMapCacheSize, 2668 lispMappingDatabaseLsb, 2669 lispMapCacheLocatorRlocPriority, 2670 lispMapCacheLocatorRlocWeight, 2671 lispMapCacheLocatorRlocMPriority, 2672 lispMapCacheLocatorRlocMWeight, 2673 lispMapCacheLocatorRlocState, 2674 lispMapCacheEidTimeStamp, 2675 lispMapCacheEidExpiryTime, 2676 lispUseMapResolverState, 2677 lispUseProxyEtrPriority, 2678 lispUseProxyEtrWeight, 2679 lispUseProxyEtrMPriority, 2680 lispUseProxyEtrMWeight, 2681 lispUseProxyEtrState 2682 } 2683 STATUS current 2684 DESCRIPTION 2685 "A collection of objects to support basic 2686 management of LISP ITRs." 2687 ::= { lispGroups 2 } 2689 lispMIBPetrGroup OBJECT-GROUP 2690 OBJECTS { lispFeaturesProxyEtrEnabled 2691 } 2692 STATUS current 2693 DESCRIPTION 2694 "A collection of objects to support basic 2695 management of LISP Proxy-ETRs." 2696 ::= { lispGroups 3 } 2698 lispMIBPitrGroup OBJECT-GROUP 2699 OBJECTS { lispFeaturesProxyItrEnabled, 2700 lispConfiguredLocatorRlocState, 2701 lispConfiguredLocatorRlocLocal 2702 } 2704 STATUS current 2705 DESCRIPTION 2706 "A collection of objects to support basic 2707 management of LISP Proxy-ITRs." 2708 ::= { lispGroups 4 } 2710 lispMIBMapServerGroup OBJECT-GROUP 2711 OBJECTS { lispFeaturesMapServerEnabled, 2712 lispEidRegistrationIsRegistered, 2713 lispEidRegistrationLocatorRlocState 2714 } 2715 STATUS current 2716 DESCRIPTION 2717 "A collection of objects to support basic 2718 management of LISP Map Servers." 2719 ::= { lispGroups 5 } 2721 lispMIBMapResolverGroup OBJECT-GROUP 2722 OBJECTS { lispFeaturesMapResolverEnabled 2723 } 2724 STATUS current 2725 DESCRIPTION 2726 "A collection of objects to support basic 2727 management of LISP Map Resolvers." 2728 ::= { lispGroups 6 } 2730 lispMIBEtrExtendedGroup OBJECT-GROUP 2731 OBJECTS { lispFeaturesRlocProbeEnabled, 2732 lispFeaturesEtrAcceptMapDataEnabled, 2733 lispFeaturesEtrAcceptMapDataVerifyEnabled, 2734 lispMappingDatabaseEidPartitioned 2735 } 2736 STATUS current 2737 DESCRIPTION 2738 "A collection of objects to support management 2739 of LISP features and properties on ETRs." 2740 ::= { lispGroups 7 } 2742 lispMIBItrExtendedGroup OBJECT-GROUP 2743 OBJECTS { lispFeaturesRlocProbeEnabled, 2744 lispMapCacheEidState, 2745 lispMapCacheEidAuthoritative, 2746 lispMapCacheLocatorRlocTimeStamp, 2747 lispMapCacheLocatorRlocLastPriorityChange, 2748 lispMapCacheLocatorRlocLastWeightChange, 2749 lispMapCacheLocatorRlocLastMPriorityChange, 2750 lispMapCacheLocatorRlocLastMWeightChange, 2751 lispMapCacheLocatorRlocLastStateChange, 2752 lispMapCacheLocatorRlocRtt 2753 } 2754 STATUS current 2755 DESCRIPTION 2756 "A collection of objects to support management 2757 of LISP features and properties on ITRs." 2758 ::= { lispGroups 8 } 2760 lispMIBMapServerExtendedGroup OBJECT-GROUP 2761 OBJECTS { lispEidRegistrationSiteName, 2762 lispEidRegistrationSiteDescription, 2763 lispEidRegistrationIsRegistered, 2764 lispEidRegistrationFirstTimeStamp, 2765 lispEidRegistrationLastTimeStamp, 2766 lispEidRegistrationLastRegisterSenderLength, 2767 lispEidRegistrationLastRegisterSender, 2768 lispEidRegistrationEtrLastTimeStamp, 2769 lispEidRegistrationEtrTtl, 2770 lispEidRegistrationEtrProxyReply, 2771 lispEidRegistrationEtrWantsMapNotify, 2772 lispEidRegistrationLocatorIsLocal, 2773 lispEidRegistrationLocatorPriority, 2774 lispEidRegistrationLocatorWeight, 2775 lispEidRegistrationLocatorMPriority, 2776 lispEidRegistrationLocatorMWeight 2777 } 2778 STATUS current 2779 DESCRIPTION 2780 "A collection of objects to support management 2781 of LISP features and properties on Map Servers 2782 related to EID registrations." 2783 ::= { lispGroups 9 } 2785 lispMIBTuningParametersGroup OBJECT-GROUP 2786 OBJECTS { lispFeaturesMapCacheLimit, 2787 lispFeaturesEtrMapCacheTtl 2788 } 2789 STATUS current 2790 DESCRIPTION 2791 "A collection of writeable objects used to 2792 configure LISP behavior and to tune performance." 2793 ::= { lispGroups 10 } 2795 lispMIBEncapStatisticsGroup OBJECT-GROUP 2796 OBJECTS { lispMappingDatabaseTimeStamp, 2797 lispMappingDatabaseEncapOctets, 2798 lispMappingDatabaseEncapPackets, 2799 lispMappingDatabaseLocatorRlocTimeStamp, 2800 lispMappingDatabaseLocatorRlocEncapOctets, 2801 lispMappingDatabaseLocatorRlocEncapPackets, 2802 lispMapCacheEidTimeStamp, 2803 lispMapCacheEidEncapOctets, 2804 lispMapCacheEidEncapPackets, 2805 lispMapCacheLocatorRlocTimeStamp, 2806 lispMapCacheLocatorRlocEncapOctets, 2807 lispMapCacheLocatorRlocEncapPackets, 2808 lispConfiguredLocatorRlocTimeStamp, 2809 lispConfiguredLocatorRlocEncapOctets, 2810 lispConfiguredLocatorRlocEncapPackets 2811 } 2812 STATUS current 2813 DESCRIPTION 2814 "A collection of LISP encapsulation statistics 2815 by the device." 2816 ::= { lispGroups 11 } 2818 lispMIBDecapStatisticsGroup OBJECT-GROUP 2819 OBJECTS { lispMappingDatabaseTimeStamp, 2820 lispMappingDatabaseDecapOctets, 2821 lispMappingDatabaseDecapPackets, 2822 lispMappingDatabaseLocatorRlocTimeStamp, 2823 lispMappingDatabaseLocatorRlocDecapOctets, 2824 lispMappingDatabaseLocatorRlocDecapPackets, 2825 lispMapCacheEidTimeStamp, 2826 lispMapCacheEidDecapOctets, 2827 lispMapCacheEidDecapPackets, 2828 lispMapCacheLocatorRlocTimeStamp, 2829 lispMapCacheLocatorRlocDecapOctets, 2830 lispMapCacheLocatorRlocDecapPackets, 2831 lispConfiguredLocatorRlocTimeStamp, 2832 lispConfiguredLocatorRlocDecapOctets, 2833 lispConfiguredLocatorRlocDecapPackets 2834 } 2835 STATUS current 2836 DESCRIPTION 2837 "A collection of LISP decapsulation statistics 2838 by the device." 2840 ::= { lispGroups 12 } 2842 lispMIBDiagnosticsGroup OBJECT-GROUP 2843 OBJECTS { lispFeaturesRouterTimeStamp, 2844 lispGlobalStatsMapRequestsIn, 2845 lispGlobalStatsMapRequestsOut, 2846 lispGlobalStatsMapRepliesIn, 2847 lispGlobalStatsMapRepliesOut, 2848 lispGlobalStatsMapRegistersIn, 2849 lispGlobalStatsMapRegistersOut, 2850 lispEidRegistrationAuthenticationErrors, 2851 lispEidRegistrationRlocsMismatch 2852 } 2853 STATUS current 2854 DESCRIPTION 2855 "Objects providing additional diagnostics 2856 related to a LISP router. These are related 2857 to LISP control plane state." 2858 ::= { lispGroups 13 } 2860 lispMIBVrfGroup OBJECT-GROUP 2861 OBJECTS { lispIidToVrfName 2862 } 2863 STATUS current 2864 DESCRIPTION 2865 "Objects providing information related to VRF 2866 configurations on a LISP router." 2867 ::= { lispGroups 14 } 2869 END 2871 8. Relationship to Other MIB Modules 2873 8.1. MIB modules required for IMPORTS 2875 The LISP MIB imports the TEXTUAL-CONVENTION AddressFamilyNumbers from 2876 the IANA-ADDRESS-FAMILY-NUMBERS-MIB [IANA]. 2878 The LISP MIB imports mib-2, Unsigned32, Counter64, Integer32, and 2879 TimeTicks from SNMPv2-SMI -- [RFC2578]. 2881 The LISP MIB imports TruthValue, TEXTUAL-CONVENTION, TimeStamp, and 2882 TimeTicks from SNMPv2-TC -- [RFC2579]. 2884 The LISP MIB imports MODULE-COMPLIANCE from SNMPv2-TC -- [RFC2580]. 2886 The LISP MIB imports MplsL3VpnName from MPLS-L3VPN-STD-MIB -- 2888 [RFC4382]. 2890 9. Security Considerations 2892 There are no management objects defined in this MIB module that have 2893 a MAX-ACCESS clause of read-write and/or read-create. As long as 2894 these MIB modules are implemented correctly, there are no risks that 2895 any management objects of this MIB module can modify device settings 2896 via direct SNMP SET operations. 2898 There are no readable objects in this MIB module (i.e., objects with 2899 a MAX-ACCESS other than not-accessible) that are considered 2900 sensitive. 2902 SNMP versions prior to SNMPv3 did not include adequate security. 2903 Even if the network itself is secure (for example by using IPsec), 2904 there is no control as to who on the secure network is allowed to 2905 access and GET/SET (read/change/create/delete) the objects in this 2906 MIB module. 2908 It is RECOMMENDED that implementers consider the security features as 2909 provided by the SNMPv3 framework (see [RFC3410], section 8), 2910 including full support for the SNMPv3 cryptographic mechanisms (for 2911 authentication and privacy). 2913 Further, deployment of SNMP versions prior to SNMPv3 is NOT 2914 RECOMMENDED. Instead, it is RECOMMENDED to deploy SNMPv3 and to 2915 enable cryptographic security. It is then a customer/operator 2916 responsibility to ensure that the SNMP entity giving access to an 2917 instance of these MIB modules is properly configured to give access 2918 to the objects only to those principals (users) that have legitimate 2919 rights to indeed GET or SET (change/create/delete) them. 2921 10. IANA Considerations 2923 The MIB module in this document uses the following IANA-assigned 2924 OBJECT IDENTIFIER values recorded in the SMI Numbers registry: 2926 Descriptor OBJECT IDENTIFIER value 2927 ---------- ----------------------- 2929 lispMib { mib-2 XXX } 2931 This document instructs IANA to allocate a new value in the "SMI 2932 Network Management MGMT Codes Internet-standard MIB" subregistry of 2933 the "Network Management Parameters" registry, according to the 2934 following registration data: Decimal: [TBD by IANA] Name: lispMIB 2935 Description: Locator/ID Separation Protocol (LISP) References: [RFC 2936 XXXX (this RFC)] 2938 11. References 2940 11.1. Normative References 2942 [IANA] "IANA-ADDRESS-FAMILY-NUMBERS-MIB DEFINITIONS", . 2945 [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate 2946 Requirement Levels", BCP 14, RFC 2119, March 1997. 2948 [RFC2578] McCloghrie, K., Ed., Perkins, D., Ed., and J. 2949 Schoenwaelder, Ed., "Structure of Management Information 2950 Version 2 (SMIv2)", STD 58, RFC 2578, April 1999. 2952 [RFC2579] McCloghrie, K., Ed., Perkins, D., Ed., and J. 2953 Schoenwaelder, Ed., "Textual Conventions for SMIv2", 2954 STD 58, RFC 2579, April 1999. 2956 [RFC2580] McCloghrie, K., Perkins, D., and J. Schoenwaelder, 2957 "Conformance Statements for SMIv2", STD 58, RFC 2580, 2958 April 1999. 2960 [RFC4382] Nadeau, T. and H. van der Linde, "MPLS/BGP Layer 3 Virtual 2961 Private Network (VPN) Management Information Base", 2962 RFC 4382, February 2006. 2964 [RFC6830] Farinacci, D., Fuller, V., Meyer, D., and D. Lewis, "The 2965 Locator/ID Separation Protocol (LISP)", RFC 6830, 2966 January 2013. 2968 [RFC6832] Lewis, D., Meyer, D., Farinacci, D., and V. Fuller, 2969 "Interworking between Locator/ID Separation Protocol 2970 (LISP) and Non-LISP Sites", RFC 6832, January 2013. 2972 [RFC6833] Fuller, V. and D. Farinacci, "Locator/ID Separation 2973 Protocol (LISP) Map-Server Interface", RFC 6833, 2974 January 2013. 2976 11.2. Informative References 2978 [LCAF] Farinacci, D., Meyer, D., and J. Snijders, "LISP Canonical 2979 Address Format", draft-ietf-lisp-lcaf-02.txt (work in 2980 progress), March 2013. 2982 [RFC3410] Case, J., Mundy, R., Partain, D., and B. Stewart, 2983 "Introduction and Applicability Statements for Internet- 2984 Standard Management Framework", RFC 3410, December 2002. 2986 [RFC6831] Farinacci, D., Meyer, D., Zwiebel, J., and S. Venaas, "The 2987 Locator/ID Separation Protocol (LISP) for Multicast 2988 Environments", RFC 6831, January 2013. 2990 Appendix A. Acknowledgments 2992 A thank you is owed to Dino Farinacci for his inputs and review 2993 comments on the initial versions of this draft. In addition, the 2994 authors would like to gratefully acknowledge several others who have 2995 reviewed and commented on this draft. They include: Darrel Lewis, 2996 Isidor Kouvelas, Jesper Skriver, Selina Heimlich, Parna Agrawal, Dan 2997 Romascanu, and Luigi Iannone. Special thanks are owed to Brian 2998 Haberman, the Internet Area AD, for his very detailed review, Miguel 2999 Garcia for reviewing this document as part of the General Area Review 3000 Team, and Harrie Hazewinkel for the detailed MIB review comments. 3002 Authors' Addresses 3004 Gregg Schudel 3005 cisco Systems 3006 Tasman Drive 3007 San Jose, CA 95134 3008 USA 3010 EMail: gschudel@cisco.com 3012 Amit Jain 3013 Juniper Networks 3014 1133 Innovation Way 3015 Sunnyvale, CA 94089 3016 USA 3018 EMail: atjain@juniper.net 3020 Victor Moreno 3021 cisco Systems 3022 Tasman Drive 3023 San Jose, CA 95134 3024 USA 3026 EMail: vimoreno@cisco.com