diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/extreme/EXTREME-VC-MIB | |
| download | mibs-main.tar.gz mibs-main.zip | |
Diffstat (limited to 'MIBS/extreme/EXTREME-VC-MIB')
| -rw-r--r-- | MIBS/extreme/EXTREME-VC-MIB | 86 |
1 files changed, 86 insertions, 0 deletions
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 |