Commit version 24.12.13800
This commit is contained in:
@ -12,7 +12,7 @@ IMPORTS
|
||||
FROM SYNOPTICS-ROOT-MIB;
|
||||
|
||||
bayStackNesMib MODULE-IDENTITY
|
||||
LAST-UPDATED "201408220000Z"
|
||||
LAST-UPDATED "201812040000Z"
|
||||
ORGANIZATION "Avaya"
|
||||
CONTACT-INFO "Avaya"
|
||||
DESCRIPTION
|
||||
@ -29,6 +29,24 @@ bayStackNesMib MODULE-IDENTITY
|
||||
no warranty, either express or implied, as to the use,
|
||||
operation, condition, or performance of the Specification."
|
||||
|
||||
REVISION "201812040000Z" -- 04 Dec. 2018
|
||||
DESCRIPTION "Version 5: Corrected wrong object reference to
|
||||
bsnesEEEInterfaceEntry (azmeu)"
|
||||
|
||||
REVISION "201806010000Z" -- 01 June 2018
|
||||
DESCRIPTION "v4: Add bsnesEnergySaverClearEEEStats and slight
|
||||
modifications to DESCRIPTION of
|
||||
bsnesInterfaceEnergySaverEEEEnable and
|
||||
bsnesInterfaceClearEEEStats.
|
||||
Requested by Amogha (Prem)"
|
||||
|
||||
REVISION "201806010000Z" -- 01 June 2018
|
||||
DESCRIPTION "v3: Add the following -
|
||||
bsnesEEEPortStatsTable
|
||||
bsnesInterfaceEnergySaverEEEEnable
|
||||
bsnesInterfaceClearEEEStats
|
||||
Requested by Amogha (Prem)"
|
||||
|
||||
REVISION "201408220000Z" -- 22 August 2014
|
||||
DESCRIPTION "v2: Changed organization to Avaya."
|
||||
|
||||
@ -91,6 +109,17 @@ bsnesEnergySaverActive OBJECT-TYPE
|
||||
manually activated or deactivated."
|
||||
::= { bsnesScalars 4 }
|
||||
|
||||
bsnesEnergySaverClearEEEStats OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This object is used to clear the Energy Efficient Ethernet stats
|
||||
on all interfaces. This should be set to True to clear the stats
|
||||
and a value of False will always be returned."
|
||||
DEFVAL { false }
|
||||
::= { bsnesScalars 5 }
|
||||
|
||||
-- -------------------------------------------------------------
|
||||
-- bsnesScheduleTable
|
||||
-- -------------------------------------------------------------
|
||||
@ -201,7 +230,9 @@ BsnesInterfaceEntry ::=
|
||||
SEQUENCE {
|
||||
bsnesInterfaceIndex InterfaceIndex,
|
||||
bsnesInterfaceEnergySaverEnabled TruthValue,
|
||||
bsnesInterfaceEnergySaverPoeStatus INTEGER
|
||||
bsnesInterfaceEnergySaverPoeStatus INTEGER,
|
||||
bsnesInterfaceEnergySaverEEEEnable TruthValue,
|
||||
bsnesInterfaceClearEEEStats TruthValue
|
||||
}
|
||||
|
||||
bsnesInterfaceIndex OBJECT-TYPE
|
||||
@ -233,6 +264,23 @@ bsnesInterfaceEnergySaverPoeStatus OBJECT-TYPE
|
||||
"Indicates the Avaya Energy Saver PoE status for this interface."
|
||||
::= { bsnesInterfaceEntry 3 }
|
||||
|
||||
bsnesInterfaceEnergySaverEEEEnable OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Enable/disable the Energy Efficient Ethernet (IEEE 802.3az)
|
||||
for this interface"
|
||||
DEFVAL { false }
|
||||
::= { bsnesInterfaceEntry 4 }
|
||||
|
||||
bsnesInterfaceClearEEEStats OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION "Clear Energy Efficient Ethernet stats for this interface"
|
||||
DEFVAL { false }
|
||||
::= { bsnesInterfaceEntry 5 }
|
||||
|
||||
-- -------------------------------------------------------------
|
||||
-- bsnesSavingsTable
|
||||
-- -------------------------------------------------------------
|
||||
@ -288,6 +336,85 @@ bsnesSavingsPoeSavings OBJECT-TYPE
|
||||
value of this object is 1/10 watts."
|
||||
::= { bsnesSavingsEntry 3 }
|
||||
|
||||
|
||||
-- -------------------------------------------------------------
|
||||
-- bsnesEEEPortStatsTable
|
||||
-- -------------------------------------------------------------
|
||||
|
||||
bsnesEEEPortStatsTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF BsnesEEEPortStatsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Energy Effiecient Ethernet Port Statistics MIB"
|
||||
::= { bayStackNesObjects 5 }
|
||||
|
||||
bsnesEEEPortStatsEntry OBJECT-TYPE
|
||||
SYNTAX BsnesEEEPortStatsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "EEE Port Statistics"
|
||||
INDEX { bsnesEEEPortStatsPort}
|
||||
::= { bsnesEEEPortStatsTable 1 }
|
||||
|
||||
BsnesEEEPortStatsEntry ::=
|
||||
SEQUENCE {
|
||||
bsnesEEEPortStatsPort InterfaceIndex,
|
||||
bsnesEEEPortStatsState INTEGER,
|
||||
bsnesEEEPortStatsTxEvents Integer32,
|
||||
bsnesEEEPortStatsTxDuration Integer32,
|
||||
bsnesEEEPortStatsRxEvents Integer32,
|
||||
bsnesEEEPortStatsRxDuration Integer32
|
||||
}
|
||||
|
||||
bsnesEEEPortStatsPort OBJECT-TYPE
|
||||
SYNTAX InterfaceIndex
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION "Port Number"
|
||||
::= { bsnesEEEPortStatsEntry 1 }
|
||||
|
||||
bsnesEEEPortStatsState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
enabled(1),
|
||||
disabled(2),
|
||||
unsupported(3)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "EEE state of port
|
||||
enabled - EEE is enabled on this port
|
||||
disabled - EEE is disabled on this port
|
||||
unsupported - PHY does not support EEE for this port"
|
||||
::= { bsnesEEEPortStatsEntry 2 }
|
||||
|
||||
bsnesEEEPortStatsTxEvents OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "EEE Tx event count for the port"
|
||||
::= { bsnesEEEPortStatsEntry 3 }
|
||||
|
||||
bsnesEEEPortStatsTxDuration OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "EEE Tx durations for the port"
|
||||
::= { bsnesEEEPortStatsEntry 4 }
|
||||
|
||||
bsnesEEEPortStatsRxEvents OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "EEE Rx event count for the port"
|
||||
::= { bsnesEEEPortStatsEntry 5 }
|
||||
|
||||
bsnesEEEPortStatsRxDuration OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION "EEE Rx durations for the port"
|
||||
::= { bsnesEEEPortStatsEntry 6 }
|
||||
|
||||
-- -------------------------------------------------------------
|
||||
-- Notification Objects
|
||||
-- -------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user