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

@ -253,4 +253,39 @@ fanSpeedStatus OBJECT-TYPE
DESCRIPTION "Indicates the current state of the fan based on its speed"
::= { fanEntry 6 }
psuTable OBJECT-TYPE
SYNTAX SEQUENCE OF PsuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of Power Supply Units"
::= { environment 5}
psuEntry OBJECT-TYPE
SYNTAX PsuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Power Supply Unit information structure"
INDEX { IMPLIED psuId }
::= { psuTable 1 }
PsuEntry ::=
SEQUENCE {
psuId DisplayString,
psuStatus INTEGER
}
psuId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Power Supply Unit identifier"
::= { psuEntry 1 }
psuStatus OBJECT-TYPE
SYNTAX INTEGER {ok(0),powerInputFailure(1),fuseFailure(2),error(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the current state of the PSU"
::= { psuEntry 2 }
END