Commit version 24.12.13800

This commit is contained in:
2025-01-06 17:35:06 -05:00
parent b7f6a79c2c
commit 55d9218816
6133 changed files with 4239740 additions and 1374287 deletions

View File

@ -9,14 +9,14 @@ ARISTA-CONFIG-COPY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE,
OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF
OBJECT-GROUP FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32 FROM SNMPv2-SMI
aristaMibs, aristaModules, aristaProducts FROM ARISTA-SMI-MIB
TEXTUAL-CONVENTION, DisplayString,
aristaMibs FROM ARISTA-SMI-MIB
TEXTUAL-CONVENTION,
DateAndTime, RowStatus FROM SNMPv2-TC;
aristaConfigCopyMIB MODULE-IDENTITY
LAST-UPDATED "201408150000Z"
LAST-UPDATED "202109080000Z"
ORGANIZATION "Arista Networks, Inc."
CONTACT-INFO
"Arista Networks, Inc.
@ -34,6 +34,8 @@ aristaConfigCopyMIB MODULE-IDENTITY
Currently supported URI schemes include: file, flash,
extension, system, ftp, http, https and tftp."
REVISION "202109080000Z"
DESCRIPTION "Changed DisplayString to OCTET STRING."
REVISION "201408150000Z"
DESCRIPTION "Updated postal and e-mail addresses."
REVISION "201302140000Z"
@ -118,21 +120,21 @@ aristaConfigCopyCommandEntry OBJECT-TYPE
AristaConfigCopyCommandEntry ::=
SEQUENCE {
aristaConfigCopyName DisplayString,
aristaConfigCopyName OCTET STRING,
aristaConfigCopyId Unsigned32,
aristaConfigCopySourceUri DisplayString,
aristaConfigCopyDestUri DisplayString,
aristaConfigCopySourceUri OCTET STRING,
aristaConfigCopyDestUri OCTET STRING,
aristaConfigCopyState ConfigCopyState,
aristaConfigCopyTimeout Unsigned32,
aristaConfigCopyTimeStarted DateAndTime,
aristaConfigCopyTimeCompleted DateAndTime,
aristaConfigCopyFailureCause ConfigCopyFailureCause,
aristaConfigCopyFailureMessage DisplayString,
aristaConfigCopyFailureMessage OCTET STRING,
aristaConfigCopyRowStatus RowStatus
}
aristaConfigCopyName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
SYNTAX OCTET STRING (SIZE (0..114))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The name of a copy request.
@ -154,7 +156,7 @@ aristaConfigCopyId OBJECT-TYPE
::= { aristaConfigCopyCommandEntry 2 }
aristaConfigCopySourceUri OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..512))
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The source URI of a copy request.
@ -171,7 +173,7 @@ aristaConfigCopySourceUri OBJECT-TYPE
::= { aristaConfigCopyCommandEntry 3 }
aristaConfigCopyDestUri OBJECT-TYPE
SYNTAX DisplayString(SIZE (0..512))
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The destination URI of a copy request.
@ -226,7 +228,7 @@ aristaConfigCopyFailureCause OBJECT-TYPE
::= { aristaConfigCopyCommandEntry 9 }
aristaConfigCopyFailureMessage OBJECT-TYPE
SYNTAX DisplayString
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The details of a failed copy request."

172
mibs/arista/ARISTA-CV-MIB Normal file
View File

@ -0,0 +1,172 @@
ARISTA-CV-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE,
OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DateAndTime FROM SNMPv2-TC
aristaMibs FROM ARISTA-SMI-MIB;
aristaCvMIB MODULE-IDENTITY
LAST-UPDATED "202207270000Z" -- 27 July 2022
ORGANIZATION "Arista Networks, Inc."
CONTACT-INFO
"Arista Networks, Inc.
Postal: 5453 Great America Parkway
Santa Clara, CA 9505
Tel: +1 408 547-5500
E-mail: snmp@arista.com"
DESCRIPTION "The MIB for notifications sent by CloudVision (CV)."
REVISION "202207270000Z"
DESCRIPTION
"Initial revision."
::= { aristaMibs 33 }
-- Textual Conventions
CvString ::= TEXTUAL-CONVENTION
DISPLAY-HINT "65535t"
STATUS current
DESCRIPTION
"This data type is used for UTF-8 text sent in CV alert notifications."
SYNTAX OCTET STRING
aristaCvNotifications OBJECT IDENTIFIER ::= { aristaCvMIB 0 }
aristaCvObjects OBJECT IDENTIFIER ::= { aristaCvMIB 1 }
aristaCvConformance OBJECT IDENTIFIER ::= { aristaCvMIB 2 }
--
-- ARISTA CV MIB Objects
--
aristaCvAlertEventType OBJECT-TYPE
SYNTAX CvString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The type of the event."
::= { aristaCvObjects 1 }
aristaCvAlertDescription OBJECT-TYPE
SYNTAX CvString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The description of the event."
::= { aristaCvObjects 2 }
aristaCvAlertSeverity OBJECT-TYPE
SYNTAX INTEGER {
info(1),
warning(2),
error(3),
critical(4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The severity of the event."
::= { aristaCvObjects 3 }
aristaCvAlertTimestamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The timestamp of the alert (fired time/resolved time)."
::= { aristaCvObjects 4 }
aristaCvAlertKey OBJECT-TYPE
SYNTAX CvString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The key of the event (unique with firing timestamp)."
::= { aristaCvObjects 5 }
aristaCvAlertSource OBJECT-TYPE
SYNTAX CvString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The URL to the CloudVision page for this event."
::= { aristaCvObjects 6 }
--
-- ARISTA CV MIB Notifications
--
aristaCvAlertFiringNotification NOTIFICATION-TYPE
OBJECTS {
aristaCvAlertEventType,
aristaCvAlertDescription,
aristaCvAlertSeverity,
aristaCvAlertTimestamp,
aristaCvAlertKey,
aristaCvAlertSource
}
STATUS current
DESCRIPTION
"Alert for a new firing CloudVision event."
::= { aristaCvNotifications 1 }
aristaCvAlertResolvedNotification NOTIFICATION-TYPE
OBJECTS {
aristaCvAlertEventType,
aristaCvAlertDescription,
aristaCvAlertSeverity,
aristaCvAlertTimestamp,
aristaCvAlertKey,
aristaCvAlertSource
}
STATUS current
DESCRIPTION
"Alert for a resolved CloudVision event."
::= { aristaCvNotifications 2 }
--
-- ARISTA CV MIB Conformance
--
aristaCvCompliances OBJECT IDENTIFIER ::= { aristaCvConformance 1 }
aristaCvGroups OBJECT IDENTIFIER ::= { aristaCvConformance 2 }
aristaCvCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement
the ARISTA CV MIB."
MODULE -- this module
MANDATORY-GROUPS { aristaCvObjectsGroup,
aristaCvNotificationsGroup
}
::= { aristaCvCompliances 1 }
aristaCvObjectsGroup OBJECT-GROUP
OBJECTS {
aristaCvAlertEventType,
aristaCvAlertDescription,
aristaCvAlertSeverity,
aristaCvAlertTimestamp,
aristaCvAlertKey,
aristaCvAlertSource
}
STATUS current
DESCRIPTION
"The collection of objects in the ARISTA CV MIB."
::= { aristaCvGroups 1 }
aristaCvNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
aristaCvAlertFiringNotification,
aristaCvAlertResolvedNotification
}
STATUS current
DESCRIPTION
"The collection of notifications in the ARISTA CV MIB."
::= { aristaCvGroups 2 }
END

View File

@ -1,6 +1,6 @@
-- ARISTA-PRODUCTS-MIB: Arista Networks product object identifier assignments
-- Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Arista Networks, Inc. All rights reserved.
-- Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Arista Networks, Inc. All rights reserved.
ARISTA-PRODUCTS-MIB DEFINITIONS ::= BEGIN
@ -12,7 +12,7 @@ IMPORTS
FROM ARISTA-SMI-MIB;
aristaProductsMIB MODULE-IDENTITY
LAST-UPDATED "202106240000Z"
LAST-UPDATED "202305110000Z"
ORGANIZATION "Arista Networks, Inc."
CONTACT-INFO
"Arista Networks, Inc.
@ -26,18 +26,246 @@ aristaProductsMIB MODULE-IDENTITY
DESCRIPTION
"This module defines the object identifiers returned as values for
sysObjectID or entPhysicalVendorType for Arista Networks hardware."
REVISION "202305110000Z"
DESCRIPTION
"Revised to include DCS-7280SR3MK-48YC8A-S"
REVISION "202305080000Z"
DESCRIPTION
"Revised to include DCS-7050CX4-24D8."
REVISION "202304060000Z"
DESCRIPTION
"Revised to include DCS-7060DX5-64E"
REVISION "202304040000Z"
DESCRIPTION
"Revised to include 7358"
REVISION "202303230001Z"
DESCRIPTION
"Revised to include DCS-7050SX3-48YC8C"
REVISION "202303070001Z"
DESCRIPTION
"Revised to include CCS-720XP-48TXH-2C-S"
REVISION "202302100001Z"
DESCRIPTION
"Revised to include AWE-5510"
REVISION "202302060000Z"
DESCRIPTION
"Revised to include AWE-5310"
REVISION "202301300000Z"
DESCRIPTION
"Revised to include DCS-7050DX4M-32S"
REVISION "202301230000Z"
DESCRIPTION
"Revised to include DCS-7280CR3MK-32D4A"
REVISION "202301120002Z"
DESCRIPTION
"Revised to include DCS-7050SDX4-48D8"
REVISION "202301120001Z"
DESCRIPTION
"Revised to include DCS-7050SPX4-48D8"
REVISION "202301120000Z"
DESCRIPTION
"Revised to include DCS-7050CX4-40D."
REVISION "202209220000Z"
DESCRIPTION
"Revised to include DCS-7280TR3-40C6"
REVISION "202209200000Z"
DESCRIPTION
"Revised to include DCS-7060DX5-64 and DCS-7060PX5-64E"
REVISION "202208250000Z"
DESCRIPTION
"Revised to include DCS-7060CX-32C"
REVISION "202208240000Z"
DESCRIPTION
"Revised to include DCS-7060DX5-64S"
REVISION "202208230000Z"
DESCRIPTION
"Revised to include DCS-7280DR3A-36, DCS-7280DR3AK-36, DCS-7280DR3AK-36S and DCS-7280DR3AM-36"
REVISION "202208030000Z"
DESCRIPTION
"Revised to include DCS-7060DX4-32S"
REVISION "202207220000Z"
DESCRIPTION
"Revised to include DCS-7132LB-48Y4C"
REVISION "202205160000Z"
DESCRIPTION
"Revised to include 7289"
REVISION "202204151205Z"
DESCRIPTION
"Revised to include DCS-7130-48G3S"
REVISION "202204151204Z"
DESCRIPTION
"Revised to include DCS-7130-48G3"
REVISION "202204151203Z"
DESCRIPTION
"Revised to include DCS-7130-16G3S"
REVISION "202204151202Z"
DESCRIPTION
"Revised to include DCS-7130-16G3"
REVISION "202204151201Z"
DESCRIPTION
"Revised to include DCS-7130-96LBAS"
REVISION "202204151200Z"
DESCRIPTION
"Revised to include DCS-7130-96LAS"
REVISION "202204151159Z"
DESCRIPTION
"Revised to include DCS-7130-96LBS"
REVISION "202204151158Z"
DESCRIPTION
"Revised to include DCS-7130-96LS"
REVISION "202204151157Z"
DESCRIPTION
"Revised to include DCS-7130-96S"
REVISION "202204151156Z"
DESCRIPTION
"Revised to include DCS-7130-48LBAS"
REVISION "202204151155Z"
DESCRIPTION
"Revised to include DCS-7130-48LAS"
REVISION "202204151154Z"
DESCRIPTION
"Revised to include DCS-7130-48LBS"
REVISION "202204151153Z"
DESCRIPTION
"Revised to include DCS-7130-48LS"
REVISION "202204151152Z"
DESCRIPTION
"Revised to include DCS-7130-48EHS"
REVISION "202204151151Z"
DESCRIPTION
"Revised to include DCS-7130-96LBA"
REVISION "202204151150Z"
DESCRIPTION
"Revised to include DCS-7130-96LA"
REVISION "202204151149Z"
DESCRIPTION
"Revised to include DCS-7130-96LB"
REVISION "202204151148Z"
DESCRIPTION
"Revised to include DCS-7130-96L"
REVISION "202204151147Z"
DESCRIPTION
"Revised to include DCS-7130-96E"
REVISION "202204151146Z"
DESCRIPTION
"Revised to include DCS-7130-96"
REVISION "202204151145Z"
DESCRIPTION
"Revised to include DCS-7130-48LBA"
REVISION "202204151144Z"
DESCRIPTION
"Revised to include DCS-7130-48LA"
REVISION "202204151143Z"
DESCRIPTION
"Revised to include DCS-7130-48LB"
REVISION "202204151142Z"
DESCRIPTION
"Revised to include DCS-7130-48L"
REVISION "202204151141Z"
DESCRIPTION
"Revised to include DCS-7130-48EH"
REVISION "202204151140Z"
DESCRIPTION
"Revised to include DCS-7130-48E"
REVISION "202204050000Z"
DESCRIPTION
"Revised to include CCS-720DP-24ZS and CCS-720DP-24ZS-2"
REVISION "202204010000Z"
DESCRIPTION
"Revised to include DCS-7816L-CH"
REVISION "202202080000Z"
DESCRIPTION
"Revised to include DCS-7130B-32QD"
REVISION "202202020005Z"
DESCRIPTION
"Revised to include CCS-720DF-48Y-2"
REVISION "202202020004Z"
DESCRIPTION
"Revised to include CCS-720DT-24S-2"
REVISION "202202020003Z"
DESCRIPTION
"Revised to include CCS-720DP-24S-2"
REVISION "202202020002Z"
DESCRIPTION
"Revised to include CCS-720DT-48S-2"
REVISION "202202020001Z"
DESCRIPTION
"Revised to include CCS-720DP-48S-2"
REVISION "202111170004Z"
DESCRIPTION
"Revised to include CCS-720DT-24S"
REVISION "202111170003Z"
DESCRIPTION
"Revised to include CCS-720DP-24S"
REVISION "202111170002Z"
DESCRIPTION
"Revised to include CCS-720DT-48S"
REVISION "202111170001Z"
DESCRIPTION
"Revised to include CCS-720DP-48S"
REVISION "202111170000Z"
DESCRIPTION
"Revised to include CCS-720DF-48Y"
REVISION "202111110000Z"
DESCRIPTION
"Revised to include DCS-7260CX3-64LQ"
REVISION "202110080000Z"
DESCRIPTION
"Revised to include DCS-7812-CH"
REVISION "202109090000Z"
DESCRIPTION
"Revised to include DCS-7280CR3K-36A"
REVISION "202109080000Z"
DESCRIPTION
"Revised to include DCS-7280SR3K-48YC8A"
REVISION "202108240001Z"
DESCRIPTION
"Revised to include DCS-7280CR3K-32P4A"
REVISION "202108240000Z"
DESCRIPTION
"Revised to include DCS-7280CR3K-32D4A"
REVISION "202106240000Z"
DESCRIPTION
"Revised to include 7388"
REVISION "202106170000Z"
DESCRIPTION
"Revised to include DCS-7816-CH"
REVISION "202106020000Z"
DESCRIPTION
"Revised to include DCS-7280DR3AM-54"
REVISION "202106010000Z"
DESCRIPTION
"Revised to include DCS-7280DR3AK-54"
REVISION "202105300000Z"
DESCRIPTION
"Revised to include DCS-7280DR3A-54"
REVISION "202105030001Z"
DESCRIPTION
"Revised to include CCS-710P-16P"
REVISION "202105030000Z"
DESCRIPTION
"Revised to include CCS-710P-12"
REVISION "202103250001Z"
DESCRIPTION
"Revised to include DCS-7130LBR-48S6QD-MD."
REVISION "202103250000Z"
DESCRIPTION
"Revised to include DCS-7130LBR-48S6QD."
REVISION "202102250000Z"
DESCRIPTION
"Revised to include DCS-7280CR3E-36S"
REVISION "202102170000Z"
DESCRIPTION
"Revised to include DCS-7280SR3E-40YC6"
REVISION "202102100000Z"
DESCRIPTION
"Revised to include DCS-7050DX4-32S and DCS-7050PX4-32S"
REVISION "202012110000Z"
DESCRIPTION
"Revised to include CCS-722XPM-48Y4"
REVISION "202012100000Z"
DESCRIPTION
"Revised to include CCS-722XPM-48ZY8"
REVISION "202011180000Z"
DESCRIPTION
"Revised to include DCS-7060DX4-32-D"
@ -59,6 +287,9 @@ aristaProductsMIB MODULE-IDENTITY
REVISION "202006240000Z"
DESCRIPTION
"Revised to include DCS-7010TX-48-DC"
REVISION "202006110000Z"
DESCRIPTION
"Revised to include DCS-7280SR3M-48YC8"
REVISION "202004220001Z"
DESCRIPTION
"Revised to include DCS-7280CR3K-36S"
@ -142,7 +373,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7280DR3-24"
REVISION "201902050000Z"
DESCRIPTION
"Revised to include IX7 products"
"Revised to include T7032-IX7 and IX7"
REVISION "201901230000Z"
DESCRIPTION
"Revised to include CCS-720XP-24Y6"
@ -184,10 +415,10 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7050SX3-48YC8"
REVISION "201808240000Z"
DESCRIPTION
"Revised to include DCS-7060PX4-32 and DCS-7060DX4-32"
"Revised to include DCS-7060PX4-32, DCS-7060PX4-32S and DCS-7060DX4-32"
REVISION "201806181400Z"
DESCRIPTION
"Revised to include DCS-7150SC-24-CLD, and DCS-7150SC-64-CLD."
"Revised to include DCS-7150SC-24-CLD and DCS-7150SC-64-CLD."
REVISION "201805240000Z"
DESCRIPTION
"Revised to include T4048-IX8."
@ -211,10 +442,10 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7170-64C and DCS-7170-64C-M"
REVISION "201712110000Z"
DESCRIPTION
"Revised to include 7050CX3-32S and 7050CX3-32S-SSD."
"Revised to include DCS-7050CX3-32S and DCS-7050CX3-32S-SSD."
REVISION "201712100000Z"
DESCRIPTION
"Revised to include 7050SX3-48YC12 and 7050SX3-48YC12-SSD."
"Revised to include DCS-7050SX3-48YC12 and DCS-7050SX3-48YC12-SSD."
REVISION "201711070000Z"
DESCRIPTION
"Revised to include Seastone-DX010"
@ -262,7 +493,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7280SRAM-48C6."
REVISION "201703090000Z"
DESCRIPTION
"Revised to include 7280SR2A-48YC6 and 7280SR2A-48YC6-M."
"Revised to include DCS-7280SR2A-48YC6 and DCS-7280SR2A-48YC6-M."
REVISION "201702230000Z"
DESCRIPTION
"Revised to include DCS-7280CR2A-60 and DCS-7280CR2A-60-SSD"
@ -274,7 +505,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7280QRA-C36S and DCS-7280QRA-C36S-M."
REVISION "201701300000Z"
DESCRIPTION
"Revised to include 7280SR2-48YC6-M."
"Revised to include DCS-7280SR2-48YC6-M."
REVISION "201701260000Z"
DESCRIPTION
"Revised to include DCS-7260CX3-64"
@ -301,7 +532,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7280QR-C36S and DCS-7280QR-C36S-M."
REVISION "201611190000Z"
DESCRIPTION
"Revised to include DCS-7160-48TC6"
"Revised to include DCS-7160-48TC6 and DCS-7160-48TC6-SSD"
REVISION "201611150000Z"
DESCRIPTION
"Revised to include DCS-7280CRA-48 and DCS-7280CRA-48-M."
@ -325,10 +556,10 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7280SRA-48C6"
REVISION "201609080000Z"
DESCRIPTION
"Revised to include DCS-7160-48YC6"
"Revised to include DCS-7160-48YC6 and DCS-7160-48YC6-SSD"
REVISION "201608080000Z"
DESCRIPTION
"Revised to include 7280SR2-48YC6."
"Revised to include DCS-7280SR2-48YC6."
REVISION "201605270000Z"
DESCRIPTION
"Revised to include DCS-7060CX2-32S"
@ -397,7 +628,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7050QX2-32S-SSD"
REVISION "201502100000Z"
DESCRIPTION
"Revised to include DCS-7050QX2-325."
"Revised to include DCS-7050QX2-32S."
REVISION "201412020000Z"
DESCRIPTION
"Revised to include DCS-7250QX-64-M."
@ -481,7 +712,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7050QX-32-CL-SSD."
REVISION "201212121212Z"
DESCRIPTION
"Revised to include DCS-7150S-64-CL, DCS-7150S-64-CL-SSD, DCS-7150S-52-CL. and DCS-7150S-52-CL-SSD"
"Revised to include DCS-7150S-52-CL, DCS-7150S-52-CL-SSD, DCS-7150S-64-CL and DCS-7150S-64-CL-SSD."
REVISION "201211280800Z"
DESCRIPTION
"Revised to include DCS-7050SX-128."
@ -505,7 +736,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7050T-36."
REVISION "201202010800Z"
DESCRIPTION
"Revised to include DCS-7050T-52-SSD, and DCS-7050T-64-SSD."
"Revised to include DCS-7050T-52-SSD and DCS-7050T-64-SSD."
REVISION "201109010800Z"
DESCRIPTION
"Revised to include DCS-7050Q-16."
@ -517,7 +748,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7050S-64-SSD."
REVISION "201107161400Z"
DESCRIPTION
"Revised to include DCS-7050T-52, and DCS-7050T-64."
"Revised to include DCS-7050T-52 and DCS-7050T-64."
REVISION "201106221800Z"
DESCRIPTION
"Revised to include DCS-7124SX-SSD."
@ -544,7 +775,7 @@ aristaProductsMIB MODULE-IDENTITY
"Revised to include DCS-7048T-4S."
REVISION "200904171505Z"
DESCRIPTION
"Revised to include DCS-7140T-8S and DCS-7120T-4S."
"Revised to include DCS-7120T-4S and DCS-7140T-8S."
REVISION "200809101415Z"
DESCRIPTION
"Revised to include DCS-7148S."
@ -724,7 +955,7 @@ aristaDCS7050SX2128 OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 3741 2 128
aristaDCS7050SX2128SSD OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 3741 2 128 761 }
-- DCS-7280CR-48 8x40GbE (QSFP) & 48x100GbE (QSFP) Ethernet Switch
aristaDCS7280CR48 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 48 }
-- DCS-7280CR-48-SSD 8x40GbE (QSFP) & 48x100GbE (QSFP) Ethernet Switch with SSD
-- DCS-7280CR-48-SSD 8x40GbE (QSFP) & 48x100GbE (QSFP) Ethernet Switch + SSD
aristaDCS7280CR48SSD OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 48 761 }
-- DCS-7508N Switch Chassis. 2 Supervisor slots, 8 Linecard slots, 6 Fabric Module slots, with AC or DC Power Supply
aristaDCS7508N OBJECT IDENTIFIER ::= { aristaProducts 3011 7508 1359 }
@ -948,7 +1179,7 @@ aristaDCS7280DR3K24 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2972 3 202
aristaCCS720XP96ZC2 OBJECT IDENTIFIER ::= { aristaProducts 2546 720 858 96 207 2 }
-- DCS-7280CR3-96 96x100GbE (QSFP100) Ethernet Switch with SSD
aristaDCS7280CR396 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 96 }
-- DCS-7280CR3K-96 96x100GbE (QSFP100) Ethernet Switch with large routes and SSD
-- DCS-7280CR3K-96 96x100GbE (QSFP100) Ethernet Switch with large routes, SSD
aristaDCS7280CR3K96 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 202 96 }
-- DCS-7050TX3-48C8 48x10GbE RJ45 (1/10G) + 8x100GbE QSFP Switch
aristaDCS7050TX348C8 OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 1958 3 48 2878 8 }
@ -976,6 +1207,8 @@ aristaDCS7010TX48 OBJECT IDENTIFIER ::= { aristaProducts 3011 7010 1958 48 }
aristaDCS7280CR336S OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 36 3282 }
-- DCS-7280CR3K-36S 34x100GbE (QSFP100) & 2x400GbE (QSFP-DD) Ethernet Switch with large routes
aristaDCS7280CR3K36S OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 202 36 3282 }
-- DCS-7280SR3M-48YC8 48x25GbE (SFP) & 8x100GbE (QSFP) Ethernet Switch with Macsec
aristaDCS7280SR3M48YC8 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 3735 3 972 48 1654 8 }
-- DCS-7010TX-48-DC 48-port 1000BASE-T + 4-port SFP28 Switch with DC Power Supply
aristaDCS7010TX48DC OBJECT IDENTIFIER ::= { aristaProducts 3011 7010 1958 48 2957 }
-- DCS-7280SR3-40YC6 40x25GbE (SFP) & 6x100GbE (QSFP) Ethernet Switch
@ -994,14 +1227,178 @@ aristaDCS7804CH OBJECT IDENTIFIER ::= { aristaProducts 3011 7804 2749 }
aristaDCS7808CH OBJECT IDENTIFIER ::= { aristaProducts 3011 7808 2749 }
-- DCS-7060DX4-32-D 32x400GbE QSFP-DD & 2xSFP+ Ethernet Switch
aristaDCS7060DX432D OBJECT IDENTIFIER ::= { aristaProducts 3011 7060 2966 4 32 1605 }
-- CCS-722XPM-48ZY8 48 2.5GBase-T PoE & 8-port SFP28 MacSec Switch
aristaCCS722XPM48ZY8 OBJECT IDENTIFIER ::= { aristaProducts 2546 722 4026 48 213 8 }
-- CCS-722XPM-48Y4 48 Gig Base-T PoE, 4-port SFP28 & 4-port SFP+ MacSec Switch
aristaCCS722XPM48Y4 OBJECT IDENTIFIER ::= { aristaProducts 2546 722 4026 48 2600 4 }
-- DCS-7050DX4-32S 32x400GbE QSFP-DD & 2xSFP+ Ethernet Switch
aristaDCS7050DX432S OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 2966 4 32 3282 }
-- DCS-7050PX4-32S 32x400GbE OSFP & 2xSFP+ Ethernet Switch
aristaDCS7050PX432S OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 3242 4 32 3282 }
-- DCS-7280SR3E-40YC6 40x25GbE (SFP) & 6x100GbE (QSFP) Ethernet Switch with Sync-E
aristaDCS7280SR3E40YC6 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 3735 3 1988 40 1654 6 }
-- DCS-7280CR3E-36S 34x100GbE (QSFP100) & 2x400GbE (QSFP-DD) Ethernet Switch with Sync-E
aristaDCS7280CR3E36S OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 1988 36 3282 }
-- DCS-7130LBR-48S6QD 48x SFP & 6x QSFP-DD Ethernet Switch with 2x VU9P-3 application FPGAs
aristaDCS7130LBR48S6QD OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 1501 48 3282 6 3083 }
-- DCS-7130LBR-48S6QD-MD 48x SFP & 6x QSFP-DD Ethernet Switch with 2x VU9P-3 application FPGAs and 2x NVMe drives
-- DCS-7130LBR-48S6QD-MD 48x SFP & 6x QSFP-DD Ethernet Switch with 2x VU9P-3 application FPGAs
aristaDCS7130LBR48S6QDMD OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 1501 48 3282 6 3083 1823 }
-- CCS-710P-12 12-port 1000BASE-T PoE & 2-port SFP+ Switch
aristaCCS710P12 OBJECT IDENTIFIER ::= { aristaProducts 2546 710 2129 12 }
-- CCS-710P-16P 12-port 1000BASE-T PoE, 4-port MGig PoE & 2-port SFP+ Switch
aristaCCS710P16P OBJECT IDENTIFIER ::= { aristaProducts 2546 710 2129 16 2129 }
-- DCS-7280DR3A-54 54x400GbE (QSFP-DD) Ethernet Switch
aristaDCS7280DR3A54 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2972 3 3648 54 }
-- DCS-7280DR3AK-54 54x400GbE (QSFP-DD) Ethernet Switch with MACsec and large routes
aristaDCS7280DR3AK54 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2972 3 2102 54 }
-- DCS-7280DR3AM-54 54x400GbE (QSFP-DD) Ethernet Switch with MACsec
aristaDCS7280DR3AM54 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2972 3 2100 54 }
-- DCS-7816-CH Switch Chassis. 2 Supervisor slots, 16 Linecard slots, 6 Fabric Module slots, with AC or DC Power Supply
aristaDCS7816CH OBJECT IDENTIFIER ::= { aristaProducts 3011 7816 2749 }
-- 7388 7388 Chassis
arista7388 OBJECT IDENTIFIER ::= { aristaProducts 7388 }
-- DCS-7280CR3K-32D4A 32x100GbE (QSFP100) & 4x400GbE (QSFP-DD) Ethernet Switch with large routes, SSD
aristaDCS7280CR3K32D4A OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 202 32 1605 4 3648 }
-- DCS-7280CR3K-32P4A 32x100GbE (QSFP100) & 4x400GbE (OSFP) Ethernet Switch with large routes, SSD
aristaDCS7280CR3K32P4A OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 202 32 2129 4 3648 }
-- DCS-7280SR3K-48YC8A 48x25GbE (SFP) & 8x100GbE (QSFP) Ethernet Switch with large routes and SSD
aristaDCS7280SR3K48YC8A OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 3735 3 202 48 1654 8 3648 }
-- DCS-7280CR3K-36A 34x100GbE (QSFP100) & 2x400GbE (QSFP-DD) Ethernet Switch with large routes, SSD
aristaDCS7280CR3K36A OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 202 36 3648 }
-- DCS-7812-CH Switch Chassis. 2 Supervisor slots, 12 Linecard slots, 6 Fabric Module slots, with AC or DC Power Supply
aristaDCS7812CH OBJECT IDENTIFIER ::= { aristaProducts 3011 7812 2749 }
-- DCS-7260CX3-64LQ 64x100GbE QSFP & 2xSFP+ Ethernet Switch
aristaDCS7260CX364LQ OBJECT IDENTIFIER ::= { aristaProducts 3011 7260 2733 3 64 439 }
-- CCS-720DF-48Y 48-port SFP & 4-port SFP28 Ethernet Switch
aristaCCS720DF48Y OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2952 48 2600 }
-- CCS-720DP-48S 48-port 1000BASE-T PoE & 4-port SFP+ Ethernet Switch
aristaCCS720DP48S OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2974 48 3282 }
-- CCS-720DT-48S 48-port 1000BASE-T & 4-port SFP+ Ethernet Switch
aristaCCS720DT48S OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2970 48 3282 }
-- CCS-720DP-24S 24-port 1000BASE-T PoE & 4-port SFP+ Ethernet Switch
aristaCCS720DP24S OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2974 24 3282 }
-- CCS-720DT-24S 24-port 1000BASE-T & 4-port SFP+ Ethernet Switch
aristaCCS720DT24S OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2970 24 3282 }
-- CCS-720DP-48S-2 48-port 1000BASE-T PoE & 4-port SFP+ Ethernet Switch
aristaCCS720DP48S2 OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2974 48 3282 2 }
-- CCS-720DT-48S-2 48-port 1000BASE-T & 4-port SFP+ Ethernet Switch
aristaCCS720DT48S2 OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2970 48 3282 2 }
-- CCS-720DP-24S-2 24-port 1000BASE-T PoE & 4-port SFP+ Ethernet Switch
aristaCCS720DP24S2 OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2974 24 3282 2 }
-- CCS-720DT-24S-2 24-port 1000BASE-T & 4-port SFP+ Ethernet Switch
aristaCCS720DT24S2 OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2970 24 3282 2 }
-- CCS-720DF-48Y-2 48-port SFP & 4-port SFP28 Ethernet Switch
aristaCCS720DF48Y2 OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2952 48 2600 2 }
-- DCS-7130B-32QD 32x QSFP-DD & 2x SFP Ethernet Switch
aristaDCS7130B32QD OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 3261 32 3083 }
-- DCS-7816L-CH Switch Chassis. 2 Supervisor slots, 16 Linecard slots, 6 Fabric Module slots, with AC or DC Power Supply
aristaDCS7816LCH OBJECT IDENTIFIER ::= { aristaProducts 3011 7816 589 2749 }
-- CCS-720DP-24ZS 24-port 2.5G PoE & 4-port SFP+ Switch
aristaCCS720DP24ZS OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2974 24 223 }
-- CCS-720DP-24ZS-2 24-port 2.5G PoE & 4-port SFP+ Switch
aristaCCS720DP24ZS2 OBJECT IDENTIFIER ::= { aristaProducts 2546 720 2974 24 223 2 }
-- DCS-7130-48E 7130 Series 48 port chassis
aristaDCS713048E OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 1988 }
-- DCS-7130-48EH 7130 Series 48 port chassis
aristaDCS713048EH OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 3387 }
-- DCS-7130-48L 7130 Series 48 port chassis
aristaDCS713048L OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 589 }
-- DCS-7130-48LB 7130 Series 48 port chassis
aristaDCS713048LB OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 420 }
-- DCS-7130-48LA 7130 Series 48 port chassis
aristaDCS713048LA OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 423 }
-- DCS-7130-48LBA 7130 Series 48 port chassis
aristaDCS713048LBA OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 1488 }
-- DCS-7130-96 Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096 OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 }
-- DCS-7130-96E Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096E OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 1988 }
-- DCS-7130-96L Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096L OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 589 }
-- DCS-7130-96LB Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096LB OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 420 }
-- DCS-7130-96LA Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096LA OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 423 }
-- DCS-7130-96LBA Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096LBA OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 1488 }
-- DCS-7130-48EHS 7130 Series 48 port chassis
aristaDCS713048EHS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 2117 }
-- DCS-7130-48LS 7130 Series 48 port chassis
aristaDCS713048LS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 437 }
-- DCS-7130-48LBS 7130 Series 48 port chassis
aristaDCS713048LBS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 1502 }
-- DCS-7130-48LAS 7130 Series 48 port chassis
aristaDCS713048LAS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 1921 }
-- DCS-7130-48LBAS 7130 Series 48 port chassis
aristaDCS713048LBAS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 3826 }
-- DCS-7130-96S Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096S OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 3282 }
-- DCS-7130-96LS Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096LS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 437 }
-- DCS-7130-96LBS Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096LBS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 1502 }
-- DCS-7130-96LAS Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096LAS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 1921 }
-- DCS-7130-96LBAS Arista 7130 Series Connect 96 Layer-1 Switch
aristaDCS713096LBAS OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 96 3826 }
-- DCS-7130-16G3 Arista 7130 Series Connect 16 Layer-1 Switch
aristaDCS713016G3 OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 16 2758 3 }
-- DCS-7130-16G3S Arista 7130 Series Connect 16 Layer-1 Switch
aristaDCS713016G3S OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 16 2758 3 3282 }
-- DCS-7130-48G3 Arista 7130 Series Connect 48 Layer-1 Switch
aristaDCS713048G3 OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 2758 3 }
-- DCS-7130-48G3S Arista 7130 Series Connect 48 Layer-1 Switch
aristaDCS713048G3S OBJECT IDENTIFIER ::= { aristaProducts 3011 7130 48 2758 3 3282 }
-- 7289 7289 Chassis
arista7289 OBJECT IDENTIFIER ::= { aristaProducts 7289 }
-- DCS-7132LB-48Y4C 48x SFP28 & 4x QSFP100 Ethernet Switch with a VU9P-3 application FPGA
aristaDCS7132LB48Y4C OBJECT IDENTIFIER ::= { aristaProducts 3011 7132 420 48 2600 4 2878 }
-- DCS-7060DX4-32S 32x400GbE QSFP-DD & 2xSFP+ Ethernet Switch
aristaDCS7060DX432S OBJECT IDENTIFIER ::= { aristaProducts 3011 7060 2966 4 32 3282 }
-- DCS-7280DR3A-36 36x400GbE (QSFP-DD) Ethernet Switch with SyncE
aristaDCS7280DR3A36 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2972 3 3648 36 }
-- DCS-7280DR3AK-36 36x400GbE (QSFP-DD) Ethernet Switch with SyncE, MACsec and large routes
aristaDCS7280DR3AK36 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2972 3 2102 36 }
-- DCS-7280DR3AK-36S 36x400GbE (QSFP-DD) Ethernet Switch with SyncE, MACsec, large routes and secure boot
aristaDCS7280DR3AK36S OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2972 3 2102 36 3282 }
-- DCS-7280DR3AM-36 36x400GbE (QSFP-DD) Ethernet Switch with SyncE and MACsec
aristaDCS7280DR3AM36 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2972 3 2100 36 }
-- DCS-7060DX5-64S 64x400GbE QSFP-DD & 2xSFP+ Ethernet Switch
aristaDCS7060DX564S OBJECT IDENTIFIER ::= { aristaProducts 3011 7060 2966 5 64 3282 }
-- DCS-7060CX-32C 32x100GbE QSFP & 2xSFP+ switch
aristaDCS7060CX32C OBJECT IDENTIFIER ::= { aristaProducts 3011 7060 2733 32 2878 }
-- DCS-7060DX5-64 32x800GbE QSFP-DD & 2xSFP Ethernet Switch
aristaDCS7060DX564 OBJECT IDENTIFIER ::= { aristaProducts 3011 7060 2966 5 64 }
-- DCS-7060PX5-64E 32x800GbE OSFP & 2xSFP Ethernet Switch
aristaDCS7060PX564E OBJECT IDENTIFIER ::= { aristaProducts 3011 7060 3242 5 64 1988 }
-- DCS-7280TR3-40C6 40x10GbE (RJ45) & 6x100GbE (QSFP) Ethernet Switch
aristaDCS7280TR340C6 OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 1964 3 40 2878 6 }
-- DCS-7050CX4-40D 40x200G QSFP56 & 2x10G SFP+ Ethernet Switch
aristaDCS7050CX440D OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 2733 4 40 1605 }
-- DCS-7050SPX4-48D8 48x100G DSFP & 8x400G QSFP-DD Ethernet Switch
aristaDCS7050SPX448D8 OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 32 4 48 1605 8 }
-- DCS-7050SDX4-48D8 48x100G SFP-DD & 8x400G QSFP-DD Ethernet Switch
aristaDCS7050SDX448D8 OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 3564 4 48 1605 8 }
-- DCS-7280CR3MK-32D4A 32x100GbE (QSFP100) & 4x400GbE (QSFP-DD) Ethernet Switch with MACsec, large routes and SSD
aristaDCS7280CR3MK32D4A OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 2727 3 1810 32 1605 4 3648 }
-- DCS-7050DX4M-32S 32x400GbE QSFP-DD & 2xSFP+ Ethernet Switch with MacSec
aristaDCS7050DX4M32S OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 2966 4 972 32 3282 }
-- AWE-5310 8x RJ45 (w/2x Fail to Wire, 4x 10G SFP+)
aristaAWE5310 OBJECT IDENTIFIER ::= { aristaProducts 1082 5310 }
-- AWE-5510 8x SFP+ 10G, 8 SFP+ 10G Enhanced
aristaAWE5510 OBJECT IDENTIFIER ::= { aristaProducts 1082 5510 }
-- CCS-720XP-48TXH-2C-S 48-port 10GBASE-T PoE + 4-port SFP28 + 2-port QSFP Switch
aristaCCS720XP48TXH2CS OBJECT IDENTIFIER ::= { aristaProducts 2546 720 858 48 2137 2 2878 3282 }
-- DCS-7050SX3-48YC8C 48x25GbE SFP + 8x100GbE QSFP Switch
aristaDCS7050SX348YC8C OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 3741 3 48 1654 8 2878 }
-- 7358 7358 Chassis
arista7358 OBJECT IDENTIFIER ::= { aristaProducts 7358 }
-- DCS-7060DX5-64E 32x800GbE QSFP-DD & 2xSFP Ethernet Switch
aristaDCS7060DX564E OBJECT IDENTIFIER ::= { aristaProducts 3011 7060 2966 5 64 1988 }
-- DCS-7050CX4-24D8 24x200G QSFP56, 8x400G QSFP-DD, & 2 SFP+ Ethernet Switch
aristaDCS7050CX424D8 OBJECT IDENTIFIER ::= { aristaProducts 3011 7050 2733 4 24 1605 8 }
-- DCS-7280SR3MK-48YC8A-S 48x25GbE (SFP) & 8x100GbE (QSFP) Ethernet Switch with large routes, MACsec, and secure boot
aristaDCS7280SR3MK48YC8AS OBJECT IDENTIFIER ::= { aristaProducts 3011 7280 3735 3 1810 48 1654 8 3648 3282 }
END

View File

@ -15,7 +15,7 @@ IMPORTS
QueueIndex FROM ARISTA-QUEUE-MIB;
aristaQosMib MODULE-IDENTITY
LAST-UPDATED "202005260000Z"
LAST-UPDATED "202201110000Z"
ORGANIZATION "Arista Networks, Inc."
CONTACT-INFO
"Arista Networks, Inc.
@ -56,6 +56,9 @@ aristaQosMib MODULE-IDENTITY
modifying CoS or DSCP fields, assigning to traffic-class queues,
shaping, or filtering."
REVISION "202201110000Z"
DESCRIPTION "Added aristaQosPolicerStatsTable"
REVISION "202005260000Z"
DESCRIPTION "Added additional objects for aristaQosStatsTable."
@ -716,6 +719,52 @@ aristaEcnQueuePktsMarked OBJECT-TYPE
Ecn counter is not enabled, the counter value is 0"
::= { aristaEcnQueueCounterEntry 4 }
-- Start of aristaQosPolicerStatsTable
aristaQosPolicerStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AristaQosPolicerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table contains dropped, sent packet
counters of policer for a given class of a policy map
applied in a given direction."
::= { aristaQosMibObjects 10 }
aristaQosPolicerStatsEntry OBJECT-TYPE
SYNTAX AristaQosPolicerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the aristaQosPolicerStatsTable."
INDEX { aristaPolicyMapId, aristaPolicyMapType,
aristaClassMapId, aristaServicePolicyDirection,
aristaServicePolicyIfIndex }
::= { aristaQosPolicerStatsTable 1 }
AristaQosPolicerStatsEntry ::= SEQUENCE {
aristaQosPolicerPktsDropped Counter64,
aristaQosPolicerPktsSent Counter64
}
aristaQosPolicerPktsDropped OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets dropped by a service policy.
This number is zero for classes of type dataPlane."
::= { aristaQosPolicerStatsEntry 1 }
aristaQosPolicerPktsSent OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets classified by a service policy
and allowed through."
::= { aristaQosPolicerStatsEntry 2 }
-- Compliance, MIB groups
aristaQosMibCompliances OBJECT IDENTIFIER
@ -750,6 +799,8 @@ aristaClassMapGroup OBJECT-GROUP
aristaQosPktsDropped,
aristaQosPktsMatched,
aristaQosPktsSent,
aristaQosPolicerPktsDropped,
aristaQosPolicerPktsSent,
aristaQosBytesDropped,
aristaQosBytesMatched,
aristaQosBytesSent

View File

@ -8,10 +8,11 @@ IMPORTS
Counter64, Unsigned32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
InetAddress, InetAddressType FROM INET-ADDRESS-MIB
InterfaceIndex FROM IF-MIB
aristaMibs FROM ARISTA-SMI-MIB;
aristaVxlanMIB MODULE-IDENTITY
LAST-UPDATED "202006010000Z"
LAST-UPDATED "202209150000Z"
ORGANIZATION "Arista Networks, Inc."
CONTACT-INFO
"Arista Networks, Inc.
@ -25,6 +26,10 @@ aristaVxlanMIB MODULE-IDENTITY
DESCRIPTION
"The MIB module for VXLAN counters and status information
on Arista devices."
REVISION "202209150000Z"
DESCRIPTION "Added support for exporting counters per VXLAN tunnel
interface."
REVISION "202006010000Z"
DESCRIPTION "Initial version."
::= { aristaMibs 28 }
@ -366,6 +371,89 @@ aristaVxlanVniEncapDropPkts OBJECT-TYPE
VNI."
::= { aristaVxlanVniCountersEntry 14 }
-- Per VTI, VNI counters table --
aristaVxlanVtiVniCountersTable OBJECT-TYPE
SYNTAX SEQUENCE OF AristaVxlanVtiVniCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"On specific EOS devices multiple VXLAN tunnel interfaces (VTI) can
be configured with unique VNI associations. If such a configuration
is supported and the device has the capability to maintain counters
for each unique VTI and VNI, then this table will contain the
relevant counter information."
::= { aristaVxlanMibObjects 3 }
aristaVxlanVtiVniCountersEntry OBJECT-TYPE
SYNTAX AristaVxlanVtiVniCountersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Decap (ingress) and encap (egress) counters for a given VNI unique
to a specific VTI.
Each conceptual row is uniquely identified by the ifIndex of the
VTI (aristaVxlanVtiIndex) and a single VNI associated with that
VTI (aristaVxlanVni)."
INDEX { aristaVxlanVtiIndex, aristaVxlanVni }
::= { aristaVxlanVtiVniCountersTable 1 }
AristaVxlanVtiVniCountersEntry ::= SEQUENCE {
-- INDEX
aristaVxlanVtiIndex InterfaceIndex,
-- Decap counters
aristaVxlanVtiVniDecapBytes Counter64,
aristaVxlanVtiVniDecapPkts Counter64,
-- Encap counters
aristaVxlanVtiVniEncapBytes Counter64,
aristaVxlanVtiVniEncapPkts Counter64
}
aristaVxlanVtiIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifIndex of the VXLAN tunnel interface (VTI) that identififies
this entry."
::= { aristaVxlanVtiVniCountersEntry 1 }
aristaVxlanVtiVniDecapBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes decapsulated for this VNI unique to the given
VTI."
::= { aristaVxlanVtiVniCountersEntry 2 }
aristaVxlanVtiVniDecapPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets decapsulated for this VNI unique to the given
VTI."
::= { aristaVxlanVtiVniCountersEntry 3 }
aristaVxlanVtiVniEncapBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes encapsulated for this VNI unique to the given
VTI."
::= { aristaVxlanVtiVniCountersEntry 4 }
aristaVxlanVtiVniEncapPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets encapsulated for this VNI unique to the given
VTI."
::= { aristaVxlanVtiVniCountersEntry 5 }
-- Conformance and Compliance --
aristaVxlanMibCompliances OBJECT IDENTIFIER
@ -411,7 +499,12 @@ aristaVxlanMibCountersGroup OBJECT-GROUP
aristaVxlanVniEncapPkts,
aristaVxlanVniEncapBUMBytes,
aristaVxlanVniEncapBUMPkts,
aristaVxlanVniEncapDropPkts
aristaVxlanVniEncapDropPkts,
aristaVxlanVtiVniDecapBytes,
aristaVxlanVtiVniDecapPkts,
aristaVxlanVtiVniEncapBytes,
aristaVxlanVtiVniEncapPkts
}
STATUS current
DESCRIPTION