From 98a672123c7872f6b9b75a9a2b6bb3aea504de6a Mon Sep 17 00:00:00 2001 From: David Leutgeb Date: Tue, 5 Dec 2023 12:25:34 +0100 Subject: Initial commit --- MIBS/extreme/EXTREME-VC-MIB | 86 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 MIBS/extreme/EXTREME-VC-MIB (limited to 'MIBS/extreme/EXTREME-VC-MIB') diff --git a/MIBS/extreme/EXTREME-VC-MIB b/MIBS/extreme/EXTREME-VC-MIB new file mode 100644 index 0000000..5344bcc --- /dev/null +++ b/MIBS/extreme/EXTREME-VC-MIB @@ -0,0 +1,86 @@ +-- ============================================================================ + +-- Support dropped in 6.0 + +-- +-- Extreme Virtual Chassis objects +-- + +EXTREME-VC-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY FROM SNMPv2-SMI + OBJECT-TYPE FROM SNMPv2-SMI + TruthValue FROM SNMPv2-TC + ifIndex FROM RFC1213-MIB + extremeAgent FROM EXTREME-BASE-MIB; + + extremeVC MODULE-IDENTITY + LAST-UPDATED "9801090000Z" + ORGANIZATION "Extreme Networks, Inc." + CONTACT-INFO "www.extremenetworks.com" + DESCRIPTION "Extreme Virtual Chassis objects" + ::= { extremeAgent 5 } + +-- +-- Virtual Chassis Link Table +-- + + extremeVCLinkTable OBJECT-TYPE + SYNTAX SEQUENCE OF ExtremeVCLinkEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A table of information about any neighbouring + Extreme Virtual Chassis device. Only contains + valid data for ports that are configured to + have extremePortSummitlinkAdminMode set to + summitlinkOnly have an active link or + have had an active link since the last time + they were configured in Summitlink mode." + ::= { extremeVC 1 } + + extremeVCLinkEntry OBJECT-TYPE + SYNTAX ExtremeVCLinkEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Neighbour information for a single Summitlink + Port." + INDEX { ifIndex } + ::= { extremeVCLinkTable 1 } + + ExtremeVCLinkEntry ::= SEQUENCE { + extremeVCLinkValid TruthValue, + extremeVCLinkDeviceId INTEGER, + extremeVCLinkPortIndex INTEGER + } + + extremeVCLinkValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Flag indicating whether other columns of this + table contain data." + ::= { extremeVCLinkEntry 1 } + + extremeVCLinkDeviceId OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "ID of the current SummitVC device + connected to this Summitlink port." + ::= { extremeVCLinkEntry 2 } + + extremeVCLinkPortIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The Summitlink subchannel number that the Summit + device on the other side of the neighbouring + SummitVC will use to reach this device." + ::= { extremeVCLinkEntry 3 } +END -- cgit v1.2.3