Commit version 24.12.13800
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
--**MOD+************************************************************************
|
||||
--* Module: ARUBAWIRED-PORTVLAN-MIB :Port VLAN MIB file
|
||||
--*
|
||||
--* (c) Copyright 2020 Hewlett Packard Enterprise Development LP
|
||||
--* (c) Copyright 2020-2022 Hewlett Packard Enterprise Development LP
|
||||
--* All Rights Reserved.
|
||||
--*
|
||||
--* The contents of this software are proprietary and confidential
|
||||
@ -19,6 +19,8 @@ ARUBAWIRED-PORTVLAN-MIB DEFINITIONS ::= BEGIN
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE
|
||||
FROM SNMPv2-SMI
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC
|
||||
MODULE-COMPLIANCE, OBJECT-GROUP
|
||||
FROM SNMPv2-CONF
|
||||
InterfaceIndex
|
||||
@ -27,7 +29,7 @@ IMPORTS
|
||||
FROM ARUBAWIRED-NETWORKING-OID;
|
||||
|
||||
arubaWiredPortVlanMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "202011200000Z" -- November 20, 2020
|
||||
LAST-UPDATED "202110140000Z" -- October 14, 2021
|
||||
ORGANIZATION "HPE/Aruba Networking Division"
|
||||
CONTACT-INFO "Hewlett Packard Company 8000 Foothills Blvd. Roseville,
|
||||
CA 95747"
|
||||
@ -36,10 +38,29 @@ arubaWiredPortVlanMIB MODULE-IDENTITY
|
||||
association between physical port and Virtual Local
|
||||
Area Network (VLAN) feature"
|
||||
|
||||
REVISION "202110140000Z" -- October 14, 2021
|
||||
DESCRIPTION "Added OID arubaWiredPortVlanMemberVid"
|
||||
|
||||
REVISION "202011200000Z" -- November 20, 2020
|
||||
DESCRIPTION "Initial Revision"
|
||||
::= { wndFeatures 18 }
|
||||
|
||||
VidList ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION "Each octet within this value specifies a set of eight
|
||||
VlanIIndex (VID), with the first octet specifying VIDs 1
|
||||
through 8, the second octet specifying VIDs 9 through 16,
|
||||
etc. Within each octet, the most significant bit represents
|
||||
the lowest numbered VID, and the least significant bit
|
||||
represents the highest numbered VID. Thus, each VID
|
||||
is represented by a single bit within the value of this
|
||||
object. If that bit has a value of 1 then that VID is
|
||||
included in the set of VIDs; the VID is not included if its
|
||||
bit has a value of 0. This list represents the entire
|
||||
range of VlanIndex values defined in the scope of IEEE
|
||||
802.1Q."
|
||||
SYNTAX OCTET STRING (SIZE (512))
|
||||
|
||||
arubaWiredPortVlanNotifications OBJECT IDENTIFIER ::= { arubaWiredPortVlanMIB 0 }
|
||||
arubaWiredPortVlanObjects OBJECT IDENTIFIER ::= { arubaWiredPortVlanMIB 1 }
|
||||
arubaWiredPortVlanConfig OBJECT IDENTIFIER ::= { arubaWiredPortVlanObjects 0 }
|
||||
@ -68,7 +89,8 @@ arubaWiredPortVlanMemberEntry OBJECT-TYPE
|
||||
ArubaWiredPortVlanMemberEntry ::=
|
||||
SEQUENCE {
|
||||
arubaWiredPortVlanMemberIndex InterfaceIndex,
|
||||
arubaWiredPortVlanMemberMode INTEGER
|
||||
arubaWiredPortVlanMemberMode INTEGER,
|
||||
arubaWiredPortVlanMemberVid VidList
|
||||
}
|
||||
|
||||
arubaWiredPortVlanMemberIndex OBJECT-TYPE
|
||||
@ -89,13 +111,21 @@ arubaWiredPortVlanMemberMode OBJECT-TYPE
|
||||
"Port VLAN membership mode"
|
||||
::= { arubaWiredPortVlanMemberEntry 2 }
|
||||
|
||||
arubaWiredPortVlanConformance OBJECT IDENTIFIER::= { arubaWiredPortVlanMIB 2 }
|
||||
arubaWiredPortVlanCompliances OBJECT IDENTIFIER::= { arubaWiredPortVlanConformance 1 }
|
||||
arubaWiredPortVlanGroups OBJECT IDENTIFIER::= { arubaWiredPortVlanConformance 2 }
|
||||
arubaWiredPortVlanMemberVid OBJECT-TYPE
|
||||
SYNTAX VidList
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "VLAN IDs that the port is a member of."
|
||||
::= { arubaWiredPortVlanMemberEntry 3 }
|
||||
|
||||
arubaWiredPortVlanConformance OBJECT IDENTIFIER ::= { arubaWiredPortVlanMIB 2 }
|
||||
arubaWiredPortVlanCompliances OBJECT IDENTIFIER ::= { arubaWiredPortVlanConformance 1 }
|
||||
arubaWiredPortVlanGroups OBJECT IDENTIFIER ::= { arubaWiredPortVlanConformance 2 }
|
||||
|
||||
arubaWiredPortVlanMemberTableGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
arubaWiredPortVlanMemberMode
|
||||
arubaWiredPortVlanMemberMode,
|
||||
arubaWiredPortVlanMemberVid
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION "A collection of VLAN table objects."
|
||||
|
Reference in New Issue
Block a user