diff --git a/mibs/BASP-Config-MIB b/mibs/BASP-Config-MIB new file mode 100755 index 0000000000..c1545f725e --- /dev/null +++ b/mibs/BASP-Config-MIB @@ -0,0 +1,514 @@ +BASP-Config-MIB DEFINITIONS ::= BEGIN + + -- Broadcom(R) Advanced Server Configuration MIB + -- + -- This MIB defines LoadBalance/VLAN configuration Management Information Base. + -- These objects are part of the enterprise MIB for Broadcom Advanced Server. + -- + + IMPORTS + enterprises, IpAddress + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString, PhysAddress + FROM RFC1213-MIB; + + + broadcom OBJECT IDENTIFIER ::= { enterprises 4413 } + enet OBJECT IDENTIFIER ::= { broadcom 1 } + basp OBJECT IDENTIFIER ::= { enet 2 } + baspConfig OBJECT IDENTIFIER ::= { basp 1 } + baspTeam OBJECT IDENTIFIER ::= { baspConfig 1 } + baspPhyAdapter OBJECT IDENTIFIER ::= { baspConfig 2 } + baspVirAdapter OBJECT IDENTIFIER ::= { baspConfig 3 } + + +-- baspTeam Group -- + btTeamNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of loadbalance teams + present on this system." + ::= { baspTeam 1 } + + btTeamTable OBJECT-TYPE + SYNTAX SEQUENCE OF BtTeamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of team entries. The number of + teams is given by the value of teamNumber." + ::= { baspTeam 2 } + + btTeamEntry OBJECT-TYPE + SYNTAX BtTeamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing team objects at the + target system." + INDEX { btTeamIndex } + ::= { btTeamTable 1 } + + BtTeamEntry ::= + SEQUENCE { + btTeamIndex + INTEGER(0..65535), + btTeamName + DisplayString, + btTeamType + INTEGER, + btTeamMacAddress + PhysAddress, + btPhyNumber + INTEGER, + btVirNumber + INTEGER, + btMode + INTEGER, + btLiveLinkEnable + INTEGER, + btLinkPacketFrequency + INTEGER, + btLinkMaxRetry + INTEGER, + btLinkRetryFrequency + INTEGER, + btLinkTargetIpAddress1 + IpAddress, + btLinkTargetIpAddress2 + IpAddress, + btLinkTargetIpAddress3 + IpAddress, + btLinkTargetIpAddress4 + IpAddress + } + + btTeamIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An unique value for each team. The value for + each team must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + + ::= { btTeamEntry 1 } + + btTeamName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual string containing name of the team" + ::= { btTeamEntry 2 } + + btTeamType OBJECT-TYPE + SYNTAX INTEGER + { + team-SLB(100), + team-FEC-GEC(101), + team-802-3-AD(102), + team-SLB-AFD(104) + } + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of team, distinguished according to + the attribute assigned. When team has only one + physical member, the team type is ignored" + ::= { btTeamEntry 3 } + + btTeamMacAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Mac address of the team. Mac address is + assigned to a team when the team type is + team-FEC-GEC(101) or team-802-3-AD(102)" + ::= { btTeamEntry 4 } + + btPhyNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of physical adapters in the team" + ::= { btTeamEntry 5 } + + btVirNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of virtual adapters in the team " + ::= { btTeamEntry 6 } + + btMode OBJECT-TYPE + SYNTAX INTEGER + { + primaryMode(1), + standby(2) + } + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "mode of this team, PrimaryMode(0) or + Standby(1). For team type other than + team-SLB(100), this should always be + PrimaryMode(0)." + ::= { btTeamEntry 7 } + + btLiveLinkEnable OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1), + enabled(2) + } + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "LiveLink is enabled or not. Probe packet can + be enabled only for team-SLB(100) and + team-SLB-AFD(104)." + ::= { btTeamEntry 8 } + + btLinkPacketFrequency OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The frequency in + milliseconds that a link packet is to be sent." + ::= { btTeamEntry 9 } + + btLinkMaxRetry OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The maximum number of + retries before failing a team member." + ::= { btTeamEntry 10 } + + btLinkRetryFrequency OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The frequency (milliseconds) + a link packet is to be sent after a dropped link + packet is detected." + ::= { btTeamEntry 11 } + + btLinkTargetIpAddress1 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The target IP address that + a link packet is sent to. A DNS name cannot be + specified since there is no reliable method to + resolve the DNS name without introducing + unacceptable risk. Only the first one is mandatory + for LiveLink. All 0 is not available." + ::= { btTeamEntry 12 } + + btLinkTargetIpAddress2 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The target IP address that + a link packet is sent to. A DNS name cannot be + specified since there is no reliable method to + resolve the DNS name without introducing + unacceptable risk. This one is optional for + LiveLink. All 0 is not available." + ::= { btTeamEntry 13 } + + btLinkTargetIpAddress3 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The target IP address that + a link packet is sent to. A DNS name cannot be + specified since there is no reliable method to + resolve the DNS name without introducing + unacceptable risk. This one is optional for + LiveLink. All 0 is not available." + ::= { btTeamEntry 14 } + + btLinkTargetIpAddress4 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The target IP address that + a link packet is sent to. A DNS name cannot be + specified since there is no reliable method to + resolve the DNS name without introducing + unacceptable risk. This one is optional for + LiveLink. All 0 is not available." + ::= { btTeamEntry 15 } + +-- baspPhyAdapter Group -- + + btPhyAdapterNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of physical adapters presented + in the physical adapter table." + ::= { baspPhyAdapter 1 } + + btPhyAdapterTable OBJECT-TYPE + SYNTAX SEQUENCE OF BtPhyAdapterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The phyMember tables contain the physical + adapter members of loadbalance teams." + ::= { baspPhyAdapter 2 } + + btPhyAdapterEntry OBJECT-TYPE + SYNTAX BtPhyAdapterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A team entry containing objects at the + target system." + INDEX { btpTeamIndex, + btpAdapterIndex } + ::= { btPhyAdapterTable 1 } + + BtPhyAdapterEntry ::= + SEQUENCE { + btpTeamIndex + INTEGER(0..65535), + btpAdapterIndex + INTEGER(0..65535), + btpAdapterDesc + DisplayString, + btpMemberType + INTEGER, + btpMacAddress + PhysAddress, + btpMemberState + INTEGER, + btpLiveLinkIp + IpAddress + } + + btpTeamIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An unique value for each team." + ::= { btPhyAdapterEntry 1 } + + btpAdapterIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A value for each adapter within a team." + ::= { btPhyAdapterEntry 2 } + + + btpAdapterDesc OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + " A textual string containing name of the adapter" + ::= { btPhyAdapterEntry 3 } + + btpMemberType OBJECT-TYPE + SYNTAX INTEGER + { + load-balance(100), + standby(101) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of adapter member." + ::= { btPhyAdapterEntry 4 } + + + btpMacAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Mac address of the adapter." + ::= { btPhyAdapterEntry 5 } + + btpMemberState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + link-up-not-join-traffic(2), + disable-not-join-traffic(3), + join-traffic(4) + } + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "State of the interface in the team." + ::= { btPhyAdapterEntry 6 } + + btpLiveLinkIp OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP address for LiveLink." + ::= { btPhyAdapterEntry 7 } + + +-- baspVirmember Group -- + + btVirAdapterNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of virtual adapters presented + in the virtual adapter table." + ::= { baspVirAdapter 1 } + + btVirAdapterTable OBJECT-TYPE + SYNTAX SEQUENCE OF BtVirAdapterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The virMember tables contain the VLAN + members of loadbalance teams." + ::= { baspVirAdapter 2 } + + btVirAdapterEntry OBJECT-TYPE + SYNTAX BtVirAdapterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A team entry containing objects at the + target system." + INDEX { btvTeamIndex, + btvAdapterIndex } + ::= { btVirAdapterTable 1 } + + BtVirAdapterEntry ::= + SEQUENCE { + btvTeamIndex + INTEGER(0..65535), + btvAdapterIndex + INTEGER(0..65535), + btvAdapterDesc + DisplayString, + btvVlanId + INTEGER, + btvLinkStatus + INTEGER, + btvIPAddress + IpAddress, + btvSubnetMask + IpAddress, + btvPhysAddress + PhysAddress, + btvLineSpeed + DisplayString + } + + btvTeamIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An unique value for each team." + ::= { btVirAdapterEntry 1 } + + btvAdapterIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A unique value for each virtual adapter in a team." + ::= { btVirAdapterEntry 2 } + + btvAdapterDesc OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + " A textual string containing name of the VLAN" + ::= { btVirAdapterEntry 3 } + + btvVlanId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "802.1Q VLAN ID of the virtual adapter." + ::= { btVirAdapterEntry 4 } + + btvLinkStatus OBJECT-TYPE + SYNTAX INTEGER + { + link-up(1), + link-fail(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Virtual adapter link status" + ::= { btVirAdapterEntry 5 } + + btvIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP address of the virtual adapter." + ::= { btVirAdapterEntry 6 } + + btvSubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP subnet Mask of the virtual adapter." + ::= { btVirAdapterEntry 7 } + + btvPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC address of the virtual adapter." + ::= { btVirAdapterEntry 8 } + + btvLineSpeed OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual string displays the operating speed + of the virtual adapter." + ::= { btVirAdapterEntry 9 } + +END diff --git a/mibs/BASP-Statistics-MIB b/mibs/BASP-Statistics-MIB new file mode 100755 index 0000000000..61d6408dc5 --- /dev/null +++ b/mibs/BASP-Statistics-MIB @@ -0,0 +1,410 @@ +BASP-Statistics-MIB DEFINITIONS ::= BEGIN + + -- Broadcom(R) Advanced Server Statistics MIB + -- + -- This MIB defines Load Balance/VLAN Statistics Management Information Base. + -- These objects are part of the enterprise MIB for Broadcom Advanced Server. + -- + + IMPORTS + enterprises, Counter + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB; + + + broadcom OBJECT IDENTIFIER ::= { enterprises 4413 } + enet OBJECT IDENTIFIER ::= { broadcom 1 } + basp OBJECT IDENTIFIER ::= { enet 2 } + baspStat OBJECT IDENTIFIER ::= { basp 2 } + baspTeamStat OBJECT IDENTIFIER ::= { baspStat 1 } + baspPhyAdapterStat OBJECT IDENTIFIER ::= { baspStat 2 } + baspVirAdapterStat OBJECT IDENTIFIER ::= { baspStat 3 } + +------------------------ +-- baspTeamStat Group -- +------------------------ + btsTeamNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of loadbalance teams + present on this system." + ::= { baspTeamStat 1 } + + btsTeamTable OBJECT-TYPE + SYNTAX SEQUENCE OF BtsTeamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of team entries. The number of + teams is given by the value of teamNumber." + ::= { baspTeamStat 2 } + + btsTeamEntry OBJECT-TYPE + SYNTAX BtsTeamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing team statistics objects + at the target system." + INDEX { btsTeamIndex } + ::= { btsTeamTable 1 } + + BtsTeamEntry ::= + SEQUENCE { + btsTeamIndex + INTEGER, + btsTeamName + DisplayString, + btsPhyNumber + INTEGER, + btsVirNumber + INTEGER, + btsPacketSends + Counter, + btsPacketSendDiscardeds + Counter, + btsPacketSendQueueds + Counter, + btsPacketRecvs + Counter, + btsPacketRecvDiscardeds + Counter, + btsLinkPacketsSents + Counter, + btsLinkPacketsRetrieds + Counter + } + + btsTeamIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An unique value for each team. + The value for each team must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + + ::= { btsTeamEntry 1 } + + btsTeamName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + " A textual string containing name of the team" + ::= { btsTeamEntry 2 } + + btsPhyNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of physical adapters in the team" + ::= { btsTeamEntry 3 } + + btsVirNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of virtual adapters in the team " + ::= { btsTeamEntry 4 } + + btsPacketSends OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of send packets that are forwarded to the team members, + derived from physical adapter statistics." + ::= { btsTeamEntry 5 } + + btsPacketSendDiscardeds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of send packets that are discarded, + derived from physical adapter statistics." + ::= { btsTeamEntry 6 } + + btsPacketSendQueueds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of send packets queued by driver waiting for resource" + ::= { btsTeamEntry 7 } + + btsPacketRecvs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of receive packets that are indicated to upper layer, + derived from physical adapter statistics." + ::= { btsTeamEntry 8 } + + btsPacketRecvDiscardeds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of receive packets discarded, + derived from physical adapter statistics." + ::= { btsTeamEntry 9 } + + btsLinkPacketsSents OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: Number of link packets sent + across all adapters for the team - Expressed as a + quantity." + ::= { btsTeamEntry 10 } + + btsLinkPacketsRetrieds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The number of retry packets + sent across all adapters for the team - Expressed + as a quantity." + ::= { btsTeamEntry 11 } + +------------------------------ +-- baspPhyAdapterStat Group -- +------------------------------ + btsPhyAdapterNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of physical adapters presented + in the physical adapter table." + ::= { baspPhyAdapterStat 1 } + + btsPhyAdapterStatTable OBJECT-TYPE + SYNTAX SEQUENCE OF BtsPhyAdapterStatEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The phyMember tables contain the physical + adapter members of loadbalance teams." + ::= { baspPhyAdapterStat 2 } + + btsPhyAdapterStatEntry OBJECT-TYPE + SYNTAX BtsPhyAdapterStatEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A team entry containing objects at the + target system." + INDEX { btspTeamIndex, + btspAdapterIndex } + ::= { btsPhyAdapterStatTable 1 } + + BtsPhyAdapterStatEntry ::= + SEQUENCE { + btspTeamIndex + INTEGER(0..65535), + btspAdapterIndex + INTEGER(0..65535), + btspAdapterDesc + DisplayString, + btspPacketSends + Counter, + btspPacketSendDiscardeds + Counter, + btspPacketRecvs + Counter, + btspPacketRecvDiscardeds + Counter, + btspLinkPacketsSents + Counter, + btspLinkPacketsRetrieds + Counter + } + + btspTeamIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An unique value for each team." + ::= { btsPhyAdapterStatEntry 1 } + + btspAdapterIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A value for each adapter within a team." + ::= { btsPhyAdapterStatEntry 2 } + + btspAdapterDesc OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + " A textual string containing name of the physical member" + ::= { btsPhyAdapterStatEntry 3 } + + btspPacketSends OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of send request completed by miniport ." + ::= { btsPhyAdapterStatEntry 4 } + + btspPacketSendDiscardeds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of send request discarded." + ::= { btsPhyAdapterStatEntry 5 } + + btspPacketRecvs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of receive packets that are indicated to upper layer." + ::= { btsPhyAdapterStatEntry 6 } + + btspPacketRecvDiscardeds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + " number of receive packets discarded." + ::= { btsPhyAdapterStatEntry 7 } + + btspLinkPacketsSents OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: Number of link packets + sent vis the adapters for the team - + Expressed as a quantity." + ::= { btsPhyAdapterStatEntry 8 } + + btspLinkPacketsRetrieds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For LiveLink feature: The number of retry packets + sent via the adapters for the team - Expressed + as a quantity." + ::= { btsPhyAdapterStatEntry 9 } + +------------------------------ +-- baspVirAdapterStat Group -- +------------------------------ + btsVirAdapterNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of virtual adapters presented + in the virtual adapter table." + ::= { baspVirAdapterStat 1 } + + btsVirAdapterStatTable OBJECT-TYPE + SYNTAX SEQUENCE OF BtsVirAdapterStatEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The phyMember tables contain the physical + adapter members of loadbalance teams." + ::= { baspVirAdapterStat 2 } + + btsVirAdapterStatEntry OBJECT-TYPE + SYNTAX BtsVirAdapterStatEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A team entry containing objects at the + target system." + INDEX { btsvTeamIndex, + btsvAdapterIndex } + ::= { btsVirAdapterStatTable 1 } + + BtsVirAdapterStatEntry ::= + SEQUENCE { + btsvTeamIndex + INTEGER(0..65535), + btsvAdapterIndex + INTEGER(0..65535), + btsvAdapterDesc + DisplayString, + btsvPacketSends + Counter, + btsvPacketSendQueueds + Counter, + btsvPacketRecvs + Counter + } + + btsvTeamIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An unique value for each team." + ::= { btsVirAdapterStatEntry 1 } + + btsvAdapterIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A value for each adapter within a team." + ::= { btsVirAdapterStatEntry 2 } + + btsvAdapterDesc OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual string containing name of the virtual member" + ::= { btsVirAdapterStatEntry 3 } + + btsvPacketSends OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of send request completed ." + ::= { btsVirAdapterStatEntry 4 } + + btsvPacketSendQueueds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "number of send request being queued by driver waiting for resource" + ::= { btsVirAdapterStatEntry 5 } + + btsvPacketRecvs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + " number of receive indicated to upper layer successfully." + ::= { btsVirAdapterStatEntry 6 } + +END diff --git a/mibs/Brcm-BASPTrap-MIB b/mibs/Brcm-BASPTrap-MIB new file mode 100755 index 0000000000..19ebd5349f --- /dev/null +++ b/mibs/Brcm-BASPTrap-MIB @@ -0,0 +1,83 @@ +Brcm-BASPTrap-MIB DEFINITIONS ::= BEGIN + + -- Broadcom(R) Advanced Server Trap MIB + -- + + IMPORTS + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + DisplayString + FROM RFC1213-MIB; + + + broadcom OBJECT IDENTIFIER ::= { enterprises 4413 } + enet OBJECT IDENTIFIER ::= { broadcom 1 } + basp OBJECT IDENTIFIER ::= { enet 2 } + baspConfig OBJECT IDENTIFIER ::= { basp 1 } + baspStat OBJECT IDENTIFIER ::= { basp 2 } + baspTrap OBJECT IDENTIFIER ::= { basp 3 } + +-- +-- Object Definitions +-- + trapAdapterName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The adapter name." + ::= { baspTrap 1 } + + trapTeamName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The team name." + ::= { baspTrap 2 } + + trapCauseDirection OBJECT-TYPE + SYNTAX INTEGER + { + adapterActive(1), + adapterInactive(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Event caused by failover condition." + ::= { baspTrap 3 } + + trapAdapterActivityCause OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + linkChange(2), + adapterEnabledOrDisabled(3), + adapterAddedOrRemoved(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Addition explanation for the Event trapCauseDirection." + ::= { baspTrap 4 } + +-- +-- Trap Definitions +-- + failoverEvent TRAP-TYPE + ENTERPRISE baspTrap + VARIABLES { trapAdapterName, + trapTeamName, + trapCauseDirection, + trapAdapterActivityCause } + DESCRIPTION + "This trap is generated to indicate that adapter Fail-Over + event has occured" + --#SEVERITY MINOR + ::= 1 +END diff --git a/mibs/Brcm-adapterInfo-MIB b/mibs/Brcm-adapterInfo-MIB new file mode 100755 index 0000000000..accd21a8e5 --- /dev/null +++ b/mibs/Brcm-adapterInfo-MIB @@ -0,0 +1,281 @@ +Brcm-adapterInfo-MIB DEFINITIONS ::= BEGIN + + -- Broadcom(R) NetXtreme Network Adapter Extended Information MIB + -- + -- This MIB defines the Broadcom NetXtreme Adapter Extended Information Set. + -- These objects are part of the enterprise MIB for Broadcom server and + -- work station network adapters. + -- + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + enterprises, IpAddress + FROM RFC1155-SMI + DisplayString, PhysAddress + FROM RFC1213-MIB + InetAddressIPv6 + FROM INET-ADDRESS-MIB; + + + broadcom OBJECT IDENTIFIER ::= { enterprises 4413 } + enet OBJECT IDENTIFIER ::= { broadcom 1 } + basp OBJECT IDENTIFIER ::= { enet 2 } + ifControllers OBJECT IDENTIFIER ::= { enet 3 } + baspConfig OBJECT IDENTIFIER ::= { basp 1 } + baspStat OBJECT IDENTIFIER ::= { basp 2 } + baspTrap OBJECT IDENTIFIER ::= { basp 3 } + +-- +-- adaptergroup Group +-- + ifiNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Broadcom network interfaces (regardless + of their current state) present on this system." + ::= { ifControllers 1 } + + ifiTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfiEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of Broadcom network interface entries. + The number of entries is given by the ifiNumber." + ::= { ifControllers 2 } + + ifiEntry OBJECT-TYPE + SYNTAX IfiEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing statistics objects of a Broadcom + network interface in this system." + INDEX { ifiIndex } + ::= { ifiTable 1 } + + IfiEntry ::= + SEQUENCE { + ifiIndex + INTEGER(0..65535), + ifName + DisplayString, + ifiDescr + DisplayString, + ifNetworkAddress + IpAddress, + ifSubnetMask + IpAddress, + ifiPhysAddress + PhysAddress, + ifPermPhysAddress + PhysAddress, + ifLinkStatus + INTEGER, + ifState + INTEGER, + ifLineSpeed + INTEGER, + ifDuplexMode + INTEGER, + ifMemBaseLow + DisplayString, + ifMemBaseHigh + DisplayString, + ifInterrupt + INTEGER, + ifBusNumber + INTEGER, + ifDeviceNumber + INTEGER, + ifFunctionNumber + INTEGER, + ifIpv6NetworkAddress + InetAddressIPv6 + } + + ifiIndex OBJECT-TYPE + SYNTAX INTEGER(0..65535) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An unique value for each Broadcom interface. + The value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { ifiEntry 1 } + + ifName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + " A textual string containing name of the adapter or team" + ::= { ifiEntry 2 } + + ifiDescr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + " A textual string containing the adapter or team description" + ::= { ifiEntry 3 } + + ifNetworkAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP address of the adapter." + ::= { ifiEntry 4 } + + ifSubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP subnet Mask of the adapter." + ::= { ifiEntry 5 } + + ifiPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC address of the adapter." + ::= { ifiEntry 6 } + + ifPermPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Permanent MAC address of the adapter." + ::= { ifiEntry 7 } + + ifLinkStatus OBJECT-TYPE + SYNTAX INTEGER + { + link-up(1), + link-fail(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " Adapter link status, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 8 } + + ifState OBJECT-TYPE + SYNTAX INTEGER + { + normal-mode(1), + diagnotic-mode(2), + adapter-removed(3), + lowpower-mode(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The operating mode of the driver, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 9 } + + ifLineSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + speed-10-Mbps (2), + speed-100-Mbps (3), + speed-1000-Mbps (4), + speed-2500-Mbps (5), + speed-10-Gbps (6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " The operating speed of the adapter, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 10 } + + ifDuplexMode OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + half-duplex(2), + full-duplex(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + " Adapter duplex mode, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 11 } + + ifMemBaseLow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + " memory low range of the adapter, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 12 } + + ifMemBaseHigh OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + " memory high range of the adapter, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 13 } + + ifInterrupt OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " IRQ value for the adapter, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 14 } + + ifBusNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " PCI Bus Number where the Adapter is situated, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 15 } + + ifDeviceNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " PCI Device Number of the adapter, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 16 } + + ifFunctionNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " PCI Function Number of the adapter, this information only + applicable to the Broadcom adapter" + ::= { ifiEntry 17 } + + ifIpv6NetworkAddress OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IPv6 address of the adapter." + ::= { ifiEntry 18 } + +END \ No newline at end of file diff --git a/mibs/DCS3FRU-MIB b/mibs/DCS3FRU-MIB new file mode 100755 index 0000000000..c0c5dbf22f --- /dev/null +++ b/mibs/DCS3FRU-MIB @@ -0,0 +1,255 @@ +------------------------------------------------------------------------------- +-- +-- Title: Systems Management Field Replaceable Unit (FRU) MIB +-- +-- Version: 5.6.0 +-- +-- Release Date: April 2006 +-- +-- Description: This MIB defines MIB objects that make system FRU +-- information available to SNMP management applications. +-- +-- Copyright (c) 2000-2006 Dell Inc. +-- All Rights Reserved. +-- +-- Note: The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- OID Format Legend: +-- = attribute ID +-- = index ID +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Begin MIB +------------------------------------------------------------------------------- + +DCS3FRU-MIB DEFINITIONS ::= BEGIN + +IMPORTS + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB; + + +------------------------------------------------------------------------------- +-- Object Identifiers +------------------------------------------------------------------------------- + +-- Enterprise ID +dell OBJECT IDENTIFIER ::= { enterprises 674 } + +-- Server3 Branch +server3 OBJECT IDENTIFIER ::= { dell 10892 } + +-- Server3 Groups +baseboardGroup OBJECT IDENTIFIER ::= { server3 1 } + +-- Server3 Baseboard Groups for FRU +-- (Other Server3 Baseboard groups are defined in other MIB files.) +fruGroup OBJECT IDENTIFIER ::= { baseboardGroup 2000 } + + +------------------------------------------------------------------------------- +-- Textual Conventions +------------------------------------------------------------------------------- + +DellObjectRange ::= INTEGER (1..128) +DellUnsigned8BitRange ::= INTEGER (0..255) +DellUnsigned16BitRange ::= INTEGER (0..65535) +DellUnsigned32BitRange ::= INTEGER (0..4294967295) + +-- DellDateName dates are defined in the displayable format +-- yyyymmddHHMMSS.uuuuuu+ooo +-- where yyyy is the year, mm is the month number, dd is the day of the month, +-- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the +-- number of microseconds, and +ooo is the offset from UTC in minutes. If east +-- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the +-- number is preceded by a minus (-) sign. +-- +-- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT +-- would be represented as: 19940525133015.000000-300 +-- +-- Values must be zero-padded if necessary, like "05" in the example above. +-- If a value is not supplied for a field, each character in the field +-- must be replaced with asterisk ('*') characters. +DellDateName ::= DisplayString (SIZE (25)) + +-- +-- Status +-- +DellStatus ::= INTEGER { + other(1), -- status is not one of the following: + unknown(2), -- status of object is unknown (not known or monitored) + ok(3), -- status of object is OK (normal) + nonCritical(4), -- status of object is noncritical (warning) + critical(5), -- status of object is critical (failure) + nonRecoverable(6) -- status of object is non-recoverable (dead) +} + + +------------------------------------------------------------------------------- +-- +-- MIB Groups +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Field Replaceable Unit (FRU) Group +-- +-- OID: 1.3.6.1.4.1.674.10892.1.2000 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Field Replaceable Unit (FRU) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.2000.10.1... +------------------------------------------------------------------------------- + +DellFRUInformationState ::= INTEGER { + ok(1), -- FRU information is OK + notSupported(2), -- FRU information is not supported + notAvailable(3), -- FRU information is not available + checksumInvalid(4), -- FRU information checksum is invalid + corrupted(5) -- FRU information is corrupted +} + +FruTableEntry ::= SEQUENCE { + fruChassisIndex DellObjectRange, + fruIndex DellObjectRange, + fruInformationStatus DellStatus, + fruInformationState DellFRUInformationState, + fruDeviceName DisplayString (SIZE (0..64)), + fruManufacturerName DisplayString (SIZE (0..64)), + fruSerialNumberName DisplayString (SIZE (0..64)), + fruPartNumberName DisplayString (SIZE (0..64)), + fruRevisionName DisplayString (SIZE (0..64)), + fruManufacturingDateName DellDateName, + fruAssetTagName DisplayString (SIZE (0..64)) +} + +fruTable OBJECT-TYPE + SYNTAX SEQUENCE OF FruTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"2000.0010 This object defines the Field Replaceable Unit table." + ::= { fruGroup 10 } +fruTableEntry OBJECT-TYPE + SYNTAX FruTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"2000.0010.0001 This object defines the Field Replaceable Unit table entry." + INDEX { fruChassisIndex, + fruIndex } + ::= { fruTable 1 } + +fruChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0001 This attribute defines the index (one based) of the +chassis containing the field replaceable unit." + ::= { fruTableEntry 1 } +fruIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0002 This attribute defines the index (one based) of the +field replaceable unit." + ::= { fruTableEntry 2 } +fruInformationStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0003 This attribute defines the status of the +field replaceable unit information." + ::= { fruTableEntry 3 } +fruInformationState OBJECT-TYPE + SYNTAX DellFRUInformationState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0004 This attribute defines the state of the +field replaceable unit information. Some information for the +field replaceable unit may not be available if the state is +other than ok(1)." + ::= { fruTableEntry 4 } +fruDeviceName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0005 This attribute defines the device name of the +field replaceable unit." + ::= { fruTableEntry 5 } +fruManufacturerName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0006 This attribute defines the manufacturer of the +field replaceable unit." + ::= { fruTableEntry 6 } +fruSerialNumberName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0007 This attribute defines the serial number of the +field replaceable unit." + ::= { fruTableEntry 7 } +fruPartNumberName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0008 This attribute defines the part number of the +field replaceable unit." + ::= { fruTableEntry 8 } +fruRevisionName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0009 This attribute defines the revision of the +field replaceable unit." + ::= { fruTableEntry 9 } +fruManufacturingDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0010 This attribute defines the manufacturing date of the +of the field replaceable unit." + ::= { fruTableEntry 10 } +fruAssetTagName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"2000.0010.0001.0011 This attribute defines the asset tag of the +field replaceable unit." + ::= { fruTableEntry 11 } + + +END + + +------------------------------------------------------------------------------- +-- End MIB +------------------------------------------------------------------------------- + diff --git a/mibs/DCS3RMT-MIB b/mibs/DCS3RMT-MIB new file mode 100755 index 0000000000..9347cbffdf --- /dev/null +++ b/mibs/DCS3RMT-MIB @@ -0,0 +1,1608 @@ +------------------------------------------------------------------------------- +-- +-- Server Administrator Remote Access MIB for Server3 MIB Branch +-- +-- Copyright (c) 2000-2003 Dell Inc. +-- All Rights Reserved. +-- +-- The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- MIB Version 1.90 21 January 2003 +-- +-- OID Format Legend: +-- = attribute ID +-- = index ID +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Begin MIB +------------------------------------------------------------------------------- + +DCS3RMT-MIB DEFINITIONS ::= BEGIN + +IMPORTS + enterprises, IpAddress + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB; + + +------------------------------------------------------------------------------- +-- Object Identifiers +------------------------------------------------------------------------------- + +-- Enterprise ID +dell OBJECT IDENTIFIER ::= { enterprises 674 } + +-- Server3 Branch +server3 OBJECT IDENTIFIER ::= { dell 10892 } + +-- Server3 Groups +baseboardGroup OBJECT IDENTIFIER ::= { server3 1 } +drsOutOfBandGroup OBJECT IDENTIFIER ::= { server3 2 } + +-- Server3 Baseboard Groups for Remote Access +-- (All other Server3 Baseboard groups are defined in another MIB file.) +remoteAccessGroup OBJECT IDENTIFIER ::= { baseboardGroup 1700 } + + +------------------------------------------------------------------------------- +-- Textual Conventions +------------------------------------------------------------------------------- + +DellObjectRange ::= INTEGER (1..128) +DellUnsigned8BitRange ::= INTEGER (0..255) +DellUnsigned16BitRange ::= INTEGER (0..65535) +DellUnsigned32BitRange ::= INTEGER (0..4294967295) +DellBoolean ::= INTEGER (0..1) -- 0 = FALSE, 1 = TRUE + +-- Note About Bit Fields: +-- Attributes with definitions of xxxCapabilities or xxxSettings are integers +-- representing a series of bit definitions. They are NOT enumerations and +-- should be treated as bit fields. The value is passed as a decimal value; +-- it should be converted to hex, and the appropriate bits should be parsed +-- from that. Some of the more common bit combinations are defined in some +-- variables, but not all combinations are or will be defined. + +-- +-- Generic State Capabilities +-- +DellStateCapabilities ::= INTEGER { + -- If set to 0 (zero), object has no state capabilities + unknownCapabilities(1), -- object's state capabilities are unknown + -- The object's state capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + enableAndNotReadyCapable(6) +} + +-- +-- Generic State Settings +-- +DellStateSettings ::= INTEGER { + -- If set to 0 (zero), object has no state settings enabled and is disabled + unknown(1), -- object's state is unknown + enabled(2), -- object's state is disabled (offline) if bit is off + -- or enabled (online) if bit is on + notReady(4), -- object's state is not ready + enabledAndNotReady(6) +} + +-- +-- Status +-- +DellStatus ::= INTEGER { + other(1), -- status is not one of the following: + unknown(2), -- status of object is unknown (not known or monitored) + ok(3), -- status of object is OK (normal) + nonCritical(4), -- status of object is noncritical (warning) + critical(5), -- status of object is critical (failure) + nonRecoverable(6) -- status of object is non-recoverable (dead) +} + + +------------------------------------------------------------------------------- +-- +-- MIB Groups +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Remote Access Group +-- +-- OID: 1.3.6.1.4.1.674.10892.1.1700 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Remote Access Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1700.10.1... +------------------------------------------------------------------------------- + +DellRemoteAccessType ::= INTEGER { + remoteAccessTypeIsOther(1), -- the type is not one of the following: + remoteAccessTypeIsUnknown(2), -- remote access type is unknown + remoteAccessTypeIsDRACIII(3), -- remote access type is DRAC III + remoteAccessTypeIsERA(4), -- remote access type is ERA + remoteAccessTypeIsDRAC4(5), -- remote access type is DRAC4 + remoteAccessTypeIsDRAC5(6) -- remote access type is DRAC5 +} +DellRemoteAccessControlCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + logResetCapable(2), -- reset its onboard logs + hardResetCapable(4), -- be hard reset + softResetCapable(8), -- be soft reset + gracefulResetCapable(16), -- be gracefully shutdown and soft reset + defaultConfigResetCapable(32), -- reset to its default settings for the release version + allResetCapable(62), + shutdownCapable(64), -- shutdown and disable battery if PCI power is off + allResetAndShutdownCapable(126) +} +DellRemoteAccessControlSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings enabled + unknown(1), -- The object's state is unknown + -- Only one of the following settings may be enabled in one set request: + logReset(2), -- Reset the onboard logs + hardReset(4), -- Issue a hard reset to the object + softReset(8), -- Issue a soft reset to the object + gracefulReset(16), -- Issue a graceful shutdown and soft reset to the object + defaultConfigReset(32), -- Reset the object to its default settings + shutdown(64) -- Shutdown (power off) the object +} +DellRemoteAccessMonitorCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + extPwrSupplyMonitorIfConnectedCapable(2),-- monitor external power supply if connected + extPwrSupplyMonitorAlwaysEnabledCapable(4),-- monitor external power supply always + extPwrSupplyMonitorIfConnectedAndAlwaysEnabledCapable(6) +} +DellRemoteAccessMonitorSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings enabled + -- Only one extPwrSupplyMonitor setting may be enabled: + unknown(1), -- The object's state is unknown + extPwrSupplyMonitorIfConnectedEnabled(2), -- Monitor ext pwr supply volt probe + -- if the cable is connected to the DRS + extPwrSupplyMonitorAlwaysEnabledEnabled(4)-- Monitor ext pwr supply volt probe + -- regardless of the plug state +} +DellRemoteAccessLANCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + nicCapable(2), -- supports a NIC + nicDHCPCapable(4), -- can use DHCP to obtain IP address for NIC + nicAndNicDHCPCapable(6) +} +DellRemoteAccessLANSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings enabled + unknown(1), -- The object's state is unknown + nicEnabled(2), -- NIC is enabled + nicDHCPEnabled(4), -- NIC should use DHCP to obtain IP address + nicAndNicDHCPEnabled(6) +} +DellRemoteAccessHostCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + smtpEmailCapable(2), -- support email using SMTP + tftpRemoteFloppyCapable(4), -- support remote floppy boot from TFTP server + smtpEmailAndTftpRemoteFloppyCapable(6), + tftpRemoteFwUpdateCapable(8), -- support remote FW update from TFTP server + smtpEmailAndTftpRemoteFwUpdateCapable(10), + tftpRemoteFloppyAndFwUpdateCapable(12), + smtpEmailAndTftpRemoteFloppyAndFwUpdateCapable(14) +} +DellRemoteAccessHostSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings enabled + unknown(1), -- The object's state is unknown + smtpEmailEnabled(2), -- SMTP client for email is enabled (R) + tftpRemoteFloppyEnabled(4), -- TFTP client for remote floppy boot is enabled (R) + smtpEmailAndTftpRemoteFloppyEnabled(6), + tftpRemoteFwUpdateEnabled(8), -- TFTP client for FW update is enabled (R) + smtpEmailAndTftpRemoteFwUpdateEnabled(10), + tftpRemoteFloppyAndFwUpdateEnabled(12), + smtpEmailAndTftpRemoteFloppyAndFwUpdateEnabled(14) +} +DellRemoteAccessOutOfBandSNMPCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + oobSNMPAgentCapable(2), -- object has an out-of-band SNMP agent + oobSNMPTrapsCapable(4), -- object can send out-of-band SNMP traps + oobSNMPAgentAndTrapsCapable(6) +} +DellRemoteAccessOutOfBandSNMPSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings enabled + unknown(1), -- The object's state is unknown + oobSNMPAgentEnabled(2), -- out-of-band SNMP agent is enabled + oobSNMPTrapsEnabled(4), -- out-of-band SNMP traps are enabled + oobSNMPAgentAndTrapsEnabled(6) +} + +RemoteAccessTableEntry ::= SEQUENCE { + remoteAccessChassisIndex DellObjectRange, + remoteAccessAdapterIndex DellObjectRange, + remoteAccessType DellRemoteAccessType, + remoteAccessStateCapabilities DellStateCapabilities, + remoteAccessStateSettings DellStateSettings, + remoteAccessStatus DellStatus, + remoteAccessProductInfoName DisplayString (SIZE (0..63)), + remoteAccessDescriptionInfoName DisplayString (SIZE (0..255)), + remoteAccessVersionInfoName DisplayString (SIZE (0..63)), + remoteAccessControlCapabilities DellRemoteAccessControlCapabilities, + remoteAccessControlSettings DellRemoteAccessControlSettings, + remoteAccessMonitorCapabilities DellRemoteAccessMonitorCapabilities, + remoteAccessMonitorSettings DellRemoteAccessMonitorSettings, + remoteAccessLANCapabilities DellRemoteAccessLANCapabilities, + remoteAccessLANSettings DellRemoteAccessLANSettings, + remoteAccessHostCapabilities DellRemoteAccessHostCapabilities, + remoteAccessHostSettings DellRemoteAccessHostSettings, + remoteAccessOutOfBandSNMPCapabilities DellRemoteAccessOutOfBandSNMPCapabilities, + remoteAccessOutOfBandSNMPSettings DellRemoteAccessOutOfBandSNMPSettings, + remoteAccessSMTPServerIPAddress IpAddress, + remoteAccessFloppyTFTPIPAddress IpAddress, + remoteAccessFloppyTFTPPathName DisplayString (SIZE (0..255)), + remoteAccessFirmwareUpdateIPAddress IpAddress, + remoteAccessFirmwareUpdatePathName DisplayString (SIZE (0..255)), + remoteAccessNICStaticIPAddress IpAddress, + remoteAccessNICStaticNetmaskAddress IpAddress, + remoteAccessNICStaticGatewayAddress IpAddress, + remoteAccessPCMCIAInfoName DisplayString (SIZE (0..63)), + remoteAccessMiscInfoName DisplayString (SIZE (0..63)), + remoteAccessNICCurrentIPAddress IpAddress, + remoteAccessNICCurrentNetmaskAddress IpAddress, + remoteAccessNICCurrentGatewayAddress IpAddress, + remoteAccessNICCurrentInfoFromDHCP DellBoolean, + remoteAccessRemoteConnectURL DisplayString (SIZE (0..63)) +} + +remoteAccessTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteAccessTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0010 This object defines the Remote Access table." + ::= { remoteAccessGroup 10 } +remoteAccessTableEntry OBJECT-TYPE + SYNTAX RemoteAccessTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0010.0001 This object defines the Remote Access table entry." + INDEX { remoteAccessChassisIndex, + remoteAccessAdapterIndex } + ::= { remoteAccessTable 1 } + +remoteAccessChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0001 This attribute defines the index (one based) of the +chassis containing the Remote Access hardware." + ::= { remoteAccessTableEntry 1 } +remoteAccessAdapterIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0002 This attribute defines the index (one based) of the +Remote Access hardware." + ::= { remoteAccessTableEntry 2 } +remoteAccessType OBJECT-TYPE + SYNTAX DellRemoteAccessType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0003 This attribute defines the type of the +Remote Access hardware." + ::= { remoteAccessTableEntry 3 } +remoteAccessStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0004 This attribute defines the state capabilities of the +Remote Access hardware." + ::= { remoteAccessTableEntry 4 } +remoteAccessStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0005 This attribute defines the state setting of the +Remote Access hardware." + ::= { remoteAccessTableEntry 5 } +remoteAccessStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0006 This attribute defines the status of the +Remote Access hardware." + ::= { remoteAccessTableEntry 6 } +remoteAccessProductInfoName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0007 This attribute defines the name of the +product providing the Remote Access functionality." + ::= { remoteAccessTableEntry 7 } +remoteAccessDescriptionInfoName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0008 This attribute defines the description of the +product providing the Remote Access functionality." + ::= { remoteAccessTableEntry 8 } +remoteAccessVersionInfoName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0009 This attribute defines the version of the +product providing the Remote Access functionality." + ::= { remoteAccessTableEntry 9 } +remoteAccessControlCapabilities OBJECT-TYPE + SYNTAX DellRemoteAccessControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0010 This attribute defines the control capabilities of the +Remote Access hardware." + ::= { remoteAccessTableEntry 10 } +remoteAccessControlSettings OBJECT-TYPE + SYNTAX DellRemoteAccessControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0011 This attribute defines the control settings of the +Remote Access hardware." + ::= { remoteAccessTableEntry 11 } +remoteAccessMonitorCapabilities OBJECT-TYPE + SYNTAX DellRemoteAccessMonitorCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0012 This attribute defines the monitor capabilities of the +Remote Access hardware." + ::= { remoteAccessTableEntry 12 } +remoteAccessMonitorSettings OBJECT-TYPE + SYNTAX DellRemoteAccessMonitorSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0013 This attribute defines the monitor settings of the +Remote Access hardware." + ::= { remoteAccessTableEntry 13 } +remoteAccessLANCapabilities OBJECT-TYPE + SYNTAX DellRemoteAccessLANCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0014 This attribute defines the LAN capabilities of the +Remote Access hardware." + ::= { remoteAccessTableEntry 14 } +remoteAccessLANSettings OBJECT-TYPE + SYNTAX DellRemoteAccessLANSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0015 This attribute defines the LAN settings of the +Remote Access hardware." + ::= { remoteAccessTableEntry 15 } +remoteAccessHostCapabilities OBJECT-TYPE + SYNTAX DellRemoteAccessHostCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0016 This attribute defines the host capabilities of the +Remote Access hardware." + ::= { remoteAccessTableEntry 16 } +remoteAccessHostSettings OBJECT-TYPE + SYNTAX DellRemoteAccessHostSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0017 This attribute defines the host settings of the +Remote Access hardware." + ::= { remoteAccessTableEntry 17 } +remoteAccessOutOfBandSNMPCapabilities OBJECT-TYPE + SYNTAX DellRemoteAccessOutOfBandSNMPCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0018 This attribute defines the out-of-band SNMP capabilities +of the Remote Access hardware." + ::= { remoteAccessTableEntry 18 } +remoteAccessOutOfBandSNMPSettings OBJECT-TYPE + SYNTAX DellRemoteAccessOutOfBandSNMPSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0019 This attribute defines the out-of-band SNMP settings +of the Remote Access hardware." + ::= { remoteAccessTableEntry 19 } +remoteAccessSMTPServerIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0020 This attribute defines the IP address of the +SMTP server provided by the Remote Access hardware." + ::= { remoteAccessTableEntry 20 } +remoteAccessFloppyTFTPIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0021 This attribute defines the IP address of the +TFTP server providing the operating system image used by the +Remote Access hardware." + ::= { remoteAccessTableEntry 21 } +remoteAccessFloppyTFTPPathName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0022 This attribute defines the file name of the +the operating system image obtained from the TFTP server used by the +Remote Access hardware." + ::= { remoteAccessTableEntry 22 } +remoteAccessFirmwareUpdateIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0023 This attribute defines the IP address of the +update server providing the firmware image used by the +Remote Access hardware." + ::= { remoteAccessTableEntry 23 } +remoteAccessFirmwareUpdatePathName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0024 This attribute defines the file name of the +the firmware image obtained from the update server used by the +Remote Access hardware." + ::= { remoteAccessTableEntry 24 } +remoteAccessNICStaticIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0025 This attribute defines the static IP address to be used +by the onboard NIC provided by the Remote Access hardware." + ::= { remoteAccessTableEntry 25 } +remoteAccessNICStaticNetmaskAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0026 This attribute defines the netmask for the static +IP address to be used by the onboard NIC provided by the Remote Access hardware." + ::= { remoteAccessTableEntry 26 } +remoteAccessNICStaticGatewayAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0027 This attribute defines the IP address for the gateway +associated with the static IP address to be used by the onboard NIC provided +by the Remote Access hardware." + ::= { remoteAccessTableEntry 27 } +remoteAccessPCMCIAInfoName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0028 This attribute defines the information for the +PCMCIA device used by the Remote Access hardware." + ::= { remoteAccessTableEntry 28 } +remoteAccessMiscInfoName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0029 This attribute defines miscellaneous information +for the Remote Access hardware." + ::= { remoteAccessTableEntry 29 } +remoteAccessNICCurrentIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0030 This attribute defines the IP address currently being used +by the onboard NIC provided by the Remote Access hardware." + ::= { remoteAccessTableEntry 30 } +remoteAccessNICCurrentNetmaskAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0031 This attribute defines the netmask currently being used +by the onboard NIC provided by the Remote Access hardware." + ::= { remoteAccessTableEntry 31 } +remoteAccessNICCurrentGatewayAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0032 This attribute defines the IP address for the gateway +currently being used by the onboard NIC provided by the Remote Access hardware." + ::= { remoteAccessTableEntry 32 } +remoteAccessNICCurrentInfoFromDHCP OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0033 This attribute defines if DHCP was used to obtain +the NIC information currently being used by the onboard NIC provided by +the Remote Access hardware." + ::= { remoteAccessTableEntry 33 } +remoteAccessRemoteConnectURL OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0010.0001.0034 This attribute defines the URL for launching the +Remote Access Remote Connect Interface." + ::= { remoteAccessTableEntry 34 } + +------------------------------------------------------------------------------- +-- Remote User Administration Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1700.20.1.... +------------------------------------------------------------------------------- + +DellRemoteUserAdminStateCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + numericPagerCapable(8), -- support numeric paging + alphaPagerCapable(16), -- support alphanumeric paging + numericPagerAndAlphaPagerCapable(24), + emailCapable(32), -- support electronic mailing + numericPagerAlphaPagerAndEmailCapable(56), + privilegeCapable(64), -- support user privileges + numericPagerAlphaPagerEmailAndPrivilegeCapable(120) +} +DellRemoteUserAdminStateSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings capabilities, and its state is disabled + unknown(1), -- The object's state is unknown + enabled(2), -- The object's state is disabled (offline) 0, or enabled (online) 1 + notReady(4), -- The object's state is not ready + numericPagerEnabled(8), -- Numeric paging support is enabled + enabledAndNumericPagerEnabled(10), + alphaPagerEnabled(16), -- Alphanumeric paging support is enabled + enabledAndAlphaPagerEnabled(18), + enabledAndNumericPagerAndAlphaPagerEnabled(26), + emailEnabled(32), -- Electronic mailing is enabled + enabledAndEmailEnabled(34), + enabledAndNumericPagerAndEmailEnabled(42), + enabledAndAlphaPagerAndEmailEnabled(50), + enabledAndNumericPagerAlphaPagerAndEmailEnabled(58) +} +DellRemoteUserAdminControlCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + numericPagerTestCapable(2), -- support testing of the numeric paging function + alphaPagerTestCapable(4), -- support testing of the alphanumeric pager function + numericPagerTestAndAlphaPagerTestCapable(6), + emailTestCapable(8), -- support sending a test electronic mail message + numericPagerTestAlphaPagerTestAndEmailTestCapable(14) +} +DellRemoteUserAdminControlSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings capabilities, and its state is disabled + unknown(1), -- The object's state is unknown + -- Only one of the following settings may be enabled in one set request: + numericPagerTest(2), -- Perform a numeric pager test + alphaPagerTest(4), -- Perform an alphanumeric pager test + emailTest(8) -- Send a test email +} +DellRemoteUserAdminAlphaProtocolType ::= INTEGER { + other(1), -- the alphanumeric protocol is not one of the following: + unknown(2), -- alphanumeric protocol is unknown + alpha7E0(3), -- alphanumeric protocol is 7E0 + alpha8N1(4) -- alphanumeric protocol is 8N1 +} +DellRemoteUserAdminAlphaBaudType ::= INTEGER { + other(1), -- the alphanumeric baud rate is not one of the following: + unknown(2), -- alphanumeric baud rate is unknown + alphaBaud300(3), -- alphanumeric baud rate is 300 + alphaBaud1200(4) -- alphanumeric baud rate is 1200 +} + +RemoteUserAdminTableEntry ::= SEQUENCE { + remoteUserAdminChassisIndex DellObjectRange, + remoteUserAdminAdapterIndex DellObjectRange, + remoteUserAdminUserIndex DellObjectRange, + remoteUserAdminStateCapabilities DellRemoteUserAdminStateCapabilities, + remoteUserAdminStateSettings DellRemoteUserAdminStateSettings, + remoteUserAdminStatus DellStatus, + remoteUserAdminUserName DisplayString (SIZE (0..19)), + remoteUserAdminUserPasswordName DisplayString (SIZE (0..255)), + remoteUserAdminUserPrivilege DisplayString (SIZE (0..31)), + remoteUserAdminUserPrivilegeCapabilities DisplayString (SIZE (0..31)), + remoteUserAdminAlertFilterDrsEventsMask DellUnsigned32BitRange, + remoteUserAdminAlertFilterSysEventsMask DellUnsigned32BitRange, + remoteUserAdminAlertFilterDrsCapabilities DellUnsigned32BitRange, + remoteUserAdminAlertFilterSysCapabilities DellUnsigned32BitRange, + remoteUserAdminPagerNumericNumberName DisplayString (SIZE (0..95)), + remoteUserAdminPagerNumericMessageName DisplayString (SIZE (0..31)), + remoteUserAdminPagerNumericHangupDelay DellUnsigned32BitRange, + remoteUserAdminPagerAlphaPhoneNumberName DisplayString (SIZE (0..95)), + remoteUserAdminPagerAlphaProtocol DellRemoteUserAdminAlphaProtocolType, + remoteUserAdminPagerAlphaBaudRate DellRemoteUserAdminAlphaBaudType, + remoteUserAdminPagerAlphaCustomMessageName DisplayString (SIZE (0..31)), + remoteUserAdminPagerAlphaModemConnectTimeout DellUnsigned32BitRange, + remoteUserAdminPagerAlphaPagerIdName DisplayString (SIZE (0..31)), + remoteUserAdminPagerAlphaPasswordName DisplayString (SIZE (0..31)), + remoteUserAdminPagerModemInitStringName DisplayString (SIZE (0..31)), + remoteUserAdminPagerModemPort DellUnsigned32BitRange, + remoteUserAdminEmailAddressName DisplayString (SIZE (0..63)), + remoteUserAdminEmailCustomMessageName DisplayString (SIZE (0..31)), + remoteUserAdminControlCapabilities DellRemoteUserAdminControlCapabilities, + remoteUserAdminControlSettings DellRemoteUserAdminControlSettings, + remoteUserAdminUserType DellUnsigned8BitRange +} + +remoteUserAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteUserAdminTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0020 This object defines the Remote Access User Administration table." + ::= { remoteAccessGroup 20 } +remoteUserAdminTableEntry OBJECT-TYPE + SYNTAX RemoteUserAdminTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0020.0001 This object defines the Remote Access User Administration +table entry." + INDEX { remoteUserAdminChassisIndex, + remoteUserAdminAdapterIndex, + remoteUserAdminUserIndex } + ::= { remoteUserAdminTable 1 } + +remoteUserAdminChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0001 This attribute defines the index (one based) of the +chassis containing the Remote Access hardware." + ::= { remoteUserAdminTableEntry 1 } +remoteUserAdminAdapterIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0002 This attribute defines the index (one based) of the +Remote Access hardware used by this Remote Access user." + ::= { remoteUserAdminTableEntry 2 } +remoteUserAdminUserIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0003 This attribute defines the index (one based) of this +Remote Access user." + ::= { remoteUserAdminTableEntry 3 } +remoteUserAdminStateCapabilities OBJECT-TYPE + SYNTAX DellRemoteUserAdminStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0004 This attribute defines the state capabilities for this +Remote Access user." + ::= { remoteUserAdminTableEntry 4 } +remoteUserAdminStateSettings OBJECT-TYPE + SYNTAX DellRemoteUserAdminStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0005 This attribute defines the state settings for this +Remote Access user." + ::= { remoteUserAdminTableEntry 5 } +remoteUserAdminStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0006 This attribute defines the status for this +Remote Access user." + ::= { remoteUserAdminTableEntry 6 } +remoteUserAdminUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..19)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0007 This attribute defines the name for this +Remote Access user." + ::= { remoteUserAdminTableEntry 7 } +remoteUserAdminUserPasswordName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0008 This attribute defines the password for this +Remote Access user." + ::= { remoteUserAdminTableEntry 8 } +remoteUserAdminUserPrivilege OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0009 This attribute defines the privileges for this +Remote Access user." + ::= { remoteUserAdminTableEntry 9 } +remoteUserAdminUserPrivilegeCapabilities OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0010 This attribute defines the privilege capabilities for this +Remote Access user." + ::= { remoteUserAdminTableEntry 10 } +remoteUserAdminAlertFilterDrsEventsMask OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0011 This attribute defines the DRS events filter mask for this +Remote Access user." + ::= { remoteUserAdminTableEntry 11 } +remoteUserAdminAlertFilterSysEventsMask OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0012 This attribute defines the system events filter mask +for this Remote Access user." + ::= { remoteUserAdminTableEntry 12 } +remoteUserAdminAlertFilterDrsCapabilities OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0013 This attribute defines the DRS events filter capabilities +for this Remote Access user." + ::= { remoteUserAdminTableEntry 13 } +remoteUserAdminAlertFilterSysCapabilities OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0014 This attribute defines the system events filter capabilities +for this Remote Access user." + ::= { remoteUserAdminTableEntry 14 } +remoteUserAdminPagerNumericNumberName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..95)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0015 This attribute defines the numeric pager number for this +for this Remote Access user." + ::= { remoteUserAdminTableEntry 15 } +remoteUserAdminPagerNumericMessageName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0016 This attribute defines the message to send to the numeric +pager for this Remote Access user." + ::= { remoteUserAdminTableEntry 16 } +remoteUserAdminPagerNumericHangupDelay OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0017 This attribute defines the numeric pager hangup delay +for this Remote Access user." + ::= { remoteUserAdminTableEntry 17 } +remoteUserAdminPagerAlphaPhoneNumberName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..95)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0018 This attribute defines the alphanumeric pager phone number +for this Remote Access user." + ::= { remoteUserAdminTableEntry 18 } +remoteUserAdminPagerAlphaProtocol OBJECT-TYPE + SYNTAX DellRemoteUserAdminAlphaProtocolType + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0019 This attribute defines the protocol used by the +alphanumeric pager provider for this Remote Access user." + ::= { remoteUserAdminTableEntry 19 } +remoteUserAdminPagerAlphaBaudRate OBJECT-TYPE + SYNTAX DellRemoteUserAdminAlphaBaudType + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0020 This attribute defines the baud rate used by the +alphanumeric pager provider for this Remote Access user." + ::= { remoteUserAdminTableEntry 20 } +remoteUserAdminPagerAlphaCustomMessageName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0021 This attribute defines the message to be sent to the +alphanumeric pager to inform the user of a call by this Remote Access user." + ::= { remoteUserAdminTableEntry 21 } +remoteUserAdminPagerAlphaModemConnectTimeout OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0022 This attribute defines the modem connection timeout +for the alhpanumeric pager for this Remote Access user." + ::= { remoteUserAdminTableEntry 22 } +remoteUserAdminPagerAlphaPagerIdName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0023 This attribute defines the ID to be sent to the +alphanumeric pager to inform the user of a call by this Remote Access user." + ::= { remoteUserAdminTableEntry 23 } +remoteUserAdminPagerAlphaPasswordName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0024 This attribute defines the password for the +alphanumeric pager for this Remote Access user." + ::= { remoteUserAdminTableEntry 24 } +remoteUserAdminPagerModemInitStringName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0025 This attribute defines the initialization string +to be sent to the pager modem for this Remote Access user." + ::= { remoteUserAdminTableEntry 25 } +remoteUserAdminPagerModemPort OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0026 This attribute defines the port for the pager modem +for this Remote Access user." + ::= { remoteUserAdminTableEntry 26 } +remoteUserAdminEmailAddressName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0027 This attribute defines the email address for this +Remote Access user." + ::= { remoteUserAdminTableEntry 27 } +remoteUserAdminEmailCustomMessageName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0028 This attribute defines the email message to send to this +Remote Access user." + ::= { remoteUserAdminTableEntry 28 } +remoteUserAdminControlCapabilities OBJECT-TYPE + SYNTAX DellRemoteUserAdminControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0029 This attribute defines the control capabilities for this +Remote Access user." + ::= { remoteUserAdminTableEntry 29 } +remoteUserAdminControlSettings OBJECT-TYPE + SYNTAX DellRemoteUserAdminControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0030 This attribute defines the control settings for this +Remote Access user." + ::= { remoteUserAdminTableEntry 30 } +remoteUserAdminUserType OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0020.0001.0031 This attribute defines the type of this +Remote Access user." + ::= { remoteUserAdminTableEntry 31 } + + +------------------------------------------------------------------------------- +-- Remote SNMP Trap Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1700.30.1.... +------------------------------------------------------------------------------- + +DellRemoteSNMPTrapStateCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + enableAndNotReadyCapable(6) +} +DellRemoteSNMPTrapStateSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings capabilities, and its state is disabled + unknown(1), -- The object's state is unknown + enabled(2), -- The object's state is disabled (offline) 0, or enabled (online) 1 + notReady(4), -- The object's state is not ready + enabledAndNotReady(6) +} +DellRemoteSNMPTrapControlCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + trapTestCapable(2) -- support generating a test SNMP trap +} +DellRemoteSNMPTrapControlSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings capabilities, and its state is disabled + unknown(1), -- The object's state is unknown + -- Only one of the following settings may be enabled in one set request: + trapTest(2) -- Generate a test SNMP trap +} + +RemoteSNMPTrapTableEntry ::= SEQUENCE { + remoteSNMPTrapChassisIndex DellObjectRange, + remoteSNMPTrapAdapterIndex DellObjectRange, + remoteSNMPTrapIndex DellObjectRange, + remoteSNMPTrapStateCapabilities DellRemoteSNMPTrapStateCapabilities, + remoteSNMPTrapStateSettings DellRemoteSNMPTrapStateSettings, + remoteSNMPTrapStatus DellStatus, + remoteSNMPTrapDestinationIPAddress IpAddress, + remoteSNMPTrapSNMPCommunityName DisplayString (SIZE (0..31)), + remoteSNMPTrapFilterDrsEventsMask DellUnsigned32BitRange, + remoteSNMPTrapFilterSysEventsMask DellUnsigned32BitRange, + remoteSNMPTrapFilterDrsCapabilities DellUnsigned32BitRange, + remoteSNMPTrapFilterSysCapabilities DellUnsigned32BitRange, + remoteSNMPTrapControlCapabilities DellRemoteSNMPTrapControlCapabilities, + remoteSNMPTrapControlSettings DellRemoteSNMPTrapControlSettings +} + +remoteSNMPTrapTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteSNMPTrapTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0030 This object defines the Remote Access SNMP Trap Destination table." + ::= { remoteAccessGroup 30 } +remoteSNMPTrapTableEntry OBJECT-TYPE + SYNTAX RemoteSNMPTrapTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0030.0001 This object defines the Remote Access SNMP Trap Destination +table entry." + INDEX { remoteSNMPTrapChassisIndex, + remoteSNMPTrapAdapterIndex, + remoteSNMPTrapIndex } + ::= { remoteSNMPTrapTable 1 } + +remoteSNMPTrapChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0001 This attribute defines the index (one based) of the +chassis containing the Remote Access hardware." + ::= { remoteSNMPTrapTableEntry 1 } +remoteSNMPTrapAdapterIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0002 This attribute defines the index (one based) of the +Remote Access hardware that uses this SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 2 } +remoteSNMPTrapIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0003 This attribute defines the index (one based) of this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 3 } +remoteSNMPTrapStateCapabilities OBJECT-TYPE + SYNTAX DellRemoteSNMPTrapStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0004 This attribute defines the state capabilities of this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 4 } +remoteSNMPTrapStateSettings OBJECT-TYPE + SYNTAX DellRemoteSNMPTrapStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0005 This attribute defines the state settings of this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 5 } +remoteSNMPTrapStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0006 This attribute defines the status of this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 6 } +remoteSNMPTrapDestinationIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0007 This attribute defines the IP address of this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 7 } +remoteSNMPTrapSNMPCommunityName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0008 This attribute defines the community for traps sent to this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 8 } +remoteSNMPTrapFilterDrsEventsMask OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0009 This attribute defines the DRS events filter mask for this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 9 } +remoteSNMPTrapFilterSysEventsMask OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0010 This attribute defines the system events filter mask for +this Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 10 } +remoteSNMPTrapFilterDrsCapabilities OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0011 This attribute defines the DRS events filter capabilities +for this Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 11 } +remoteSNMPTrapFilterSysCapabilities OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0012 This attribute defines the system events filter +capabilities for this Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 12 } +remoteSNMPTrapControlCapabilities OBJECT-TYPE + SYNTAX DellRemoteSNMPTrapControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0013 This attribute defines the control capabilities of this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 13 } +remoteSNMPTrapControlSettings OBJECT-TYPE + SYNTAX DellRemoteSNMPTrapControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0030.0001.0014 This attribute defines the control settings of this +Remote Access SNMP trap destination." + ::= { remoteSNMPTrapTableEntry 14 } + + +------------------------------------------------------------------------------- +-- Remote Dial Up Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1700.40.1.... +------------------------------------------------------------------------------- + +DellRemoteDialUpStateCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + dialInCapable(8), -- support dial-in + dialOutCapable(16), -- support dial-out + dialInDHCPCapable(32), -- support use of DHCP to obtain IP addresses + dialInAuthAnyCapable(64), -- support any auth type including clear text + dialInAndOutAndDialInDHCPAndAuthAnyCapable(120), + dialInAuthEncryptedCapable(128), -- support only encrypted passwords (CHAP) + dialInAndOutAndDialInDHCPAndAuthAnyAndEncryptedCapable(248), + dialInAuthMschapCapable(256), -- support only MSCHAP + dialInAndOutAndDialInDHCPAndAllAuthCapable(504) +} +DellRemoteDialUpStateSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings capabilities, and its state is disabled + -- One and only one dialInAuth setting must be enabled: + unknown(1), -- The object's state is unknown + enabled(2), -- The object's state is disabled (offline) 0, or enabled (online) 1 + notReady(4), -- The object's state is not ready + dialInEnabled(8), -- Dial-in is enabled + dialOutEnabled(16), -- Dial-out is enabled + dialInDHCPEnabled(32), -- Object uses DHCP to obtain IP addresses + dialInAuthAnyEnabled(64), -- Object accepts any auth type including clear text + enabledDialInAndOutAndDialInAuthAnyEnabled(90), + enabledDialInAndOutAndDialInDHCPAndAuthAnyEnabled(122), + dialInAuthEncryptedEnabled(128), -- Object accepts only encrypted passwords (CHAP) + enabledDialInAndOutAndDialInAuthEncryptedEnabled(154), + enabledDialInAndOutAndDialInDHCPAndAuthEncryptedEnabled(186), + dialInAuthMschapEnabled(256), -- Object accepts only MSCHAP + enabledDialInAndOutAndDialInAuthMschapEnabled(282), + enabledDialInAndOutAndDialInDHCPAndAuthMschapEnabled(314) +} +DellRemoteDialUpModemDialType ::= INTEGER { + remoteDialUpIsOther(1), -- the type is not one of the following: + remoteDialUpIsUnknown(2), -- dial type is unknown + remoteDialUpIsTone(3), -- dial type is tone + remoteDialUpIsPulse(4) -- dial type is pulse +} + +RemoteDialUpTableEntry ::= SEQUENCE { + remoteDialUpChassisIndex DellObjectRange, + remoteDialUpAdapterIndex DellObjectRange, + remoteDialUpIndex DellObjectRange, + remoteDialUpStateCapabilities DellRemoteDialUpStateCapabilities, + remoteDialUpStateSettings DellRemoteDialUpStateSettings, + remoteDialUpStatus DellStatus, + remoteDialUpPPPDialInBaseIPAddress IpAddress, + remoteDialUpPPPDialInIdleTimeout DellUnsigned32BitRange, + remoteDialUpPPPDialInMaxConnectTimeout DellUnsigned32BitRange, + remoteDialUpDialOutModemConnectTimeout DellUnsigned32BitRange, + remoteDialUpModemDialType DellRemoteDialUpModemDialType, + remoteDialUpModemInitStringName DisplayString (SIZE (0..63)), + remoteDialUpModemBaudRate DellUnsigned32BitRange, + remoteDialUpModemPort DellUnsigned32BitRange +} + +remoteDialUpTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteDialUpTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0040 This object defines the Remote Access Dial Up table." + ::= { remoteAccessGroup 40 } +remoteDialUpTableEntry OBJECT-TYPE + SYNTAX RemoteDialUpTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0040.0001 This object defines the Remote Access Dial Up table entry." + INDEX { remoteDialUpChassisIndex, + remoteDialUpAdapterIndex, + remoteDialUpIndex } + ::= { remoteDialUpTable 1 } + +remoteDialUpChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0001 This attribute defines the index (one based) of the +chassis containing the Remote Access hardware." + ::= { remoteDialUpTableEntry 1 } +remoteDialUpAdapterIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0002 This attribute defines the index (one based) of the +Remote Access hardware that supports this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 2 } +remoteDialUpIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0003 This attribute defines the index (one based) of this +Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 3 } +remoteDialUpStateCapabilities OBJECT-TYPE + SYNTAX DellRemoteDialUpStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0004 This attribute defines the state capabilities of this +Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 4 } +remoteDialUpStateSettings OBJECT-TYPE + SYNTAX DellRemoteDialUpStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0005 This attribute defines the state settings of this +Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 5 } +remoteDialUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0006 This attribute defines the status of this +Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 6 } +remoteDialUpPPPDialInBaseIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0007 This attribute defines the base IP address of the +PPP server for this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 7 } +remoteDialUpPPPDialInIdleTimeout OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0008 This attribute defines the PPP idle timeout value +in seconds for this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 8 } +remoteDialUpPPPDialInMaxConnectTimeout OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0009 This attribute defines the PPP connect timeout value +in seconds for this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 9 } +remoteDialUpDialOutModemConnectTimeout OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0010 This attribute defines the modem dial out connect timeout +value in seconds for this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 10 } +remoteDialUpModemDialType OBJECT-TYPE + SYNTAX DellRemoteDialUpModemDialType + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0011 This attribute defines the dial type for the modem +used by this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 11 } +remoteDialUpModemInitStringName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0012 This attribute defines the initialization string to be sent +to the modem for this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 12 } +remoteDialUpModemBaudRate OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0013 This attribute defines the baud rate for the modem +used by this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 13 } +remoteDialUpModemPort OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0040.0001.0014 This attribute defines the port for the modem +used by this Remote Access Dial Up functionality." + ::= { remoteDialUpTableEntry 14 } + + +------------------------------------------------------------------------------- +-- Remote User Dial In Configuration Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1700.50.1.... +------------------------------------------------------------------------------- + +DellRemoteUserDialInStateCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + dialInCallbackPresetNumberCapable(8), -- support callback with preset number + enableAndDialInCallbackPresetNumberCapable(10), + dialInCallbackUserSpecifiedCapable(16),-- support callback with user-specified number + enableAndDialInCallbackUserSpecifiedCapable(18), + dialInCallbackPresetNumberAndUserSpecifiedCapable(24), + enableAndDialInCallbackPresetNumberAndUserSpecifiedCapable(26) +} +DellRemoteUserDialInStateSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings capabilities, and its state is disabled + -- Only one dialInCallback setting may be enabled: + unknown(1), -- The object's state is unknown + enabled(2), -- The object's state is disabled (offline) 0, or enabled (online) 1 + notReady(4), -- The object's state is not ready + dialInCallbackPresetNumberEnabled(8), -- Callback with preset number enabled + enabledAndDialInCallbackPresetNumberEnabled(10), + dialInCallbackUserSpecifiedEnabled(16),-- Callback with user-specified number enabled + enabledAndDialInCallbackUserSpecifiedEnabled(18) +} + +RemoteUserDialInCfgTableEntry ::= SEQUENCE { + remoteUserDialInCfgChassisIndex DellObjectRange, + remoteUserDialInCfgAdapterIndex DellObjectRange, + remoteUserDialInCfgUserIndex DellObjectRange, + remoteUserDialInCfgStateCapabilities DellRemoteUserDialInStateCapabilities, + remoteUserDialInCfgStateSettings DellRemoteUserDialInStateSettings, + remoteUserDialInCfgStatus DellStatus, + remoteUserDialInCfgPPPUserName DisplayString (SIZE (0..15)), + remoteUserDialInCfgPPPUserPasswordName DisplayString (SIZE (0..15)), + remoteUserDialInCfgCallbackPhoneNumberName DisplayString (SIZE (0..95)) +} + +remoteUserDialInCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteUserDialInCfgTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0050 This object defines the Remote Access User Dial In Configuration +table." + ::= { remoteAccessGroup 50 } +remoteUserDialInCfgTableEntry OBJECT-TYPE + SYNTAX RemoteUserDialInCfgTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0050.0001 This object defines the Remote Access User Dial In Configuration +table entry." + INDEX { remoteUserDialInCfgChassisIndex, + remoteUserDialInCfgAdapterIndex, + remoteUserDialInCfgUserIndex } + ::= { remoteUserDialInCfgTable 1 } + +remoteUserDialInCfgChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0001 This attribute defines the index (one based) of the +chassis containing the Remote Access hardware." + ::= { remoteUserDialInCfgTableEntry 1 } +remoteUserDialInCfgAdapterIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0002 This attribute defines the index (one based) of +Remote Access hardware that supports this Remote Access Dial In user." + ::= { remoteUserDialInCfgTableEntry 2 } +remoteUserDialInCfgUserIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0003 This attribute defines the index (one based) of this +Remote Access Dial In user." + ::= { remoteUserDialInCfgTableEntry 3 } +remoteUserDialInCfgStateCapabilities OBJECT-TYPE + SYNTAX DellRemoteUserDialInStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0004 This attribute defines the state capabilities of this +Remote Access Dial In user." + ::= { remoteUserDialInCfgTableEntry 4 } +remoteUserDialInCfgStateSettings OBJECT-TYPE + SYNTAX DellRemoteUserDialInStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0005 This attribute defines the state settings of this +Remote Access Dial In user." + ::= { remoteUserDialInCfgTableEntry 5 } +remoteUserDialInCfgStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0006 This attribute defines the status of this +Remote Access Dial In user." + ::= { remoteUserDialInCfgTableEntry 6 } +remoteUserDialInCfgPPPUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0007 This attribute defines the PPP user name of this +Remote Access Dial In user." + ::= { remoteUserDialInCfgTableEntry 7 } +remoteUserDialInCfgPPPUserPasswordName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0008 This attribute defines the PPP password for this +Remote Access Dial In user." + ::= { remoteUserDialInCfgTableEntry 8 } +remoteUserDialInCfgCallbackPhoneNumberName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..95)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0050.0001.0009 This attribute defines the callback phone number for this +Remote Access Dial In user." + ::= { remoteUserDialInCfgTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Remote Dial Out Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1700.60.1.... +------------------------------------------------------------------------------- + +DellRemoteDialOutStateCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no capabilities + unknownCapabilities(1), -- The object's capabilities are unknown + -- The object's capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + dialOutPPPAuthAnyCapable(8), -- support "any PPP auth including clear text" + dialOutPPPAuthEncryptedCapable(16), -- support "require encrypted PPP Password" + dialOutPPPAuthAnyAndEncryptedCapable(24), + dialOutPPPAuthMschapCapable(32), -- support "require MSCHAP" + dialOutPPPAuthAnyAndMschapCapable(40), + dialOutPPPAuthEncryptedAndMschapCapable(48), + dialOutPPPAuthAnyEncryptedAndMschapCapable(56) +} +DellRemoteDialOutStateSettings ::= INTEGER { + -- If set to 0 (zero) the object has no settings capabilities, and its state is disabled + -- One and only one dialOutPPPAuth setting must be enabled: + unknown(1), -- The object's state is unknown + enabled(2), -- The object's state is disabled (offline) 0, or enabled (online) 1 + notReady(4), -- The object's state is not ready + dialOutPPPAuthAnyEnabled(8), -- Ojbect supports "use any PPP authentication including clear text" + enabledAnddialOutPPPAuthAnyEnabled(10), + dialOutPPPAuthEncryptedEnabled(16), -- Object supports "require encrypted PPP Authentication" + enabledAnddialOutPPPAuthEncryptedEnabled(18), + dialOutPPPAuthMschapEnabled(32), -- Object supports "require MSCHAP PPP Authentication" + enabledAnddialOutPPPAuthMschapEnabled(34) +} + +RemoteDialOutTableEntry ::= SEQUENCE { + remoteDialOutChassisIndex DellObjectRange, + remoteDialOutAdapterIndex DellObjectRange, + remoteDialOutDialOutIndex DellObjectRange, + remoteDialOutStateCapabilities DellRemoteDialOutStateCapabilities, + remoteDialOutStateSettings DellRemoteDialOutStateSettings, + remoteDialOutStatus DellStatus, + remoteDialOutIPAddress IpAddress, + remoteDialOutPhoneNumberName DisplayString (SIZE (0..95)), + remoteDialOutPPPUserName DisplayString (SIZE (0..31)), + remoteDialOutPPPPasswordName DisplayString (SIZE (0..31)) +} + +remoteDialOutTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteDialOutTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0060 This object defines the Remote Access Dial Out table." + ::= { remoteAccessGroup 60 } +remoteDialOutTableEntry OBJECT-TYPE + SYNTAX RemoteDialOutTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1700.0060.0001 This object defines the Remote Access Dial Out table entry." + INDEX { remoteDialOutChassisIndex, + remoteDialOutAdapterIndex, + remoteDialOutDialOutIndex } + ::= { remoteDialOutTable 1 } + +remoteDialOutChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0001 This attribute defines the index (one based) of the +chassis containing the Remote Access hardware." + ::= { remoteDialOutTableEntry 1 } +remoteDialOutAdapterIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0002 This attribute defines the index (one based) of the +Remote Access hardware that supports this Remote Access Dial Out functionality." + ::= { remoteDialOutTableEntry 2 } +remoteDialOutDialOutIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0003 This attribute defines the index (one based) of this +Remote Access Dial Out functionality." + ::= { remoteDialOutTableEntry 3 } +remoteDialOutStateCapabilities OBJECT-TYPE + SYNTAX DellRemoteDialOutStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0004 This attribute defines the state capabilities of this +Remote Access Dial Out functionality." + ::= { remoteDialOutTableEntry 4 } +remoteDialOutStateSettings OBJECT-TYPE + SYNTAX DellRemoteDialOutStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0005 This attribute defines the state settings of this +Remote Access Dial Out functionality." + ::= { remoteDialOutTableEntry 5 } +remoteDialOutStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0006 This attribute defines the status of this +Remote Dial Out functionality." + ::= { remoteDialOutTableEntry 6 } +remoteDialOutIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0007 This attribute defines the IP address for this +Remote Access Dial Out destination." + ::= { remoteDialOutTableEntry 7 } +remoteDialOutPhoneNumberName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..95)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0008 This attribute defines the phone number for this +Remote Access Dial Out destination." + ::= { remoteDialOutTableEntry 8 } +remoteDialOutPPPUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0009 This attribute defines the PPP user name for this +Remote Access Dial Out destination." + ::= { remoteDialOutTableEntry 9 } +remoteDialOutPPPPasswordName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1700.0060.0001.0010 This attribute defines the PPP password for this +Remote Access Dial Out destination." + ::= { remoteDialOutTableEntry 10 } + + +END + + +------------------------------------------------------------------------------- +-- End MIB +------------------------------------------------------------------------------- + diff --git a/mibs/DELL-ASF-MIB b/mibs/DELL-ASF-MIB new file mode 100755 index 0000000000..7fdffe6830 --- /dev/null +++ b/mibs/DELL-ASF-MIB @@ -0,0 +1,1172 @@ +-- ************************************************************* +-- The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. + +-- Name : DcAsfSrv.mib +-- Description : MIB file for Dell Server ASF PET events +-- Revision : 1.17 +-- ************************************************************* + +DELL-ASF-MIB DEFINITIONS ::= BEGIN + +-- Title : ASF 1.0 Generic MIB file for DELL Systems. + + IMPORTS + enterprises + FROM RFC1155-SMI + TRAP-TYPE + FROM RFC-1215; + + wiredformgmt OBJECT IDENTIFIER ::= { enterprises 3183 } + pet OBJECT IDENTIFIER ::= { wiredformgmt 1 } + + +-- MODULE IDENTIFICATION + + +-- **************************************** +-- SYSTEM INFORMATION BRANCH STARTS HERE. +-- **************************************** + +-- means <version> under PET enterprise tree +asfPetEvts OBJECT IDENTIFIER ::= { pet 1 } + +-- IPMI Alert Configuration Test Trap -- + asfTrapIPMIAlertTest TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "IPMI Alert Configuration Test" + + --#SUMMARY "IPMI Alert Configuration Test" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 1001 + + +-- FAN -- + + -- Lower Non Critical threshold crossed + asfTrapFanSpeedWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Generic Predictive Fan Failure ( predictive failure asserted )" + --#SUMMARY "Generic Predictive Fan Failure ( predictive failure asserted )" + --#ARGUMENTS {} + --#SEVERITY MINOR + ::= 262400 + + -- Fan back to OK from warning level + asfTrapFanSPeedWarningCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Generic Predictive Fan Failure Cleared" + + --#SUMMARY "Generic Predictive Fan Failure Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 262528 + + -- Lower Critical threshold crossed + asfTrapFanSpeedProblem TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Generic Critical Fan Failure" + + --#SUMMARY "Generic Critical Fan Failure" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 262402 + + -- Fan back to OK from failure level + asfTrapFanSPeedProblemCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Generic Critical Fan Failure Cleared" + + --#SUMMARY "Generic Critical Fan Failure Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 262530 + + +-- BATTERY -- + + -- Battery Low (Predictive Failure) + asfTrapBatteryLowWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Battery Low (Predictive Failure)" + + --#SUMMARY "Battery Low (Predictive Failure)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 2715392 + + -- Battery back to OK from warning level + asfTrapBatteryLowWarningCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Battery Low (Predictive Failure) Cleared" + + --#SUMMARY "Battery Low (Predictive Failure) Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 2715520 + + -- Battery Failure + asfTrapBatteryFailure TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Battery Failure" + + --#SUMMARY "Battery Failure" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 2715393 + + -- Battery back to OK from failure level + asfTrapBatteryFailCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Battery Failure Cleared" + + --#SUMMARY "Battery Failure Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 2715521 + + +-- (Analog Voltage) -- + + -- Lower Non Critical threshold crossed + asfTrapUnderVoltageWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Under-Voltage Warning (Lower Non Critical - going low)" + + --#SUMMARY "Under-Voltage Warning (Lower Non Critical - going low)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 131328 + + -- Voltage back to OK from Lower Non Critical + asfTrapUnderVoltageWarningCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION "Under-Voltage Warning Cleared" + + --#SUMMARY "Under-Voltage Warning Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 131456 + + -- Lower Critical threshold crossed + asfTrapUnderVoltage TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Under-Voltage Problem (Lower Critical - going low)" + + --#SUMMARY "Under-Voltage Problem (Lower Critical - going low)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 131330 + + -- Voltage back to OK from Lower Non Critical + asfTrapUnderVoltageCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Under-Voltage Problem Cleared" + + --#SUMMARY "Under-Voltage Problem Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 131458 + + -- Upper Non Critical threshold crossed + asfTrapOverVoltageWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-Voltage Warning (Upper Non Critical - going high)" + + --#SUMMARY "Over-Voltage Warning (Upper Non Critical - going high)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 131335 + + -- Voltage back to OK from Upper Non Critical Warning + asfTrapOverVoltageWarningCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-Voltage Warning Cleared" + + --#SUMMARY "Over-Voltage Warning Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 131463 + + -- Upper Critical threshold crossed + asfTrapOverVoltage TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-Voltage Problem (Upper Critical - going high)" + + --#SUMMARY "Over-Voltage Problem (Upper Critical - going high)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 131337 + + -- Analog Voltage OK + asfTrapVoltageCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-Voltage Problem Cleared" + + --#SUMMARY "Over-Voltage Problem Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 131465 + + +-- Discrete Voltage -- + + asfTrapCriticalDiscreteVoltage TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Generic Critical Voltage Problem" + + --#SUMMARY "Generic Critical Voltage Problem" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 131841 + + asfTrapCriticalDiscreteVoltageCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Generic Critical Voltage Problem Cleared" + + --#SUMMARY "Generic Critical Voltage Problem Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 131840 + + +-- Temperature -- + + -- Lower Non Critical threshold crossed + asfTrapUnderTemperatureWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Under-Temperature Warning (Lower Non-Critical - going low)" + + --#SUMMARY "Under-Temperature Warning (Lower Non-Critical - going low)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 65792 + + -- Back to Normal from Lower Non Critical + asfTrapUnderTemperatureWarningCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Under-Temperature Warning Cleared" + + --#SUMMARY "Under-Temperature Warning Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 65920 + + -- Lower Critical threshold crossed + asfTrapUnderTemperature TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Under-Temperature Problem (Lower Critical - going low)" + + --#SUMMARY "Under-Temperature Problem (Lower Critical - going low)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 65794 + + -- Back to Normal from Lower Critical + asfTrapUnderTemperatureCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Under-Temperature Problem Cleared" + + --#SUMMARY "Under-Temperature Problem Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 65922 + + -- Upper Non Critical threshold crossed + asfTrapOverTemperatureWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-Temperature Warning (Upper Non-Critical - going high)" + + --#SUMMARY "Over-Temperature Warning (Upper Non-Critical - going high)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 65799 + + -- Back to Normal from Upper Non Critical + asfTrapOverTemperatureWarningCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-Temperature Warning Cleared" + + --#SUMMARY "Over-Temperature Warning Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 65927 + + -- Upper Critical threshold crossed + asfTrapOverTemperature TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-Temperature Problem (Upper Critical - going high)" + + --#SUMMARY "Over-Temperature Problem (Upper Critical - going high)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 65801 + + -- Back to Normal from Upper Critical + asfTrapOverTemperatureCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-Temperature Problem Cleared" + + --#SUMMARY "Over-Temperature Problem Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 65929 + + +-- Intrusion -- + + -- Intrusion + asfTrapCaseIntrusion TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Chassis Intrusion - Physical Security Violation" + + --#SUMMARY "Chassis Intrusion - Physical Security Violation" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 356096 + + -- Intrusion cleared + asfTrapCaseIntrusionCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Chassis Intrusion (Physical Security Violation) Event Cleared" + + --#SUMMARY "Chassis Intrusion (Physical Security Violation) Event Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 356224 + + +-- Fan Redundancy -- + + -- Redundancy degraded + asfTrapFanRedundancyDegraded TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Fan redundancy has been degraded" + + --#SUMMARY "Fan Redundancy Degraded" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 264962 + + -- Redundancy lost + asfTrapFanRedundancyLost TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Fan redundancy has been lost" + + --#SUMMARY "Fan Redundancy Lost" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 264961 + + -- Full Redundancy + asfTrapFanFullRedundancy TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Fan redundancy Has Returned to Normal" + + --#SUMMARY "Fan redundancy Has Returned to Normal" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 264960 + + +-- PS Redundancy -- + + -- Redundancy degraded + asfTrapPSRedundancyDegraded TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Redundancy Degraded" + + --#SUMMARY "Power Supply Redundancy Degraded" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 527106 + + -- Redundancy lost + asfTrapPSRedundancyLost TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Redundancy Lost" + + --#SUMMARY "Power Supply Redundancy Lost" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 527105 + + -- Full Redundancy + asfTrapPSFullRedundancy TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Redundancy Has Returned to Normal" + + --#SUMMARY "Power Supply Redundancy Has Returned to Normal" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 527104 + + +-- CPU -- + + -- Thermal Trip + asfTrapCpuThermalTrip TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Thermal Trip (Over Temperature Shutdown)" + + --#SUMMARY "CPU Thermal Trip (Over Temperature Shutdown)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 487169 + + -- Back to normal from Thermal Trip + asfTrapCpuThermalTripCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Thermal Trip (Over Temperature Shutdown) Cleared" + + --#SUMMARY "CPU Thermal Trip (Over Temperature Shutdown) Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 487297 + + -- CPU BIST Error + asfTrapCpuBistError TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU BIST (Built In Self Test) Failure" + + --#SUMMARY "CPU BIST (Built In Self Test) Failure" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 487170 + + -- CPU BIST Error cleared + asfTrapCpuBistErrorCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU BIST (Built In Self Test) Failure Cleared" + + --#SUMMARY "CPU BIST (Built In Self Test) Failure Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 487298 + + -- CPU internal error + asfTrapCpuIErr TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Internal Error" + + --#SUMMARY "CPU Internal Error" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 487168 + + -- CPU internal error + asfTrapCpuIErrCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Internal Error Cleared" + + --#SUMMARY "CPU Internal Error Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 487296 + + -- CPU config error + asfTrapCpuConfigError TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Configuration Error" + + --#SUMMARY "CPU Configuration Error" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 487173 + + -- CPU Disabled + asfTrapCpuDisabled TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Disabled (Processor Disabled)" + + --#SUMMARY "CPU Disabled (Processor Disabled)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 487176 + + -- CPU Enabled + asfTrapCpuEnabled TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Enabled (Processor Enabled)" + + --#SUMMARY "CPU Enabled (Processor Enabled)" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 487304 + + -- CPU config error cleared + asfTrapCpuConfigErrorCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Configuration Error Cleared" + + --#SUMMARY "CPU Configuration Error Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 487301 + + -- CPU presence detected + asfTrapCpuPresence TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Presence (Processor Presence Detected)" + + --#SUMMARY "CPU Presence (Processor Presence Detected)" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 487175 + + -- CPU not present + asfTrapCpuNotPresent TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Not Present (Processor Not Present)" + + --#SUMMARY "CPU Not Present (Processor Not Present)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 487303 + + -- CPU throttle + asfTrapCpuThrottle TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Throttle (Processor Speed Reduced)" + + --#SUMMARY "CPU Throttle (Processor Speed Reduced)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 487178 + + -- CPU OK + asfTrapCpuThrottleCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "CPU Throttle Cleared (Normal Processor Speed)" + + --#SUMMARY "CPU Throttle Cleared (Normal Processor Speed)" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 487306 + + +-- PS/VRM/D2D -- + + -- Presence detected + asfTrapPsPresenceDeteced TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Inserted" + + --#SUMMARY "Power Supply Inserted" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 552704 + + -- Presence Removed + asfTrapPsPresenceRemoved TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Removed" + + --#SUMMARY "Power Supply Removed" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 552832 + + -- Failure + asfTrapPsFailure TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Failure" + + --#SUMMARY "Power Supply Failure" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 552705 + + -- Back to normal from failure + asfTrapPsFailureCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Failure Cleared" + + --#SUMMARY "Power Supply Failure Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 552833 + + -- Predictive Failure + asfTrapPsPredictiveFailure TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Warning" + + --#SUMMARY "Power Supply Warning" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 552706 + + -- Predictive Failure cleared + asfTrapPsPredictiveFailureCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Warning Cleared" + + --#SUMMARY "Power Supply Warning Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 552834 + + -- AC Lost + asfTrapPsAcLost TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply AC Lost" + + --#SUMMARY "Power Supply AC Lost" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 552707 + + -- AC Back + asfTrapPsAcBack TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply AC Restored" + + --#SUMMARY "Power Supply AC Restored" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 552835 + + +-- SEL -- + + -- SEL Cleared + asfTrapSelCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "System Event Log (SEL) Cleared" + + --#SUMMARY "System Event Log (SEL) Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 1076994 + + -- SEL Full + asfTrapSelFull TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "System Event Log (SEL) Full (Logging Disabled)" + + --#SUMMARY "System Event Log (SEL) Full (Logging Disabled)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 1076996 + + +-- Automatic System Recovery (ASR) -- + + -- OS ASR (Watchdog) Timer Expired + asfTrapASRTimeout TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "ASR (Automatic System Recovery) Timer Expired" + + --#SUMMARY "ASR (Automatic System Recovery) Timer Expired" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 2322176 + + -- OS ASR (Watchdog) Reset + asfTrapASROsReset TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "ASR (Automatic System Recovery) Reset Occurred" + + --#SUMMARY "ASR (Automatic System Recovery) Reset Occurred" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 2322177 + + -- ASR (Watchdog) Power down + asfTrapASRPowerDown TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "ASR (Automatic System Recovery) Power Down Occurred" + + --#SUMMARY "ASR (Automatic System Recovery) Power Down Occurred" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 2322178 + + -- ASR (Watchdog) Power cycle + asfTrapASRPowerCycle TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "ASR (Automatic System Recovery) Power Cycle Occurred" + + --#SUMMARY "ASR (Automatic System Recovery) Power Cycle Occurred" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 2322179 + + +-- Power Monitoring -- + + -- Upper Non Critical threshold crossed + asfTrapOverSystemPowerWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-System Power Utilization Warning (Upper Non-Critical - going high)" + + --#SUMMARY "Over-System Power Utilization Warning (Upper Non-Critical - going high)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 2322180 + + + -- Back to Normal from Upper Non Critical + asfTrapOverSystemPowerWarningCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-System Power Utilization Warning Cleared" + + --#SUMMARY "Over-System Power Utilization Warning Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 2322181 + + -- Upper Critical threshold crossed + asfTrapOverSystemPowerCritical TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-System Power Utilization Problem (Upper Critical - going high)" + + --#SUMMARY "Over-System Power Utilization Problem (Upper Critical - going high)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 2322182 + + + -- Back to Normal from Upper Critical + asfTrapOverSystemPowerCriticalCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Over-System Power Utilization Problem Cleared" + + --#SUMMARY "Over-System Power Utilization Problem Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 2322183 + +-- Power Supply Mismatch -- +-- Power Supply Mismatch from OK to Error +asfTrapPSUMismatch TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Mismatch (Configuration Error)" + + --#SUMMARY "Power Supply Mismatch (Configuration Error)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 552710 + +-- Power Supply Mismatch from Warning to OK +asfTrapPSUMismatchNormal TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Power Supply Mismatch Error Cleared (Configuration Error Cleared)" + + --#SUMMARY "Power Supply Mismatch Error Cleared (Configuration Error Cleared)" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 552838 + +-- Power Budget -- +-- Power Required Exceeds PSU rated Wattage OK to Warning +asfTrapSystemPowerExceedsWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "System Power Exceeds than PSU Wattage (Warning)" + + --#SUMMARY "System Power Exceeds than PSU Wattage (Warning)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 552711 + +-- Power Required Exceeds PSU rated Wattage Warning to OK +asfTrapSystemPowerNormal TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "System Power Exceeds Warning Cleared" + + --#SUMMARY "System Power Exceeds Warning Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 552839 + +-- Power Required Exceeds PSU rated Wattage OK to Error +asfTrapSystemPowerExceedsError TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "System Power Exceeds than PSU Wattage (Error)" + + --#SUMMARY "System Power Exceeds than PSU Wattage (Error)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 12611334 + +-- Power Required Exceeds PSU rated Wattage Error to OK +asfTrapSystemPowerExceedsCleared TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "System Power Exceeds Error Cleared" + + --#SUMMARY "System Power Exceeds Error Cleared" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 12611462 + +-- SD Card Failure Error +asfTrapModuleSDCardFailedError TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Module SD Card Failure Error" + + --#SUMMARY "Module SD Card Failed (Error)" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 1404932 + +-- SD Card Write Protect Warning +asfTrapModuleSDWriteProtectWarning TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Module SD Card Write Protect Warning" + + --#SUMMARY "Module SD Card Write Protect (Warning)" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 1404935 + +-- SD Card Presence detected +asfTrapModuleSDCardPresence TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Module SD Card Present (SD Card Presence Detected)" + + --#SUMMARY "Module SD Card Present (Presence Detected)" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 1405056 + +-- SD Card not Present +asfTrapModuleSDCardNotPresent TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Module SD Card not Present " + + --#SUMMARY "Module SD Card not Present" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 1404928 + +-- SD Card Redundancy -- + + -- Redundancy degraded + asfTrapSDRedundancyDegraded TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "SD Card redundancy has been degraded" + + --#SUMMARY "SD Card Redundancy Degraded" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 1379074 + + -- Redundancy lost + asfTrapSDRedundancyLost TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "SD Card redundancy has been lost" + + --#SUMMARY "SD Card Redundancy Lost" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 1379073 + + -- Full Redundancy + asfTrapSDFullRedundancy TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "SD Card redundancy Has Returned to Normal" + + --#SUMMARY "SD Card redundancy Has Returned to Normal" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 1379072 + + +-- Internal Dual SD Module -- + +-- Internal Dual SD Module present +asfTrapInternalDualSDModulePresent TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is present" + + --#SUMMARY "Internal Dual SD Module is present" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 13201152 + +-- Internal Dual SD Module absent + asfTrapInternalDualSDModuleAbsent TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is absent" + + --#SUMMARY "Internal Dual SD Module is absent" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 13201280 + +-- Internal Dual SD Module offline + asfTrapInternalDualSDModuleOffline TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is offline" + + --#SUMMARY "Internal Dual SD Module is offline" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 13201153 + +-- Internal Dual SD Module online + asfTrapInternalDualSDModuleOnline TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is online" + + --#SUMMARY "Internal Dual SD Module is online" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 13201281 + +-- Internal Dual SD Module failure detected + asfTrapInternalDualSDModuleFailure TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Failure detected on Internal Dual SD Module" + + --#SUMMARY "Failure detected on Internal Dual SD Module" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 13201154 + +-- Internal Dual SD Module normal + asfTrapInternalDualSDModuleNormal TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is operating normally" + + --#SUMMARY "Internal Dual SD Module is operating normally" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 13201282 + +-- Internal Dual SD Module write protected + asfTrapInternalDualSDModuleWriteProtected TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is write protected" + + --#SUMMARY "Internal Dual SD Module is write protected" + --#ARGUMENTS {} + --#SEVERITY WARNING + + ::= 13201155 + +-- Internal Dual SD Module writable + asfTrapInternalDualSDModuleWriteable TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is writable" + + --#SUMMARY "Internal Dual SD Module is writable" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 13201283 + +-- Internal Dual SD Module redundant + asfTrapInternalDualSDModuleRedundant TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is redundant" + + --#SUMMARY "Internal Dual SD Module is redundant" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 13175552 + +-- Internal Dual SD Module redundancy lost + asfTrapInternalDualSDModuleRedundancyLost TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module redundancy is lost" + + --#SUMMARY "Internal Dual SD Module redundancy is lost" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + + ::= 13175553 + +-- Internal Dual SD Module not redundant + asfTrapInternalDualSDModuleNotRedundant TRAP-TYPE + ENTERPRISE asfPetEvts + DESCRIPTION + "Internal Dual SD Module is not redundant" + + --#SUMMARY "Internal Dual SD Module is not redundant" + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + + ::= 13175555 + +END + diff --git a/mibs/DELL-RAC-MIB b/mibs/DELL-RAC-MIB old mode 100644 new mode 100755 index 567db5b313..8a83ac427d --- a/mibs/DELL-RAC-MIB +++ b/mibs/DELL-RAC-MIB @@ -9,11 +9,11 @@ -- -- This MIB is also the CMC MIB. Changes are made to this MIB only for CMCs now. -- --- Copyright (c) 2014 Dell Inc. +-- Copyright (c) 2015 Dell Inc. -- --- Last Changed Revision: 16 --- Last Changed Date: 2014-07-14 12:25:06 -0500 (Mon, 14 Jul 2014) --- Text Last Updated: 2014-07-14 12:25:06 -0500 (Mon, 14 Jul 2014) +-- Last Changed Revision: 18 +-- Last Changed Date: 2015-01-16 12:25:06 -0500 (Fri, 16 Jan 2015) +-- Text Last Updated: 2015-01-16 12:25:06 -0500 (Fri, 16 Jan 2015) -- DELL-RAC-MIB DEFINITIONS ::= BEGIN @@ -132,6 +132,23 @@ IMPORTS off(4) -- server is powered off } + DellCMCServerStorageMode ::= INTEGER + { + notApplicable(1), -- not applicable to server + joined(2), -- storage mode is Joined + splitDualHost(3), -- storage mode is Split Dual Host + splitSingleHost(4), -- storage mode is Split Single Host + unknown(99) -- storage mode is unknown + } + + DellCMCServerIntrusionState ::= INTEGER + { + notApplicable(1), -- not applicable to server + closed(2), -- intrusion state is Closed + open(3), -- intrusion state is Open + unknown(99) -- intrusion state is unknown + } + -- MIB Objects and Tables -------------------------------------------------------- @@ -184,12 +201,18 @@ IMPORTS DrsCMCServerTableEntry ::= SEQUENCE { - drsServerIndex DellCMCServerIndexRange, - drsServerMonitoringCapable DellCMCServerCapable, + drsServerIndex DellCMCServerIndexRange, + drsServerMonitoringCapable DellCMCServerCapable, drsServerServiceTag DellString, - drsServerSlotName DellString, + drsServerSlotName DellString, drsServerSlotNumber DellString, - drsServerNodeID DellString + drsServerNodeID DellString, + drsServerModel DellString, + drsServerAssetTag DellString, + drsServerNumStorageControllers INTEGER, + drsServerStorageMode DellCMCServerStorageMode, + drsServerIntrusionState DellCMCServerIntrusionState, + drsServerAssignedServerSlots DellString } drsCMCAlertGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 20 } @@ -925,6 +948,61 @@ IMPORTS for the server." ::= { drsCMCServerTableEntry 6 } + drsServerModel OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0005.0001.0001.0007 This attribute defines the Model + of the CMC server." + ::= { drsCMCServerTableEntry 7 } + + drsServerAssetTag OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0005.0001.0001.0008 This attribute defines the Asset Tag + of the CMC server." + ::= { drsCMCServerTableEntry 8 } + + drsServerNumStorageControllers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "0005.0001.0001.0009 This attribute defines the number of + storage controllers on the storage sled. The value + will be zero if this is not a storage sled." + ::= { drsCMCServerTableEntry 9 } + + drsServerStorageMode OBJECT-TYPE + SYNTAX DellCMCServerStorageMode + ACCESS read-only + STATUS mandatory + DESCRIPTION "0005.0001.0001.0010 This attribute defines the Storage + Mode of the storage sled." + ::= { drsCMCServerTableEntry 10 } + + drsServerIntrusionState OBJECT-TYPE + SYNTAX DellCMCServerIntrusionState + ACCESS read-only + STATUS mandatory + DESCRIPTION "0005.0001.0001.0011 This attribute defines the Intrusion + State of the CMC server if supported by the server." + ::= { drsCMCServerTableEntry 11 } + + drsServerAssignedServerSlots OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0005.0001.0001.0012 This attribute defines the the server + slots to which a storage sled is assigned. If this is + a storage sled that is assigned to one more or more + server slots, the value will be a comma-separated list + of one or more server slot names. If the storage sled + is not assigned to a server slot, the value will be an + empty string. If this is not a storage sled, the value + will be N/A." + ::= { drsCMCServerTableEntry 12 } + ------------------------------------------------------------------------------- -- group: Chassis Alerts 1 ------------------------------------------------------------------------------- @@ -1119,7 +1197,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1144,7 +1222,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1169,7 +1247,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1202,7 +1280,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1227,7 +1305,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1252,7 +1330,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1284,7 +1362,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1316,7 +1394,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1341,7 +1419,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1373,7 +1451,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1398,7 +1476,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1423,7 +1501,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1455,7 +1533,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1480,7 +1558,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1505,7 +1583,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1537,7 +1615,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1562,7 +1640,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1587,7 +1665,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1619,7 +1697,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1644,7 +1722,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1669,7 +1747,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1701,7 +1779,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1726,7 +1804,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1751,7 +1829,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1783,7 +1861,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1808,7 +1886,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1833,7 +1911,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1865,7 +1943,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -1897,7 +1975,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1922,12 +2000,37 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY ::= 2274 + alert2PowerUsageFailure TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Power usage failure." + --#TYPE "System: Power Usage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2273 + ------------------------------------------------------------------------------ -- Chassis Alerts 2: System: Redundancy Traps -- @@ -1954,7 +2057,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -1979,7 +2082,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2004,7 +2107,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2036,7 +2139,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2061,7 +2164,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2086,7 +2189,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2118,7 +2221,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2143,7 +2246,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2168,7 +2271,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2200,7 +2303,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2225,12 +2328,37 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY ::= 2338 + alert2SoftwareConfigurationFailure TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Software configuration failure." + --#TYPE "System: Software Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2337 + ------------------------------------------------------------------------------ -- Chassis Alerts 2: System: Temperature Probe Traps -- @@ -2257,7 +2385,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2282,7 +2410,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2307,7 +2435,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2339,7 +2467,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2364,7 +2492,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2389,7 +2517,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2421,7 +2549,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2446,7 +2574,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2471,7 +2599,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY @@ -2503,7 +2631,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2528,7 +2656,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2553,7 +2681,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY @@ -2585,7 +2713,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2610,7 +2738,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2635,7 +2763,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY @@ -2667,7 +2795,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2692,7 +2820,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2717,7 +2845,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY @@ -2749,7 +2877,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2774,7 +2902,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2799,7 +2927,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY @@ -2831,7 +2959,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2856,7 +2984,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2881,12 +3009,94 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY ::= 4233 + ------------------------------------------------------------------------------ + -- Chassis Alerts 2: Storage: Security Event Traps + -- + -- Category: Storage/2 + -- Subcategory: SEC/42 + ------------------------------------------------------------------------------ + + alert2StorageSecurityInformation TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Storage Security information." + --#TYPE "Storage: Security Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4435 + + alert2StorageSecurityWarning TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Storage Security warning." + --#TYPE "Storage: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4434 + + alert2StorageSecurityFailure TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Storage Security failure or critical event." + --#TYPE "Storage: Security Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4433 + ------------------------------------------------------------------------------ -- Chassis Alerts 2: Storage: Storage Management Status Traps -- @@ -2914,7 +3124,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -2941,7 +3151,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -2967,7 +3177,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY @@ -2999,7 +3209,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -3024,7 +3234,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3049,7 +3259,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY @@ -3081,7 +3291,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -3106,7 +3316,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3131,12 +3341,44 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE FAILED --#STATUS MANDATORY ::= 4353 + ------------------------------------------------------------------------------ + -- Chassis Alerts 2: Updates: Software Change Traps + -- + -- Category: Updates/3 + -- Subcategory: SWU/21 + ------------------------------------------------------------------------------ + + alert2SoftwareChangeUpdateWarning TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Software change update warning." + --#TYPE "Updates: Software Change Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 6314 + ------------------------------------------------------------------------------ -- Chassis Alerts 2: Audit: CMC Traps -- @@ -3163,7 +3405,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -3188,7 +3430,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3213,7 +3455,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3245,7 +3487,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3277,7 +3519,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -3302,7 +3544,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3327,7 +3569,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3359,7 +3601,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3391,7 +3633,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3416,7 +3658,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3429,6 +3671,31 @@ IMPORTS -- Subcategory: PWR/28 ------------------------------------------------------------------------------ + alert2PowerUsageAuditInformation TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Power usage audit information." + --#TYPE "Audit: Power Usage Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 8419 + alert2PowerUsageAuditWarning TRAP-TYPE ENTERPRISE drsCMCAlert2Group VARIABLES { drsCA2MessageID, @@ -3448,7 +3715,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3473,7 +3740,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3505,7 +3772,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Error Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3537,7 +3804,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY @@ -3562,7 +3829,7 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE DEGRADED --#STATUS MANDATORY @@ -3594,12 +3861,69 @@ IMPORTS --#SUMMARY "Device Status: %d, Device FQDD: %s," --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} --#CATEGORY "Status Events" --#STATE OPERATIONAL --#STATUS MANDATORY ::= 10611 + ------------------------------------------------------------------------------ + -- Chassis Alerts 2: Configuration: Software Configuration Traps + -- + -- Category: Configuration/5 + -- Subcategory: SWC/36 + ------------------------------------------------------------------------------ + + alert2SWCConfigurationWarning TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Software configuration warning." + --#TYPE "Configuration: Software Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 10530 + + alert2SWCConfigurationFailure TRAP-TYPE + ENTERPRISE drsCMCAlert2Group + VARIABLES { drsCA2MessageID, + drsCA2Message, + drsCA2MessageArgs, + drsCA2AlertStatus, + drsCA2FQDD, + drsProductChassisName, + drsProductChassisLocation, + drsChassisServiceTag, + drsGlobalCurrStatus } + DESCRIPTION + "Software configuration failure." + --#TYPE "Configuration: Software Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "Chassis Location: %s, Global Status: %d" + --#ARGUMENTS {0, 1, 3, 4, 7, 5, 6, 8} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 10529 + ------------------------------------------------------------------------------ -- Chassis Alerts 2: Configuration: Test Traps -- @@ -4033,3 +4357,4 @@ IMPORTS --#CATEGORY Error Events ::= 1020 END + diff --git a/mibs/IDRAC-MIB b/mibs/IDRAC-MIB new file mode 100755 index 0000000000..3ced75e036 --- /dev/null +++ b/mibs/IDRAC-MIB @@ -0,0 +1,12901 @@ +------------------------------------------------------------------------------ +-- +-- Title: iDRAC MIB +-- +-- Version: 3.2 +-- Date: 19 January 2015 +-- +-- Description: This MIB defines MIB objects that make iDRAC data available +-- to SNMP management applications. +-- +-- Note that the iDRAC MIB file is published in both types of SMI (Structure +-- of Managed Information) notations: SMIv1 and SMIv2. This copy of the iDRAC +-- MIB file is the SMIv1 version of the MIB file. +-- +-- Copyright (c) 2012-2015 Dell Inc. +-- All Rights Reserved. +-- +-- Note: The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- OID Format Legend: +-- = attribute ID +-- = index ID +-- = trap ID +-- +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- Begin MIB +------------------------------------------------------------------------------ + +IDRAC-MIB DEFINITIONS ::= BEGIN + +IMPORTS + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + DisplayString + FROM RFC1213-MIB; + +------------------------------------------------------------------------------ +-- Object Identifiers +------------------------------------------------------------------------------ + +-- Enterprise ID +dell OBJECT IDENTIFIER ::= { enterprises 674 } + +-- Server3 Branch +server3 OBJECT IDENTIFIER ::= { dell 10892 } + +-- Server3 Groups +outOfBandGroup OBJECT IDENTIFIER ::= { server3 5 } + +-- Server3 Out-of-Band Groups +-- +-- The informationGroup provides information to discover the system (RAC, +-- modular enclosure/chassis, and server) and its associated properties. +-- +informationGroup OBJECT IDENTIFIER ::= { outOfBandGroup 1 } +racInfoGroup OBJECT IDENTIFIER ::= { informationGroup 1 } +chassisInfoGroup OBJECT IDENTIFIER ::= { informationGroup 2 } +systemInfoGroup OBJECT IDENTIFIER ::= { informationGroup 3 } +statusGroup OBJECT IDENTIFIER ::= { outOfBandGroup 2 } +alertGroup OBJECT IDENTIFIER ::= { outOfBandGroup 3 } +alertVariablesGroup OBJECT IDENTIFIER ::= { alertGroup 1 } +alertTrapGroup OBJECT IDENTIFIER ::= { alertGroup 2 } +systemAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 1 } +storageAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 2 } +updatesAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 3 } +auditAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 4 } +configurationAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 5 } + +-- System details start +systemDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 4 } +mIBVersionGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1 } +systemStateGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 200 } +chassisInformationGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 300 } +powerGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 600 } +thermalGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 700 } +deviceGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1100 } +slotGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1200 } +fruGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 2000 } +-- System details end + +-- Storage details start +storageDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 5 } +software OBJECT IDENTIFIER ::= { storageDetailsGroup 1 } +storageManagement OBJECT IDENTIFIER ::= { software 20 } +physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } +logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } +-- Storage details end + + +------------------------------------------------------------------------------ +-- Textual Conventions +------------------------------------------------------------------------------ + +StringType ::= DisplayString (SIZE (0..1023)) +String64 ::= DisplayString (SIZE (0..64)) +FQDDString ::= DisplayString (SIZE (0..512)) +MACAddress ::= OCTET STRING (SIZE(6)) +ObjectRange ::= INTEGER (1..128) +Unsigned8BitRange ::= INTEGER (0..255) +Unsigned16BitRange ::= INTEGER (0..65535) +Unsigned32BitRange ::= INTEGER (0..2147483647) +Signed32BitRange ::= INTEGER (-2147483647..2147483647) +BooleanType ::= INTEGER (0..1) -- 0 = FALSE, 1 = TRUE + +-- DateName dates are defined in the displayable format +-- yyyymmddHHMMSS.uuuuuu+ooo +-- where yyyy is the year, mm is the month number, dd is the day of the month, +-- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the +-- number of microseconds, and +ooo is the offset from UTC in minutes. If east +-- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the +-- number is preceded by a minus (-) sign. +-- +-- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT +-- would be represented as: 19940525133015.000000-300 +-- +-- Values must be zero-padded if necessary, like "05" in the example above. +-- If a value is not supplied for a field, each character in the field +-- must be replaced with asterisk ('*') characters. +DateName ::= DisplayString (SIZE (25)) + +-- Note About Bit Fields: +-- Attributes with definitions of xxxCapabilities, xxxCapabilitiesUnique, +-- xxxSettings, xxxSettingsUnique and xxxFeatureFlags are integers +-- representing a series of bit definitions. They are NOT enumerations and +-- should be treated as bit fields. The value is passed as a decimal value; +-- it should be converted to hex, and the appropriate bits should be parsed +-- from that. Some of the more common bit combinations are defined in some +-- variables, but not all combinations are or will be defined. + +-- +-- Generic State Capabilities +-- +StateCapabilitiesFlags ::= INTEGER { + -- If set to 0 (zero), object has no state capabilities + unknownCapabilities(1), -- object's state capabilities are unknown + -- The object's state capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + enableAndNotReadyCapable(6) +} + +-- +-- Generic State Settings +-- +StateSettingsFlags ::= INTEGER { + -- If set to 0 (zero), object has no state settings enabled and is disabled + unknown(1), -- object's state is unknown + enabled(2), -- object's state is disabled (offline) if bit is off + -- or enabled (online) if bit is on + notReady(4), -- object's state is not ready + enabledAndNotReady(6) +} + +-- +-- Probe Capabilities +-- +ProbeCapabilitiesFlags ::= INTEGER { + -- If set to 0 (zero) the object has no probe capabilities + -- The object's probe capabilities allow it to be set to: + upperNonCriticalThresholdSetCapable(1), -- upper noncritical threshold can be set + lowerNonCriticalThresholdSetCapable(2), -- lower noncritical threshold can be set + upperNonCriticalThresholdDefaultCapable(4), -- upper noncritical threshold can be set to default + lowerNonCriticalThresholdDefaultCapable(8) -- lower noncritical threshold can be set to default +} + +-- +-- Probe Status +-- +StatusProbeEnum ::= INTEGER { + other(1), -- probe status is not one of the following: + unknown(2), -- probe status is unknown (not known or monitored) + ok(3), -- probe is reporting a value within the thresholds + nonCriticalUpper(4), -- probe has crossed upper noncritical threshold + criticalUpper(5), -- probe has crossed upper critical threshold + nonRecoverableUpper(6), -- probe has crossed upper non-recoverable threshold + nonCriticalLower(7), -- probe has crossed lower noncritical threshold + criticalLower(8), -- probe has crossed lower critical threshold + nonRecoverableLower(9), -- probe has crossed lower non-recoverable threshold + failed(10) -- probe is not functional +} + +-- +-- Redundancy Status +-- +StatusRedundancyEnum ::= INTEGER { + other(1), -- redundancy status is not one of the following: + unknown(2), -- redundancy status is unknown (not known or monitored) + full(3), -- object is fully redundant + degraded(4), -- object's redundancy has been degraded + lost(5), -- object's redundancy has been lost + notRedundant(6), -- redundancy status does not apply or object is not redundant + redundancyOffline(7) -- redundancy object taken offline +} + +-- +-- Status +-- +ObjectStatusEnum ::= INTEGER { + other(1), -- the status of the object is not one of the + -- following: + unknown(2), -- the status of the object is unknown + -- (not known or monitored) + ok(3), -- the status of the object is ok + nonCritical(4), -- the status of the object is warning, non-critical + critical(5), -- the status of the object is critical (failure) + nonRecoverable(6) -- the status of the object is non-recoverable (dead) +} + +RacTypeEnum ::= INTEGER { + other(1), -- the RAC type is not one of the following + unknown(2), -- the RAC type is unknown + idrac7monolithic(16), -- iDRAC7 Monolithic + idrac7modular(17), -- iDRAC7 Modular + idrac8monolithic(32), -- iDRAC8 Monolithic + idrac8modular(33) -- iDRAC8 Modular +} + +SystemFormFactorEnum ::= INTEGER { + other(1), -- the form factor is not one of the following: + unknown(2), -- the form factor is unknown + u1(3), -- 1U Monolithic + u2(4), -- 2U Monolithic + u4(5), -- 4U Monolithic + u7(6), -- 7U Monolithic + singleWidthHalfHeight(7), -- Single width, half height Modular + dualWidthHalfHeight(8), -- Dual width, half height Modular + singleWidthFullHeight(9), -- Single width, full height Modular + dualWidthFullHeight(10), -- Dual width, full height Modular + singleWidthQuarterHeight(11), -- Single width, quarter height Modular + u5(12), -- 5U Monolithic + u1HalfWidth(13), -- 1U, half width Modular + u1QuarterWidth(14), -- 1U, quarter width Modular + u1FullWidth(15) -- 1U, full width Modular +} + +BladeGeometryEnum ::= INTEGER { + other(1), -- the modular geometry is not one of the following: + unknown(2), -- the modular geometry is unknown + singleWidthHalfHeight(3), -- Single width, half height Modular + dualWidthHalfHeight(4), -- Dual width, half height Modular + singleWidthFullHeight(5), -- Single width, full height Modular + dualWidthFullHeight(6), -- Dual width, full height Modular + singleWidthQuarterHeight(7), -- Single width, quarter height Modular + u1HalfWidth(8), -- 1U, half width Modular + u1QuarterWidth(9), -- 1U, quarter width Modular + u1FullWidth(10) -- 1U, full width Modular +} + +PowerStateStatusEnum ::= INTEGER { + other(1), -- the power state status is not one of the following: + unknown(2), -- the power state status is unknown + off(3), -- system power is off + on(4) -- system power is on +} + + +------------------------------------------------------------------------------ +-- +-- MIB Groups +-- +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- RAC Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.1..0 +------------------------------------------------------------------------------ + +racName OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the product name of a remote access card." + ::= { racInfoGroup 1 } + +racShortName OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the short product name of a remote access + card." + ::= { racInfoGroup 2 } + +racDescription OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the product description of a remote access + card." + ::= { racInfoGroup 3 } + +racManufacturer OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the product manufacturer of a remote access + card." + ::= { racInfoGroup 4 } + +racVersion OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the product version of a remote access card." + ::= { racInfoGroup 5 } + +racURL OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the out-of-band UI URL of a remote access + card." + ::= { racInfoGroup 6 } + +racType OBJECT-TYPE + SYNTAX RacTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the type of a remote access card." + ::= { racInfoGroup 7 } + +racFirmwareVersion OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the firmware version of a remote access card." + ::= { racInfoGroup 8 } + +------------------------------------------------------------------------------ +-- Chassis Information Group +-- (for modular chassis) +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.2..0 +------------------------------------------------------------------------------ + +chassisServiceTag OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the service tag of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 1 } + +chassisNameModular OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the chassis name of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 2 } + +chassisModelModular OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the model of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 3 } + +------------------------------------------------------------------------------ +-- System Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.3..0 +------------------------------------------------------------------------------ + +systemFQDN OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the fully qualified domain name of the system. + For example, hostname.domainname." + ::= { systemInfoGroup 1 } + +systemServiceTag OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the service tag of the system." + ::= { systemInfoGroup 2 } + +systemExpressServiceCode OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the express service code of the system." + ::= { systemInfoGroup 3 } + +systemAssetTag OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the asset tag of the system." + ::= { systemInfoGroup 4 } + +systemBladeSlotNumber OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the slot number of the system in the modular + chassis." + ::= { systemInfoGroup 5 } + +systemOSName OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the name of the operating system that the host + is running." + ::= { systemInfoGroup 6 } + +systemFormFactor OBJECT-TYPE + SYNTAX SystemFormFactorEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the form factor of the system." + ::= { systemInfoGroup 7 } + +systemDataCenterName OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the Data Center locator of the system." + ::= { systemInfoGroup 8 } + +systemAisleName OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the Aisle locator of the system." + ::= { systemInfoGroup 9 } + +systemRackName OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the Rack locator of the system." + ::= { systemInfoGroup 10 } + +systemRackSlot OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the Rack Slot locator of the system." + ::= { systemInfoGroup 11 } + +systemModelName OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the model name of the system." + ::= { systemInfoGroup 12 } + +systemSystemID OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the system ID of the system." + ::= { systemInfoGroup 13 } + +systemOSVersion OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the version of the operating system that the + host is running." + ::= { systemInfoGroup 14 } + +systemRoomName OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the Room locator of the system." + ::= { systemInfoGroup 15 } + +systemChassisSystemHeight OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the height of the system, in 'U's. + A U is a standard unit of measure for the height of a rack or + rack-mountable component. + (If not applicable, a 'no such name' error is returned.)" + ::= { systemInfoGroup 16 } + +systemBladeGeometry OBJECT-TYPE + SYNTAX BladeGeometryEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the geometry for a modular system. + (If not applicable, a 'no such name' error is returned.)" + ::= { systemInfoGroup 17 } + +systemNodeID OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the node ID of the system. The node ID + provides a unique identifier for the system." + ::= { systemInfoGroup 18 } + + +------------------------------------------------------------------------------ +-- Status Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.2..0 +------------------------------------------------------------------------------ + +globalSystemStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the overall rollup status of all + components in the system being monitored by the remote + access card. Includes system, storage, IO devices, iDRAC, + CPU, memory, etc." + ::= { statusGroup 1 } + +systemLCDStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the system status as it is reflected by + the LCD front panel. Not all system components may be included." + ::= { statusGroup 2 } + +globalStorageStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the overall storage status being + monitored by the remote access card." + ::= { statusGroup 3 } + +systemPowerState OBJECT-TYPE + SYNTAX PowerStateStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the power state of the system." + ::= { statusGroup 4 } + +systemPowerUpTime OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute defines the power-up time of the system in seconds." + ::= { statusGroup 5 } + + +------------------------------------------------------------------------------ +-- Alert Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3 +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- Alert Variables Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.1..0 +------------------------------------------------------------------------------ + +alertMessageID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Message ID of the event." + ::= { alertVariablesGroup 1 } + +alertMessage OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Message describing the alert." + ::= { alertVariablesGroup 2 } + +alertCurrentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current status of object causing the alert, if applicable." + ::= { alertVariablesGroup 3 } + +alertSystemServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Service tag of the system." + ::= { alertVariablesGroup 4 } + +alertSystemFQDN OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Fully qualified domain name of the system." + ::= { alertVariablesGroup 5 } + +alertFQDD OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..512)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Fully qualified device descriptor of the device." + ::= { alertVariablesGroup 6 } + +alertDeviceDisplayName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..512)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Display name of the device/FQDD." + ::= { alertVariablesGroup 7 } + +alertMessageArguments OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Concatenated set of strings representing the message arguments of the + event. Each message argument string is enclosed in double quotes, + and there is a comma after the ending double quote of each message + argument string, except the last one. Any double quotes found within + a message argument string are preprocessed and changed to single + quotes." + ::= { alertVariablesGroup 8 } + +alertChassisServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For modular systems, the service tag of the enclosing chassis. + For rack and tower systems, this varbind will be empty (zero + length)." + ::= { alertVariablesGroup 9 } + +alertChassisName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For modular systems, the chassis name of the enclosing chassis. + For rack and tower systems, this varbind will be empty (zero + length)." + ::= { alertVariablesGroup 10 } + +alertRacFQDN OBJECT-TYPE + SYNTAX StringType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Fully qualified domain name of the remote access card." + ::= { alertVariablesGroup 11 } + + +------------------------------------------------------------------------------- +-- System Details Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- MIB Version Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1..0 +------------------------------------------------------------------------------- + +mIBMajorVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0001.0001 This attribute defines the major version number for the + version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 1 } + +mIBMinorVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0001.0002 This attribute defines the minor version number for the + version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 2 } + +mIBMaintenanceVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0001.0003 This attribute defines the maintenance version number for + the version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 3 } + + +------------------------------------------------------------------------------- +-- System State Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.200 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System State Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.200.10.1.. +------------------------------------------------------------------------------- + +SystemStateTableEntry ::= SEQUENCE { + systemStatechassisIndex ObjectRange, + systemStateGlobalSystemStatus ObjectStatusEnum, + systemStateChassisState StateSettingsFlags, + systemStateChassisStatus ObjectStatusEnum, + systemStatePowerUnitStateDetails OCTET STRING, + systemStatePowerUnitStatusRedundancy StatusRedundancyEnum, + systemStatePowerUnitStatusDetails OCTET STRING, + systemStatePowerSupplyStateDetails OCTET STRING, + systemStatePowerSupplyStatusCombined ObjectStatusEnum, + systemStatePowerSupplyStatusDetails OCTET STRING, + systemStateVoltageStateDetails OCTET STRING, + systemStateVoltageStatusCombined ObjectStatusEnum, + systemStateVoltageStatusDetails OCTET STRING, + systemStateAmperageStateDetails OCTET STRING, + systemStateAmperageStatusCombined ObjectStatusEnum, + systemStateAmperageStatusDetails OCTET STRING, + systemStateCoolingUnitStateDetails OCTET STRING, + systemStateCoolingUnitStatusRedundancy StatusRedundancyEnum, + systemStateCoolingUnitStatusDetails OCTET STRING, + systemStateCoolingDeviceStateDetails OCTET STRING, + systemStateCoolingDeviceStatusCombined ObjectStatusEnum, + systemStateCoolingDeviceStatusDetails OCTET STRING, + systemStateTemperatureStateDetails OCTET STRING, + systemStateTemperatureStatusCombined ObjectStatusEnum, + systemStateTemperatureStatusDetails OCTET STRING, + systemStateMemoryDeviceStateDetails OCTET STRING, + systemStateMemoryDeviceStatusCombined ObjectStatusEnum, + systemStateMemoryDeviceStatusDetails OCTET STRING, + systemStateChassisIntrusionStateDetails OCTET STRING, + systemStateChassisIntrusionStatusCombined ObjectStatusEnum, + systemStateChassisIntrusionStatusDetails OCTET STRING, + systemStatePowerUnitStatusCombined ObjectStatusEnum, + systemStatePowerUnitStatusList OCTET STRING, + systemStateCoolingUnitStatusCombined ObjectStatusEnum, + systemStateCoolingUnitStatusList OCTET STRING, + systemStateProcessorDeviceStatusCombined ObjectStatusEnum, + systemStateProcessorDeviceStatusList OCTET STRING, + systemStateBatteryStatusCombined ObjectStatusEnum, + systemStateBatteryStatusList OCTET STRING, + systemStateSDCardUnitStatusCombined ObjectStatusEnum, + systemStateSDCardUnitStatusList OCTET STRING, + systemStateSDCardDeviceStatusCombined ObjectStatusEnum, + systemStateSDCardDeviceStatusList OCTET STRING, + systemStateIDSDMCardUnitStatusCombined ObjectStatusEnum, + systemStateIDSDMCardUnitStatusList OCTET STRING, + systemStateIDSDMCardDeviceStatusCombined ObjectStatusEnum, + systemStateIDSDMCardDeviceStatusList OCTET STRING, + systemStateTemperatureStatisticsStateDetails OCTET STRING, + systemStateTemperatureStatisticsStatusCombined ObjectStatusEnum, + systemStateTemperatureStatisticsStatusDetails OCTET STRING +} + +systemStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemStateTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0200.0010 This object defines the System State Table." + ::= { systemStateGroup 10 } + +systemStateTableEntry OBJECT-TYPE + SYNTAX SystemStateTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0200.0010.0001 This object defines the System State Table Entry." + INDEX { systemStatechassisIndex } + ::= { systemStateTable 1 } + +systemStatechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0001 This attribute defines the index (one based) of + this system chassis." + ::= { systemStateTableEntry 1 } + +systemStateGlobalSystemStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0002 This attribute defines the global system status + of all system chassis being monitored by the systems management software." + ::= { systemStateTableEntry 2 } + +systemStateChassisState OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0003 This attribute defines the state settings of this + system chassis." + ::= { systemStateTableEntry 3 } + +systemStateChassisStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0004 This attribute defines the status of this system + chassis." + ::= { systemStateTableEntry 4 } + +systemStatePowerUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0005 This attribute lists the state settings of each + power unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a power unit. The first byte returned represents the state settings + of the first power unit, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 5 } + +systemStatePowerUnitStatusRedundancy OBJECT-TYPE + SYNTAX StatusRedundancyEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0006 This attribute defines the combined redundancy status + of all power units of this system." + ::= { systemStateTableEntry 6 } + +systemStatePowerUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0007 This attribute lists the redundancy status of each + power unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the redundancy status + of a power unit. The first byte returned represents the redundancy status + of the first power unit, etc. The bytes have the same definition type as + StatusRedundancyEnum." + ::= { systemStateTableEntry 7 } + +systemStatePowerSupplyStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0008 This attribute lists the state settings of each + power supply of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a power supply. The first byte returned represents the state settings + of the first power supply, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 8 } + +systemStatePowerSupplyStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0009 This attribute defines the combined status of all + power supplies of this system." + ::= { systemStateTableEntry 9 } + +systemStatePowerSupplyStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0010 This attribute lists the status of each power supply + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a power supply. + The first byte returned represents the status of the first power supply, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 10 } + +systemStateVoltageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0011 This attribute lists the state settings of each + voltage probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a voltage probe. The first byte returned represents the state settings + of the first voltage probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 11 } + +systemStateVoltageStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0012 This attribute defines the combined status of all + voltage probes of this system." + ::= { systemStateTableEntry 12 } + +systemStateVoltageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0013 This attribute lists the status of each voltage probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a voltage probe. + The first byte returned represents the status of the first voltage probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 13 } + +systemStateAmperageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0014 This attribute lists the state settings of each + amperage probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of an amperage probe. The first byte returned represents the state settings + of the first amperage probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 14 } + +systemStateAmperageStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0015 This attribute defines the combined status of all + amperage probes of this system." + ::= { systemStateTableEntry 15 } + +systemStateAmperageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0016 This attribute lists the status of each amperage probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of an amperage probe. + The first byte returned represents the status of the first amperage probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 16 } + +systemStateCoolingUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0017 This attribute lists the state settings of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a cooling unit. The first byte returned represents the state settings + of the first cooling unit, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 17 } + +systemStateCoolingUnitStatusRedundancy OBJECT-TYPE + SYNTAX StatusRedundancyEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0018 This attribute defines the combined redundancy status + of all cooling units of this system." + ::= { systemStateTableEntry 18 } + +systemStateCoolingUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0019 This attribute lists the redundancy status of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the redundancy status + of a cooling unit. The first byte returned represents the redundancy status + of the first cooling unit, etc. The bytes have the same definition type as + StatusRedundancyEnum." + ::= { systemStateTableEntry 19 } + +systemStateCoolingDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0020 This attribute lists the state settings of each + cooling device of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a cooling device. The first byte returned represents the state settings + of the first cooling device, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 20 } + +systemStateCoolingDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0021 This attribute defines the combined status of all + cooling devices of this system." + ::= { systemStateTableEntry 21 } + +systemStateCoolingDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0022 This attribute lists the status of each cooling device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a cooling device. + The first byte returned represents the status of the first cooling device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 22 } + +systemStateTemperatureStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0023 This attribute lists the state settings of each + temperature probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a temperature probe. The first byte returned represents the state settings + of the first temperature probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 23 } + +systemStateTemperatureStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0024 This attribute defines the combined status of all + temperature probes of this system." + ::= { systemStateTableEntry 24 } + +systemStateTemperatureStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0025 This attribute lists the status of each temperature probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a temperature probe. + The first byte returned represents the status of the first temperature probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 25 } + +systemStateMemoryDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0026 This attribute lists the state settings of each + memory device of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a memory device. The first byte returned represents the state settings + of the first memory device, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 26 } + +systemStateMemoryDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0027 This attribute defines the combined status of all + memory devices of this system." + ::= { systemStateTableEntry 27 } + +systemStateMemoryDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0028 This attribute lists the status of each memory device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a memory device. + The first byte returned represents the status of the first memory device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 28 } + +systemStateChassisIntrusionStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0029 This attribute lists the state settings of each + intrusion detection device of this system chassis. The results are returned as + a binary octet string where each byte of the octet string represents the + state settings of an intrusion detection device. The first byte returned + represents the state settings of the first intrusion detection device, etc. + The bytes have the same definition type as StateSettingsFlags." + ::= { systemStateTableEntry 29 } + +systemStateChassisIntrusionStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0030 This attribute defines the combined status of all + intrusion detection devices of this system chassis." + ::= { systemStateTableEntry 30 } + +systemStateChassisIntrusionStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0031 This attribute lists the status of each intrusion + detection device of this system chassis. The results are returned as a binary + octet string where each byte of the octet string represents the status + of an intrusion detection device. The first byte returned represents the + status of the first intrusion detection device, etc. The bytes have the + same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 31 } + +systemStatePowerUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0042 This attribute defines the combined status + of all power units of this chassis." + ::= { systemStateTableEntry 42 } + +systemStatePowerUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0043 This attribute lists the status of each + power unit of this chassis. The results are returned as a binary octet + string where each byte of the octet string represents the status + of a power unit. The first byte returned represents the status + of the first power unit, etc. The bytes have the same definition type + as ObjectStatusEnum." + ::= { systemStateTableEntry 43 } + +systemStateCoolingUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0044 This attribute defines the combined status + of all cooling units of this system." + ::= { systemStateTableEntry 44 } + +systemStateCoolingUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0045 This attribute lists the status of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the status + of a cooling unit. The first byte returned represents the status + of the first cooling unit, etc. The bytes have the same definition type + as ObjectStatusEnum." + ::= { systemStateTableEntry 45 } + +systemStateProcessorDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0050 This attribute defines the combined status of all + processor devices of this system." + ::= { systemStateTableEntry 50 } + +systemStateProcessorDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0051 This attribute lists the status of each processor device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a processor device. + The first byte returned represents the status of the first processor device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 51 } + +systemStateBatteryStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0052 This attribute defines the combined status of all + batteries of this system." + ::= { systemStateTableEntry 52 } + +systemStateBatteryStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0053 This attribute lists the status of each battery + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a battery. + The first byte returned represents the status of the first battery, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 53 } + +systemStateSDCardUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0054 This attribute defines the combined status + of all SD Card units of this system." + ::= { systemStateTableEntry 54 } + +systemStateSDCardUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0055 This attribute lists the status of each + SD Card unit of this system. The results are returned as a binary + octet string where each byte of the octet string represents the status + of a SD Card unit. The first byte returned represents the status + of the first SD Card unit, etc. The bytes have the same definition + type as ObjectStatusEnum." + ::= { systemStateTableEntry 55 } + +systemStateSDCardDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0056 This attribute defines the combined status of all + SD Card devices of this system." + ::= { systemStateTableEntry 56 } + +systemStateSDCardDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0057 This attribute lists the status of each SD Card device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a SD Card device. + The first byte returned represents the status of the first SD Card device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 57 } + +systemStateIDSDMCardUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0058 This attribute defines the combined status + of all IDSDM Card units of this system." + ::= { systemStateTableEntry 58 } + +systemStateIDSDMCardUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0059 This attribute lists the status of each + IDSDM Card unit of this system. The results are returned as a binary + octet string where each byte of the octet string represents the status + of an IDSDM Card unit. The first byte returned represents the status + of the first IDSDM Card unit, etc. The bytes have the same definition + type as ObjectStatusEnum." + ::= { systemStateTableEntry 59 } + +systemStateIDSDMCardDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0060 This attribute defines the combined status of all + IDSDM Card devices of this system." + ::= { systemStateTableEntry 60 } + +systemStateIDSDMCardDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0061 This attribute lists the status of each IDSDM Card device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of an IDSDM Card device. + The first byte returned represents the status of the first IDSDM Card device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 61 } + +systemStateTemperatureStatisticsStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0062 This attribute lists the state settings of each + temperature statistics object of this system. The results are returned + as a binary octet string where each byte of the octet string represents + the state settings of a temperature statistics object. The first byte + returned represents the state settings of the first temperature + statistics object, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 62 } + +systemStateTemperatureStatisticsStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0063 This attribute defines the combined status of all + temperature statistics objects of this system." + ::= { systemStateTableEntry 63 } + +systemStateTemperatureStatisticsStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0010.0001.0064 This attribute lists the status of each + temperature statistics object of this system. The results are returned + as a binary octet string where each byte of the octet string represents + the status of a temperature statistics object. The first byte returned + represents the status of the first temperature statistics object, etc. + The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 64 } + + +------------------------------------------------------------------------------- +-- Chassis Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300 +------------------------------------------------------------------------------- + +StateCapabilitiesLogUniqueFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state capabilities are unknown + onlineCapable(2), -- log can be enabled (online) or disabled (offline) + notReadyCapable(4), -- log can be not ready + resetCapable(8) -- log can be reset +} + +StateSettingsLogUniqueFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state settings are unknown + online(2), -- log is enabled (online) + notReady(4), -- log is not ready + reset(8) -- reset log +} + +LogFormatType ::= INTEGER { + raw(1), -- format is Raw + ascii(2), -- format is ASCII + uniCode(3) -- format is Unicode +} + + +------------------------------------------------------------------------------- +-- Chassis Information Group Attributes +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300..0 +------------------------------------------------------------------------------- + +numEventLogEntries OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0001.0000 This attribute provides the number of entries + currently in the eventLogTable." + ::= { chassisInformationGroup 1 } + +-- Note: You can only access the numLCLogEntries attribute via SNMPv3 queries. +-- Access to the attribute is blocked for SNMPv1 and SNMPv2c queries. +numLCLogEntries OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0002.0000 This attribute provides the number of entries + currently in the lcLogTable. + Note: This attribute can only be accessed via SNMPv3 queries." + ::= { chassisInformationGroup 2 } + + +------------------------------------------------------------------------------- +-- Chassis Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.10.1.. +------------------------------------------------------------------------------- + +ChassisTypeEnum ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + desktop(3), -- type is Desktop + lowProfileDesktop(4), -- type is Low Profile Desktop + pizzaBox(5), -- type is Pizza Box + miniTower(6), -- type is MiniTower + tower(7), -- type is Tower + portable(8), -- type is Portable + lapTop(9), -- type is Laptop + noteBook(10), -- type is Notebook + handHeld(11), -- type is Handheld + dockingStation(12), -- type is Docking Station + allInOne(13), -- type is All-In-One + subNoteBook(14), -- type is SubNotebook + spaceSaving(15), -- type is Spacesaver + lunchBox(16), -- type is Lunchbox + mainSystemChassis(17), -- type is Main System Chassis + expansionChassis(18), -- type is Expansion Chassis + subChassis(19), -- type is SubChassis + busExpansionChassis(20), -- type is Bus Expansion Chassis + peripheralChassis(21), -- type is Peripheral Chassis + raidChassis(22), -- type is RAID Chassis + rackMountChassis(23), -- type is Rack-mounted Chassis + sealedCasePC(24), -- type is Sealed-case PC + multiSystemChassis(25) -- type is Multi-system Chassis +} + +ChassisSystemClassEnum ::= INTEGER { + other(1), -- class is other than following values + unknown(2), -- class is unknown + workstationClass(3), -- class is Workstation + serverClass(4), -- class is Server + desktopClass(5), -- class is Desktop + portableClass(6), -- class is Portable + netPCClass(7), -- class is Net PC + storageClass(8) -- class is Storage +} + +LEDControlCapabilitiesFlags ::= INTEGER { + -- If 0 (zero), there are no LED Control capabilities + unknown(1), -- LED control capabilities are unknown + alertOnErrorCapable(2), -- LED can alert on error condition + alertOnWarningAndErrorCapable(4), -- LED can alert on error and warning condition + alertOnWarningOrErrorCapable(6) -- LED can alert on error or warning condition +} + +LEDControlSettingsFlags ::= INTEGER { + -- If 0 (zero), there are no LED Control settings + unknown(1), -- LED control settings are unknown + alertOnError(2), -- LED set to alert on error condition + alertOnWarningAndError(4) -- LED set to alert on error or warning condition +} + +ChassisIdentifyControlCapabilitiesFlags ::= INTEGER { + -- If 0 (zero), there are no Chassis Identify Control capabilities + unknownCapabilities(1), -- chassis identify capabilities are unknown + -- The objects capabilities allow it to be set to: + enableCapable(2), -- chassis identify can be enabled (online) or disabled (offline) + notReadyCapable(4), -- chassis identify can be not ready + identifyCapable(8) -- chassis idenfity can be made to identify chassis +} + +ChassisIdentifyControlSettingsFlags ::= INTEGER { + -- If 0 (zero), there are no Chassis Identify Control settings + unknown(1), -- chassis identify settings are unknown + enabled(2), -- chassis identify is enabled (online) + notReady(4), -- chassis identify is not ready + identifyChassis(8), -- identify chassis + identifyChassisAndEnable(10) -- identify chassis and enabled +} + +HostControlCapabilitiesFlags ::= INTEGER { + -- If 0 (zero), there are no Host Control capabilities + manualRebootCapable(1), -- host can be rebooted + manualPowerOFFCapable(2), -- host can be powered off + manualPowerCycleCapable(4), -- host can be power cycled + manualAllExceptOperatingSystemShutdownCapable(7), -- all host control capabilities except OS shutdown + manualOperatingSystemShutdownCapable(8), -- operating system can be shutdown + manualFullyCapable(15), -- all host control capabilities + manualRebootWithOSShutdownCapable(16), -- host can be rebooted with operating system shutdown + manualRebootWithoutOSShutdownCapable(32), -- host can be rebooted without operating system shutdown + manualPowerOffWithOSShutdownCapable(64), -- host can be powered off with operating system shutdown + manualPowerOffWithoutOSShutdownCapable(128),-- host can be powered off without operating system shutdown + manualPowerCycleWithOSShutdownCapable(256), -- host can be power cycled with operating system shutdown + manualPowerCycleWithoutOSShutdownCapable(512) -- host can be power cycled with operating system shutdown +} + +HostControlSettingsFlags ::= INTEGER { + -- If 0 (zero), there are no Host Control settings + manualReboot(1), -- reboot host + manualPowerOFF(2), -- power off host + manualPowerCycle(4), -- power cycle host + manualOperatingSystemShutdown(8), -- shutdown operating system on host + manualOperatingSystemShutdownThenReboot(9), -- shutdown operating system on host then reboot host + manualOperatingSystemShutdownThenPowerOFF(10), -- shutdown operating system on host then power off host + manualOperatingSystemShutdownThenPowerCycle(12) -- shutdown operating system on host then power cycle host +} + +WatchDogControlCapabilitiesFlags ::= INTEGER { + -- If 0 (zero), there are no Watchdog Control capabilities + automaticRebootCapable(1), -- watchdog can reboot host + automaticPowerCycleCapable(2), -- watchdog can power cycle host + automaticNotificationCapable(4), -- watchdog can notify + automaticWatchDogTimerCapable(8), -- watchdog supports timer + automaticPowerOffCapable(16), -- watchdog can power off host + automaticAllExceptNotificationCapable(27), -- all capabilities except notification + automaticFullyCapable(31) -- all watchdog control capabilities +} + +WatchControlSettingsFlags ::= INTEGER { + -- If 0 (zero), there are no Watchdog Control settings + automaticRebootEnabled(1), -- watchdog set for automatic reboot + automaticPowerCycleEnabled(2), -- watchdog set for automatic power cycle + automaticNotificationEnabled(4), -- watchdog set for automatic notification + automaticPowerOffEnabled(8) -- watchdog set for automatic power off +} + +WatchDogTimerCapabilitiesFlags ::= INTEGER { + -- If 0 (zero), there are no Watchdog Timer capabilities + type1Capable(1), -- watchdog can time in range of 20-480 seconds + type2Capable(2), -- watchdog can time in 30, 60, 120 and 480 second intervals + type3Capable(4) -- watchdog can time in 60 second intervals +} + +PowerButtonControlCapabilitiesFlags ::= INTEGER { + -- If 0 (zero), there are no Power Button Control capabilities + unknownCapabilities(1), -- power button capabilities are unknown + enableCapable(2) -- power button can be enabled or disabled +} + +PowerButtonControlSettingsFlags ::= INTEGER { + -- If 0 (zero), there are no Power Button Control settings + unknown(1), -- power button settings are unknown + enabled(2), -- power button is enabled + disabled(4) -- power button disabled +} + +NMIButtonControlCapabilitiesFlags ::= INTEGER { + -- If 0 (zero), there are no NMI Button Control capabilities + unknownCapabilities(1), -- NMI button capabilities are unknown + enableCapable(2) -- NMI button can be enabled or disabled +} + +NMIButtonControlSettingsFlags ::= INTEGER { + -- If 0 (zero), there are no NMI Button Control settings + unknown(1), -- NMI button settings are unknown + enabled(2), -- NMI button is enabled + disabled(4) -- NMI button disabled +} + +SystemPropertiesFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no properties + energySmart(1) -- Energy Smart system +} + +ChassisInformationTableEntry ::= SEQUENCE { + chassisIndexChassisInformation ObjectRange, + chassisStateCapabilities StateCapabilitiesFlags, + chassisStateSettings StateSettingsFlags, + chassisStatus ObjectStatusEnum, + chassisparentIndexReference ObjectRange, + chassisType ChassisTypeEnum, + chassisName String64, + chassisManufacturerName String64, + chassisModelTypeName String64, + chassisAssetTagName DisplayString, + chassisServiceTagName DisplayString, + chassisID Unsigned8BitRange, + chassisIDExtension Unsigned16BitRange, + chassisSystemClass ChassisSystemClassEnum, + chassisSystemName String64, + chassisLEDControlCapabilitiesUnique LEDControlCapabilitiesFlags, + chassisLEDControlSettingsUnique LEDControlSettingsFlags, + chassisIdentifyFlashControlCapabilities ChassisIdentifyControlCapabilitiesFlags, + chassisIdentifyFlashControlSettings ChassisIdentifyControlSettingsFlags, + chassisLockPresent BooleanType, + chassishostControlCapabilitiesUnique HostControlCapabilitiesFlags, + chassishostControlSettingsUnique HostControlSettingsFlags, + chassiswatchDogControlCapabilitiesUnique WatchDogControlCapabilitiesFlags, + chassiswatchDogControlSettingsUnique WatchControlSettingsFlags, + chassiswatchDogControlExpiryTimeCapabilitiesUnique WatchDogTimerCapabilitiesFlags, + chassiswatchDogControlExpiryTime Unsigned16BitRange, + chassisPowerButtonControlCapabilitiesUnique PowerButtonControlCapabilitiesFlags, + chassisPowerButtonControlSettingsUnique PowerButtonControlSettingsFlags, + chassisNMIButtonControlCapabilitiesUnique NMIButtonControlCapabilitiesFlags, + chassisNMIButtonControlSettingsUnique NMIButtonControlSettingsFlags, + chassisSystemProperties SystemPropertiesFlags, + chassisSystemRevisionNumber Unsigned8BitRange, + chassisSystemRevisionName String64, + chassisExpressServiceCodeName String64 +} + +chassisInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChassisInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0010 This object defines the Chassis Information Table." + ::= { chassisInformationGroup 10 } + +chassisInformationTableEntry OBJECT-TYPE + SYNTAX ChassisInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0010.0001 This object defines the Chassis Information Table Entry." + INDEX { chassisIndexChassisInformation } + ::= { chassisInformationTable 1 } + +chassisIndexChassisInformation OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { chassisInformationTableEntry 1 } + +chassisStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0002 This attribute defines the state capabilities of the system chassis." + ::= { chassisInformationTableEntry 2 } + +chassisStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0003 This attribute defines the state settings of the system chassis." + ::= { chassisInformationTableEntry 3 } + +chassisStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0004 This attribute defines the status of the system chassis." + ::= { chassisInformationTableEntry 4 } + +chassisparentIndexReference OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0005 This attribute defines the index (one based) to the + parent system of this system chassis, if any." + ::= { chassisInformationTableEntry 5 } + +chassisType OBJECT-TYPE + SYNTAX ChassisTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0006 This attribute defines the system type of the system chassis." + ::= { chassisInformationTableEntry 6 } + +chassisName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0007 This attribute defines the user-assigned name of the system chassis." + ::= { chassisInformationTableEntry 7 } + +chassisManufacturerName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0008 This attribute defines the name of the manufacturer + of the system chassis." + ::= { chassisInformationTableEntry 8 } + +chassisModelTypeName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0009 This attribute defines the system model type of the system chassis." + ::= { chassisInformationTableEntry 9 } + +chassisAssetTagName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0010 This attribute defines the asset tag name of the system chassis." + ::= { chassisInformationTableEntry 10 } + +chassisServiceTagName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0011 This attribute defines the service tag name of the system chassis." + ::= { chassisInformationTableEntry 11 } + +chassisID OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0012 This attribute defines the system ID. If the value + is 254 (0xFE), the attribute systemIDExtension provides the system ID." + ::= { chassisInformationTableEntry 12 } + +chassisIDExtension OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0013 This attribute defines the system ID extension." + ::= { chassisInformationTableEntry 13 } + +chassisSystemClass OBJECT-TYPE + SYNTAX ChassisSystemClassEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0014 This attribute defines the system class." + ::= { chassisInformationTableEntry 14 } + +chassisSystemName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0015 This attribute defines the host name of the system chassis." + ::= { chassisInformationTableEntry 15 } + +chassisLEDControlCapabilitiesUnique OBJECT-TYPE + SYNTAX LEDControlCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0024 This attribute defines the capabilities of the + LED control hardware in the system chassis." + ::= { chassisInformationTableEntry 24 } + +chassisLEDControlSettingsUnique OBJECT-TYPE + SYNTAX LEDControlSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0025 This attribute defines the reading and setting of the + LED control hardware in the system chassis." + ::= { chassisInformationTableEntry 25 } + +chassisIdentifyFlashControlCapabilities OBJECT-TYPE + SYNTAX ChassisIdentifyControlCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0028 This attribute defines if the system allows setting + of the system front panel LED to flash." + ::= { chassisInformationTableEntry 28 } + +chassisIdentifyFlashControlSettings OBJECT-TYPE + SYNTAX ChassisIdentifyControlSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0029 This attribute setting causes the system front panel + LED to flash." + ::= { chassisInformationTableEntry 29 } + +chassisLockPresent OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0030 If true, a system lock is present on the system chassis." + ::= { chassisInformationTableEntry 30 } + +chassishostControlCapabilitiesUnique OBJECT-TYPE + SYNTAX HostControlCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0031 This attribute defines the capabilities of the + host control function." + ::= { chassisInformationTableEntry 31 } + +chassishostControlSettingsUnique OBJECT-TYPE + SYNTAX HostControlSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0032 This attribute defines the settings of the + host control function." + ::= { chassisInformationTableEntry 32 } + +chassiswatchDogControlCapabilitiesUnique OBJECT-TYPE + SYNTAX WatchDogControlCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0033 This attribute defines the capabilities of the + watchdog control function." + ::= { chassisInformationTableEntry 33 } + +chassiswatchDogControlSettingsUnique OBJECT-TYPE + SYNTAX WatchControlSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0034 This attribute defines the settings of the + watchdog control function." + ::= { chassisInformationTableEntry 34 } + +chassiswatchDogControlExpiryTimeCapabilitiesUnique OBJECT-TYPE + SYNTAX WatchDogTimerCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0035 This attribute defines the capabilities of the + watchdog control expiry timer function." + ::= { chassisInformationTableEntry 35 } + +chassiswatchDogControlExpiryTime OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0036 This attribute defines the current watchdog timer + value in seconds." + ::= { chassisInformationTableEntry 36 } + +chassisPowerButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX PowerButtonControlCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0038 This attribute defines the capabilities of the + power button control hardware in the system chassis." + ::= { chassisInformationTableEntry 38 } + +chassisPowerButtonControlSettingsUnique OBJECT-TYPE + SYNTAX PowerButtonControlSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0039 This attribute defines the reading and setting of + the power button control hardware in the system chassis." + ::= { chassisInformationTableEntry 39 } + +chassisNMIButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX NMIButtonControlCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0044 This attribute defines the capabilities of the + NMI button control hardware in the system chassis." + ::= { chassisInformationTableEntry 44 } + +chassisNMIButtonControlSettingsUnique OBJECT-TYPE + SYNTAX NMIButtonControlSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0045 This attribute defines the reading and setting of + the NMI button control hardware in the system chassis." + ::= { chassisInformationTableEntry 45 } + +chassisSystemProperties OBJECT-TYPE + SYNTAX SystemPropertiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0046 This attribute defines the properties of the system chassis." + ::= { chassisInformationTableEntry 46 } + +chassisSystemRevisionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0047 This attribute defines the revision number of the system + where zero indicates the original version of the system chassis. The revision number + is not available on all systems." + ::= { chassisInformationTableEntry 47 } + +chassisSystemRevisionName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0048 This attribute defines the revision name of the system, + if applicable." + ::= { chassisInformationTableEntry 48 } + +chassisExpressServiceCodeName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0010.0001.0049 This attribute defines the Express Service Code of the system chassis." + ::= { chassisInformationTableEntry 49 } + + +------------------------------------------------------------------------------- +-- Event (ESM) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.40.1... +------------------------------------------------------------------------------- + +EventLogTableEntry ::= SEQUENCE { + eventLogchassisIndex ObjectRange, + eventLogRecordIndex Unsigned32BitRange, + eventLogStateCapabilitiesUnique StateCapabilitiesLogUniqueFlags, + eventLogStateSettingsUnique StateSettingsLogUniqueFlags, + eventLogRecord DisplayString, + eventLogFormat LogFormatType, + eventLogSeverityStatus ObjectStatusEnum, + eventLogDateName DateName +} + +eventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF EventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0040 This object defines the Event (ESM) Log Table." + ::= { chassisInformationGroup 40 } + +eventLogTableEntry OBJECT-TYPE + SYNTAX EventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0040.0001 This object defines the Event (ESM) Log Table Entry." + INDEX { eventLogchassisIndex, + eventLogRecordIndex } + ::= { eventLogTable 1 } + +eventLogchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0040.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { eventLogTableEntry 1 } + +eventLogRecordIndex OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0040.0001.0002 This attribute defines the index (one based) of the + event log record." + ::= { eventLogTableEntry 2 } + +eventLogStateCapabilitiesUnique OBJECT-TYPE + SYNTAX StateCapabilitiesLogUniqueFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0040.0001.0003 This attribute defines the state capabilities of the + object that is writing the event log." + ::= { eventLogTableEntry 3 } + +eventLogStateSettingsUnique OBJECT-TYPE + SYNTAX StateSettingsLogUniqueFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0040.0001.0004 This attribute defines the state settings of the + object that is writing the event log." + ::= { eventLogTableEntry 4 } + +eventLogRecord OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0040.0001.0005 This attribute defines the data of the event log record." + ::= { eventLogTableEntry 5 } + +eventLogFormat OBJECT-TYPE + SYNTAX LogFormatType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0040.0001.0006 This attribute defines the format of the event log record." + ::= { eventLogTableEntry 6 } + +eventLogSeverityStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0040.0001.0007 This attribute defines the severity of the + event log record." + ::= { eventLogTableEntry 7 } + +eventLogDateName OBJECT-TYPE + SYNTAX DateName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0040.0001.0008 This attribute defines the date and time of the + event log record." + ::= { eventLogTableEntry 8 } + + +------------------------------------------------------------------------------- +-- System BIOS Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.50.1... +------------------------------------------------------------------------------- + +SystemBIOSTableEntry ::= SEQUENCE { + systemBIOSchassisIndex ObjectRange, + systemBIOSIndex ObjectRange, + systemBIOSStateCapabilities StateCapabilitiesFlags, + systemBIOSStateSettings StateSettingsFlags, + systemBIOSStatus ObjectStatusEnum, + systemBIOSReleaseDateName DateName, + systemBIOSVersionName String64, + systemBIOSManufacturerName String64 +} + +systemBIOSTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0050 This object defines the System BIOS Table." + ::= { chassisInformationGroup 50 } + +systemBIOSTableEntry OBJECT-TYPE + SYNTAX SystemBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0050.0001 This object defines the System BIOS Table Entry." + INDEX { systemBIOSchassisIndex, + systemBIOSIndex } + ::= { systemBIOSTable 1 } + +systemBIOSchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0050.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { systemBIOSTableEntry 1 } + +systemBIOSIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0050.0001.0002 This attribute defines the index (one based) of the + system BIOS." + ::= { systemBIOSTableEntry 2 } + +systemBIOSStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0050.0001.0003 This attribute defines the state capabilities of the + system BIOS." + ::= { systemBIOSTableEntry 3 } + +systemBIOSStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0050.0001.0004 This attribute defines the state settings of the + system BIOS." + ::= { systemBIOSTableEntry 4 } + +systemBIOSStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0050.0001.0005 This attribute defines the status of the system BIOS." + ::= { systemBIOSTableEntry 5 } + +systemBIOSReleaseDateName OBJECT-TYPE + SYNTAX DateName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0050.0001.0007 This attribute defines the release date name of the + system BIOS." + ::= { systemBIOSTableEntry 7 } + +systemBIOSVersionName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0050.0001.0008 This attribute defines the version name of the + system BIOS." + ::= { systemBIOSTableEntry 8 } + +systemBIOSManufacturerName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0050.0001.0011 This attribute defines the name of the manufacturer + of the system BIOS." + ::= { systemBIOSTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Firmware Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.60.1... +------------------------------------------------------------------------------- + +FirmwareType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + lifecycleController(20), -- type is Lifecycle Controller + iDRAC7(21), -- type is Integrated Dell Remote Access Controller 7 + iDRAC8(22) -- type is Integrated Dell Remote Access Controller 8 +} + +FirmwareTableEntry ::= SEQUENCE { + firmwarechassisIndex ObjectRange, + firmwareIndex ObjectRange, + firmwareStateCapabilities StateCapabilitiesFlags, + firmwareStateSettings StateSettingsFlags, + firmwareStatus ObjectStatusEnum, + firmwareSize Unsigned16BitRange, + firmwareType FirmwareType, + firmwareTypeName String64, + firmwareUpdateCapabilities Unsigned16BitRange, + firmwareVersionName String64 +} + +firmwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF FirmwareTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0060 This object defines the Firmware Table." + ::= { chassisInformationGroup 60 } + +firmwareTableEntry OBJECT-TYPE + SYNTAX FirmwareTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0060.0001 This object defines the Firmware Table Entry." + INDEX { firmwarechassisIndex, + firmwareIndex } + ::= { firmwareTable 1 } + +firmwarechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { firmwareTableEntry 1 } + +firmwareIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0002 This attribute defines the index (one based) of the + firmware." + ::= { firmwareTableEntry 2 } + +firmwareStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0003 This attribute defines the state capabilities of the + firmware." + ::= { firmwareTableEntry 3 } + +firmwareStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0004 This attribute defines the state settings of the + firmware." + ::= { firmwareTableEntry 4 } + +firmwareStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0005 This attribute defines the status of the firmware." + ::= { firmwareTableEntry 5 } + +firmwareSize OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0006 This attribute defines the image size of the firmware + in KBytes. Zero indicates size is unknown." + ::= { firmwareTableEntry 6 } + +firmwareType OBJECT-TYPE + SYNTAX FirmwareType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0007 This attribute defines the type of firmware." + ::= { firmwareTableEntry 7 } + +firmwareTypeName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0008 This attribute defines the type name of the firmware." + ::= { firmwareTableEntry 8 } + +firmwareUpdateCapabilities OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0009 This attribute defines the bitmap of supported methods + for firmware update." + ::= { firmwareTableEntry 9 } + +firmwareVersionName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0060.0001.0011 This attribute defines the version of the firmware." + ::= { firmwareTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Intrusion Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.70.1... +------------------------------------------------------------------------------- + +IntrusionReadingEnum ::= INTEGER { + chassisNotBreached(1), -- chassis not breached and no uncleared breaches + chassisBreached(2), -- chassis currently breached + chassisBreachedPrior(3), -- chassis breached prior to boot and has not been cleared + chassisBreachSensorFailure(4) -- intrusion sensor has failed +} + +IntrusionTypeEnum ::= INTEGER { + chassisBreachDetectionWhenPowerON(1), -- type is detect intrusion while power on + chassisBreachDetectionWhenPowerOFF(2) -- type is detect intrusion while power off +} + +IntrusionTableEntry ::= SEQUENCE { + intrusionchassisIndex ObjectRange, + intrusionIndex ObjectRange, + intrusionStateCapabilities StateCapabilitiesFlags, + intrusionStateSettings StateSettingsFlags, + intrusionStatus ObjectStatusEnum, + intrusionReading IntrusionReadingEnum, + intrusionType IntrusionTypeEnum, + intrusionLocationName String64 +} + +intrusionTable OBJECT-TYPE + SYNTAX SEQUENCE OF IntrusionTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0070 This object defines the Intrusion Table." + ::= { chassisInformationGroup 70 } + +intrusionTableEntry OBJECT-TYPE + SYNTAX IntrusionTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0070.0001 This object defines the Intrusion Table Entry." + INDEX { intrusionchassisIndex, + intrusionIndex } + ::= { intrusionTable 1 } + +intrusionchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0070.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { intrusionTableEntry 1 } + +intrusionIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0070.0001.0002 This attribute defines the index (one based) of the + intrusion sensor." + ::= { intrusionTableEntry 2 } + +intrusionStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0070.0001.0003 This attribute defines the state capabilities of the + intrusion sensor." + ::= { intrusionTableEntry 3 } + +intrusionStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0070.0001.0004 This attribute defines the state settings of the + intrusion sensor." + ::= { intrusionTableEntry 4 } + +intrusionStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0070.0001.0005 This attribute defines the status of the + intrusion sensor." + ::= { intrusionTableEntry 5 } + +intrusionReading OBJECT-TYPE + SYNTAX IntrusionReadingEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0070.0001.0006 This attribute defines the reading of the + intrusion sensor." + ::= { intrusionTableEntry 6 } + +intrusionType OBJECT-TYPE + SYNTAX IntrusionTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0070.0001.0007 This attribute defines the type of the + intrusion sensor." + ::= { intrusionTableEntry 7 } + +intrusionLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0070.0001.0008 This attribute defines the location of the + intrusion sensor." + ::= { intrusionTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Lifecycle (LC) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.90.1... +------------------------------------------------------------------------------- + +LcLogCategoryEnum ::= INTEGER { + system(1), -- System Health category + storage(2), -- Storage category + updates(3), -- Updates category + audit(4), -- Audit category + configuration(5), -- Configuration category + workNotes(6) -- Work Notes category +} + +LcLogTableEntry ::= SEQUENCE { + lcLogChassisIndex ObjectRange, + lcLogRecordIndex Unsigned32BitRange, + lcLogSequenceNumber Unsigned32BitRange, + lcLogCategory LcLogCategoryEnum, + lcLogSeverityStatus ObjectStatusEnum, + lcLogDateName DateName, + lcLogFQDD FQDDString, + lcLogMessageID DisplayString, + lcLogMessage DisplayString, + lcLogDetailedDescription DisplayString, + lcLogRecommededAction DisplayString, + lcLogComment DisplayString +} + +-- Note: You can only access the lcLogTable table via SNMPv3 queries. +-- Access to the table is blocked for SNMPv1 and SNMPv2c queries. +lcLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0090 This object defines the Lifecycle (LC) Log Table. + Lifecycle (LC) Log table records are ordered from oldest to newest. + Note: This table can only be accessed via SNMPv3 queries." + ::= { chassisInformationGroup 90 } + +lcLogTableEntry OBJECT-TYPE + SYNTAX LcLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0300.0090.0001 This object defines the Lifcycle (LC) Log Table Entry." + INDEX { lcLogChassisIndex, + lcLogRecordIndex } + ::= { lcLogTable 1 } + +lcLogChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0001 This attribute defines the index (one based) + of the associated system chassis." + ::= { lcLogTableEntry 1 } + +lcLogRecordIndex OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0002 This attribute defines the index (one based) + of the LC log record." + ::= { lcLogTableEntry 2 } + +lcLogSequenceNumber OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0003 This attribute defines the LC Log sequence number + of the event associated with the LC log record." + ::= { lcLogTableEntry 3 } + +lcLogCategory OBJECT-TYPE + SYNTAX LcLogCategoryEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0004 This attribute defines the category + of the event associated with the LC log record." + ::= { lcLogTableEntry 4 } + +lcLogSeverityStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0005 This attribute defines the severity + of the event associated with the LC log record." + ::= { lcLogTableEntry 5 } + +lcLogDateName OBJECT-TYPE + SYNTAX DateName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0006 This attribute defines the date and time + of the event associated with the LC log record." + ::= { lcLogTableEntry 6 } + +lcLogFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0007 Fully qualified device descriptor (FQDD) + of the device associated with the event associated with the LC log record." + ::= { lcLogTableEntry 7 } + +lcLogMessageID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0008 This attribute defines the Message ID + of the event associated with the LC log record." + ::= { lcLogTableEntry 8 } + +lcLogMessage OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..512)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0009 This attribute defines the message + of the event associated with the LC log record." + ::= { lcLogTableEntry 9 } + +lcLogDetailedDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..2048)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0010 This attribute defines the detailed description + of the event associated with the LC log record." + ::= { lcLogTableEntry 10 } + +lcLogRecommededAction OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..2048)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0011 This attribute defines an optional recommended action + associated with the event associated with the LC log record." + ::= { lcLogTableEntry 11 } + +lcLogComment OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0300.0090.0001.0012 This attribute defines an optional user comment + associated with the event associated with the LC log record." + ::= { lcLogTableEntry 12 } + + + +------------------------------------------------------------------------------- +-- Power Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Power Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.10.1... +------------------------------------------------------------------------------- + +PowerUnitTableEntry ::= SEQUENCE { + powerUnitchassisIndex ObjectRange, + powerUnitIndex ObjectRange, + powerUnitStateCapabilities StateCapabilitiesFlags, + powerUnitStateSettings StateSettingsFlags, + powerUnitRedundancyStatus StatusRedundancyEnum, + powerSupplyCountForRedundancy ObjectRange, + powerUnitName String64, + powerUnitStatus ObjectStatusEnum +} + +powerUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0010 This object defines the Power Unit Table." + ::= { powerGroup 10 } + +powerUnitTableEntry OBJECT-TYPE + SYNTAX PowerUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0010.0001 This object defines the Power Unit Table Entry." + INDEX { powerUnitchassisIndex, + powerUnitIndex } + ::= { powerUnitTable 1 } + +powerUnitchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0010.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { powerUnitTableEntry 1 } + +powerUnitIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0010.0001.0002 This attribute defines the index (one based) of the + power unit." + ::= { powerUnitTableEntry 2 } + +powerUnitStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0010.0001.0003 This attribute defines the state capabilities of the + power unit." + ::= { powerUnitTableEntry 3 } + +powerUnitStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0010.0001.0004 This attribute defines the state settings of the + power unit." + ::= { powerUnitTableEntry 4 } + +powerUnitRedundancyStatus OBJECT-TYPE + SYNTAX StatusRedundancyEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0010.0001.0005 This attribute defines the redundancy status of the + power unit." + ::= { powerUnitTableEntry 5 } + +powerSupplyCountForRedundancy OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0010.0001.0006 This attribute defines the total number of power supplies + required for this power unit to have full redundancy." + ::= { powerUnitTableEntry 6 } + +powerUnitName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0010.0001.0007 This attribute defines the name of the power unit." + ::= { powerUnitTableEntry 7 } + +powerUnitStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0010.0001.0008 This attribute defines the status of the power unit." + ::= { powerUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Power Supply Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.12.1... +------------------------------------------------------------------------------- + +PowerSupplyStateCapabilitiesUniqueFlags ::= INTEGER { + -- If 0 (zero), there are no power supply state capabilities + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state capabilities are unknown + onlineCapable(2), -- power supply can be enabled (online) or disabled (offline) + notReadyCapable(4) -- power supply can be not ready +} + +PowerSupplyStateSettingsUniqueFlags ::= INTEGER { + -- If 0 (zero), there are no power supply state settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state settings are unknown + onLine(2), -- power supply is enabled (online) + notReady(4), -- power supply is not ready + fanFailure(8), -- power supply fan has failed + onlineAndFanFailure(10), + powerSupplyIsON(16), -- power supply is supplying power + powerSupplyIsOK(32), -- power supply is indicating it is OK + acSwitchIsON(64), -- power supply is indicating AC power switch is on + onlineandAcSwitchIsON(66), + acPowerIsON(128), -- power supply is indicating AC power is on + onlineAndAcPowerIsON(130), + onlineAndPredictiveFailure(210), + acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline(242) +} + +PowerSupplyTypeEnum ::= INTEGER { + powerSupplyTypeIsOther(1), -- type is other than following values + powerSupplyTypeIsUnknown(2), -- type is unknown + powerSupplyTypeIsLinear(3), -- type is Linear + powerSupplyTypeIsSwitching(4), -- type is Switching + powerSupplyTypeIsBattery(5), -- type is Battery + powerSupplyTypeIsUPS(6), -- type is Uninterruptible Power Supply + powerSupplyTypeIsConverter(7), -- type is Converter + powerSupplyTypeIsRegulator(8), -- type is Regulator + powerSupplyTypeIsAC(9), -- type is AC + powerSupplyTypeIsDC(10), -- type is DC + powerSupplyTypeIsVRM(11) -- type is VRM +} + +PowerSupplySensorStateFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + presenceDetected(1), -- state is Presence detected + psFailureDetected(2), -- state is PS Failure detected + predictiveFailure(4), -- state is Predictive Failure + psACLost(8), -- state is PS AC lost + acLostOrOutOfRange(16), -- state is AC lost or out-of-range + acOutOfRangeButPresent(32), -- state is AC out-of-range, but present + configurationError(64) -- state is Configuration error +} + +PowerSupplyConfigurationErrorTypeEnum ::= INTEGER { + vendorMismatch(1), -- error type is Vendor mismatch + revisionMismatch(2), -- error type is Revision mismatch + processorMissing(3) -- error type is Processor missing +} + +PowerSupplyTableEntry ::= SEQUENCE { + powerSupplychassisIndex ObjectRange, + powerSupplyIndex ObjectRange, + powerSupplyStateCapabilitiesUnique PowerSupplyStateCapabilitiesUniqueFlags, + powerSupplyStateSettingsUnique PowerSupplyStateSettingsUniqueFlags, + powerSupplyStatus ObjectStatusEnum, + powerSupplyOutputWatts Signed32BitRange, + powerSupplyType PowerSupplyTypeEnum, + powerSupplyLocationName String64, + powerSupplyMaximumInputVoltage Signed32BitRange, + powerSupplypowerUnitIndexReference ObjectRange, + powerSupplySensorState PowerSupplySensorStateFlags, + powerSupplyConfigurationErrorType PowerSupplyConfigurationErrorTypeEnum, + powerSupplyPowerMonitorCapable BooleanType, + powerSupplyRatedInputWattage Signed32BitRange, + powerSupplyFQDD FQDDString, + powerSupplyCurrentInputVoltage Signed32BitRange +} + +powerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0012 This object defines the Power Supply Table." + ::= { powerGroup 12 } + +powerSupplyTableEntry OBJECT-TYPE + SYNTAX PowerSupplyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0012.0001 This object defines the Power Supply Table Entry." + INDEX { powerSupplychassisIndex, + powerSupplyIndex } + ::= { powerSupplyTable 1 } + +powerSupplychassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { powerSupplyTableEntry 1 } + +powerSupplyIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0002 This attribute defines the index (one based) of the + power supply." + ::= { powerSupplyTableEntry 2 } + +powerSupplyStateCapabilitiesUnique OBJECT-TYPE + SYNTAX PowerSupplyStateCapabilitiesUniqueFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0003 This attribute defines the state capabilities of the + power supply." + ::= { powerSupplyTableEntry 3 } + +powerSupplyStateSettingsUnique OBJECT-TYPE + SYNTAX PowerSupplyStateSettingsUniqueFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0004 This attribute defines the state settings of the + power supply." + ::= { powerSupplyTableEntry 4 } + +powerSupplyStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0005 This attribute defines the status of the power supply." + ::= { powerSupplyTableEntry 5 } + +powerSupplyOutputWatts OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0006 This attribute defines the maximum sustained output + wattage of the power supply (in tenths of Watts)." + ::= { powerSupplyTableEntry 6 } + +powerSupplyType OBJECT-TYPE + SYNTAX PowerSupplyTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0007 This attribute defines the type of the power supply." + ::= { powerSupplyTableEntry 7 } + +powerSupplyLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0008 This attribute defines the location of the power supply." + ::= { powerSupplyTableEntry 8 } + +powerSupplyMaximumInputVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0009 This attribute defines the maximum input voltage of the + power supply (in Volts)." + ::= { powerSupplyTableEntry 9 } + +powerSupplypowerUnitIndexReference OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0010 This attribute defines the index to the associated + power unit if the power supply is part of a power unit." + ::= { powerSupplyTableEntry 10 } + +powerSupplySensorState OBJECT-TYPE + SYNTAX PowerSupplySensorStateFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0011 This attribute defines the state reported by the + power supply sensor. This attribute supplements the attribute + powerSupplyStateSettingsUnique." + ::= { powerSupplyTableEntry 11 } + +powerSupplyConfigurationErrorType OBJECT-TYPE + SYNTAX PowerSupplyConfigurationErrorTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0012 This attribute defines the type of configuration error + reported by the power supply sensor. When the configurationError bit is on + in the value for the attribute powerSupplySensorState, a value is returned + for this attribute; otherwise, a value is not returned for this attribute." + ::= { powerSupplyTableEntry 12 } + +powerSupplyPowerMonitorCapable OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0013 This attribute defines a boolean value that reports + whether the power supply is capable of monitoring power consumption." + ::= { powerSupplyTableEntry 13 } + +powerSupplyRatedInputWattage OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0014 This attribute defines the rated input wattage of the + power supply (in tenths of Watts)." + ::= { powerSupplyTableEntry 14 } + +powerSupplyFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0015 Fully qualified device descriptor (FQDD) of the + power supply." + ::= { powerSupplyTableEntry 15 } + +powerSupplyCurrentInputVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0012.0001.0016 This attribute defines the current input voltage to the + power supply (in Volts)." + ::= { powerSupplyTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Voltage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.20.1... +------------------------------------------------------------------------------- + +VoltageTypeEnum ::= INTEGER { + voltageProbeTypeIsOther(1), -- type is other than following values + voltageProbeTypeIsUnknown(2), -- type is unknown + voltageProbeTypeIs1Point5Volt(3), -- type is 1.5 volt probe + voltageProbeTypeIs3Point3Volt(4), -- type is 3.3 volt probe + voltageProbeTypeIs5Volt(5), -- type is 5 volt probe + voltageProbeTypeIsMinus5Volt(6), -- type is -5 volt probe + voltageProbeTypeIs12Volt(7), -- type is 12 volt probe + voltageProbeTypeIsMinus12Volt(8), -- type is -12 volt probe + voltageProbeTypeIsIO(9), -- type is I/O probe + voltageProbeTypeIsCore(10), -- type is Core probe + voltageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + voltageProbeTypeIsBattery(12), -- type is Battery probe + voltageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + voltageProbeTypeIs2Point5Volt(14), -- type is 2.5 volt probe + voltageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + voltageProbeTypeIsDiscrete(16), -- type is voltage probe with discrete reading + voltageProbeTypeIsGenericDiscrete(17), -- type is generic discrete reading + voltageProbeTypeIsPSVoltage(18), -- type is Power Supply voltage probe + voltageProbeTypeIsMemoryStatus(19) -- type is Memory Status probe +} + +VoltageDiscreteReadingEnum ::= INTEGER { + voltageIsGood(1), -- voltage reading is Good + voltageIsBad(2) -- voltage reading is Bad +} + +VoltageProbeTableEntry ::= SEQUENCE { + voltageProbechassisIndex ObjectRange, + voltageProbeIndex ObjectRange, + voltageProbeStateCapabilities StateCapabilitiesFlags, + voltageProbeStateSettings StateSettingsFlags, + voltageProbeStatus StatusProbeEnum, + voltageProbeReading Signed32BitRange, + voltageProbeType VoltageTypeEnum, + voltageProbeLocationName String64, + voltageProbeUpperNonRecoverableThreshold Signed32BitRange, + voltageProbeUpperCriticalThreshold Signed32BitRange, + voltageProbeUpperNonCriticalThreshold Signed32BitRange, + voltageProbeLowerNonCriticalThreshold Signed32BitRange, + voltageProbeLowerCriticalThreshold Signed32BitRange, + voltageProbeLowerNonRecoverableThreshold Signed32BitRange, + voltageProbeProbeCapabilities ProbeCapabilitiesFlags, + voltageProbeDiscreteReading VoltageDiscreteReadingEnum +} + +voltageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoltageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0020 This object defines the Voltage Probe Table." + ::= { powerGroup 20 } + +voltageProbeTableEntry OBJECT-TYPE + SYNTAX VoltageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0020.001 This object defines the Voltage Probe Table Entry." + INDEX { voltageProbechassisIndex, + voltageProbeIndex } + ::= { voltageProbeTable 1 } + +voltageProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { voltageProbeTableEntry 1 } + +voltageProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0002 This attribute defines the index (one based) of the + voltage probe." + ::= { voltageProbeTableEntry 2 } + +voltageProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0003 This attribute defines the state capabilities of the + voltage probe." + ::= { voltageProbeTableEntry 3 } + +voltageProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0004 This attribute defines the state settings of the + voltage probe." + ::= { voltageProbeTableEntry 4 } + +voltageProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0005 This attribute defines the probe status of the + voltage probe." + ::= { voltageProbeTableEntry 5 } + +voltageProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0006 This attribute defines the reading for a voltage + probe of type other than voltageProbeTypeIsDiscrete. When the value + for voltageProbeType is other than voltageProbeTypeIsDiscrete, the value + returned for this attribute is the voltage that the probe is reading + in millivolts. When the value for voltageProbeType is + voltageProbeTypeIsDiscrete, a value is not returned for this attribute." + ::= { voltageProbeTableEntry 6 } + +voltageProbeType OBJECT-TYPE + SYNTAX VoltageTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0007 This attribute defines the type of the voltage probe." + ::= { voltageProbeTableEntry 7 } + +voltageProbeLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0008 This attribute defines the location name of the + voltage probe." + ::= { voltageProbeTableEntry 8 } + +voltageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0009 This attribute defines the upper nonrecoverable threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 9 } + +voltageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0010 This attribute defines the upper critical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 10 } + +voltageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0011 This attribute defines the upper noncritical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 11 } + +voltageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0012 This attribute defines the lower noncritical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 12 } + +voltageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0013 This attribute defines the lower critical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 13 } + +voltageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0014 This attribute defines the lower nonrecoverable threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 14 } + +voltageProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0015 This attribute defines the probe capabilities of the + voltage probe." + ::= { voltageProbeTableEntry 15 } + +voltageProbeDiscreteReading OBJECT-TYPE + SYNTAX VoltageDiscreteReadingEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0020.0001.0016 This attribute defines the reading for a voltage + probe of type voltageProbeTypeIsDiscrete. When the value for voltageProbeType + is other than voltageProbeTypeIsDiscrete, a value is not returned for this + attribute. When the value for voltageProbeType is voltageProbeTypeIsDiscrete, + the value returned for this attribute is the discrete reading for the probe." + ::= { voltageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Amperage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.30.1... +------------------------------------------------------------------------------- + +AmperageProbeTypeEnum ::= INTEGER { + amperageProbeTypeIsOther(1), -- type is other than following values + amperageProbeTypeIsUnknown(2), -- type is unknown + amperageProbeTypeIs1Point5Volt(3), -- type is 1.5 amperage probe + amperageProbeTypeIs3Point3volt(4), -- type is 3.3 amperage probe + amperageProbeTypeIs5Volt(5), -- type is 5 amperage probe + amperageProbeTypeIsMinus5Volt(6), -- type is -5 amperage probe + amperageProbeTypeIs12Volt(7), -- type is 12 amperage probe + amperageProbeTypeIsMinus12Volt(8), -- type is -12 amperage probe + amperageProbeTypeIsIO(9), -- type is I/O probe + amperageProbeTypeIsCore(10), -- type is Core probe + amperageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + amperageProbeTypeIsBattery(12), -- type is Battery probe + amperageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + amperageProbeTypeIs2Point5Volt(14), -- type is 2.5 amperage probe + amperageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + amperageProbeTypeIsDiscrete(16), -- type is amperage probe with discrete reading + amperageProbeTypeIsPowerSupplyAmps(23), -- type is Power Supply probe with reading in Amps + amperageProbeTypeIsPowerSupplyWatts(24), -- type is Power Supply probe with reading in Watts + amperageProbeTypeIsSystemAmps(25), -- type is System probe with reading in Amps + amperageProbeTypeIsSystemWatts(26) -- type is System probe with reading in Watts +} + +AmperageDiscreteReadingEnum ::= INTEGER { + amperageIsGood(1), -- amperage reading is Good + amperageIsBad(2) -- amperage reading is Bad +} + +AmperageProbeTableEntry ::= SEQUENCE { + amperageProbechassisIndex ObjectRange, + amperageProbeIndex ObjectRange, + amperageProbeStateCapabilities StateCapabilitiesFlags, + amperageProbeStateSettings StateSettingsFlags, + amperageProbeStatus StatusProbeEnum, + amperageProbeReading Signed32BitRange, + amperageProbeType AmperageProbeTypeEnum, + amperageProbeLocationName String64, + amperageProbeUpperNonRecoverableThreshold Signed32BitRange, + amperageProbeUpperCriticalThreshold Signed32BitRange, + amperageProbeUpperNonCriticalThreshold Signed32BitRange, + amperageProbeLowerNonCriticalThreshold Signed32BitRange, + amperageProbeLowerCriticalThreshold Signed32BitRange, + amperageProbeLowerNonRecoverableThreshold Signed32BitRange, + amperageProbeProbeCapabilities ProbeCapabilitiesFlags, + amperageProbeDiscreteReading AmperageDiscreteReadingEnum +} + +amperageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AmperageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0030 This object defines the Amperage Probe Table." + ::= { powerGroup 30 } + +amperageProbeTableEntry OBJECT-TYPE + SYNTAX AmperageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0030.0001 This object defines the Amperage Probe Table Entry." + INDEX { amperageProbechassisIndex, + amperageProbeIndex } + ::= { amperageProbeTable 1 } + +amperageProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { amperageProbeTableEntry 1 } + +amperageProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0002 This attribute defines the index (one based) of the + amperage probe." + ::= { amperageProbeTableEntry 2 } + +amperageProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0003 This attribute defines the state capabilities of the + amperage probe." + ::= { amperageProbeTableEntry 3 } + +amperageProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0004 This attribute defines the state settings of the + amperage probe." + ::= { amperageProbeTableEntry 4 } + +amperageProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0005 This attribute defines the probe status of the + amperage probe." + ::= { amperageProbeTableEntry 5 } + +amperageProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0006 This attribute defines the reading for an amperage + probe of type other than amperageProbeTypeIsDiscrete. + + When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyAmps + or amperageProbeTypeIsSystemAmps, the value returned for this attribute + is the power usage that the probe is reading in tenths of Amps. + + When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyWatts + or amperageProbeTypeIsSystemWatts, the value returned for this attribute + is the power usage that the probe is reading in Watts. + + When the value for amperageProbeType is other than amperageProbeTypeIsDiscrete, + amperageProbeTypeIsPowerSupplyAmps, amperageProbeTypeIsPowerSupplyWatts, + amperageProbeTypeIsSystemAmps or amperageProbeTypeIsSystemWatts, + the value returned for this attribute is the amperage that the probe is + reading in Milliamps. + + When the value for amperageProbeType is amperageProbeTypeIsDiscrete, + a value is not returned for this attribute." + ::= { amperageProbeTableEntry 6 } + +amperageProbeType OBJECT-TYPE + SYNTAX AmperageProbeTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0007 This attribute defines the type of the amperage probe." + ::= { amperageProbeTableEntry 7 } + +amperageProbeLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0008 This attribute defines the location of the amperage probe." + ::= { amperageProbeTableEntry 8 } + +amperageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0009 This attribute defines the upper nonrecoverable threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 9 } + +amperageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0010 This attribute defines the upper critical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 10 } + +amperageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0011 This attribute defines the upper noncritical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 11 } + +amperageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0012 This attribute defines the lower noncritical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 12 } + +amperageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0013 This attribute defines the lower critical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 13 } + +amperageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0014 This attribute defines the lower nonrecoverable threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 14 } + +amperageProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0015 This attribute defines the probe capabilities of the + amperage probe." + ::= { amperageProbeTableEntry 15 } + +amperageProbeDiscreteReading OBJECT-TYPE + SYNTAX AmperageDiscreteReadingEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0030.0001.0016 This attribute defines the reading for an amperage + probe of type amperageProbeTypeIsDiscrete. When the value for amperageProbeType + is other than amperageProbeTypeIsDiscrete, a value is not returned for this + attribute. When the value for amperageProbeType is amperageProbeTypeIsDiscrete, + the value returned for this attribute is the discrete reading for the probe." + ::= { amperageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- System Battery Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.50.1... +------------------------------------------------------------------------------- + +SystemBatteryReadingFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + predictiveFailure(1), -- battery predictive failure + failed(2), -- battery failed + presenceDetected(4) -- battery presence detected +} + +SystemBatteryTableEntry ::= SEQUENCE { + systemBatteryChassisIndex ObjectRange, + systemBatteryIndex ObjectRange, + systemBatteryStateCapabilities StateCapabilitiesFlags, + systemBatteryStateSettings StateSettingsFlags, + systemBatteryStatus ObjectStatusEnum, + systemBatteryReading SystemBatteryReadingFlags, + systemBatteryLocationName String64 +} + +systemBatteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemBatteryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0050 This object defines the System Battery Table." + ::= { powerGroup 50 } + +systemBatteryTableEntry OBJECT-TYPE + SYNTAX SystemBatteryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0050.0001 This object defines the System Battery Table Entry." + INDEX { systemBatteryChassisIndex, + systemBatteryIndex } + ::= { systemBatteryTable 1 } + +systemBatteryChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0050.0001.0001 This attribute defines the index (one based) of + the system chassis that contains the battery." + ::= { systemBatteryTableEntry 1 } + +systemBatteryIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0050.0001.0002 This attribute defines the index (one based) of the battery." + ::= { systemBatteryTableEntry 2 } + +systemBatteryStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0050.0001.0003 This attribute defines the state capabilities of the battery." + ::= { systemBatteryTableEntry 3 } + +systemBatteryStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0050.0001.0004 This attribute defines the state settings of the battery." + ::= { systemBatteryTableEntry 4 } + +systemBatteryStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0050.0001.0005 This attribute defines the status of the battery." + ::= { systemBatteryTableEntry 5 } + +systemBatteryReading OBJECT-TYPE + SYNTAX SystemBatteryReadingFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0050.0001.0006 This attribute defines the reading of the battery." + ::= { systemBatteryTableEntry 6 } + +systemBatteryLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0050.0001.0007 This attribute defines the location of the battery." + ::= { systemBatteryTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Power Usage Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.60.1... +------------------------------------------------------------------------------- + +PowerCapCapabilitiesFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no power cap capabilities + enable(1), -- power cap can be enabled + disable(2) -- power cap can be disabled +} + +PowerCapSettingEnum ::= INTEGER { + -- disabled(0), - power cap disabled + enabled(1) -- power cap enabled +} + +PowerUsageTableEntry ::= SEQUENCE { + powerUsageChassisIndex ObjectRange, + powerUsageIndex ObjectRange, + powerUsageStateCapabilities StateCapabilitiesFlags, + powerUsageStateSettings StateSettingsFlags, + powerUsageStatus ObjectStatusEnum, + powerUsageEntityName String64, + powerUsageCumulativeWattage Unsigned32BitRange, + powerUsageCumulativeWattageStartDateName DateName, + powerUsagePeakWatts Unsigned32BitRange, + powerUsagePeakWattsStartDateName DateName, + powerUsagePeakWattsReadingDateName DateName, + powerUsagePeakAmps Unsigned32BitRange, + powerUsagePeakAmpsStartDateName DateName, + powerUsagePeakAmpsReadingDateName DateName, + powerUsageIdlePower Unsigned32BitRange, + powerUsageMaxPotentialPower Unsigned32BitRange, + powerUsagePowerCapCapabilities PowerCapCapabilitiesFlags, + powerUsagePowerCapSetting PowerCapSettingEnum, + powerUsagePowerCapValue Unsigned32BitRange, + powerUsageInstantaneousHeadroom Unsigned32BitRange, + powerUsagePeakHeadroom Unsigned32BitRange +} + +powerUsageTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUsageTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0060 This object defines the Power Usage Table." + ::= { powerGroup 60 } + +powerUsageTableEntry OBJECT-TYPE + SYNTAX PowerUsageTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0600.0060.0001 This object defines the Power Usage Table Entry." + INDEX { powerUsageChassisIndex, + powerUsageIndex } + ::= { powerUsageTable 1 } + +powerUsageChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0001 This attribute defines the index (one based) of + the associated system chassis." + ::= { powerUsageTableEntry 1 } + +powerUsageIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0002 This attribute defines the index (one based) of the + power usage information." + ::= { powerUsageTableEntry 2 } + +powerUsageStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0003 This attribute defines the state capabilities of the + power usage information." + ::= { powerUsageTableEntry 3 } + +powerUsageStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0004 This attribute defines the state settings of the + power usage information." + ::= { powerUsageTableEntry 4 } + +powerUsageStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0005 This attribute defines the status of the + power usage information." + ::= { powerUsageTableEntry 5 } + +powerUsageEntityName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0006 This attribute defines the name of the entity + associated with this power usage information." + ::= { powerUsageTableEntry 6 } + +powerUsageCumulativeWattage OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0007 This attribute defines the total wattage used + (in Watt-hours) by this entity since the date and time specified + by the powerUsageCumulativeWattageStartDateName attribute." + ::= { powerUsageTableEntry 7 } + +powerUsageCumulativeWattageStartDateName OBJECT-TYPE + SYNTAX DateName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0008 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsageCumulativeWattage attribute." + ::= { powerUsageTableEntry 8 } + +powerUsagePeakWatts OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0009 This attribute defines the peak wattage reading + (in Watts) for this entity since the date and time specified by the + powerUsagePeakWattsStartDateName attribute." + ::= { powerUsageTableEntry 9 } + +powerUsagePeakWattsStartDateName OBJECT-TYPE + SYNTAX DateName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0010 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsagePeakWatts attribute." + ::= { powerUsageTableEntry 10 } + +powerUsagePeakWattsReadingDateName OBJECT-TYPE + SYNTAX DateName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0011 This attribute defines the date and time at + which the value reported by the powerUsagePeakWatts attribute was + measured." + ::= { powerUsageTableEntry 11 } + +powerUsagePeakAmps OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0012 This attribute defines the peak amperage reading + (in tenths of Amps) for this entity since the date and time specified + by the powerUsagePeakAmpsStartDateName attribute." + ::= { powerUsageTableEntry 12 } + +powerUsagePeakAmpsStartDateName OBJECT-TYPE + SYNTAX DateName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0013 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsagePeakAmps attribute." + ::= { powerUsageTableEntry 13 } + +powerUsagePeakAmpsReadingDateName OBJECT-TYPE + SYNTAX DateName + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0014 This attribute defines the date and time at + which the value reported by the powerUsagePeakAmps attribute was + measured." + ::= { powerUsageTableEntry 14 } + +powerUsageIdlePower OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0015 This attribute defines the system idle power + (in Watts). This is the minimum power the system can consume + based on the current hardware configuration." + ::= { powerUsageTableEntry 15 } + +powerUsageMaxPotentialPower OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0016 This attribute defines the system maximum potential + power (in Watts). This is the maximum power the system can consume + based on the current hardware configuration." + ::= { powerUsageTableEntry 16 } + +powerUsagePowerCapCapabilities OBJECT-TYPE + SYNTAX PowerCapCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0017 This attribute defines the system power cap capabilities." + ::= { powerUsageTableEntry 17 } + +powerUsagePowerCapSetting OBJECT-TYPE + SYNTAX PowerCapSettingEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0018 This attribute defines the system power cap setting." + ::= { powerUsageTableEntry 18 } + +powerUsagePowerCapValue OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0019 This attribute defines the system power cap value + (in Watts)." + ::= { powerUsageTableEntry 19 } + +powerUsageInstantaneousHeadroom OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0020 This attribute defines the system instantaneous + headroom (in Watts). This is the theoretical maximum power drawn by + the power supply minus instantaneous power draw." + ::= { powerUsageTableEntry 20 } + +powerUsagePeakHeadroom OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0600.0060.0001.0021 This attribute defines the system peak headroom + (in Watts). This is the theoretical maximum power drawn by the power + supply minus peak power draw." + ::= { powerUsageTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Thermal Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cooling Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.10.1... +------------------------------------------------------------------------------- + +CoolingUnitTableEntry ::= SEQUENCE { + coolingUnitchassisIndex ObjectRange, + coolingUnitIndex ObjectRange, + coolingUnitStateCapabilties StateCapabilitiesFlags, + coolingUnitStateSettings StateSettingsFlags, + coolingUnitRedundancyStatus StatusRedundancyEnum, + coolingDeviceCountForRedundancy ObjectRange, + coolingUnitName String64, + coolingUnitStatus ObjectStatusEnum +} + +coolingUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0700.0010 This object defines the Cooling Unit Table." + ::= { thermalGroup 10 } + +coolingUnitTableEntry OBJECT-TYPE + SYNTAX CoolingUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0700.0010.0001 This object defines the Cooling Unit Table Entry." + INDEX { coolingUnitchassisIndex, + coolingUnitIndex } + ::= { coolingUnitTable 1 } + +coolingUnitchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0010.0001.0001 This attribute defines the index (one based) of + the associated system chassis." + ::= { coolingUnitTableEntry 1 } + +coolingUnitIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0010.0001.0002 This attribute defines the index (one based) of the + cooling unit." + ::= { coolingUnitTableEntry 2 } + +coolingUnitStateCapabilties OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0010.0001.0003 This attribute defines the state capabilities of the + cooling unit." + ::= { coolingUnitTableEntry 3 } + +coolingUnitStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0010.0001.0004 This attribute defines the state settings of the + cooling unit." + ::= { coolingUnitTableEntry 4 } + +coolingUnitRedundancyStatus OBJECT-TYPE + SYNTAX StatusRedundancyEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0010.0001.0005 This attribute defines the redundancy status of the + cooling unit." + ::= { coolingUnitTableEntry 5 } + +coolingDeviceCountForRedundancy OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0010.0001.0006 This attribute defines the total number of cooling devices + required for this cooling unit to have full redundancy." + ::= { coolingUnitTableEntry 6 } + +coolingUnitName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0010.0001.0007 This attribute defines the name of the cooling unit." + ::= { coolingUnitTableEntry 7 } + +coolingUnitStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0010.0001.0008 This attribute defines the status of the cooling unit." + ::= { coolingUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Cooling Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.12.1... +------------------------------------------------------------------------------- + +CoolingDeviceTypeEnum ::= INTEGER { + coolingDeviceTypeIsOther(1), -- type is other than following values + coolingDeviceTypeIsUnknown(2), -- type is unknown + coolingDeviceTypeIsAFan(3), -- type is Fan + coolingDeviceTypeIsABlower(4), -- type is Centrifugal Blower + coolingDeviceTypeIsAChipFan(5), -- type is Fan on Integrated Circuit + coolingDeviceTypeIsACabinetFan(6), -- type is Cabinet Fan + coolingDeviceTypeIsAPowerSupplyFan(7), -- type is Power Supply Fan + coolingDeviceTypeIsAHeatPipe(8), -- type is Heat Pipe + coolingDeviceTypeIsRefrigeration(9), -- type is Integrated Refrigeration Unit + coolingDeviceTypeIsActiveCooling(10), -- type is Active Cooling Device + coolingDeviceTypeIsPassiveCooling(11) -- type is Passive Cooling Device +} + +CoolingDeviceSubTypeEnum ::= INTEGER { + coolingDeviceSubTypeIsOther(1), -- subtype is other than following values + coolingDeviceSubTypeIsUnknown(2), -- subtype is unknown + coolingDeviceSubTypeIsAFanThatReadsInRPM(3),-- subtype is Fan that reads RPM + coolingDeviceSubTypeIsAFanReadsONorOFF(4), -- subtype is Fan that reads Off or On + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM(5), -- subtype is Power Supply Fan that reads RPM + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF(6),-- subtype is Power Supply Fan that reads Off or On + coolingDeviceSubTypeIsDiscrete(16) -- subtype is cooling device with discrete reading +} + +CoolingDeviceDiscreteReadingEnum ::= INTEGER { + coolingDeviceIsGood(1), -- cooling device is Good + coolingDeviceIsBad(2) -- cooling device is Bad +} + +CoolingDeviceTableEntry ::= SEQUENCE { + coolingDevicechassisIndex ObjectRange, + coolingDeviceIndex ObjectRange, + coolingDeviceStateCapabilities StateCapabilitiesFlags, + coolingDeviceStateSettings StateSettingsFlags, + coolingDeviceStatus StatusProbeEnum, + coolingDeviceReading Signed32BitRange, + coolingDeviceType CoolingDeviceTypeEnum, + coolingDeviceLocationName String64, + coolingDeviceUpperNonRecoverableThreshold Signed32BitRange, + coolingDeviceUpperCriticalThreshold Signed32BitRange, + coolingDeviceUpperNonCriticalThreshold Signed32BitRange, + coolingDeviceLowerNonCriticalThreshold Signed32BitRange, + coolingDeviceLowerCriticalThreshold Signed32BitRange, + coolingDeviceLowerNonRecoverableThreshold Signed32BitRange, + coolingDevicecoolingUnitIndexReference ObjectRange, + coolingDeviceSubType CoolingDeviceSubTypeEnum, + coolingDeviceProbeCapabilities ProbeCapabilitiesFlags, + coolingDeviceDiscreteReading CoolingDeviceDiscreteReadingEnum, + coolingDeviceFQDD FQDDString +} + +coolingDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0700.0012 This object defines the Cooling Device Table." + ::= { thermalGroup 12 } + +coolingDeviceTableEntry OBJECT-TYPE + SYNTAX CoolingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0700.0012.0001 This object defines the Cooling Device Table Entry." + INDEX { coolingDevicechassisIndex, + coolingDeviceIndex } + ::= { coolingDeviceTable 1 } + +coolingDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { coolingDeviceTableEntry 1 } + +coolingDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0002 This attribute defines the index (one based) of the + cooling device." + ::= { coolingDeviceTableEntry 2 } + +coolingDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0003 This attribute defines the state capabilities of the + cooling device." + ::= { coolingDeviceTableEntry 3 } + +coolingDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0004 This attribute defines the state settings of the + cooling device." + ::= { coolingDeviceTableEntry 4 } + +coolingDeviceStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0005 This attribute defines the probe status of the + cooling device." + ::= { coolingDeviceTableEntry 5 } + +coolingDeviceReading OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0006 This attribute defines the reading for a cooling device + of subtype other than coolingDeviceSubTypeIsDiscrete. When the value + for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the + value returned for this attribute is the speed in RPM or the OFF/ON value + of the cooling device. When the value for coolingDeviceSubType is + coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute." + ::= { coolingDeviceTableEntry 6 } + +coolingDeviceType OBJECT-TYPE + SYNTAX CoolingDeviceTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0007 This attribute defines the type of the cooling device." + ::= { coolingDeviceTableEntry 7 } + +coolingDeviceLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0008 This attribute defines the location name of the + cooling device." + ::= { coolingDeviceTableEntry 8 } + +coolingDeviceUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0009 This attribute defines the upper nonrecoverable threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 9 } + +coolingDeviceUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0010 This attribute defines the upper critical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 10 } + +coolingDeviceUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0011 This attribute defines the upper noncritical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 11 } + +coolingDeviceLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0012 This attribute defines the lower noncritical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 12 } + +coolingDeviceLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0013 This attribute defines the lower critical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 13 } + +coolingDeviceLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0014 This attribute defines the lower nonrecoverable threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 14 } + +coolingDevicecoolingUnitIndexReference OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0015 This attribute defines the index to the associated + cooling unit." + ::= { coolingDeviceTableEntry 15 } + +coolingDeviceSubType OBJECT-TYPE + SYNTAX CoolingDeviceSubTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0016 This attribute defines the subtype of the cooling device." + ::= { coolingDeviceTableEntry 16 } + +coolingDeviceProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0017 This attribute defines the probe capabilities of the + cooling device." + ::= { coolingDeviceTableEntry 17 } + +coolingDeviceDiscreteReading OBJECT-TYPE + SYNTAX CoolingDeviceDiscreteReadingEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0018 This attribute defines the reading for a cooling device + of type coolingDeviceSubTypeIsDiscrete. When the value for + coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, a value + is not returned for this attribute. When the value for coolingDeviceSubType + is coolingDeviceSubTypeIsDiscrete, the value returned for this attribute + is the discrete reading for the cooling device." + ::= { coolingDeviceTableEntry 18 } + +coolingDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0012.0001.0019 Fully qualified device descriptor (FQDD) of the + cooling device." + ::= { coolingDeviceTableEntry 19 } + + +------------------------------------------------------------------------------- +-- Temperature Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.20.1... +------------------------------------------------------------------------------- + +TemperatureProbeTypeEnum ::= INTEGER { + temperatureProbeTypeIsOther(1), -- type is other than following values + temperatureProbeTypeIsUnknown(2), -- type is unknown + temperatureProbeTypeIsAmbientESM(3), -- type is Ambient Embedded Systems Management temperature probe + temperatureProbeTypeIsDiscrete(16) -- type is temperature probe with discrete reading +} + +TemperatureDiscreteReadingEnum ::= INTEGER { + temperatureIsGood(1), -- temperature reading is Good + temperatureIsBad(2) -- temperature reading is Bad +} + +TemperatureProbeTableEntry ::= SEQUENCE { + temperatureProbechassisIndex ObjectRange, + temperatureProbeIndex ObjectRange, + temperatureProbeStateCapabilities StateCapabilitiesFlags, + temperatureProbeStateSettings StateSettingsFlags, + temperatureProbeStatus StatusProbeEnum, + temperatureProbeReading Signed32BitRange, + temperatureProbeType TemperatureProbeTypeEnum, + temperatureProbeLocationName String64, + temperatureProbeUpperNonRecoverableThreshold Signed32BitRange, + temperatureProbeUpperCriticalThreshold Signed32BitRange, + temperatureProbeUpperNonCriticalThreshold Signed32BitRange, + temperatureProbeLowerNonCriticalThreshold Signed32BitRange, + temperatureProbeLowerCriticalThreshold Signed32BitRange, + temperatureProbeLowerNonRecoverableThreshold Signed32BitRange, + temperatureProbeProbeCapabilities ProbeCapabilitiesFlags, + temperatureProbeDiscreteReading TemperatureDiscreteReadingEnum +} + +temperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0700.0020 This object defines the Temperature Probe Table." + ::= { thermalGroup 20 } + +temperatureProbeTableEntry OBJECT-TYPE + SYNTAX TemperatureProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "0700.0020.0001 This object defines the Temperature Probe Table Entry." + INDEX { temperatureProbechassisIndex, + temperatureProbeIndex } + ::= { temperatureProbeTable 1 } + +temperatureProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { temperatureProbeTableEntry 1 } + +temperatureProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0002 This attribute defines the index (one based) of the + temperature probe." + ::= { temperatureProbeTableEntry 2 } + +temperatureProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0003 This attribute defines the state capabilities of the + temperature probe." + ::= { temperatureProbeTableEntry 3 } + +temperatureProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0004 This attribute defines the state settings of the + temperature probe." + ::= { temperatureProbeTableEntry 4 } + +temperatureProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0005 This attribute defines the probe status of the + temperature probe." + ::= { temperatureProbeTableEntry 5 } + +temperatureProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0006 This attribute defines the reading for a temperature + probe of type other than temperatureProbeTypeIsDiscrete. When the value + for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, + the value returned for this attribute is the temperature that the probe + is reading in tenths of degrees Centigrade. When the value for + temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not + returned for this attribute." + ::= { temperatureProbeTableEntry 6 } + +temperatureProbeType OBJECT-TYPE + SYNTAX TemperatureProbeTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0007 This attribute defines the type of the temperature probe." + ::= { temperatureProbeTableEntry 7 } + +temperatureProbeLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0008 This attribute defines the location name of the + temperature probe." + ::= { temperatureProbeTableEntry 8 } + +temperatureProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0009 This attribute defines the upper nonrecoverable threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 9 } + +temperatureProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0010 This attribute defines the upper critical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 10 } + +temperatureProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0011 This attribute defines the upper noncritical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 11 } + +temperatureProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0012 This attribute defines the lower noncritical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 12 } + +temperatureProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0013 This attribute defines the lower critical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 13 } + +temperatureProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0014 This attribute defines the lower nonrecoverable threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 14 } + +temperatureProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0015 This attribute defines the probe capabilities of the + temperature probe." + ::= { temperatureProbeTableEntry 15 } + +temperatureProbeDiscreteReading OBJECT-TYPE + SYNTAX TemperatureDiscreteReadingEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0700.0020.0001.0016 This attribute defines the reading for a temperature + probe of type temperatureProbeTypeIsDiscrete. When the value for + temperatureProbeType is other than temperatureProbeTypeIsDiscrete, a value + is not returned for this attribute. When the value for temperatureProbeType + is temperatureProbeTypeIsDiscrete, the value returned for this attribute + is the discrete reading for the probe." + ::= { temperatureProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Device Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Processor Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.30.1... +------------------------------------------------------------------------------- + +ProcessorDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsCPU(3), -- type is Central Processing Unit + deviceTypeIsMathProcessor(4), -- type is Math Processor + deviceTypeIsDSP(5), -- type is Digital Signal Processor + deviceTypeIsAVideoProcessor(6) -- type is Video Processor +} + +ProcessorDeviceFamily ::= INTEGER { + deviceFamilyIsOther(1), -- family is Other + deviceFamilyIsUnknown(2), -- family is Unknown + deviceFamilyIs8086(3), -- family is 8086 + deviceFamilyIs80286(4), -- family is 80286 + deviceFamilyIsIntel386(5), -- family is Intel386 processor + deviceFamilyIsIntel486(6), -- family is Intel486 processor + deviceFamilyIs8087(7), -- family is 8087 + deviceFamilyIs80287(8), -- family is 80287 + deviceFamilyIs80387(9), -- family is 80387 + deviceFamilyIs80487(10), -- family is 80487 + deviceFamilyIsPentium(11), -- family is Pentium processor Family + deviceFamilyIsPentiumPro(12), -- family is Pentium Pro processor + deviceFamilyIsPentiumII(13), -- family is Pentium II processor + deviceFamilyIsPentiumMMX(14), -- family is Pentium processor with MMX technology + deviceFamilyIsCeleron(15), -- family is Celeron processor + deviceFamilyIsPentiumIIXeon(16), -- family is Pentium II Xeon processor + deviceFamilyIsPentiumIII(17), -- family is Pentium III processor + deviceFamilyIsPentiumIIIXeon(18), -- family is Pentium III Xeon processor + deviceFamilyIsPentiumIIISpeedStep(19), -- family is Pentium III Processor with Intel SpeedStep Technology + deviceFamilyIsItanium(20), -- family is Itanium processor + deviceFamilyIsIntelXeon(21), -- family is Intel Xeon + deviceFamilyIsPentium4(22), -- family is Pentium 4 Processor + deviceFamilyIsIntelXeonMP(23), -- family is Intel Xeon processor MP + deviceFamilyIsIntelItanium2(24), -- family is Intel Itanium 2 processor + deviceFamilyIsK5(25), -- family is K5 Family + deviceFamilyIsK6(26), -- family is K6 Family + deviceFamilyIsK6Dash2(27), -- family is K6-2 + deviceFamilyIsK6Dash3(28), -- family is K6-3 + deviceFamilyIsAMDAthlon(29), -- family is AMD Athlon Processor Family + deviceFamilyIsAMD2900(30), -- family is AMD2900 Family + deviceFamilyIsK6Dash2Plus(31), -- family is K6-2+ + deviceFamilyIsPowerPC(32), -- family is Power PC Family + deviceFamilyIsPowerPC601(33), -- family is Power PC 601 + deviceFamilyIsPowerPC603(34), -- family is Power PC 603 + deviceFamilyIsPowerPC603Plus(35), -- family is Power PC 603+ + deviceFamilyIsPowerPC604(36), -- family is Power PC 604 + deviceFamilyIsPowerPC620(37), -- family is Power PC 620 + deviceFamilyIsPowerPCx704(38), -- family is Power PC x704 + deviceFamilyIsPowerPC750(39), -- family is Power PC 750 + deviceFamilyIsIntelCoreDuo(40), -- family is Intel(R) Core(TM) Duo processor + deviceFamilyIsIntelCoreDuoMobile(41), -- family is Intel(R) Core(TM) Duo mobile processor + deviceFamilyIsIntelCoreSoloMobile(42), -- family is Intel(R) Core(TM) Solo mobile processor + deviceFamilyIsIntelAtom(43), -- family is Intel(R) Atom(TM) processor + deviceFamilyIsAlpha(48), -- family is Alpha Family + deviceFamilyIsAlpha21064(49), -- family is Alpha 21064 + deviceFamilyIsAlpha21066(50), -- family is Alpha 21066 + deviceFamilyIsAlpha21164(51), -- family is Alpha 21164 + deviceFamilyIsAlpha21164PC(52), -- family is Alpha 21164PC + deviceFamilyIsAlpha21164a(53), -- family is Alpha 21164a + deviceFamilyIsAlpha21264(54), -- family is Alpha 21264 + deviceFamilyIsAlpha21364(55), -- family is Alpha 21364 + deviceFamilyIsAMDTurionIIUltraDualMobileM(56), -- family is AMD Turion(TM) II Ultra Dual-Core Mobile M Processor Family + deviceFamilyIsAMDTurionIIDualMobileM(57), -- family is AMD Turion(TM) II Dual-Core Mobile M Processor Family + deviceFamilyIsAMDAthlonIIDualMobileM(58), -- family is AMD Athlon(TM) II Dual-Core Mobile M Processor Family + deviceFamilyIsAMDOpteron6100(59), -- family is AMD Opteron(TM) 6100 Series Processor + deviceFamilyIsAMDOpteron4100(60), -- family is AMD Opteron(TM) 4100 Series Processor + deviceFamilyIsAMDOpteron6200(61), -- family is AMD Opteron(TM) 6200 Series Processor + deviceFamilyIsAMDOpteron4200(62), -- family is AMD Opteron(TM) 4200 Series Processor + deviceFamilyIsMIPS(64), -- family is MIPS Family + deviceFamilyIsMIPSR4000(65), -- family is MIPS R4000 + deviceFamilyIsMIPSR4200(66), -- family is MIPS R4200 + deviceFamilyIsMIPSR4400(67), -- family is MIPS R4400 + deviceFamilyIsMIPSR4600(68), -- family is MIPS R4600 + deviceFamilyIsMIPSR10000(69), -- family is MIPS R10000 + deviceFamilyIsSPARC(80), -- family is SPARC Family + deviceFamilyIsSuperSPARC(81), -- family is SuperSPARC + deviceFamilyIsmicroSPARCII(82), -- family is microSPARC II + deviceFamilyIsmicroSPARCIIep(83), -- family is microSPARC IIep + deviceFamilyIsUltraSPARC(84), -- family is UltraSPARC + deviceFamilyIsUltraSPARCII(85), -- family is UltraSPARC II + deviceFamilyIsUltraSPARCIIi(86), -- family is UltraSPARC IIi + deviceFamilyIsUltraSPARCIII(87), -- family is UltraSPARC III + deviceFamilyIsUltraSPARCIIIi(88), -- family is UltraSPARC IIIi + deviceFamilyIs68040(96), -- family is 68040 Family + deviceFamilyIs68xxx(97), -- family is 68xxx + deviceFamilyIs68000(98), -- family is 68000 + deviceFamilyIs68010(99), -- family is 68010 + deviceFamilyIs68020(100), -- family is 68020 + deviceFamilyIs68030(101), -- family is 68030 + deviceFamilyIsHobbit(112), -- family is Hobbit Family + deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family + deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family + deviceFamilyIsEfficeonTM8000(122), -- family is Efficeon TM8000 Family + deviceFamilyIsWeitek(128), -- family is Weitek + deviceFamilyIsIntelCeleronM(130), -- family is Intel(R) Celeron(R) M processor + deviceFamilyIsAMDAthlon64(131), -- family is AMD Athlon 64 Processor Family + deviceFamilyIsAMDOpteron(132), -- family is AMD Opteron Processor Family + deviceFamilyIsAMDSempron(133), -- family is AMD Sempron Processor Family + deviceFamilyIsAMDTurion64Mobile(134), -- family is AMD Turion 64 Mobile Technology + deviceFamilyIsDualCoreAMDOpteron(135), -- family is Dual-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDAthlon64X2DualCore(136), -- family is AMD Athlon 64 X2 Dual-Core Processor Family + deviceFamilyIsAMDTurion64X2Mobile(137), -- family is AMD Turion(TM) 64 X2 Mobile Technology + deviceFamilyIsQuadCoreAMDOpteron(138), -- family is Quad-Core AMD Opteron(TM) Processor Family + deviceFamilyIsThirdGenerationAMDOpteron(139), -- family is Third-Generation AMD Opteron(TM) Processor Family + deviceFamilyIsAMDPhenomFXQuadCore(140), -- family is AMD Phenom(TM) FX Quad-Core Processor Family + deviceFamilyIsAMDPhenomX4QuadCore(141), -- family is AMD Phenom(TM) X4 Quad-Core Processor Family + deviceFamilyIsAMDPhenomX2DualCore(142), -- family is AMD Phenom(TM) X2 Dual-Core Processor Family + deviceFamilyIsAMDAthlonX2DualCore(143), -- family is AMD Athlon(TM) X2 Dual-Core Processor Family + deviceFamilyIsPARISC(144), -- family is PA-RISC Family + deviceFamilyIsPARISC8500(145), -- family is PA-RISC 8500 + deviceFamilyIsPARISC8000(146), -- family is PA-RISC 8000 + deviceFamilyIsPARISC7300LC(147), -- family is PA-RISC 7300LC + deviceFamilyIsPARISC7200(148), -- family is PA-RISC 7200 + deviceFamilyIsPARISC7100LC(149), -- family is PA-RISC 7100LC + deviceFamilyIsPARISC7100(150), -- family is PA-RISC 7100 + deviceFamilyIsV30(160), -- family is V30 Family + deviceFamilyIsQuadCoreIntelXeon3200(161), -- family is Quad-Core Intel(R) Xeon(R) processor 3200 Series + deviceFamilyIsDualCoreIntelXeon3000(162), -- family is Dual-Core Intel(R) Xeon(R) processor 3000 Series + deviceFamilyIsQuadCoreIntelXeon5300(163), -- family is Quad-Core Intel(R) Xeon(R) processor 5300 Series + deviceFamilyIsDualCoreIntelXeon5100(164), -- family is Dual-Core Intel(R) Xeon(R) processor 5100 Series + deviceFamilyIsDualCoreIntelXeon5000(165), -- family is Dual-Core Intel(R) Xeon(R) processor 5000 Series + deviceFamilyIsDualCoreIntelXeonLV(166), -- family is Dual-Core Intel(R) Xeon(R) processor LV + deviceFamilyIsDualCoreIntelXeonULV(167), -- family is Dual-Core Intel(R) Xeon(R) processor ULV + deviceFamilyIsDualCoreIntelXeon7100(168), -- family is Dual-Core Intel(R) Xeon(R) processor 7100 Series + deviceFamilyIsQuadCoreIntelXeon5400(169), -- family is Quad-Core Intel(R) Xeon(R) processor 5400 Series + deviceFamilyIsQuadCoreIntelXeon(170), -- family is Quad-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon5200(171), -- family is Dual-Core Intel(R) Xeon(R) processor 5200 Series + deviceFamilyIsDualCoreIntelXeon7200(172), -- family is Dual-Core Intel(R) Xeon(R) processor 7200 Series + deviceFamilyIsQuadCoreIntelXeon7300(173), -- family is Quad-Core Intel(R) Xeon(R) processor 7300 Series + deviceFamilyIsQuadCoreIntelXeon7400(174), -- family is Quad-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsMultiCoreIntelXeon7400(175), -- family is Multi-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsM1(176), -- family is M1 Family + deviceFamilyIsM2(177), -- family is M2 Family + deviceFamilyIsIntelPentium4HT(179), -- family is Intel(R) Pentium(R) 4 HT processor + deviceFamilyIsAS400(180), -- family is AS400 Family + deviceFamilyIsAMDAthlonXP(182), -- family is AMD Athlon XP Processor Family + deviceFamilyIsAMDAthlonMP(183), -- family is AMD Athlon MP Processor Family + deviceFamilyIsAMDDuron(184), -- family is AMD Duron Processor Family + deviceFamilyIsIntelPentiumM(185), -- family is Intel Pentium M processor + deviceFamilyIsIntelCeleronD(186), -- family is Intel Celeron D processor + deviceFamilyIsIntelPentiumD(187), -- family is Intel Pentium D processor + deviceFamilyIsIntelPentiumExtreme(188), -- family is Intel Pentium Processor Extreme Edition + deviceFamilyIsIntelCoreSolo(189), -- family is Intel(R) Core(TM) Solo processor + deviceFamilyIsIntelCore2(190), -- family is Intel(R) Core(TM)2 processor + deviceFamilyIsIntelCore2Duo(191), -- family is Intel(R) Core(TM)2 Duo processor + deviceFamilyIsIntelCore2Solo(192), -- family is Intel(R) Core(TM)2 Solo processor + deviceFamilyIsIntelCore2Extreme(193), -- family is Intel(R) Core(TM)2 Extreme processor + deviceFamilyIsIntelCore2Quad(194), -- family is Intel(R) Core(TM)2 Quad processor + deviceFamilyIsIntelCore2ExtremeMobile(195), -- family is Intel(R) Core(TM)2 Extreme mobile processor + deviceFamilyIsIntelCore2DuoMobile(196), -- family is Intel(R) Core(TM)2 Duo mobile processor + deviceFamilyIsIntelCore2SoloMobile(197), -- family is Intel(R) Core(TM)2 Solo mobile processor + deviceFamilyIsIntelCorei7(198), -- family is Intel(R) Core(TM) i7 processor + deviceFamilyIsDualCoreIntelCeleron(199), -- family is Dual-Core Intel(R) Celeron(R) Processor + deviceFamilyIsIBM390(200), -- family is IBM390 Family + deviceFamilyIsG4(201), -- family is G4 + deviceFamilyIsG5(202), -- family is G5 + deviceFamilyIsESA390G6(203), -- family is ESA/390 G6 + deviceFamilyIszArchitectur(204), -- family is z/Architectur base + deviceFamilyIsIntelCorei5(205), -- family is Intel(R) Core(TM) i5 processor + deviceFamilyIsIntelCorei3(206), -- family is Intel(R) Core(TM) i3 processor + deviceFamilyIsVIAC7M(210), -- family is VIA C7(TM)-M Processor Family + deviceFamilyIsVIAC7D(211), -- family is VIA C7(TM)-D Processor Family + deviceFamilyIsVIAC7(212), -- family is VIA C7(TM) Processor Family + deviceFamilyIsVIAEden(213), -- family is VIA Eden(TM) Processor Family + deviceFamilyIsMultiCoreIntelXeon(214), -- family is Multi-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon3xxx(215), -- family is Dual-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsQuadCoreIntelXeon3xxx(216), -- family is Quad-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsVIANano(217), -- family is VIA Nano(TM) Processor Family + deviceFamilyIsDualCoreIntelXeon5xxx(218), -- family is Dual-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsQuadCoreIntelXeon5xxx(219), -- family is Quad-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsDualCoreIntelXeon7xxx(221), -- family is Dual-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsQuadCoreIntelXeon7xxx(222), -- family is Quad-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon7xxx(223), -- family is Multi-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon3400(224), -- family is Multi-Core Intel(R) Xeon(R) processor 3400 Series + deviceFamilyIsEmbeddedAMDOpertonQuadCore(230), -- family is Embedded AMD Opteron(TM) Quad-Core Processor Family + deviceFamilyIsAMDPhenomTripleCore(231), -- family is AMD Phenom(TM) Triple-Core Processor Family + deviceFamilyIsAMDTurionUltraDualCoreMobile(232), -- family is AMD Turion(TM) Ultra Dual-Core Mobile Processor Family + deviceFamilyIsAMDTurionDualCoreMobile(233), -- family is AMD Turion(TM) Dual-Core Mobile Processor Family + deviceFamilyIsAMDAthlonDualCore(234), -- family is AMD Athlon(TM) Dual-Core Processor Family + deviceFamilyIsAMDSempronSI(235), -- family is AMD Sempron(TM) SI Processor Family + deviceFamilyIsAMDPhenomII(236), -- family is AMD Phenom(TM) II Processor Family + deviceFamilyIsAMDAthlonII(237), -- family is AMD Athlon(TM) II Processor Family + deviceFamilyIsSixCoreAMDOpteron(238), -- family is Six-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDSempronM(239), -- family is AMD Sempron(TM) M Processor Family + deviceFamilyIsi860(250), -- family is i860 + deviceFamilyIsi960(251) -- family is i960 +} + +ProcessorDeviceStatusState ::= INTEGER { + other(1), -- state is other than following values + unknown(2), -- state is unknown + enabled(3), -- state is enabled + userDisabled(4), -- state is disabled by user via BIOS setup + biosDisabled(5), -- state is disabled by BIOS (POST error) + idle(6) -- state is idle +} + +ProcessorDeviceTableEntry ::= SEQUENCE { + processorDevicechassisIndex ObjectRange, + processorDeviceIndex ObjectRange, + processorDeviceStateCapabilities StateCapabilitiesFlags, + processorDeviceStateSettings StateSettingsFlags, + processorDeviceStatus ObjectStatusEnum, + processorDeviceType ProcessorDeviceType, + processorDeviceManufacturerName String64, + processorDeviceStatusState ProcessorDeviceStatusState, + processorDeviceFamily ProcessorDeviceFamily, + processorDeviceMaximumSpeed Unsigned32BitRange, + processorDeviceCurrentSpeed Unsigned32BitRange, + processorDeviceExternalClockSpeed Unsigned32BitRange, + processorDeviceVoltage Signed32BitRange, + processorDeviceVersionName String64, + processorDeviceCoreCount Unsigned32BitRange, + processorDeviceCoreEnabledCount Unsigned32BitRange, + processorDeviceThreadCount Unsigned32BitRange, + processorDeviceCharacteristics Unsigned16BitRange, + processorDeviceExtendedCapabilities Unsigned16BitRange, + processorDeviceExtendedSettings Unsigned16BitRange, + processorDeviceBrandName String64, + processorDeviceFQDD FQDDString +} + +processorDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0030 This object defines the Processor Device Table." + ::= { deviceGroup 30 } + +processorDeviceTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0030.0001 This object defines the Processor Device Table Entry." + INDEX { processorDevicechassisIndex, + processorDeviceIndex } + ::= { processorDeviceTable 1 } + +processorDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { processorDeviceTableEntry 1 } + +processorDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0002 This attribute defines the index (one based) of the + processor device." + ::= { processorDeviceTableEntry 2 } + +processorDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0003 This attribute defines the state capabilities of the + processor device." + ::= { processorDeviceTableEntry 3 } + +processorDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0004 This attribute defines the state settings of the + processor device." + ::= { processorDeviceTableEntry 4 } + +processorDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0005 This attribute defines the status of the + processor device." + ::= { processorDeviceTableEntry 5 } + +processorDeviceType OBJECT-TYPE + SYNTAX ProcessorDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0007 This attribute defines the type of the processor device." + ::= { processorDeviceTableEntry 7 } + +processorDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0008 This attribute defines the name of the manufacturer + of the processor device." + ::= { processorDeviceTableEntry 8 } + +processorDeviceStatusState OBJECT-TYPE + SYNTAX ProcessorDeviceStatusState + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0009 This attribute defines the status state of the + processor device." + ::= { processorDeviceTableEntry 9 } + +processorDeviceFamily OBJECT-TYPE + SYNTAX ProcessorDeviceFamily + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0010 This attribute defines the family of the + processor device." + ::= { processorDeviceTableEntry 10 } + +processorDeviceMaximumSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0011 This attribute defines the maximum speed of the + processor device in MHz. Zero indicates the maximum speed is unknown." + ::= { processorDeviceTableEntry 11 } + +processorDeviceCurrentSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0012 This attribute defines the current speed of the + processor device in MHz. Zero indicates the current speed is unknown." + ::= { processorDeviceTableEntry 12 } + +processorDeviceExternalClockSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0013 This attribute defines the speed of the + external clock for the processor device in MHz. Zero indicates + the external clock speed is unknown." + ::= { processorDeviceTableEntry 13 } + +processorDeviceVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0014 This attribute defines the voltage powering the + processor device in millivolts. Zero indicates the voltage is unknown." + ::= { processorDeviceTableEntry 14 } + +processorDeviceVersionName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0016 This attribute defines the version of the + processor device. On some systems, this value contains the + brand and stepping information; on other systems, this value + contains the model and stepping information." + ::= { processorDeviceTableEntry 16 } + +processorDeviceCoreCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0017 This attribute defines the number of processor cores + detected for the processor device." + ::= { processorDeviceTableEntry 17 } + +processorDeviceCoreEnabledCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0018 This attribute defines the number of processor cores + enabled for the processor device." + ::= { processorDeviceTableEntry 18 } + +processorDeviceThreadCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0019 This attribute defines the number of processor threads + detected for the processor device." + ::= { processorDeviceTableEntry 19 } + +processorDeviceCharacteristics OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0020 This attribute defines characteristics of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + NOTE: Bits 2-15 need to be examined in the context of bit 1. + If bit 1 is set, the processor charactistics are unknown and bits 2-15 cannot + be used to determine if the functions associated with the bits are supported. + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Reserved + Bit 1 Unknown + Bit 2 64-bit capable + Bit 3-15 Reserved" + ::= { processorDeviceTableEntry 20 } + +processorDeviceExtendedCapabilities OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0021 This attribute defines extended capabilities of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) supported + Bit 2 eXecute Disable (XD) supported + Bit 3 Hyper-Threading (HT) supported + Bit 4 Turbo Mode supported" + ::= { processorDeviceTableEntry 21 } + +processorDeviceExtendedSettings OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0022 This attribute defines extended settings of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) enabled + Bit 2 eXecute Disable (XD) enabled + Bit 3 Hyper-Threading (HT) enabled + Bit 4 Turbo Mode enabled" + ::= { processorDeviceTableEntry 22 } + +processorDeviceBrandName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0023 This attribute defines the brand of the + processor device." + ::= { processorDeviceTableEntry 23 } + +processorDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0030.0001.0026 Fully qualified device descriptor (FQDD) of the + processor device." + ::= { processorDeviceTableEntry 26 } + + +------------------------------------------------------------------------------- +-- Processor Device Status Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.32.1... +------------------------------------------------------------------------------- + +ProcessorDeviceStatusReadingFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + internalError(1), -- Internal Error + thermalTrip(2), -- Thermal Trip + configurationError(32), -- Configuration Error + processorPresent(128), -- Processor Present + processorDisabled(256), -- Processor Disabled + terminatorPresent(512), -- Terminator Present + processorThrottled(1024) -- Processor Throttled +} + +ProcessorDeviceStatusTableEntry ::= SEQUENCE { + processorDeviceStatusChassisIndex ObjectRange, + processorDeviceStatusIndex ObjectRange, + processorDeviceStatusStateCapabilities StateCapabilitiesFlags, + processorDeviceStatusStateSettings StateSettingsFlags, + processorDeviceStatusStatus ObjectStatusEnum, + processorDeviceStatusReading ProcessorDeviceStatusReadingFlags, + processorDeviceStatusLocationName String64 +} + +processorDeviceStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceStatusTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0032 This object defines the Processor Device Status Table." + ::= { deviceGroup 32 } + +processorDeviceStatusTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceStatusTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0032.0001 This object defines the Processor Device Status Table Entry." + INDEX { processorDeviceStatusChassisIndex, + processorDeviceStatusIndex } + ::= { processorDeviceStatusTable 1 } + +processorDeviceStatusChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0032.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { processorDeviceStatusTableEntry 1 } + +processorDeviceStatusIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0032.0001.0002 This attribute defines the index (one based) of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 2 } + +processorDeviceStatusStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0032.0001.0003 This attribute defines the state capabilities of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 3 } + +processorDeviceStatusStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0032.0001.0004 This attribute defines the state settings of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 4 } + +processorDeviceStatusStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0032.0001.0005 This attribute defines the status of the + processor device status probe. This status will be joined into + the processorDeviceStatus attribute." + ::= { processorDeviceStatusTableEntry 5 } + +processorDeviceStatusReading OBJECT-TYPE + SYNTAX ProcessorDeviceStatusReadingFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0032.0001.0006 This attribute defines the reading of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 6 } + +processorDeviceStatusLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0032.0001.0007 This attribute defines the location name of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Memory Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.50.1... +------------------------------------------------------------------------------- + +MemoryDeviceTypeEnum ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsDRAM(3), -- type is DRAM + deviceTypeIsEDRAM(4), -- type is EDRAM + deviceTypeIsVRAM(5), -- type is VRAM + deviceTypeIsSRAM(6), -- type is SRAM + deviceTypeIsRAM(7), -- type is RAM + deviceTypeIsROM(8), -- type is ROM + deviceTypeIsFLASH(9), -- type is FLASH + deviceTypeIsEEPROM(10), -- type is EEPROM + deviceTypeIsFEPROM(11), -- type is FEPROM + deviceTypeIsEPROM(12), -- type is EPROM + deviceTypeIsCDRAM(13), -- type is CDRAM + deviceTypeIs3DRAM(14), -- type is 3DRAM + deviceTypeIsSDRAM(15), -- type is SDRAM + deviceTypeIsSGRAM(16), -- type is SGRAM + deviceTypeIsRDRAM(17), -- type is RDRAM + deviceTypeIsDDR(18), -- type is DDR + deviceTypeIsDDR2(19), -- type is DDR2 + deviceTypeIsDDR2FBDIMM(20), -- type is DDR2 FB-DIMM + deviceTypeIsDDR3(24), -- type is DDR3 + deviceTypeIsFBD2(25), -- type is FBD2 + deviceTypeIsDDR4(26) -- type is DDR4 +} + +MemoryDeviceTableEntry ::= SEQUENCE { + memoryDevicechassisIndex ObjectRange, + memoryDeviceIndex ObjectRange, + memoryDeviceStateCapabilities StateCapabilitiesFlags, + memoryDeviceStateSettings StateSettingsFlags, + memoryDeviceStatus ObjectStatusEnum, + memoryDeviceType MemoryDeviceTypeEnum, + memoryDeviceLocationName String64, + memoryDeviceBankLocationName String64, + memoryDeviceSize Unsigned32BitRange, + memoryDeviceSpeed Unsigned32BitRange, + memoryDeviceManufacturerName String64, + memoryDevicePartNumberName String64, + memoryDeviceSerialNumberName String64, + memoryDeviceFQDD FQDDString, + memoryDeviceCurrentOperatingSpeed Unsigned32BitRange +} + +memoryDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0050 This object defines the Memory Device Table." + ::= { deviceGroup 50 } + +memoryDeviceTableEntry OBJECT-TYPE + SYNTAX MemoryDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0050.0001 This object defines the Memory Device Table Entry." + INDEX { memoryDevicechassisIndex, + memoryDeviceIndex } + ::= { memoryDeviceTable 1 } + +memoryDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { memoryDeviceTableEntry 1 } + +memoryDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0002 This attribute defines the index (one based) of the + memory device." + ::= { memoryDeviceTableEntry 2 } + +memoryDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0003 This attribute defines the state capabilities of the + memory device." + ::= { memoryDeviceTableEntry 3 } + +memoryDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0004 This attribute defines the state settings of the + memory device." + ::= { memoryDeviceTableEntry 4 } + +memoryDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0005 This attribute defines the status of the memory device." + ::= { memoryDeviceTableEntry 5 } + +memoryDeviceType OBJECT-TYPE + SYNTAX MemoryDeviceTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0007 This attribute defines the type of the memory device." + ::= { memoryDeviceTableEntry 7 } + +memoryDeviceLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0008 This attribute defines the location of the memory device." + ::= { memoryDeviceTableEntry 8 } + +memoryDeviceBankLocationName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0010 This attribute defines the location of the bank for the + memory device." + ::= { memoryDeviceTableEntry 10 } + +memoryDeviceSize OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0014 This attribute defines the size in KBytes of the + memory device. Zero indicates no memory installed; 2,147,483,647 indicates + an unknown memory size." + ::= { memoryDeviceTableEntry 14 } + +memoryDeviceSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0015 This attribute defines the maximum capable speed + in megahertz (MHz) of the memory device. Zero indicates an unknown speed." + ::= { memoryDeviceTableEntry 15 } + +memoryDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0021 This attribute defines the manufacturer of the + memory device." + ::= { memoryDeviceTableEntry 21 } + +memoryDevicePartNumberName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0022 This attribute defines the manufacturer's part number + for the memory device." + ::= { memoryDeviceTableEntry 22 } + +memoryDeviceSerialNumberName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0023 This attribute defines the serial number of the + memory device." + ::= { memoryDeviceTableEntry 23 } + +memoryDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0026 Fully qualified device descriptor (FQDD) of the + memory device." + ::= { memoryDeviceTableEntry 26 } + +memoryDeviceCurrentOperatingSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0050.0001.0027 This attribute defines the current operating speed + in megahertz (MHz) of the memory device. Zero indicates an unknown speed." + ::= { memoryDeviceTableEntry 27 } + + +------------------------------------------------------------------------------- +-- PCI Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.80.1... +------------------------------------------------------------------------------- + +PCIDeviceTableEntry ::= SEQUENCE { + pCIDevicechassisIndex ObjectRange, + pCIDeviceIndex ObjectRange, + pCIDeviceStateCapabilities StateCapabilitiesFlags, + pCIDeviceStateSettings StateSettingsFlags, + pCIDeviceStatus ObjectStatusEnum, + pCIDeviceDataBusWidth Unsigned32BitRange, + pCIDeviceManufacturerName String64, + pCIDeviceDescriptionName String64, + pCIDeviceFQDD FQDDString +} + +pCIDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PCIDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0080 This object defines the PCI Device Table." + ::= { deviceGroup 80 } + +pCIDeviceTableEntry OBJECT-TYPE + SYNTAX PCIDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0080.0001 This object defines the PCI Device Table Entry." + INDEX { pCIDevicechassisIndex, + pCIDeviceIndex } + ::= { pCIDeviceTable 1 } + +pCIDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { pCIDeviceTableEntry 1 } + +pCIDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0002 This attribute defines the index (one based) of the + PCI device." + ::= { pCIDeviceTableEntry 2 } + +pCIDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0003 This attribute defines the state capabilities of the + PCI device." + ::= { pCIDeviceTableEntry 3 } + +pCIDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0004 This attribute defines the state settings of the + PCI device." + ::= { pCIDeviceTableEntry 4 } + +pCIDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0005 This attribute defines the status of the PCI device." + ::= { pCIDeviceTableEntry 5 } + +pCIDeviceDataBusWidth OBJECT-TYPE + SYNTAX Unsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0007 This attribute defines the width of the data bus + of the PCI device. This attribute contains an enumeration value. + The possible values and their meanings are defined below. + + Value Meaning + ---------- -------------- + 0x00000001 Other + 0x00000002 Unknown + 0x00000003 8 bit + 0x00000004 16 bit + 0x00000005 32 bit + 0x00000006 64 bit + 0x00000007 128 bit + 0x00000008 1x or x1 + 0x00000009 2x or x2 + 0x0000000A 4x or x4 + 0x0000000B 8x or x8 + 0x0000000C 12x or x12 + 0x0000000D 16x or x16 + 0x0000000E 32x or x32" + ::= { pCIDeviceTableEntry 7 } + +pCIDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0008 This attribute defines the name of the manufacturer + of the PCI device." + ::= { pCIDeviceTableEntry 8 } + +pCIDeviceDescriptionName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0009 This attribute defines the description of the PCI device." + ::= { pCIDeviceTableEntry 9 } + +pCIDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0080.0001.0012 Fully qualified device descriptor (FQDD) of the + PCI device." + ::= { pCIDeviceTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Network Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.90.1... +------------------------------------------------------------------------------- + +NetworkDeviceConnectionStatusEnum ::= INTEGER { + -- unknown(0), - unable to determine connection status + connected(1), -- media reports connected + disconnected(2), -- media reports disconnected + driverBad(3), -- driver cannot be opened to determine status + driverDisabled(4), -- driver is disabled + hardwareInitalizing(10), -- hardware is initializing + hardwareResetting(11), -- hardware is resetting + hardwareClosing(12), -- hardware is closing down + hardwareNotReady(13) -- hardware is not ready +} + +NetworkDeviceTOECapabilityFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for TOE capability is not supported + unknown(1), -- querying for TOE capability is supported but query returned an error + available(2), -- device has TOE capability + notAvailable(4), -- device does not have TOE capability + cannotBeDetermined(8), -- querying for TOE capability is supported but an error prevented querying + driverNotResponding(16) -- querying for TOE capability is supported but driver did not respond to query +} + +NetworkDeviceiSCSICapabilityFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for iSCSI capability is not supported + unknown(1), -- querying for iSCSI capability is supported but query returned an error + available(2), -- device has iSCSI capability + notAvailable(4), -- device does not have iSCSI capability + cannotBeDetermined(8), -- querying for iSCSI capability is supported but an error prevented querying + driverNotResponding(16) -- querying for iSCSI capability is supported but driver did not respond to query +} + +NetworkDeviceCapabilitiesFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- notSupported(0), - device does not support reporting capabilities via this attribute + supported(1), -- device supports reporting capabilities via this attribute + toe(2), -- device has TOE capability + iscsiOffload(4), -- device has iSCSI Offload capability + fcoeOffload(8) -- device has FCoE Offload capability +} + +NetworkDeviceTableEntry ::= SEQUENCE { + networkDeviceChassisIndex ObjectRange, + networkDeviceIndex ObjectRange, + networkDeviceStatus ObjectStatusEnum, + networkDeviceConnectionStatus NetworkDeviceConnectionStatusEnum, + networkDeviceProductName String64, + networkDeviceVendorName String64, + networkDeviceCurrentMACAddress MACAddress, + networkDevicePermanentMACAddress MACAddress, + networkDevicePCIBusNumber Unsigned8BitRange, + networkDevicePCIDeviceNumber Unsigned8BitRange, + networkDevicePCIFunctionNumber Unsigned8BitRange, + networkDeviceTOECapabilityFlags NetworkDeviceTOECapabilityFlags, + networkDeviceiSCSICapabilityFlags NetworkDeviceiSCSICapabilityFlags, + networkDeviceiSCSIEnabled BooleanType, + networkDeviceCapabilities NetworkDeviceCapabilitiesFlags, + networkDeviceFQDD FQDDString +} + +networkDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetworkDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0090 This object defines the Network Device Table." + ::= { deviceGroup 90 } + +networkDeviceTableEntry OBJECT-TYPE + SYNTAX NetworkDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1100.0090.0001 This object defines the Network Device Table Entry." + INDEX { networkDeviceChassisIndex, + networkDeviceIndex } + ::= { networkDeviceTable 1 } + +networkDeviceChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0001 This attribute defines the index (one based) of the + system chassis that contains the network device." + ::= { networkDeviceTableEntry 1 } + +networkDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0002 This attribute defines the index (one based) of the + network device." + ::= { networkDeviceTableEntry 2 } + +networkDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0003 This attribute defines the status of the network device." + ::= { networkDeviceTableEntry 3 } + +networkDeviceConnectionStatus OBJECT-TYPE + SYNTAX NetworkDeviceConnectionStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0004 This attribute defines the connection status of the + network device." + ::= { networkDeviceTableEntry 4 } + +networkDeviceProductName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0006 This attribute defines the product name of the + network device." + ::= { networkDeviceTableEntry 6 } + +networkDeviceVendorName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0007 This attribute defines the name of the vendor of the + network device." + ::= { networkDeviceTableEntry 7 } + +networkDeviceCurrentMACAddress OBJECT-TYPE + SYNTAX MACAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0015 This attribute defines the current MAC address of the + network device." + ::= { networkDeviceTableEntry 15 } + +networkDevicePermanentMACAddress OBJECT-TYPE + SYNTAX MACAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0016 This attribute defines the permanent MAC address of the + network device." + ::= { networkDeviceTableEntry 16 } + +networkDevicePCIBusNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0017 This attribute defines the PCI bus number of the + network device." + ::= { networkDeviceTableEntry 17 } + +networkDevicePCIDeviceNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0018 This attribute defines the PCI device number of the + network device." + ::= { networkDeviceTableEntry 18 } + +networkDevicePCIFunctionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0019 This attribute defines the PCI function number of the + network device." + ::= { networkDeviceTableEntry 19 } + +networkDeviceTOECapabilityFlags OBJECT-TYPE + SYNTAX NetworkDeviceTOECapabilityFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0023 This attribute defines the TCP/IP Offload Engine (TOE) + capability flags of the network device." + ::= { networkDeviceTableEntry 23 } + +networkDeviceiSCSICapabilityFlags OBJECT-TYPE + SYNTAX NetworkDeviceiSCSICapabilityFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0027 This attribute defines the Internet Small Computer + System Interface (iSCSI) capability flags of the network device." + ::= { networkDeviceTableEntry 27 } + +networkDeviceiSCSIEnabled OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0028 This attribute defines if iSCSI is enabled for the + network device." + ::= { networkDeviceTableEntry 28 } + +networkDeviceCapabilities OBJECT-TYPE + SYNTAX NetworkDeviceCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0029 This attribute defines the capabilities of the network device. + If this value is notSupported(0), the networkDeviceTOECapabilityFlags, + networkDeviceiSCSICapabilityFlags and networkDeviceiSCSIEnabled attributes should + be used to determine the network device capabilities. If the supported(1) bit + is on, this attribute should be used to determine the network device capabilities, + and the attributes mentioned above should not be used. NOTE: For a network device + on Converged Network Adapter (CNA), this attribute provides capability information + for the CNA and not for the network device. For more information read vendor + documentation." + ::= { networkDeviceTableEntry 29 } + +networkDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1100.0090.0001.0030 Fully qualified device descriptor (FQDD) of the + network device." + ::= { networkDeviceTableEntry 30 } + + +------------------------------------------------------------------------------- +-- Slot Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1200 +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +-- System Slot Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1200.10.1... +------------------------------------------------------------------------------- + +SystemSlotStateCapabilitiesFlags ::= INTEGER { + systemSlotHotPlugIsUnknown(1), -- state capabilities are unknown + systemSlotHotPlugIsHotPluggableCapable(2), -- slot can support Hot Plug + systemSlotHotPlugCanBePoweredOn(4), -- slot power (and corresponding LED) can be powered on + systemSlotHotPlugCanSignalAttention(8), -- slot attention state (and corresponding LED) can be set + systemSlotHotPlugCanSignalPowerFault(16), -- slot power on fault (and corresponding LED) can be detected due to a short or overcurrent + systemSlotHotPlugCanSignalAdapterPresent(32), -- slot adapter (card) present in slot (may not be powered) can be detected + systemSlotHotPlugCanSignalPowerButtonPressed(64), -- slot power button can be pressed to signal a toggle of the power state + canSupportAllHotPlugCapabilities(126), -- slot can support all Hot Plug capabilities + systemSlotCanProvide5Volts(128), -- slot can provide 5 volt supply + systemSlotCanProvide3Point3Volts(256), -- slot can provide 3.3 volt supply + systemSlotCanSignalIfShared(512), -- slot opening if shared with another slot can be detected + systemSlotCanSupportCard16(1024), -- slot can support PC Card-16 + systemSlotCanSupportCardBus(2048), -- slot can support CardBus + systemSlotCanSupportZoomVideo(4096), -- slot can support Zoom Video + systemSlotCanSupportModemRingResume(8192), -- slot can support Modem Ring Resume + systemSlotCanSupportPMESignal(16384), -- slot can support Power Management Enable (PME#) signal + canSupportAllSlotCapabilities(32640), -- slot can support all Slot capabilities + canSupportAllSlotAndAllHotPlugCapabilities(32766) -- slot can support all Slot and all Hot Plug capabilities +} + +SystemSlotStateSettingsFlags ::= INTEGER { + systemSlotHotPlugIsUnknown(1), -- state settings are unknown + systemSlotHotPlugIsHotPluggable(2), -- slot supports Hot Plug + systemSlotHotPlugIsPoweredOn(4), -- slot has power (and corresponding LED) ON + systemSlotHotPlugIsAtAttention(8), -- slot is at attention state (and corresponding LED) is ON + systemSlotHotPlugHasPowerFaulted(16), -- slot has power on fault (and corresponding LED) was detected due to a short or overcurrent + systemSlotHotPlugAdapterIsPresent(32), -- slot adapter (card) present in slot (may not be powered on) + systemSlotHotPlugAdapterPresentAndPoweredOn(36), -- slot adapter (card) present in slot and powered on + systemSlotHotPlugPowerButtonPressed(64), -- slot power button pressed to signal toggle of power state + systemSlotProvides5Volts(128), -- slot provides 5 volt supply + systemSlotProvides3Point3Volts(256), -- slot provides 3.3 volt supply + systemSlotIsShared(512), -- slot opening is shared with another slot (e.g. PCI/EISA shared slot) + systemSlotSupportsCard16(1024), -- slot supports PC Card-16 + systemSlotSupportsCardBus(2048), -- slot supports CardBus + systemSlotSupportsZoomVideo(4096), -- slot supports Zoom Video + systemSlotSupportsModemRingResume(8192), -- slot supports Modem Ring Resume + systemSlotSupportsPMESignal(16384), -- slot supports Power Management Enable (PME#) signal + supportsPMEand3P3Vand5VandHotPluggable(16770), + supportsPMEand3P3Vand5VhasAdapterOn(16804), + supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable(16806), + supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable(17316) +} + +SystemSlotTypeEnum ::= INTEGER { + systemSlotIsOther(1), -- type is Other + systemSlotIsUnknown(2), -- type is Unknown + systemSlotIsISA(3), -- type is ISA + systemSlotIsMCA(4), -- type is MCA + systemSlotIsEISA(5), -- type is EISA + systemSlotIsPCI(6), -- type is PCI + systemSlotIsPCMCIA(7), -- type is PCMCIA + systemSlotIsVLVESA(8), -- type is VL-VESA + systemSlotIsProprietary(9), -- type is Proprietary + systemSlotIsProcessorCard(10), -- type is Processor Card Slot + systemSlotIsProprietaryMemory(11), -- type is Proprietary Memory Card Slot + systemSlotIsIORiserCard(12), -- type is I/O Riser Card Slot + systemSlotIsNuBUS(13), -- type is NuBus + systemSlotIsPCI66MHz(14), -- type is PCI - 66MHz Capable + systemSlotIsAGP(15), -- type is AGP + systemSlotIsAGP2X(16), -- type is AGP 2X + systemSlotIsAGP4X(17), -- type is AGP 4X + systemSlotIsPC98C20(18), -- type is PC-98/C20 + systemSlotIsPC98C24(19), -- type is PC-98/C24 + systemSlotIsPC98E(20), -- type is PC-98/E + systemSlotIsPC98LocalBus(21), -- type is PC-98/Local Bus + systemSlotIsPC98Card(22), -- type is PC-98/Card + systemSlotIsPCIX(23), -- type is PCI-X + systemSlotIsPCIExpress(24), -- type is PCI Express + systemSlotIsAGP8X(25), -- type is AGP 8X + systemSlotIsPCIExpressX1(166), -- type is PCI Express x1 + systemSlotIsPCIExpressX2(167), -- type is PCI Express x2 + systemSlotIsPCIExpressX4(168), -- type is PCI Express x4 + systemSlotIsPCIExpressX8(169), -- type is PCI Express x8 + systemSlotIsPCIExpressX16(170), -- type is PCI Express x16 + systemSlotIsPCIExpressGen2(171), -- type is PCI Express Gen 2 + systemSlotIsPCIExpressGen2X1(172), -- type is PCI Express Gen 2 x1 + systemSlotIsPCIExpressGen2X2(173), -- type is PCI Express Gen 2 x2 + systemSlotIsPCIExpressGen2X4(174), -- type is PCI Express Gen 2 x4 + systemSlotIsPCIExpressGen2X8(175), -- type is PCI Express Gen 2 x8 + systemSlotIsPCIExpressGen2X16(176) -- type is PCI Express Gen 2 x16 +} + +SystemSlotUsageEnum ::= INTEGER { + systemSlotUsageIsOther(1), -- usage is other than following values + systemSlotUsageIsUnknown(2), -- usage is unknown + systemSlotUsageIsAvailable(3), -- usage is available + systemSlotUsageIsInUse(4) -- usage is in use +} + +SystemSlotCategoryEnum ::= INTEGER { + systemSlotCategoryIsOther(1), -- category is other than following values + systemSlotCategoryIsUnknown(2), -- category is unknown + systemSlotCategoryIsBusConnector(3), -- category is Bus Connector + systemSlotCategoryIsPCMCIA(4), -- category is PCMCIA + systemSlotCategoryIsMotherboard(5) -- category is Motherboard +} + +SystemSlotTableEntry ::= SEQUENCE { + systemSlotchassisIndex ObjectRange, + systemSlotIndex ObjectRange, + systemSlotStateCapabilitiesUnique SystemSlotStateCapabilitiesFlags, + systemSlotStateSettingsUnique SystemSlotStateSettingsFlags, + systemSlotStatus ObjectStatusEnum, + systemSlotCurrentUsage SystemSlotUsageEnum, + systemSlotType SystemSlotTypeEnum, + systemSlotSlotExternalSlotName String64, + systemSlotCategory SystemSlotCategoryEnum +} + +systemSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemSlotTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1200.0010 This object defines the System Slot Table." + ::= { slotGroup 10 } + +systemSlotTableEntry OBJECT-TYPE + SYNTAX SystemSlotTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "1200.0010.0001 This object defines the System Slot Table Entry." + INDEX { systemSlotchassisIndex, + systemSlotIndex } + ::= { systemSlotTable 1 } + +systemSlotchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { systemSlotTableEntry 1 } + +systemSlotIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0002 This attribute defines the index (one based) of the + system slot." + ::= { systemSlotTableEntry 2 } + +systemSlotStateCapabilitiesUnique OBJECT-TYPE + SYNTAX SystemSlotStateCapabilitiesFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0003 This attribute defines the state capabilities of the + system slot." + ::= { systemSlotTableEntry 3 } + +systemSlotStateSettingsUnique OBJECT-TYPE + SYNTAX SystemSlotStateSettingsFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0004 This attribute defines the state settings of the + system slot." + ::= { systemSlotTableEntry 4 } + +systemSlotStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0005 This attribute defines the status of the system slot." + ::= { systemSlotTableEntry 5 } + +systemSlotCurrentUsage OBJECT-TYPE + SYNTAX SystemSlotUsageEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0006 This attribute defines the current usage of the + system slot." + ::= { systemSlotTableEntry 6 } + +systemSlotType OBJECT-TYPE + SYNTAX SystemSlotTypeEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0007 This attribute defines the type of the system slot." + ::= { systemSlotTableEntry 7 } + +systemSlotSlotExternalSlotName OBJECT-TYPE + SYNTAX String64 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0008 This attribute defines the name of the external + connector name of the system slot." + ::= { systemSlotTableEntry 8 } + +systemSlotCategory OBJECT-TYPE + SYNTAX SystemSlotCategoryEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1200.0010.0001.0011 This attribute defines the category of the system slot." + ::= { systemSlotTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Field Replaceable Unit (FRU) Group +-- +-- OID: 1.3.6.1.4.1.674.10892.5.4.2000 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Field Replaceable Unit (FRU) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.2000.10.1... +------------------------------------------------------------------------------- + +FruTableEntry ::= SEQUENCE { + fruChassisIndex ObjectRange, + fruIndex ObjectRange, + fruInformationStatus ObjectStatusEnum, + fruManufacturerName DisplayString, + fruSerialNumberName DisplayString, + fruPartNumberName DisplayString, + fruRevisionName DisplayString, + fruFQDD FQDDString +} + +fruTable OBJECT-TYPE + SYNTAX SEQUENCE OF FruTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "2000.0010 This object defines the Field Replaceable Unit table." + ::= { fruGroup 10 } + +fruTableEntry OBJECT-TYPE + SYNTAX FruTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "2000.0010.0001 This object defines the Field Replaceable Unit table entry." + INDEX { fruChassisIndex, + fruIndex } + ::= { fruTable 1 } + +fruChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "2000.0010.0001.0001 This attribute defines the index (one based) of the + system chassis containing the field replaceable unit." + ::= { fruTableEntry 1 } + +fruIndex OBJECT-TYPE + SYNTAX ObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION + "2000.0010.0001.0002 This attribute defines the index (one based) of the + field replaceable unit." + ::= { fruTableEntry 2 } + +fruInformationStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "2000.0010.0001.0003 This attribute defines the status of the + field replaceable unit information." + ::= { fruTableEntry 3 } + +fruManufacturerName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "2000.0010.0001.0006 This attribute defines the manufacturer of the + field replaceable unit." + ::= { fruTableEntry 6 } + +fruSerialNumberName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "2000.0010.0001.0007 This attribute defines the serial number of the + field replaceable unit." + ::= { fruTableEntry 7 } + +fruPartNumberName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "2000.0010.0001.0008 This attribute defines the part number of the + field replaceable unit." + ::= { fruTableEntry 8 } + +fruRevisionName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "2000.0010.0001.0009 This attribute defines the revision of the + field replaceable unit." + ::= { fruTableEntry 9 } + +fruFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "2000.0010.0001.0012 Fully qualified device descriptor (FQDD) of the + field replaceable unit." + ::= { fruTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Storage Details Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Battery Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.. +------------------------------------------------------------------------------- + +BatteryTableEntry ::=SEQUENCE { + batteryNumber INTEGER, + batteryState INTEGER, + batteryComponentStatus ObjectStatusEnum, + batteryPredictedCapacity INTEGER, + batteryFQDD DisplayString, + batteryDisplayName DisplayString +} + +batteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed batteries. The number of + entries is related to number of Batteries + discovered in the system. The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 15 } + +batteryTableEntry OBJECT-TYPE + SYNTAX BatteryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the battery table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { batteryNumber } + ::= { batteryTable 1 } + +batteryNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this battery entry. + " + ::= { batteryTableEntry 1 } + +batteryState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + degraded(4), + missing(5), + charging(6), + belowThreshold(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current state of battery. + Possible values: + 1: The current state could not be determined. + 2: The battery is operating normally. + 3: The battery has failed and needs to be replaced. + 4: The battery temperature is high or charge level is depleting. + 5: The battery is missing or not detected. + 6: The battery is undergoing the re-charge phase. + 7: The battery voltage or charge level is below the threshold. + " + ::= { batteryTableEntry 4 } + +batteryComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the battery itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { batteryTableEntry 6 } + +batteryPredictedCapacity OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + failed(2), + ready(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Use the batteryComponentStatus or + batteryState instead. + " + ::= { batteryTableEntry 10 } + +batteryFQDD OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The battery's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { batteryTableEntry 20 } + +batteryDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The battery's friendly FQDD as represented in Storage Management." + ::= { batteryTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Controller Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.. +------------------------------------------------------------------------------- + +ControllerTableEntry ::=SEQUENCE { + controllerNumber INTEGER, + controllerName DisplayString, + controllerRebuildRate INTEGER, + controllerFWVersion DisplayString, + controllerCacheSizeInMB INTEGER, + controllerRollUpStatus ObjectStatusEnum, + controllerComponentStatus ObjectStatusEnum, + controllerDriverVersion DisplayString, + controllerPCISlot DisplayString, + controllerReconstructRate INTEGER, + controllerPatrolReadRate INTEGER, + controllerBGIRate INTEGER, + controllerCheckConsistencyRate INTEGER, + controllerPatrolReadMode INTEGER, + controllerPatrolReadState INTEGER, + controllerPersistentHotSpare BooleanType, + controllerSpinDownUnconfiguredDrives BooleanType, + controllerSpinDownHotSpareDrives BooleanType, + controllerSpinDownTimeInterval INTEGER, + controllerPreservedCache BooleanType, + controllerCheckConsistencyMode INTEGER, + controllerCopyBackMode INTEGER, + controllerSecurityStatus INTEGER, + controllerEncryptionKeyPresent BooleanType, + controllerEncryptionCapability INTEGER, + controllerLoadBalanceSetting INTEGER, + controllerMaxCapSpeed INTEGER, + controllerSASAddress DisplayString, + controllerFQDD FQDDString, + controllerDisplayName DisplayString, + controllerT10PICapability INTEGER, + controllerRAID10UnevenSpansSupported BooleanType, + controllerEnhancedAutoImportForeignConfigMode INTEGER, + controllerBootModeSupported BooleanType, + controllerBootMode INTEGER +} + +controllerTable OBJECT-TYPE + SYNTAX SEQUENCE OF ControllerTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed RAID controllers. The number of entries + is related to number of RAID controllers discovered in the + system. The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 1 } + +controllerTableEntry OBJECT-TYPE + SYNTAX ControllerTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the table of RAID controllers. A row in this table + cannot be created or deleted by SNMP operations on columns of + the table." + INDEX { controllerNumber } + ::= { controllerTable 1 } + +controllerNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this controller entry." + ::= { controllerTableEntry 1 } + + +controllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's name as represented in Storage Management. + " + ::= { controllerTableEntry 2 } + +controllerRebuildRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rebuild rate is the percentage of the controller's + resources dedicated to rebuilding a failed disk when a rebuild + is necessary. + " + ::= { controllerTableEntry 7 } + +controllerFWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current firmware version. + " + ::= { controllerTableEntry 8 } + +controllerCacheSizeInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current amount of cache memory in megabytes. + " + ::= { controllerTableEntry 9 } + +controllerRollUpStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the controller state. + This is the combined status of the controller and its components. + Possible values: + 1: Other. + 2: Unknown. + 3: OK + 4: Non-critical + 5: Critical. + 6: Non-recoverable. + " + ::= { controllerTableEntry 37 } + +controllerComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the controller itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { controllerTableEntry 38 } + +controllerDriverVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Currently installed driver version for this controller on the host. + " + ::= { controllerTableEntry 41 } + +controllerPCISlot OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI slot on the server where the controller is seated. This + data is not reported for embedded or integrated controllers, + " + ::= { controllerTableEntry 42 } + +controllerReconstructRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The reconstruct rate is the percentage of the controller's resources + dedicated to reconstructing a disk group after adding a physical disk + or changing the RAID level of a virtual disk residing on the disk + group. + " + ::= { controllerTableEntry 48 } + +controllerPatrolReadRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The patrol read rate is the percentage of the controller's + resources dedicated to perform a patrol read on disks participating + in a virtual disk or hot spares. + " + ::= { controllerTableEntry 49 } + +controllerBGIRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The background initialization (BGI) rate is the percentage of the + controller's resources dedicated to performing the background + initialization of a redundant virtual disk after it is created. + " + ::= { controllerTableEntry 50 } + +controllerCheckConsistencyRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The check consistency rate is the percentage of the + controller's resources dedicated to performing a check consistency + on a redundant virtual disk. + " + ::= { controllerTableEntry 51 } + +controllerPatrolReadMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notSupported(2), + disabled(3), + auto(4), + manual(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies the patrol read mode setting for the controller. + Possible values: + 1: Not one of the following or could not be determined. + 2: Not Supported on this controller. + 3: Disabled. + 4: Automatic. + 5: Manual. + " + ::= { controllerTableEntry 52 } + +controllerPatrolReadState OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + stopped(2), + active(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This property displays the current state of the patrol read process. + Possible values: + 1: Not one of the following or could not be determined. + 2: Patrol read is not running. + 3: Patrol read is running. + " + ::= { controllerTableEntry 53 } + +controllerPersistentHotSpare OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether hot spare drives would be restored on insertion + into the same slot. + " + ::= { controllerTableEntry 59 } + +controllerSpinDownUnconfiguredDrives OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether un-configured drives would be put in power + save mode by the controller. + " + ::= { controllerTableEntry 60 } + +controllerSpinDownHotSpareDrives OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether hot spare drives would be put in power + save mode by the controller. + " + ::= { controllerTableEntry 61 } + +controllerSpinDownTimeInterval OBJECT-TYPE + SYNTAX INTEGER (30..1440) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The duration in minutes after which, the unconfigured or hot + spare drives will be spun down to power save mode. + " + ::= { controllerTableEntry 62 } + +controllerPreservedCache OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether preserved cache or pinned cache is + present on the controller. + " + ::= { controllerTableEntry 69 } + +controllerCheckConsistencyMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + normal(3), + stopOnError(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current check consistency mode setting + for the controller. + Possible values: + 1: Not one of the following. + 2: Not supported on this controller. + 3: Normal check consistency operation. + 4: Check consistency operation will stop on encountering + an error. + " + ::= { controllerTableEntry 70 } + +controllerCopyBackMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + on(3), + onWithSmart(4), + off(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current copy back mode setting + for the controller. + Possible values: + 1: Not one of the following. + 2: Not supported on this controller. + 3: Disks assigned as spares could revert back to spare status. + 4: Data from physical disk participating in a + virtual disk could be automatically copied to the assigned + hot spare in case former has a predictive failure event. + 5: Copyback mode is disabled. + " + ::= { controllerTableEntry 71 } + +controllerSecurityStatus OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + none(2), + lkm(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current security/encryption status.. + Possible values: + 1: The current status could not be determined. + 2: Controller is not operating in an encryption mode. + 3: Controller is operating in the Local Key Management + (LKM) encryption mode. + " + ::= { controllerTableEntry 72 } + +controllerEncryptionKeyPresent OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether encryption key is assigned for the controller. + " + ::= { controllerTableEntry 73 } + +controllerEncryptionCapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + none(2), + lkm(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of encryption supported by the controller. + Possible values: + 1: Not one of the following. + 2: No encryption supported, + 3: Local Key Management, + " + ::= { controllerTableEntry 74 } + +controllerLoadBalanceSetting OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + auto(3), + none(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ability of the controller to automatically use both + controller ports (or connectors) connected to the same enclosure in + order to route I/O requests. + Possible values: + 1: Not one of the following. + 2: Not supported. + 3: Automatic load balancing is active. + 4: Load balancing is inactive. + " + ::= { controllerTableEntry 75 } + +controllerMaxCapSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum speed of the controller.in + Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + " + ::= { controllerTableEntry 76 } + +controllerSASAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SAS address of the controller. + " + ::= { controllerTableEntry 77 } + +controllerFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { controllerTableEntry 78 } + +controllerDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's friendly FQDD as represented in Storage + Management." + ::= { controllerTableEntry 79 } + +controllerT10PICapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + capable(2), + notCapable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the controller supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Capable of supporting T10 PI. + 3: Not capable of supporting T10 PI. + " + ::= { controllerTableEntry 80 } + +controllerRAID10UnevenSpansSupported OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether uneven spans for RAID 10 virtual disk + is supported on the controller. + " + ::= { controllerTableEntry 81 } + +controllerEnhancedAutoImportForeignConfigMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notSupported(2), + disabled(3), + enabled(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the status of enhanced auto-import of foreign + configuration property of the controller. + 1: Not one of the following. + 2: Not Supported. + 3: Disabled. + 4: Enabled. + " + ::= { controllerTableEntry 82 } + +controllerBootModeSupported OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether headless boot mode settings are supported + on the controller. + " + ::= { controllerTableEntry 83 } + +controllerBootMode OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + user(2), + contOnError(3), + headlessContOnError(4), + headlessSafe(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the boot mode of the controller. + Possible values: + 1: Not applicable for this controller. + 2: User mode: User interaction required for all boot messages (not + applicable for uEFI environments). + 3: Continue Boot On Error. User interaction only required for + critical messages. + 4: Headless Mode Continue On Error. User interaction is not required. + Controller boot may halt on Error. + 5: Headless Safe Mode. Controller shall boot to safe mode on critical + errors. + " + ::= { controllerTableEntry 84 } + + +------------------------------------------------------------------------------- +-- Physical Disk Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.. +------------------------------------------------------------------------------- + +PhysicalDiskTableEntry ::=SEQUENCE { + physicalDiskNumber INTEGER, + physicalDiskName DisplayString, + physicalDiskManufacturer DisplayString, + physicalDiskState INTEGER, + physicalDiskProductID DisplayString, + physicalDiskSerialNo DisplayString, + physicalDiskRevision DisplayString, + physicalDiskCapacityInMB INTEGER, + physicalDiskUsedSpaceInMB INTEGER, + physicalDiskFreeSpaceInMB INTEGER, + physicalDiskBusType INTEGER, + physicalDiskSpareState INTEGER, + physicalDiskComponentStatus ObjectStatusEnum, + physicalDiskPartNumber DisplayString, + physicalDiskSASAddress DisplayString, + physicalDiskNegotiatedSpeed INTEGER, + physicalDiskCapableSpeed INTEGER, + physicalDiskSmartAlertIndication BooleanType, + physicalDiskManufactureDay DisplayString, + physicalDiskManufactureWeek DisplayString, + physicalDiskManufactureYear DisplayString, + physicalDiskMediaType INTEGER, + physicalDiskPowerState INTEGER, + physicalDiskRemainingRatedWriteEndurance INTEGER, + physicalDiskOperationalState INTEGER, + physicalDiskProgress INTEGER, + physicalDiskSecurityStatus INTEGER, + physicalDiskFormFactor INTEGER, + physicalDiskFQDD FQDDString, + physicalDiskDisplayName DisplayString, + physicalDiskT10PICapability INTEGER, + physicalDiskBlockSizeInBytes INTEGER, + physicalDiskProtocolVersion DisplayString, + physicalDiskPCIeNegotiatedLinkWidth INTEGER, + physicalDiskPCIeCapableLinkWidth INTEGER + } + +physicalDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalDiskTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed physical disks. The number of entries is + related to number of physical Disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to + all entries. + " + ::= { physicalDevices 4 } + +physicalDiskTableEntry OBJECT-TYPE + SYNTAX PhysicalDiskTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the physical Disk table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { physicalDiskNumber } + ::= { physicalDiskTable 1 } + +physicalDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this physical disk entry. + " + ::= { physicalDiskTableEntry 1 } + +physicalDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical disk's name as represented in Storage Management. + " + ::= { physicalDiskTableEntry 2 } + +physicalDiskManufacturer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the physical disk's manufacturer. + " + ::= { physicalDiskTableEntry 3 } + +physicalDiskState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + online(3), + foreign(4), + offline(5), + blocked(6), + failed(7), + nonraid(8), + removed(9), + readonly(10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of this physical disk. + Possible states: + 1: The current state could not be determined. + 2: The physical disk is available for use, but no RAID configuration + has been assigned. + 3: A RAID configuration has been assigned to the physical disk. + 4: The physical disk has been moved from another + controller and contains all or some portion of a virtual disk. + 5: The physical disk is not available to the RAID + controller. + 6: The physical disk is currently blocked by + controller. + 7: The physical disk is not operational. + 8: The physical disk is not a RAID capable disk + 9: The physical disk has been removed. + 10:The physical disk media has been placed in read only mode. + " + ::= { physicalDiskTableEntry 4 } + +physicalDiskProductID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The model number of the physical disk. + " + ::= { physicalDiskTableEntry 6 } + +physicalDiskSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical disk's unique identification number + from the manufacturer. + " + ::= { physicalDiskTableEntry 7 } + +physicalDiskRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The firmware version of the physical disk. + " + ::= { physicalDiskTableEntry 8 } + +physicalDiskCapacityInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the physical disk in megabytes. + " + ::= { physicalDiskTableEntry 11 } + +physicalDiskUsedSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of used space in megabytes on the physical + disk. This is not applicable for NVMe devices. + " + ::= { physicalDiskTableEntry 17 } + +physicalDiskFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of free space in megabytes on the physical + disk. This is not applicable for NVMe devices. + " + ::= { physicalDiskTableEntry 19 } + +physicalDiskBusType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + scsi(2), + sas(3), + sata(4), + fibre(5), + pcie(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bus type of the physical disk. + Possible values: + 1: The bus type could not be determined. + 2: Small Computer System Interface (SCSI). + 3: Serial Attached SCSI (SAS). + 4: Serial Advanced Technology Attachment (SATA). + 5: Fibre channel. + 6: PCIe. + " + ::= { physicalDiskTableEntry 21 } + +physicalDiskSpareState OBJECT-TYPE + SYNTAX INTEGER + { + notASpare(1), + dedicatedHotSpare(2), + globalHotSpare(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the disk as a spare. + Possible values: + 1: Physical disk is not a spare. + 2: Physical disk is a dedicated hot spare. + 3: Physical disk is a global hot spare. + " + ::= { physicalDiskTableEntry 22 } + +physicalDiskComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the physical disk itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable + " + ::= { physicalDiskTableEntry 24 } + +physicalDiskPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the disk. + " + ::= { physicalDiskTableEntry 27 } + +physicalDiskSASAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SAS address of the physical disk. + " + ::= { physicalDiskTableEntry 28 } + +physicalDiskNegotiatedSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5), + fiveGTps(6), + eightGTps(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The data transfer speed that the disk negotiated while spinning up + in Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + 6: 5 GT/s (applicable for NVMe devices). + 7: 8 GT/s (applicable for NVMe devices). + " + ::= { physicalDiskTableEntry 29 } + +physicalDiskCapableSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5), + fiveGTps(6), + eightGTps(7) + + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum data transfer speed supported by the disk + in Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + 6: 5 GT/s (applicable for NVMe devices). + 7: 8 GT/s (applicable for NVMe devices). + " + ::= { physicalDiskTableEntry 30 } + +physicalDiskSmartAlertIndication OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the physical disk has received a predictive + failure alert. + " + ::= { physicalDiskTableEntry 31 } + +physicalDiskManufactureDay OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The day of the week (1=Sunday thru 7=Saturday) + on which the physical disk was manufactured. + " + ::= { physicalDiskTableEntry 32 } + +physicalDiskManufactureWeek OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The week (1 thru 53) in which the physical disk + was manufactured. + " + ::= { physicalDiskTableEntry 33 } + +physicalDiskManufactureYear OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The four digit year in which the physical disk was manufactured. + " + ::= { physicalDiskTableEntry 34 } + +physicalDiskMediaType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + hdd(2), + ssd(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The media type of the physical disk. + Possible Values: + 1: The media type could not be determined. + 2: Hard Disk Drive (HDD). + 3: Solid State Device (SSD). + " + ::= { physicalDiskTableEntry 35 } + +physicalDiskPowerState OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + spunUp(2), + spunDown(3), + transition(4), + on(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power state of the physical disk. + Possible Values: + 1: Not one of the following. + 2: The physical disk is in the spun up state. + 3: The physical disk is in the spun down state. + 4: The physical disk is changing from spun down state + to spun up state or vice versa. + 5: The Solid State Device (SSD) is powered on. + " + ::= { physicalDiskTableEntry 42 } + +physicalDiskRemainingRatedWriteEndurance OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This property is applicable to SSD media type only. This indicates + the wear-out percentage of the SSD. Typically it is a value between + 0 to 100. However, if the value is not available or not applicable + (in the case of HDD media type) the value will be 255. + " + ::= { physicalDiskTableEntry 49 } + +physicalDiskOperationalState OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + rebuild(2), + clear(3), + copyback(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the physical disk when there are progressive + operations ongoing. + Possible values: + 1: There is no active operation running. + 2: Data from a redundant virtual disk is + currently being rebuilt onto the physical disk. + 3: Data on the disk is being erased. + 4: Data is being copied from a hot spare disk to + the physical disk or vice versa. + " + ::= { physicalDiskTableEntry 50 } + +physicalDiskProgress OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The progress percentage of the operation that is being + performed on the physical disk. This is applicable + only if there is a progressive operations ongoing + " + ::= { physicalDiskTableEntry 51 } + +physicalDiskSecurityStatus OBJECT-TYPE + SYNTAX INTEGER + { + supported(1), + notSupported(2), + secured(3), + locked(4), + foreign(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The security/encryption status of the physical disk. + Possible Values: + 1: The physical disk supports encryption. + 2: The physical disk does not support encryption + 3: The physical disk is encrypted. + 4: The physical disk is locked by a key. + 5: The physical disk is locked by a foreign key. + " + ::= { physicalDiskTableEntry 52 } + +physicalDiskFormFactor OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotEight(2), + twoDotFive(3), + threeDotFive(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The form factor of the physical disk. + Possible values: + 1: The form factor could not be determined. + 2: 1.8 inch. + 3: 2.5 inch. + 4: 3.5 inch. + " + ::= { physicalDiskTableEntry 53 } + +physicalDiskFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical disk's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { physicalDiskTableEntry 54 } + +physicalDiskDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical disk's friendly FQDD as represented in Storage + Management. + " + ::= { physicalDiskTableEntry 55 } + +physicalDiskT10PICapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + capable(2), + notCapable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the physical disk supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Capable of supporting T10 PI. + 3: Not capable of supporting T10 PI. + " + ::= { physicalDiskTableEntry 57 } + +physicalDiskBlockSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The block size (in bytes) of the physical disk. This is not + applicable for NVMe devices. + Possible values: + 1: 512. + 2: 4096 + " + ::= { physicalDiskTableEntry 58 } + +physicalDiskProtocolVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Applicable for NVMe devices only. The NVMe protocol version supported + by the device. + " + ::= { physicalDiskTableEntry 59 } + +physicalDiskPCIeNegotiatedLinkWidth OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + byOne(3), + byTwp(4), + byFour(5), + byEight(6), + bySixteen(7), + byThirtyTwp(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Applicable for NVMe devices only. The PCIe link width negotiated with the host + during device initialization. + " + ::= { physicalDiskTableEntry 60 } + +physicalDiskPCIeCapableLinkWidth OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + byOne(3), + byTwp(4), + byFour(5), + byEight(6), + bySixteen(7), + byThirtyTwp(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Applicable for NVMe devices only. The PCIe link widths the device is capable of + supporting. + " + ::= { physicalDiskTableEntry 61 } + + +------------------------------------------------------------------------------- +-- Virtual Disk Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.. +------------------------------------------------------------------------------- + +VirtualDiskTableEntry ::=SEQUENCE { + virtualDiskNumber INTEGER, + virtualDiskName DisplayString, + virtualDiskState INTEGER, + virtualDiskSizeInMB INTEGER, + virtualDiskWritePolicy INTEGER, + virtualDiskReadPolicy INTEGER, + virtualDiskLayout INTEGER, + virtualDiskStripeSize INTEGER, + virtualDiskComponentStatus ObjectStatusEnum, + virtualDiskBadBlocksDetected BooleanType, + virtualDiskSecured BooleanType, + virtualDiskIsCacheCade BooleanType, + virtualDiskDiskCachePolicy INTEGER, + virtualDiskOperationalState INTEGER, + virtualDiskProgress INTEGER, + virtualDiskAvailableProtocols DisplayString, + virtualDiskMediaType DisplayString, + virtualDiskRemainingRedundancy INTEGER, + virtualDiskFQDD FQDDString, + virtualDiskDisplayName DisplayString, + virtualDiskT10PIStatus INTEGER, + virtualDiskBlockSizeInBytes INTEGER +} + +virtualDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF VirtualDiskTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed virtual disks. The number of entries is related + to number of virtual disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { logicalDevices 1 } + +virtualDiskTableEntry OBJECT-TYPE + SYNTAX VirtualDiskTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the virtual disk table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { virtualDiskNumber } + ::= { virtualDiskTable 1 } + +virtualDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..100000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this virtual disk entry. + " + ::= { virtualDiskTableEntry 1 } + +virtualDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The virtual disk's label as entered by the user. + " + ::= { virtualDiskTableEntry 2 } + +virtualDiskState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + online(2), + failed(3), + degraded(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of this virtual disk + (which includes any member physical disks.) + Possible states: + 1: The current state could not be determined. + 2: The virtual disk is operating normally or optimally. + 3: The virtual disk has encountered a failure. The data on disk + is lost or is about to be lost. + 4: The virtual disk encounterd a failure with one or all of the + constituent redundant physical disks. The data on the virtual + disk might no longer be fault tolerant. + " + ::= { virtualDiskTableEntry 4 } + +virtualDiskSizeInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the virtual disk in megabytes. + " + ::= { virtualDiskTableEntry 6 } + +virtualDiskWritePolicy OBJECT-TYPE + SYNTAX INTEGER + { + writeThrough(1), + writeBack(2), + writeBackForce(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The write policy used by the controller for write operations on + this virtual disk. + Possible values: + 1: Write Through. + 2: Write Back. + 3: Force Write Back. + " + ::= { virtualDiskTableEntry 10 } + +virtualDiskReadPolicy OBJECT-TYPE + SYNTAX INTEGER + { + noReadAhead(1), + readAhead(2), + adaptiveReadAhead(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The read policy used by the controller for read operations on + this virtual disk. + Possible values: + 1: No Read Ahead. + 2: Read Ahead. + 3: Adaptive Read Ahead. + " + ::= { virtualDiskTableEntry 11 } + +virtualDiskLayout OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + r0(2), + r1(3), + r5(4), + r6(5), + r10(6), + r50(7), + r60(8), + concatRaid1(9), + concatRaid5(10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The virtual disk's RAID type. + Possible values: + 1: Not one of the following + 2: RAID-0 + 3: RAID-1 + 4: RAID-5 + 5: RAID-6 + 6: RAID-10 + 7: RAID-50 + 8: RAID-60 + 9: Concatenated RAID 1 + 10: Concatenated RAID 5 + " + ::= { virtualDiskTableEntry 13 } + +virtualDiskStripeSize OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + default(2), + fiveHundredAndTwelvebytes(3), + oneKilobytes(4), + twoKilobytes(5), + fourKilobytes(6), + eightKilobytes(7), + sixteenKilobytes(8), + thirtyTwoKilobytes(9), + sixtyFourKilobytes(10), + oneTwentyEightKilobytes(11), + twoFiftySixKilobytes(12), + fiveOneTwoKilobytes(13), + oneMegabye(14), + twoMegabytes(15), + fourMegabytes(16), + eightMegabytes(17), + sixteenMegabytes(18) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The stripe size of this virtual disk. + Possible values: + 1: Not one of the following + 2: Default. + 3: 512 bytes + 4: 1 kB, + 5: 2 kB, + 6: 4 kB, + 7: 8 kB, + 8: 16 kB, + 9: 32 kB, + 10: 64 kB, + 11: 128 kB, + 12: 256 kB, + 13: 512 kB, + 14: 1 MB, + 15: 2 MB, + 16: 4 MB, + 17: 8 MB, + 18: 16 MB + " + ::= { virtualDiskTableEntry 14 } + +virtualDiskComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the virtual disk itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { virtualDiskTableEntry 20 } + +virtualDiskBadBlocksDetected OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the virtual disk has bad blocks. + " + ::= { virtualDiskTableEntry 23 } + +virtualDiskSecured OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the virtual disk is secured or not. + " + ::= { virtualDiskTableEntry 24 } + +virtualDiskIsCacheCade OBJECT-TYPE + SYNTAX BooleanType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the virtual disk is being used as a secondary + cache by the controller. + " + ::= { virtualDiskTableEntry 25 } + +virtualDiskDiskCachePolicy OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + defullt(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The cache policy of the physical disks that are + part of this virtual disk + Possible values: + 1: Enabled. + 2: Disabled. + 3: Default. + " + ::= { virtualDiskTableEntry 26 } + +virtualDiskOperationalState OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + reconstructing(2), + resynching(3), + initializing(4), + backgroundInit(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the virtual disk when there are progressive + operations ongoing. + Possible values: + 1: There is no active operation running. + 2: The virtual disk configuration has changed. + The physical disks included in the virtual disk are being + modified to support the new configuration. + 3: A Consistency Check (CC) is being performed + on the virtual disk. + 4: The virtual disk is being initialized. + 5: BackGround Initialization (BGI) is being performed + on the virtual disk. + " + ::= { virtualDiskTableEntry 30 } + +virtualDiskProgress OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The progress percentage of the operation that is being + performed on the virtual disk. This is applicable + only if there is a progressive operations ongoing + " + ::= { virtualDiskTableEntry 31 } + +virtualDiskAvailableProtocols OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "List of protocols support by physical disks part of this virtual + disk. For e.g. SAS for Serial Attached SCSI or SATA for + Serial Advanced Technology Attachment. + " + ::= { virtualDiskTableEntry 32 } + +virtualDiskMediaType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "List of media types of the physical disks part of this virtual + disk. For e.g. HDD for Hard Disk Drive or SSD for Solid State Device. + " + ::= { virtualDiskTableEntry 33 } + +virtualDiskRemainingRedundancy OBJECT-TYPE + SYNTAX INTEGER (0..2) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of physical disks which can be lost before the + virtual disk loses its redundancy. + " + ::= { virtualDiskTableEntry 34 } + +virtualDiskFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The virtual disk's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { virtualDiskTableEntry 35 } + +virtualDiskDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The virtual disk's friendly FQDD as represented in Storage + Management. + " + ::= { virtualDiskTableEntry 36 } + +virtualDiskT10PIStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + enabled(2), + disabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the virtual disk supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Enabled. + 3: Disabled. + " + ::= { virtualDiskTableEntry 37 } + +virtualDiskBlockSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The block size (in bytes) of the physical disk part of the virtual disk. + Possible values: + 1: 512. + 2: 4096 + " + ::= { virtualDiskTableEntry 38 } + + +------------------------------------------------------------------------------- +-- Enclosure Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.. +------------------------------------------------------------------------------- + +EnclosureTableEntry ::=SEQUENCE { + enclosureNumber INTEGER, + enclosureName DisplayString, + enclosureState INTEGER, + enclosureServiceTag DisplayString, + enclosureAssetTag DisplayString, + enclosureConnectedPort DisplayString, + enclosureRollUpStatus ObjectStatusEnum, + enclosureComponentStatus ObjectStatusEnum, + enclosureFirmwareVersion DisplayString, + enclosureSASAddress DisplayString, + enclosureDriveCount INTEGER, + enclosureTotalSlots INTEGER, + enclosureFanCount DisplayString, + enclosurePSUCount DisplayString, + enclosureEMMCount DisplayString, + enclosureTempProbeCount DisplayString, + enclosureRedundantPath DisplayString, + enclosurePosition DisplayString, + enclosureBackplaneBayID DisplayString, + enclosureFQDD FQDDString, + enclosureDisplayName DisplayString, + enclosureType INTEGER +} + +enclosureTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed enclosures/backplanes. The number of entries is + related to number of internal backplane(s) discovered in the system + and external storage enclosure(s) attached to the system.. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 3 } + +enclosureTableEntry OBJECT-TYPE + SYNTAX EnclosureTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the enclosure table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureNumber } + ::= { enclosureTable 1 } + +enclosureNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this enclossre/backplane. + " + ::= { enclosureTableEntry 1 } + +enclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure/backplane's name as represented in Storage Management. + " + ::= { enclosureTableEntry 2 } + +enclosureState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of this enclosure/backplane. + Possible states: + 1: The current state could not be determined. + 2: The enclosure is operating normally. + 3: The enclosure has encountered a hardware problem or is not + responding. + 4: The enclosure is no longer connected to the controller or + there exists a problem communicating to the enclosure. + 5: The enclosure is unstable. + " + ::= { enclosureTableEntry 4 } + +enclosureServiceTag OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Enclosure identification used when consulting customer support. + " + ::= { enclosureTableEntry 8 } + +enclosureAssetTag OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The asset tag information for the enclosure." + ::= { enclosureTableEntry 9 } + +enclosureConnectedPort OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port on the controller to which the + storage enclosure is connected. + " + ::= { enclosureTableEntry 19 } + +enclosureRollUpStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the enclosure/backplane state. + This is the combined status of the enclosure and its sub-components. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical. + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTableEntry 23 } + +enclosureComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the enclosure/backplane.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTableEntry 24 } + +enclosureFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The firmware information for the enclosure/backplane. + " + ::= { enclosureTableEntry 26 } + +enclosureSASAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SAS address of the enclosure/backplane. + " + ::= { enclosureTableEntry 30 } + +enclosureDriveCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of disks present in the enclosure/backplane. + " + ::= { enclosureTableEntry 31 } + +enclosureTotalSlots OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total physical drive slots in a storage enclosure + or server backplane. + " + ::= { enclosureTableEntry 32 } + +enclosureFanCount OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of fans present in the storage enclosure. + " + ::= { enclosureTableEntry 40 } + +enclosurePSUCount OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Power Supply Units (PSU) present + in the storage enclosure. + " + ::= { enclosureTableEntry 41 } + +enclosureEMMCount OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Enclosure Management Modules (EMM) + present in the storage enclosure. + " + ::= { enclosureTableEntry 42 } + +enclosureTempProbeCount OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of temperature sensing devices + present in the storage enclosure. + " + ::= { enclosureTableEntry 43 } + +enclosureRedundantPath OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the controller has multiply paths to + reach the storage enclosure. + " + ::= { enclosureTableEntry 44 } + +enclosurePosition OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The possition of the storage enclosure within a daisy chain. + " + ::= { enclosureTableEntry 45 } + +enclosureBackplaneBayID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unique bay ID of the backplane. + " + ::= { enclosureTableEntry 46 } + +enclosureFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure/backplane's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureTableEntry 47 } + +enclosureDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure/backplane's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureTableEntry 48 } + +enclosureType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + sassata(3), + pcie(4), + universal(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The protocol supported by the backplane. + Possible states: + 1: Not one of the following or could not be determined. + 2: Not applicable (i.e. object is not a backplane). + 3: Supports SAS/SATA. + 4: Supports PCIe. + 5: Both SAS/SATA and PCIe. + " + ::= { enclosureTableEntry 49 } + + +------------------------------------------------------------------------------- +-- Enclosure Management Module Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.. +------------------------------------------------------------------------------- + +EnclosureManagementModuleTableEntry ::=SEQUENCE { + enclosureManagementModuleNumber INTEGER, + enclosureManagementModuleName DisplayString, + enclosureManagementModuleState INTEGER, + enclosureManagementModulePartNumber DisplayString, + enclosureManagementModuleFWVersion DisplayString, + enclosureManagementModuleComponentStatus ObjectStatusEnum, + enclosureManagementModuleFQDD FQDDString, + enclosureManagementModuleDisplayName DisplayString +} + +enclosureManagementModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureManagementModuleTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Enclosure Management Modules (EMM) + in the external storage enclosure(s). The number of + entries is related to number of enclosure management modules + discovered in the enclosure(s). The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 13 } + +enclosureManagementModuleTableEntry OBJECT-TYPE + SYNTAX EnclosureManagementModuleTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the enclosure management module table. A row in + this table cannot be created or deleted by SNMP operations + on columns of the table. + " + INDEX { enclosureManagementModuleNumber } + ::= { enclosureManagementModuleTable 1 } + +enclosureManagementModuleNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 1 } + +enclosureManagementModuleName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure management module's name as + represented in Storage Management. + " + ::= { enclosureManagementModuleTableEntry 2 } + +enclosureManagementModuleState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of this enclosure management module. + Possible states: + 1: The current state could not be determined. + 2: The enclosure management module is operating normally. + 3: The enclosure management module has encountered a + hardware problem or is not responding. + 4: The enclosure management module is no longer connected + to the enclosure or there exists a problem communicating to it. + 5: The enclosure management module is unstable. + " + ::= { enclosureManagementModuleTableEntry 4 } + +enclosureManagementModulePartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 6 } + +enclosureManagementModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware version of the enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 8 } + +enclosureManagementModuleComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the enclosure management module.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureManagementModuleTableEntry 11 } + +enclosureManagementModuleFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure management module's Fully Qualified Device + Descriptor (FQDD) as represented in Storage Management. + " + ::= { enclosureManagementModuleTableEntry 15 } + +enclosureManagementModuleDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure management module's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureManagementModuleTableEntry 16 } + +------------------------------------------------------------------------------- +-- Enclosure Fan Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.. +------------------------------------------------------------------------------- + +EnclosureFanTableEntry ::=SEQUENCE { + enclosureFanNumber INTEGER, + enclosureFanName DisplayString, + enclosureFanState INTEGER, + enclosureFanSpeed INTEGER, + enclosureFanComponentStatus ObjectStatusEnum, + enclosureFanFQDD FQDDString, + enclosureFanDisplayName DisplayString +} + +enclosureFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureFanTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed fans in the external storage enclosure(s). + The number of entries is related to number of fans discovered in + the enclosure(s). The maximum number of entries is implementation + dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 7 } + +enclosureFanTableEntry OBJECT-TYPE + SYNTAX EnclosureFanTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the fan table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureFanNumber } + ::= { enclosureFanTable 1 } + +enclosureFanNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this fan. + " + ::= { enclosureFanTableEntry 1 } + +enclosureFanName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The fan's name as represented in Storage Management. + " + ::= { enclosureFanTableEntry 2 } + +enclosureFanState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of this fan. + Possible states: + 1: The current state could not be determined. + 2: The fan is operating normally. + 3: The fan has encountered a hardware problem or is not + responding. + 4: The fan is no longer connected to the enclosure or + there exists a problem communicating to it. + 5: The fan is unstable. + " + ::= { enclosureFanTableEntry 4 } + +enclosureFanSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + stopped(2), + slow(3), + medium(4), + fast(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the current relative speed of the fan. + " + ::= { enclosureFanTableEntry 11 } + +enclosureFanComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the fan itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureFanTableEntry 15 } + +enclosureFanFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The fan's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureFanTableEntry 20 } + +enclosureFanDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The fan's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureFanTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Enclosure Power Supply Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.. +------------------------------------------------------------------------------- + +EnclosurePowerSupplyTableEntry ::=SEQUENCE { + enclosurePowerSupplyNumber INTEGER, + enclosurePowerSupplyName DisplayString, + enclosurePowerSupplyState INTEGER, + enclosurePowerSupplyPartNumber DisplayString, + enclosurePowerSupplyComponentStatus ObjectStatusEnum, + enclosurePowerSupplyFQDD FQDDString, + enclosurePowerSupplyDisplayName DisplayString +} + +enclosurePowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosurePowerSupplyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Power Supply Units(PSU) in the external + storage enclosure(s). The number of entries is related to number + of power supply unit(s) discovered in the enclosure(s). The + maximum number of entries is implementation + dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 9 } + +enclosurePowerSupplyTableEntry OBJECT-TYPE + SYNTAX EnclosurePowerSupplyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the power supply unit table. A row in this table cannot + be created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosurePowerSupplyNumber } + ::= { enclosurePowerSupplyTable 1 } + +enclosurePowerSupplyNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this power supply unit. + " + ::= { enclosurePowerSupplyTableEntry 1 } + +enclosurePowerSupplyName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply unit's name as represented in + Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 2 } + +enclosurePowerSupplyState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of this power supply unit. + Possible states: + 1: The current state could not be determined. + 2: The power supply unit is operating normally. + 3: The power supply unit has encountered a hardware problem + or is not responding. + 4: The power supply unit is no longer connected to the enclosure + or there exists a problem communicating to it. + 5: The power supply unit is unstable. + " + ::= { enclosurePowerSupplyTableEntry 4 } + +enclosurePowerSupplyPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the power supply unit. + " + ::= { enclosurePowerSupplyTableEntry 7 } + +enclosurePowerSupplyComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the power supply unit itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosurePowerSupplyTableEntry 9 } + +enclosurePowerSupplyFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply unit's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 15 } + +enclosurePowerSupplyDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply unit's friendly FQDD as represented in + Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Enclosure Temperature Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.. +------------------------------------------------------------------------------- + +EnclosureTemperatureProbeTableEntry ::=SEQUENCE { + enclosureTemperatureProbeNumber INTEGER, + enclosureTemperatureProbeName DisplayString, + enclosureTemperatureProbeState INTEGER, + enclosureTemperatureProbeMinWarningValue INTEGER, + enclosureTemperatureProbeMinCriticalValue INTEGER, + enclosureTemperatureProbeMaxWarningValue INTEGER, + enclosureTemperatureProbeMaxCriticalValue INTEGER, + enclosureTemperatureProbeCurValue INTEGER, + enclosureTemperatureProbeComponentStatus ObjectStatusEnum, + enclosureTemperatureProbeFQDD FQDDString, + enclosureTemperatureProbeDisplayName DisplayString +} + +enclosureTemperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureTemperatureProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed temperature probes in the external storage + enclosure(s). The number of entries is related to number of + temperature probes discovered in the enclosure(s). The maximum + number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 11 } + +enclosureTemperatureProbeTableEntry OBJECT-TYPE + SYNTAX EnclosureTemperatureProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the temperature probe table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureTemperatureProbeNumber } + ::= { enclosureTemperatureProbeTable 1 } + +enclosureTemperatureProbeNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this temperature probe. + " + ::= { enclosureTemperatureProbeTableEntry 1 } + +enclosureTemperatureProbeName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The temperature probe's name as represented in + Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 2 } + +enclosureTemperatureProbeState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of this temperature probe. + Possible states: + 1: The current state could not be determined. + 2: The temperature probe is operating normally. + 3: The temperature probe has encountered a hardware problem + or is not responding. + 4: The temperature probe is no longer connected to the enclosure + or there exists a problem communicating to it. + 5: The temperature probe is unstable. + " + ::= { enclosureTemperatureProbeTableEntry 4 } + +enclosureTemperatureProbeMinWarningValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 7 } + +enclosureTemperatureProbeMinCriticalValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum temperature that will force the probe into + a error state. + " + ::= { enclosureTemperatureProbeTableEntry 8 } + +enclosureTemperatureProbeMaxWarningValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 9 } + +enclosureTemperatureProbeMaxCriticalValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 10 } + +enclosureTemperatureProbeCurValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 11 } + +enclosureTemperatureProbeComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the enclosure management module.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTemperatureProbeTableEntry 13 } + +enclosureTemperatureProbeFQDD OBJECT-TYPE + SYNTAX FQDDString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The temperature probe's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 15 } + +enclosureTemperatureProbeDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The temperature probe's friendly FQDD as represented + in Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 16 } + + +------------------------------------------------------------------------------ +-- Alert Trap Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2 +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- System Alert Trap Group +-- System Traps (a.k.a, System Health Traps) +-- Category: System/1 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.1 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Amperage Probe Traps +-- +-- Category: System/1 +-- Subcategory: AMP/16 +------------------------------------------------------------------------------ + +alertAmperageProbeNormal TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Current sensor reading is within range." + --#TYPE "System: Amperage Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2179 + +alertAmperageProbeWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Current sensor has detected a warning value." + --#TYPE "System: Amperage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2178 + +alertAmperageProbeFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Current sensor has detected a failure value." + --#TYPE "System: Amperage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2177 + +------------------------------------------------------------------------------ +-- Automatic System Recovery Trap +-- +-- Category: System/1 +-- Subcategory: ASR/23 +------------------------------------------------------------------------------ + +alertAutomaticSystemRecovery TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Automatic system recovery (ASR) was performed." + --#TYPE "System: Automatic System Recovery" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2233 + +------------------------------------------------------------------------------ +-- Battery Traps +-- +-- Category: System/1 +-- Subcategory: BAT/22 +------------------------------------------------------------------------------ + +alertBatteryNormal TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Battery state has returned to normal; + or battery presence had been detected." + --#TYPE "System: Battery Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2227 + +alertBatteryWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Battery is low." + --#TYPE "System: Battery Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2226 + +alertBatteryFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Battery has failed or battery is absent." + --#TYPE "System: Battery Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2225 + +------------------------------------------------------------------------------ +-- Cable Traps +-- +-- Category: System/1 +-- Subcategory: CBL/43 +------------------------------------------------------------------------------ + +alertCableFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Cable failure or critical event." + --#TYPE "System: Cable Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2393 + +------------------------------------------------------------------------------ +-- CMC Traps +-- +-- Category: System/1 +-- Subcategory: CMC/62 +------------------------------------------------------------------------------ + +alertCMCWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Chassis Management Controller detected a warning." + --#TYPE "System: CMC Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2546 + +alertCMCFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Chassis Management Controller detected an error." + --#TYPE "System: CMC Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2545 + +------------------------------------------------------------------------------ +-- Processor Device Status Traps +-- +-- Category: System/1 +-- Subcategory: CPU/24 +------------------------------------------------------------------------------ + +alertProcessorDeviceStatusNormal TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Processor device status has returned to normal." + --#TYPE "System: Processor Device Status Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2243 + +alertProcessorDeviceStatusWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Processor device status has detected a warning." + --#TYPE "System: Processor Device Status Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2242 + +alertProcessorDeviceStatusFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Processor device status has detected a failure." + --#TYPE "System: Processor Device Status Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2241 + +------------------------------------------------------------------------------ +-- Processor Device Absent Trap +-- +-- Category: System/1 +-- Subcategory: CPUA/51 +------------------------------------------------------------------------------ + +alertProcessorDeviceAbsent TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Processor device is absent." + --#TYPE "System: Processor Device Absent" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2457 + +------------------------------------------------------------------------------ +-- Fan Traps +-- +-- Category: System/1 +-- Subcategory: FAN/13 +------------------------------------------------------------------------------ + +alertFanInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fan information." + --#TYPE "System: Fan Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2155 + +alertFanWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fan warning." + --#TYPE "System: Fan Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2154 + +alertFanFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fan failure." + --#TYPE "System: Fan Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2153 + +------------------------------------------------------------------------------ +-- Fiber Channel Traps +-- +-- Category: System/1 +-- Subcategory: FC/61 +------------------------------------------------------------------------------ + +alertFiberChannelInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fiber Channel information." + --#TYPE "System: Fiber Channel Information " + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2539 + +alertFiberChannelWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fiber Channel warning." + --#TYPE "System: Fiber Channel Warning " + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2538 + +alertFiberChannelFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fiber Channel failure or critical event." + --#TYPE "System: Fiber Channel Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2537 + +------------------------------------------------------------------------------ +-- Hardware Configuration Traps +-- +-- Category: System/1 +-- Subcategory: HWC/35 +------------------------------------------------------------------------------ + +alertHardwareConfigurationInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Hardware configuration information." + --#TYPE "System: Hardware Configuration Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2331 + +alertHardwareConfigurationWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Hardware configuration warning." + --#TYPE "System: Hardware Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2330 + +alertHardwareConfigurationFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Hardware configuration failure or critical event." + --#TYPE "System: Hardware Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2329 + +------------------------------------------------------------------------------ +-- IO Virtualization Traps +-- +-- Category: System/1 +-- Subcategory: IOV/63 +------------------------------------------------------------------------------ + +alertIOVirtualizationFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "IO Virtualization failure or critical event." + --#TYPE "System: IO Virtualization Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2553 + +------------------------------------------------------------------------------ +-- Link Status Traps +-- +-- Category: System/1 +-- Subcategory: LNK/25 +------------------------------------------------------------------------------ + +alertLinkStatusInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Link status information." + --#TYPE "System: Link Status Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2251 + +alertLinkStatusWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Link status warning." + --#TYPE "System: Link Status Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2250 + +alertLinkStatusFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Link status failure or critical event." + --#TYPE "System: Link Status Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2249 + +------------------------------------------------------------------------------ +-- Memory Device Traps +-- +-- Category: System/1 +-- Subcategory: MEM/27 +------------------------------------------------------------------------------ + +alertMemoryDeviceInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Memory device informational event." + --#TYPE "System: Memory Device Infomation" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2267 + +alertMemoryDeviceWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Memory device status is noncritical." + --#TYPE "System: Memory Device Noncritical" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2266 + +alertMemoryDeviceFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Memory device status is critical." + --#TYPE "System: Memory Device Critical" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2265 + +------------------------------------------------------------------------------ +-- NIC Traps +-- +-- Category: System/1 +-- Subcategory: NIC/5 +------------------------------------------------------------------------------ + +alertNetworkInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Network information." + --#TYPE "System: Network Information " + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2091 + +alertNetworkWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Network warning." + --#TYPE "System: Network Warning " + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2090 + +alertNetworkFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Network failure or critical event." + --#TYPE "System: Network Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2089 + +------------------------------------------------------------------------------ +-- Operation System ("OS") Event Traps +-- +-- Category: System/1 +-- Subcategory: OSE/45 +------------------------------------------------------------------------------ + +alertOSInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "An OS graceful stop occurred; + or an OS graceful shut-down occurred." + --#TYPE "System: Operating System Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2411 + +alertOSFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "A critical stop occurred during OS load; + or a runtime critical stop occurred." + --#TYPE "System: Operating System Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2409 + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: System/1 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "An informational event was detected for a PCI device." + --#TYPE "System: PCI Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2419 + +alertPCIDeviceWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "A warning event was detected for a PCI device." + --#TYPE "System: PCI Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2418 + +alertPCIDeviceFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "An error was detected for a PCI device." + --#TYPE "System: PCI Device Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2417 + +------------------------------------------------------------------------------ +-- Physical Disk Traps +-- +-- Category: System/1 +-- Subcategory: PDR/31 +------------------------------------------------------------------------------ + +alertPhysicalDiskInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Physical disk information." + --#TYPE "System: Physical Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2299 + +alertPhysicalDiskWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Physical disk warning." + --#TYPE "System: Physical Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2298 + +alertPhysicalDiskFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Physical disk failure." + --#TYPE "System: Physical Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 2297 + +------------------------------------------------------------------------------ +-- BIOS POST Trap +-- +-- Category: System/1 +-- Subcategory: PST/47 +------------------------------------------------------------------------------ + +alertBiosPostFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "System BIOS detected a failure." + --#TYPE "System: BIOS POST Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 2425 + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: System/1 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertPowerSupplyNormal TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power supply has returned to normal." + --#TYPE "System: Power Supply Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2187 + +alertPowerSupplyWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power supply has detected a warning." + --#TYPE "System: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2186 + +alertPowerSupplyFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power supply has detected a failure." + --#TYPE "System: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2185 + +------------------------------------------------------------------------------ +-- Power Supply Absent Trap +-- +-- Category: System/1 +-- Subcategory: PSUA/52 +------------------------------------------------------------------------------ + +alertPowerSupplyAbsent TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power supply is absent." + --#TYPE "System: Power Supply Absent" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2465 + +------------------------------------------------------------------------------ +-- Power Usage Traps +-- +-- Category: System/1 +-- Subcategory: PWR/28 +------------------------------------------------------------------------------ + +alertPowerUsageInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "System performance restored." + --#TYPE "System: Power Usage Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2275 + +alertPowerUsageWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "System performance degraded." + --#TYPE "System: Power Usage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2274 + +alertPowerUsageFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "The system halted because system power exceeds capacity; + or the system performance degraded because power draw exceeds the + power threshold." + --#TYPE "System: Power Usage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2273 + +------------------------------------------------------------------------------ +-- Redundancy Traps +-- +-- Category: System/1 +-- Subcategory: RDU/53 +------------------------------------------------------------------------------ + +alertRedundancyInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Redundancy information." + --#TYPE "System: Redundancy Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2475 + +alertRedundancyDegraded TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Redundancy is degraded." + --#TYPE "System: Redundancy Degraded" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2474 + +alertRedundancyLost TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Redundancy is lost." + --#TYPE "System: Redundancy Lost" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2473 + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Traps +-- +-- Category: System/1 +-- Subcategory: RFL/20 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Integrated Dual SD Module information." + --#TYPE "System: Integrated Dual SD Module Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2211 + +alertIntegratedDualSDModuleWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Integrated Dual SD Module warning." + --#TYPE "System: Integrated Dual SD Module Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2210 + +alertIntegratedDualSDModuleFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Integrated Dual SD Module failure." + --#TYPE "System: Integrated Dual SD Module Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2209 + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Absent Trap +-- +-- Category: System/1 +-- Subcategory: RFLA/54 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleAbsent TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Integrated Dual SD Module is absent." + --#TYPE "System: Integrated Dual SD Module absent." + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2481 + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Redundancy Traps +-- +-- Category: System/1 +-- Subcategory: RRDU/55 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleRedundancyInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Integrated Dual SD Module redundancy information." + --#TYPE "System: Integrated Dual SD Module Redundancy Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2491 + +alertIntegratedDualSDModuleRedundancyDegraded TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Integrated Dual SD Module redundancy is degraded." + --#TYPE "System: Integrated Dual SD Module Redundancy Degraded" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2490 + +alertIntegratedDualSDModuleRedundancyLost TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Integrated Dual SD Module redundancy is lost." + --#TYPE "System: Integrated Dual SD Module Redundancy Lost" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2489 + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: System/1 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertSecurityInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Security information." + --#TYPE "System: Security Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2387 + +alertSecurityWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Security warning." + --#TYPE "System: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2386 + +alertSecurityFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Security failure or critical event." + --#TYPE "System: Security Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2385 + +------------------------------------------------------------------------------ +-- System Event Log Traps +-- +-- Category: System/1 +-- Subcategory: SEL/41 +------------------------------------------------------------------------------ + +alertSystemEventLogInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "System Event Log information." + --#TYPE "System: System Event Log Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2379 + +alertSystemEventLogWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "System Event Log warning." + --#TYPE "System: System Event Log Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2378 + +alertSystemEventLogFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "System Event Log failure or critical event." + --#TYPE "System: System Event Log Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2377 + +------------------------------------------------------------------------------ +-- Software Configuration Traps +-- +-- Category: System/1 +-- Subcategory: SWC/36 +------------------------------------------------------------------------------ + +alertSoftwareConfigurationInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Software configuration information." + --#TYPE "System: Software Configuration Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2339 + +alertSoftwareConfigurationWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Software configuration warning." + --#TYPE "System: Software Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2338 + +alertSoftwareConfigurationFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Software configuration failure." + --#TYPE "System: Software Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2337 + +------------------------------------------------------------------------------ +-- Temperature Probe Traps +-- +-- Category: System/1 +-- Subcategory: TMP/14 +------------------------------------------------------------------------------ + +alertTemperatureProbeNormal TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Temperature sensor value is within range." + --#TYPE "System: Temperature Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2163 + +alertTemperatureProbeWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Temperature sensor has detected a warning value." + --#TYPE "System: Temperature Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2162 + +alertTemperatureProbeFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Temperature sensor has detected a failure value." + --#TYPE "System: Temperature Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2161 + +------------------------------------------------------------------------------ +-- Temperature Statistics Traps +-- +-- Category: System/1 +-- Subcategory: TMPS/59 +------------------------------------------------------------------------------ + +alertTemperatureStatisticsWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Temperature has been above the warning or critical threshold level + for a long enough period of time to be considered in a warning state." + --#TYPE "System: Temperature Statistics Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2522 + +alertTemperatureStatisticsFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Temperature has been above the warning or critical threshold level + for a long enough period of time to be considered in a critical state." + --#TYPE "System: Temperature Statistics Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2521 + +------------------------------------------------------------------------------ +-- vFlash Media Device Traps +-- +-- Category: System/1 +-- Subcategory: VFL/57 +------------------------------------------------------------------------------ + +alertvFlashMediaDeviceInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "vFlash Media device information." + --#TYPE "System: vFlash Media Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2507 + +alertvFlashMediaDeviceWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "vFlash Media device warning." + --#TYPE "System: vFlash Media Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2506 + +alertvFlashMediaDeviceFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "vFlash Media device failure." + --#TYPE "System: vFlash Media Device Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2505 + +------------------------------------------------------------------------------ +-- vFlash Media Device Absent Trap +-- +-- Category: System/1 +-- Subcategory: VFLA/58 +------------------------------------------------------------------------------ + +alertvFlashMediaDeviceAbsent TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "vFlash Media device is absent." + --#TYPE "System: vFlash Media Device Absent" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2515 + +------------------------------------------------------------------------------ +-- Voltage Probe Traps +-- +-- Category: System/1 +-- Subcategory: VLT/15 +------------------------------------------------------------------------------ + +alertVoltageProbeNormal TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Voltage sensor reading is within range." + --#TYPE "System: Voltage Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2171 + +alertVoltageProbeWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Voltage sensor has detected a warning value." + --#TYPE "System: Voltage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2170 + +alertVoltageProbeFailure TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Voltage sensor has detected a failure value." + --#TYPE "System: Voltage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2169 + +------------------------------------------------------------------------------ +-- RAC Traps +-- +-- Category: System/1 +-- Subcategory: RAC/60 +------------------------------------------------------------------------------ + +alertRACInformation TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "RAC information." + --#TYPE "System: RAC information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 2531 + +------------------------------------------------------------------------------ +-- System Performance Traps +-- +-- Category: System/1 +-- Subcategory: PFM/75 +------------------------------------------------------------------------------ + +alertSystemPerformanceWarning TRAP-TYPE + ENTERPRISE systemAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "System Performance warning." + --#TYPE "System: Performance Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 2650 + + +------------------------------------------------------------------------------ +-- Storage Alert Trap Group +-- Storage Traps +-- Category: Storage/2 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.2 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Battery Traps +-- +-- Category: Storage/2 +-- Subcategory: BAT/22 +------------------------------------------------------------------------------ + +alertStorageBatteryInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Battery information." + --#TYPE "Storage: Battery Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4275 + +alertStorageBatteryWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Battery warning." + --#TYPE "Storage: Battery Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4274 + +alertStorageBatteryFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Battery failure." + --#TYPE "Storage: Battery Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4273 + +------------------------------------------------------------------------------ +-- Controller Traps +-- +-- Category: Storage/2 +-- Subcategory: CTL/29 +------------------------------------------------------------------------------ + +alertStorageControllerInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Controller information." + --#TYPE "Storage: Controller Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4331 + +alertStorageControllerWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Controller warning." + --#TYPE "Storage: Controller Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4330 + +alertStorageControllerFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Controller failure." + --#TYPE "Storage: Controller Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4329 + +------------------------------------------------------------------------------ +-- Enclosure Traps +-- +-- Category: Storage/2 +-- Subcategory: ENC/30 +------------------------------------------------------------------------------ + +alertStorageEnclosureInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Enclosure information." + --#TYPE "Storage: Enclosure Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4339 + +alertStorageEnclosureWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Enclosure warning." + --#TYPE "Storage: Enclosure Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4338 + +alertStorageEnclosureFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Enclosure failure." + --#TYPE "Storage: Enclosure Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4337 + +------------------------------------------------------------------------------ +-- Fan Traps +-- +-- Category: Storage/2 +-- Subcategory: FAN/13 +------------------------------------------------------------------------------ + +alertStorageFanInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fan information." + --#TYPE "Storage: Fan Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4203 + +alertStorageFanWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fan warning." + --#TYPE "Storage: Fan Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4202 + +alertStorageFanFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Fan failure." + --#TYPE "Storage: Fan Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4201 + +------------------------------------------------------------------------------ +-- Physical Disk Traps +-- +-- Category: Storage/2 +-- Subcategory: PDR/31 +------------------------------------------------------------------------------ + +alertStoragePhysicalDiskInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Physical disk information." + --#TYPE "Storage: Physical Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4347 + +alertStoragePhysicalDiskWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Physical disk warning." + --#TYPE "Storage: Physical Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4346 + +alertStoragePhysicalDiskFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Physical disk failure." + --#TYPE "Storage: Physical Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4345 + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: Storage/2 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertStoragePowerSupplyInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power supply information." + --#TYPE "Storage: Power Supply Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4235 + +alertStoragePowerSupplyWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power supply warning." + --#TYPE "Storage: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4234 + +alertStoragePowerSupplyFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power supply failure." + --#TYPE "Storage: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4233 + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: Storage/2 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertStorageSecurityInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Storage Security information." + --#TYPE "Storage: Security Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4435 + +alertStorageSecurityWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Storage Security warning." + --#TYPE "Storage: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4434 + +alertStorageSecurityFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Storage Security failure or critical event." + --#TYPE "Storage: Security Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4433 + +------------------------------------------------------------------------------ +-- Storage Management Status Traps +-- +-- Category: Storage/2 +-- Subcategory: STOR/10 +------------------------------------------------------------------------------ + +alertStorageManagementInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Storage Management Information. + There is no global status change associated with this trap." + --#TYPE "Storage: Storage Management Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4179 + +alertStorageManagementWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Storage Management has detected a device independent warning + condition. There is no global status change associated with this + trap." + --#TYPE "Storage: Storage Management Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4178 + +alertStorageManagementFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Storage Management has detected a device independent error condition. + There is no global status change associated with this trap." + --#TYPE "Storage: Storage Management Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4177 + +------------------------------------------------------------------------------ +-- Temperature Probe Traps +-- +-- Category: Storage/2 +-- Subcategory: TMP/14 +------------------------------------------------------------------------------ + +alertStorageTemperatureProbeInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Temperature probe information." + --#TYPE "Storage: Temperature Probe Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4211 + +alertStorageTemperatureProbeWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Temperature probe warning." + --#TYPE "Storage: Temperature Probe Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4210 + +alertStorageTemperatureProbeFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Temperature probe failure." + --#TYPE "Storage: Temperature Probe Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4209 + +------------------------------------------------------------------------------ +-- Virtual Disk Traps +-- +-- Category: Storage/2 +-- Subcategory: VDR/32 +------------------------------------------------------------------------------ + +alertStorageVirtualDiskInformation TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Virtual disk information." + --#TYPE "Storage: Virtual Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 4355 + +alertStorageVirtualDiskWarning TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Virtual disk warning." + --#TYPE "Storage: Virtual Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 4354 + +alertStorageVirtualDiskFailure TRAP-TYPE + ENTERPRISE storageAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Virtual disk failure." + --#TYPE "Storage: Virtual Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS MANDATORY + ::= 4353 + + +------------------------------------------------------------------------------ +-- Updates Alert Trap Group +-- Updates Traps +-- Category: Updates/3 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.3 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Update Job Trap +-- +-- Category: Updates/3 +-- Subcategory: RED/8 +------------------------------------------------------------------------------ + +alertUpdateJobInformation TRAP-TYPE + ENTERPRISE updatesAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Update job information" + --#TYPE "Updates: Update Job Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 6211 + +------------------------------------------------------------------------------ +-- Software Change Traps +-- +-- Category: Updates/3 +-- Subcategory: SWU/21 +------------------------------------------------------------------------------ + +alertSoftwareChangeUpdateWarning TRAP-TYPE + ENTERPRISE updatesAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Software change update warning." + --#TYPE "Updates: Software Change Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 6314 + + +------------------------------------------------------------------------------ +-- Audit Alert Trap Group +-- Audit Traps +-- Category: Audit/4 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.4 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- CMC Traps +-- +-- Category: Audit/4 +-- Subcategory: CMC/62 +------------------------------------------------------------------------------ + +alertCMCAuditInformation TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Chassis Management Controller audit information." + --#TYPE "Audit: CMC Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 8691 + +alertCMCAuditWarning TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Chassis Management Controller audit warning." + --#TYPE "Audit: CMC Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8690 + +alertCMCAuditFailure TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Chassis Management Controller audit failure or critical event." + --#TYPE "Audit: CMC Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8689 + +------------------------------------------------------------------------------ +-- Debug Traps +-- +-- Category: Audit/4 +-- Subcategory: FSD/50 +------------------------------------------------------------------------------ + +alertDebugInformation TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Debug authorized." + --#TYPE "Audit: Debug Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 8595 + +alertDebugWarning TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Debug authorization failed." + --#TYPE "Audit: Debug Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8594 + +------------------------------------------------------------------------------ +-- iDRAC IP Address Change Trap +-- +-- Category: Audit/4 +-- Subcategory: IPA/38 +------------------------------------------------------------------------------ + +alertiDRACIPAddressChange TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "iDRAC IP address has changed." + --#TYPE "iDRAC IP address has changed" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + + ::= 8499 + +------------------------------------------------------------------------------ +-- License Traps +-- +-- Category: Audit/4 +-- Subcategory: LIC/40 +------------------------------------------------------------------------------ + +alertLicenseInformation TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "License information." + --#TYPE "Audit: License Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 8515 + +alertLicenseWarning TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "License warning." + --#TYPE "Audit: License Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8514 + +alertLicenseFailure TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "License failure." + --#TYPE "Audit: License Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8513 + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: Audit/4 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceAuditWarning TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "PCI device audit warning." + --#TYPE "Audit: PCI Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8562 + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: Audit/4 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertPowerSupplyAuditWarning TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power Supply audit warning." + --#TYPE "Audit: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8330 + +alertPowerSupplyAuditFailure TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power Supply audit failure or critical event." + --#TYPE "Audit: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8329 + +------------------------------------------------------------------------------ +-- Power Usage Traps +-- +-- Category: Audit/4 +-- Subcategory: PWR/28 +------------------------------------------------------------------------------ + +alertPowerUsageAuditInformation TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power usage audit information." + --#TYPE "Audit: Power Usage Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 8419 + +alertPowerUsageAuditWarning TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power usage audit warning." + --#TYPE "Audit: Power Usage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8418 + +alertPowerUsageAuditFailure TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Power usage audit failure or critical event." + --#TYPE "Audit: Power Usage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8417 + +------------------------------------------------------------------------------ +-- System Power State Change Trap +-- +-- Category: Audit/4 +-- Subcategory: SYS/48 +------------------------------------------------------------------------------ + +alertSystemPowerStateChangeInformation TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Host is going through a power state change + (powering on or powering off)." + --#TYPE "Audit: System Power State Change Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 8579 + +------------------------------------------------------------------------------ +-- User Tracking Trap +-- +-- Category: Audit/4 +-- Subcategory: USR/37 +------------------------------------------------------------------------------ + +alertUserTrackingWarning TRAP-TYPE + ENTERPRISE auditAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "User Tracking warning." + --#TYPE "Audit: User Tracking" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 8490 + + +------------------------------------------------------------------------------ +-- Configuration Alert Trap Group +-- Configuration Traps +-- Category: Configuration/5 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.5 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- AutoDiscovery Traps +-- +-- Category: Configuration/5 +-- Subcategory: DIS/49 +------------------------------------------------------------------------------ + +alertAutoDiscoveryInformation TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Auto discovery information." + --#TYPE "Configuration: Auto Discovery Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 10635 + +------------------------------------------------------------------------------ +-- NIC Configuration Traps +-- +-- Category: Configuration/5 +-- Subcategory: IOID/66 +------------------------------------------------------------------------------ + +alertNetworkConfigurationInformation TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Network configuration information." + --#TYPE "Configuration: Network Configuration Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 10771 + +alertNetworkConfigurationWarning TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Network configuration warning." + --#TYPE "Configuration: Network Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 10770 + +------------------------------------------------------------------------------ +-- IP Address Traps +-- +-- Category: Configuration/5 +-- Subcategory: IPA/38 +------------------------------------------------------------------------------ + +alertIPAddressConfigurationInformation TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "IP Address configuration information." + --#TYPE "Configuration: IP Address Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 10547 + +------------------------------------------------------------------------------ +-- Job Control Traps +-- +-- Category: Configuration/5 +-- Subcategory: JCP/3 +------------------------------------------------------------------------------ + +alertJobControlConfigurationInformation TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Job Control configuration information." + --#TYPE "Configuration: Job Control Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 10267 + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: Configuration/5 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceConfigurationInformation TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "PCI device configuration information." + --#TYPE "Configuration: PCI Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 10611 + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: Configuration/5 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertSecurityConfigurationWarning TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Security configuration warning." + --#TYPE "Configuration: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 10578 + +------------------------------------------------------------------------------ +-- Software Configuration Traps +-- +-- Category: Configuration/5 +-- Subcategory: SWC/36 +------------------------------------------------------------------------------ + +alertSWCConfigurationWarning TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Software configuration warning." + --#TYPE "Configuration: Software Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 10530 + +alertSWCConfigurationFailure TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "Software configuration failure." + --#TYPE "Configuration: Software Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS MANDATORY + ::= 10529 + +------------------------------------------------------------------------------ +-- Test Trap +-- +-- Category: Configuration/5 +-- Subcategory: TST/19 +------------------------------------------------------------------------------ + +alertTestTrapEvent TRAP-TYPE + ENTERPRISE configurationAlertTrapGroup + VARIABLES { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + DESCRIPTION + "The iDRAC generated a test trap event in response to a user request." + --#TYPE "Configuration: iDRAC Test Trap Event" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS MANDATORY + ::= 10395 + +END + +------------------------------------------------------------------------------ +-- End MIB +------------------------------------------------------------------------------ + diff --git a/mibs/IDRAC-MIB-SMIv2 b/mibs/IDRAC-MIB-SMIv2 new file mode 100755 index 0000000000..78d54af5e5 --- /dev/null +++ b/mibs/IDRAC-MIB-SMIv2 @@ -0,0 +1,13303 @@ +------------------------------------------------------------------------------ +-- +-- Title: iDRAC MIB +-- +-- Version: 3.2 +-- Date: 19 January 2015 +-- +-- Description: This MIB defines MIB objects that make iDRAC data available +-- to SNMP management applications. +-- +-- Note that the iDRAC MIB file is published in both types of SMI (Structure +-- of Managed Information) notations: SMIv1 and SMIv2. This copy of the iDRAC +-- MIB file is the SMIv2 version of the MIB file. +-- +-- Copyright (c) 2012-2015 Dell Inc. +-- All Rights Reserved. +-- +-- Note: The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- OID Format Legend: +-- = attribute ID +-- = index ID +-- = trap ID +-- +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- Begin MIB +------------------------------------------------------------------------------ + +IDRAC-MIB-SMIv2 DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, enterprises + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString + FROM SNMPv2-TC; + +outOfBandGroup MODULE-IDENTITY + LAST-UPDATED "201501190000Z" -- 19 January 2015 + ORGANIZATION "Dell Inc." + CONTACT-INFO + "Visit the Dell Support website at: support.dell.com" + DESCRIPTION + "This MIB defines MIB objects that make out-of-band iDRAC data + available to SNMP management applications. It also defines the traps + that iDRAC supports." + -- Revision history, in reverse chronological order. + + REVISION "201501190000Z" -- 19 January 2015 + DESCRIPTION + "Version: 3.2 + * Renamed powerSupplyInputVoltage to powerSupplyMaximumInputVoltage + and updated description. + * Added powerSupplyCurrentInputVoltage. + * Updated memoryDeviceSpeed description. + * Added memoryDeviceCurrentOperatingSpeed. + * Removed hyphens from enumeration value names. + * Added alertRacFQDN variable to all traps. + * Added the following traps: + alertCableFailure + alertCMCWarning + alertCMCFailure + alertIOVirtualizationFailure + alertLinkStatusInformation + alertLinkStatusWarning + alertLinkStatusFailure + alertSecurityWarning + alertSoftwareConfigurationInformation + alertSoftwareConfigurationWarning + alertSoftwareConfigurationFailure + alertStorageSecurityInformation + alertStorageSecurityWarning + alertStorageSecurityFailure + alertSoftwareChangeUpdateWarning + alertCMCAuditInformation + alertCMCAuditWarning + alertCMCAuditFailure + alertPCIDeviceAuditWarning + alertPowerSupplyAuditWarning + alertPowerSupplyAuditFailure + alertPowerUsageAuditInformation + alertPowerUsageAuditWarning + alertPowerUsageAuditFailure + alertIPAddressConfigurationInformation + alertJobControlConfigurationInformation + alertPCIDeviceConfigurationInformation + alertSecurityConfigurationWarning + alertSWCConfigurationWarning + alertSWCConfigurationFailure + " + + REVISION "201410030000Z" -- 03 October 2014 + DESCRIPTION + "Version: 3.1 + * Added deviceTypeIsDDR4 to MemoryDeviceTypeEnum." + + REVISION "201407070000Z" -- 07 July 2014 + DESCRIPTION + "Version: 3.0 + * Updated physicalDiskPowerState. + * Updated RacTypeEnum for iDRAC8. + * Added alertRACInformation trap. + * Added alertSystemPerformanceWarning trap. + * Added alertUserTrackingWarning trap. + * Added physicalDiskProtocolVersion. + * Added physicalDiskPCIeNegotiatedLinkWidth. + * Added physicalDiskPCIeCapableLinkWidth. + * Added enclosureType." + + REVISION "201308220000Z" -- 22 Aug 2013 + DESCRIPTION + "Version: 2.1 + * Added systemPowerUpTime attribute. + * Added values to SystemFormFactorEnum. + * Added values to BladeGeometryEnum. + * Added chassisNameModular attribute. + * Added chassisModelModular attribute. + * Added systemNodeID attribute. + * Added alertChassisName variable to all traps. + * Added controllerT10PICapability attribute. + * Added controllerRAID10UnevenSpansSupported attribute. + * Added controllerEnhancedAutoImportForeignConfigMode attribute. + * Added controllerBootModeSupported attribute. + * Added controllerBootMode attribute. + * Added physicalDiskRemainingRatedWriteEndurance attribute. + * Added physicalDiskT10PICapability attribute. + * Added physicalDiskBlockSizeInBytes attribute. + * Added virtualDiskT10PIStatus attribute. + * Added virtualDiskBlockSizeInBytes attribute. + * Attribute batteryPredictedCapacity is obsolete. + * Added alertUpdateJobInformation trap. + * Added alertAutoDiscoveryInformation trap. + * Added alertNetworkConfigurationInformation trap. + * Added alertNetworkConfigurationWarning trap. + * Added alertNetworkConfigurationFailure trap." + + REVISION "201210300000Z" -- 30 Oct 2012 + DESCRIPTION + "Version: 2.0 + * Initial SMIv2 version of the iDRAC MIB." + ::= { enterprises dell(674) server3(10892) 5 } + + +------------------------------------------------------------------------------ +-- Object Identifiers +------------------------------------------------------------------------------ + +-- Server3 Out-of-Band Groups +-- +-- The informationGroup provides information to discover the system (RAC, +-- modular enclosure/chassis, and server) and its associated properties. +-- +informationGroup OBJECT IDENTIFIER ::= { outOfBandGroup 1 } +racInfoGroup OBJECT IDENTIFIER ::= { informationGroup 1 } +chassisInfoGroup OBJECT IDENTIFIER ::= { informationGroup 2 } +systemInfoGroup OBJECT IDENTIFIER ::= { informationGroup 3 } +statusGroup OBJECT IDENTIFIER ::= { outOfBandGroup 2 } +alertGroup OBJECT IDENTIFIER ::= { outOfBandGroup 3 } +alertVariablesGroup OBJECT IDENTIFIER ::= { alertGroup 1 } +alertTrapGroup OBJECT IDENTIFIER ::= { alertGroup 2 } +systemAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 1 } +storageAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 2 } +updatesAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 3 } +auditAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 4 } +configurationAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 5 } + +-- System details start +systemDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 4 } +mIBVersionGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1 } +systemStateGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 200 } +chassisInformationGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 300 } +powerGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 600 } +thermalGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 700 } +deviceGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1100 } +slotGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1200 } +fruGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 2000 } +-- System details end + +-- Storage details start +storageDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 5 } +software OBJECT IDENTIFIER ::= { storageDetailsGroup 1 } +storageManagement OBJECT IDENTIFIER ::= { software 20 } +physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } +logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } +-- Storage details end + + +------------------------------------------------------------------------------ +-- Textual Conventions +------------------------------------------------------------------------------ + +StringType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "General string type." + SYNTAX OCTET STRING (SIZE (0..1023)) + +String64 ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "General string type for 64 byte strings." + SYNTAX OCTET STRING (SIZE (0..64)) + +FQDDString ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "String type for FQDD strings." + SYNTAX OCTET STRING (SIZE (0..512)) + +MACAddress ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "String type for MAC Address strings." + SYNTAX OCTET STRING (SIZE (6)) + +ObjectRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (1..128)." + SYNTAX INTEGER (1..128) + +Unsigned8BitRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (0..255)." + SYNTAX INTEGER (0..255) + +Unsigned16BitRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (0..65535)." + SYNTAX INTEGER (0..65535) + +Unsigned32BitRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (0..2147483647)." + SYNTAX INTEGER (0..2147483647) + +Signed32BitRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (-2147483647..2147483647)." + SYNTAX INTEGER (-2147483647..2147483647) + +BooleanType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (0..1). + Where 0 = FALSE, 1 = TRUE" + SYNTAX INTEGER (0..1) + +-- DateName dates are defined in the displayable format +-- yyyymmddHHMMSS.uuuuuu+ooo +-- where yyyy is the year, mm is the month number, dd is the day of the month, +-- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the +-- number of microseconds, and +ooo is the offset from UTC in minutes. If east +-- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the +-- number is preceded by a minus (-) sign. +-- +-- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT +-- would be represented as: 19940525133015.000000-300 +-- +-- Values must be zero-padded if necessary, like "05" in the example above. +-- If a value is not supplied for a field, each character in the field +-- must be replaced with asterisk ('*') characters. +DateName ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "String type for date strings of a given DateName format." + SYNTAX OCTET STRING (SIZE (25)) + +-- Note About Bit Fields: +-- Attributes with definitions of xxxCapabilities, xxxCapabilitiesUnique, +-- xxxSettings, xxxSettingsUnique and xxxFeatureFlags are integers +-- representing a series of bit definitions. They are NOT enumerations and +-- should be treated as bit fields. The value is passed as a decimal value; +-- it should be converted to hex, and the appropriate bits should be parsed +-- from that. Some of the more common bit combinations are defined in some +-- variables, but not all combinations are or will be defined. + +-- +-- Generic State Capabilities +-- +StateCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Capabilities flags." + SYNTAX INTEGER { + -- If set to 0 (zero), object has no state capabilities + unknownCapabilities(1), -- object's state capabilities are unknown + -- The object's state capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + enableAndNotReadyCapable(6) + +} + +-- +-- Generic State Settings +-- +StateSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Settings flags." + SYNTAX INTEGER { + -- If set to 0 (zero), object has no state settings enabled and is disabled + unknown(1), -- object's state is unknown + enabled(2), -- object's state is disabled (offline) if bit is off + -- or enabled (online) if bit is on + notReady(4), -- object's state is not ready + enabledAndNotReady(6) +} + +-- +-- Probe Capabilities +-- +ProbeCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Probe Capabilities flags." + SYNTAX INTEGER { + -- If set to 0 (zero) the object has no probe capabilities + -- The object's probe capabilities allow it to be set to: + upperNonCriticalThresholdSetCapable(1), -- upper noncritical threshold can be set + lowerNonCriticalThresholdSetCapable(2), -- lower noncritical threshold can be set + upperNonCriticalThresholdDefaultCapable(4), -- upper noncritical threshold can be set to default + lowerNonCriticalThresholdDefaultCapable(8) -- lower noncritical threshold can be set to default +} + +-- +-- Probe Status +-- +StatusProbeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Probe Status enum." + SYNTAX INTEGER { + other(1), -- probe status is not one of the following: + unknown(2), -- probe status is unknown (not known or monitored) + ok(3), -- probe is reporting a value within the thresholds + nonCriticalUpper(4), -- probe has crossed upper noncritical threshold + criticalUpper(5), -- probe has crossed upper critical threshold + nonRecoverableUpper(6), -- probe has crossed upper non-recoverable threshold + nonCriticalLower(7), -- probe has crossed lower noncritical threshold + criticalLower(8), -- probe has crossed lower critical threshold + nonRecoverableLower(9), -- probe has crossed lower non-recoverable threshold + failed(10) -- probe is not functional +} + +-- +-- Redundancy Status +-- +StatusRedundancyEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Redundancy Status enum." + SYNTAX INTEGER { + other(1), -- redundancy status is not one of the following: + unknown(2), -- redundancy status is unknown (not known or monitored) + full(3), -- object is fully redundant + degraded(4), -- object's redundancy has been degraded + lost(5), -- object's redundancy has been lost + notRedundant(6), -- redundancy status does not apply or object is not redundant + redundancyOffline(7) -- redundancy object taken offline +} + +-- +-- Status +-- +ObjectStatusEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Status of an object." + SYNTAX INTEGER { + other(1), -- the status of the object is not one of the + -- following: + unknown(2), -- the status of the object is unknown + -- (not known or monitored) + ok(3), -- the status of the object is ok + nonCritical(4), -- the status of the object is warning, non-critical + critical(5), -- the status of the object is critical (failure) + nonRecoverable(6) -- the status of the object is non-recoverable (dead) +} + +RacTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "RAC Type enum." + SYNTAX INTEGER { + other(1), -- the RAC type is not one of the following + unknown(2), -- the RAC type is unknown + idrac7monolithic(16), -- iDRAC7 Monolithic + idrac7modular(17), -- iDRAC7 Modular + idrac8monolithic(32), -- iDRAC8 Monolithic + idrac8modular(33) -- iDRAC8 Modular +} + +SystemFormFactorEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Form Factor enum." + SYNTAX INTEGER { + other(1), -- the form factor is not one of the following: + unknown(2), -- the form factor is unknown + u1(3), -- 1U Monolithic + u2(4), -- 2U Monolithic + u4(5), -- 4U Monolithic + u7(6), -- 7U Monolithic + singleWidthHalfHeight(7), -- Single width, half height Modular + dualWidthHalfHeight(8), -- Dual width, half height Modular + singleWidthFullHeight(9), -- Single width, full height Modular + dualWidthFullHeight(10), -- Dual width, full height Modular + singleWidthQuarterHeight(11), -- Single width, quarter height Modular + u5(12), -- 5U Monolithic + u1HalfWidth(13), -- 1U, half width Modular + u1QuarterWidth(14), -- 1U, quarter width Modular + u1FullWidth(15) -- 1U, full width Modular +} + +BladeGeometryEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Blade Geometry enum." + SYNTAX INTEGER { + other(1), -- the modular geometry is not one of the following: + unknown(2), -- the modular geometry is unknown + singleWidthHalfHeight(3), -- Single width, half height Modular + dualWidthHalfHeight(4), -- Dual width, half height Modular + singleWidthFullHeight(5), -- Single width, full height Modular + dualWidthFullHeight(6), -- Dual width, full height Modular + singleWidthQuarterHeight(7), -- Single width, quarter height Modular + u1HalfWidth(8), -- 1U, half width Modular + u1QuarterWidth(9), -- 1U, quarter width Modular + u1FullWidth(10) -- 1U, full width Modular +} + +PowerStateStatusEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power State Status enum." + SYNTAX INTEGER { + other(1), -- the power state status is not one of the following: + unknown(2), -- the power state status is unknown + off(3), -- system power is off + on(4) -- system power is on +} + + +------------------------------------------------------------------------------ +-- +-- MIB Groups +-- +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- RAC Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.1..0 +------------------------------------------------------------------------------ + +racName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the product name of a remote access card." + ::= { racInfoGroup 1 } + +racShortName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the short product name of a remote access + card." + ::= { racInfoGroup 2 } + +racDescription OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the product description of a remote access + card." + ::= { racInfoGroup 3 } + +racManufacturer OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the product manufacturer of a remote access + card." + ::= { racInfoGroup 4 } + +racVersion OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the product version of a remote access card." + ::= { racInfoGroup 5 } + +racURL OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the out-of-band UI URL of a remote access + card." + ::= { racInfoGroup 6 } + +racType OBJECT-TYPE + SYNTAX RacTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the type of a remote access card." + ::= { racInfoGroup 7 } + +racFirmwareVersion OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the firmware version of a remote access card." + ::= { racInfoGroup 8 } + +------------------------------------------------------------------------------ +-- Chassis Information Group +-- (for modular chassis) +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.2..0 +------------------------------------------------------------------------------ + +chassisServiceTag OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the service tag of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 1 } + +chassisNameModular OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the chassis name of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 2 } + +chassisModelModular OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the model of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 3 } + +------------------------------------------------------------------------------ +-- System Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.3..0 +------------------------------------------------------------------------------ + +systemFQDN OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the fully qualified domain name of the system. + For example, hostname.domainname." + ::= { systemInfoGroup 1 } + +systemServiceTag OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the service tag of the system." + ::= { systemInfoGroup 2 } + +systemExpressServiceCode OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the express service code of the system." + ::= { systemInfoGroup 3 } + +systemAssetTag OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the asset tag of the system." + ::= { systemInfoGroup 4 } + +systemBladeSlotNumber OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the slot number of the system in the modular + chassis." + ::= { systemInfoGroup 5 } + +systemOSName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the name of the operating system that the host + is running." + ::= { systemInfoGroup 6 } + +systemFormFactor OBJECT-TYPE + SYNTAX SystemFormFactorEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the form factor of the system." + ::= { systemInfoGroup 7 } + +systemDataCenterName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Data Center locator of the system." + ::= { systemInfoGroup 8 } + +systemAisleName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Aisle locator of the system." + ::= { systemInfoGroup 9 } + +systemRackName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Rack locator of the system." + ::= { systemInfoGroup 10 } + +systemRackSlot OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Rack Slot locator of the system." + ::= { systemInfoGroup 11 } + +systemModelName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the model name of the system." + ::= { systemInfoGroup 12 } + +systemSystemID OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the system ID of the system." + ::= { systemInfoGroup 13 } + +systemOSVersion OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the version of the operating system that the + host is running." + ::= { systemInfoGroup 14 } + +systemRoomName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Room locator of the system." + ::= { systemInfoGroup 15 } + +systemChassisSystemHeight OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the height of the system, in 'U's. + A U is a standard unit of measure for the height of a rack or + rack-mountable component. + (If not applicable, a 'no such name' error is returned.)" + ::= { systemInfoGroup 16 } + +systemBladeGeometry OBJECT-TYPE + SYNTAX BladeGeometryEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the geometry for a modular system. + (If not applicable, a 'no such name' error is returned.)" + ::= { systemInfoGroup 17 } + +systemNodeID OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the node ID of the system. The node ID + provides a unique identifier for the system." + ::= { systemInfoGroup 18 } + + +------------------------------------------------------------------------------ +-- Status Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.2..0 +------------------------------------------------------------------------------ + +globalSystemStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the overall rollup status of all + components in the system being monitored by the remote + access card. Includes system, storage, IO devices, iDRAC, + CPU, memory, etc." + ::= { statusGroup 1 } + +systemLCDStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the system status as it is reflected by + the LCD front panel. Not all system components may be included." + ::= { statusGroup 2 } + +globalStorageStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the overall storage status being + monitored by the remote access card." + ::= { statusGroup 3 } + +systemPowerState OBJECT-TYPE + SYNTAX PowerStateStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the power state of the system." + ::= { statusGroup 4 } + +systemPowerUpTime OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the power-up time of the system in seconds." + ::= { statusGroup 5 } + + +------------------------------------------------------------------------------ +-- Alert Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3 +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- Alert Variables Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.1..0 +------------------------------------------------------------------------------ + +alertMessageID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Message ID of the event." + ::= { alertVariablesGroup 1 } + +alertMessage OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Message describing the alert." + ::= { alertVariablesGroup 2 } + +alertCurrentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current status of object causing the alert, if applicable." + ::= { alertVariablesGroup 3 } + +alertSystemServiceTag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service tag of the system." + ::= { alertVariablesGroup 4 } + +alertSystemFQDN OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fully qualified domain name of the system." + ::= { alertVariablesGroup 5 } + +alertFQDD OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fully qualified device descriptor of the device." + ::= { alertVariablesGroup 6 } + +alertDeviceDisplayName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display name of the device/FQDD." + ::= { alertVariablesGroup 7 } + +alertMessageArguments OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Concatenated set of strings representing the message arguments of the + event. Each message argument string is enclosed in double quotes, + and there is a comma after the ending double quote of each message + argument string, except the last one. Any double quotes found within + a message argument string are preprocessed and changed to single + quotes." + ::= { alertVariablesGroup 8 } + +alertChassisServiceTag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For modular systems, the service tag of the enclosing chassis. + For rack and tower systems, this varbind will be empty (zero + length)." + ::= { alertVariablesGroup 9 } + +alertChassisName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For modular systems, the chassis name of the enclosing chassis. + For rack and tower systems, this varbind will be empty (zero + length)." + ::= { alertVariablesGroup 10 } + +alertRacFQDN OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fully qualified domain name of the remote access card." + ::= { alertVariablesGroup 11 } + + +------------------------------------------------------------------------------- +-- System Details Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- MIB Version Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1..0 +------------------------------------------------------------------------------- + +mIBMajorVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0001.0001 This attribute defines the major version number for the + version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 1 } + +mIBMinorVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0001.0002 This attribute defines the minor version number for the + version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 2 } + +mIBMaintenanceVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0001.0003 This attribute defines the maintenance version number for + the version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 3 } + + +------------------------------------------------------------------------------- +-- System State Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.200 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System State Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.200.10.1.. +------------------------------------------------------------------------------- + +SystemStateTableEntry ::= SEQUENCE { + systemStatechassisIndex ObjectRange, + systemStateGlobalSystemStatus ObjectStatusEnum, + systemStateChassisState StateSettingsFlags, + systemStateChassisStatus ObjectStatusEnum, + systemStatePowerUnitStateDetails OCTET STRING, + systemStatePowerUnitStatusRedundancy StatusRedundancyEnum, + systemStatePowerUnitStatusDetails OCTET STRING, + systemStatePowerSupplyStateDetails OCTET STRING, + systemStatePowerSupplyStatusCombined ObjectStatusEnum, + systemStatePowerSupplyStatusDetails OCTET STRING, + systemStateVoltageStateDetails OCTET STRING, + systemStateVoltageStatusCombined ObjectStatusEnum, + systemStateVoltageStatusDetails OCTET STRING, + systemStateAmperageStateDetails OCTET STRING, + systemStateAmperageStatusCombined ObjectStatusEnum, + systemStateAmperageStatusDetails OCTET STRING, + systemStateCoolingUnitStateDetails OCTET STRING, + systemStateCoolingUnitStatusRedundancy StatusRedundancyEnum, + systemStateCoolingUnitStatusDetails OCTET STRING, + systemStateCoolingDeviceStateDetails OCTET STRING, + systemStateCoolingDeviceStatusCombined ObjectStatusEnum, + systemStateCoolingDeviceStatusDetails OCTET STRING, + systemStateTemperatureStateDetails OCTET STRING, + systemStateTemperatureStatusCombined ObjectStatusEnum, + systemStateTemperatureStatusDetails OCTET STRING, + systemStateMemoryDeviceStateDetails OCTET STRING, + systemStateMemoryDeviceStatusCombined ObjectStatusEnum, + systemStateMemoryDeviceStatusDetails OCTET STRING, + systemStateChassisIntrusionStateDetails OCTET STRING, + systemStateChassisIntrusionStatusCombined ObjectStatusEnum, + systemStateChassisIntrusionStatusDetails OCTET STRING, + systemStatePowerUnitStatusCombined ObjectStatusEnum, + systemStatePowerUnitStatusList OCTET STRING, + systemStateCoolingUnitStatusCombined ObjectStatusEnum, + systemStateCoolingUnitStatusList OCTET STRING, + systemStateProcessorDeviceStatusCombined ObjectStatusEnum, + systemStateProcessorDeviceStatusList OCTET STRING, + systemStateBatteryStatusCombined ObjectStatusEnum, + systemStateBatteryStatusList OCTET STRING, + systemStateSDCardUnitStatusCombined ObjectStatusEnum, + systemStateSDCardUnitStatusList OCTET STRING, + systemStateSDCardDeviceStatusCombined ObjectStatusEnum, + systemStateSDCardDeviceStatusList OCTET STRING, + systemStateIDSDMCardUnitStatusCombined ObjectStatusEnum, + systemStateIDSDMCardUnitStatusList OCTET STRING, + systemStateIDSDMCardDeviceStatusCombined ObjectStatusEnum, + systemStateIDSDMCardDeviceStatusList OCTET STRING, + systemStateTemperatureStatisticsStateDetails OCTET STRING, + systemStateTemperatureStatisticsStatusCombined ObjectStatusEnum, + systemStateTemperatureStatisticsStatusDetails OCTET STRING +} + +systemStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemStateTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0200.0010 This object defines the System State Table." + ::= { systemStateGroup 10 } + +systemStateTableEntry OBJECT-TYPE + SYNTAX SystemStateTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0200.0010.0001 This object defines the System State Table Entry." + INDEX { systemStatechassisIndex } + ::= { systemStateTable 1 } + +systemStatechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0001 This attribute defines the index (one based) of + this system chassis." + ::= { systemStateTableEntry 1 } + +systemStateGlobalSystemStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0002 This attribute defines the global system status + of all system chassis being monitored by the systems management software." + ::= { systemStateTableEntry 2 } + +systemStateChassisState OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0003 This attribute defines the state settings of this + system chassis." + ::= { systemStateTableEntry 3 } + +systemStateChassisStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0004 This attribute defines the status of this system + chassis." + ::= { systemStateTableEntry 4 } + +systemStatePowerUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0005 This attribute lists the state settings of each + power unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a power unit. The first byte returned represents the state settings + of the first power unit, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 5 } + +systemStatePowerUnitStatusRedundancy OBJECT-TYPE + SYNTAX StatusRedundancyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0006 This attribute defines the combined redundancy status + of all power units of this system." + ::= { systemStateTableEntry 6 } + +systemStatePowerUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0007 This attribute lists the redundancy status of each + power unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the redundancy status + of a power unit. The first byte returned represents the redundancy status + of the first power unit, etc. The bytes have the same definition type as + StatusRedundancyEnum." + ::= { systemStateTableEntry 7 } + +systemStatePowerSupplyStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0008 This attribute lists the state settings of each + power supply of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a power supply. The first byte returned represents the state settings + of the first power supply, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 8 } + +systemStatePowerSupplyStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0009 This attribute defines the combined status of all + power supplies of this system." + ::= { systemStateTableEntry 9 } + +systemStatePowerSupplyStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0010 This attribute lists the status of each power supply + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a power supply. + The first byte returned represents the status of the first power supply, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 10 } + +systemStateVoltageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0011 This attribute lists the state settings of each + voltage probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a voltage probe. The first byte returned represents the state settings + of the first voltage probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 11 } + +systemStateVoltageStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0012 This attribute defines the combined status of all + voltage probes of this system." + ::= { systemStateTableEntry 12 } + +systemStateVoltageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0013 This attribute lists the status of each voltage probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a voltage probe. + The first byte returned represents the status of the first voltage probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 13 } + +systemStateAmperageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0014 This attribute lists the state settings of each + amperage probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of an amperage probe. The first byte returned represents the state settings + of the first amperage probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 14 } + +systemStateAmperageStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0015 This attribute defines the combined status of all + amperage probes of this system." + ::= { systemStateTableEntry 15 } + +systemStateAmperageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0016 This attribute lists the status of each amperage probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of an amperage probe. + The first byte returned represents the status of the first amperage probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 16 } + +systemStateCoolingUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0017 This attribute lists the state settings of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a cooling unit. The first byte returned represents the state settings + of the first cooling unit, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 17 } + +systemStateCoolingUnitStatusRedundancy OBJECT-TYPE + SYNTAX StatusRedundancyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0018 This attribute defines the combined redundancy status + of all cooling units of this system." + ::= { systemStateTableEntry 18 } + +systemStateCoolingUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0019 This attribute lists the redundancy status of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the redundancy status + of a cooling unit. The first byte returned represents the redundancy status + of the first cooling unit, etc. The bytes have the same definition type as + StatusRedundancyEnum." + ::= { systemStateTableEntry 19 } + +systemStateCoolingDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0020 This attribute lists the state settings of each + cooling device of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a cooling device. The first byte returned represents the state settings + of the first cooling device, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 20 } + +systemStateCoolingDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0021 This attribute defines the combined status of all + cooling devices of this system." + ::= { systemStateTableEntry 21 } + +systemStateCoolingDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0022 This attribute lists the status of each cooling device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a cooling device. + The first byte returned represents the status of the first cooling device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 22 } + +systemStateTemperatureStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0023 This attribute lists the state settings of each + temperature probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a temperature probe. The first byte returned represents the state settings + of the first temperature probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 23 } + +systemStateTemperatureStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0024 This attribute defines the combined status of all + temperature probes of this system." + ::= { systemStateTableEntry 24 } + +systemStateTemperatureStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0025 This attribute lists the status of each temperature probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a temperature probe. + The first byte returned represents the status of the first temperature probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 25 } + +systemStateMemoryDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0026 This attribute lists the state settings of each + memory device of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a memory device. The first byte returned represents the state settings + of the first memory device, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 26 } + +systemStateMemoryDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0027 This attribute defines the combined status of all + memory devices of this system." + ::= { systemStateTableEntry 27 } + +systemStateMemoryDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0028 This attribute lists the status of each memory device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a memory device. + The first byte returned represents the status of the first memory device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 28 } + +systemStateChassisIntrusionStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0029 This attribute lists the state settings of each + intrusion detection device of this system chassis. The results are returned as + a binary octet string where each byte of the octet string represents the + state settings of an intrusion detection device. The first byte returned + represents the state settings of the first intrusion detection device, etc. + The bytes have the same definition type as StateSettingsFlags." + ::= { systemStateTableEntry 29 } + +systemStateChassisIntrusionStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0030 This attribute defines the combined status of all + intrusion detection devices of this system chassis." + ::= { systemStateTableEntry 30 } + +systemStateChassisIntrusionStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0031 This attribute lists the status of each intrusion + detection device of this system chassis. The results are returned as a binary + octet string where each byte of the octet string represents the status + of an intrusion detection device. The first byte returned represents the + status of the first intrusion detection device, etc. The bytes have the + same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 31 } + +systemStatePowerUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0042 This attribute defines the combined status + of all power units of this chassis." + ::= { systemStateTableEntry 42 } + +systemStatePowerUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0043 This attribute lists the status of each + power unit of this chassis. The results are returned as a binary octet + string where each byte of the octet string represents the status + of a power unit. The first byte returned represents the status + of the first power unit, etc. The bytes have the same definition type + as ObjectStatusEnum." + ::= { systemStateTableEntry 43 } + +systemStateCoolingUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0044 This attribute defines the combined status + of all cooling units of this system." + ::= { systemStateTableEntry 44 } + +systemStateCoolingUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0045 This attribute lists the status of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the status + of a cooling unit. The first byte returned represents the status + of the first cooling unit, etc. The bytes have the same definition type + as ObjectStatusEnum." + ::= { systemStateTableEntry 45 } + +systemStateProcessorDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0050 This attribute defines the combined status of all + processor devices of this system." + ::= { systemStateTableEntry 50 } + +systemStateProcessorDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0051 This attribute lists the status of each processor device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a processor device. + The first byte returned represents the status of the first processor device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 51 } + +systemStateBatteryStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0052 This attribute defines the combined status of all + batteries of this system." + ::= { systemStateTableEntry 52 } + +systemStateBatteryStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0053 This attribute lists the status of each battery + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a battery. + The first byte returned represents the status of the first battery, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 53 } + +systemStateSDCardUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0054 This attribute defines the combined status + of all SD Card units of this system." + ::= { systemStateTableEntry 54 } + +systemStateSDCardUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0055 This attribute lists the status of each + SD Card unit of this system. The results are returned as a binary + octet string where each byte of the octet string represents the status + of a SD Card unit. The first byte returned represents the status + of the first SD Card unit, etc. The bytes have the same definition + type as ObjectStatusEnum." + ::= { systemStateTableEntry 55 } + +systemStateSDCardDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0056 This attribute defines the combined status of all + SD Card devices of this system." + ::= { systemStateTableEntry 56 } + +systemStateSDCardDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0057 This attribute lists the status of each SD Card device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a SD Card device. + The first byte returned represents the status of the first SD Card device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 57 } + +systemStateIDSDMCardUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0058 This attribute defines the combined status + of all IDSDM Card units of this system." + ::= { systemStateTableEntry 58 } + +systemStateIDSDMCardUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0059 This attribute lists the status of each + IDSDM Card unit of this system. The results are returned as a binary + octet string where each byte of the octet string represents the status + of an IDSDM Card unit. The first byte returned represents the status + of the first IDSDM Card unit, etc. The bytes have the same definition + type as ObjectStatusEnum." + ::= { systemStateTableEntry 59 } + +systemStateIDSDMCardDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0060 This attribute defines the combined status of all + IDSDM Card devices of this system." + ::= { systemStateTableEntry 60 } + +systemStateIDSDMCardDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0061 This attribute lists the status of each IDSDM Card device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of an IDSDM Card device. + The first byte returned represents the status of the first IDSDM Card device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 61 } + +systemStateTemperatureStatisticsStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0062 This attribute lists the state settings of each + temperature statistics object of this system. The results are returned + as a binary octet string where each byte of the octet string represents + the state settings of a temperature statistics object. The first byte + returned represents the state settings of the first temperature + statistics object, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 62 } + +systemStateTemperatureStatisticsStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0063 This attribute defines the combined status of all + temperature statistics objects of this system." + ::= { systemStateTableEntry 63 } + +systemStateTemperatureStatisticsStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0064 This attribute lists the status of each + temperature statistics object of this system. The results are returned + as a binary octet string where each byte of the octet string represents + the status of a temperature statistics object. The first byte returned + represents the status of the first temperature statistics object, etc. + The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 64 } + + +------------------------------------------------------------------------------- +-- Chassis Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300 +------------------------------------------------------------------------------- + +StateCapabilitiesLogUniqueFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Capabilities Log Unique Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state capabilities are unknown + onlineCapable(2), -- log can be enabled (online) or disabled (offline) + notReadyCapable(4), -- log can be not ready + resetCapable(8) -- log can be reset +} + +StateSettingsLogUniqueFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Settings Log Unique Flags." + SYNTAX INTEGER { +-- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state settings are unknown + online(2), -- log is enabled (online) + notReady(4), -- log is not ready + reset(8) -- reset log +} + +LogFormatType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Log Format Type." + SYNTAX INTEGER { + raw(1), -- format is Raw + ascii(2), -- format is ASCII + uniCode(3) -- format is Unicode +} + + +------------------------------------------------------------------------------- +-- Chassis Information Group Attributes +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300..0 +------------------------------------------------------------------------------- + +numEventLogEntries OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0001.0000 This attribute provides the number of entries + currently in the eventLogTable." + ::= { chassisInformationGroup 1 } + +-- Note: You can only access the numLCLogEntries attribute via SNMPv3 queries. +-- Access to the attribute is blocked for SNMPv1 and SNMPv2c queries. +numLCLogEntries OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0002.0000 This attribute provides the number of entries + currently in the lcLogTable. + Note: This attribute can only be accessed via SNMPv3 queries." + ::= { chassisInformationGroup 2 } + + +------------------------------------------------------------------------------- +-- Chassis Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.10.1.. +------------------------------------------------------------------------------- + +ChassisTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Chassis Type Enum." + SYNTAX INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + desktop(3), -- type is Desktop + lowProfileDesktop(4), -- type is Low Profile Desktop + pizzaBox(5), -- type is Pizza Box + miniTower(6), -- type is MiniTower + tower(7), -- type is Tower + portable(8), -- type is Portable + lapTop(9), -- type is Laptop + noteBook(10), -- type is Notebook + handHeld(11), -- type is Handheld + dockingStation(12), -- type is Docking Station + allInOne(13), -- type is All-In-One + subNoteBook(14), -- type is SubNotebook + spaceSaving(15), -- type is Spacesaver + lunchBox(16), -- type is Lunchbox + mainSystemChassis(17), -- type is Main System Chassis + expansionChassis(18), -- type is Expansion Chassis + subChassis(19), -- type is SubChassis + busExpansionChassis(20), -- type is Bus Expansion Chassis + peripheralChassis(21), -- type is Peripheral Chassis + raidChassis(22), -- type is RAID Chassis + rackMountChassis(23), -- type is Rack-mounted Chassis + sealedCasePC(24), -- type is Sealed-case PC + multiSystemChassis(25) -- type is Multi-system Chassis +} + +ChassisSystemClassEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Chassis System Class Enum." + SYNTAX INTEGER { + other(1), -- class is other than following values + unknown(2), -- class is unknown + workstationClass(3), -- class is Workstation + serverClass(4), -- class is Server + desktopClass(5), -- class is Desktop + portableClass(6), -- class is Portable + netPCClass(7), -- class is Net PC + storageClass(8) -- class is Storage +} + +LEDControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "LED Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no LED Control capabilities + unknown(1), -- LED control capabilities are unknown + alertOnErrorCapable(2), -- LED can alert on error condition + alertOnWarningAndErrorCapable(4), -- LED can alert on error and warning condition + alertOnWarningOrErrorCapable(6) -- LED can alert on error or warning condition +} + +LEDControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "LED Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no LED Control settings + unknown(1), -- LED control settings are unknown + alertOnError(2), -- LED set to alert on error condition + alertOnWarningAndError(4) -- LED set to alert on error or warning condition +} + +ChassisIdentifyControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Chassis Identify Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Chassis Identify Control capabilities + unknownCapabilities(1), -- chassis identify capabilities are unknown + -- The objects capabilities allow it to be set to: + enableCapable(2), -- chassis identify can be enabled (online) or disabled (offline) + notReadyCapable(4), -- chassis identify can be not ready + identifyCapable(8) -- chassis idenfity can be made to identify chassis +} + +ChassisIdentifyControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Chassis Identify Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Chassis Identify Control settings + unknown(1), -- chassis identify settings are unknown + enabled(2), -- chassis identify is enabled (online) + notReady(4), -- chassis identify is not ready + identifyChassis(8), -- identify chassis + identifyChassisAndEnable(10) -- identify chassis and enabled +} + +HostControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Host Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Host Control capabilities + manualRebootCapable(1), -- host can be rebooted + manualPowerOFFCapable(2), -- host can be powered off + manualPowerCycleCapable(4), -- host can be power cycled + manualAllExceptOperatingSystemShutdownCapable(7), -- all host control capabilities except OS shutdown + manualOperatingSystemShutdownCapable(8), -- operating system can be shutdown + manualFullyCapable(15), -- all host control capabilities + manualRebootWithOSShutdownCapable(16), -- host can be rebooted with operating system shutdown + manualRebootWithoutOSShutdownCapable(32), -- host can be rebooted without operating system shutdown + manualPowerOffWithOSShutdownCapable(64), -- host can be powered off with operating system shutdown + manualPowerOffWithoutOSShutdownCapable(128),-- host can be powered off without operating system shutdown + manualPowerCycleWithOSShutdownCapable(256), -- host can be power cycled with operating system shutdown + manualPowerCycleWithoutOSShutdownCapable(512) -- host can be power cycled with operating system shutdown +} + +HostControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Host Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Host Control settings + manualReboot(1), -- reboot host + manualPowerOFF(2), -- power off host + manualPowerCycle(4), -- power cycle host + manualOperatingSystemShutdown(8), -- shutdown operating system on host + manualOperatingSystemShutdownThenReboot(9), -- shutdown operating system on host then reboot host + manualOperatingSystemShutdownThenPowerOFF(10), -- shutdown operating system on host then power off host + manualOperatingSystemShutdownThenPowerCycle(12) -- shutdown operating system on host then power cycle host +} + +WatchDogControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "WatchDog Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Watchdog Control capabilities + automaticRebootCapable(1), -- watchdog can reboot host + automaticPowerCycleCapable(2), -- watchdog can power cycle host + automaticNotificationCapable(4), -- watchdog can notify + automaticWatchDogTimerCapable(8), -- watchdog supports timer + automaticPowerOffCapable(16), -- watchdog can power off host + automaticAllExceptNotificationCapable(27), -- all capabilities except notification + automaticFullyCapable(31) -- all watchdog control capabilities +} + +WatchControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "WatchDog Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Watchdog Control settings + automaticRebootEnabled(1), -- watchdog set for automatic reboot + automaticPowerCycleEnabled(2), -- watchdog set for automatic power cycle + automaticNotificationEnabled(4), -- watchdog set for automatic notification + automaticPowerOffEnabled(8) -- watchdog set for automatic power off +} + +WatchDogTimerCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "WatchDog Timer Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Watchdog Timer capabilities + type1Capable(1), -- watchdog can time in range of 20-480 seconds + type2Capable(2), -- watchdog can time in 30, 60, 120 and 480 second intervals + type3Capable(4) -- watchdog can time in 60 second intervals +} + +PowerButtonControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Button Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Power Button Control capabilities + unknownCapabilities(1), -- power button capabilities are unknown + enableCapable(2) -- power button can be enabled or disabled +} + +PowerButtonControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Button Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Power Button Control settings + unknown(1), -- power button settings are unknown + enabled(2), -- power button is enabled + disabled(4) -- power button disabled +} + +NMIButtonControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "NMI Button Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no NMI Button Control capabilities + unknownCapabilities(1), -- NMI button capabilities are unknown + enableCapable(2) -- NMI button can be enabled or disabled +} + +NMIButtonControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "NMI Button Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no NMI Button Control settings + unknown(1), -- NMI button settings are unknown + enabled(2), -- NMI button is enabled + disabled(4) -- NMI button disabled +} + +SystemPropertiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Properties Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no properties + energySmart(1) -- Energy Smart system +} + +ChassisInformationTableEntry ::= SEQUENCE { + chassisIndexChassisInformation ObjectRange, + chassisStateCapabilities StateCapabilitiesFlags, + chassisStateSettings StateSettingsFlags, + chassisStatus ObjectStatusEnum, + chassisparentIndexReference ObjectRange, + chassisType ChassisTypeEnum, + chassisName String64, + chassisManufacturerName String64, + chassisModelTypeName String64, + chassisAssetTagName OCTET STRING, + chassisServiceTagName OCTET STRING, + chassisID Unsigned8BitRange, + chassisIDExtension Unsigned16BitRange, + chassisSystemClass ChassisSystemClassEnum, + chassisSystemName String64, + chassisLEDControlCapabilitiesUnique LEDControlCapabilitiesFlags, + chassisLEDControlSettingsUnique LEDControlSettingsFlags, + chassisIdentifyFlashControlCapabilities ChassisIdentifyControlCapabilitiesFlags, + chassisIdentifyFlashControlSettings ChassisIdentifyControlSettingsFlags, + chassisLockPresent BooleanType, + chassishostControlCapabilitiesUnique HostControlCapabilitiesFlags, + chassishostControlSettingsUnique HostControlSettingsFlags, + chassiswatchDogControlCapabilitiesUnique WatchDogControlCapabilitiesFlags, + chassiswatchDogControlSettingsUnique WatchControlSettingsFlags, + chassiswatchDogControlExpiryTimeCapabilitiesUnique WatchDogTimerCapabilitiesFlags, + chassiswatchDogControlExpiryTime Unsigned16BitRange, + chassisPowerButtonControlCapabilitiesUnique PowerButtonControlCapabilitiesFlags, + chassisPowerButtonControlSettingsUnique PowerButtonControlSettingsFlags, + chassisNMIButtonControlCapabilitiesUnique NMIButtonControlCapabilitiesFlags, + chassisNMIButtonControlSettingsUnique NMIButtonControlSettingsFlags, + chassisSystemProperties SystemPropertiesFlags, + chassisSystemRevisionNumber Unsigned8BitRange, + chassisSystemRevisionName String64, + chassisExpressServiceCodeName String64 +} + +chassisInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChassisInformationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0010 This object defines the Chassis Information Table." + ::= { chassisInformationGroup 10 } + +chassisInformationTableEntry OBJECT-TYPE + SYNTAX ChassisInformationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0010.0001 This object defines the Chassis Information Table Entry." + INDEX { chassisIndexChassisInformation } + ::= { chassisInformationTable 1 } + +chassisIndexChassisInformation OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { chassisInformationTableEntry 1 } + +chassisStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0002 This attribute defines the state capabilities of the system chassis." + ::= { chassisInformationTableEntry 2 } + +chassisStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0003 This attribute defines the state settings of the system chassis." + ::= { chassisInformationTableEntry 3 } + +chassisStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0004 This attribute defines the status of the system chassis." + ::= { chassisInformationTableEntry 4 } + +chassisparentIndexReference OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0005 This attribute defines the index (one based) to the + parent system of this system chassis, if any." + ::= { chassisInformationTableEntry 5 } + +chassisType OBJECT-TYPE + SYNTAX ChassisTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0006 This attribute defines the system type of the system chassis." + ::= { chassisInformationTableEntry 6 } + +chassisName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0007 This attribute defines the user-assigned name of the system chassis." + ::= { chassisInformationTableEntry 7 } + +chassisManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0008 This attribute defines the name of the manufacturer + of the system chassis." + ::= { chassisInformationTableEntry 8 } + +chassisModelTypeName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0009 This attribute defines the system model type of the system chassis." + ::= { chassisInformationTableEntry 9 } + +chassisAssetTagName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0010 This attribute defines the asset tag name of the system chassis." + ::= { chassisInformationTableEntry 10 } + +chassisServiceTagName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0011 This attribute defines the service tag name of the system chassis." + ::= { chassisInformationTableEntry 11 } + +chassisID OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0012 This attribute defines the system ID. If the value + is 254 (0xFE), the attribute systemIDExtension provides the system ID." + ::= { chassisInformationTableEntry 12 } + +chassisIDExtension OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0013 This attribute defines the system ID extension." + ::= { chassisInformationTableEntry 13 } + +chassisSystemClass OBJECT-TYPE + SYNTAX ChassisSystemClassEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0014 This attribute defines the system class." + ::= { chassisInformationTableEntry 14 } + +chassisSystemName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0015 This attribute defines the host name of the system chassis." + ::= { chassisInformationTableEntry 15 } + +chassisLEDControlCapabilitiesUnique OBJECT-TYPE + SYNTAX LEDControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0024 This attribute defines the capabilities of the + LED control hardware in the system chassis." + ::= { chassisInformationTableEntry 24 } + +chassisLEDControlSettingsUnique OBJECT-TYPE + SYNTAX LEDControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0025 This attribute defines the reading and setting of the + LED control hardware in the system chassis." + ::= { chassisInformationTableEntry 25 } + +chassisIdentifyFlashControlCapabilities OBJECT-TYPE + SYNTAX ChassisIdentifyControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0028 This attribute defines if the system allows setting + of the system front panel LED to flash." + ::= { chassisInformationTableEntry 28 } + +chassisIdentifyFlashControlSettings OBJECT-TYPE + SYNTAX ChassisIdentifyControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0029 This attribute setting causes the system front panel + LED to flash." + ::= { chassisInformationTableEntry 29 } + +chassisLockPresent OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0030 If true, a system lock is present on the system chassis." + ::= { chassisInformationTableEntry 30 } + +chassishostControlCapabilitiesUnique OBJECT-TYPE + SYNTAX HostControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0031 This attribute defines the capabilities of the + host control function." + ::= { chassisInformationTableEntry 31 } + +chassishostControlSettingsUnique OBJECT-TYPE + SYNTAX HostControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0032 This attribute defines the settings of the + host control function." + ::= { chassisInformationTableEntry 32 } + +chassiswatchDogControlCapabilitiesUnique OBJECT-TYPE + SYNTAX WatchDogControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0033 This attribute defines the capabilities of the + watchdog control function." + ::= { chassisInformationTableEntry 33 } + +chassiswatchDogControlSettingsUnique OBJECT-TYPE + SYNTAX WatchControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0034 This attribute defines the settings of the + watchdog control function." + ::= { chassisInformationTableEntry 34 } + +chassiswatchDogControlExpiryTimeCapabilitiesUnique OBJECT-TYPE + SYNTAX WatchDogTimerCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0035 This attribute defines the capabilities of the + watchdog control expiry timer function." + ::= { chassisInformationTableEntry 35 } + +chassiswatchDogControlExpiryTime OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0036 This attribute defines the current watchdog timer + value in seconds." + ::= { chassisInformationTableEntry 36 } + +chassisPowerButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX PowerButtonControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0038 This attribute defines the capabilities of the + power button control hardware in the system chassis." + ::= { chassisInformationTableEntry 38 } + +chassisPowerButtonControlSettingsUnique OBJECT-TYPE + SYNTAX PowerButtonControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0039 This attribute defines the reading and setting of + the power button control hardware in the system chassis." + ::= { chassisInformationTableEntry 39 } + +chassisNMIButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX NMIButtonControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0044 This attribute defines the capabilities of the + NMI button control hardware in the system chassis." + ::= { chassisInformationTableEntry 44 } + +chassisNMIButtonControlSettingsUnique OBJECT-TYPE + SYNTAX NMIButtonControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0045 This attribute defines the reading and setting of + the NMI button control hardware in the system chassis." + ::= { chassisInformationTableEntry 45 } + +chassisSystemProperties OBJECT-TYPE + SYNTAX SystemPropertiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0046 This attribute defines the properties of the system chassis." + ::= { chassisInformationTableEntry 46 } + +chassisSystemRevisionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0047 This attribute defines the revision number of the system + where zero indicates the original version of the system chassis. The revision number + is not available on all systems." + ::= { chassisInformationTableEntry 47 } + +chassisSystemRevisionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0048 This attribute defines the revision name of the system, + if applicable." + ::= { chassisInformationTableEntry 48 } + +chassisExpressServiceCodeName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0049 This attribute defines the Express Service Code of the system chassis." + ::= { chassisInformationTableEntry 49 } + + +------------------------------------------------------------------------------- +-- Event (ESM) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.40.1... +------------------------------------------------------------------------------- + +EventLogTableEntry ::= SEQUENCE { + eventLogchassisIndex ObjectRange, + eventLogRecordIndex Unsigned32BitRange, + eventLogStateCapabilitiesUnique StateCapabilitiesLogUniqueFlags, + eventLogStateSettingsUnique StateSettingsLogUniqueFlags, + eventLogRecord OCTET STRING, + eventLogFormat LogFormatType, + eventLogSeverityStatus ObjectStatusEnum, + eventLogDateName DateName +} + +eventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF EventLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0040 This object defines the Event (ESM) Log Table." + ::= { chassisInformationGroup 40 } + +eventLogTableEntry OBJECT-TYPE + SYNTAX EventLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0040.0001 This object defines the Event (ESM) Log Table Entry." + INDEX { eventLogchassisIndex, + eventLogRecordIndex } + ::= { eventLogTable 1 } + +eventLogchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { eventLogTableEntry 1 } + +eventLogRecordIndex OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0002 This attribute defines the index (one based) of the + event log record." + ::= { eventLogTableEntry 2 } + +eventLogStateCapabilitiesUnique OBJECT-TYPE + SYNTAX StateCapabilitiesLogUniqueFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0003 This attribute defines the state capabilities of the + object that is writing the event log." + ::= { eventLogTableEntry 3 } + +eventLogStateSettingsUnique OBJECT-TYPE + SYNTAX StateSettingsLogUniqueFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0004 This attribute defines the state settings of the + object that is writing the event log." + ::= { eventLogTableEntry 4 } + +eventLogRecord OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0005 This attribute defines the data of the event log record." + ::= { eventLogTableEntry 5 } + +eventLogFormat OBJECT-TYPE + SYNTAX LogFormatType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0006 This attribute defines the format of the event log record." + ::= { eventLogTableEntry 6 } + +eventLogSeverityStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0007 This attribute defines the severity of the + event log record." + ::= { eventLogTableEntry 7 } + +eventLogDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0008 This attribute defines the date and time of the + event log record." + ::= { eventLogTableEntry 8 } + + +------------------------------------------------------------------------------- +-- System BIOS Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.50.1... +------------------------------------------------------------------------------- + +SystemBIOSTableEntry ::= SEQUENCE { + systemBIOSchassisIndex ObjectRange, + systemBIOSIndex ObjectRange, + systemBIOSStateCapabilities StateCapabilitiesFlags, + systemBIOSStateSettings StateSettingsFlags, + systemBIOSStatus ObjectStatusEnum, + systemBIOSReleaseDateName DateName, + systemBIOSVersionName String64, + systemBIOSManufacturerName String64 +} + +systemBIOSTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemBIOSTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0050 This object defines the System BIOS Table." + ::= { chassisInformationGroup 50 } + +systemBIOSTableEntry OBJECT-TYPE + SYNTAX SystemBIOSTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0050.0001 This object defines the System BIOS Table Entry." + INDEX { systemBIOSchassisIndex, + systemBIOSIndex } + ::= { systemBIOSTable 1 } + +systemBIOSchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { systemBIOSTableEntry 1 } + +systemBIOSIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0002 This attribute defines the index (one based) of the + system BIOS." + ::= { systemBIOSTableEntry 2 } + +systemBIOSStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0003 This attribute defines the state capabilities of the + system BIOS." + ::= { systemBIOSTableEntry 3 } + +systemBIOSStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0004 This attribute defines the state settings of the + system BIOS." + ::= { systemBIOSTableEntry 4 } + +systemBIOSStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0005 This attribute defines the status of the system BIOS." + ::= { systemBIOSTableEntry 5 } + +systemBIOSReleaseDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0007 This attribute defines the release date name of the + system BIOS." + ::= { systemBIOSTableEntry 7 } + +systemBIOSVersionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0008 This attribute defines the version name of the + system BIOS." + ::= { systemBIOSTableEntry 8 } + +systemBIOSManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0011 This attribute defines the name of the manufacturer + of the system BIOS." + ::= { systemBIOSTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Firmware Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.60.1... +------------------------------------------------------------------------------- + +FirmwareType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Firmware Type." + SYNTAX INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + lifecycleController(20), -- type is Lifecycle Controller + iDRAC7(21), -- type is Integrated Dell Remote Access Controller 7 + iDRAC8(22) -- type is Integrated Dell Remote Access Controller 8 +} + +FirmwareTableEntry ::= SEQUENCE { + firmwarechassisIndex ObjectRange, + firmwareIndex ObjectRange, + firmwareStateCapabilities StateCapabilitiesFlags, + firmwareStateSettings StateSettingsFlags, + firmwareStatus ObjectStatusEnum, + firmwareSize Unsigned16BitRange, + firmwareType FirmwareType, + firmwareTypeName String64, + firmwareUpdateCapabilities Unsigned16BitRange, + firmwareVersionName String64 +} + +firmwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF FirmwareTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0060 This object defines the Firmware Table." + ::= { chassisInformationGroup 60 } + +firmwareTableEntry OBJECT-TYPE + SYNTAX FirmwareTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0060.0001 This object defines the Firmware Table Entry." + INDEX { firmwarechassisIndex, + firmwareIndex } + ::= { firmwareTable 1 } + +firmwarechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { firmwareTableEntry 1 } + +firmwareIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0002 This attribute defines the index (one based) of the + firmware." + ::= { firmwareTableEntry 2 } + +firmwareStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0003 This attribute defines the state capabilities of the + firmware." + ::= { firmwareTableEntry 3 } + +firmwareStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0004 This attribute defines the state settings of the + firmware." + ::= { firmwareTableEntry 4 } + +firmwareStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0005 This attribute defines the status of the firmware." + ::= { firmwareTableEntry 5 } + +firmwareSize OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0006 This attribute defines the image size of the firmware + in KBytes. Zero indicates size is unknown." + ::= { firmwareTableEntry 6 } + +firmwareType OBJECT-TYPE + SYNTAX FirmwareType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0007 This attribute defines the type of firmware." + ::= { firmwareTableEntry 7 } + +firmwareTypeName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0008 This attribute defines the type name of the firmware." + ::= { firmwareTableEntry 8 } + +firmwareUpdateCapabilities OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0009 This attribute defines the bitmap of supported methods + for firmware update." + ::= { firmwareTableEntry 9 } + +firmwareVersionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0011 This attribute defines the version of the firmware." + ::= { firmwareTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Intrusion Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.70.1... +------------------------------------------------------------------------------- + +IntrusionReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Intrusion Reading Enum." + SYNTAX INTEGER { + chassisNotBreached(1), -- chassis not breached and no uncleared breaches + chassisBreached(2), -- chassis currently breached + chassisBreachedPrior(3), -- chassis breached prior to boot and has not been cleared + chassisBreachSensorFailure(4) -- intrusion sensor has failed +} + +IntrusionTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Intrusion Type Enum." + SYNTAX INTEGER { + chassisBreachDetectionWhenPowerON(1), -- type is detect intrusion while power on + chassisBreachDetectionWhenPowerOFF(2) -- type is detect intrusion while power off +} + +IntrusionTableEntry ::= SEQUENCE { + intrusionchassisIndex ObjectRange, + intrusionIndex ObjectRange, + intrusionStateCapabilities StateCapabilitiesFlags, + intrusionStateSettings StateSettingsFlags, + intrusionStatus ObjectStatusEnum, + intrusionReading IntrusionReadingEnum, + intrusionType IntrusionTypeEnum, + intrusionLocationName String64 +} + +intrusionTable OBJECT-TYPE + SYNTAX SEQUENCE OF IntrusionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0070 This object defines the Intrusion Table." + ::= { chassisInformationGroup 70 } + +intrusionTableEntry OBJECT-TYPE + SYNTAX IntrusionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0070.0001 This object defines the Intrusion Table Entry." + INDEX { intrusionchassisIndex, + intrusionIndex } + ::= { intrusionTable 1 } + +intrusionchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { intrusionTableEntry 1 } + +intrusionIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0002 This attribute defines the index (one based) of the + intrusion sensor." + ::= { intrusionTableEntry 2 } + +intrusionStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0003 This attribute defines the state capabilities of the + intrusion sensor." + ::= { intrusionTableEntry 3 } + +intrusionStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0004 This attribute defines the state settings of the + intrusion sensor." + ::= { intrusionTableEntry 4 } + +intrusionStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0005 This attribute defines the status of the + intrusion sensor." + ::= { intrusionTableEntry 5 } + +intrusionReading OBJECT-TYPE + SYNTAX IntrusionReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0006 This attribute defines the reading of the + intrusion sensor." + ::= { intrusionTableEntry 6 } + +intrusionType OBJECT-TYPE + SYNTAX IntrusionTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0007 This attribute defines the type of the + intrusion sensor." + ::= { intrusionTableEntry 7 } + +intrusionLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0008 This attribute defines the location of the + intrusion sensor." + ::= { intrusionTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Lifecycle (LC) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.90.1... +------------------------------------------------------------------------------- + +LcLogCategoryEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "LC Log Category Enum." + SYNTAX INTEGER { + system(1), -- System Health category + storage(2), -- Storage category + updates(3), -- Updates category + audit(4), -- Audit category + configuration(5), -- Configuration category + workNotes(6) -- Work Notes category +} + +LcLogTableEntry ::= SEQUENCE { + lcLogChassisIndex ObjectRange, + lcLogRecordIndex Unsigned32BitRange, + lcLogSequenceNumber Unsigned32BitRange, + lcLogCategory LcLogCategoryEnum, + lcLogSeverityStatus ObjectStatusEnum, + lcLogDateName DateName, + lcLogFQDD FQDDString, + lcLogMessageID OCTET STRING, + lcLogMessage OCTET STRING, + lcLogDetailedDescription OCTET STRING, + lcLogRecommededAction OCTET STRING, + lcLogComment OCTET STRING +} + +-- Note: You can only access the lcLogTable table via SNMPv3 queries. +-- Access to the table is blocked for SNMPv1 and SNMPv2c queries. +lcLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0090 This object defines the Lifecycle (LC) Log Table. + Lifecycle (LC) Log table records are ordered from oldest to newest. + Note: This table can only be accessed via SNMPv3 queries." + ::= { chassisInformationGroup 90 } + +lcLogTableEntry OBJECT-TYPE + SYNTAX LcLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0090.0001 This object defines the Lifcycle (LC) Log Table Entry." + INDEX { lcLogChassisIndex, + lcLogRecordIndex } + ::= { lcLogTable 1 } + +lcLogChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0001 This attribute defines the index (one based) + of the associated system chassis." + ::= { lcLogTableEntry 1 } + +lcLogRecordIndex OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0002 This attribute defines the index (one based) + of the LC log record." + ::= { lcLogTableEntry 2 } + +lcLogSequenceNumber OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0003 This attribute defines the LC Log sequence number + of the event associated with the LC log record." + ::= { lcLogTableEntry 3 } + +lcLogCategory OBJECT-TYPE + SYNTAX LcLogCategoryEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0004 This attribute defines the category + of the event associated with the LC log record." + ::= { lcLogTableEntry 4 } + +lcLogSeverityStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0005 This attribute defines the severity + of the event associated with the LC log record." + ::= { lcLogTableEntry 5 } + +lcLogDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0006 This attribute defines the date and time + of the event associated with the LC log record." + ::= { lcLogTableEntry 6 } + +lcLogFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0007 Fully qualified device descriptor (FQDD) + of the device associated with the event associated with the LC log record." + ::= { lcLogTableEntry 7 } + +lcLogMessageID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0008 This attribute defines the Message ID + of the event associated with the LC log record." + ::= { lcLogTableEntry 8 } + +lcLogMessage OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0009 This attribute defines the message + of the event associated with the LC log record." + ::= { lcLogTableEntry 9 } + +lcLogDetailedDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2048)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0010 This attribute defines the detailed description + of the event associated with the LC log record." + ::= { lcLogTableEntry 10 } + +lcLogRecommededAction OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2048)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0011 This attribute defines an optional recommended action + associated with the event associated with the LC log record." + ::= { lcLogTableEntry 11 } + +lcLogComment OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0012 This attribute defines an optional user comment + associated with the event associated with the LC log record." + ::= { lcLogTableEntry 12 } + + + +------------------------------------------------------------------------------- +-- Power Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Power Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.10.1... +------------------------------------------------------------------------------- + +PowerUnitTableEntry ::= SEQUENCE { + powerUnitchassisIndex ObjectRange, + powerUnitIndex ObjectRange, + powerUnitStateCapabilities StateCapabilitiesFlags, + powerUnitStateSettings StateSettingsFlags, + powerUnitRedundancyStatus StatusRedundancyEnum, + powerSupplyCountForRedundancy ObjectRange, + powerUnitName String64, + powerUnitStatus ObjectStatusEnum +} + +powerUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUnitTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0010 This object defines the Power Unit Table." + ::= { powerGroup 10 } + +powerUnitTableEntry OBJECT-TYPE + SYNTAX PowerUnitTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0010.0001 This object defines the Power Unit Table Entry." + INDEX { powerUnitchassisIndex, + powerUnitIndex } + ::= { powerUnitTable 1 } + +powerUnitchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { powerUnitTableEntry 1 } + +powerUnitIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0002 This attribute defines the index (one based) of the + power unit." + ::= { powerUnitTableEntry 2 } + +powerUnitStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0003 This attribute defines the state capabilities of the + power unit." + ::= { powerUnitTableEntry 3 } + +powerUnitStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0004 This attribute defines the state settings of the + power unit." + ::= { powerUnitTableEntry 4 } + +powerUnitRedundancyStatus OBJECT-TYPE + SYNTAX StatusRedundancyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0005 This attribute defines the redundancy status of the + power unit." + ::= { powerUnitTableEntry 5 } + +powerSupplyCountForRedundancy OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0006 This attribute defines the total number of power supplies + required for this power unit to have full redundancy." + ::= { powerUnitTableEntry 6 } + +powerUnitName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0007 This attribute defines the name of the power unit." + ::= { powerUnitTableEntry 7 } + +powerUnitStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0008 This attribute defines the status of the power unit." + ::= { powerUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Power Supply Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.12.1... +------------------------------------------------------------------------------- + +PowerSupplyStateCapabilitiesUniqueFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply State Capabilities Unique Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no power supply state capabilities + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state capabilities are unknown + onlineCapable(2), -- power supply can be enabled (online) or disabled (offline) + notReadyCapable(4) -- power supply can be not ready +} + +PowerSupplyStateSettingsUniqueFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply State Settings Unique Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no power supply state settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state settings are unknown + onLine(2), -- power supply is enabled (online) + notReady(4), -- power supply is not ready + fanFailure(8), -- power supply fan has failed + onlineAndFanFailure(10), + powerSupplyIsON(16), -- power supply is supplying power + powerSupplyIsOK(32), -- power supply is indicating it is OK + acSwitchIsON(64), -- power supply is indicating AC power switch is on + onlineandAcSwitchIsON(66), + acPowerIsON(128), -- power supply is indicating AC power is on + onlineAndAcPowerIsON(130), + onlineAndPredictiveFailure(210), + acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline(242) +} + +PowerSupplyTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply Type Enum." + SYNTAX INTEGER { + powerSupplyTypeIsOther(1), -- type is other than following values + powerSupplyTypeIsUnknown(2), -- type is unknown + powerSupplyTypeIsLinear(3), -- type is Linear + powerSupplyTypeIsSwitching(4), -- type is Switching + powerSupplyTypeIsBattery(5), -- type is Battery + powerSupplyTypeIsUPS(6), -- type is Uninterruptible Power Supply + powerSupplyTypeIsConverter(7), -- type is Converter + powerSupplyTypeIsRegulator(8), -- type is Regulator + powerSupplyTypeIsAC(9), -- type is AC + powerSupplyTypeIsDC(10), -- type is DC + powerSupplyTypeIsVRM(11) -- type is VRM +} + +PowerSupplySensorStateFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply Sensor State Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + presenceDetected(1), -- state is Presence detected + psFailureDetected(2), -- state is PS Failure detected + predictiveFailure(4), -- state is Predictive Failure + psACLost(8), -- state is PS AC lost + acLostOrOutOfRange(16), -- state is AC lost or out-of-range + acOutOfRangeButPresent(32), -- state is AC out-of-range, but present + configurationError(64) -- state is Configuration error +} + +PowerSupplyConfigurationErrorTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply Configuration Error Type Enum." + SYNTAX INTEGER { + vendorMismatch(1), -- error type is Vendor mismatch + revisionMismatch(2), -- error type is Revision mismatch + processorMissing(3) -- error type is Processor missing +} + +PowerSupplyTableEntry ::= SEQUENCE { + powerSupplychassisIndex ObjectRange, + powerSupplyIndex ObjectRange, + powerSupplyStateCapabilitiesUnique PowerSupplyStateCapabilitiesUniqueFlags, + powerSupplyStateSettingsUnique PowerSupplyStateSettingsUniqueFlags, + powerSupplyStatus ObjectStatusEnum, + powerSupplyOutputWatts Signed32BitRange, + powerSupplyType PowerSupplyTypeEnum, + powerSupplyLocationName String64, + powerSupplyMaximumInputVoltage Signed32BitRange, + powerSupplypowerUnitIndexReference ObjectRange, + powerSupplySensorState PowerSupplySensorStateFlags, + powerSupplyConfigurationErrorType PowerSupplyConfigurationErrorTypeEnum, + powerSupplyPowerMonitorCapable BooleanType, + powerSupplyRatedInputWattage Signed32BitRange, + powerSupplyFQDD FQDDString, + powerSupplyCurrentInputVoltage Signed32BitRange +} + +powerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0012 This object defines the Power Supply Table." + ::= { powerGroup 12 } + +powerSupplyTableEntry OBJECT-TYPE + SYNTAX PowerSupplyTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0012.0001 This object defines the Power Supply Table Entry." + INDEX { powerSupplychassisIndex, + powerSupplyIndex } + ::= { powerSupplyTable 1 } + +powerSupplychassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { powerSupplyTableEntry 1 } + +powerSupplyIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0002 This attribute defines the index (one based) of the + power supply." + ::= { powerSupplyTableEntry 2 } + +powerSupplyStateCapabilitiesUnique OBJECT-TYPE + SYNTAX PowerSupplyStateCapabilitiesUniqueFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0003 This attribute defines the state capabilities of the + power supply." + ::= { powerSupplyTableEntry 3 } + +powerSupplyStateSettingsUnique OBJECT-TYPE + SYNTAX PowerSupplyStateSettingsUniqueFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0004 This attribute defines the state settings of the + power supply." + ::= { powerSupplyTableEntry 4 } + +powerSupplyStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0005 This attribute defines the status of the power supply." + ::= { powerSupplyTableEntry 5 } + +powerSupplyOutputWatts OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0006 This attribute defines the maximum sustained output + wattage of the power supply (in tenths of Watts)." + ::= { powerSupplyTableEntry 6 } + +powerSupplyType OBJECT-TYPE + SYNTAX PowerSupplyTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0007 This attribute defines the type of the power supply." + ::= { powerSupplyTableEntry 7 } + +powerSupplyLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0008 This attribute defines the location of the power supply." + ::= { powerSupplyTableEntry 8 } + +powerSupplyMaximumInputVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0009 This attribute defines the maximum input voltage of the + power supply (in Volts)." + ::= { powerSupplyTableEntry 9 } + +powerSupplypowerUnitIndexReference OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0010 This attribute defines the index to the associated + power unit if the power supply is part of a power unit." + ::= { powerSupplyTableEntry 10 } + +powerSupplySensorState OBJECT-TYPE + SYNTAX PowerSupplySensorStateFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0011 This attribute defines the state reported by the + power supply sensor. This attribute supplements the attribute + powerSupplyStateSettingsUnique." + ::= { powerSupplyTableEntry 11 } + +powerSupplyConfigurationErrorType OBJECT-TYPE + SYNTAX PowerSupplyConfigurationErrorTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0012 This attribute defines the type of configuration error + reported by the power supply sensor. When the configurationError bit is on + in the value for the attribute powerSupplySensorState, a value is returned + for this attribute; otherwise, a value is not returned for this attribute." + ::= { powerSupplyTableEntry 12 } + +powerSupplyPowerMonitorCapable OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0013 This attribute defines a boolean value that reports + whether the power supply is capable of monitoring power consumption." + ::= { powerSupplyTableEntry 13 } + +powerSupplyRatedInputWattage OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0014 This attribute defines the rated input wattage of the + power supply (in tenths of Watts)." + ::= { powerSupplyTableEntry 14 } + +powerSupplyFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0015 Fully qualified device descriptor (FQDD) of the + power supply." + ::= { powerSupplyTableEntry 15 } + +powerSupplyCurrentInputVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0016 This attribute defines the current input voltage to the + power supply (in Volts)." + ::= { powerSupplyTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Voltage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.20.1... +------------------------------------------------------------------------------- + +VoltageTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Voltage Type Enum." + SYNTAX INTEGER { + voltageProbeTypeIsOther(1), -- type is other than following values + voltageProbeTypeIsUnknown(2), -- type is unknown + voltageProbeTypeIs1Point5Volt(3), -- type is 1.5 volt probe + voltageProbeTypeIs3Point3Volt(4), -- type is 3.3 volt probe + voltageProbeTypeIs5Volt(5), -- type is 5 volt probe + voltageProbeTypeIsMinus5Volt(6), -- type is -5 volt probe + voltageProbeTypeIs12Volt(7), -- type is 12 volt probe + voltageProbeTypeIsMinus12Volt(8), -- type is -12 volt probe + voltageProbeTypeIsIO(9), -- type is I/O probe + voltageProbeTypeIsCore(10), -- type is Core probe + voltageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + voltageProbeTypeIsBattery(12), -- type is Battery probe + voltageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + voltageProbeTypeIs2Point5Volt(14), -- type is 2.5 volt probe + voltageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + voltageProbeTypeIsDiscrete(16), -- type is voltage probe with discrete reading + voltageProbeTypeIsGenericDiscrete(17), -- type is generic discrete reading + voltageProbeTypeIsPSVoltage(18), -- type is Power Supply voltage probe + voltageProbeTypeIsMemoryStatus(19) -- type is Memory Status probe +} + +VoltageDiscreteReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Voltage Discrete Reading Enum." + SYNTAX INTEGER { + voltageIsGood(1), -- voltage reading is Good + voltageIsBad(2) -- voltage reading is Bad +} + +VoltageProbeTableEntry ::= SEQUENCE { + voltageProbechassisIndex ObjectRange, + voltageProbeIndex ObjectRange, + voltageProbeStateCapabilities StateCapabilitiesFlags, + voltageProbeStateSettings StateSettingsFlags, + voltageProbeStatus StatusProbeEnum, + voltageProbeReading Signed32BitRange, + voltageProbeType VoltageTypeEnum, + voltageProbeLocationName String64, + voltageProbeUpperNonRecoverableThreshold Signed32BitRange, + voltageProbeUpperCriticalThreshold Signed32BitRange, + voltageProbeUpperNonCriticalThreshold Signed32BitRange, + voltageProbeLowerNonCriticalThreshold Signed32BitRange, + voltageProbeLowerCriticalThreshold Signed32BitRange, + voltageProbeLowerNonRecoverableThreshold Signed32BitRange, + voltageProbeProbeCapabilities ProbeCapabilitiesFlags, + voltageProbeDiscreteReading VoltageDiscreteReadingEnum +} + +voltageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoltageProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0020 This object defines the Voltage Probe Table." + ::= { powerGroup 20 } + +voltageProbeTableEntry OBJECT-TYPE + SYNTAX VoltageProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0020.001 This object defines the Voltage Probe Table Entry." + INDEX { voltageProbechassisIndex, + voltageProbeIndex } + ::= { voltageProbeTable 1 } + +voltageProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { voltageProbeTableEntry 1 } + +voltageProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0002 This attribute defines the index (one based) of the + voltage probe." + ::= { voltageProbeTableEntry 2 } + +voltageProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0003 This attribute defines the state capabilities of the + voltage probe." + ::= { voltageProbeTableEntry 3 } + +voltageProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0004 This attribute defines the state settings of the + voltage probe." + ::= { voltageProbeTableEntry 4 } + +voltageProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0005 This attribute defines the probe status of the + voltage probe." + ::= { voltageProbeTableEntry 5 } + +voltageProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0006 This attribute defines the reading for a voltage + probe of type other than voltageProbeTypeIsDiscrete. When the value + for voltageProbeType is other than voltageProbeTypeIsDiscrete, the value + returned for this attribute is the voltage that the probe is reading + in millivolts. When the value for voltageProbeType is + voltageProbeTypeIsDiscrete, a value is not returned for this attribute." + ::= { voltageProbeTableEntry 6 } + +voltageProbeType OBJECT-TYPE + SYNTAX VoltageTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0007 This attribute defines the type of the voltage probe." + ::= { voltageProbeTableEntry 7 } + +voltageProbeLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0008 This attribute defines the location name of the + voltage probe." + ::= { voltageProbeTableEntry 8 } + +voltageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0009 This attribute defines the upper nonrecoverable threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 9 } + +voltageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0010 This attribute defines the upper critical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 10 } + +voltageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0011 This attribute defines the upper noncritical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 11 } + +voltageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0012 This attribute defines the lower noncritical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 12 } + +voltageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0013 This attribute defines the lower critical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 13 } + +voltageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0014 This attribute defines the lower nonrecoverable threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 14 } + +voltageProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0015 This attribute defines the probe capabilities of the + voltage probe." + ::= { voltageProbeTableEntry 15 } + +voltageProbeDiscreteReading OBJECT-TYPE + SYNTAX VoltageDiscreteReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0016 This attribute defines the reading for a voltage + probe of type voltageProbeTypeIsDiscrete. When the value for voltageProbeType + is other than voltageProbeTypeIsDiscrete, a value is not returned for this + attribute. When the value for voltageProbeType is voltageProbeTypeIsDiscrete, + the value returned for this attribute is the discrete reading for the probe." + ::= { voltageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Amperage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.30.1... +------------------------------------------------------------------------------- + +AmperageProbeTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Amperage Probe Type Enum." + SYNTAX INTEGER { + amperageProbeTypeIsOther(1), -- type is other than following values + amperageProbeTypeIsUnknown(2), -- type is unknown + amperageProbeTypeIs1Point5Volt(3), -- type is 1.5 amperage probe + amperageProbeTypeIs3Point3volt(4), -- type is 3.3 amperage probe + amperageProbeTypeIs5Volt(5), -- type is 5 amperage probe + amperageProbeTypeIsMinus5Volt(6), -- type is -5 amperage probe + amperageProbeTypeIs12Volt(7), -- type is 12 amperage probe + amperageProbeTypeIsMinus12Volt(8), -- type is -12 amperage probe + amperageProbeTypeIsIO(9), -- type is I/O probe + amperageProbeTypeIsCore(10), -- type is Core probe + amperageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + amperageProbeTypeIsBattery(12), -- type is Battery probe + amperageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + amperageProbeTypeIs2Point5Volt(14), -- type is 2.5 amperage probe + amperageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + amperageProbeTypeIsDiscrete(16), -- type is amperage probe with discrete reading + amperageProbeTypeIsPowerSupplyAmps(23), -- type is Power Supply probe with reading in Amps + amperageProbeTypeIsPowerSupplyWatts(24), -- type is Power Supply probe with reading in Watts + amperageProbeTypeIsSystemAmps(25), -- type is System probe with reading in Amps + amperageProbeTypeIsSystemWatts(26) -- type is System probe with reading in Watts +} + +AmperageDiscreteReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Amperage Discrete Reading Enum." + SYNTAX INTEGER { + amperageIsGood(1), -- amperage reading is Good + amperageIsBad(2) -- amperage reading is Bad +} + +AmperageProbeTableEntry ::= SEQUENCE { + amperageProbechassisIndex ObjectRange, + amperageProbeIndex ObjectRange, + amperageProbeStateCapabilities StateCapabilitiesFlags, + amperageProbeStateSettings StateSettingsFlags, + amperageProbeStatus StatusProbeEnum, + amperageProbeReading Signed32BitRange, + amperageProbeType AmperageProbeTypeEnum, + amperageProbeLocationName String64, + amperageProbeUpperNonRecoverableThreshold Signed32BitRange, + amperageProbeUpperCriticalThreshold Signed32BitRange, + amperageProbeUpperNonCriticalThreshold Signed32BitRange, + amperageProbeLowerNonCriticalThreshold Signed32BitRange, + amperageProbeLowerCriticalThreshold Signed32BitRange, + amperageProbeLowerNonRecoverableThreshold Signed32BitRange, + amperageProbeProbeCapabilities ProbeCapabilitiesFlags, + amperageProbeDiscreteReading AmperageDiscreteReadingEnum +} + +amperageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AmperageProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0030 This object defines the Amperage Probe Table." + ::= { powerGroup 30 } + +amperageProbeTableEntry OBJECT-TYPE + SYNTAX AmperageProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0030.0001 This object defines the Amperage Probe Table Entry." + INDEX { amperageProbechassisIndex, + amperageProbeIndex } + ::= { amperageProbeTable 1 } + +amperageProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { amperageProbeTableEntry 1 } + +amperageProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0002 This attribute defines the index (one based) of the + amperage probe." + ::= { amperageProbeTableEntry 2 } + +amperageProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0003 This attribute defines the state capabilities of the + amperage probe." + ::= { amperageProbeTableEntry 3 } + +amperageProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0004 This attribute defines the state settings of the + amperage probe." + ::= { amperageProbeTableEntry 4 } + +amperageProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0005 This attribute defines the probe status of the + amperage probe." + ::= { amperageProbeTableEntry 5 } + +amperageProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0006 This attribute defines the reading for an amperage + probe of type other than amperageProbeTypeIsDiscrete. + + When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyAmps + or amperageProbeTypeIsSystemAmps, the value returned for this attribute + is the power usage that the probe is reading in tenths of Amps. + + When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyWatts + or amperageProbeTypeIsSystemWatts, the value returned for this attribute + is the power usage that the probe is reading in Watts. + + When the value for amperageProbeType is other than amperageProbeTypeIsDiscrete, + amperageProbeTypeIsPowerSupplyAmps, amperageProbeTypeIsPowerSupplyWatts, + amperageProbeTypeIsSystemAmps or amperageProbeTypeIsSystemWatts, + the value returned for this attribute is the amperage that the probe is + reading in Milliamps. + + When the value for amperageProbeType is amperageProbeTypeIsDiscrete, + a value is not returned for this attribute." + ::= { amperageProbeTableEntry 6 } + +amperageProbeType OBJECT-TYPE + SYNTAX AmperageProbeTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0007 This attribute defines the type of the amperage probe." + ::= { amperageProbeTableEntry 7 } + +amperageProbeLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0008 This attribute defines the location of the amperage probe." + ::= { amperageProbeTableEntry 8 } + +amperageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0009 This attribute defines the upper nonrecoverable threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 9 } + +amperageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0010 This attribute defines the upper critical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 10 } + +amperageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0011 This attribute defines the upper noncritical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 11 } + +amperageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0012 This attribute defines the lower noncritical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 12 } + +amperageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0013 This attribute defines the lower critical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 13 } + +amperageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0014 This attribute defines the lower nonrecoverable threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 14 } + +amperageProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0015 This attribute defines the probe capabilities of the + amperage probe." + ::= { amperageProbeTableEntry 15 } + +amperageProbeDiscreteReading OBJECT-TYPE + SYNTAX AmperageDiscreteReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0016 This attribute defines the reading for an amperage + probe of type amperageProbeTypeIsDiscrete. When the value for amperageProbeType + is other than amperageProbeTypeIsDiscrete, a value is not returned for this + attribute. When the value for amperageProbeType is amperageProbeTypeIsDiscrete, + the value returned for this attribute is the discrete reading for the probe." + ::= { amperageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- System Battery Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.50.1... +------------------------------------------------------------------------------- + +SystemBatteryReadingFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Battery Reading Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + predictiveFailure(1), -- battery predictive failure + failed(2), -- battery failed + presenceDetected(4) -- battery presence detected +} + +SystemBatteryTableEntry ::= SEQUENCE { + systemBatteryChassisIndex ObjectRange, + systemBatteryIndex ObjectRange, + systemBatteryStateCapabilities StateCapabilitiesFlags, + systemBatteryStateSettings StateSettingsFlags, + systemBatteryStatus ObjectStatusEnum, + systemBatteryReading SystemBatteryReadingFlags, + systemBatteryLocationName String64 +} + +systemBatteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemBatteryTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0050 This object defines the System Battery Table." + ::= { powerGroup 50 } + +systemBatteryTableEntry OBJECT-TYPE + SYNTAX SystemBatteryTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0050.0001 This object defines the System Battery Table Entry." + INDEX { systemBatteryChassisIndex, + systemBatteryIndex } + ::= { systemBatteryTable 1 } + +systemBatteryChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0001 This attribute defines the index (one based) of + the system chassis that contains the battery." + ::= { systemBatteryTableEntry 1 } + +systemBatteryIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0002 This attribute defines the index (one based) of the battery." + ::= { systemBatteryTableEntry 2 } + +systemBatteryStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0003 This attribute defines the state capabilities of the battery." + ::= { systemBatteryTableEntry 3 } + +systemBatteryStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0004 This attribute defines the state settings of the battery." + ::= { systemBatteryTableEntry 4 } + +systemBatteryStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0005 This attribute defines the status of the battery." + ::= { systemBatteryTableEntry 5 } + +systemBatteryReading OBJECT-TYPE + SYNTAX SystemBatteryReadingFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0006 This attribute defines the reading of the battery." + ::= { systemBatteryTableEntry 6 } + +systemBatteryLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0007 This attribute defines the location of the battery." + ::= { systemBatteryTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Power Usage Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.60.1... +------------------------------------------------------------------------------- + +PowerCapCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Cap Capabilities Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no power cap capabilities + enable(1), -- power cap can be enabled + disable(2) -- power cap can be disabled +} + +PowerCapSettingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Cap Setting Enum." + SYNTAX INTEGER { + -- disabled(0), - power cap disabled + enabled(1) -- power cap enabled +} + +PowerUsageTableEntry ::= SEQUENCE { + powerUsageChassisIndex ObjectRange, + powerUsageIndex ObjectRange, + powerUsageStateCapabilities StateCapabilitiesFlags, + powerUsageStateSettings StateSettingsFlags, + powerUsageStatus ObjectStatusEnum, + powerUsageEntityName String64, + powerUsageCumulativeWattage Unsigned32BitRange, + powerUsageCumulativeWattageStartDateName DateName, + powerUsagePeakWatts Unsigned32BitRange, + powerUsagePeakWattsStartDateName DateName, + powerUsagePeakWattsReadingDateName DateName, + powerUsagePeakAmps Unsigned32BitRange, + powerUsagePeakAmpsStartDateName DateName, + powerUsagePeakAmpsReadingDateName DateName, + powerUsageIdlePower Unsigned32BitRange, + powerUsageMaxPotentialPower Unsigned32BitRange, + powerUsagePowerCapCapabilities PowerCapCapabilitiesFlags, + powerUsagePowerCapSetting PowerCapSettingEnum, + powerUsagePowerCapValue Unsigned32BitRange, + powerUsageInstantaneousHeadroom Unsigned32BitRange, + powerUsagePeakHeadroom Unsigned32BitRange +} + +powerUsageTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUsageTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0060 This object defines the Power Usage Table." + ::= { powerGroup 60 } + +powerUsageTableEntry OBJECT-TYPE + SYNTAX PowerUsageTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0060.0001 This object defines the Power Usage Table Entry." + INDEX { powerUsageChassisIndex, + powerUsageIndex } + ::= { powerUsageTable 1 } + +powerUsageChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0001 This attribute defines the index (one based) of + the associated system chassis." + ::= { powerUsageTableEntry 1 } + +powerUsageIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0002 This attribute defines the index (one based) of the + power usage information." + ::= { powerUsageTableEntry 2 } + +powerUsageStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0003 This attribute defines the state capabilities of the + power usage information." + ::= { powerUsageTableEntry 3 } + +powerUsageStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0004 This attribute defines the state settings of the + power usage information." + ::= { powerUsageTableEntry 4 } + +powerUsageStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0005 This attribute defines the status of the + power usage information." + ::= { powerUsageTableEntry 5 } + +powerUsageEntityName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0006 This attribute defines the name of the entity + associated with this power usage information." + ::= { powerUsageTableEntry 6 } + +powerUsageCumulativeWattage OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0007 This attribute defines the total wattage used + (in Watt-hours) by this entity since the date and time specified + by the powerUsageCumulativeWattageStartDateName attribute." + ::= { powerUsageTableEntry 7 } + +powerUsageCumulativeWattageStartDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0008 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsageCumulativeWattage attribute." + ::= { powerUsageTableEntry 8 } + +powerUsagePeakWatts OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0009 This attribute defines the peak wattage reading + (in Watts) for this entity since the date and time specified by the + powerUsagePeakWattsStartDateName attribute." + ::= { powerUsageTableEntry 9 } + +powerUsagePeakWattsStartDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0010 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsagePeakWatts attribute." + ::= { powerUsageTableEntry 10 } + +powerUsagePeakWattsReadingDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0011 This attribute defines the date and time at + which the value reported by the powerUsagePeakWatts attribute was + measured." + ::= { powerUsageTableEntry 11 } + +powerUsagePeakAmps OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0012 This attribute defines the peak amperage reading + (in tenths of Amps) for this entity since the date and time specified + by the powerUsagePeakAmpsStartDateName attribute." + ::= { powerUsageTableEntry 12 } + +powerUsagePeakAmpsStartDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0013 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsagePeakAmps attribute." + ::= { powerUsageTableEntry 13 } + +powerUsagePeakAmpsReadingDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0014 This attribute defines the date and time at + which the value reported by the powerUsagePeakAmps attribute was + measured." + ::= { powerUsageTableEntry 14 } + +powerUsageIdlePower OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0015 This attribute defines the system idle power + (in Watts). This is the minimum power the system can consume + based on the current hardware configuration." + ::= { powerUsageTableEntry 15 } + +powerUsageMaxPotentialPower OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0016 This attribute defines the system maximum potential + power (in Watts). This is the maximum power the system can consume + based on the current hardware configuration." + ::= { powerUsageTableEntry 16 } + +powerUsagePowerCapCapabilities OBJECT-TYPE + SYNTAX PowerCapCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0017 This attribute defines the system power cap capabilities." + ::= { powerUsageTableEntry 17 } + +powerUsagePowerCapSetting OBJECT-TYPE + SYNTAX PowerCapSettingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0018 This attribute defines the system power cap setting." + ::= { powerUsageTableEntry 18 } + +powerUsagePowerCapValue OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0019 This attribute defines the system power cap value + (in Watts)." + ::= { powerUsageTableEntry 19 } + +powerUsageInstantaneousHeadroom OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0020 This attribute defines the system instantaneous + headroom (in Watts). This is the theoretical maximum power drawn by + the power supply minus instantaneous power draw." + ::= { powerUsageTableEntry 20 } + +powerUsagePeakHeadroom OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0021 This attribute defines the system peak headroom + (in Watts). This is the theoretical maximum power drawn by the power + supply minus peak power draw." + ::= { powerUsageTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Thermal Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cooling Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.10.1... +------------------------------------------------------------------------------- + +CoolingUnitTableEntry ::= SEQUENCE { + coolingUnitchassisIndex ObjectRange, + coolingUnitIndex ObjectRange, + coolingUnitStateCapabilties StateCapabilitiesFlags, + coolingUnitStateSettings StateSettingsFlags, + coolingUnitRedundancyStatus StatusRedundancyEnum, + coolingDeviceCountForRedundancy ObjectRange, + coolingUnitName String64, + coolingUnitStatus ObjectStatusEnum +} + +coolingUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingUnitTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0010 This object defines the Cooling Unit Table." + ::= { thermalGroup 10 } + +coolingUnitTableEntry OBJECT-TYPE + SYNTAX CoolingUnitTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0010.0001 This object defines the Cooling Unit Table Entry." + INDEX { coolingUnitchassisIndex, + coolingUnitIndex } + ::= { coolingUnitTable 1 } + +coolingUnitchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0001 This attribute defines the index (one based) of + the associated system chassis." + ::= { coolingUnitTableEntry 1 } + +coolingUnitIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0002 This attribute defines the index (one based) of the + cooling unit." + ::= { coolingUnitTableEntry 2 } + +coolingUnitStateCapabilties OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0003 This attribute defines the state capabilities of the + cooling unit." + ::= { coolingUnitTableEntry 3 } + +coolingUnitStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0004 This attribute defines the state settings of the + cooling unit." + ::= { coolingUnitTableEntry 4 } + +coolingUnitRedundancyStatus OBJECT-TYPE + SYNTAX StatusRedundancyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0005 This attribute defines the redundancy status of the + cooling unit." + ::= { coolingUnitTableEntry 5 } + +coolingDeviceCountForRedundancy OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0006 This attribute defines the total number of cooling devices + required for this cooling unit to have full redundancy." + ::= { coolingUnitTableEntry 6 } + +coolingUnitName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0007 This attribute defines the name of the cooling unit." + ::= { coolingUnitTableEntry 7 } + +coolingUnitStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0008 This attribute defines the status of the cooling unit." + ::= { coolingUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Cooling Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.12.1... +------------------------------------------------------------------------------- + +CoolingDeviceTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Cooling Device Type Enum." + SYNTAX INTEGER { + coolingDeviceTypeIsOther(1), -- type is other than following values + coolingDeviceTypeIsUnknown(2), -- type is unknown + coolingDeviceTypeIsAFan(3), -- type is Fan + coolingDeviceTypeIsABlower(4), -- type is Centrifugal Blower + coolingDeviceTypeIsAChipFan(5), -- type is Fan on Integrated Circuit + coolingDeviceTypeIsACabinetFan(6), -- type is Cabinet Fan + coolingDeviceTypeIsAPowerSupplyFan(7), -- type is Power Supply Fan + coolingDeviceTypeIsAHeatPipe(8), -- type is Heat Pipe + coolingDeviceTypeIsRefrigeration(9), -- type is Integrated Refrigeration Unit + coolingDeviceTypeIsActiveCooling(10), -- type is Active Cooling Device + coolingDeviceTypeIsPassiveCooling(11) -- type is Passive Cooling Device +} + +CoolingDeviceSubTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Cooling Device Sub Type Enum." + SYNTAX INTEGER { + coolingDeviceSubTypeIsOther(1), -- subtype is other than following values + coolingDeviceSubTypeIsUnknown(2), -- subtype is unknown + coolingDeviceSubTypeIsAFanThatReadsInRPM(3),-- subtype is Fan that reads RPM + coolingDeviceSubTypeIsAFanReadsONorOFF(4), -- subtype is Fan that reads Off or On + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM(5), -- subtype is Power Supply Fan that reads RPM + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF(6),-- subtype is Power Supply Fan that reads Off or On + coolingDeviceSubTypeIsDiscrete(16) -- subtype is cooling device with discrete reading +} + +CoolingDeviceDiscreteReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Cooling Device Discrete Reading Enum." + SYNTAX INTEGER { + coolingDeviceIsGood(1), -- cooling device is Good + coolingDeviceIsBad(2) -- cooling device is Bad +} + +CoolingDeviceTableEntry ::= SEQUENCE { + coolingDevicechassisIndex ObjectRange, + coolingDeviceIndex ObjectRange, + coolingDeviceStateCapabilities StateCapabilitiesFlags, + coolingDeviceStateSettings StateSettingsFlags, + coolingDeviceStatus StatusProbeEnum, + coolingDeviceReading Signed32BitRange, + coolingDeviceType CoolingDeviceTypeEnum, + coolingDeviceLocationName String64, + coolingDeviceUpperNonRecoverableThreshold Signed32BitRange, + coolingDeviceUpperCriticalThreshold Signed32BitRange, + coolingDeviceUpperNonCriticalThreshold Signed32BitRange, + coolingDeviceLowerNonCriticalThreshold Signed32BitRange, + coolingDeviceLowerCriticalThreshold Signed32BitRange, + coolingDeviceLowerNonRecoverableThreshold Signed32BitRange, + coolingDevicecoolingUnitIndexReference ObjectRange, + coolingDeviceSubType CoolingDeviceSubTypeEnum, + coolingDeviceProbeCapabilities ProbeCapabilitiesFlags, + coolingDeviceDiscreteReading CoolingDeviceDiscreteReadingEnum, + coolingDeviceFQDD FQDDString +} + +coolingDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0012 This object defines the Cooling Device Table." + ::= { thermalGroup 12 } + +coolingDeviceTableEntry OBJECT-TYPE + SYNTAX CoolingDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0012.0001 This object defines the Cooling Device Table Entry." + INDEX { coolingDevicechassisIndex, + coolingDeviceIndex } + ::= { coolingDeviceTable 1 } + +coolingDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { coolingDeviceTableEntry 1 } + +coolingDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0002 This attribute defines the index (one based) of the + cooling device." + ::= { coolingDeviceTableEntry 2 } + +coolingDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0003 This attribute defines the state capabilities of the + cooling device." + ::= { coolingDeviceTableEntry 3 } + +coolingDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0004 This attribute defines the state settings of the + cooling device." + ::= { coolingDeviceTableEntry 4 } + +coolingDeviceStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0005 This attribute defines the probe status of the + cooling device." + ::= { coolingDeviceTableEntry 5 } + +coolingDeviceReading OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0006 This attribute defines the reading for a cooling device + of subtype other than coolingDeviceSubTypeIsDiscrete. When the value + for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the + value returned for this attribute is the speed in RPM or the OFF/ON value + of the cooling device. When the value for coolingDeviceSubType is + coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute." + ::= { coolingDeviceTableEntry 6 } + +coolingDeviceType OBJECT-TYPE + SYNTAX CoolingDeviceTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0007 This attribute defines the type of the cooling device." + ::= { coolingDeviceTableEntry 7 } + +coolingDeviceLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0008 This attribute defines the location name of the + cooling device." + ::= { coolingDeviceTableEntry 8 } + +coolingDeviceUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0009 This attribute defines the upper nonrecoverable threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 9 } + +coolingDeviceUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0010 This attribute defines the upper critical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 10 } + +coolingDeviceUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0011 This attribute defines the upper noncritical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 11 } + +coolingDeviceLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0012 This attribute defines the lower noncritical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 12 } + +coolingDeviceLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0013 This attribute defines the lower critical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 13 } + +coolingDeviceLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0014 This attribute defines the lower nonrecoverable threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 14 } + +coolingDevicecoolingUnitIndexReference OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0015 This attribute defines the index to the associated + cooling unit." + ::= { coolingDeviceTableEntry 15 } + +coolingDeviceSubType OBJECT-TYPE + SYNTAX CoolingDeviceSubTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0016 This attribute defines the subtype of the cooling device." + ::= { coolingDeviceTableEntry 16 } + +coolingDeviceProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0017 This attribute defines the probe capabilities of the + cooling device." + ::= { coolingDeviceTableEntry 17 } + +coolingDeviceDiscreteReading OBJECT-TYPE + SYNTAX CoolingDeviceDiscreteReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0018 This attribute defines the reading for a cooling device + of type coolingDeviceSubTypeIsDiscrete. When the value for + coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, a value + is not returned for this attribute. When the value for coolingDeviceSubType + is coolingDeviceSubTypeIsDiscrete, the value returned for this attribute + is the discrete reading for the cooling device." + ::= { coolingDeviceTableEntry 18 } + +coolingDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0019 Fully qualified device descriptor (FQDD) of the + cooling device." + ::= { coolingDeviceTableEntry 19 } + + +------------------------------------------------------------------------------- +-- Temperature Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.20.1... +------------------------------------------------------------------------------- + +TemperatureProbeTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Temperature Probe Type Enum." + SYNTAX INTEGER { + temperatureProbeTypeIsOther(1), -- type is other than following values + temperatureProbeTypeIsUnknown(2), -- type is unknown + temperatureProbeTypeIsAmbientESM(3), -- type is Ambient Embedded Systems Management temperature probe + temperatureProbeTypeIsDiscrete(16) -- type is temperature probe with discrete reading +} + +TemperatureDiscreteReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Temperature Discrete Reading Enum." + SYNTAX INTEGER { + temperatureIsGood(1), -- temperature reading is Good + temperatureIsBad(2) -- temperature reading is Bad +} + +TemperatureProbeTableEntry ::= SEQUENCE { + temperatureProbechassisIndex ObjectRange, + temperatureProbeIndex ObjectRange, + temperatureProbeStateCapabilities StateCapabilitiesFlags, + temperatureProbeStateSettings StateSettingsFlags, + temperatureProbeStatus StatusProbeEnum, + temperatureProbeReading Signed32BitRange, + temperatureProbeType TemperatureProbeTypeEnum, + temperatureProbeLocationName String64, + temperatureProbeUpperNonRecoverableThreshold Signed32BitRange, + temperatureProbeUpperCriticalThreshold Signed32BitRange, + temperatureProbeUpperNonCriticalThreshold Signed32BitRange, + temperatureProbeLowerNonCriticalThreshold Signed32BitRange, + temperatureProbeLowerCriticalThreshold Signed32BitRange, + temperatureProbeLowerNonRecoverableThreshold Signed32BitRange, + temperatureProbeProbeCapabilities ProbeCapabilitiesFlags, + temperatureProbeDiscreteReading TemperatureDiscreteReadingEnum +} + +temperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0020 This object defines the Temperature Probe Table." + ::= { thermalGroup 20 } + +temperatureProbeTableEntry OBJECT-TYPE + SYNTAX TemperatureProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0020.0001 This object defines the Temperature Probe Table Entry." + INDEX { temperatureProbechassisIndex, + temperatureProbeIndex } + ::= { temperatureProbeTable 1 } + +temperatureProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { temperatureProbeTableEntry 1 } + +temperatureProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0002 This attribute defines the index (one based) of the + temperature probe." + ::= { temperatureProbeTableEntry 2 } + +temperatureProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0003 This attribute defines the state capabilities of the + temperature probe." + ::= { temperatureProbeTableEntry 3 } + +temperatureProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0004 This attribute defines the state settings of the + temperature probe." + ::= { temperatureProbeTableEntry 4 } + +temperatureProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0005 This attribute defines the probe status of the + temperature probe." + ::= { temperatureProbeTableEntry 5 } + +temperatureProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0006 This attribute defines the reading for a temperature + probe of type other than temperatureProbeTypeIsDiscrete. When the value + for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, + the value returned for this attribute is the temperature that the probe + is reading in tenths of degrees Centigrade. When the value for + temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not + returned for this attribute." + ::= { temperatureProbeTableEntry 6 } + +temperatureProbeType OBJECT-TYPE + SYNTAX TemperatureProbeTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0007 This attribute defines the type of the temperature probe." + ::= { temperatureProbeTableEntry 7 } + +temperatureProbeLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0008 This attribute defines the location name of the + temperature probe." + ::= { temperatureProbeTableEntry 8 } + +temperatureProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0009 This attribute defines the upper nonrecoverable threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 9 } + +temperatureProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0010 This attribute defines the upper critical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 10 } + +temperatureProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0011 This attribute defines the upper noncritical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 11 } + +temperatureProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0012 This attribute defines the lower noncritical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 12 } + +temperatureProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0013 This attribute defines the lower critical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 13 } + +temperatureProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0014 This attribute defines the lower nonrecoverable threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 14 } + +temperatureProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0015 This attribute defines the probe capabilities of the + temperature probe." + ::= { temperatureProbeTableEntry 15 } + +temperatureProbeDiscreteReading OBJECT-TYPE + SYNTAX TemperatureDiscreteReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0016 This attribute defines the reading for a temperature + probe of type temperatureProbeTypeIsDiscrete. When the value for + temperatureProbeType is other than temperatureProbeTypeIsDiscrete, a value + is not returned for this attribute. When the value for temperatureProbeType + is temperatureProbeTypeIsDiscrete, the value returned for this attribute + is the discrete reading for the probe." + ::= { temperatureProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Device Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Processor Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.30.1... +------------------------------------------------------------------------------- + +ProcessorDeviceType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Processor Device Type." + SYNTAX INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsCPU(3), -- type is Central Processing Unit + deviceTypeIsMathProcessor(4), -- type is Math Processor + deviceTypeIsDSP(5), -- type is Digital Signal Processor + deviceTypeIsAVideoProcessor(6) -- type is Video Processor +} + +ProcessorDeviceFamily ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Processor Device Family." + SYNTAX INTEGER { + deviceFamilyIsOther(1), -- family is Other + deviceFamilyIsUnknown(2), -- family is Unknown + deviceFamilyIs8086(3), -- family is 8086 + deviceFamilyIs80286(4), -- family is 80286 + deviceFamilyIsIntel386(5), -- family is Intel386 processor + deviceFamilyIsIntel486(6), -- family is Intel486 processor + deviceFamilyIs8087(7), -- family is 8087 + deviceFamilyIs80287(8), -- family is 80287 + deviceFamilyIs80387(9), -- family is 80387 + deviceFamilyIs80487(10), -- family is 80487 + deviceFamilyIsPentium(11), -- family is Pentium processor Family + deviceFamilyIsPentiumPro(12), -- family is Pentium Pro processor + deviceFamilyIsPentiumII(13), -- family is Pentium II processor + deviceFamilyIsPentiumMMX(14), -- family is Pentium processor with MMX technology + deviceFamilyIsCeleron(15), -- family is Celeron processor + deviceFamilyIsPentiumIIXeon(16), -- family is Pentium II Xeon processor + deviceFamilyIsPentiumIII(17), -- family is Pentium III processor + deviceFamilyIsPentiumIIIXeon(18), -- family is Pentium III Xeon processor + deviceFamilyIsPentiumIIISpeedStep(19), -- family is Pentium III Processor with Intel SpeedStep Technology + deviceFamilyIsItanium(20), -- family is Itanium processor + deviceFamilyIsIntelXeon(21), -- family is Intel Xeon + deviceFamilyIsPentium4(22), -- family is Pentium 4 Processor + deviceFamilyIsIntelXeonMP(23), -- family is Intel Xeon processor MP + deviceFamilyIsIntelItanium2(24), -- family is Intel Itanium 2 processor + deviceFamilyIsK5(25), -- family is K5 Family + deviceFamilyIsK6(26), -- family is K6 Family + deviceFamilyIsK6Dash2(27), -- family is K6-2 + deviceFamilyIsK6Dash3(28), -- family is K6-3 + deviceFamilyIsAMDAthlon(29), -- family is AMD Athlon Processor Family + deviceFamilyIsAMD2900(30), -- family is AMD2900 Family + deviceFamilyIsK6Dash2Plus(31), -- family is K6-2+ + deviceFamilyIsPowerPC(32), -- family is Power PC Family + deviceFamilyIsPowerPC601(33), -- family is Power PC 601 + deviceFamilyIsPowerPC603(34), -- family is Power PC 603 + deviceFamilyIsPowerPC603Plus(35), -- family is Power PC 603+ + deviceFamilyIsPowerPC604(36), -- family is Power PC 604 + deviceFamilyIsPowerPC620(37), -- family is Power PC 620 + deviceFamilyIsPowerPCx704(38), -- family is Power PC x704 + deviceFamilyIsPowerPC750(39), -- family is Power PC 750 + deviceFamilyIsIntelCoreDuo(40), -- family is Intel(R) Core(TM) Duo processor + deviceFamilyIsIntelCoreDuoMobile(41), -- family is Intel(R) Core(TM) Duo mobile processor + deviceFamilyIsIntelCoreSoloMobile(42), -- family is Intel(R) Core(TM) Solo mobile processor + deviceFamilyIsIntelAtom(43), -- family is Intel(R) Atom(TM) processor + deviceFamilyIsAlpha(48), -- family is Alpha Family + deviceFamilyIsAlpha21064(49), -- family is Alpha 21064 + deviceFamilyIsAlpha21066(50), -- family is Alpha 21066 + deviceFamilyIsAlpha21164(51), -- family is Alpha 21164 + deviceFamilyIsAlpha21164PC(52), -- family is Alpha 21164PC + deviceFamilyIsAlpha21164a(53), -- family is Alpha 21164a + deviceFamilyIsAlpha21264(54), -- family is Alpha 21264 + deviceFamilyIsAlpha21364(55), -- family is Alpha 21364 + deviceFamilyIsAMDTurionIIUltraDualMobileM(56), -- family is AMD Turion(TM) II Ultra Dual-Core Mobile M Processor Family + deviceFamilyIsAMDTurionIIDualMobileM(57), -- family is AMD Turion(TM) II Dual-Core Mobile M Processor Family + deviceFamilyIsAMDAthlonIIDualMobileM(58), -- family is AMD Athlon(TM) II Dual-Core Mobile M Processor Family + deviceFamilyIsAMDOpteron6100(59), -- family is AMD Opteron(TM) 6100 Series Processor + deviceFamilyIsAMDOpteron4100(60), -- family is AMD Opteron(TM) 4100 Series Processor + deviceFamilyIsAMDOpteron6200(61), -- family is AMD Opteron(TM) 6200 Series Processor + deviceFamilyIsAMDOpteron4200(62), -- family is AMD Opteron(TM) 4200 Series Processor + deviceFamilyIsMIPS(64), -- family is MIPS Family + deviceFamilyIsMIPSR4000(65), -- family is MIPS R4000 + deviceFamilyIsMIPSR4200(66), -- family is MIPS R4200 + deviceFamilyIsMIPSR4400(67), -- family is MIPS R4400 + deviceFamilyIsMIPSR4600(68), -- family is MIPS R4600 + deviceFamilyIsMIPSR10000(69), -- family is MIPS R10000 + deviceFamilyIsSPARC(80), -- family is SPARC Family + deviceFamilyIsSuperSPARC(81), -- family is SuperSPARC + deviceFamilyIsmicroSPARCII(82), -- family is microSPARC II + deviceFamilyIsmicroSPARCIIep(83), -- family is microSPARC IIep + deviceFamilyIsUltraSPARC(84), -- family is UltraSPARC + deviceFamilyIsUltraSPARCII(85), -- family is UltraSPARC II + deviceFamilyIsUltraSPARCIIi(86), -- family is UltraSPARC IIi + deviceFamilyIsUltraSPARCIII(87), -- family is UltraSPARC III + deviceFamilyIsUltraSPARCIIIi(88), -- family is UltraSPARC IIIi + deviceFamilyIs68040(96), -- family is 68040 Family + deviceFamilyIs68xxx(97), -- family is 68xxx + deviceFamilyIs68000(98), -- family is 68000 + deviceFamilyIs68010(99), -- family is 68010 + deviceFamilyIs68020(100), -- family is 68020 + deviceFamilyIs68030(101), -- family is 68030 + deviceFamilyIsHobbit(112), -- family is Hobbit Family + deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family + deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family + deviceFamilyIsEfficeonTM8000(122), -- family is Efficeon TM8000 Family + deviceFamilyIsWeitek(128), -- family is Weitek + deviceFamilyIsIntelCeleronM(130), -- family is Intel(R) Celeron(R) M processor + deviceFamilyIsAMDAthlon64(131), -- family is AMD Athlon 64 Processor Family + deviceFamilyIsAMDOpteron(132), -- family is AMD Opteron Processor Family + deviceFamilyIsAMDSempron(133), -- family is AMD Sempron Processor Family + deviceFamilyIsAMDTurion64Mobile(134), -- family is AMD Turion 64 Mobile Technology + deviceFamilyIsDualCoreAMDOpteron(135), -- family is Dual-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDAthlon64X2DualCore(136), -- family is AMD Athlon 64 X2 Dual-Core Processor Family + deviceFamilyIsAMDTurion64X2Mobile(137), -- family is AMD Turion(TM) 64 X2 Mobile Technology + deviceFamilyIsQuadCoreAMDOpteron(138), -- family is Quad-Core AMD Opteron(TM) Processor Family + deviceFamilyIsThirdGenerationAMDOpteron(139), -- family is Third-Generation AMD Opteron(TM) Processor Family + deviceFamilyIsAMDPhenomFXQuadCore(140), -- family is AMD Phenom(TM) FX Quad-Core Processor Family + deviceFamilyIsAMDPhenomX4QuadCore(141), -- family is AMD Phenom(TM) X4 Quad-Core Processor Family + deviceFamilyIsAMDPhenomX2DualCore(142), -- family is AMD Phenom(TM) X2 Dual-Core Processor Family + deviceFamilyIsAMDAthlonX2DualCore(143), -- family is AMD Athlon(TM) X2 Dual-Core Processor Family + deviceFamilyIsPARISC(144), -- family is PA-RISC Family + deviceFamilyIsPARISC8500(145), -- family is PA-RISC 8500 + deviceFamilyIsPARISC8000(146), -- family is PA-RISC 8000 + deviceFamilyIsPARISC7300LC(147), -- family is PA-RISC 7300LC + deviceFamilyIsPARISC7200(148), -- family is PA-RISC 7200 + deviceFamilyIsPARISC7100LC(149), -- family is PA-RISC 7100LC + deviceFamilyIsPARISC7100(150), -- family is PA-RISC 7100 + deviceFamilyIsV30(160), -- family is V30 Family + deviceFamilyIsQuadCoreIntelXeon3200(161), -- family is Quad-Core Intel(R) Xeon(R) processor 3200 Series + deviceFamilyIsDualCoreIntelXeon3000(162), -- family is Dual-Core Intel(R) Xeon(R) processor 3000 Series + deviceFamilyIsQuadCoreIntelXeon5300(163), -- family is Quad-Core Intel(R) Xeon(R) processor 5300 Series + deviceFamilyIsDualCoreIntelXeon5100(164), -- family is Dual-Core Intel(R) Xeon(R) processor 5100 Series + deviceFamilyIsDualCoreIntelXeon5000(165), -- family is Dual-Core Intel(R) Xeon(R) processor 5000 Series + deviceFamilyIsDualCoreIntelXeonLV(166), -- family is Dual-Core Intel(R) Xeon(R) processor LV + deviceFamilyIsDualCoreIntelXeonULV(167), -- family is Dual-Core Intel(R) Xeon(R) processor ULV + deviceFamilyIsDualCoreIntelXeon7100(168), -- family is Dual-Core Intel(R) Xeon(R) processor 7100 Series + deviceFamilyIsQuadCoreIntelXeon5400(169), -- family is Quad-Core Intel(R) Xeon(R) processor 5400 Series + deviceFamilyIsQuadCoreIntelXeon(170), -- family is Quad-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon5200(171), -- family is Dual-Core Intel(R) Xeon(R) processor 5200 Series + deviceFamilyIsDualCoreIntelXeon7200(172), -- family is Dual-Core Intel(R) Xeon(R) processor 7200 Series + deviceFamilyIsQuadCoreIntelXeon7300(173), -- family is Quad-Core Intel(R) Xeon(R) processor 7300 Series + deviceFamilyIsQuadCoreIntelXeon7400(174), -- family is Quad-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsMultiCoreIntelXeon7400(175), -- family is Multi-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsM1(176), -- family is M1 Family + deviceFamilyIsM2(177), -- family is M2 Family + deviceFamilyIsIntelPentium4HT(179), -- family is Intel(R) Pentium(R) 4 HT processor + deviceFamilyIsAS400(180), -- family is AS400 Family + deviceFamilyIsAMDAthlonXP(182), -- family is AMD Athlon XP Processor Family + deviceFamilyIsAMDAthlonMP(183), -- family is AMD Athlon MP Processor Family + deviceFamilyIsAMDDuron(184), -- family is AMD Duron Processor Family + deviceFamilyIsIntelPentiumM(185), -- family is Intel Pentium M processor + deviceFamilyIsIntelCeleronD(186), -- family is Intel Celeron D processor + deviceFamilyIsIntelPentiumD(187), -- family is Intel Pentium D processor + deviceFamilyIsIntelPentiumExtreme(188), -- family is Intel Pentium Processor Extreme Edition + deviceFamilyIsIntelCoreSolo(189), -- family is Intel(R) Core(TM) Solo processor + deviceFamilyIsIntelCore2(190), -- family is Intel(R) Core(TM)2 processor + deviceFamilyIsIntelCore2Duo(191), -- family is Intel(R) Core(TM)2 Duo processor + deviceFamilyIsIntelCore2Solo(192), -- family is Intel(R) Core(TM)2 Solo processor + deviceFamilyIsIntelCore2Extreme(193), -- family is Intel(R) Core(TM)2 Extreme processor + deviceFamilyIsIntelCore2Quad(194), -- family is Intel(R) Core(TM)2 Quad processor + deviceFamilyIsIntelCore2ExtremeMobile(195), -- family is Intel(R) Core(TM)2 Extreme mobile processor + deviceFamilyIsIntelCore2DuoMobile(196), -- family is Intel(R) Core(TM)2 Duo mobile processor + deviceFamilyIsIntelCore2SoloMobile(197), -- family is Intel(R) Core(TM)2 Solo mobile processor + deviceFamilyIsIntelCorei7(198), -- family is Intel(R) Core(TM) i7 processor + deviceFamilyIsDualCoreIntelCeleron(199), -- family is Dual-Core Intel(R) Celeron(R) Processor + deviceFamilyIsIBM390(200), -- family is IBM390 Family + deviceFamilyIsG4(201), -- family is G4 + deviceFamilyIsG5(202), -- family is G5 + deviceFamilyIsESA390G6(203), -- family is ESA/390 G6 + deviceFamilyIszArchitectur(204), -- family is z/Architectur base + deviceFamilyIsIntelCorei5(205), -- family is Intel(R) Core(TM) i5 processor + deviceFamilyIsIntelCorei3(206), -- family is Intel(R) Core(TM) i3 processor + deviceFamilyIsVIAC7M(210), -- family is VIA C7(TM)-M Processor Family + deviceFamilyIsVIAC7D(211), -- family is VIA C7(TM)-D Processor Family + deviceFamilyIsVIAC7(212), -- family is VIA C7(TM) Processor Family + deviceFamilyIsVIAEden(213), -- family is VIA Eden(TM) Processor Family + deviceFamilyIsMultiCoreIntelXeon(214), -- family is Multi-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon3xxx(215), -- family is Dual-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsQuadCoreIntelXeon3xxx(216), -- family is Quad-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsVIANano(217), -- family is VIA Nano(TM) Processor Family + deviceFamilyIsDualCoreIntelXeon5xxx(218), -- family is Dual-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsQuadCoreIntelXeon5xxx(219), -- family is Quad-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsDualCoreIntelXeon7xxx(221), -- family is Dual-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsQuadCoreIntelXeon7xxx(222), -- family is Quad-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon7xxx(223), -- family is Multi-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon3400(224), -- family is Multi-Core Intel(R) Xeon(R) processor 3400 Series + deviceFamilyIsEmbeddedAMDOpertonQuadCore(230), -- family is Embedded AMD Opteron(TM) Quad-Core Processor Family + deviceFamilyIsAMDPhenomTripleCore(231), -- family is AMD Phenom(TM) Triple-Core Processor Family + deviceFamilyIsAMDTurionUltraDualCoreMobile(232), -- family is AMD Turion(TM) Ultra Dual-Core Mobile Processor Family + deviceFamilyIsAMDTurionDualCoreMobile(233), -- family is AMD Turion(TM) Dual-Core Mobile Processor Family + deviceFamilyIsAMDAthlonDualCore(234), -- family is AMD Athlon(TM) Dual-Core Processor Family + deviceFamilyIsAMDSempronSI(235), -- family is AMD Sempron(TM) SI Processor Family + deviceFamilyIsAMDPhenomII(236), -- family is AMD Phenom(TM) II Processor Family + deviceFamilyIsAMDAthlonII(237), -- family is AMD Athlon(TM) II Processor Family + deviceFamilyIsSixCoreAMDOpteron(238), -- family is Six-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDSempronM(239), -- family is AMD Sempron(TM) M Processor Family + deviceFamilyIsi860(250), -- family is i860 + deviceFamilyIsi960(251) -- family is i960 +} + +ProcessorDeviceStatusState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Processor Device Status State." + SYNTAX INTEGER { + other(1), -- state is other than following values + unknown(2), -- state is unknown + enabled(3), -- state is enabled + userDisabled(4), -- state is disabled by user via BIOS setup + biosDisabled(5), -- state is disabled by BIOS (POST error) + idle(6) -- state is idle +} + +ProcessorDeviceTableEntry ::= SEQUENCE { + processorDevicechassisIndex ObjectRange, + processorDeviceIndex ObjectRange, + processorDeviceStateCapabilities StateCapabilitiesFlags, + processorDeviceStateSettings StateSettingsFlags, + processorDeviceStatus ObjectStatusEnum, + processorDeviceType ProcessorDeviceType, + processorDeviceManufacturerName String64, + processorDeviceStatusState ProcessorDeviceStatusState, + processorDeviceFamily ProcessorDeviceFamily, + processorDeviceMaximumSpeed Unsigned32BitRange, + processorDeviceCurrentSpeed Unsigned32BitRange, + processorDeviceExternalClockSpeed Unsigned32BitRange, + processorDeviceVoltage Signed32BitRange, + processorDeviceVersionName String64, + processorDeviceCoreCount Unsigned32BitRange, + processorDeviceCoreEnabledCount Unsigned32BitRange, + processorDeviceThreadCount Unsigned32BitRange, + processorDeviceCharacteristics Unsigned16BitRange, + processorDeviceExtendedCapabilities Unsigned16BitRange, + processorDeviceExtendedSettings Unsigned16BitRange, + processorDeviceBrandName String64, + processorDeviceFQDD FQDDString +} + +processorDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0030 This object defines the Processor Device Table." + ::= { deviceGroup 30 } + +processorDeviceTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0030.0001 This object defines the Processor Device Table Entry." + INDEX { processorDevicechassisIndex, + processorDeviceIndex } + ::= { processorDeviceTable 1 } + +processorDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { processorDeviceTableEntry 1 } + +processorDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0002 This attribute defines the index (one based) of the + processor device." + ::= { processorDeviceTableEntry 2 } + +processorDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0003 This attribute defines the state capabilities of the + processor device." + ::= { processorDeviceTableEntry 3 } + +processorDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0004 This attribute defines the state settings of the + processor device." + ::= { processorDeviceTableEntry 4 } + +processorDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0005 This attribute defines the status of the + processor device." + ::= { processorDeviceTableEntry 5 } + +processorDeviceType OBJECT-TYPE + SYNTAX ProcessorDeviceType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0007 This attribute defines the type of the processor device." + ::= { processorDeviceTableEntry 7 } + +processorDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0008 This attribute defines the name of the manufacturer + of the processor device." + ::= { processorDeviceTableEntry 8 } + +processorDeviceStatusState OBJECT-TYPE + SYNTAX ProcessorDeviceStatusState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0009 This attribute defines the status state of the + processor device." + ::= { processorDeviceTableEntry 9 } + +processorDeviceFamily OBJECT-TYPE + SYNTAX ProcessorDeviceFamily + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0010 This attribute defines the family of the + processor device." + ::= { processorDeviceTableEntry 10 } + +processorDeviceMaximumSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0011 This attribute defines the maximum speed of the + processor device in MHz. Zero indicates the maximum speed is unknown." + ::= { processorDeviceTableEntry 11 } + +processorDeviceCurrentSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0012 This attribute defines the current speed of the + processor device in MHz. Zero indicates the current speed is unknown." + ::= { processorDeviceTableEntry 12 } + +processorDeviceExternalClockSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0013 This attribute defines the speed of the + external clock for the processor device in MHz. Zero indicates + the external clock speed is unknown." + ::= { processorDeviceTableEntry 13 } + +processorDeviceVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0014 This attribute defines the voltage powering the + processor device in millivolts. Zero indicates the voltage is unknown." + ::= { processorDeviceTableEntry 14 } + +processorDeviceVersionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0016 This attribute defines the version of the + processor device. On some systems, this value contains the + brand and stepping information; on other systems, this value + contains the model and stepping information." + ::= { processorDeviceTableEntry 16 } + +processorDeviceCoreCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0017 This attribute defines the number of processor cores + detected for the processor device." + ::= { processorDeviceTableEntry 17 } + +processorDeviceCoreEnabledCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0018 This attribute defines the number of processor cores + enabled for the processor device." + ::= { processorDeviceTableEntry 18 } + +processorDeviceThreadCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0019 This attribute defines the number of processor threads + detected for the processor device." + ::= { processorDeviceTableEntry 19 } + +processorDeviceCharacteristics OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0020 This attribute defines characteristics of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + NOTE: Bits 2-15 need to be examined in the context of bit 1. + If bit 1 is set, the processor charactistics are unknown and bits 2-15 cannot + be used to determine if the functions associated with the bits are supported. + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Reserved + Bit 1 Unknown + Bit 2 64-bit capable + Bit 3-15 Reserved" + ::= { processorDeviceTableEntry 20 } + +processorDeviceExtendedCapabilities OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0021 This attribute defines extended capabilities of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) supported + Bit 2 eXecute Disable (XD) supported + Bit 3 Hyper-Threading (HT) supported + Bit 4 Turbo Mode supported" + ::= { processorDeviceTableEntry 21 } + +processorDeviceExtendedSettings OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0022 This attribute defines extended settings of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) enabled + Bit 2 eXecute Disable (XD) enabled + Bit 3 Hyper-Threading (HT) enabled + Bit 4 Turbo Mode enabled" + ::= { processorDeviceTableEntry 22 } + +processorDeviceBrandName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0023 This attribute defines the brand of the + processor device." + ::= { processorDeviceTableEntry 23 } + +processorDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0026 Fully qualified device descriptor (FQDD) of the + processor device." + ::= { processorDeviceTableEntry 26 } + + +------------------------------------------------------------------------------- +-- Processor Device Status Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.32.1... +------------------------------------------------------------------------------- + +ProcessorDeviceStatusReadingFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Processor Device Status Reading Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + internalError(1), -- Internal Error + thermalTrip(2), -- Thermal Trip + configurationError(32), -- Configuration Error + processorPresent(128), -- Processor Present + processorDisabled(256), -- Processor Disabled + terminatorPresent(512), -- Terminator Present + processorThrottled(1024) -- Processor Throttled +} + +ProcessorDeviceStatusTableEntry ::= SEQUENCE { + processorDeviceStatusChassisIndex ObjectRange, + processorDeviceStatusIndex ObjectRange, + processorDeviceStatusStateCapabilities StateCapabilitiesFlags, + processorDeviceStatusStateSettings StateSettingsFlags, + processorDeviceStatusStatus ObjectStatusEnum, + processorDeviceStatusReading ProcessorDeviceStatusReadingFlags, + processorDeviceStatusLocationName String64 +} + +processorDeviceStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceStatusTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0032 This object defines the Processor Device Status Table." + ::= { deviceGroup 32 } + +processorDeviceStatusTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceStatusTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0032.0001 This object defines the Processor Device Status Table Entry." + INDEX { processorDeviceStatusChassisIndex, + processorDeviceStatusIndex } + ::= { processorDeviceStatusTable 1 } + +processorDeviceStatusChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { processorDeviceStatusTableEntry 1 } + +processorDeviceStatusIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0002 This attribute defines the index (one based) of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 2 } + +processorDeviceStatusStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0003 This attribute defines the state capabilities of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 3 } + +processorDeviceStatusStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0004 This attribute defines the state settings of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 4 } + +processorDeviceStatusStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0005 This attribute defines the status of the + processor device status probe. This status will be joined into + the processorDeviceStatus attribute." + ::= { processorDeviceStatusTableEntry 5 } + +processorDeviceStatusReading OBJECT-TYPE + SYNTAX ProcessorDeviceStatusReadingFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0006 This attribute defines the reading of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 6 } + +processorDeviceStatusLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0007 This attribute defines the location name of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Memory Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.50.1... +------------------------------------------------------------------------------- + +MemoryDeviceTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Memory Device Type Enum." + SYNTAX INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsDRAM(3), -- type is DRAM + deviceTypeIsEDRAM(4), -- type is EDRAM + deviceTypeIsVRAM(5), -- type is VRAM + deviceTypeIsSRAM(6), -- type is SRAM + deviceTypeIsRAM(7), -- type is RAM + deviceTypeIsROM(8), -- type is ROM + deviceTypeIsFLASH(9), -- type is FLASH + deviceTypeIsEEPROM(10), -- type is EEPROM + deviceTypeIsFEPROM(11), -- type is FEPROM + deviceTypeIsEPROM(12), -- type is EPROM + deviceTypeIsCDRAM(13), -- type is CDRAM + deviceTypeIs3DRAM(14), -- type is 3DRAM + deviceTypeIsSDRAM(15), -- type is SDRAM + deviceTypeIsSGRAM(16), -- type is SGRAM + deviceTypeIsRDRAM(17), -- type is RDRAM + deviceTypeIsDDR(18), -- type is DDR + deviceTypeIsDDR2(19), -- type is DDR2 + deviceTypeIsDDR2FBDIMM(20), -- type is DDR2 FB-DIMM + deviceTypeIsDDR3(24), -- type is DDR3 + deviceTypeIsFBD2(25), -- type is FBD2 + deviceTypeIsDDR4(26) -- type is DDR4 +} + +MemoryDeviceTableEntry ::= SEQUENCE { + memoryDevicechassisIndex ObjectRange, + memoryDeviceIndex ObjectRange, + memoryDeviceStateCapabilities StateCapabilitiesFlags, + memoryDeviceStateSettings StateSettingsFlags, + memoryDeviceStatus ObjectStatusEnum, + memoryDeviceType MemoryDeviceTypeEnum, + memoryDeviceLocationName String64, + memoryDeviceBankLocationName String64, + memoryDeviceSize Unsigned32BitRange, + memoryDeviceSpeed Unsigned32BitRange, + memoryDeviceManufacturerName String64, + memoryDevicePartNumberName String64, + memoryDeviceSerialNumberName String64, + memoryDeviceFQDD FQDDString, + memoryDeviceCurrentOperatingSpeed Unsigned32BitRange +} + +memoryDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0050 This object defines the Memory Device Table." + ::= { deviceGroup 50 } + +memoryDeviceTableEntry OBJECT-TYPE + SYNTAX MemoryDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0050.0001 This object defines the Memory Device Table Entry." + INDEX { memoryDevicechassisIndex, + memoryDeviceIndex } + ::= { memoryDeviceTable 1 } + +memoryDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { memoryDeviceTableEntry 1 } + +memoryDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0002 This attribute defines the index (one based) of the + memory device." + ::= { memoryDeviceTableEntry 2 } + +memoryDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0003 This attribute defines the state capabilities of the + memory device." + ::= { memoryDeviceTableEntry 3 } + +memoryDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0004 This attribute defines the state settings of the + memory device." + ::= { memoryDeviceTableEntry 4 } + +memoryDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0005 This attribute defines the status of the memory device." + ::= { memoryDeviceTableEntry 5 } + +memoryDeviceType OBJECT-TYPE + SYNTAX MemoryDeviceTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0007 This attribute defines the type of the memory device." + ::= { memoryDeviceTableEntry 7 } + +memoryDeviceLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0008 This attribute defines the location of the memory device." + ::= { memoryDeviceTableEntry 8 } + +memoryDeviceBankLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0010 This attribute defines the location of the bank for the + memory device." + ::= { memoryDeviceTableEntry 10 } + +memoryDeviceSize OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0014 This attribute defines the size in KBytes of the + memory device. Zero indicates no memory installed; 2,147,483,647 indicates + an unknown memory size." + ::= { memoryDeviceTableEntry 14 } + +memoryDeviceSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0015 This attribute defines the maximum capable speed + in megahertz (MHz) of the memory device. Zero indicates an unknown speed." + ::= { memoryDeviceTableEntry 15 } + +memoryDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0021 This attribute defines the manufacturer of the + memory device." + ::= { memoryDeviceTableEntry 21 } + +memoryDevicePartNumberName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0022 This attribute defines the manufacturer's part number + for the memory device." + ::= { memoryDeviceTableEntry 22 } + +memoryDeviceSerialNumberName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0023 This attribute defines the serial number of the + memory device." + ::= { memoryDeviceTableEntry 23 } + +memoryDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0026 Fully qualified device descriptor (FQDD) of the + memory device." + ::= { memoryDeviceTableEntry 26 } + +memoryDeviceCurrentOperatingSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0027 This attribute defines the current operating speed + in megahertz (MHz) of the memory device. Zero indicates an unknown speed." + ::= { memoryDeviceTableEntry 27 } + + +------------------------------------------------------------------------------- +-- PCI Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.80.1... +------------------------------------------------------------------------------- + +PCIDeviceTableEntry ::= SEQUENCE { + pCIDevicechassisIndex ObjectRange, + pCIDeviceIndex ObjectRange, + pCIDeviceStateCapabilities StateCapabilitiesFlags, + pCIDeviceStateSettings StateSettingsFlags, + pCIDeviceStatus ObjectStatusEnum, + pCIDeviceDataBusWidth Unsigned32BitRange, + pCIDeviceManufacturerName String64, + pCIDeviceDescriptionName String64, + pCIDeviceFQDD FQDDString +} + +pCIDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PCIDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0080 This object defines the PCI Device Table." + ::= { deviceGroup 80 } + +pCIDeviceTableEntry OBJECT-TYPE + SYNTAX PCIDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0080.0001 This object defines the PCI Device Table Entry." + INDEX { pCIDevicechassisIndex, + pCIDeviceIndex } + ::= { pCIDeviceTable 1 } + +pCIDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { pCIDeviceTableEntry 1 } + +pCIDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0002 This attribute defines the index (one based) of the + PCI device." + ::= { pCIDeviceTableEntry 2 } + +pCIDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0003 This attribute defines the state capabilities of the + PCI device." + ::= { pCIDeviceTableEntry 3 } + +pCIDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0004 This attribute defines the state settings of the + PCI device." + ::= { pCIDeviceTableEntry 4 } + +pCIDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0005 This attribute defines the status of the PCI device." + ::= { pCIDeviceTableEntry 5 } + +pCIDeviceDataBusWidth OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0007 This attribute defines the width of the data bus + of the PCI device. This attribute contains an enumeration value. + The possible values and their meanings are defined below. + + Value Meaning + ---------- -------------- + 0x00000001 Other + 0x00000002 Unknown + 0x00000003 8 bit + 0x00000004 16 bit + 0x00000005 32 bit + 0x00000006 64 bit + 0x00000007 128 bit + 0x00000008 1x or x1 + 0x00000009 2x or x2 + 0x0000000A 4x or x4 + 0x0000000B 8x or x8 + 0x0000000C 12x or x12 + 0x0000000D 16x or x16 + 0x0000000E 32x or x32" + ::= { pCIDeviceTableEntry 7 } + +pCIDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0008 This attribute defines the name of the manufacturer + of the PCI device." + ::= { pCIDeviceTableEntry 8 } + +pCIDeviceDescriptionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0009 This attribute defines the description of the PCI device." + ::= { pCIDeviceTableEntry 9 } + +pCIDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0012 Fully qualified device descriptor (FQDD) of the + PCI device." + ::= { pCIDeviceTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Network Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.90.1... +------------------------------------------------------------------------------- + +NetworkDeviceConnectionStatusEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Network Device Connection Status Enum." + SYNTAX INTEGER { + -- unknown(0), - unable to determine connection status + connected(1), -- media reports connected + disconnected(2), -- media reports disconnected + driverBad(3), -- driver cannot be opened to determine status + driverDisabled(4), -- driver is disabled + hardwareInitalizing(10), -- hardware is initializing + hardwareResetting(11), -- hardware is resetting + hardwareClosing(12), -- hardware is closing down + hardwareNotReady(13) -- hardware is not ready +} + +NetworkDeviceTOECapabilityFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Network Device TOE Capability Flags." + SYNTAX INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for TOE capability is not supported + unknown(1), -- querying for TOE capability is supported but query returned an error + available(2), -- device has TOE capability + notAvailable(4), -- device does not have TOE capability + cannotBeDetermined(8), -- querying for TOE capability is supported but an error prevented querying + driverNotResponding(16) -- querying for TOE capability is supported but driver did not respond to query +} + +NetworkDeviceiSCSICapabilityFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Network Device iSCSI Capability Flags." + SYNTAX INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for iSCSI capability is not supported + unknown(1), -- querying for iSCSI capability is supported but query returned an error + available(2), -- device has iSCSI capability + notAvailable(4), -- device does not have iSCSI capability + cannotBeDetermined(8), -- querying for iSCSI capability is supported but an error prevented querying + driverNotResponding(16) -- querying for iSCSI capability is supported but driver did not respond to query +} + +NetworkDeviceCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Network Device Capabilities Flags." + SYNTAX INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- notSupported(0), - device does not support reporting capabilities via this attribute + supported(1), -- device supports reporting capabilities via this attribute + toe(2), -- device has TOE capability + iscsiOffload(4), -- device has iSCSI Offload capability + fcoeOffload(8) -- device has FCoE Offload capability +} + +NetworkDeviceTableEntry ::= SEQUENCE { + networkDeviceChassisIndex ObjectRange, + networkDeviceIndex ObjectRange, + networkDeviceStatus ObjectStatusEnum, + networkDeviceConnectionStatus NetworkDeviceConnectionStatusEnum, + networkDeviceProductName String64, + networkDeviceVendorName String64, + networkDeviceCurrentMACAddress MACAddress, + networkDevicePermanentMACAddress MACAddress, + networkDevicePCIBusNumber Unsigned8BitRange, + networkDevicePCIDeviceNumber Unsigned8BitRange, + networkDevicePCIFunctionNumber Unsigned8BitRange, + networkDeviceTOECapabilityFlags NetworkDeviceTOECapabilityFlags, + networkDeviceiSCSICapabilityFlags NetworkDeviceiSCSICapabilityFlags, + networkDeviceiSCSIEnabled BooleanType, + networkDeviceCapabilities NetworkDeviceCapabilitiesFlags, + networkDeviceFQDD FQDDString +} + +networkDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetworkDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0090 This object defines the Network Device Table." + ::= { deviceGroup 90 } + +networkDeviceTableEntry OBJECT-TYPE + SYNTAX NetworkDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0090.0001 This object defines the Network Device Table Entry." + INDEX { networkDeviceChassisIndex, + networkDeviceIndex } + ::= { networkDeviceTable 1 } + +networkDeviceChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0001 This attribute defines the index (one based) of the + system chassis that contains the network device." + ::= { networkDeviceTableEntry 1 } + +networkDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0002 This attribute defines the index (one based) of the + network device." + ::= { networkDeviceTableEntry 2 } + +networkDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0003 This attribute defines the status of the network device." + ::= { networkDeviceTableEntry 3 } + +networkDeviceConnectionStatus OBJECT-TYPE + SYNTAX NetworkDeviceConnectionStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0004 This attribute defines the connection status of the + network device." + ::= { networkDeviceTableEntry 4 } + +networkDeviceProductName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0006 This attribute defines the product name of the + network device." + ::= { networkDeviceTableEntry 6 } + +networkDeviceVendorName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0007 This attribute defines the name of the vendor of the + network device." + ::= { networkDeviceTableEntry 7 } + +networkDeviceCurrentMACAddress OBJECT-TYPE + SYNTAX MACAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0015 This attribute defines the current MAC address of the + network device." + ::= { networkDeviceTableEntry 15 } + +networkDevicePermanentMACAddress OBJECT-TYPE + SYNTAX MACAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0016 This attribute defines the permanent MAC address of the + network device." + ::= { networkDeviceTableEntry 16 } + +networkDevicePCIBusNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0017 This attribute defines the PCI bus number of the + network device." + ::= { networkDeviceTableEntry 17 } + +networkDevicePCIDeviceNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0018 This attribute defines the PCI device number of the + network device." + ::= { networkDeviceTableEntry 18 } + +networkDevicePCIFunctionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0019 This attribute defines the PCI function number of the + network device." + ::= { networkDeviceTableEntry 19 } + +networkDeviceTOECapabilityFlags OBJECT-TYPE + SYNTAX NetworkDeviceTOECapabilityFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0023 This attribute defines the TCP/IP Offload Engine (TOE) + capability flags of the network device." + ::= { networkDeviceTableEntry 23 } + +networkDeviceiSCSICapabilityFlags OBJECT-TYPE + SYNTAX NetworkDeviceiSCSICapabilityFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0027 This attribute defines the Internet Small Computer + System Interface (iSCSI) capability flags of the network device." + ::= { networkDeviceTableEntry 27 } + +networkDeviceiSCSIEnabled OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0028 This attribute defines if iSCSI is enabled for the + network device." + ::= { networkDeviceTableEntry 28 } + +networkDeviceCapabilities OBJECT-TYPE + SYNTAX NetworkDeviceCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0029 This attribute defines the capabilities of the network device. + If this value is notSupported(0), the networkDeviceTOECapabilityFlags, + networkDeviceiSCSICapabilityFlags and networkDeviceiSCSIEnabled attributes should + be used to determine the network device capabilities. If the supported(1) bit + is on, this attribute should be used to determine the network device capabilities, + and the attributes mentioned above should not be used. NOTE: For a network device + on Converged Network Adapter (CNA), this attribute provides capability information + for the CNA and not for the network device. For more information read vendor + documentation." + ::= { networkDeviceTableEntry 29 } + +networkDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0030 Fully qualified device descriptor (FQDD) of the + network device." + ::= { networkDeviceTableEntry 30 } + + +------------------------------------------------------------------------------- +-- Slot Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1200 +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +-- System Slot Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1200.10.1... +------------------------------------------------------------------------------- + +SystemSlotStateCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot State Capabilities Flags." + SYNTAX INTEGER { + systemSlotHotPlugIsUnknown(1), -- state capabilities are unknown + systemSlotHotPlugIsHotPluggableCapable(2), -- slot can support Hot Plug + systemSlotHotPlugCanBePoweredOn(4), -- slot power (and corresponding LED) can be powered on + systemSlotHotPlugCanSignalAttention(8), -- slot attention state (and corresponding LED) can be set + systemSlotHotPlugCanSignalPowerFault(16), -- slot power on fault (and corresponding LED) can be detected due to a short or overcurrent + systemSlotHotPlugCanSignalAdapterPresent(32), -- slot adapter (card) present in slot (may not be powered) can be detected + systemSlotHotPlugCanSignalPowerButtonPressed(64), -- slot power button can be pressed to signal a toggle of the power state + canSupportAllHotPlugCapabilities(126), -- slot can support all Hot Plug capabilities + systemSlotCanProvide5Volts(128), -- slot can provide 5 volt supply + systemSlotCanProvide3Point3Volts(256), -- slot can provide 3.3 volt supply + systemSlotCanSignalIfShared(512), -- slot opening if shared with another slot can be detected + systemSlotCanSupportCard16(1024), -- slot can support PC Card-16 + systemSlotCanSupportCardBus(2048), -- slot can support CardBus + systemSlotCanSupportZoomVideo(4096), -- slot can support Zoom Video + systemSlotCanSupportModemRingResume(8192), -- slot can support Modem Ring Resume + systemSlotCanSupportPMESignal(16384), -- slot can support Power Management Enable (PME#) signal + canSupportAllSlotCapabilities(32640), -- slot can support all Slot capabilities + canSupportAllSlotAndAllHotPlugCapabilities(32766) -- slot can support all Slot and all Hot Plug capabilities +} + +SystemSlotStateSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot State Settings Flags." + SYNTAX INTEGER { + systemSlotHotPlugIsUnknown(1), -- state settings are unknown + systemSlotHotPlugIsHotPluggable(2), -- slot supports Hot Plug + systemSlotHotPlugIsPoweredOn(4), -- slot has power (and corresponding LED) ON + systemSlotHotPlugIsAtAttention(8), -- slot is at attention state (and corresponding LED) is ON + systemSlotHotPlugHasPowerFaulted(16), -- slot has power on fault (and corresponding LED) was detected due to a short or overcurrent + systemSlotHotPlugAdapterIsPresent(32), -- slot adapter (card) present in slot (may not be powered on) + systemSlotHotPlugAdapterPresentAndPoweredOn(36), -- slot adapter (card) present in slot and powered on + systemSlotHotPlugPowerButtonPressed(64), -- slot power button pressed to signal toggle of power state + systemSlotProvides5Volts(128), -- slot provides 5 volt supply + systemSlotProvides3Point3Volts(256), -- slot provides 3.3 volt supply + systemSlotIsShared(512), -- slot opening is shared with another slot (e.g. PCI/EISA shared slot) + systemSlotSupportsCard16(1024), -- slot supports PC Card-16 + systemSlotSupportsCardBus(2048), -- slot supports CardBus + systemSlotSupportsZoomVideo(4096), -- slot supports Zoom Video + systemSlotSupportsModemRingResume(8192), -- slot supports Modem Ring Resume + systemSlotSupportsPMESignal(16384), -- slot supports Power Management Enable (PME#) signal + supportsPMEand3P3Vand5VandHotPluggable(16770), + supportsPMEand3P3Vand5VhasAdapterOn(16804), + supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable(16806), + supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable(17316) +} + +SystemSlotTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot Type Enum." + SYNTAX INTEGER { + systemSlotIsOther(1), -- type is Other + systemSlotIsUnknown(2), -- type is Unknown + systemSlotIsISA(3), -- type is ISA + systemSlotIsMCA(4), -- type is MCA + systemSlotIsEISA(5), -- type is EISA + systemSlotIsPCI(6), -- type is PCI + systemSlotIsPCMCIA(7), -- type is PCMCIA + systemSlotIsVLVESA(8), -- type is VL-VESA + systemSlotIsProprietary(9), -- type is Proprietary + systemSlotIsProcessorCard(10), -- type is Processor Card Slot + systemSlotIsProprietaryMemory(11), -- type is Proprietary Memory Card Slot + systemSlotIsIORiserCard(12), -- type is I/O Riser Card Slot + systemSlotIsNuBUS(13), -- type is NuBus + systemSlotIsPCI66MHz(14), -- type is PCI - 66MHz Capable + systemSlotIsAGP(15), -- type is AGP + systemSlotIsAGP2X(16), -- type is AGP 2X + systemSlotIsAGP4X(17), -- type is AGP 4X + systemSlotIsPC98C20(18), -- type is PC-98/C20 + systemSlotIsPC98C24(19), -- type is PC-98/C24 + systemSlotIsPC98E(20), -- type is PC-98/E + systemSlotIsPC98LocalBus(21), -- type is PC-98/Local Bus + systemSlotIsPC98Card(22), -- type is PC-98/Card + systemSlotIsPCIX(23), -- type is PCI-X + systemSlotIsPCIExpress(24), -- type is PCI Express + systemSlotIsAGP8X(25), -- type is AGP 8X + systemSlotIsPCIExpressX1(166), -- type is PCI Express x1 + systemSlotIsPCIExpressX2(167), -- type is PCI Express x2 + systemSlotIsPCIExpressX4(168), -- type is PCI Express x4 + systemSlotIsPCIExpressX8(169), -- type is PCI Express x8 + systemSlotIsPCIExpressX16(170), -- type is PCI Express x16 + systemSlotIsPCIExpressGen2(171), -- type is PCI Express Gen 2 + systemSlotIsPCIExpressGen2X1(172), -- type is PCI Express Gen 2 x1 + systemSlotIsPCIExpressGen2X2(173), -- type is PCI Express Gen 2 x2 + systemSlotIsPCIExpressGen2X4(174), -- type is PCI Express Gen 2 x4 + systemSlotIsPCIExpressGen2X8(175), -- type is PCI Express Gen 2 x8 + systemSlotIsPCIExpressGen2X16(176) -- type is PCI Express Gen 2 x16 +} + +SystemSlotUsageEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot Usage Enum." + SYNTAX INTEGER { + systemSlotUsageIsOther(1), -- usage is other than following values + systemSlotUsageIsUnknown(2), -- usage is unknown + systemSlotUsageIsAvailable(3), -- usage is available + systemSlotUsageIsInUse(4) -- usage is in use +} + +SystemSlotCategoryEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot Category Enum." + SYNTAX INTEGER { + systemSlotCategoryIsOther(1), -- category is other than following values + systemSlotCategoryIsUnknown(2), -- category is unknown + systemSlotCategoryIsBusConnector(3), -- category is Bus Connector + systemSlotCategoryIsPCMCIA(4), -- category is PCMCIA + systemSlotCategoryIsMotherboard(5) -- category is Motherboard +} + +SystemSlotTableEntry ::= SEQUENCE { + systemSlotchassisIndex ObjectRange, + systemSlotIndex ObjectRange, + systemSlotStateCapabilitiesUnique SystemSlotStateCapabilitiesFlags, + systemSlotStateSettingsUnique SystemSlotStateSettingsFlags, + systemSlotStatus ObjectStatusEnum, + systemSlotCurrentUsage SystemSlotUsageEnum, + systemSlotType SystemSlotTypeEnum, + systemSlotSlotExternalSlotName String64, + systemSlotCategory SystemSlotCategoryEnum +} + +systemSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemSlotTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1200.0010 This object defines the System Slot Table." + ::= { slotGroup 10 } + +systemSlotTableEntry OBJECT-TYPE + SYNTAX SystemSlotTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1200.0010.0001 This object defines the System Slot Table Entry." + INDEX { systemSlotchassisIndex, + systemSlotIndex } + ::= { systemSlotTable 1 } + +systemSlotchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { systemSlotTableEntry 1 } + +systemSlotIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0002 This attribute defines the index (one based) of the + system slot." + ::= { systemSlotTableEntry 2 } + +systemSlotStateCapabilitiesUnique OBJECT-TYPE + SYNTAX SystemSlotStateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0003 This attribute defines the state capabilities of the + system slot." + ::= { systemSlotTableEntry 3 } + +systemSlotStateSettingsUnique OBJECT-TYPE + SYNTAX SystemSlotStateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0004 This attribute defines the state settings of the + system slot." + ::= { systemSlotTableEntry 4 } + +systemSlotStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0005 This attribute defines the status of the system slot." + ::= { systemSlotTableEntry 5 } + +systemSlotCurrentUsage OBJECT-TYPE + SYNTAX SystemSlotUsageEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0006 This attribute defines the current usage of the + system slot." + ::= { systemSlotTableEntry 6 } + +systemSlotType OBJECT-TYPE + SYNTAX SystemSlotTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0007 This attribute defines the type of the system slot." + ::= { systemSlotTableEntry 7 } + +systemSlotSlotExternalSlotName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0008 This attribute defines the name of the external + connector name of the system slot." + ::= { systemSlotTableEntry 8 } + +systemSlotCategory OBJECT-TYPE + SYNTAX SystemSlotCategoryEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0011 This attribute defines the category of the system slot." + ::= { systemSlotTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Field Replaceable Unit (FRU) Group +-- +-- OID: 1.3.6.1.4.1.674.10892.5.4.2000 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Field Replaceable Unit (FRU) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.2000.10.1... +------------------------------------------------------------------------------- + +FruTableEntry ::= SEQUENCE { + fruChassisIndex ObjectRange, + fruIndex ObjectRange, + fruInformationStatus ObjectStatusEnum, + fruManufacturerName OCTET STRING, + fruSerialNumberName OCTET STRING, + fruPartNumberName OCTET STRING, + fruRevisionName OCTET STRING, + fruFQDD FQDDString +} + +fruTable OBJECT-TYPE + SYNTAX SEQUENCE OF FruTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "2000.0010 This object defines the Field Replaceable Unit table." + ::= { fruGroup 10 } + +fruTableEntry OBJECT-TYPE + SYNTAX FruTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "2000.0010.0001 This object defines the Field Replaceable Unit table entry." + INDEX { fruChassisIndex, + fruIndex } + ::= { fruTable 1 } + +fruChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0001 This attribute defines the index (one based) of the + system chassis containing the field replaceable unit." + ::= { fruTableEntry 1 } + +fruIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0002 This attribute defines the index (one based) of the + field replaceable unit." + ::= { fruTableEntry 2 } + +fruInformationStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0003 This attribute defines the status of the + field replaceable unit information." + ::= { fruTableEntry 3 } + +fruManufacturerName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0006 This attribute defines the manufacturer of the + field replaceable unit." + ::= { fruTableEntry 6 } + +fruSerialNumberName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0007 This attribute defines the serial number of the + field replaceable unit." + ::= { fruTableEntry 7 } + +fruPartNumberName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0008 This attribute defines the part number of the + field replaceable unit." + ::= { fruTableEntry 8 } + +fruRevisionName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0009 This attribute defines the revision of the + field replaceable unit." + ::= { fruTableEntry 9 } + +fruFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0012 Fully qualified device descriptor (FQDD) of the + field replaceable unit." + ::= { fruTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Storage Details Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Battery Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.. +------------------------------------------------------------------------------- + +BatteryTableEntry ::=SEQUENCE { + batteryNumber INTEGER, + batteryState INTEGER, + batteryComponentStatus ObjectStatusEnum, + batteryPredictedCapacity INTEGER, + batteryFQDD DisplayString, + batteryDisplayName DisplayString +} + +batteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed batteries. The number of + entries is related to number of Batteries + discovered in the system. The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 15 } + +batteryTableEntry OBJECT-TYPE + SYNTAX BatteryTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the battery table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { batteryNumber } + ::= { batteryTable 1 } + +batteryNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this battery entry. + " + ::= { batteryTableEntry 1 } + +batteryState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + degraded(4), + missing(5), + charging(6), + belowThreshold(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of battery. + Possible values: + 1: The current state could not be determined. + 2: The battery is operating normally. + 3: The battery has failed and needs to be replaced. + 4: The battery temperature is high or charge level is depleting. + 5: The battery is missing or not detected. + 6: The battery is undergoing the re-charge phase. + 7: The battery voltage or charge level is below the threshold. + " + ::= { batteryTableEntry 4 } + +batteryComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the battery itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { batteryTableEntry 6 } + +batteryPredictedCapacity OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + failed(2), + ready(3) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Use the batteryComponentStatus or + batteryState instead. + " + ::= { batteryTableEntry 10 } + +batteryFQDD OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The battery's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { batteryTableEntry 20 } + +batteryDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The battery's friendly FQDD as represented in Storage Management." + ::= { batteryTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Controller Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.. +------------------------------------------------------------------------------- + +ControllerTableEntry ::=SEQUENCE { + controllerNumber INTEGER, + controllerName DisplayString, + controllerRebuildRate INTEGER, + controllerFWVersion DisplayString, + controllerCacheSizeInMB INTEGER, + controllerRollUpStatus ObjectStatusEnum, + controllerComponentStatus ObjectStatusEnum, + controllerDriverVersion DisplayString, + controllerPCISlot DisplayString, + controllerReconstructRate INTEGER, + controllerPatrolReadRate INTEGER, + controllerBGIRate INTEGER, + controllerCheckConsistencyRate INTEGER, + controllerPatrolReadMode INTEGER, + controllerPatrolReadState INTEGER, + controllerPersistentHotSpare BooleanType, + controllerSpinDownUnconfiguredDrives BooleanType, + controllerSpinDownHotSpareDrives BooleanType, + controllerSpinDownTimeInterval INTEGER, + controllerPreservedCache BooleanType, + controllerCheckConsistencyMode INTEGER, + controllerCopyBackMode INTEGER, + controllerSecurityStatus INTEGER, + controllerEncryptionKeyPresent BooleanType, + controllerEncryptionCapability INTEGER, + controllerLoadBalanceSetting INTEGER, + controllerMaxCapSpeed INTEGER, + controllerSASAddress DisplayString, + controllerFQDD FQDDString, + controllerDisplayName DisplayString, + controllerT10PICapability INTEGER, + controllerRAID10UnevenSpansSupported BooleanType, + controllerEnhancedAutoImportForeignConfigMode INTEGER, + controllerBootModeSupported BooleanType, + controllerBootMode INTEGER +} + +controllerTable OBJECT-TYPE + SYNTAX SEQUENCE OF ControllerTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed RAID controllers. The number of entries + is related to number of RAID controllers discovered in the + system. The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 1 } + +controllerTableEntry OBJECT-TYPE + SYNTAX ControllerTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the table of RAID controllers. A row in this table + cannot be created or deleted by SNMP operations on columns of + the table." + INDEX { controllerNumber } + ::= { controllerTable 1 } + +controllerNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this controller entry." + ::= { controllerTableEntry 1 } + + +controllerName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's name as represented in Storage Management. + " + ::= { controllerTableEntry 2 } + +controllerRebuildRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The rebuild rate is the percentage of the controller's + resources dedicated to rebuilding a failed disk when a rebuild + is necessary. + " + ::= { controllerTableEntry 7 } + +controllerFWVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's current firmware version. + " + ::= { controllerTableEntry 8 } + +controllerCacheSizeInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's current amount of cache memory in megabytes. + " + ::= { controllerTableEntry 9 } + +controllerRollUpStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Severity of the controller state. + This is the combined status of the controller and its components. + Possible values: + 1: Other. + 2: Unknown. + 3: OK + 4: Non-critical + 5: Critical. + 6: Non-recoverable. + " + ::= { controllerTableEntry 37 } + +controllerComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the controller itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { controllerTableEntry 38 } + +controllerDriverVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Currently installed driver version for this controller on the host. + " + ::= { controllerTableEntry 41 } + +controllerPCISlot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PCI slot on the server where the controller is seated. This + data is not reported for embedded or integrated controllers, + " + ::= { controllerTableEntry 42 } + +controllerReconstructRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reconstruct rate is the percentage of the controller's resources + dedicated to reconstructing a disk group after adding a physical disk + or changing the RAID level of a virtual disk residing on the disk + group. + " + ::= { controllerTableEntry 48 } + +controllerPatrolReadRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The patrol read rate is the percentage of the controller's + resources dedicated to perform a patrol read on disks participating + in a virtual disk or hot spares. + " + ::= { controllerTableEntry 49 } + +controllerBGIRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The background initialization (BGI) rate is the percentage of the + controller's resources dedicated to performing the background + initialization of a redundant virtual disk after it is created. + " + ::= { controllerTableEntry 50 } + +controllerCheckConsistencyRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The check consistency rate is the percentage of the + controller's resources dedicated to performing a check consistency + on a redundant virtual disk. + " + ::= { controllerTableEntry 51 } + +controllerPatrolReadMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notSupported(2), + disabled(3), + auto(4), + manual(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the patrol read mode setting for the controller. + Possible values: + 1: Not one of the following or could not be determined. + 2: Not Supported on this controller. + 3: Disabled. + 4: Automatic. + 5: Manual. + " + ::= { controllerTableEntry 52 } + +controllerPatrolReadState OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + stopped(2), + active(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This property displays the current state of the patrol read process. + Possible values: + 1: Not one of the following or could not be determined. + 2: Patrol read is not running. + 3: Patrol read is running. + " + ::= { controllerTableEntry 53 } + +controllerPersistentHotSpare OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether hot spare drives would be restored on insertion + into the same slot. + " + ::= { controllerTableEntry 59 } + +controllerSpinDownUnconfiguredDrives OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether un-configured drives would be put in power + save mode by the controller. + " + ::= { controllerTableEntry 60 } + +controllerSpinDownHotSpareDrives OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether hot spare drives would be put in power + save mode by the controller. + " + ::= { controllerTableEntry 61 } + +controllerSpinDownTimeInterval OBJECT-TYPE + SYNTAX INTEGER (30..1440) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The duration in minutes after which, the unconfigured or hot + spare drives will be spun down to power save mode. + " + ::= { controllerTableEntry 62 } + +controllerPreservedCache OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether preserved cache or pinned cache is + present on the controller. + " + ::= { controllerTableEntry 69 } + +controllerCheckConsistencyMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + normal(3), + stopOnError(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current check consistency mode setting + for the controller. + Possible values: + 1: Not one of the following. + 2: Not supported on this controller. + 3: Normal check consistency operation. + 4: Check consistency operation will stop on encountering + an error. + " + ::= { controllerTableEntry 70 } + +controllerCopyBackMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + on(3), + onWithSmart(4), + off(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current copy back mode setting + for the controller. + Possible values: + 1: Not one of the following. + 2: Not supported on this controller. + 3: Disks assigned as spares could revert back to spare status. + 4: Data from physical disk participating in a + virtual disk could be automatically copied to the assigned + hot spare in case former has a predictive failure event. + 5: Copyback mode is disabled. + " + ::= { controllerTableEntry 71 } + +controllerSecurityStatus OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + none(2), + lkm(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's current security/encryption status.. + Possible values: + 1: The current status could not be determined. + 2: Controller is not operating in an encryption mode. + 3: Controller is operating in the Local Key Management + (LKM) encryption mode. + " + ::= { controllerTableEntry 72 } + +controllerEncryptionKeyPresent OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether encryption key is assigned for the controller. + " + ::= { controllerTableEntry 73 } + +controllerEncryptionCapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + none(2), + lkm(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of encryption supported by the controller. + Possible values: + 1: Not one of the following. + 2: No encryption supported, + 3: Local Key Management, + " + ::= { controllerTableEntry 74 } + +controllerLoadBalanceSetting OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + auto(3), + none(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ability of the controller to automatically use both + controller ports (or connectors) connected to the same enclosure in + order to route I/O requests. + Possible values: + 1: Not one of the following. + 2: Not supported. + 3: Automatic load balancing is active. + 4: Load balancing is inactive. + " + ::= { controllerTableEntry 75 } + +controllerMaxCapSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum speed of the controller.in + Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + " + ::= { controllerTableEntry 76 } + +controllerSASAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SAS address of the controller. + " + ::= { controllerTableEntry 77 } + +controllerFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { controllerTableEntry 78 } + +controllerDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's friendly FQDD as represented in Storage + Management." + ::= { controllerTableEntry 79 } + +controllerT10PICapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + capable(2), + notCapable(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the controller supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Capable of supporting T10 PI. + 3: Not capable of supporting T10 PI. + " + ::= { controllerTableEntry 80 } + +controllerRAID10UnevenSpansSupported OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether uneven spans for RAID 10 virtual disk + is supported on the controller. + " + ::= { controllerTableEntry 81 } + +controllerEnhancedAutoImportForeignConfigMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notSupported(2), + disabled(3), + enabled(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the status of enhanced auto-import of foreign + configuration property of the controller. + 1: Not one of the following. + 2: Not Supported. + 3: Disabled. + 4: Enabled. + " + ::= { controllerTableEntry 82 } + +controllerBootModeSupported OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether headless boot mode settings are supported + on the controller. + " + ::= { controllerTableEntry 83 } + +controllerBootMode OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + user(2), + contOnError(3), + headlessContOnError(4), + headlessSafe(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the boot mode of the controller. + Possible values: + 1: Not applicable for this controller. + 2: User mode: User interaction required for all boot messages (not + applicable for uEFI environments). + 3: Continue Boot On Error. User interaction only required for + critical messages. + 4: Headless Mode Continue On Error. User interaction is not required. + Controller boot may halt on Error. + 5: Headless Safe Mode. Controller shall boot to safe mode on critical + errors. + " + ::= { controllerTableEntry 84 } + + +------------------------------------------------------------------------------- +-- Physical Disk Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.. +------------------------------------------------------------------------------- + +PhysicalDiskTableEntry ::=SEQUENCE { + physicalDiskNumber INTEGER, + physicalDiskName DisplayString, + physicalDiskManufacturer DisplayString, + physicalDiskState INTEGER, + physicalDiskProductID DisplayString, + physicalDiskSerialNo DisplayString, + physicalDiskRevision DisplayString, + physicalDiskCapacityInMB INTEGER, + physicalDiskUsedSpaceInMB INTEGER, + physicalDiskFreeSpaceInMB INTEGER, + physicalDiskBusType INTEGER, + physicalDiskSpareState INTEGER, + physicalDiskComponentStatus ObjectStatusEnum, + physicalDiskPartNumber DisplayString, + physicalDiskSASAddress DisplayString, + physicalDiskNegotiatedSpeed INTEGER, + physicalDiskCapableSpeed INTEGER, + physicalDiskSmartAlertIndication BooleanType, + physicalDiskManufactureDay DisplayString, + physicalDiskManufactureWeek DisplayString, + physicalDiskManufactureYear DisplayString, + physicalDiskMediaType INTEGER, + physicalDiskPowerState INTEGER, + physicalDiskRemainingRatedWriteEndurance INTEGER, + physicalDiskOperationalState INTEGER, + physicalDiskProgress INTEGER, + physicalDiskSecurityStatus INTEGER, + physicalDiskFormFactor INTEGER, + physicalDiskFQDD FQDDString, + physicalDiskDisplayName DisplayString, + physicalDiskT10PICapability INTEGER, + physicalDiskBlockSizeInBytes INTEGER, + physicalDiskProtocolVersion DisplayString, + physicalDiskPCIeNegotiatedLinkWidth INTEGER, + physicalDiskPCIeCapableLinkWidth INTEGER + } + +physicalDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalDiskTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed physical disks. The number of entries is + related to number of physical Disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to + all entries. + " + ::= { physicalDevices 4 } + +physicalDiskTableEntry OBJECT-TYPE + SYNTAX PhysicalDiskTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the physical Disk table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { physicalDiskNumber } + ::= { physicalDiskTable 1 } + +physicalDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this physical disk entry. + " + ::= { physicalDiskTableEntry 1 } + +physicalDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical disk's name as represented in Storage Management. + " + ::= { physicalDiskTableEntry 2 } + +physicalDiskManufacturer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the physical disk's manufacturer. + " + ::= { physicalDiskTableEntry 3 } + +physicalDiskState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + online(3), + foreign(4), + offline(5), + blocked(6), + failed(7), + nonraid(8), + removed(9), + readonly(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this physical disk. + Possible states: + 1: The current state could not be determined. + 2: The physical disk is available for use, but no RAID configuration + has been assigned. + 3: A RAID configuration has been assigned to the physical disk. + 4: The physical disk has been moved from another + controller and contains all or some portion of a virtual disk. + 5: The physical disk is not available to the RAID + controller. + 6: The physical disk is currently blocked by + controller. + 7: The physical disk is not operational. + 8: The physical disk is not a RAID capable disk + 9: The physical disk has been removed. + 10:The physical disk media has been placed in read only mode. + " + ::= { physicalDiskTableEntry 4 } + +physicalDiskProductID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model number of the physical disk. + " + ::= { physicalDiskTableEntry 6 } + +physicalDiskSerialNo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical disk's unique identification number + from the manufacturer. + " + ::= { physicalDiskTableEntry 7 } + +physicalDiskRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware version of the physical disk. + " + ::= { physicalDiskTableEntry 8 } + +physicalDiskCapacityInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the physical disk in megabytes. + " + ::= { physicalDiskTableEntry 11 } + +physicalDiskUsedSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of used space in megabytes on the physical + disk. This is not applicable for NVMe devices. + " + ::= { physicalDiskTableEntry 17 } + +physicalDiskFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of free space in megabytes on the physical + disk. This is not applicable for NVMe devices. + " + ::= { physicalDiskTableEntry 19 } + +physicalDiskBusType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + scsi(2), + sas(3), + sata(4), + fibre(5), + pcie(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The bus type of the physical disk. + Possible values: + 1: The bus type could not be determined. + 2: Small Computer System Interface (SCSI). + 3: Serial Attached SCSI (SAS). + 4: Serial Advanced Technology Attachment (SATA). + 5: Fibre channel. + 6: PCIe. + " + ::= { physicalDiskTableEntry 21 } + +physicalDiskSpareState OBJECT-TYPE + SYNTAX INTEGER + { + notASpare(1), + dedicatedHotSpare(2), + globalHotSpare(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the disk as a spare. + Possible values: + 1: Physical disk is not a spare. + 2: Physical disk is a dedicated hot spare. + 3: Physical disk is a global hot spare. + " + ::= { physicalDiskTableEntry 22 } + +physicalDiskComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the physical disk itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { physicalDiskTableEntry 24 } + +physicalDiskPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The part number of the disk. + " + ::= { physicalDiskTableEntry 27 } + +physicalDiskSASAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SAS address of the physical disk. + " + ::= { physicalDiskTableEntry 28 } + +physicalDiskNegotiatedSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5), + fiveGTps(6), + eightGTps(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The data transfer speed that the disk negotiated while spinning up + in Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + 6: 5 GT/s (applicable for NVMe devices). + 7: 8 GT/s (applicable for NVMe devices). + " + ::= { physicalDiskTableEntry 29 } + +physicalDiskCapableSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5), + fiveGTps(6), + eightGTps(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum data transfer speed supported by the disk + in Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + 6: 5 GT/s (applicable for NVMe devices). + 7: 8 GT/s (applicable for NVMe devices). + " + ::= { physicalDiskTableEntry 30 } + +physicalDiskSmartAlertIndication OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the physical disk has received a predictive + failure alert. + " + ::= { physicalDiskTableEntry 31 } + +physicalDiskManufactureDay OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The day of the week (1=Sunday thru 7=Saturday) + on which the physical disk was manufactured. + " + ::= { physicalDiskTableEntry 32 } + +physicalDiskManufactureWeek OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The week (1 thru 53) in which the physical disk + was manufactured. + " + ::= { physicalDiskTableEntry 33 } + +physicalDiskManufactureYear OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The four digit year in which the physical disk was manufactured. + " + ::= { physicalDiskTableEntry 34 } + +physicalDiskMediaType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + hdd(2), + ssd(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The media type of the physical disk. + Possible Values: + 1: The media type could not be determined. + 2: Hard Disk Drive (HDD). + 3: Solid State Device (SSD). + " + ::= { physicalDiskTableEntry 35 } + +physicalDiskPowerState OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + spunUp(2), + spunDown(3), + transition(4), + on(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power state of the physical disk. + Possible Values: + 1: Not one of the following. + 2: The physical disk is in the spun up state. + 3: The physical disk is in the spun down state. + 4: The physical disk is changing from spun down state + to spun up state or vice versa. + 5: The Solid State Device (SSD) is powered on. + " + ::= { physicalDiskTableEntry 42 } + +physicalDiskRemainingRatedWriteEndurance OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This property is applicable to SSD media type only. This indicates + the wear-out percentage of the SSD. Typically it is a value between + 0 to 100. However, if the value is not available or not applicable + (in the case of HDD media type) the value will be 255. + " + ::= { physicalDiskTableEntry 49 } + +physicalDiskOperationalState OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + rebuild(2), + clear(3), + copyback(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the physical disk when there are progressive + operations ongoing. + Possible values: + 1: There is no active operation running. + 2: Data from a redundant virtual disk is + currently being rebuilt onto the physical disk. + 3: Data on the disk is being erased. + 4: Data is being copied from a hot spare disk to + the physical disk or vice versa. + " + ::= { physicalDiskTableEntry 50 } + +physicalDiskProgress OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The progress percentage of the operation that is being + performed on the physical disk. This is applicable + only if there is a progressive operations ongoing + " + ::= { physicalDiskTableEntry 51 } + +physicalDiskSecurityStatus OBJECT-TYPE + SYNTAX INTEGER + { + supported(1), + notSupported(2), + secured(3), + locked(4), + foreign(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The security/encryption status of the physical disk. + Possible Values: + 1: The physical disk supports encryption. + 2: The physical disk does not support encryption + 3: The physical disk is encrypted. + 4: The physical disk is locked by a key. + 5: The physical disk is locked by a foreign key. + " + ::= { physicalDiskTableEntry 52 } + +physicalDiskFormFactor OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotEight(2), + twoDotFive(3), + threeDotFive(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The form factor of the physical disk. + Possible values: + 1: The form factor could not be determined. + 2: 1.8 inch. + 3: 2.5 inch. + 4: 3.5 inch. + " + ::= { physicalDiskTableEntry 53 } + +physicalDiskFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical disk's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { physicalDiskTableEntry 54 } + +physicalDiskDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical disk's friendly FQDD as represented in Storage + Management. + " + ::= { physicalDiskTableEntry 55 } + +physicalDiskT10PICapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + capable(2), + notCapable(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the physical disk supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Capable of supporting T10 PI. + 3: Not capable of supporting T10 PI. + " + ::= { physicalDiskTableEntry 57 } + +physicalDiskBlockSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The block size (in bytes) of the physical disk. This is not + applicable for NVMe devices. + 1: 512. + 2: 4096 + " + ::= { physicalDiskTableEntry 58 } + +physicalDiskProtocolVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Applicable for NVMe devices only. The NVMe protocol version supported + by the device. + " + ::= { physicalDiskTableEntry 59 } + +physicalDiskPCIeNegotiatedLinkWidth OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + byOne(3), + byTwp(4), + byFour(5), + byEight(6), + bySixteen(7), + byThirtyTwp(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Applicable for NVMe devices only. The PCIe link width negotiated with the host + during device initialization. + " + ::= { physicalDiskTableEntry 60 } + +physicalDiskPCIeCapableLinkWidth OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + byOne(3), + byTwp(4), + byFour(5), + byEight(6), + bySixteen(7), + byThirtyTwp(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Applicable for NVMe devices only. The PCIe link widths the device is capable of + supporting. + " + ::= { physicalDiskTableEntry 61 } + +------------------------------------------------------------------------------- +-- Virtual Disk Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.. +------------------------------------------------------------------------------- + +VirtualDiskTableEntry ::=SEQUENCE { + virtualDiskNumber INTEGER, + virtualDiskName DisplayString, + virtualDiskState INTEGER, + virtualDiskSizeInMB INTEGER, + virtualDiskWritePolicy INTEGER, + virtualDiskReadPolicy INTEGER, + virtualDiskLayout INTEGER, + virtualDiskStripeSize INTEGER, + virtualDiskComponentStatus ObjectStatusEnum, + virtualDiskBadBlocksDetected BooleanType, + virtualDiskSecured BooleanType, + virtualDiskIsCacheCade BooleanType, + virtualDiskDiskCachePolicy INTEGER, + virtualDiskOperationalState INTEGER, + virtualDiskProgress INTEGER, + virtualDiskAvailableProtocols DisplayString, + virtualDiskMediaType DisplayString, + virtualDiskRemainingRedundancy INTEGER, + virtualDiskFQDD FQDDString, + virtualDiskDisplayName DisplayString, + virtualDiskT10PIStatus INTEGER, + virtualDiskBlockSizeInBytes INTEGER +} + +virtualDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF VirtualDiskTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed virtual disks. The number of entries is related + to number of virtual disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { logicalDevices 1 } + +virtualDiskTableEntry OBJECT-TYPE + SYNTAX VirtualDiskTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the virtual disk table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { virtualDiskNumber } + ::= { virtualDiskTable 1 } + +virtualDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this virtual disk entry. + " + ::= { virtualDiskTableEntry 1 } + +virtualDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The virtual disk's label as entered by the user. + " + ::= { virtualDiskTableEntry 2 } + +virtualDiskState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + online(2), + failed(3), + degraded(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this virtual disk + (which includes any member physical disks.) + Possible states: + 1: The current state could not be determined. + 2: The virtual disk is operating normally or optimally. + 3: The virtual disk has encountered a failure. The data on disk + is lost or is about to be lost. + 4: The virtual disk encounterd a failure with one or all of the + constituent redundant physical disks. The data on the virtual + disk might no longer be fault tolerant. + " + ::= { virtualDiskTableEntry 4 } + +virtualDiskSizeInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the virtual disk in megabytes. + " + ::= { virtualDiskTableEntry 6 } + +virtualDiskWritePolicy OBJECT-TYPE + SYNTAX INTEGER + { + writeThrough(1), + writeBack(2), + writeBackForce(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The write policy used by the controller for write operations on + this virtual disk. + Possible values: + 1: Write Through. + 2: Write Back. + 3: Force Write Back. + " + ::= { virtualDiskTableEntry 10 } + +virtualDiskReadPolicy OBJECT-TYPE + SYNTAX INTEGER + { + noReadAhead(1), + readAhead(2), + adaptiveReadAhead(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The read policy used by the controller for read operations on + this virtual disk. + Possible values: + 1: No Read Ahead. + 2: Read Ahead. + 3: Adaptive Read Ahead. + " + ::= { virtualDiskTableEntry 11 } + +virtualDiskLayout OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + r0(2), + r1(3), + r5(4), + r6(5), + r10(6), + r50(7), + r60(8), + concatRaid1(9), + concatRaid5(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The virtual disk's RAID type. + Possible values: + 1: Not one of the following + 2: RAID-0 + 3: RAID-1 + 4: RAID-5 + 5: RAID-6 + 6: RAID-10 + 7: RAID-50 + 8: RAID-60 + 9: Concatenated RAID 1 + 10: Concatenated RAID 5 + " + ::= { virtualDiskTableEntry 13 } + +virtualDiskStripeSize OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + default(2), + fiveHundredAndTwelvebytes(3), + oneKilobytes(4), + twoKilobytes(5), + fourKilobytes(6), + eightKilobytes(7), + sixteenKilobytes(8), + thirtyTwoKilobytes(9), + sixtyFourKilobytes(10), + oneTwentyEightKilobytes(11), + twoFiftySixKilobytes(12), + fiveOneTwoKilobytes(13), + oneMegabye(14), + twoMegabytes(15), + fourMegabytes(16), + eightMegabytes(17), + sixteenMegabytes(18) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The stripe size of this virtual disk. + Possible values: + 1: Not one of the following + 2: Default. + 3: 512 bytes + 4: 1 kB, + 5: 2 kB, + 6: 4 kB, + 7: 8 kB, + 8: 16 kB, + 9: 32 kB, + 10: 64 kB, + 11: 128 kB, + 12: 256 kB, + 13: 512 kB, + 14: 1 MB, + 15: 2 MB, + 16: 4 MB, + 17: 8 MB, + 18: 16 MB + " + ::= { virtualDiskTableEntry 14 } + +virtualDiskComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the virtual disk itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { virtualDiskTableEntry 20 } + +virtualDiskBadBlocksDetected OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the virtual disk has bad blocks. + " + ::= { virtualDiskTableEntry 23 } + +virtualDiskSecured OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the virtual disk is secured or not. + " + ::= { virtualDiskTableEntry 24 } + +virtualDiskIsCacheCade OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the virtual disk is being used as a secondary + cache by the controller. + " + ::= { virtualDiskTableEntry 25 } + +virtualDiskDiskCachePolicy OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + defullt(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cache policy of the physical disks that are + part of this virtual disk + Possible values: + 1: Enabled. + 2: Disabled. + 3: Default. + " + ::= { virtualDiskTableEntry 26 } + +virtualDiskOperationalState OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + reconstructing(2), + resynching(3), + initializing(4), + backgroundInit(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the virtual disk when there are progressive + operations ongoing. + Possible values: + 1: There is no active operation running. + 2: The virtual disk configuration has changed. + The physical disks included in the virtual disk are being + modified to support the new configuration. + 3: A Consistency Check (CC) is being performed + on the virtual disk. + 4: The virtual disk is being initialized. + 5: BackGround Initialization (BGI) is being performed + on the virtual disk. + " + ::= { virtualDiskTableEntry 30 } + +virtualDiskProgress OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The progress percentage of the operation that is being + performed on the virtual disk. This is applicable + only if there is a progressive operations ongoing + " + ::= { virtualDiskTableEntry 31 } + +virtualDiskAvailableProtocols OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "List of protocols support by physical disks part of this virtual + disk. For e.g. SAS for Serial Attached SCSI or SATA for + Serial Advanced Technology Attachment. + " + ::= { virtualDiskTableEntry 32 } + +virtualDiskMediaType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "List of media types of the physical disks part of this virtual + disk. For e.g. HDD for Hard Disk Drive or SSD for Solid State Device. + " + ::= { virtualDiskTableEntry 33 } + +virtualDiskRemainingRedundancy OBJECT-TYPE + SYNTAX INTEGER (0..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of physical disks which can be lost before the + virtual disk loses its redundancy. + " + ::= { virtualDiskTableEntry 34 } + +virtualDiskFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The virtual disk's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { virtualDiskTableEntry 35 } + +virtualDiskDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The virtual disk's friendly FQDD as represented in Storage + Management. + " + ::= { virtualDiskTableEntry 36 } + + +virtualDiskT10PIStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + enabled(2), + disabled(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the virtual disk supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Enabled. + 3: Disabled. + " + ::= { virtualDiskTableEntry 37 } + +virtualDiskBlockSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The block size (in bytes) of the physical disk part of the virtual disk. + Possible values: + 1: 512. + 2: 4096 + " + ::= { virtualDiskTableEntry 38 } + + +------------------------------------------------------------------------------- +-- Enclosure Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.. +------------------------------------------------------------------------------- + +EnclosureTableEntry ::=SEQUENCE { + enclosureNumber INTEGER, + enclosureName DisplayString, + enclosureState INTEGER, + enclosureServiceTag DisplayString, + enclosureAssetTag DisplayString, + enclosureConnectedPort DisplayString, + enclosureRollUpStatus ObjectStatusEnum, + enclosureComponentStatus ObjectStatusEnum, + enclosureFirmwareVersion DisplayString, + enclosureSASAddress DisplayString, + enclosureDriveCount INTEGER, + enclosureTotalSlots INTEGER, + enclosureFanCount DisplayString, + enclosurePSUCount DisplayString, + enclosureEMMCount DisplayString, + enclosureTempProbeCount DisplayString, + enclosureRedundantPath DisplayString, + enclosurePosition DisplayString, + enclosureBackplaneBayID DisplayString, + enclosureFQDD FQDDString, + enclosureDisplayName DisplayString, + enclosureType INTEGER +} + +enclosureTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed enclosures/backplanes. The number of entries is + related to number of internal backplane(s) discovered in the system + and external storage enclosure(s) attached to the system.. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 3 } + +enclosureTableEntry OBJECT-TYPE + SYNTAX EnclosureTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the enclosure table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureNumber } + ::= { enclosureTable 1 } + +enclosureNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this enclossre/backplane. + " + ::= { enclosureTableEntry 1 } + +enclosureName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure/backplane's name as represented in Storage Management. + " + ::= { enclosureTableEntry 2 } + +enclosureState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this enclosure/backplane. + Possible states: + 1: The current state could not be determined. + 2: The enclosure is operating normally. + 3: The enclosure has encountered a hardware problem or is not + responding. + 4: The enclosure is no longer connected to the controller or + there exists a problem communicating to the enclosure. + 5: The enclosure is unstable. + " + ::= { enclosureTableEntry 4 } + +enclosureServiceTag OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Enclosure identification used when consulting customer support. + " + ::= { enclosureTableEntry 8 } + +enclosureAssetTag OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The asset tag information for the enclosure." + ::= { enclosureTableEntry 9 } + +enclosureConnectedPort OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port on the controller to which the + storage enclosure is connected. + " + ::= { enclosureTableEntry 19 } + +enclosureRollUpStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Severity of the enclosure/backplane state. + This is the combined status of the enclosure and its sub-components. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical. + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTableEntry 23 } + +enclosureComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the enclosure/backplane.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTableEntry 24 } + +enclosureFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware information for the enclosure/backplane. + " + ::= { enclosureTableEntry 26 } + +enclosureSASAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SAS address of the enclosure/backplane. + " + ::= { enclosureTableEntry 30 } + +enclosureDriveCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks present in the enclosure/backplane. + " + ::= { enclosureTableEntry 31 } + +enclosureTotalSlots OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total physical drive slots in a storage enclosure + or server backplane. + " + ::= { enclosureTableEntry 32 } + +enclosureFanCount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of fans present in the storage enclosure. + " + ::= { enclosureTableEntry 40 } + +enclosurePSUCount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Power Supply Units (PSU) present + in the storage enclosure. + " + ::= { enclosureTableEntry 41 } + +enclosureEMMCount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Enclosure Management Modules (EMM) + present in the storage enclosure. + " + ::= { enclosureTableEntry 42 } + +enclosureTempProbeCount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of temperature sensing devices + present in the storage enclosure. + " + ::= { enclosureTableEntry 43 } + +enclosureRedundantPath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the controller has multiply paths to + reach the storage enclosure. + " + ::= { enclosureTableEntry 44 } + +enclosurePosition OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The possition of the storage enclosure within a daisy chain. + " + ::= { enclosureTableEntry 45 } + +enclosureBackplaneBayID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unique bay ID of the backplane. + " + ::= { enclosureTableEntry 46 } + +enclosureFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure/backplane's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureTableEntry 47 } + +enclosureDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure/backplane's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureTableEntry 48 } + +enclosureType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + sassata(3), + pcie(4), + universal(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The protocol supported by the backplane. + Possible states: + 1: Not one of the following or could not be determined. + 2: Not applicable (i.e. object is not a backplane). + 3: Supports SAS/SATA. + 4: Supports PCIe. + 5: Both SAS/SATA and PCIe. + " + ::= { enclosureTableEntry 49 } + + +------------------------------------------------------------------------------- +-- Enclosure Management Module Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.. +------------------------------------------------------------------------------- + +EnclosureManagementModuleTableEntry ::=SEQUENCE { + enclosureManagementModuleNumber INTEGER, + enclosureManagementModuleName DisplayString, + enclosureManagementModuleState INTEGER, + enclosureManagementModulePartNumber DisplayString, + enclosureManagementModuleFWVersion DisplayString, + enclosureManagementModuleComponentStatus ObjectStatusEnum, + enclosureManagementModuleFQDD FQDDString, + enclosureManagementModuleDisplayName DisplayString +} + +enclosureManagementModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureManagementModuleTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed Enclosure Management Modules (EMM) + in the external storage enclosure(s). The number of + entries is related to number of enclosure management modules + discovered in the enclosure(s). The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 13 } + +enclosureManagementModuleTableEntry OBJECT-TYPE + SYNTAX EnclosureManagementModuleTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the enclosure management module table. A row in + this table cannot be created or deleted by SNMP operations + on columns of the table. + " + INDEX { enclosureManagementModuleNumber } + ::= { enclosureManagementModuleTable 1 } + +enclosureManagementModuleNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 1 } + +enclosureManagementModuleName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure management module's name as + represented in Storage Management. + " + ::= { enclosureManagementModuleTableEntry 2 } + +enclosureManagementModuleState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this enclosure management module. + Possible states: + 1: The current state could not be determined. + 2: The enclosure management module is operating normally. + 3: The enclosure management module has encountered a + hardware problem or is not responding. + 4: The enclosure management module is no longer connected + to the enclosure or there exists a problem communicating to it. + 5: The enclosure management module is unstable. + " + ::= { enclosureManagementModuleTableEntry 4 } + +enclosureManagementModulePartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The part number of the enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 6 } + +enclosureManagementModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware version of the enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 8 } + +enclosureManagementModuleComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the enclosure management module.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureManagementModuleTableEntry 11 } + +enclosureManagementModuleFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure management module's Fully Qualified Device + Descriptor (FQDD) as represented in Storage Management. + " + ::= { enclosureManagementModuleTableEntry 15 } + +enclosureManagementModuleDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure management module's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureManagementModuleTableEntry 16 } + +------------------------------------------------------------------------------- +-- Enclosure Fan Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.. +------------------------------------------------------------------------------- + +EnclosureFanTableEntry ::=SEQUENCE { + enclosureFanNumber INTEGER, + enclosureFanName DisplayString, + enclosureFanState INTEGER, + enclosureFanSpeed INTEGER, + enclosureFanComponentStatus ObjectStatusEnum, + enclosureFanFQDD FQDDString, + enclosureFanDisplayName DisplayString +} + +enclosureFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureFanTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed fans in the external storage enclosure(s). + The number of entries is related to number of fans discovered in + the enclosure(s). The maximum number of entries is implementation + dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 7 } + +enclosureFanTableEntry OBJECT-TYPE + SYNTAX EnclosureFanTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the fan table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureFanNumber } + ::= { enclosureFanTable 1 } + +enclosureFanNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this fan. + " + ::= { enclosureFanTableEntry 1 } + +enclosureFanName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan's name as represented in Storage Management. + " + ::= { enclosureFanTableEntry 2 } + +enclosureFanState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this fan. + Possible states: + 1: The current state could not be determined. + 2: The fan is operating normally. + 3: The fan has encountered a hardware problem or is not + responding. + 4: The fan is no longer connected to the enclosure or + there exists a problem communicating to it. + 5: The fan is unstable. + " + ::= { enclosureFanTableEntry 4 } + +enclosureFanSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + stopped(2), + slow(3), + medium(4), + fast(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current relative speed of the fan. + " + ::= { enclosureFanTableEntry 11 } + +enclosureFanComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the fan itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureFanTableEntry 15 } + +enclosureFanFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureFanTableEntry 20 } + +enclosureFanDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureFanTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Enclosure Power Supply Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.. +------------------------------------------------------------------------------- + +EnclosurePowerSupplyTableEntry ::=SEQUENCE { + enclosurePowerSupplyNumber INTEGER, + enclosurePowerSupplyName DisplayString, + enclosurePowerSupplyState INTEGER, + enclosurePowerSupplyPartNumber DisplayString, + enclosurePowerSupplyComponentStatus ObjectStatusEnum, + enclosurePowerSupplyFQDD FQDDString, + enclosurePowerSupplyDisplayName DisplayString +} + +enclosurePowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosurePowerSupplyTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed Power Supply Units(PSU) in the external + storage enclosure(s). The number of entries is related to number + of power supply unit(s) discovered in the enclosure(s). The + maximum number of entries is implementation + dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 9 } + +enclosurePowerSupplyTableEntry OBJECT-TYPE + SYNTAX EnclosurePowerSupplyTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the power supply unit table. A row in this table cannot + be created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosurePowerSupplyNumber } + ::= { enclosurePowerSupplyTable 1 } + +enclosurePowerSupplyNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this power supply unit. + " + ::= { enclosurePowerSupplyTableEntry 1 } + +enclosurePowerSupplyName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply unit's name as represented in + Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 2 } + +enclosurePowerSupplyState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this power supply unit. + Possible states: + 1: The current state could not be determined. + 2: The power supply unit is operating normally. + 3: The power supply unit has encountered a hardware problem + or is not responding. + 4: The power supply unit is no longer connected to the enclosure + or there exists a problem communicating to it. + 5: The power supply unit is unstable. + " + ::= { enclosurePowerSupplyTableEntry 4 } + +enclosurePowerSupplyPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The part number of the power supply unit. + " + ::= { enclosurePowerSupplyTableEntry 7 } + +enclosurePowerSupplyComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the power supply unit itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosurePowerSupplyTableEntry 9 } + +enclosurePowerSupplyFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply unit's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 15 } + +enclosurePowerSupplyDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply unit's friendly FQDD as represented in + Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Enclosure Temperature Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.. +------------------------------------------------------------------------------- + +EnclosureTemperatureProbeTableEntry ::=SEQUENCE { + enclosureTemperatureProbeNumber INTEGER, + enclosureTemperatureProbeName DisplayString, + enclosureTemperatureProbeState INTEGER, + enclosureTemperatureProbeMinWarningValue INTEGER, + enclosureTemperatureProbeMinCriticalValue INTEGER, + enclosureTemperatureProbeMaxWarningValue INTEGER, + enclosureTemperatureProbeMaxCriticalValue INTEGER, + enclosureTemperatureProbeCurValue INTEGER, + enclosureTemperatureProbeComponentStatus ObjectStatusEnum, + enclosureTemperatureProbeFQDD FQDDString, + enclosureTemperatureProbeDisplayName DisplayString +} + +enclosureTemperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureTemperatureProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed temperature probes in the external storage + enclosure(s). The number of entries is related to number of + temperature probes discovered in the enclosure(s). The maximum + number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 11 } + +enclosureTemperatureProbeTableEntry OBJECT-TYPE + SYNTAX EnclosureTemperatureProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the temperature probe table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureTemperatureProbeNumber } + ::= { enclosureTemperatureProbeTable 1 } + +enclosureTemperatureProbeNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this temperature probe. + " + ::= { enclosureTemperatureProbeTableEntry 1 } + +enclosureTemperatureProbeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature probe's name as represented in + Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 2 } + +enclosureTemperatureProbeState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this temperature probe. + Possible states: + 1: The current state could not be determined. + 2: The temperature probe is operating normally. + 3: The temperature probe has encountered a hardware problem + or is not responding. + 4: The temperature probe is no longer connected to the enclosure + or there exists a problem communicating to it. + 5: The temperature probe is unstable. + " + ::= { enclosureTemperatureProbeTableEntry 4 } + +enclosureTemperatureProbeMinWarningValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 7 } + +enclosureTemperatureProbeMinCriticalValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum temperature that will force the probe into + a error state. + " + ::= { enclosureTemperatureProbeTableEntry 8 } + +enclosureTemperatureProbeMaxWarningValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 9 } + +enclosureTemperatureProbeMaxCriticalValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 10 } + +enclosureTemperatureProbeCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 11 } + +enclosureTemperatureProbeComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the enclosure management module.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTemperatureProbeTableEntry 13 } + +enclosureTemperatureProbeFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature probe's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 15 } + +enclosureTemperatureProbeDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature probe's friendly FQDD as represented + in Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 16 } + + +------------------------------------------------------------------------------ +-- Alert Trap Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2 +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- System Alert Trap Group +-- System Traps (a.k.a, System Health Traps) +-- Category: System/1 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.1 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Amperage Probe Traps +-- +-- Category: System/1 +-- Subcategory: AMP/16 +------------------------------------------------------------------------------ + +alertAmperageProbeNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Current sensor reading is within range." + --#TYPE "System: Amperage Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2179 } + +alertAmperageProbeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Current sensor has detected a warning value." + --#TYPE "System: Amperage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2178 } + +alertAmperageProbeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Current sensor has detected a failure value." + --#TYPE "System: Amperage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2177 } + +------------------------------------------------------------------------------ +-- Automatic System Recovery Trap +-- +-- Category: System/1 +-- Subcategory: ASR/23 +------------------------------------------------------------------------------ + +alertAutomaticSystemRecovery NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Automatic system recovery (ASR) was performed." + --#TYPE "System: Automatic System Recovery" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2233 } + +------------------------------------------------------------------------------ +-- Battery Traps +-- +-- Category: System/1 +-- Subcategory: BAT/22 +------------------------------------------------------------------------------ + +alertBatteryNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery state has returned to normal; + or battery presence had been detected." + --#TYPE "System: Battery Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2227 } + +alertBatteryWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery is low." + --#TYPE "System: Battery Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2226 } + +alertBatteryFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery has failed or battery is absent." + --#TYPE "System: Battery Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2225 } + +------------------------------------------------------------------------------ +-- Cable Traps +-- +-- Category: System/1 +-- Subcategory: CBL/43 +------------------------------------------------------------------------------ + +alertCableFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Cable failure or critical event." + --#TYPE "System: Cable Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2393 } + +------------------------------------------------------------------------------ +-- CMC Traps +-- +-- Category: System/1 +-- Subcategory: CMC/62 +------------------------------------------------------------------------------ + +alertCMCWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller detected a warning." + --#TYPE "System: CMC Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2546 } + +alertCMCFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller detected an error." + --#TYPE "System: CMC Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2545 } + +------------------------------------------------------------------------------ +-- Processor Device Status Traps +-- +-- Category: System/1 +-- Subcategory: CPU/24 +------------------------------------------------------------------------------ + +alertProcessorDeviceStatusNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Processor device status has returned to normal." + --#TYPE "System: Processor Device Status Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2243 } + +alertProcessorDeviceStatusWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Processor device status has detected a warning." + --#TYPE "System: Processor Device Status Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2242 } + +alertProcessorDeviceStatusFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Processor device status has detected a failure." + --#TYPE "System: Processor Device Status Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2241 } + +------------------------------------------------------------------------------ +-- Processor Device Absent Trap +-- +-- Category: System/1 +-- Subcategory: CPUA/51 +------------------------------------------------------------------------------ + +alertProcessorDeviceAbsent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Processor device is absent." + --#TYPE "System: Processor Device Absent" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2457 } + +------------------------------------------------------------------------------ +-- Fan Traps +-- +-- Category: System/1 +-- Subcategory: FAN/13 +------------------------------------------------------------------------------ + +alertFanInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan information." + --#TYPE "System: Fan Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2155 } + +alertFanWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan warning." + --#TYPE "System: Fan Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2154 } + +alertFanFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan failure." + --#TYPE "System: Fan Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2153 } + +------------------------------------------------------------------------------ +-- Fiber Channel Traps +-- +-- Category: System/1 +-- Subcategory: FC/61 +------------------------------------------------------------------------------ + +alertFiberChannelInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fiber Channel information." + --#TYPE "System: Fiber Channel Information " + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2539 } + +alertFiberChannelWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fiber Channel warning." + --#TYPE "System: Fiber Channel Warning " + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2538 } + +alertFiberChannelFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fiber Channel failure or critical event." + --#TYPE "System: Fiber Channel Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2537 } + +------------------------------------------------------------------------------ +-- Hardware Configuration Traps +-- +-- Category: System/1 +-- Subcategory: HWC/35 +------------------------------------------------------------------------------ + +alertHardwareConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Hardware configuration information." + --#TYPE "System: Hardware Configuration Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2331 } + +alertHardwareConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Hardware configuration warning." + --#TYPE "System: Hardware Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2330 } + +alertHardwareConfigurationFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Hardware configuration failure or critical event." + --#TYPE "System: Hardware Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2329 } + +------------------------------------------------------------------------------ +-- IO Virtualization Traps +-- +-- Category: System/1 +-- Subcategory: IOV/63 +------------------------------------------------------------------------------ + +alertIOVirtualizationFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "IO Virtualization failure or critical event." + --#TYPE "System: IO Virtualization Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2553 } + +------------------------------------------------------------------------------ +-- Link Status Traps +-- +-- Category: System/1 +-- Subcategory: LNK/25 +------------------------------------------------------------------------------ + +alertLinkStatusInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Link status information." + --#TYPE "System: Link Status Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2251 } + +alertLinkStatusWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Link status warning." + --#TYPE "System: Link Status Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2250 } + +alertLinkStatusFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Link status failure or critical event." + --#TYPE "System: Link Status Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2249 } + +------------------------------------------------------------------------------ +-- Memory Device Traps +-- +-- Category: System/1 +-- Subcategory: MEM/27 +------------------------------------------------------------------------------ + +alertMemoryDeviceInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Memory device informational event." + --#TYPE "System: Memory Device Infomation" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2267 } + +alertMemoryDeviceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Memory device status is noncritical." + --#TYPE "System: Memory Device Noncritical" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2266 } + +alertMemoryDeviceFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Memory device status is critical." + --#TYPE "System: Memory Device Critical" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2265 } + +------------------------------------------------------------------------------ +-- NIC Traps +-- +-- Category: System/1 +-- Subcategory: NIC/5 +------------------------------------------------------------------------------ + +alertNetworkInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network information." + --#TYPE "System: Network Information " + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2091 } + +alertNetworkWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network warning." + --#TYPE "System: Network Warning " + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2090 } + +alertNetworkFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network failure or critical event." + --#TYPE "System: Network Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2089 } + +------------------------------------------------------------------------------ +-- Operation System ("OS") Event Traps +-- +-- Category: System/1 +-- Subcategory: OSE/45 +------------------------------------------------------------------------------ + +alertOSInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "An OS graceful stop occurred; + or an OS graceful shut-down occurred." + --#TYPE "System: Operating System Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2411 } + +alertOSFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "A critical stop occurred during OS load; + or a runtime critical stop occurred." + --#TYPE "System: Operating System Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2409 } + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: System/1 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "An informational event was detected for a PCI device." + --#TYPE "System: PCI Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2419 } + +alertPCIDeviceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "A warning event was detected for a PCI device." + --#TYPE "System: PCI Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2418 } + +alertPCIDeviceFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "An error was detected for a PCI device." + --#TYPE "System: PCI Device Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2417 } + +------------------------------------------------------------------------------ +-- Physical Disk Traps +-- +-- Category: System/1 +-- Subcategory: PDR/31 +------------------------------------------------------------------------------ + +alertPhysicalDiskInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk information." + --#TYPE "System: Physical Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2299 } + +alertPhysicalDiskWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk warning." + --#TYPE "System: Physical Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2298 } + +alertPhysicalDiskFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk failure." + --#TYPE "System: Physical Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { systemAlertTrapGroup 0 2297 } + +------------------------------------------------------------------------------ +-- BIOS POST Trap +-- +-- Category: System/1 +-- Subcategory: PST/47 +------------------------------------------------------------------------------ + +alertBiosPostFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System BIOS detected a failure." + --#TYPE "System: BIOS POST Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { systemAlertTrapGroup 0 2425 } + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: System/1 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertPowerSupplyNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply has returned to normal." + --#TYPE "System: Power Supply Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2187 } + +alertPowerSupplyWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply has detected a warning." + --#TYPE "System: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2186 } + +alertPowerSupplyFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply has detected a failure." + --#TYPE "System: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2185 } + +------------------------------------------------------------------------------ +-- Power Supply Absent Trap +-- +-- Category: System/1 +-- Subcategory: PSUA/52 +------------------------------------------------------------------------------ + +alertPowerSupplyAbsent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply is absent." + --#TYPE "System: Power Supply Absent" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2465 } + +------------------------------------------------------------------------------ +-- Power Usage Traps +-- +-- Category: System/1 +-- Subcategory: PWR/28 +------------------------------------------------------------------------------ + +alertPowerUsageInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System performance restored." + --#TYPE "System: Power Usage Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2275 } + +alertPowerUsageWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System performance degraded." + --#TYPE "System: Power Usage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2274 } + +alertPowerUsageFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "The system halted because system power exceeds capacity; + or the system performance degraded because power draw exceeds the + power threshold." + --#TYPE "System: Power Usage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2273 } + +------------------------------------------------------------------------------ +-- Redundancy Traps +-- +-- Category: System/1 +-- Subcategory: RDU/53 +------------------------------------------------------------------------------ + +alertRedundancyInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Redundancy information." + --#TYPE "System: Redundancy Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2475 } + +alertRedundancyDegraded NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Redundancy is degraded." + --#TYPE "System: Redundancy Degraded" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2474 } + +alertRedundancyLost NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Redundancy is lost." + --#TYPE "System: Redundancy Lost" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2473 } + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Traps +-- +-- Category: System/1 +-- Subcategory: RFL/20 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module information." + --#TYPE "System: Integrated Dual SD Module Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2211 } + +alertIntegratedDualSDModuleWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module warning." + --#TYPE "System: Integrated Dual SD Module Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2210 } + +alertIntegratedDualSDModuleFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module failure." + --#TYPE "System: Integrated Dual SD Module Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2209 } + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Absent Trap +-- +-- Category: System/1 +-- Subcategory: RFLA/54 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleAbsent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module is absent." + --#TYPE "System: Integrated Dual SD Module absent." + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2481 } + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Redundancy Traps +-- +-- Category: System/1 +-- Subcategory: RRDU/55 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleRedundancyInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module redundancy information." + --#TYPE "System: Integrated Dual SD Module Redundancy Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2491 } + +alertIntegratedDualSDModuleRedundancyDegraded NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module redundancy is degraded." + --#TYPE "System: Integrated Dual SD Module Redundancy Degraded" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2490 } + +alertIntegratedDualSDModuleRedundancyLost NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module redundancy is lost." + --#TYPE "System: Integrated Dual SD Module Redundancy Lost" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2489 } + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: System/1 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertSecurityInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Security information." + --#TYPE "System: Security Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2387 } + +alertSecurityWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Security warning." + --#TYPE "System: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2386 } + +alertSecurityFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Security failure or critical event." + --#TYPE "System: Security Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2385 } + +------------------------------------------------------------------------------ +-- System Event Log Traps +-- +-- Category: System/1 +-- Subcategory: SEL/41 +------------------------------------------------------------------------------ + +alertSystemEventLogInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Event Log information." + --#TYPE "System: System Event Log Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2379 } + +alertSystemEventLogWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Event Log warning." + --#TYPE "System: System Event Log Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2378 } + +alertSystemEventLogFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Event Log failure or critical event." + --#TYPE "System: System Event Log Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2377 } + +------------------------------------------------------------------------------ +-- Software Configuration Traps +-- +-- Category: System/1 +-- Subcategory: SWC/36 +------------------------------------------------------------------------------ + +alertSoftwareConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration information." + --#TYPE "System: Software Configuration Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2339 } + +alertSoftwareConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration warning." + --#TYPE "System: Software Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2338 } + +alertSoftwareConfigurationFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration failure." + --#TYPE "System: Software Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2337 } + +------------------------------------------------------------------------------ +-- Temperature Probe Traps +-- +-- Category: System/1 +-- Subcategory: TMP/14 +------------------------------------------------------------------------------ + +alertTemperatureProbeNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature sensor value is within range." + --#TYPE "System: Temperature Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2163 } + +alertTemperatureProbeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature sensor has detected a warning value." + --#TYPE "System: Temperature Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2162 } + +alertTemperatureProbeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature sensor has detected a failure value." + --#TYPE "System: Temperature Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2161 } + +------------------------------------------------------------------------------ +-- Temperature Statistics Traps +-- +-- Category: System/1 +-- Subcategory: TMPS/59 +------------------------------------------------------------------------------ + +alertTemperatureStatisticsWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature has been above the warning or critical threshold level + for a long enough period of time to be considered in a warning state." + --#TYPE "System: Temperature Statistics Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2522 } + +alertTemperatureStatisticsFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature has been above the warning or critical threshold level + for a long enough period of time to be considered in a critical state." + --#TYPE "System: Temperature Statistics Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2521 } + +------------------------------------------------------------------------------ +-- vFlash Media Device Traps +-- +-- Category: System/1 +-- Subcategory: VFL/57 +------------------------------------------------------------------------------ + +alertvFlashMediaDeviceInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "vFlash Media device information." + --#TYPE "System: vFlash Media Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2507 } + +alertvFlashMediaDeviceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "vFlash Media device warning." + --#TYPE "System: vFlash Media Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2506 } + +alertvFlashMediaDeviceFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "vFlash Media device failure." + --#TYPE "System: vFlash Media Device Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2505 } + +------------------------------------------------------------------------------ +-- vFlash Media Device Absent Trap +-- +-- Category: System/1 +-- Subcategory: VFLA/58 +------------------------------------------------------------------------------ + +alertvFlashMediaDeviceAbsent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "vFlash Media device is absent." + --#TYPE "System: vFlash Media Device Absent" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2515 } + +------------------------------------------------------------------------------ +-- Voltage Probe Traps +-- +-- Category: System/1 +-- Subcategory: VLT/15 +------------------------------------------------------------------------------ + +alertVoltageProbeNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Voltage sensor reading is within range." + --#TYPE "System: Voltage Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2171 } + +alertVoltageProbeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Voltage sensor has detected a warning value." + --#TYPE "System: Voltage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2170 } + +alertVoltageProbeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Voltage sensor has detected a failure value." + --#TYPE "System: Voltage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2169 } + +------------------------------------------------------------------------------ +-- RAC Traps +-- +-- Category: System/1 +-- Subcategory: RAC/60 +------------------------------------------------------------------------------ + +alertRACInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "RAC information." + --#TYPE "System: RAC Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2531 } + +------------------------------------------------------------------------------ +-- System Performance Traps +-- +-- Category: System/1 +-- Subcategory: PFM/75 +------------------------------------------------------------------------------ + +alertSystemPerformanceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Performance warning." + --#TYPE "System: Performance Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2650 } + + +------------------------------------------------------------------------------ +-- Storage Alert Trap Group +-- Storage Traps +-- Category: Storage/2 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.2 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Battery Traps +-- +-- Category: Storage/2 +-- Subcategory: BAT/22 +------------------------------------------------------------------------------ + +alertStorageBatteryInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery information." + --#TYPE "Storage: Battery Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4275 } + +alertStorageBatteryWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery warning." + --#TYPE "Storage: Battery Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4274 } + +alertStorageBatteryFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery failure." + --#TYPE "Storage: Battery Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4273 } + +------------------------------------------------------------------------------ +-- Controller Traps +-- +-- Category: Storage/2 +-- Subcategory: CTL/29 +------------------------------------------------------------------------------ + +alertStorageControllerInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Controller information." + --#TYPE "Storage: Controller Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4331 } + +alertStorageControllerWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Controller warning." + --#TYPE "Storage: Controller Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4330 } + +alertStorageControllerFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Controller failure." + --#TYPE "Storage: Controller Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4329 } + +------------------------------------------------------------------------------ +-- Enclosure Traps +-- +-- Category: Storage/2 +-- Subcategory: ENC/30 +------------------------------------------------------------------------------ + +alertStorageEnclosureInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Enclosure information." + --#TYPE "Storage: Enclosure Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4339 } + +alertStorageEnclosureWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Enclosure warning." + --#TYPE "Storage: Enclosure Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4338 } + +alertStorageEnclosureFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Enclosure failure." + --#TYPE "Storage: Enclosure Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4337 } + +------------------------------------------------------------------------------ +-- Fan Traps +-- +-- Category: Storage/2 +-- Subcategory: FAN/13 +------------------------------------------------------------------------------ + +alertStorageFanInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan information." + --#TYPE "Storage: Fan Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4203 } + +alertStorageFanWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan warning." + --#TYPE "Storage: Fan Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4202 } + +alertStorageFanFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan failure." + --#TYPE "Storage: Fan Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4201 } + +------------------------------------------------------------------------------ +-- Physical Disk Traps +-- +-- Category: Storage/2 +-- Subcategory: PDR/31 +------------------------------------------------------------------------------ + +alertStoragePhysicalDiskInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk information." + --#TYPE "Storage: Physical Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4347 } + +alertStoragePhysicalDiskWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk warning." + --#TYPE "Storage: Physical Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4346 } + +alertStoragePhysicalDiskFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk failure." + --#TYPE "Storage: Physical Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4345 } + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: Storage/2 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertStoragePowerSupplyInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply information." + --#TYPE "Storage: Power Supply Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4235 } + +alertStoragePowerSupplyWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply warning." + --#TYPE "Storage: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4234 } + +alertStoragePowerSupplyFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply failure." + --#TYPE "Storage: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4233 } + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: Storage/2 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertStorageSecurityInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Security information." + --#TYPE "Storage: Security Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4435 } + +alertStorageSecurityWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Security warning." + --#TYPE "Storage: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4434 } + +alertStorageSecurityFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Security failure or critical event." + --#TYPE "Storage: Security Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4433 } + +------------------------------------------------------------------------------ +-- Storage Management Status Traps +-- +-- Category: Storage/2 +-- Subcategory: STOR/10 +------------------------------------------------------------------------------ + +alertStorageManagementInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Management Information. + There is no global status change associated with this trap." + --#TYPE "Storage: Storage Management Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4179 } + +alertStorageManagementWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Management has detected a device independent warning + condition. There is no global status change associated with this + trap." + --#TYPE "Storage: Storage Management Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4178 } + +alertStorageManagementFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Management has detected a device independent error condition. + There is no global status change associated with this trap." + --#TYPE "Storage: Storage Management Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4177 } + +------------------------------------------------------------------------------ +-- Temperature Probe Traps +-- +-- Category: Storage/2 +-- Subcategory: TMP/14 +------------------------------------------------------------------------------ + +alertStorageTemperatureProbeInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature probe information." + --#TYPE "Storage: Temperature Probe Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4211 } + +alertStorageTemperatureProbeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature probe warning." + --#TYPE "Storage: Temperature Probe Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4210 } + +alertStorageTemperatureProbeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature probe failure." + --#TYPE "Storage: Temperature Probe Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4209 } + +------------------------------------------------------------------------------ +-- Virtual Disk Traps +-- +-- Category: Storage/2 +-- Subcategory: VDR/32 +------------------------------------------------------------------------------ + +alertStorageVirtualDiskInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Virtual disk information." + --#TYPE "Storage: Virtual Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4355 } + +alertStorageVirtualDiskWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Virtual disk warning." + --#TYPE "Storage: Virtual Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4354 } + +alertStorageVirtualDiskFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Virtual disk failure." + --#TYPE "Storage: Virtual Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4353 } + + +------------------------------------------------------------------------------ +-- Updates Alert Trap Group +-- Updates Traps +-- Category: Updates/3 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.3 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Update Job Trap +-- +-- Category: Updates/3 +-- Subcategory: RED/8 +------------------------------------------------------------------------------ + +alertUpdateJobInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Update job information." + --#TYPE "Updates: Update Job Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { updatesAlertTrapGroup 0 6211 } + +------------------------------------------------------------------------------ +-- Software Change Traps +-- +-- Category: Updates/3 +-- Subcategory: SWU/21 +------------------------------------------------------------------------------ + +alertSoftwareChangeUpdateWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software change update warning." + --#TYPE "Updates: Software Change Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { updatesAlertTrapGroup 0 6314 } + + +------------------------------------------------------------------------------ +-- Audit Alert Trap Group +-- Audit Traps +-- Category: Audit/4 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.4 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- CMC Traps +-- +-- Category: Audit/4 +-- Subcategory: CMC/62 +------------------------------------------------------------------------------ + +alertCMCAuditInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller audit information." + --#TYPE "Audit: CMC Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8691 } + +alertCMCAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller audit warning." + --#TYPE "Audit: CMC Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8690 } + +alertCMCAuditFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller audit failure or critical event." + --#TYPE "Audit: CMC Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8689 } + +------------------------------------------------------------------------------ +-- Debug Traps +-- +-- Category: Audit/4 +-- Subcategory: FSD/50 +------------------------------------------------------------------------------ + +alertDebugInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Debug authorized." + --#TYPE "Audit: Debug Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8595 } + +alertDebugWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Debug authorization failed." + --#TYPE "Audit: Debug Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8594 } + +------------------------------------------------------------------------------ +-- iDRAC IP Address Change Trap +-- +-- Category: Audit/4 +-- Subcategory: IPA/38 +------------------------------------------------------------------------------ + +alertiDRACIPAddressChange NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "iDRAC IP address has changed." + --#TYPE "iDRAC IP address has changed" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + + ::= { auditAlertTrapGroup 0 8499 } + +------------------------------------------------------------------------------ +-- License Traps +-- +-- Category: Audit/4 +-- Subcategory: LIC/40 +------------------------------------------------------------------------------ + +alertLicenseInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "License information." + --#TYPE "Audit: License Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8515 } + +alertLicenseWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "License warning." + --#TYPE "Audit: License Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8514 } + +alertLicenseFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "License failure." + --#TYPE "Audit: License Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8513 } + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: Audit/4 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "PCI device audit warning." + --#TYPE "Audit: PCI Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8562 } + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: Audit/4 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertPowerSupplyAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power Supply audit warning." + --#TYPE "Audit: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8330 } + +alertPowerSupplyAuditFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power Supply audit failure or critical event." + --#TYPE "Audit: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8329 } + +------------------------------------------------------------------------------ +-- Power Usage Traps +-- +-- Category: Audit/4 +-- Subcategory: PWR/28 +------------------------------------------------------------------------------ + +alertPowerUsageAuditInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power usage audit information." + --#TYPE "Audit: Power Usage Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8419 } + +alertPowerUsageAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power usage audit warning." + --#TYPE "Audit: Power Usage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8418 } + +alertPowerUsageAuditFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power usage audit failure or critical event." + --#TYPE "Audit: Power Usage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8417 } + +------------------------------------------------------------------------------ +-- System Power State Change Trap +-- +-- Category: Audit/4 +-- Subcategory: SYS/48 +------------------------------------------------------------------------------ + +alertSystemPowerStateChangeInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Host is going through a power state change + (powering on or powering off)." + --#TYPE "Audit: System Power State Change Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8579 } + +------------------------------------------------------------------------------ +-- User Tracking Trap +-- +-- Category: Audit/4 +-- Subcategory: USR/37 +------------------------------------------------------------------------------ + +alertUserTrackingWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "User Tracking warning." + --#TYPE "Audit: User Tracking" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8490 } + + +------------------------------------------------------------------------------ +-- Configuration Alert Trap Group +-- Configuration Traps +-- Category: Configuration/5 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.5 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- AutoDiscovery Traps +-- +-- Category: Configuration/5 +-- Subcategory: DIS/49 +------------------------------------------------------------------------------ + +alertAutoDiscoveryInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Auto discovery information." + --#TYPE "Configuration: Auto Discovery Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10635 } + +------------------------------------------------------------------------------ +-- NIC Configuration Traps +-- +-- Category: Configuration/5 +-- Subcategory: IOID/66 +------------------------------------------------------------------------------ + + +alertNetworkConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network configuration information." + --#TYPE "Configuration: Network Configuration Information " + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10771 } + +alertNetworkConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network configuration warning." + --#TYPE "Configuration: Network Configuration Warning " + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10770 } + +------------------------------------------------------------------------------ +-- IP Address Traps +-- +-- Category: Configuration/5 +-- Subcategory: IPA/38 +------------------------------------------------------------------------------ + +alertIPAddressConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "IP Address configuration information." + --#TYPE "Configuration: IP Address Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10547 } + +------------------------------------------------------------------------------ +-- Job Control Traps +-- +-- Category: Configuration/5 +-- Subcategory: JCP/3 +------------------------------------------------------------------------------ + +alertJobControlConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Job Control configuration information." + --#TYPE "Configuration: Job Control Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10267 } + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: Configuration/5 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "PCI device configuration information." + --#TYPE "Configuration: PCI Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10611 } + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: Configuration/5 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertSecurityConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Security configuration warning." + --#TYPE "Configuration: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10578 } + +------------------------------------------------------------------------------ +-- Software Configuration Traps +-- +-- Category: Configuration/5 +-- Subcategory: SWC/36 +------------------------------------------------------------------------------ + +alertSWCConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration warning." + --#TYPE "Configuration: Software Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10530 } + +alertSWCConfigurationFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration failure." + --#TYPE "Configuration: Software Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10529 } + +------------------------------------------------------------------------------ +-- Test Trap +-- +-- Category: Configuration/5 +-- Subcategory: TST/19 +------------------------------------------------------------------------------ + +alertTestTrapEvent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "The iDRAC generated a test trap event in response to a user request." + --#TYPE "Configuration: iDRAC Test Trap Event" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10395 } + +END + +------------------------------------------------------------------------------ +-- End MIB +------------------------------------------------------------------------------ + diff --git a/mibs/INTEL-LAN-ADAPTERS-MIB b/mibs/INTEL-LAN-ADAPTERS-MIB new file mode 100755 index 0000000000..8eeec6dc64 --- /dev/null +++ b/mibs/INTEL-LAN-ADAPTERS-MIB @@ -0,0 +1,1529 @@ +-- /***************************************************************************** +-- ** INTEL CONFIDENTIAL ** +-- ** ** +-- ** Copyright 1998 2011 Intel Corporation All Rights Reserved. ** +-- ** ** +-- ** The source code contained or described herein and all documents related ** +-- ** to the source code ("Material") are owned by Intel Corporation or its ** +-- ** suppliers or licensors. Title to the Material remains with Intel ** +-- ** Corporation or its suppliers and licensors. The Material contains trade ** +-- ** secrets and proprietary and confidential information of Intel or its ** +-- ** suppliers and licensors. The Material is protected by worldwide ** +-- ** copyright and trade secret laws and treaty provisions. No part of the ** +-- ** Material may be used, copied, reproduced, modified, published, ** +-- ** uploaded, posted, transmitted, distributed, or disclosed in any way ** +-- ** without Intel’s prior express written permission. ** +-- ** ** +-- ** No license under any patent, copyright, trade secret or other ** +-- ** intellectual property right is granted to or conferred upon you by ** +-- ** disclosure or delivery of the Materials, either expressly, by ** +-- ** implication, inducement, estoppel or otherwise. Any license under such ** +-- ** intellectual property rights must be express and approved by Intel in ** +-- ** writing. ** +-- *****************************************************************************/ + +INTEL-LAN-ADAPTERS-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY,OBJECT-TYPE, + NOTIFICATION-TYPE, + Counter32, + Integer32, + Gauge32, + enterprises + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, + PhysAddress, + DisplayString + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, + NOTIFICATION-GROUP + FROM SNMPv2-CONF + ; + +intellan MODULE-IDENTITY + LAST-UPDATED "201210310000Z" -- Oct, 31, 2012 + ORGANIZATION "Intel Corp" + CONTACT-INFO + "Intel Corp + http://www.intel.com/" + DESCRIPTION + "The MIB module for Intel LAN SNMP agent." + + REVISION "201210310000Z" -- Oct 31, 2012 + DESCRIPTION + "Version 1.4.10 + Removed the extra 1 after enterprises ID" + + ::= { enterprises 3183 } + + +--iso OBJECT IDENTIFIER ::= { 1 } +--org OBJECT IDENTIFIER ::= { iso 3 } +--dod OBJECT IDENTIFIER ::= { org 6 } +--internet OBJECT IDENTIFIER ::= { dod 1 } +--directory OBJECT IDENTIFIER ::= { internet 1 } +--mgmt OBJECT IDENTIFIER ::= { internet 2 } +--experimental OBJECT IDENTIFIER ::= { internet 3 } +--private OBJECT IDENTIFIER ::= { internet 4 } +--enterprises OBJECT IDENTIFIER ::= { private 1 } +intel OBJECT IDENTIFIER ::= { enterprises 343 } +products OBJECT IDENTIFIER ::= { intel 2 } +nic-products OBJECT IDENTIFIER ::= { products 7 } +intel-lan-adapters OBJECT IDENTIFIER ::= { nic-products 2 } + +component-description OBJECT IDENTIFIER ::= { intel-lan-adapters 1 } + +InterfaceIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each interface or + interface sub-layer in the managed system. It is + recommended that values are assigned contiguously starting + from 1. The value for each interface sub-layer must remain + constant at least from one re-initialization of the entity's + network management system to the next re-initialization." + SYNTAX Integer32 (1..2147483647) + +company OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Company that provided this MIB - Intel(R) Corporation." + ::= { component-description 1 } + +description OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description of this component - + Intel(R) Network Adapter(s), Advanced Management." + ::= { component-description 2 } + +operatingSystem OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operating System of the server on which the SNMP agent is executed." + ::= { component-description 3 } + +mibVersion1-4-3 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version of this MIB - the empty string is always returned." + ::= { component-description 4 } + +mibVersionSupported OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version of the MIB supported by the agent. + 1.x.y indicates that every MIB version of that template is supported by the agent." + ::= { component-description 5 } + +agentExtensionVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version of the SNMP extension agent." + ::= { component-description 6 } + +status OBJECT-TYPE + SYNTAX INTEGER { + baseDriverNotLoadedAnsNotLoaded(0), + baseDriverLoadedAnsNotLoaded(1), + baseDriverNotLoadedAnsLoaded(2), + baseDriverLoadedAnsLoaded(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates status and functionality of the adapter(s) - + whether the base driver and ANS are loaded." + ::= { component-description 7 } + + +adaptersTables OBJECT IDENTIFIER ::= { intel-lan-adapters 2 } + +-- ****************************** +-- Generic Adapter Attr Table +-- ****************************** +genericAdaptersAttrTables OBJECT IDENTIFIER ::= { adaptersTables 1 } + +genericAdaptersAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF GenericAdapterAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all kinds of adapters." + ::= { genericAdaptersAttrTables 1 } + +genericAdapterAttrEntry OBJECT-TYPE + SYNTAX GenericAdapterAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all kinds of adapters. + There is one 'entry' for each physical or virtual adapter." + INDEX { adapterIndex } + ::= { genericAdaptersAttrTable 1 } + +GenericAdapterAttrEntry ::= SEQUENCE { + adapterIndex InterfaceIndex, + adapterName DisplayString, + adapterType INTEGER, + adapterDriverLoadStatus INTEGER +} + +adapterIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value, greater than or equal to zero, for each interface." + ::= { genericAdapterAttrEntry 1 } + +adapterName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the adapter interface. + There is a unique name for each instance." + ::= { genericAdapterAttrEntry 2 } + +adapterType OBJECT-TYPE + SYNTAX INTEGER { + standAlone(0), + teamMember(1), + virtual(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of adapter (member, stand-alone, or virtual)." + ::= { genericAdapterAttrEntry 3 } + +adapterDriverLoadStatus OBJECT-TYPE + SYNTAX INTEGER { + loaded(0), + notLoaded(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Load status of the driver: + -'loaded' if the driver is loaded on the NIC; 'notLoaded' otherwise. + A status of 'notLoaded' means that the NIC is missing (via 'hotRemove') + or the driver is not fully loaded for some reason." + ::= { genericAdapterAttrEntry 4 } + +genericAdaptersDriversAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF GenericAdapterDriverAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all kinds of adapter drivers." + ::= { genericAdaptersAttrTables 2 } + +genericAdapterDriverAttrEntry OBJECT-TYPE + SYNTAX GenericAdapterDriverAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all kinds of adapter drivers. + There is one 'entry' for each adapter driver" + INDEX { adapterIndex } + ::= { genericAdaptersDriversAttrTable 1 } + +GenericAdapterDriverAttrEntry ::= SEQUENCE { + adapterDriverName DisplayString, + adapterDriverInfo DisplayString, + adapterDriverVersion DisplayString, + adapterDriverPath DisplayString, + adapterDriverDate DisplayString, + adapterDriverSize DisplayString, + adapterIpAddress DisplayString +} + +adapterDriverName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the adapter driver." + ::= { genericAdapterDriverAttrEntry 1 } + +adapterDriverInfo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional information about the adapter. Includes name of the NIC." + ::= { genericAdapterDriverAttrEntry 2 } + +adapterDriverVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Adapter driver version number." + ::= { genericAdapterDriverAttrEntry 3 } + +adapterDriverPath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Adapter driver path name." + ::= { genericAdapterDriverAttrEntry 4 } + +adapterDriverDate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Adapter driver creation date (in mm/dd/yy format)." + ::= { genericAdapterDriverAttrEntry 5 } + +adapterDriverSize OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Adapter driver file size." + ::= { genericAdapterDriverAttrEntry 6 } + +-- ***************************************************************** +-- Generic Adapter IP address +-- ***************************************************************** + +adapterIpAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Adapter IP address" + ::= { genericAdapterDriverAttrEntry 7 } + +genericAdaptersTrafficStatsAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF GenericAdapterTrafficStatsAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Traffic stats common to all kinds of adapters." + ::= { genericAdaptersAttrTables 3 } + +genericAdapterTrafficStatsAttrEntry OBJECT-TYPE + SYNTAX GenericAdapterTrafficStatsAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Traffic stats common to all kinds of adapters. + There is one 'entry' for each adapter instance." + INDEX { adapterIndex } + ::= { genericAdaptersTrafficStatsAttrTable 1 } + +GenericAdapterTrafficStatsAttrEntry ::= SEQUENCE { + adapterRxPackets Counter32, + adapterTxPackets Counter32, + adapterRxBytes Counter32, + adapterTxBytes Counter32, + adapterRxErrors Counter32, + adapterTxErrors Counter32, + adapterRxDropped Counter32, + adapterTxDropped Counter32, + adapterRxMulticast Counter32, + adapterCollisions Counter32 +} + +adapterRxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of packets received." + ::= { genericAdapterTrafficStatsAttrEntry 1 } + +adapterTxPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of packets transmitted." + ::= { genericAdapterTrafficStatsAttrEntry 2 } + +adapterRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes received." + ::= { genericAdapterTrafficStatsAttrEntry 3 } + +adapterTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes transmitted." + ::= { genericAdapterTrafficStatsAttrEntry 4 } + +adapterRxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of packets received with errors + (packets that failed to reach the protocol)." + ::= { genericAdapterTrafficStatsAttrEntry 5 } + +adapterTxErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of packets that failed to transmit." + ::= { genericAdapterTrafficStatsAttrEntry 6 } + +adapterRxDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of receive packets dropped due to overrun." + ::= { genericAdapterTrafficStatsAttrEntry 7 } + +adapterTxDropped OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of transmit packets dropped due to successive collisions." + ::= { genericAdapterTrafficStatsAttrEntry 8 } + +adapterRxMulticast OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Multicast packets received." + ::= { genericAdapterTrafficStatsAttrEntry 9 } + +adapterCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of single collisions." + ::= { genericAdapterTrafficStatsAttrEntry 10 } + +-- ******************************* +-- Physical Adapter Attr Table +-- ******************************* +physicalAdaptersAttrTables OBJECT IDENTIFIER ::= { adaptersTables 2 } + +physicalAdaptersAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalAdapterAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all Physical Adapters." + ::= { physicalAdaptersAttrTables 1 } + +physicalAdapterAttrEntry OBJECT-TYPE + SYNTAX PhysicalAdapterAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all Physical Adapters. + There is one 'entry' for each standalone or member adapter." + INDEX { physicalAdapterIndex } + ::= { physicalAdaptersAttrTable 1 } + +PhysicalAdapterAttrEntry ::= SEQUENCE { + physicalAdapterIndex InterfaceIndex, + physicalAdapterLinkStatus INTEGER, + physicalAdapterLinkStatusChangesCounter Counter32, + physicalAdapterSpeed Gauge32, + physicalAdapterDplxMode INTEGER, + physicalAdapterAutoNegotiation INTEGER, + physicalAdapterPciBus Integer32, + physicalAdapterPciSlot Integer32, + physicalAdapterIrq Integer32, + physicalAdapterCurrentNA PhysAddress, + physicalAdapterPermanentNA PhysAddress, + physicalAdapterOnlineDiagStatus INTEGER, + physicalAdapterExpressTeamed INTEGER, + physicalAdapterExpressTeamBundleId Integer32 +} + +physicalAdapterIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value, greater than or equal to zero, for each interface." + ::= { physicalAdapterAttrEntry 1 } + +physicalAdapterLinkStatus OBJECT-TYPE + SYNTAX INTEGER { + not-available(-1), + link-up(0), + link-down(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Physical adapter link status. Appears only if available - + that is, only if the driver is compliant with SNMP; + otherwise, NO_SUCH_NAME is returned." + ::= { physicalAdapterAttrEntry 2 } + +physicalAdapterLinkStatusChangesCounter OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of changes in physical adapter link status. + Any change ('up-to-down' or 'down- to-up') is counted. + This value can be reset (to zero) by the user; no other value is permitted. + This value appears only if it is available - + that is, only if the driver is compliant with SNMP; + otherwise, NO_SUCH_NAME is returned." + ::= { physicalAdapterAttrEntry 3 } + +physicalAdapterSpeed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Physical adapter speed (in Mbps). + Appears only for an SNMP-compliant adapter with link up." + ::= { physicalAdapterAttrEntry 4 } + +physicalAdapterDplxMode OBJECT-TYPE + SYNTAX INTEGER { + not-available(0), + half(1), + full(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Physical Adapter Duplex Mode. + Appears only for an SNMP-compliant adapter with link up." + ::= { physicalAdapterAttrEntry 5 } + +physicalAdapterAutoNegotiation OBJECT-TYPE + SYNTAX INTEGER { + on(0), + off(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Physical adapter autonegotiation mode. + This value appears only if it is available - + that is, only if the driver is compliant with SNMP; + otherwise, NO_SUCH_NAME is returned." + ::= { physicalAdapterAttrEntry 6 } + +physicalAdapterPciBus OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Physical adapter PCI bus number." + ::= { physicalAdapterAttrEntry 7 } + +physicalAdapterPciSlot OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Physical adapter PCI slot number." + ::= { physicalAdapterAttrEntry 8 } + +physicalAdapterIrq OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Physical adapter Interrupt Request number." + ::= { physicalAdapterAttrEntry 9 } + +physicalAdapterCurrentNA OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current MAC address of the physical adapter(in hex notation)." + ::= { physicalAdapterAttrEntry 10 } + +physicalAdapterPermanentNA OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Permanent MAC address of the physical adapter(in hex notation)." + ::= { physicalAdapterAttrEntry 11 } + +physicalAdapterOnlineDiagStatus OBJECT-TYPE + SYNTAX INTEGER { + not-available(-1), + failed(0), + passed(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Online Diagnostics Status of the Physical Adapter. + Online Diagnostics consist of Link Test and other Hardware Tests." + ::= { physicalAdapterAttrEntry 12 } + +physicalAdapterExpressTeamed OBJECT-TYPE + SYNTAX INTEGER { + not-available(0), + primary(1), + secondary(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Physical Adapter Express team status. + Appears only for an adapter with express teaming capability." + ::= { physicalAdapterAttrEntry 13 } + +physicalAdapterExpressTeamBundleId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique value to identify the express team in the system." + ::= { physicalAdapterAttrEntry 14 } + +physicalAdaptersAttrOffloadTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalAdapterAttrOffloadEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes of offloading-enabled physical adapters. + There is one 'entry' for each SNMP-compliant physical adapter." + ::= { physicalAdaptersAttrTables 2 } + +physicalAdapterAttrOffloadEntry OBJECT-TYPE + SYNTAX PhysicalAdapterAttrOffloadEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes of offloading-enabled physical adapters. + There is one 'entry' for each SNMP-compliant physical adapter." + INDEX { physicalAdapterIndex } + ::= { physicalAdaptersAttrOffloadTable 1 } + +PhysicalAdapterAttrOffloadEntry ::= SEQUENCE { + physicalAdapterTcpRxChecksumOffLoadEnable INTEGER, + physicalAdapterTcpRxChecksumBad Counter32, + physicalAdapterTcpTxChecksumOffLoadEnable INTEGER, + physicalAdapterIpv4RxChecksumOffLoadEnable INTEGER, + physicalAdapterIpv4TxChecksumOffLoadEnable INTEGER, + physicalAdapterIpv4TCPSegmentationOffLoadEnable INTEGER +} + +physicalAdapterTcpRxChecksumOffLoadEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(0), + disabled(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When enabled, TCP for 'receive' checksums are performed in hardware." + ::= { physicalAdapterAttrOffloadEntry 1 } + +physicalAdapterTcpRxChecksumBad OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of bad 'receive' checksums." + ::= { physicalAdapterAttrOffloadEntry 2 } + +physicalAdapterTcpTxChecksumOffLoadEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(0), + disabled(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When enabled, TCP for 'transmit' checksums are performed in hardware." + ::= { physicalAdapterAttrOffloadEntry 3 } + +physicalAdapterIpv4RxChecksumOffLoadEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(0), + disabled(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When enabled, IPv4 for 'receive' checksums are performed in hardware." + ::= { physicalAdapterAttrOffloadEntry 4 } + +physicalAdapterIpv4TxChecksumOffLoadEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(0), + disabled(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When enabled, IPv4 for 'receive' checksums are performed in hardware." + ::= { physicalAdapterAttrOffloadEntry 5 } + +physicalAdapterIpv4TCPSegmentationOffLoadEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When enabled, TCP Segmentation is performed in hardware." + ::= { physicalAdapterAttrOffloadEntry 6 } + +-- ************************************ +-- Virtual Adapter Attr Tables +-- ************************************ +virtualAdaptersAttrTables OBJECT IDENTIFIER ::= { adaptersTables 3 } + +virtualAdaptersAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF VirtualAdapterAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all iANS-virtual adapters." + ::= { virtualAdaptersAttrTables 1 } + +virtualAdapterAttrEntry OBJECT-TYPE + SYNTAX VirtualAdapterAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all iANS-virtual adapters. + There is one 'entry' for each virtual adapter" + INDEX { virtualAdapterIndex } + ::= { virtualAdaptersAttrTable 1 } + +VirtualAdapterAttrEntry ::= SEQUENCE { + virtualAdapterIndex InterfaceIndex, + virtualAdapterAnsId Integer32 +} + +virtualAdapterIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value, greater than or equal to zero, for each interface." + ::= { virtualAdapterAttrEntry 1 } + +virtualAdapterAnsId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ID of the team to which the adapter belongs." + ::= { virtualAdapterAttrEntry 2 } + +virtualAdaptersVlanAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF VirtualAdapterVlanAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all iANS-virtual adapters VLANs." + ::= { virtualAdaptersAttrTables 2 } + +virtualAdapterVlanAttrEntry OBJECT-TYPE + SYNTAX VirtualAdapterVlanAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VLAN attributes.Appears for virtual adapters that support VLANs only. + There is one 'entry' for each VLAN." + INDEX { virtualAdapterIndex } + ::= { virtualAdaptersVlanAttrTable 1 } + +VirtualAdapterVlanAttrEntry ::= SEQUENCE { + virtualAdapterVlanId INTEGER +} + +virtualAdapterVlanId OBJECT-TYPE + SYNTAX INTEGER { + none(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ID for this virtual adapter VLAN." + ::= { virtualAdapterVlanAttrEntry 1 } + +-- ******************** +-- Ans Attr Tables +-- ******************** +ansAttrTables OBJECT IDENTIFIER ::= { adaptersTables 4 } + +ansAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AnsAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANS attributes." + ::= { ansAttrTables 1 } + +ansAttrEntry OBJECT-TYPE + SYNTAX AnsAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANS attributes. There is one 'entry' for each team" + INDEX { ansId } + ::= { ansAttrTable 1 } + +AnsAttrEntry ::= SEQUENCE { + ansId Integer32, + ansNumberOfMembers Integer32, + ansNumberOfVirtualAdapters Integer32 +} + +ansId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ANS ID. A unique value." + ::= { ansAttrEntry 1 } + +ansNumberOfMembers OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of member adapters in the team." + ::= { ansAttrEntry 2 } + +ansNumberOfVirtualAdapters OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of virtual adapters in the team." + ::= { ansAttrEntry 3 } + +ansVlansAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AnsVlanAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANS attributes." + ::= { ansAttrTables 2 } + +ansVlanAttrEntry OBJECT-TYPE + SYNTAX AnsVlanAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANS VLAN attributes. + Appears only if VLAN is active. There is one 'entry' for each Vlan." + INDEX { ansId } + ::= { ansVlansAttrTable 1 } + +AnsVlanAttrEntry ::= SEQUENCE { + ansVlanTaggingType INTEGER +} + +ansVlanTaggingType OBJECT-TYPE + SYNTAX INTEGER { + none(0), + tag-802-1Q(1), + tag-802-1P(2), + tag-802-3AC(3), + tag-iSL(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Tagging type of the VLAN adapter." + ::= { ansVlanAttrEntry 1 } + +ansTeamsAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AnsTeamAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANS team attributes." + ::= { ansAttrTables 3 } + +ansTeamAttrEntry OBJECT-TYPE + SYNTAX AnsTeamAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ANS team attributes. Appears only when adapter teaming exist. + There is one 'entry' for each team." + INDEX { ansId } + ::= { ansTeamsAttrTable 1 } + +AnsTeamAttrEntry ::= SEQUENCE { + ansTeamName DisplayString, + ansTeamMode INTEGER, + ansTeamLinkState INTEGER, + ansTeamSpeed Gauge32, + ansTeamProbesState INTEGER, + ansTeamProbesMode INTEGER, + ansTeamLoadBalanceRefresh INTEGER, + ansTeamProbesSendTime INTEGER, + ansTeamPreferredPrimaryIndex INTEGER, + ansTeamCurrentPrimaryIndex INTEGER, + ansTeamPreviousPrimaryIndex INTEGER, + ansTeamFailoverCounter Counter32, + ansTeamSlaCompatible INTEGER, + ansTeamAggrSelectionMode INTEGER, + ansTeamRlbSupport INTEGER +} + +ansTeamName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique ANS team name" + ::= { ansTeamAttrEntry 1 } + +ansTeamMode OBJECT-TYPE + SYNTAX INTEGER { + adapter-fault-tolerance(0), + adaptive-load-balancing(1), + static-link-aggregation(2), + iEEE-802-3ad(4), + switch-fault-tolerance(5), + none(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Team mode." + ::= { ansTeamAttrEntry 2 } + +ansTeamLinkState OBJECT-TYPE + SYNTAX INTEGER { + up(0), + down(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Team link state. + Aggregation of the link state of all team members ( 0 = some up)." + ::= { ansTeamAttrEntry 3 } + +ansTeamSpeed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Team speed.Speed of the current primary member (in Mbps)." + ::= { ansTeamAttrEntry 4 } + +ansTeamProbesState OBJECT-TYPE + SYNTAX INTEGER { + probes-enabled(0), + probes-disabled(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If enabled, the ANS uses probes to check on its members." + ::= { ansTeamAttrEntry 5 } + +ansTeamProbesMode OBJECT-TYPE + SYNTAX INTEGER { + broadcast(0), + multicast(1), + not-available(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Mode of probe usage." + ::= { ansTeamAttrEntry 6 } + +ansTeamLoadBalanceRefresh OBJECT-TYPE + SYNTAX INTEGER { + not-available(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "In seconds. If available, the number of seconds that passes before + the software resets or refreshes the current load across team members." + ::= { ansTeamAttrEntry 7 } + +ansTeamProbesSendTime OBJECT-TYPE + SYNTAX INTEGER { + not-available(0) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "In seconds. If available, + the interval in seconds during which probe packets are sent." + ::= { ansTeamAttrEntry 8 } + +ansTeamPreferredPrimaryIndex OBJECT-TYPE + SYNTAX INTEGER { + not-available(-1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the preferred primary member adapter. " + ::= { ansTeamAttrEntry 9 } + +ansTeamCurrentPrimaryIndex OBJECT-TYPE + SYNTAX INTEGER { + not-available(-1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the current primary member adapter." + ::= { ansTeamAttrEntry 10 } + +ansTeamPreviousPrimaryIndex OBJECT-TYPE + SYNTAX INTEGER { + not-available(-1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index of the previous primary member adapter." + ::= { ansTeamAttrEntry 11 } + +ansTeamFailoverCounter OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Failover counter - + that is, the number of failovers the team suffered. + This value can be reset by the user - + that is, it can be set to zero only; no other value is permitted." + ::= { ansTeamAttrEntry 12 } + +ansTeamSlaCompatible OBJECT-TYPE + SYNTAX INTEGER { + not-available(-1), + yes(0), + no(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates compatibility with Static Link Aggregation mode + when in IEEE 802.3AD mode." + ::= { ansTeamAttrEntry 13 } + +ansTeamAggrSelectionMode OBJECT-TYPE + SYNTAX INTEGER { + not-available(-1), + bandwidth(0), + count(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates aggregation selection mode when in IEEE 802.3AD mode." + ::= { ansTeamAttrEntry 14 } + +ansTeamRlbSupport OBJECT-TYPE + SYNTAX INTEGER { + not-available(-1), + enabled(0), + disabled(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether 'receive load balancing support' is enabled + when in AdaptiveLoadBalancing teaming mode. + (If disabled, only the transmission is balanced.)" + ::= { ansTeamAttrEntry 15 } + +-- *********************************** +-- Ans Member Attr Tables +-- *********************************** +ansMembersAttrTables OBJECT IDENTIFIER ::= { adaptersTables 5 } + +ansMembersAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AnsMemberAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all iANS-TeamMember Adapters." + ::= { ansMembersAttrTables 1 } + +ansMemberAttrEntry OBJECT-TYPE + SYNTAX AnsMemberAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all iANS-TeamMember Adapters. + There is one 'entry' for each team member adapter." + INDEX { ansMemberIndex } + ::= { ansMembersAttrTable 1 } + +AnsMemberAttrEntry ::= SEQUENCE { + ansMemberIndex InterfaceIndex, + ansMemberAnsId Integer32 +} + +ansMemberIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each member. The value is non-negative and identical + to the value of the physical adapter associated with this member." + ::= { ansMemberAttrEntry 1 } + +ansMemberAnsId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "ID of the ANS to which the Adapter belongs." + ::= { ansMemberAttrEntry 2 } + +ansTeamMembersAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AnsTeamMemberAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes common to all iANS-TeamMember Adapters." + ::= { ansMembersAttrTables 2 } + +ansTeamMemberAttrEntry OBJECT-TYPE + SYNTAX AnsTeamMemberAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes of iANS-TeamMember Adapters related to adapter teaming. + Appears only if adapter teaming exists." + INDEX { ansMemberIndex } + ::= { ansTeamMembersAttrTable 1 } + +AnsTeamMemberAttrEntry ::= SEQUENCE { + ansTeamMemberState INTEGER, + ansTeamMemberFailureCounter Counter32, + ansTeamMemberPriority INTEGER +} + +ansTeamMemberState OBJECT-TYPE + SYNTAX INTEGER { + active(0), + disabled(1), + standby(2), + active-secondary(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "iANS-TeamMember adapter state." + ::= { ansTeamMemberAttrEntry 1 } + +ansTeamMemberFailureCounter OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Failure counter - that is, the number of failovers from this member. + This value can be reset by the user - + that is, it can be set to zero only; no other value is permitted." + ::= { ansTeamMemberAttrEntry 2 } + +ansTeamMemberPriority OBJECT-TYPE + SYNTAX INTEGER { + none(0), + primary(1), + secondary(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Priority of the team member." + ::= {ansTeamMemberAttrEntry 3 } + +-- ****** +-- events +-- ****** + +events OBJECT IDENTIFIER ::= { intel-lan-adapters 3 } + +-- ********************** +-- physicalAdapter Events +-- ********************** +physicalAdaptersEvents OBJECT IDENTIFIER ::= { events 1 } + +physicalAdaptersTraps OBJECT IDENTIFIER ::= { physicalAdaptersEvents 1 } + +physicalAdapterLinkUpTrap NOTIFICATION-TYPE + OBJECTS { physicalAdapterIndex } + STATUS current + DESCRIPTION + "Adapter has reached a linkup state." + ::= { physicalAdaptersTraps 1 } + +physicalAdapterLinkDownTrap NOTIFICATION-TYPE + OBJECTS { physicalAdapterIndex } + STATUS current + DESCRIPTION + "Adapter has reached a link down state." + ::= { physicalAdaptersTraps 2 } + +physicalAdapterAddedTrap NOTIFICATION-TYPE + OBJECTS { physicalAdapterIndex } + STATUS current + DESCRIPTION + "Adapter has been installed." + ::= { physicalAdaptersTraps 3 } + +physicalAdapterRemovedTrap NOTIFICATION-TYPE + OBJECTS { physicalAdapterIndex } + STATUS current + DESCRIPTION + "Adapter has been uninstalled." + ::= { physicalAdaptersTraps 4 } + +physicalAdapterOnlineDiagPassedTrap NOTIFICATION-TYPE + OBJECTS { physicalAdapterIndex } + STATUS current + DESCRIPTION + "Adapter's online diagnostics passed." + ::= { physicalAdaptersTraps 5 } + +physicalAdapterOnlineDiagFailedTrap NOTIFICATION-TYPE + OBJECTS { physicalAdapterIndex } + STATUS current + DESCRIPTION + "Adapter's online diagnostics failed. + Online diagnostics might fail because of link loss or other hardware issues." + ::= { physicalAdaptersTraps 6 } + +physicalAdapterLinkUpDownTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether a physical adapter's link up and link down traps are enabled. + The user can set this value." + ::= { physicalAdaptersEvents 2 } + +physicalAdapterAddedRemovedTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether a physical adapter's 'added' and 'removed' traps are enabled. + The user can set this value." + ::= { physicalAdaptersEvents 3 } + +physicalAdapterOnlineDiagPassedFailedTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether physicalAdapterOnlineDiag 'passed' and 'failed' are enabled." + ::= { physicalAdaptersEvents 4 } + +-- ******************* +-- Virtual Adapter Events +-- ******************* +virtualAdaptersEvents OBJECT IDENTIFIER ::= { events 2 } + +virtualAdaptersTraps OBJECT IDENTIFIER ::= { virtualAdaptersEvents 1 } + +virtualAdapterAddedTrap NOTIFICATION-TYPE + OBJECTS { virtualAdapterIndex, ansId } + STATUS current + DESCRIPTION + "Virtual adapter has been added to a team." + ::= { virtualAdaptersTraps 1 } + +virtualAdapterRemovedTrap NOTIFICATION-TYPE + OBJECTS { virtualAdapterIndex } + STATUS current + DESCRIPTION + "Virtual adapter has been removed from a team." + ::= { virtualAdaptersTraps 2 } + +virtualAdaptersTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether virtual adapter traps are enabled. + The user can set this value." + ::= { virtualAdaptersEvents 2 } + +-- ******************* +-- team Events +-- ******************* +ansEvents OBJECT IDENTIFIER ::= { events 3 } + +ansTraps OBJECT IDENTIFIER ::= { ansEvents 1 } + +ansTeamFailoverTrap NOTIFICATION-TYPE + OBJECTS { + ansId, + ansTeamCurrentPrimaryIndex, + ansTeamPreviousPrimaryIndex + } + STATUS current + DESCRIPTION + "The primary team member has been changed." + ::= { ansTraps 1 } + +ansAddedTrap NOTIFICATION-TYPE + OBJECTS { ansId } + STATUS current + DESCRIPTION + "Team has been added." + ::= { ansTraps 2 } + +ansRemovedTrap NOTIFICATION-TYPE + OBJECTS { ansId } + STATUS current + DESCRIPTION + "Team has been removed." + ::= { ansTraps 3 } + +ansTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether team traps are enabled. + The user can set this value." + ::= { ansEvents 2 } + +-- ******************* +-- Team Member Events +-- ******************* +teamMembersEvents OBJECT IDENTIFIER ::= { events 4 } + +teamMembersTraps OBJECT IDENTIFIER ::= { teamMembersEvents 1 } + +teamMemberAddedTrap NOTIFICATION-TYPE + OBJECTS { ansMemberIndex, ansId } + STATUS current + DESCRIPTION + "Member has been added to a team." + ::= { teamMembersTraps 1 } + +teamMemberRemovedTrap NOTIFICATION-TYPE + OBJECTS { ansMemberIndex } + STATUS current + DESCRIPTION + "Member has been removed from a team." + ::= { teamMembersTraps 2 } + +teamMemberTrapEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether traps for members are enabled. + The user can set this value." + ::= { teamMembersEvents 2 } + + +-- +-- Compliance Statements +-- + +intellan-conformance OBJECT IDENTIFIER ::= { intellan 1 } +phyAdapterGroups OBJECT IDENTIFIER ::= { intellan-conformance 1 } +phyAdapterNotificationGroups OBJECT IDENTIFIER ::= { intellan-conformance 2 } +miscGroups OBJECT IDENTIFIER ::= { intellan-conformance 3 } +vtAdapterGroups OBJECT IDENTIFIER ::= { intellan-conformance 4 } +vtAdapterNotificationGroups OBJECT IDENTIFIER ::= { intellan-conformance 5 } +ansGroups OBJECT IDENTIFIER ::= { intellan-conformance 6 } +ansNotificationGroups OBJECT IDENTIFIER ::= { intellan-conformance 7 } +teamGroups OBJECT IDENTIFIER ::= { intellan-conformance 8 } +teamNotificationGroups OBJECT IDENTIFIER ::= { intellan-conformance 9 } + + +intellanCompliances OBJECT IDENTIFIER ::= { intellan-conformance 10 } + +intellan-compliance MODULE-COMPLIANCE + STATUS current + + DESCRIPTION + "Compliance statements for the Intel Lan Agent." + + MODULE -- this module + MANDATORY-GROUPS { phyAdapterGroup, phyAdapterNotificationGroup, + miscGroup, vtAdapterGroup, vtAdapterNotificationGroup } + + + + ::= { intellanCompliances 1 } + + + +phyAdapterGroup OBJECT-GROUP + OBJECTS { physicalAdapterOnlineDiagPassedFailedTrapEnable, physicalAdapterAddedRemovedTrapEnable, physicalAdapterLinkUpDownTrapEnable, + physicalAdapterIpv4TCPSegmentationOffLoadEnable, physicalAdapterIpv4TxChecksumOffLoadEnable, + physicalAdapterIpv4RxChecksumOffLoadEnable, physicalAdapterTcpTxChecksumOffLoadEnable, + physicalAdapterTcpRxChecksumBad, physicalAdapterTcpRxChecksumOffLoadEnable, + physicalAdapterExpressTeamBundleId, physicalAdapterExpressTeamed, + physicalAdapterOnlineDiagStatus, physicalAdapterPermanentNA, + physicalAdapterCurrentNA, physicalAdapterIrq, + physicalAdapterPciSlot, physicalAdapterPciBus, + physicalAdapterAutoNegotiation, physicalAdapterDplxMode, + physicalAdapterSpeed, physicalAdapterLinkStatusChangesCounter, + physicalAdapterLinkStatus, physicalAdapterIndex, + adapterCollisions, adapterRxMulticast, + adapterTxDropped, adapterRxDropped, + adapterTxErrors, adapterRxErrors, + adapterTxBytes, adapterRxBytes, + adapterTxPackets, adapterRxPackets, + adapterIpAddress, adapterDriverSize, + adapterDriverDate, adapterDriverPath, + adapterDriverVersion, adapterDriverInfo, + adapterDriverName, adapterDriverLoadStatus, + adapterType, adapterName, adapterIndex + } + STATUS current + DESCRIPTION + "A collection of objects for phyiscal adapter group" + ::= { phyAdapterGroups 1 } + +phyAdapterNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { + physicalAdapterOnlineDiagFailedTrap, physicalAdapterOnlineDiagPassedTrap, + physicalAdapterRemovedTrap, physicalAdapterAddedTrap, + physicalAdapterLinkDownTrap, physicalAdapterLinkUpTrap + + } + STATUS current + DESCRIPTION + "A collection of notification for physical adapter notification" + ::= { phyAdapterNotificationGroups 1 } + +vtAdapterGroup OBJECT-GROUP + OBJECTS { virtualAdaptersTrapEnable, virtualAdapterVlanId, virtualAdapterAnsId, virtualAdapterIndex + } + STATUS current + DESCRIPTION + "A collection of objects for virtual adapter group" + ::= { vtAdapterGroups 1 } + + +vtAdapterNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { + virtualAdapterRemovedTrap, virtualAdapterAddedTrap + } + STATUS current + DESCRIPTION + "A collection of notification for virtual adapter notification" + ::= { vtAdapterNotificationGroups 1 } + + +ansGroup OBJECT-GROUP + OBJECTS { ansId, ansNumberOfMembers, ansNumberOfVirtualAdapters, + ansVlanTaggingType, ansTeamName, ansTeamMode, ansTeamLinkState, + ansTeamSpeed, ansTeamProbesState, ansTeamProbesMode, + ansTeamLoadBalanceRefresh, ansTeamProbesSendTime, + ansTeamPreferredPrimaryIndex, ansTeamCurrentPrimaryIndex, + ansTeamPreviousPrimaryIndex, ansTeamFailoverCounter, + ansTeamSlaCompatible, ansTeamAggrSelectionMode, ansTeamRlbSupport, + ansMemberIndex, ansMemberAnsId, ansTeamMemberState, + ansTeamMemberFailureCounter, ansTeamMemberPriority, ansTrapEnable + } + STATUS current + DESCRIPTION + "A collection of objects for ans group" + ::= { ansGroups 1 } + + +ansNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { + ansTeamFailoverTrap, ansAddedTrap, ansRemovedTrap + } + STATUS current + DESCRIPTION + "A collection of notification for ans notification" + ::= { ansNotificationGroups 1 } + +teamGroup OBJECT-GROUP + OBJECTS { teamMemberTrapEnable + } + STATUS current + DESCRIPTION + "A collection of objects for team group" + ::= { teamGroups 1 } + + +teamNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { + teamMemberAddedTrap, teamMemberRemovedTrap + } + STATUS current + DESCRIPTION + "A collection of notification for team notification" + ::= { teamNotificationGroups 1 } + +miscGroup OBJECT-GROUP + OBJECTS { status, agentExtensionVersion, + mibVersionSupported, mibVersion1-4-3, + operatingSystem, description, company + } + STATUS current + DESCRIPTION + "A collection of objects for misc. group" + ::= { miscGroups 1 } + +-- Compliance statement end + + +END diff --git a/mibs/MIB-DELL-10892 b/mibs/MIB-DELL-10892 old mode 100644 new mode 100755 index a67700843f..6bb344161c --- a/mibs/MIB-DELL-10892 +++ b/mibs/MIB-DELL-10892 @@ -1,16989 +1,16995 @@ -------------------------------------------------------------------------------- --- --- Title: Systems Management Instrumentation MIB --- --- Version: 7.4.0 --- --- Release Date:Nov 2013 --- --- Description: This MIB defines MIB objects that make system instrumentation --- data available to SNMP management applications. --- --- Copyright (c) 2000-2013 Dell Inc. --- All Rights Reserved. --- --- Note: The information and functionality described by this MIB file, --- like many MIB files, is subject to change without notice. --- Please examine the version number of this MIB and compare it --- to the version number you are expecting. --- --- OID Format Legend: --- = attribute ID --- = index ID --- -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Begin MIB -------------------------------------------------------------------------------- - -MIB-Dell-10892 DEFINITIONS ::= BEGIN - -IMPORTS - enterprises, IpAddress - FROM RFC1155-SMI - OBJECT-TYPE - FROM RFC-1212 - TRAP-TYPE - FROM RFC-1215 - DisplayString - FROM RFC1213-MIB; - - -------------------------------------------------------------------------------- --- Object Identifiers -------------------------------------------------------------------------------- - --- Enterprise ID -dell OBJECT IDENTIFIER ::= { enterprises 674 } - --- Server3 Branch -server3 OBJECT IDENTIFIER ::= { dell 10892 } - --- Server3 Groups -baseboardGroup OBJECT IDENTIFIER ::= { server3 1 } --- drsOutOfBandGroup OBJECT IDENTIFIER ::= { server3 2 } --- (drsOutOfBandGroup is defined in another MIB file.) - --- Server3 Baseboard Groups for Instrumentation -mIBVersionGroup OBJECT IDENTIFIER ::= { baseboardGroup 1 } -systemManagementSoftwareGroup OBJECT IDENTIFIER ::= { baseboardGroup 100 } -systemStateGroup OBJECT IDENTIFIER ::= { baseboardGroup 200 } -chassisInformationGroup OBJECT IDENTIFIER ::= { baseboardGroup 300 } -operatingSystemGroup OBJECT IDENTIFIER ::= { baseboardGroup 400 } -systemResourceGroup OBJECT IDENTIFIER ::= { baseboardGroup 500 } -powerGroup OBJECT IDENTIFIER ::= { baseboardGroup 600 } -thermalGroup OBJECT IDENTIFIER ::= { baseboardGroup 700 } -userSecurityGroup OBJECT IDENTIFIER ::= { baseboardGroup 800 } -remoteFlashBIOSGroup OBJECT IDENTIFIER ::= { baseboardGroup 900 } -portGroup OBJECT IDENTIFIER ::= { baseboardGroup 1000 } -deviceGroup OBJECT IDENTIFIER ::= { baseboardGroup 1100 } -slotGroup OBJECT IDENTIFIER ::= { baseboardGroup 1200 } -memoryGroup OBJECT IDENTIFIER ::= { baseboardGroup 1300 } -biosSetUpControlGroup OBJECT IDENTIFIER ::= { baseboardGroup 1400 } -lraGroup OBJECT IDENTIFIER ::= { baseboardGroup 1500 } -cooGroup OBJECT IDENTIFIER ::= { baseboardGroup 1600 } --- remoteAccessGroup OBJECT IDENTIFIER ::= { baseboardGroup 1700 } --- (remoteAccessGroup is defined in dcs3rmt.mib) -clusterGroup OBJECT IDENTIFIER ::= { baseboardGroup 1800 } -bmcGroup OBJECT IDENTIFIER ::= { baseboardGroup 1900 } --- fruGroup OBJECT IDENTIFIER ::= { baseboardGroup 2000 } --- (fruGroup is defined in dcs3fru.mib) -alertGroup OBJECT IDENTIFIER ::= { baseboardGroup 5000 } - - -------------------------------------------------------------------------------- --- Textual Conventions -------------------------------------------------------------------------------- - -DellString ::= DisplayString (SIZE (0..64)) -DellSecurityString ::= DisplayString (SIZE (0..255)) -DellCostofOwnershipString ::= DisplayString (SIZE (0..64)) -DellMACAddress ::= OCTET STRING (SIZE(6)) -DellObjectRange ::= INTEGER (1..128) -DellUnsigned8BitRange ::= INTEGER (0..255) -DellUnsigned16BitRange ::= INTEGER (0..65535) -DellUnsigned32BitRange ::= INTEGER (0..4294967295) -DellSigned32BitRange ::= INTEGER (-2147483647..2147483647) -DellBoolean ::= INTEGER (0..1) -- 0 = FALSE, 1 = TRUE - --- This definition is required because SNMP V1 does not support 64 bit ranges. --- The information sent back by this subagent will have the most significant --- byte of the information as the first byte (i.e. network byte order). --- E.G. The integer value 0x1029384754657687 will be sent as: --- Byte: 1 2 3 4 ... --- Hex: 10 29 38 47 ... --- Binary: 0001 0000 0010 1001 0011 1000 0100 0111 ... -DellUnsigned64BitRange ::= OCTET STRING (SIZE(8)) - --- DellDateName dates are defined in the displayable format --- yyyymmddHHMMSS.uuuuuu+ooo --- where yyyy is the year, mm is the month number, dd is the day of the month, --- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the --- number of microseconds, and +ooo is the offset from UTC in minutes. If east --- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the --- number is preceded by a minus (-) sign. --- --- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT --- would be represented as: 19940525133015.000000-300 --- --- Values must be zero-padded if necessary, like "05" in the example above. --- If a value is not supplied for a field, each character in the field --- must be replaced with asterisk ('*') characters. -DellDateName ::= DisplayString (SIZE (25)) - --- Note About Bit Fields: --- Attributes with definitions of xxxCapabilities, xxxCapabilitiesUnique, --- xxxSettings, xxxSettingsUnique and xxxFeatureFlags are integers --- representing a series of bit definitions. They are NOT enumerations and --- should be treated as bit fields. The value is passed as a decimal value; --- it should be converted to hex, and the appropriate bits should be parsed --- from that. Some of the more common bit combinations are defined in some --- variables, but not all combinations are or will be defined. - --- --- Generic State Capabilities --- -DellStateCapabilities ::= INTEGER { - -- If set to 0 (zero), object has no state capabilities - unknownCapabilities(1), -- object's state capabilities are unknown - -- The object's state capabilities allow it to be set to: - enableCapable(2), -- be disabled (offline) or be enabled (online) - notReadyCapable(4), -- not ready - enableAndNotReadyCapable(6) -} - --- --- Generic State Settings --- -DellStateSettings ::= INTEGER { - -- If set to 0 (zero), object has no state settings enabled and is disabled - unknown(1), -- object's state is unknown - enabled(2), -- object's state is disabled (offline) if bit is off - -- or enabled (online) if bit is on - notReady(4), -- object's state is not ready - enabledAndNotReady(6) -} - --- --- Probe Capabilities --- -DellProbeCapabilities ::= INTEGER { - -- If set to 0 (zero) the object has no probe capabilities - -- The object's probe capabilities allow it to be set to: - upperNonCriticalThresholdSetCapable(1), -- upper noncritical threshold can be set - lowerNonCriticalThresholdSetCapable(2), -- lower noncritical threshold can be set - upperNonCriticalThresholdDefaultCapable(4), -- upper noncritical threshold can be set to default - lowerNonCriticalThresholdDefaultCapable(8) -- lower noncritical threshold can be set to default -} - --- --- Status --- -DellStatus ::= INTEGER { - other(1), -- status is not one of the following: - unknown(2), -- status of object is unknown (not known or monitored) - ok(3), -- status of object is OK (normal) - nonCritical(4), -- status of object is noncritical (warning) - critical(5), -- status of object is critical (failure) - nonRecoverable(6) -- status of object is non-recoverable (dead) -} - --- --- Redundancy Status --- -DellStatusRedundancy ::= INTEGER { - other(1), -- redundancy status is not one of the following: - unknown(2), -- redundancy status is unknown (not known or monitored) - full(3), -- object is fully redundant - degraded(4), -- object's redundancy has been degraded - lost(5), -- object's redundancy has been lost - notRedundant(6), -- redundancy status does not apply or object is not redundant - redundancyOffline(7) -- redundancy object taken offline -} - --- --- Probe Status --- -DellStatusProbe ::= INTEGER { - other(1), -- probe status is not one of the following: - unknown(2), -- probe status is unknown (not known or monitored) - ok(3), -- probe is reporting a value within the thresholds - nonCriticalUpper(4), -- probe has crossed upper noncritical threshold - criticalUpper(5), -- probe has crossed upper critical threshold - nonRecoverableUpper(6), -- probe has crossed upper non-recoverable threshold - nonCriticalLower(7), -- probe has crossed lower noncritical threshold - criticalLower(8), -- probe has crossed lower critical threshold - nonRecoverableLower(9), -- probe has crossed lower non-recoverable threshold - failed(10) -- probe is not functional -} - - -------------------------------------------------------------------------------- --- --- MIB Groups --- -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- MIB Version Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1..0 -------------------------------------------------------------------------------- - -mIBMajorVersionNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0001.0001 This attribute defines the major version number for the version -of this MIB supported by the systems management software." - ::= { mIBVersionGroup 1 } -mIBMinorVersionNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0001.0002 This attribute defines the minor version number for the version -of this MIB supported by the systems management software." - ::= { mIBVersionGroup 2 } -mIBMaintenanceVersionNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0001.0003 This attribute defines the maintenance version number for the -version of this MIB supported by the systems management software." - ::= { mIBVersionGroup 3 } - - -------------------------------------------------------------------------------- --- System Management Software Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.100..0 -------------------------------------------------------------------------------- - -SMSSupportedTypes ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - supportsSNMP(1), -- supports SNMP - supportsDMI(2), -- supports DMI - supportsSNMPandDMI(3), -- supports SNMP and DMI - supportsCIMOM(4), -- supports CIM - supportsSNMPandCIMOM(5), -- supports SNMP and CIM - supportsSNMPandDMIandCIMOM(7) -- supports SNMP, DMI and CIM -} -SMSFeatureFlags ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- If 0 (zero), none of the following features are enabled: - webOneToOneManagementPreferred(1) -- web 1:1 management preferred -} -SMSSNMPAgentFeatureFlags ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- If 0 (zero), none of the following features are enabled: - supportsSparseTables(1) -- SNMP agent supports sparse tables -} - -systemManagementSoftwareName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0001 This attribute defines the product name of the -systems management software." - ::= { systemManagementSoftwareGroup 1 } -systemManagementSoftwareVersionNumberName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0002 This attribute defines the version number of the -instrumentation component of the systems management software." - ::= { systemManagementSoftwareGroup 2 } -systemManagementSoftwareBuildNumber OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0003 This attribute defines the build number of the -instrumentation component of the systems management software." - ::= { systemManagementSoftwareGroup 3 } -systemManagementSoftwareDescriptionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0004 This attribute defines the description of the -systems management software." - ::= { systemManagementSoftwareGroup 4 } -systemManagementSoftwareSupportedProtocol OBJECT-TYPE - SYNTAX SMSSupportedTypes - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0005 This attribute defines the protocols supported by the -instrumentation component of the systems management software." - ::= { systemManagementSoftwareGroup 5 } -systemManagementSoftwarePreferredProtocol OBJECT-TYPE - SYNTAX SMSSupportedTypes - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0006 This attribute defines the protocol preferred by the -instrumentation component of the systems management software." - ::= { systemManagementSoftwareGroup 6 } -systemManagementSoftwareUpdateLevelName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0007 This attribute defines the update level of the -instrumentation component of the systems management software." - ::= { systemManagementSoftwareGroup 7 } -systemManagementSoftwareURLName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0008 This attribute defines the Universal Resource Locator (URL) -of the systems management software." - ::= { systemManagementSoftwareGroup 8 } -systemManagementSoftwareLanguageName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0009 This attribute defines the language of the -systems management software." - ::= { systemManagementSoftwareGroup 9 } -systemManagementSoftwareGlobalVersionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0010 This attribute defines the global version of the -systems management software." - ::= { systemManagementSoftwareGroup 10 } -systemManagementSoftwareFeatureFlags OBJECT-TYPE - SYNTAX SMSFeatureFlags - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0011 This attribute defines the features of the systems management -software. If the value is zero, none of the features are enabled. -Note: This attribute is a bit field, so the value returned may be -a combination of the bit masks defined in SMSFeatureFlags." - ::= { systemManagementSoftwareGroup 11 } -systemManagementSoftwareSNMPAgentFeatureFlags OBJECT-TYPE - SYNTAX SMSSNMPAgentFeatureFlags - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0012 This attribute defines the features of the SNMP agent -software provided by the operating system. If the value is zero, -none of the features are enabled. Note: This attribute is a bit field, -so the value returned may be a combination of the bit masks defined -in SMSSNMPAgentFeatureFlags." - ::= { systemManagementSoftwareGroup 12 } -systemManagementSoftwareManufacturerName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0100.0013 This attribute defines the manufacturer of the -systems management software." - ::= { systemManagementSoftwareGroup 13 } - - -------------------------------------------------------------------------------- --- System State Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.200 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- System State Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.200.10.1.. -------------------------------------------------------------------------------- - -SystemStateTableEntry ::= SEQUENCE { - systemStatechassisIndex DellObjectRange, - systemStateGlobalSystemStatus DellStatus, - systemStateChassisState DellStateSettings, - systemStateChassisStatus DellStatus, - systemStatePowerUnitStateDetails OCTET STRING (SIZE(1..128)), - systemStatePowerUnitStatusRedundancy DellStatusRedundancy, - systemStatePowerUnitStatusDetails OCTET STRING (SIZE(1..128)), - systemStatePowerSupplyStateDetails OCTET STRING (SIZE(1..128)), - systemStatePowerSupplyStatusCombined DellStatus, - systemStatePowerSupplyStatusDetails OCTET STRING (SIZE(1..128)), - systemStateVoltageStateDetails OCTET STRING (SIZE(1..128)), - systemStateVoltageStatusCombined DellStatus, - systemStateVoltageStatusDetails OCTET STRING (SIZE(1..128)), - systemStateAmperageStateDetails OCTET STRING (SIZE(1..128)), - systemStateAmperageStatusCombined DellStatus, - systemStateAmperageStatusDetails OCTET STRING (SIZE(1..128)), - systemStateCoolingUnitStateDetails OCTET STRING (SIZE(1..128)), - systemStateCoolingUnitStatusRedundancy DellStatusRedundancy, - systemStateCoolingUnitStatusDetails OCTET STRING (SIZE(1..128)), - systemStateCoolingDeviceStateDetails OCTET STRING (SIZE(1..128)), - systemStateCoolingDeviceStatusCombined DellStatus, - systemStateCoolingDeviceStatusDetails OCTET STRING (SIZE(1..128)), - systemStateTemperatureStateDetails OCTET STRING (SIZE(1..128)), - systemStateTemperatureStatusCombined DellStatus, - systemStateTemperatureStatusDetails OCTET STRING (SIZE(1..128)), - systemStateMemoryDeviceStateDetails OCTET STRING (SIZE(1..128)), - systemStateMemoryDeviceStatusCombined DellStatus, - systemStateMemoryDeviceStatusDetails OCTET STRING (SIZE(1..128)), - systemStateChassisIntrusionStateDetails OCTET STRING (SIZE(1..128)), - systemStateChassisIntrusionStatusCombined DellStatus, - systemStateChassisIntrusionStatusDetails OCTET STRING (SIZE(1..128)), - systemStateACPowerSwitchStateDetails OCTET STRING (SIZE(1..128)), - systemStateACPowerSwitchStatusRedundancy DellStatusRedundancy, - systemStateACPowerSwitchStatusDetails OCTET STRING (SIZE(1..128)), - systemStateACPowerCordStateDetails OCTET STRING (SIZE(1..128)), - systemStateACPowerCordStatusCombined DellStatus, - systemStateACPowerCordStatusDetails OCTET STRING (SIZE(1..128)), - systemStateRedundantMemoryUnitStateDetails OCTET STRING (SIZE(1..128)), - systemStateRedundantMemoryUnitStatusRedundancy DellStatusRedundancy, - systemStateRedundantMemoryUnitStatusDetails OCTET STRING (SIZE(1..128)), - systemStateEventLogStatus DellStatus, - systemStatePowerUnitStatusCombined DellStatus, - systemStatePowerUnitStatusList OCTET STRING (SIZE(1..128)), - systemStateCoolingUnitStatusCombined DellStatus, - systemStateCoolingUnitStatusList OCTET STRING (SIZE(1..128)), - systemStateACPowerSwitchStatusCombined DellStatus, - systemStateACPowerSwitchStatusList OCTET STRING (SIZE(1..128)), - systemStateRedundantMemoryUnitStatusCombined DellStatus, - systemStateRedundantMemoryUnitStatusList OCTET STRING (SIZE(1..128)), - systemStateProcessorDeviceStatusCombined DellStatus, - systemStateProcessorDeviceStatusList OCTET STRING (SIZE(1..128)), - systemStateBatteryStatusCombined DellStatus, - systemStateBatteryStatusList OCTET STRING (SIZE(1..128)), - systemStateSDCardUnitStatusCombined DellStatus, - systemStateSDCardUnitStatusList OCTET STRING (SIZE(1..128)), - systemStateSDCardDeviceStatusCombined DellStatus, - systemStateSDCardDeviceStatusList OCTET STRING (SIZE(1..128)) -} - -systemStateTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemStateTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0200.0010 This object defines the System State Table." - ::= { systemStateGroup 10 } -systemStateTableEntry OBJECT-TYPE - SYNTAX SystemStateTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0200.0010.0001 This object defines the System State Table Entry." - INDEX { systemStatechassisIndex } - ::= { systemStateTable 1 } - -systemStatechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0001 This attribute defines the index (one based) of this -chassis." - ::= { systemStateTableEntry 1 } -systemStateGlobalSystemStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0002 This attribute defines the global system status -of all chassis being monitored by the systems management software." - ::= { systemStateTableEntry 2 } -systemStateChassisState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0003 This attribute defines the state settings of this -chassis." - ::= { systemStateTableEntry 3 } -systemStateChassisStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0004 This attribute defines the status of this chassis." - ::= { systemStateTableEntry 4 } -systemStatePowerUnitStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0005 This attribute lists the state settings of each -power unit of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of a power unit. The first byte returned represents the state settings -of the first power unit, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 5 } -systemStatePowerUnitStatusRedundancy OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0006 This attribute defines the combined redundancy status -of all power units of this chassis." - ::= { systemStateTableEntry 6 } -systemStatePowerUnitStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0007 This attribute lists the redundancy status of each -power unit of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the redundancy status -of a power unit. The first byte returned represents the redundancy status -of the first power unit, etc. The bytes have the same definition type as -DellStatusRedundancy." - ::= { systemStateTableEntry 7 } -systemStatePowerSupplyStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0008 This attribute lists the state settings of each -power supply of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of a power supply. The first byte returned represents the state settings -of the first power supply, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 8 } -systemStatePowerSupplyStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0009 This attribute defines the combined status of all -power supplies of this chassis." - ::= { systemStateTableEntry 9 } -systemStatePowerSupplyStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0010 This attribute lists the status of each power supply -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of a power supply. -The first byte returned represents the status of the first power supply, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 10 } -systemStateVoltageStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0011 This attribute lists the state settings of each -voltage probe of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of a voltage probe. The first byte returned represents the state settings -of the first voltage probe, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 11 } -systemStateVoltageStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0012 This attribute defines the combined status of all -voltage probes of this chassis." - ::= { systemStateTableEntry 12 } -systemStateVoltageStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0013 This attribute lists the status of each voltage probe -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of a voltage probe. -The first byte returned represents the status of the first voltage probe, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 13 } -systemStateAmperageStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0014 This attribute lists the state settings of each -amperage probe of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of an amperage probe. The first byte returned represents the state settings -of the first amperage probe, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 14 } -systemStateAmperageStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0015 This attribute defines the combined status of all -amperage probes of this chassis." - ::= { systemStateTableEntry 15 } -systemStateAmperageStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0016 This attribute lists the status of each amperage probe -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of an amperage probe. -The first byte returned represents the status of the first amperage probe, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 16 } -systemStateCoolingUnitStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0017 This attribute lists the state settings of each -cooling unit of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of a cooling unit. The first byte returned represents the state settings -of the first cooling unit, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 17 } -systemStateCoolingUnitStatusRedundancy OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0018 This attribute defines the combined redundancy status -of all cooling units of this chassis." - ::= { systemStateTableEntry 18 } -systemStateCoolingUnitStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only STATUS mandatory - DESCRIPTION -"0200.0010.0001.0019 This attribute lists the redundancy status of each -cooling unit of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the redundancy status -of a cooling unit. The first byte returned represents the redundancy status -of the first cooling unit, etc. The bytes have the same definition type as -DellStatusRedundancy." - ::= { systemStateTableEntry 19 } -systemStateCoolingDeviceStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0020 This attribute lists the state settings of each -cooling device of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of a cooling device. The first byte returned represents the state settings -of the first cooling device, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 20 } -systemStateCoolingDeviceStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0021 This attribute defines the combined status of all -cooling devices of this chassis." - ::= { systemStateTableEntry 21 } -systemStateCoolingDeviceStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0022 This attribute lists the status of each cooling device -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of a cooling device. -The first byte returned represents the status of the first cooling device, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 22 } -systemStateTemperatureStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0023 This attribute lists the state settings of each -temperature probe of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of a temperature probe. The first byte returned represents the state settings -of the first temperature probe, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 23 } -systemStateTemperatureStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0024 This attribute defines the combined status of all -temperature probes of this chassis." - ::= { systemStateTableEntry 24 } -systemStateTemperatureStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0025 This attribute lists the status of each temperature probe -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of a temperature probe. -The first byte returned represents the status of the first temperature probe, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 25 } -systemStateMemoryDeviceStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0026 This attribute lists the state settings of each -memory device of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of a memory device. The first byte returned represents the state settings -of the first memory device, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 26 } -systemStateMemoryDeviceStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0027 This attribute defines the combined status of all -memory devices of this chassis." - ::= { systemStateTableEntry 27 } -systemStateMemoryDeviceStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0028 This attribute lists the status of each memory device -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of a memory device. -The first byte returned represents the status of the first memory device, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 28 } -systemStateChassisIntrusionStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0029 This attribute lists the state settings of each -intrusion detection device of this chassis. The results are returned as -a binary octet string where each byte of the octet string represents the -state settings of an intrusion detection device. The first byte returned -represents the state settings of the first intrusion detection device, etc. -The bytes have the same definition type as DellStateSettings." - ::= { systemStateTableEntry 29 } -systemStateChassisIntrusionStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0030 This attribute defines the combined status of all -intrusion detection devices of this chassis." - ::= { systemStateTableEntry 30 } -systemStateChassisIntrusionStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0031 This attribute lists the status of each intrusion -detection device of this chassis. The results are returned as a binary -octet string where each byte of the octet string represents the status -of an intrusion detection device. The first byte returned represents the -status of the first intrusion detection device, etc. The bytes have the -same definition type as DellStatus." - ::= { systemStateTableEntry 31 } -systemStateACPowerSwitchStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0032 This attribute lists the state settings of each -AC power switch of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the state settings -of an AC power switch. The first byte returned represents the state settings -of the first AC power switch, etc. The bytes have the same definition type -as DellStateSettings." - ::= { systemStateTableEntry 32 } -systemStateACPowerSwitchStatusRedundancy OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0033 This attribute defines the combined redundancy status -of all AC power switches of this chassis." - ::= { systemStateTableEntry 33 } -systemStateACPowerSwitchStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0034 This attribute lists the redundancy status of each -AC power switch of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the redundancy status -of an AC power switch. The first byte returned represents the redundancy -status of the first AC power switch, etc. The bytes have the same definition -type as DellStatusRedundancy." - ::= { systemStateTableEntry 34 } -systemStateACPowerCordStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0035 This attribute lists the state settings of each -AC power cord associated with an AC power switch of this chassis. -The results are returned as a binary octet string where each byte of -the octet string represents the state settings of an AC power cord. -The first byte returned represents the state settings of the first -AC power cord, etc. The bytes have the same definition type as -DellStateSettings." - ::= { systemStateTableEntry 35 } -systemStateACPowerCordStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0036 This attribute defines the combined status of all -AC power cords for any AC power switches of this chassis." - ::= { systemStateTableEntry 36 } -systemStateACPowerCordStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0037 This attribute lists the status of each AC power cord -associated with an AC power switch of this chassis. The results are returned -as a binary octet string where each byte of the octet string represents -the status of an AC power cord. The first byte returned represents the status -of the first AC power cord, etc. The bytes have the same definition type -as DellStatus." - ::= { systemStateTableEntry 37 } -systemStateRedundantMemoryUnitStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0038 This attribute lists the state settings of each -redundant memory unit of this chassis. The results are returned as -a binary octet string where each byte of the octet string represents -the state settings of a redundant memory unit. The first byte returned -represents the state settings of the first redundant memory unit, etc. -The bytes have the same definition type as DellStateSettings." - ::= { systemStateTableEntry 38 } -systemStateRedundantMemoryUnitStatusRedundancy OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0039 This attribute defines the combined redundancy status -of all redundant memory units of this chassis." - ::= { systemStateTableEntry 39 } -systemStateRedundantMemoryUnitStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0040 This attribute lists the redundancy status of each -redundant memory unit of this chassis. The results are returned as a binary -octet string where each byte of the octet string represents the redundancy -status of a redundant memory unit. The first byte returned represents the -redundancy status of the first redundant memory unit, etc. The bytes have -the same definition type as DellStatusRedundancy." - ::= { systemStateTableEntry 40 } -systemStateEventLogStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0041 This attribute defines the overall status of the -(ESM) event log of this chassis." - ::= { systemStateTableEntry 41 } -systemStatePowerUnitStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0042 This attribute defines the combined status -of all power units of this chassis." - ::= { systemStateTableEntry 42 } -systemStatePowerUnitStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0043 This attribute lists the status of each -power unit of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the status -of a power unit. The first byte returned represents the status -of the first power unit, etc. The bytes have the same definition type -as DellStatus." - ::= { systemStateTableEntry 43 } -systemStateCoolingUnitStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0044 This attribute defines the combined status -of all cooling units of this chassis." - ::= { systemStateTableEntry 44 } -systemStateCoolingUnitStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0045 This attribute lists the status of each -cooling unit of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the status -of a cooling unit. The first byte returned represents the status -of the first cooling unit, etc. The bytes have the same definition type -as DellStatus." - ::= { systemStateTableEntry 45 } -systemStateACPowerSwitchStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0046 This attribute defines the combined status -of all AC power switches of this chassis." - ::= { systemStateTableEntry 46 } -systemStateACPowerSwitchStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0047 This attribute lists the status of each -AC power switch of this chassis. The results are returned as a binary octet -string where each byte of the octet string represents the status -of an AC power switch. The first byte returned represents the status -of the first AC power switch, etc. The bytes have the same definition type -as DellStatus." - ::= { systemStateTableEntry 47 } -systemStateRedundantMemoryUnitStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0048 This attribute defines the combined status -of all redundant memory units of this chassis." - ::= { systemStateTableEntry 48 } -systemStateRedundantMemoryUnitStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0049 This attribute lists the status of each -redundant memory unit of this chassis. The results are returned as a binary -octet string where each byte of the octet string represents the status -of a redundant memory unit. The first byte returned represents the status -of the first redundant memory unit, etc. The bytes have the same definition -type as DellStatus." - ::= { systemStateTableEntry 49 } -systemStateProcessorDeviceStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0050 This attribute defines the combined status of all -processor devices of this chassis." - ::= { systemStateTableEntry 50 } -systemStateProcessorDeviceStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0051 This attribute lists the status of each processor device -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of a processor device. -The first byte returned represents the status of the first processor device, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 51 } -systemStateBatteryStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0052 This attribute defines the combined status of all -batteries of this chassis." - ::= { systemStateTableEntry 52 } -systemStateBatteryStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0053 This attribute lists the status of each battery -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of a battery. -The first byte returned represents the status of the first battery, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 53 } -systemStateSDCardUnitStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0054 This attribute defines the combined status -of all SD Card units of this chassis." - ::= { systemStateTableEntry 54 } -systemStateSDCardUnitStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0055 This attribute lists the status of each -SD Card unit of this chassis. The results are returned as a binary -octet string where each byte of the octet string represents the status -of a SD Card unit. The first byte returned represents the status -of the first SD Card unit, etc. The bytes have the same definition -type as DellStatus." - ::= { systemStateTableEntry 55 } -systemStateSDCardDeviceStatusCombined OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0056 This attribute defines the combined status of all -SD Card devices of this chassis." - ::= { systemStateTableEntry 56 } -systemStateSDCardDeviceStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0200.0010.0001.0057 This attribute lists the status of each SD Card device -of this chassis. The results are returned as a binary octet string where -each byte of the octet string represents the status of a SD Card device. -The first byte returned represents the status of the first SD Card device, -etc. The bytes have the same definition type as DellStatus." - ::= { systemStateTableEntry 57 } - - -------------------------------------------------------------------------------- --- Chassis Information Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300 -------------------------------------------------------------------------------- - - -DellStateCapabilitiesLogUnique ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- log state capabilities are unknown - onlineCapable(2), -- log can be enabled (online) or disabled (offline) - notReadyCapable(4), -- log can be not ready - resetCapable(8) -- log can be reset -} -DellStateSettingsLogUnique ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- log state settings are unknown - online(2), -- log is enabled (online) - notReady(4), -- log is not ready - reset(8) -- reset log -} -DellLogFormat ::= INTEGER { - raw(1), -- format is Raw - ascii(2), -- format is ASCII - uniCode(3) -- format is Unicode -} - - -------------------------------------------------------------------------------- --- Chassis Information Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300.10.1.. -------------------------------------------------------------------------------- - -DellChassisType ::= INTEGER { - other(1), -- type is other than following values - unknown(2), -- type is unknown - desktop(3), -- type is Desktop - lowProfileDesktop(4), -- type is Low Profile Desktop - pizzaBox(5), -- type is Pizza Box - miniTower(6), -- type is MiniTower - tower(7), -- type is Tower - portable(8), -- type is Portable - lapTop(9), -- type is Laptop - noteBook(10), -- type is Notebook - handHeld(11), -- type is Handheld - dockingStation(12), -- type is Docking Station - allInOne(13), -- type is All-In-One - subNoteBook(14), -- type is SubNotebook - spaceSaving(15), -- type is Spacesaver - lunchBox(16), -- type is Lunchbox - mainSystemChassis(17), -- type is Main System Chassis - expansionChassis(18), -- type is Expansion Chassis - subChassis(19), -- type is SubChassis - busExpansionChassis(20), -- type is Bus Expansion Chassis - peripheralChassis(21), -- type is Peripheral Chassis - raidChassis(22), -- type is RAID Chassis - rackMountChassis(23), -- type is Rack-mounted Chassis - sealedCasePC(24), -- type is Sealed-case PC - multiSystemChassis(25) -- type is Multi-system Chassis -} -DellChassisSystemClass ::= INTEGER { - other(1), -- class is other than following values - unknown(2), -- class is unknown - workstationClass(3), -- class is Workstation - serverClass(4), -- class is Server - desktopClass(5), -- class is Desktop - portableClass(6), -- class is Portable - netPCClass(7), -- class is Net PC - storageClass(8) -- class is Storage -} -DellConnectionStatus ::= INTEGER { - unknown(2), -- status is unknown - ok(3), -- status is OK - failure(4) -- status is Failure -} -DellFanControlCapabilities ::= INTEGER { - -- If 0 (zero), there are no Fan Control capabilities - unknown(1), -- fan control capabilities are unknown - lowSpeedCapable(2), -- fan can be set to low speed - highSpeedCapable(4), -- fan can be set to high speed - lowOrHighSpeedCapable(6) -- fan can be set to low or high speed -} -DellFanControlSettings ::= INTEGER { - -- If 0 (zero), there are no Fan Control settings - unknown(1), -- fan control settings are unknown - lowSpeed(2), -- fan set to low speed - highSpeed(4) -- fan set to high speed -} -DellLEDControlCapabilities ::= INTEGER { - -- If 0 (zero), there are no LED Control capabilities - unknown(1), -- LED control capabilities are unknown - alertOnErrorCapable(2), -- LED can alert on error condition - alertOnWarningAndErrorCapable(4), -- LED can alert on error and warning condition - alertOnWarningOrErrorCapable(6) -- LED can alert on error or warning condition -} -DellLEDControlSettings ::= INTEGER { - -- If 0 (zero), there are no LED Control settings - unknown(1), -- LED control settings are unknown - alertOnError(2), -- LED set to alert on error condition - alertOnWarningAndError(4) -- LED set to alert on error or warning condition -} -DellHDFaultLEDControlCapabilities ::= INTEGER { - -- If 0 (zero), there are no Hard Drive Fault LED Control capabilities - unknownCapabilities(1), -- LED control capabilities are unknown - enableCapable(2), -- LED can be be enabled (online) or disabled (offline) - notReadyCapable(4), -- LED can be not ready - resetCapable(8) -- LED can be reset -} -DellHDFaultLEDControlSettings ::= INTEGER { - -- If 0 (zero), there are no Hard Drive Fault LED Control settings - unknown(1), -- LED control settings are unknown - enabled(2), -- LED is enabled (online) - notReady(4), -- LED is not ready - reset(8), -- reset LED - resetAndEnable(10) -- reset and enable LED -} -DellChassisIdentifyControlCapabilities ::= INTEGER { - -- If 0 (zero), there are no Chassis Identify Control capabilities - unknownCapabilities(1), -- chassis identify capabilities are unknown - -- The objects capabilities allow it to be set to: - enableCapable(2), -- chassis identify can be enabled (online) or disabled (offline) - notReadyCapable(4), -- chassis identify can be not ready - identifyCapable(8) -- chassis idenfity can be made to identify chassis -} -DellChassisIdentifyControlSettings ::= INTEGER { - -- If 0 (zero), there are no Chassis Identify Control settings - unknown(1), -- chassis identify settings are unknown - enabled(2), -- chassis identify is enabled (online) - notReady(4), -- chassis identify is not ready - identifyChassis(8), -- identify chassis - identifyChassisAndEnable(10) -- identify chassis and enabled -} -DellHostControlCapabilities ::= INTEGER { - -- If 0 (zero), there are no Host Control capabilities - manualRebootCapable(1), -- host can be rebooted - manualPowerOFFCapable(2), -- host can be powered off - manualPowerCycleCapable(4), -- host can be power cycled - manualAllExceptOperatingSystemShutdownCapable(7), -- all host control capabilities except OS shutdown - manualOperatingSystemShutdownCapable(8), -- operating system can be shutdown - manualFullyCapable(15), -- all host control capabilities - manualRebootWithOSShutdownCapable(16), -- host can be rebooted with operating system shutdown - manualRebootWithoutOSShutdownCapable(32), -- host can be rebooted without operating system shutdown - manualPowerOffWithOSShutdownCapable(64), -- host can be powered off with operating system shutdown - manualPowerOffWithoutOSShutdownCapable(128),-- host can be powered off without operating system shutdown - manualPowerCycleWithOSShutdownCapable(256), -- host can be power cycled with operating system shutdown - manualPowerCycleWithoutOSShutdownCapable(512) -- host can be power cycled with operating system shutdown -} -DellHostControlSettings ::= INTEGER { - -- If 0 (zero), there are no Host Control settings - manualReboot(1), -- reboot host - manualPowerOFF(2), -- power off host - manualPowerCycle(4), -- power cycle host - manualOperatingSystemShutdown(8), -- shutdown operating system on host - manualOperatingSystemShutdownThenReboot(9), -- shutdown operating system on host then reboot host - manualOperatingSystemShutdownThenPowerOFF(10), -- shutdown operating system on host then power off host - manualOperatingSystemShutdownThenPowerCycle(12) -- shutdown operating system on host then power cycle host -} -DellWatchDogControlCapabilities ::= INTEGER { - -- If 0 (zero), there are no Watchdog Control capabilities - automaticRebootCapable(1), -- watchdog can reboot host - automaticPowerCycleCapable(2), -- watchdog can power cycle host - automaticNotificationCapable(4), -- watchdog can notify - automaticWatchDogTimerCapable(8), -- watchdog supports timer - automaticPowerOffCapable(16), -- watchdog can power off host - automaticAllExceptNotificationCapable(27), -- all capabilities except notification - automaticFullyCapable(31) -- all watchdog control capabilities -} -DellWatchControlSettings ::= INTEGER { - -- If 0 (zero), there are no Watchdog Control settings - automaticRebootEnabled(1), -- watchdog set for automatic reboot - automaticPowerCycleEnabled(2), -- watchdog set for automatic power cycle - automaticNotificationEnabled(4), -- watchdog set for automatic notification - automaticPowerOffEnabled(8) -- watchdog set for automatic power off -} -DellWatchDogTimerCapabilities ::= INTEGER { - -- If 0 (zero), there are no Watchdog Timer capabilities - type1Capable(1), -- watchdog can time in range of 20-480 seconds - type2Capable(2), -- watchdog can time in 30, 60, 120 and 480 second intervals - type3Capable(4) -- watchdog can time in 60 second intervals -} -DellPowerButtonControlCapabilities ::= INTEGER { - -- If 0 (zero), there are no Power Button Control capabilities - unknownCapabilities(1), -- power button capabilities are unknown - enableCapable(2) -- power button can be enabled or disabled -} -DellPowerButtonControlSettings ::= INTEGER { - -- If 0 (zero), there are no Power Button Control settings - unknown(1), -- power button settings are unknown - enabled(2), -- power button is enabled - disabled(4) -- power button disabled -} -DellNMIButtonControlCapabilities ::= INTEGER { - -- If 0 (zero), there are no NMI Button Control capabilities - unknownCapabilities(1), -- NMI button capabilities are unknown - enableCapable(2) -- NMI button can be enabled or disabled -} -DellNMIButtonControlSettings ::= INTEGER { - -- If 0 (zero), there are no NMI Button Control settings - unknown(1), -- NMI button settings are unknown - enabled(2), -- NMI button is enabled - disabled(4) -- NMI button disabled -} -DellSystemProperties ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - no properties - energySmart(1) -- Energy Smart system -} - -ChassisInformationTableEntry ::= SEQUENCE { - chassisIndexChassisInformation DellObjectRange, - chassisStateCapabilities DellStateCapabilities, - chassisStateSettings DellStateSettings, - chassisStatus DellStatus, - chassisparentIndexReference DellObjectRange, - chassisType DellChassisType, - chassisName DellString, - chassisManufacturerName DellString, - chassisModelName DellString, - chassisAssetTagName DisplayString (SIZE (0..10)), - chassisServiceTagName DisplayString (SIZE (0..7)), - chassisID DellUnsigned8BitRange, - chassisIDExtension DellUnsigned16BitRange, - chassisSystemClass DellChassisSystemClass, - chassisSystemName DellString, - chassisSystemBootDateName DellDateName, - chassisSystemDateName DellDateName, - chassisSystemLocationName DellString, - chassisSystemPrimaryUserName DellString, - chassisSystemUserPhoneNumberName DellString, - chassisConnectionStatusUnique DellConnectionStatus, - chassisFanControlCapabilitiesUnique DellFanControlCapabilities, - chassisFanControlSettingsUnique DellFanControlSettings, - chassisLEDControlCapabilitiesUnique DellLEDControlCapabilities, - chassisLEDControlSettingsUnique DellLEDControlSettings, - chassisHDFaultClearControlCapabilities DellHDFaultLEDControlCapabilities, - chassisHDFaultClearControlSettings DellHDFaultLEDControlSettings, - chassisIdentifyFlashControlCapabilities DellChassisIdentifyControlCapabilities, - chassisIdentifyFlashControlSettings DellChassisIdentifyControlSettings, - chassisLockPresent DellBoolean, - chassishostControlCapabilitiesUnique DellHostControlCapabilities, - chassishostControlSettingsUnique DellHostControlSettings, - chassiswatchDogControlCapabilitiesUnique DellWatchDogControlCapabilities, - chassiswatchDogControlSettingsUnique DellWatchControlSettings, - chassiswatchDogControlExpiryTimeCapabilitiesUnique DellWatchDogTimerCapabilities, - chassiswatchDogControlExpiryTime DellUnsigned16BitRange, - chassisallowSETCommandsfromSNMP DellBoolean, - chassisPowerButtonControlCapabilitiesUnique DellPowerButtonControlCapabilities, - chassisPowerButtonControlSettingsUnique DellPowerButtonControlSettings, - chassisResellerName DisplayString (SIZE (0..128)), - chassisResellerContactInformationName DisplayString (SIZE (0..128)), - chassisResellerProductName DisplayString (SIZE (0..128)), - chassisResellerSystemID DellUnsigned16BitRange, - chassisNMIButtonControlCapabilitiesUnique DellNMIButtonControlCapabilities, - chassisNMIButtonControlSettingsUnique DellNMIButtonControlSettings, - chassisSystemProperties DellSystemProperties, - chassisSystemRevisionNumber DellUnsigned8BitRange, - chassisSystemRevisionName DellString, - chassisExpressServiceCodeName DellString, - chassisNodeIDName DellString - } - -chassisInformationTable OBJECT-TYPE - SYNTAX SEQUENCE OF ChassisInformationTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0010 This object defines the Chassis Information Table." - ::= { chassisInformationGroup 10 } -chassisInformationTableEntry OBJECT-TYPE - SYNTAX ChassisInformationTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0010.0001 This object defines the Chassis Information Table Entry." - INDEX { chassisIndexChassisInformation } - ::= { chassisInformationTable 1 } - -chassisIndexChassisInformation OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0001 This attribute defines the index (one based) of the -chassis." - ::= { chassisInformationTableEntry 1 } -chassisStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0002 This attribute defines the state capabilities of the -chassis." - ::= { chassisInformationTableEntry 2 } -chassisStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0003 This attribute defines the state settings of the -chassis." - ::= { chassisInformationTableEntry 3 } -chassisStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0004 This attribute defines the status of the chassis." - ::= { chassisInformationTableEntry 4 } -chassisparentIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0005 This attribute defines the index (one based) to the -parent chassis of this chassis, if any." - ::= { chassisInformationTableEntry 5 } -chassisType OBJECT-TYPE - SYNTAX DellChassisType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0006 This attribute defines the chassis type of the chassis." - ::= { chassisInformationTableEntry 6 } -chassisName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0007 This attribute defines the user-assigned name of the -chassis." - ::= { chassisInformationTableEntry 7 } -chassisManufacturerName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0008 This attribute defines the name of the manufacturer -of the chassis." - ::= { chassisInformationTableEntry 8 } -chassisModelName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0009 This attribute defines the system model type of the -chassis." - ::= { chassisInformationTableEntry 9 } -chassisAssetTagName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..10)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0010 This attribute defines the asset tag name of the -chassis." - ::= { chassisInformationTableEntry 10 } -chassisServiceTagName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0011 This attribute defines the service tag name of the -chassis." - ::= { chassisInformationTableEntry 11 } -chassisID OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0012 This attribute defines the system ID. If the value -is 254 (0xFE), the attribute chassisIDExtension provides the system ID." - ::= { chassisInformationTableEntry 12 } -chassisIDExtension OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0013 This attribute defines the system ID extension." - ::= { chassisInformationTableEntry 13 } -chassisSystemClass OBJECT-TYPE - SYNTAX DellChassisSystemClass - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0014 This attribute defines the system class." - ::= { chassisInformationTableEntry 14 } -chassisSystemName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0015 This attribute defines the host name of the system." - ::= { chassisInformationTableEntry 15 } -chassisSystemBootDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0016 This attribute defines boot time of the system. -Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes and ss are the seconds. -uuuuuu is the number of microseconds, and +fff or -fff is the offset from -UTC in minutes." - ::= { chassisInformationTableEntry 16 } -chassisSystemDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0017 This attribute defines the current time of the system. -Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes and ss are the seconds. -uuuuuu is the number of microseconds, and +fff or -fff is the offset from -UTC in minutes." - ::= { chassisInformationTableEntry 17 } -chassisSystemLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0018 This attribute defines the location of the system." - ::= { chassisInformationTableEntry 18 } -chassisSystemPrimaryUserName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0019 This attribute defines the name of the primary user -of the system." - ::= { chassisInformationTableEntry 19 } -chassisSystemUserPhoneNumberName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0020 This attribute defines the phone number of the primary -user of the system." - ::= { chassisInformationTableEntry 20 } -chassisConnectionStatusUnique OBJECT-TYPE - SYNTAX DellConnectionStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0021 This attribute defines the status of the connection -of the chassis." - ::= { chassisInformationTableEntry 21 } -chassisFanControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellFanControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0022 This attribute defines the capabilities of the -fan control hardware in the chassis." - ::= { chassisInformationTableEntry 22 } -chassisFanControlSettingsUnique OBJECT-TYPE - SYNTAX DellFanControlSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0023 This attribute defines the reading and setting of the -fan control hardware in the chassis." - ::= { chassisInformationTableEntry 23 } -chassisLEDControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellLEDControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0024 This attribute defines the capabilities of the -LED control hardware in the chassis." - ::= { chassisInformationTableEntry 24 } -chassisLEDControlSettingsUnique OBJECT-TYPE - SYNTAX DellLEDControlSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0025 This attribute defines the reading and setting of the -LED control hardware in the chassis." - ::= { chassisInformationTableEntry 25 } -chassisHDFaultClearControlCapabilities OBJECT-TYPE - SYNTAX DellHDFaultLEDControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0026 This attribute defines if the chassis allows reset -of the chassis hard disk drive fault LED." - ::= { chassisInformationTableEntry 26 } -chassisHDFaultClearControlSettings OBJECT-TYPE - SYNTAX DellHDFaultLEDControlSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0027 This attribute allows reset of a chassis hard disk -drive fault LED." - ::= { chassisInformationTableEntry 27 } -chassisIdentifyFlashControlCapabilities OBJECT-TYPE - SYNTAX DellChassisIdentifyControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0028 This attribute defines if the chassis allows setting -of the chassis front panel LED to flash." - ::= { chassisInformationTableEntry 28 } -chassisIdentifyFlashControlSettings OBJECT-TYPE - SYNTAX DellChassisIdentifyControlSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0029 This attribute setting causes the chassis front panel -LED to flash." - ::= { chassisInformationTableEntry 29 } -chassisLockPresent OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0030 If true, a chassis lock is present on the chassis." - ::= { chassisInformationTableEntry 30 } -chassishostControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellHostControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.031 This attribute defines the capabilities of the -host control function." - ::= { chassisInformationTableEntry 31 } -chassishostControlSettingsUnique OBJECT-TYPE - SYNTAX DellHostControlSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0032 This attribute defines the settings of the -host control function." - ::= { chassisInformationTableEntry 32 } -chassiswatchDogControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellWatchDogControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0033 This attribute defines the capabilities of the -watchdog control function." - ::= { chassisInformationTableEntry 33 } -chassiswatchDogControlSettingsUnique OBJECT-TYPE - SYNTAX DellWatchControlSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0034 This attribute defines the settings of the -watchdog control function." - ::= { chassisInformationTableEntry 34 } -chassiswatchDogControlExpiryTimeCapabilitiesUnique OBJECT-TYPE - SYNTAX DellWatchDogTimerCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0035 This attribute defines the capabilities of the -watchdog control expiry timer function." - ::= { chassisInformationTableEntry 35 } -chassiswatchDogControlExpiryTime OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0036 This attribute defines the current watchdog timer -value in seconds." - ::= { chassisInformationTableEntry 36 } -chassisallowSETCommandsfromSNMP OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0037 This attribute defines if SNMP SET type commands -are allowed or not." - ::= { chassisInformationTableEntry 37 } -chassisPowerButtonControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellPowerButtonControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0038 This attribute defines the capabilities of the -power button control hardware in the chassis." - ::= { chassisInformationTableEntry 38 } -chassisPowerButtonControlSettingsUnique OBJECT-TYPE - SYNTAX DellPowerButtonControlSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0039 This attribute defines the reading and setting of -the power button control hardware in the chassis." - ::= { chassisInformationTableEntry 39 } -chassisResellerName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0040 This attribute defines the name of the system reseller." - ::= { chassisInformationTableEntry 40 } -chassisResellerContactInformationName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0041 This attribute defines the contact information -for the system reseller." - ::= { chassisInformationTableEntry 41 } -chassisResellerProductName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0042 This attribute defines the reseller's product name -for the system." - ::= { chassisInformationTableEntry 42 } -chassisResellerSystemID OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0043 This attribute defines the reseller's system ID -for the system." - ::= { chassisInformationTableEntry 43 } -chassisNMIButtonControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellNMIButtonControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0044 This attribute defines the capabilities of the -NMI button control hardware in the chassis." - ::= { chassisInformationTableEntry 44 } -chassisNMIButtonControlSettingsUnique OBJECT-TYPE - SYNTAX DellNMIButtonControlSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0045 This attribute defines the reading and setting of -the NMI button control hardware in the chassis." - ::= { chassisInformationTableEntry 45 } -chassisSystemProperties OBJECT-TYPE - SYNTAX DellSystemProperties - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0046 This attribute defines the properties of the system." - ::= { chassisInformationTableEntry 46 } -chassisSystemRevisionNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0047 This attribute defines the revision number of the system -where zero indicates the original version of the system. The revision number -is not available on all systems." - ::= { chassisInformationTableEntry 47 } -chassisSystemRevisionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0048 This attribute defines the revision name of the system, -if applicable." - ::= { chassisInformationTableEntry 48 } -chassisExpressServiceCodeName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0049 This attribute defines the Express Service Code of the -chassis." - ::= { chassisInformationTableEntry 49 } -chassisNodeIDName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0010.0001.0050 This attribute defines the NodeID Code of the -chassis,if applicable" - ::= { chassisInformationTableEntry 50 } - - - -------------------------------------------------------------------------------- --- Universal Unique ID (UUID) Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300.20.1... -------------------------------------------------------------------------------- - -DellUUIDType ::= INTEGER { - other(1), -- type is other than following values - unknown(2), -- type is unknown - motherBoard(3), -- type is Motherboard - systemBackPlane(4), -- type is System Backplane - powerSupplyParallelingBoard(5), -- type is Power Supply Paralleling Board - peripheralBayBackPlane(6), -- type is Peripheral Bay Backplane - secondaryBackPlane(7) -- type is Secondary Backplane -} - -UUIDTableEntry ::= SEQUENCE { - uUIDchassisIndex DellObjectRange, - uUIDIndex DellObjectRange, - uUIDType DellUUIDType, - uUIDValue OCTET STRING (SIZE(16)) -} - -uUIDTable OBJECT-TYPE - SYNTAX SEQUENCE OF UUIDTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0020 This object defines the Universal Unique ID (UUID) Table." - ::= { chassisInformationGroup 20 } -uUIDTableEntry OBJECT-TYPE - SYNTAX UUIDTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0020.0001 This object defines the UUID Table Entry." - INDEX { uUIDchassisIndex, - uUIDIndex } - ::= { uUIDTable 1 } - -uUIDchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { uUIDTableEntry 1 } -uUIDIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0020.0001.0002 This attribute defines the index (one based) of the UUID." - ::= { uUIDTableEntry 2 } -uUIDType OBJECT-TYPE - SYNTAX DellUUIDType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0020.0001.0003 This attribute defines the type of the UUID." - ::= { uUIDTableEntry 3 } -uUIDValue OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0020.0001.0004 This attribute defines the value of the UUID." - ::= { uUIDTableEntry 4 } - - -------------------------------------------------------------------------------- --- Power On Self Test (POST) Log Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300.30.1... -------------------------------------------------------------------------------- - -PostLogTableEntry ::= SEQUENCE { - postLogchassisIndex DellObjectRange, - postLogRecordIndex DellUnsigned32BitRange, - postLogStateCapabilitiesUnique DellStateCapabilitiesLogUnique, - postLogStateSettingsUnique DellStateSettingsLogUnique, - postLogRecord DisplayString (SIZE (0..1024)), - postLogFormat DellLogFormat -} - -postLogTable OBJECT-TYPE - SYNTAX SEQUENCE OF PostLogTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0030 This object defines the Power On Self Test (POST) Log Table." - ::= { chassisInformationGroup 30 } -postLogTableEntry OBJECT-TYPE - SYNTAX PostLogTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0030.0001 This object defines the POST Log Table Entry." - INDEX { postLogchassisIndex, - postLogRecordIndex } - ::= { postLogTable 1 } - -postLogchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0030.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { postLogTableEntry 1 } -postLogRecordIndex OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0030.0001.0002 This attribute defines the index (one based) of the -POST log record." - ::= { postLogTableEntry 2 } -postLogStateCapabilitiesUnique OBJECT-TYPE - SYNTAX DellStateCapabilitiesLogUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0030.0001.0003 This attribute defines the state capabilities of the -object that is writing the POST log." - ::= { postLogTableEntry 3 } -postLogStateSettingsUnique OBJECT-TYPE - SYNTAX DellStateSettingsLogUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0030.0001.0004 This attribute defines the state settings of the -object that is writing the POST log." - ::= { postLogTableEntry 4 } -postLogRecord OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0030.0001.0005 This attribute defines the data of the POST log record." - ::= { postLogTableEntry 5 } -postLogFormat OBJECT-TYPE - SYNTAX DellLogFormat - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0030.0001.0006 This attribute defines the format of the POST log record." - ::= { postLogTableEntry 6 } - - -------------------------------------------------------------------------------- --- Event (ESM) Log Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300.40.1... -------------------------------------------------------------------------------- - -EventLogTableEntry ::= SEQUENCE { - eventLogchassisIndex DellObjectRange, - eventLogRecordIndex DellUnsigned32BitRange, - eventLogStateCapabilitiesUnique DellStateCapabilitiesLogUnique, - eventLogStateSettingsUnique DellStateSettingsLogUnique, - eventLogRecord DisplayString (SIZE (0..1024)), - eventLogFormat DellLogFormat, - eventLogSeverityStatus DellStatus, - eventLogDateName DellDateName -} - -eventLogTable OBJECT-TYPE - SYNTAX SEQUENCE OF EventLogTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0040 This object defines the Event (ESM) Log Table." - ::= { chassisInformationGroup 40 } -eventLogTableEntry OBJECT-TYPE - SYNTAX EventLogTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0040.0001 This object defines the Event (ESM) Log Table Entry." - INDEX { eventLogchassisIndex, - eventLogRecordIndex } - ::= { eventLogTable 1 } - -eventLogchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0040.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { eventLogTableEntry 1 } -eventLogRecordIndex OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0040.0001.0002 This attribute defines the index (one based) of the -event log record." - ::= { eventLogTableEntry 2 } -eventLogStateCapabilitiesUnique OBJECT-TYPE - SYNTAX DellStateCapabilitiesLogUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0040.0001.0003 This attribute defines the state capabilities of the -object that is writing the event log." - ::= { eventLogTableEntry 3 } -eventLogStateSettingsUnique OBJECT-TYPE - SYNTAX DellStateSettingsLogUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0040.0001.0004 This attribute defines the state settings of the -object that is writing the event log." - ::= { eventLogTableEntry 4 } -eventLogRecord OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0040.0001.0005 This attribute defines the data of the event log record." - ::= { eventLogTableEntry 5 } -eventLogFormat OBJECT-TYPE - SYNTAX DellLogFormat - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0040.0001.0006 This attribute defines the format of the event log record." - ::= { eventLogTableEntry 6 } -eventLogSeverityStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0040.0001.0007 This attribute defines the severity of the -event log record." - ::= { eventLogTableEntry 7 } -eventLogDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0040.0001.0008 This attribute defines the date and time of the -event log record." - ::= { eventLogTableEntry 8 } - - -------------------------------------------------------------------------------- --- System BIOS Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300.50.1... -------------------------------------------------------------------------------- - -SystemBIOSTableEntry ::= SEQUENCE { - systemBIOSchassisIndex DellObjectRange, - systemBIOSIndex DellObjectRange, - systemBIOSStateCapabilities DellStateCapabilities, - systemBIOSStateSettings DellStateSettings, - systemBIOSStatus DellStatus, - systemBIOSSize DellUnsigned32BitRange, - systemBIOSReleaseDateName DellDateName, - systemBIOSVersionName DellString, - systemBIOSStartingAddress DellUnsigned64BitRange, - systemBIOSEndingAddress DellUnsigned64BitRange, - systemBIOSManufacturerName DellString, - systemBIOSCharacteristics DellUnsigned64BitRange, - systemBIOSCharacteristicsExt1 DellUnsigned8BitRange, - systemBIOSCharacteristicsExt2 DellUnsigned8BitRange -} - -systemBIOSTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemBIOSTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0050 This object defines the System BIOS Table." - ::= { chassisInformationGroup 50 } -systemBIOSTableEntry OBJECT-TYPE - SYNTAX SystemBIOSTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0050.0001 This object defines the System BIOS Table Entry." - INDEX { systemBIOSchassisIndex, - systemBIOSIndex } - ::= { systemBIOSTable 1 } - -systemBIOSchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { systemBIOSTableEntry 1 } -systemBIOSIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0002 This attribute defines the index (one based) of the -system BIOS." - ::= { systemBIOSTableEntry 2 } -systemBIOSStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0003 This attribute defines the state capabilities of the -system BIOS." - ::= { systemBIOSTableEntry 3 } -systemBIOSStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0004 This attribute defines the state settings of the -system BIOS." - ::= { systemBIOSTableEntry 4 } -systemBIOSStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0005 This attribute defines the status of the system BIOS." - ::= { systemBIOSTableEntry 5 } -systemBIOSSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0006 This attribute defines the image size of the -system BIOS in KBytes. Zero indicates size is unknown." - ::= { systemBIOSTableEntry 6 } -systemBIOSReleaseDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0007 This attribute defines the release date name of the -system BIOS." - ::= { systemBIOSTableEntry 7 } -systemBIOSVersionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0008 This attribute defines the version name of the -system BIOS." - ::= { systemBIOSTableEntry 8 } -systemBIOSStartingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0009 This attribute defines the starting address of the -system BIOS. Zero indicates the starting address is unknown." - ::= { systemBIOSTableEntry 9 } -systemBIOSEndingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0010 This attribute defines the ending address of the -system BIOS. Zero indicates the starting address is unknown." - ::= { systemBIOSTableEntry 10 } -systemBIOSManufacturerName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0011 This attribute defines the name of the manufacturer -of the system BIOS." - ::= { systemBIOSTableEntry 11 } -systemBIOSCharacteristics OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0012 This attribute defines characteristics of the -system BIOS. This attribute is a bit field where a bit has the meaning -defined below when set to 1 (one). Bit 63 is the first bit in the value, -and bit 0 is the last bit in the value. See the description of -DellUnsigned64BitRange at the beginning of this file for more information -on the format of the value. - -NOTE: Bits 48-63 need to be examined in the context of the system ID. -The system ID is available in the attribute chassisID. If the value -for chassisID is non-zero, bits 48-63 have the meaning defined below. - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 Reserved - Bit 1 Reserved - Bit 2 Unknown - Bit 3 BIOS Characteristics Not Supported - Bit 4 ISA is supported - Bit 5 MCA is supported - Bit 6 EISA is supported - Bit 7 PCI is supported - Bit 8 PC Card (PCMCIA) is supported - Bit 9 Plug and Play is supported - Bit 10 APM is supported - Bit 11 BIOS is Upgradeable (Flash) - Bit 12 BIOS shadowing is allowed - Bit 13 VL-VESA is supported - Bit 14 ESCD support is available - Bit 15 Boot from CD is supported - Bit 16 Selectable Boot is supported - Bit 17 BIOS ROM is socketed - Bit 18 Boot From PC Card (PCMCIA) is supported - Bit 19 EDD (Enhanced Disk Drive) Specification is supported - Bit 20 Int 13h - Japanese Floppy for NEC 9800 1.2mb (3.5 in, 1k Bytes/Sector, 360 RPM) is supported - Bit 21 Int 13h - Japanese Floppy for Toshiba 1.2mb (3.5 in, 360 RPM) is supported - Bit 22 Int 13h - 5.25 in / 360 KB Floppy Services are supported - Bit 23 Int 13h - 5.25 in /1.2MB Floppy Services are supported - Bit 24 Int 13h - 3.5 in / 720 KB Floppy Services are supported - Bit 25 Int 13h - 3.5 in / 2.88 MB Floppy Services are supported - Bit 26 Int 5h, Print Screen Service is supported - Bit 27 Int 9h, 8042 Keyboard services are supported - Bit 28 Int 14h, Serial Services are supported - Bit 29 Int 17h, Printer Services are supported - Bit 30 Int 10h, CGA/Mono Video Services are supported - Bit 31 NEC PC-98 - Bit 32-47 Reserved - Bit 48 Built-in NIC supports Magic Packet - Bit 49 System supports Wake-on-LAN - Bit 50 System supports chassis intrusion - Bit 51 Built-in NIC supports pattern-matching - Bit 52 System BIOS supports a 7-character service tag - Bit 53-63 Reserved" - ::= { systemBIOSTableEntry 12 } -systemBIOSCharacteristicsExt1 OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0013 This attribute defines additional characteristics of the -system BIOS. This attribute is a bit field where a bit has the meaning -defined below when set to 1 (one). - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 ACPI supported - Bit 1 USB Legacy is supported - Bit 2 AGP is supported - Bit 3 I2O boot is supported - Bit 4 LS-120 boot is supported - Bit 5 ATAPI ZIP Drive boot is supported - Bit 6 1394 boot is supported - Bit 7 Smart Battery supported" - ::= { systemBIOSTableEntry 13 } -systemBIOSCharacteristicsExt2 OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0050.0001.0014 This attribute defines additional characteristics of the -system BIOS. This attribute is a bit field where a bit has the meaning -defined below when set to 1 (one). - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 BIOS Boot Specification supported - Bit 1 Function key-initiated Network Service boot supported - Bit 2 Targeted Content Distribution supported - Bit 3-7 Reserved" - ::= { systemBIOSTableEntry 14 } - - -------------------------------------------------------------------------------- --- Firmware Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300.60.1... -------------------------------------------------------------------------------- - -DellFirmwareType ::= INTEGER { - other(1), -- type is other than following values - unknown(2), -- type is unknown - systemBIOS(3), -- type is System BIOS - embeddedSystemManagementController(4), -- type is Embedded System Management Controller - powerSupplyParallelingBoard(5), -- type is Power Supply Paralleling Board - systemBackPlane(6), -- type is System (Primary) Backplane - powerVault2XXSKernel(7), -- type is PowerVault 2XXS Kernel - powerVault2XXSApplication(8), -- type is PowerVault 2XXS Application - frontPanel(9), -- type is Front Panel Controller - baseboardManagementController(10), -- type is Baseboard Management Controller - hotPlugPCI(11), -- type is Hot Plug PCI Controller - sensorData(12), -- type is Sensor Data Records - peripheralBay(13), -- type is Peripheral Bay Backplane - secondaryBackPlane(14), -- type is Secondary Backplane for ESM 2 systems - secondaryBackPlaneESM3And4(15), -- type is Secondary Backplane for ESM 3 and 4 systems - rac(16), -- type is Remote Access Controller - iDRAC(17), -- type is Integrated Dell Remote Access Controller - iDRAC6(18), -- type is Integrated Dell Remote Access Controller 6 - unifiedServerConfigurator(19), -- type is Unified Server Configurator - lifecycleController(20), -- type is Lifecycle Controller - iDRAC7(21), -- type is Integrated Dell Remote Access Controller 7 - iDRAC8(22) -- type is Integrated Dell Remote Access Controller 8 -} - -FirmwareTableEntry ::= SEQUENCE { - firmwarechassisIndex DellObjectRange, - firmwareIndex DellObjectRange, - firmwareStateCapabilities DellStateCapabilities, - firmwareStateSettings DellStateSettings, - firmwareStatus DellStatus, - firmwareSize DellUnsigned16BitRange, - firmwareType DellFirmwareType, - firmwareTypeName DellString, - firmwareUpdateCapabilities DellUnsigned16BitRange, - firmwareDateName OCTET STRING (SIZE(8)), - firmwareVersionName DellString -} - -firmwareTable OBJECT-TYPE - SYNTAX SEQUENCE OF FirmwareTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0060 This object defines the Firmware Table." - ::= { chassisInformationGroup 60 } -firmwareTableEntry OBJECT-TYPE - SYNTAX FirmwareTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0060.0001 This object defines the Firmware Table Entry." - INDEX { firmwarechassisIndex, - firmwareIndex } - ::= { firmwareTable 1 } - -firmwarechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { firmwareTableEntry 1 } -firmwareIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0002 This attribute defines the index (one based) of the -firmware." - ::= { firmwareTableEntry 2 } -firmwareStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0003 This attribute defines the state capabilities of the -firmware." - ::= { firmwareTableEntry 3 } -firmwareStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0004 This attribute defines the state settings of the -firmware." - ::= { firmwareTableEntry 4 } -firmwareStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0005 This attribute defines the status of the firmware." - ::= { firmwareTableEntry 5 } -firmwareSize OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0006 This attribute defines the image size of the firmware -in KBytes. Zero indicates size is unknown." - ::= { firmwareTableEntry 6 } -firmwareType OBJECT-TYPE - SYNTAX DellFirmwareType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0007 This attribute defines the type of firmware." - ::= { firmwareTableEntry 7 } -firmwareTypeName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0008 This attribute defines the type name of the firmware." - ::= { firmwareTableEntry 8 } -firmwareUpdateCapabilities OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0009 This attribute defines the bitmap of supported methods -for firmware update." - ::= { firmwareTableEntry 9 } -firmwareDateName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0010 This attribute defines the release date of the firmware." - ::= { firmwareTableEntry 10 } -firmwareVersionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0060.0001.0011 This attribute defines the version of the firmware." - ::= { firmwareTableEntry 11 } - - -------------------------------------------------------------------------------- --- Intrusion Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300.70.1... -------------------------------------------------------------------------------- - -DellIntrusionReading ::= INTEGER { - chassisNotBreached(1), -- chassis not breached and no uncleared breaches - chassisBreached(2), -- chassis currently breached - chassisBreachedPrior(3), -- chassis breached prior to boot and has not been cleared - chassisBreachSensorFailure(4) -- intrusion sensor has failed -} -DellIntrusionType ::= INTEGER { - chassisBreachDetectionWhenPowerON(1), -- type is detect intrusion while power on - chassisBreachDetectionWhenPowerOFF(2) -- type is detect intrusion while power off -} - -IntrusionTableEntry ::= SEQUENCE { - intrusionchassisIndex DellObjectRange, - intrusionIndex DellObjectRange, - intrusionStateCapabilities DellStateCapabilities, - intrusionStateSettings DellStateSettings, - intrusionStatus DellStatus, - intrusionReading DellIntrusionReading, - intrusionType DellIntrusionType, - intrusionLocationName DellString -} - -intrusionTable OBJECT-TYPE - SYNTAX SEQUENCE OF IntrusionTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0070 This object defines the Intrusion Table." - ::= { chassisInformationGroup 70 } -intrusionTableEntry OBJECT-TYPE - SYNTAX IntrusionTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0070.0001 This object defines the Intrusion Table Entry." - INDEX { intrusionchassisIndex, - intrusionIndex } - ::= { intrusionTable 1 } - -intrusionchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0070.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { intrusionTableEntry 1 } -intrusionIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0070.0001.0002 This attribute defines the index (one based) of the -intrusion sensor." - ::= { intrusionTableEntry 2 } -intrusionStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0070.0001.0003 This attribute defines the state capabilities of the -intrusion sensor." - ::= { intrusionTableEntry 3 } -intrusionStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0070.0001.0004 This attribute defines the state settings of the -intrusion sensor." - ::= { intrusionTableEntry 4 } -intrusionStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0070.0001.0005 This attribute defines the status of the -intrusion sensor." - ::= { intrusionTableEntry 5 } -intrusionReading OBJECT-TYPE - SYNTAX DellIntrusionReading - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0070.0001.0006 This attribute defines the reading of the -intrusion sensor." - ::= { intrusionTableEntry 6 } -intrusionType OBJECT-TYPE - SYNTAX DellIntrusionType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0070.0001.0007 This attribute defines the type of the -intrusion sensor." - ::= { intrusionTableEntry 7 } -intrusionLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0070.0001.0008 This attribute defines the location of the -intrusion sensor." - ::= { intrusionTableEntry 8 } - - -------------------------------------------------------------------------------- --- Base Board Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.300.80.1... -------------------------------------------------------------------------------- - -DellBaseBoardType ::= INTEGER { - unknown(1), -- type is unknown - other(2), -- type is other than following values - serverBlade(3), -- type is Server Blade - connectivitySwitch(4), -- type is Connectivity Switch - systemManagementModule(5), -- type is System Management Module - processorModule(6), -- type is Processor Module - ioModule(7), -- type is I/O Module - memoryModule(8), -- type is Memory Module - daughterBoard(9), -- type is Daughter Board - motherboard(10), -- type is Motherboard - processorMemoryModule(11), -- type is Processor/Memory Module - processorIOModule(12), -- type is Processor/IO Module - interconnectBoard(13) -- type is Interconnect Board -} -DellBaseBoardFeatureFlags ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- If 0 (zero), base board has none of the following features: - boardIsHostingBoard(1), -- board is Hosting Board - boardRequiresDaughterBoard(2), -- board requires at least one Daughter Board or Auxiliary Card - boardIsRemovable(4), -- board is Removable - boardIsReplaceable(8), -- board is Replaceable - boardIsHotSwappable(16) -- board is Hot Swappable -} - -BaseBoardTableEntry ::= SEQUENCE { - baseBoardChassisIndex DellObjectRange, - baseBoardIndex DellObjectRange, - baseBoardStateCapabilities DellStateCapabilities, - baseBoardStateSettings DellStateSettings, - baseBoardStatus DellStatus, - baseBoardFeatureFlags DellBaseBoardFeatureFlags, - baseBoardType DellBaseBoardType, - baseBoardTypeName DellString, - baseBoardLocationName DellString, - baseBoardManufacturerName DellString, - baseBoardProductName DellString, - baseBoardVersionName DellString, - baseBoardServiceTagName DellString, - baseBoardPiecePartIDName DellString, - baseBoardAssetTagName DellString, - baseBoardExpressServiceCodeName DellString -} - -baseBoardTable OBJECT-TYPE - SYNTAX SEQUENCE OF BaseBoardTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0080 This object defines the Base Board Table." - ::= { chassisInformationGroup 80 } -baseBoardTableEntry OBJECT-TYPE - SYNTAX BaseBoardTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0300.0080.0001 This object defines the Base Board Table Entry." - INDEX { baseBoardChassisIndex, - baseBoardIndex } - ::= { baseBoardTable 1 } - -baseBoardChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { baseBoardTableEntry 1 } -baseBoardIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0002 This attribute defines the index (one based) of the -base board." - ::= { baseBoardTableEntry 2 } -baseBoardStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0003 This attribute defines the state capabilities of the -base board." - ::= { baseBoardTableEntry 3 } -baseBoardStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0004 This attribute defines the state settings of the -base board." - ::= { baseBoardTableEntry 4 } -baseBoardStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0005 This attribute defines the status of the base board." - ::= { baseBoardTableEntry 5 } -baseBoardFeatureFlags OBJECT-TYPE - SYNTAX DellBaseBoardFeatureFlags - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0006 This attribute defines the features of the base board." - ::= { baseBoardTableEntry 6 } -baseBoardType OBJECT-TYPE - SYNTAX DellBaseBoardType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0007 This attribute defines the type of the base board." - ::= { baseBoardTableEntry 7 } -baseBoardTypeName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0008 This attribute defines the type name of the base board." - ::= { baseBoardTableEntry 8 } -baseBoardLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0009 This attribute defines the location of the base board." - ::= { baseBoardTableEntry 9 } -baseBoardManufacturerName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0010 This attribute defines the name of the manufacturer -of the base board." - ::= { baseBoardTableEntry 10 } -baseBoardProductName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0011 This attribute defines the product name of the -base board." - ::= { baseBoardTableEntry 11 } -baseBoardVersionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0012 This attribute defines the version of the base board." - ::= { baseBoardTableEntry 12 } -baseBoardServiceTagName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0013 This attribute defines the service tag of the base board." - ::= { baseBoardTableEntry 13 } -baseBoardPiecePartIDName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0014 This attribute defines the Piece Part ID (PPID) of the -base board." - ::= { baseBoardTableEntry 14 } -baseBoardAssetTagName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0015 This attribute defines the asset tag of the base board." - ::= { baseBoardTableEntry 15 } -baseBoardExpressServiceCodeName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0300.0080.0001.0016 This attribute defines the Express Service Code of the -base board." - ::= { baseBoardTableEntry 16 } - - -------------------------------------------------------------------------------- --- Operating System Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.400 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Operating System Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.400.10.1.. -------------------------------------------------------------------------------- - -OperatingSystemTableEntry ::= SEQUENCE { - operatingSystemchassisIndex DellObjectRange, - operatingSystemStateCapabilities DellStateCapabilities, - operatingSystemStateSettings DellStateSettings, - operatingSystemStatus DellStatus, - operatingSystemIsPrimary DellBoolean, - operatingSystemOperatingSystemName DisplayString (SIZE (0..255)), - operatingSystemOperatingSystemVersionName DisplayString (SIZE (0..255)) -} - -operatingSystemTable OBJECT-TYPE - SYNTAX SEQUENCE OF OperatingSystemTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0400.0010 This object defines the Operating System Table." - ::= { operatingSystemGroup 10 } -operatingSystemTableEntry OBJECT-TYPE - SYNTAX OperatingSystemTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0400.0010.0001 This object defines the Operating System Table Entry." - INDEX { operatingSystemchassisIndex } - ::= { operatingSystemTable 1 } - -operatingSystemchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { operatingSystemTableEntry 1 } -operatingSystemStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0010.0001.0002 This attribute defines the state capabilities of the -operating system." - ::= { operatingSystemTableEntry 2 } -operatingSystemStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0010.0001.0003 This attribute defines the state settings of the -operating system." - ::= { operatingSystemTableEntry 3 } -operatingSystemStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0010.0001.0004 This attribute defines the status of the -operating system." - ::= { operatingSystemTableEntry 4 } -operatingSystemIsPrimary OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0010.0001.0005 This attribute defines if this operating system is the -primary operating system or not." - ::= { operatingSystemTableEntry 5 } -operatingSystemOperatingSystemName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0010.0001.0006 This attribute defines the name of the operating system." - ::= { operatingSystemTableEntry 6 } -operatingSystemOperatingSystemVersionName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0010.0001.0007 This attribute defines the version of the operating system." - ::= { operatingSystemTableEntry 7 } - - -------------------------------------------------------------------------------- --- Operating System Memory Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.400.20.1.. -------------------------------------------------------------------------------- - -OperatingSystemMemoryTableEntry ::= SEQUENCE { - operatingSystemMemorychassisIndex DellObjectRange, - operatingSystemMemoryStateCapabilities DellStateCapabilities, - operatingSystemMemoryStateSettings DellStateSettings, - operatingSystemMemoryStatus DellStatus, - operatingSystemMemoryTotalPhysicalSize DellUnsigned32BitRange, - operatingSystemMemoryAvailablePhysicalSize DellUnsigned32BitRange, - operatingSystemMemoryTotalPageFileSize DellUnsigned32BitRange, - operatingSystemMemoryAvailablePageFileSize DellUnsigned32BitRange, - operatingSystemMemoryTotalVirtualSize DellUnsigned32BitRange, - operatingSystemMemoryAvailableVirtualSize DellUnsigned32BitRange, - operatingSystemMemoryExtTotalPhysicalSize DellUnsigned64BitRange -} - -operatingSystemMemoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF OperatingSystemMemoryTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0400.0020 This object defines the Operating System Memory Table." - ::= { operatingSystemGroup 20 } -operatingSystemMemoryTableEntry OBJECT-TYPE - SYNTAX OperatingSystemMemoryTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0400.0020.0001 This object defines the Operating System Memory Table Entry." - INDEX { operatingSystemMemorychassisIndex } - ::= { operatingSystemMemoryTable 1 } - -operatingSystemMemorychassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { operatingSystemMemoryTableEntry 1 } -operatingSystemMemoryStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0002 This attribute defines the state capabilities of the -operating system memory." - ::= { operatingSystemMemoryTableEntry 2 } -operatingSystemMemoryStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0003 This attribute defines the state settings of the -operating system memory." - ::= { operatingSystemMemoryTableEntry 3 } -operatingSystemMemoryStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0004 This attribute defines the status of the -operating system memory." - ::= { operatingSystemMemoryTableEntry 4 } -operatingSystemMemoryTotalPhysicalSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS deprecated - DESCRIPTION -"0400.0020.0001.0005 This attribute defines the total physical memory -for the operating system memory in KBytes. -**NOTE: This attribute is deprecated and replaced by operatingSystemMemoryExtTotalPhysicalSize." - ::= { operatingSystemMemoryTableEntry 5 } -operatingSystemMemoryAvailablePhysicalSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0006 This attribute defines the available physical memory -for the operating system memory in KBytes." - ::= { operatingSystemMemoryTableEntry 6 } -operatingSystemMemoryTotalPageFileSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0007 This attribute defines the total page file memory -for the operating system memory in KBytes." - ::= { operatingSystemMemoryTableEntry 7 } -operatingSystemMemoryAvailablePageFileSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0008 This attribute defines the available page file memory -for the operating system memory in KBytes." - ::= { operatingSystemMemoryTableEntry 8 } -operatingSystemMemoryTotalVirtualSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0009 This attribute defines the total virtual memory -for the operating system memory in KBytes." - ::= { operatingSystemMemoryTableEntry 9 } -operatingSystemMemoryAvailableVirtualSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0010 This attribute defines the available virtual memory -for the operating system memory in KBytes." - ::= { operatingSystemMemoryTableEntry 10 } -operatingSystemMemoryExtTotalPhysicalSize OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0400.0020.0001.0011 This attribute defines the total physical memory -for the operating system memory in KBytes. -**NOTE: This attribute is replaces operatingSystemMemoryTotalPhysicalSize." - ::= { operatingSystemMemoryTableEntry 11 } - - -------------------------------------------------------------------------------- --- System Resource Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.500 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- System Resource Map Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.500.10.1... -------------------------------------------------------------------------------- - -DellSystemResourceMapType ::= INTEGER { - other(1), -- type is other than following values - unknown(2), -- type is unknown - typeOne(3) -- type is type 1 (one) -} - -SystemResourceMapTableEntry ::= SEQUENCE { - systemResourceMapchassisIndex DellObjectRange, - systemResourceMapIndex DellObjectRange, - systemResourceMapStateCapabilities DellStateCapabilities, - systemResourceMapStateSettings DellStateSettings, - systemResourceMapStatus DellStatus, - systemResourceMapType DellSystemResourceMapType -} - -systemResourceMapTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemResourceMapTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0010 This object defines the System Resource Map Table." - ::= { systemResourceGroup 10 } -systemResourceMapTableEntry OBJECT-TYPE - SYNTAX SystemResourceMapTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0010.0001 This object defines the System Resource Map Table Entry." - INDEX { systemResourceMapchassisIndex, - systemResourceMapIndex } - ::= { systemResourceMapTable 1 } - -systemResourceMapchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { systemResourceMapTableEntry 1 } -systemResourceMapIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0010.0001.0002 This attribute defines the index (one based) of the -system resource map." - ::= { systemResourceMapTableEntry 2 } -systemResourceMapStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0010.0001.0003 This attribute defines the state capabilities of the -system resource map." - ::= { systemResourceMapTableEntry 3 } -systemResourceMapStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0010.0001.0004 This attribute defines the state settings of the -system resource map." - ::= { systemResourceMapTableEntry 4 } -systemResourceMapStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0010.0001.0005 This attribute defines the status of the -system resource map." - ::= { systemResourceMapTableEntry 5 } -systemResourceMapType OBJECT-TYPE - SYNTAX DellSystemResourceMapType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0010.0001.0006 This attribute defines the type of the system resource map." - ::= { systemResourceMapTableEntry 6 } - - -------------------------------------------------------------------------------- --- System Resource Owner Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.500.20.1... -------------------------------------------------------------------------------- - -DellResourceOwnerInterfaceType ::= INTEGER { - typeIsOther(1), -- type is other than following values - typeIsUnknown(2), -- type is unknown - typeIsInternal(3), -- type is Internal - typeIsISA(4), -- type is ISA Bus - typeIsEISA(5), -- type is EISA Bus - typeIsMCA(6), -- type is MCA Bus - typeIsTurboChannel(7), -- type is TurboChannel Bus - typeIsPCI(8) -- type is PCI Bus -} - -SystemResourceOwnerTableEntry ::= SEQUENCE { - systemResourceOwnerchassisIndex DellObjectRange, - systemResourceOwnerIndex DellObjectRange, - systemResourceOwnerStateCapabilities DellStateCapabilities, - systemResourceOwnerStateSettings DellStateSettings, - systemResourceOwnerStatus DellStatus, - systemResourceOwnerInterfaceType DellResourceOwnerInterfaceType, - systemResourceMapIndexReference DellObjectRange, - systemResourceOwnerDescriptionName DellString, - systemResourceOwnerInterfaceInstance DellObjectRange -} - -systemResourceOwnerTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemResourceOwnerTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0020 This object defines the System Resource Owner Table." - ::= { systemResourceGroup 20 } -systemResourceOwnerTableEntry OBJECT-TYPE - SYNTAX SystemResourceOwnerTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0020.0001 This object defines the System Resource Owner Table Entry." - INDEX { systemResourceOwnerchassisIndex, - systemResourceOwnerIndex } - ::= { systemResourceOwnerTable 1 } - -systemResourceOwnerchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { systemResourceOwnerTableEntry 1 } -systemResourceOwnerIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0002 This attribute defines the index of (one based) of the -system resource owner." - ::= { systemResourceOwnerTableEntry 2 } -systemResourceOwnerStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0003 This attribute defines the state capabilities of the -system resource owner." - ::= { systemResourceOwnerTableEntry 3 } -systemResourceOwnerStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0004 This attribute defines the state settings of the -system resource owner." - ::= { systemResourceOwnerTableEntry 4 } -systemResourceOwnerStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0005 This attribute defines the status of the -system resource owner." - ::= { systemResourceOwnerTableEntry 5 } -systemResourceOwnerInterfaceType OBJECT-TYPE - SYNTAX DellResourceOwnerInterfaceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0006 This attribute defines the interface type of the -system resource owner." - ::= { systemResourceOwnerTableEntry 6 } -systemResourceMapIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0007 This attribute defines the index to the associated -system resource map." - ::= { systemResourceOwnerTableEntry 7 } -systemResourceOwnerDescriptionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0008 This attribute defines the description of the -system resource owner." - ::= { systemResourceOwnerTableEntry 8 } -systemResourceOwnerInterfaceInstance OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0020.0001.0009 This attribute defines the index to the associated -system resource owner interface type." - ::= { systemResourceOwnerTableEntry 9 } - - -------------------------------------------------------------------------------- --- System Resource I/O Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.500.30.1... -------------------------------------------------------------------------------- - -DellResourceShareDisposition ::= INTEGER { - shareIsOther(1), -- disposition is other than following values - shareIsUnknown(2), -- disposition is unknown - shareIsDeviceExclusive(3), -- disposition is Device Exclusive - shareIsDriverExclusive(4), -- disposition is Driver Exclusive - shareIsShared(5) -- disposition is Shared -} - -SystemResourceIOPortTableEntry ::= SEQUENCE { - systemResourceIOPortchassisIndex DellObjectRange, - systemResourceIOPortIndex DellObjectRange, - systemResourceIOPortStateCapabilities DellStateCapabilities, - systemResourceIOPortStateSettings DellStateSettings, - systemResourceIOPortStatus DellStatus, - systemResourceIOPortOwnerIndexReference DellObjectRange, - systemResourceIOPortShareDisposition DellResourceShareDisposition, - systemResourceIOPortStartingAddress DellUnsigned64BitRange, - systemResourceIOPortEndingAddress DellUnsigned64BitRange -} - -systemResourceIOPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemResourceIOPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0030 This object defines the System Resource I/O Port Table." - ::= { systemResourceGroup 30 } -systemResourceIOPortTableEntry OBJECT-TYPE - SYNTAX SystemResourceIOPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0030.0001 This object defines the System Resource I/O Port Table Entry." - INDEX { systemResourceIOPortchassisIndex, - systemResourceIOPortIndex } - ::= { systemResourceIOPortTable 1 } - -systemResourceIOPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { systemResourceIOPortTableEntry 1 } -systemResourceIOPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0002 This attribute defines the index (one based) of the -system resource I/O port." - ::= { systemResourceIOPortTableEntry 2 } -systemResourceIOPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0003 This attribute defines the state capabilities of the -system resource I/O port." - ::= { systemResourceIOPortTableEntry 3 } -systemResourceIOPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0004 This attribute defines the state settings of the -system resource I/O port." - ::= { systemResourceIOPortTableEntry 4 } -systemResourceIOPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0005 This attribute defines the status of the -system resource I/O port." - ::= { systemResourceIOPortTableEntry 5 } -systemResourceIOPortOwnerIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0006 This attribute defines the index to the associated -system resource owner for this system resource I/O port." - ::= { systemResourceIOPortTableEntry 6 } -systemResourceIOPortShareDisposition OBJECT-TYPE - SYNTAX DellResourceShareDisposition - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0007 This attribute defines the share disposition of the -system resource I/O port." - ::= { systemResourceIOPortTableEntry 7 } -systemResourceIOPortStartingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0008 This attribute defines the 64-bit starting address -of the system resource I/O port." - ::= { systemResourceIOPortTableEntry 8 } -systemResourceIOPortEndingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0030.0001.0009 This attribute defines the 64-bit ending address -of the system resource I/O port." - ::= { systemResourceIOPortTableEntry 9 } - - -------------------------------------------------------------------------------- --- System Resource Memory Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.500.40.1... -------------------------------------------------------------------------------- - -DellResourceMemoryFlags ::= INTEGER { - memoryIsReadOnly(1), -- memory is read-only - memoryIsWriteOnly(2), -- memory is write-only - memoryIsReadAndWrite(3), -- memory is read-write - memoryIsPreFetchable(4), -- memory is prefetchable - memoryIsCombinedWritable(8), -- memory is combined writable - memoryIsF24(16) -- memory is F24 -} - -SystemResourceMemoryTableEntry ::= SEQUENCE { - systemResourceMemorychassisIndex DellObjectRange, - systemResourceMemoryIndex DellObjectRange, - systemResourceMemoryStateCapabilities DellStateCapabilities, - systemResourceMemoryStateSettings DellStateSettings, - systemResourceMemoryStatus DellStatus, - systemResourceMemoryOwnerIndexReference DellObjectRange, - systemResourceMemoryShareDisposition DellResourceShareDisposition, - systemResourceMemoryStartingAddress DellUnsigned64BitRange, - systemResourceMemoryEndingAddress DellUnsigned64BitRange, - systemResourceMemoryFlags DellResourceMemoryFlags -} - -systemResourceMemoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemResourceMemoryTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0040 This object defines the System Resource Memory Table." - ::= { systemResourceGroup 40 } -systemResourceMemoryTableEntry OBJECT-TYPE - SYNTAX SystemResourceMemoryTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0040.0001 This object defines the System Resource Memory Table Entry." - INDEX { systemResourceMemorychassisIndex, - systemResourceMemoryIndex } - ::= { systemResourceMemoryTable 1 } - -systemResourceMemorychassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { systemResourceMemoryTableEntry 1 } -systemResourceMemoryIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0002 This attribute defines the index (one based) of the -system resource memory." - ::= { systemResourceMemoryTableEntry 2 } -systemResourceMemoryStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0003 This attribute defines the state capabilities of the -system resource memory." - ::= { systemResourceMemoryTableEntry 3 } -systemResourceMemoryStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0004 This attribute defines the state settings of the -system resource memory." - ::= { systemResourceMemoryTableEntry 4 } -systemResourceMemoryStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0005 This attribute defines the status of the -system resource memory." - ::= { systemResourceMemoryTableEntry 5 } -systemResourceMemoryOwnerIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0006 This attribute defines the index to the associated -system resource owner for this system resource memory." - ::= { systemResourceMemoryTableEntry 6 } -systemResourceMemoryShareDisposition OBJECT-TYPE - SYNTAX DellResourceShareDisposition - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0007 This attribute defines the share disposition of the -system resource memory." - ::= { systemResourceMemoryTableEntry 7 } -systemResourceMemoryStartingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0008 This attribute defines the 64-bit starting address -of the system resource memory." - ::= { systemResourceMemoryTableEntry 8 } -systemResourceMemoryEndingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0009 This attribute defines the 64-bit ending address -of the system resource memory." - ::= { systemResourceMemoryTableEntry 9 } -systemResourceMemoryFlags OBJECT-TYPE - SYNTAX DellResourceMemoryFlags - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0040.0001.0010 This attribute defines the permission flags of the -system resource memory." - ::= { systemResourceMemoryTableEntry 10 } - - -------------------------------------------------------------------------------- --- System Resource Interrupts Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.500.50.1... -------------------------------------------------------------------------------- - -DellResourceInterruptType ::= INTEGER { - interruptIsLevelSensitive(1), -- type is Level Sensitive - interruptIsLatched(2) -- type is Latched -} -DellResourceInterruptTrigger ::= INTEGER { - interruptIsActiveWhenLow(1), -- trigger is active on low signal - interruptIsActiveWhenHigh(2) -- trigger is active on high signal -} - -SystemResourceInterruptTableEntry ::= SEQUENCE { - systemResourceInterruptchassisIndex DellObjectRange, - systemResourceInterruptIndex DellObjectRange, - systemResourceInterruptStateCapabilities DellStateCapabilities, - systemResourceInterruptStateSettings DellStateSettings, - systemResourceInterruptStatus DellStatus, - systemResourceInterruptOwnerIndexReference DellObjectRange, - systemResourceInterruptShareDisposition DellResourceShareDisposition, - systemResourceInterruptLevel DellUnsigned32BitRange, - systemResourceInterruptType DellResourceInterruptType, - systemResourceInterruptTrigger DellResourceInterruptTrigger -} - -systemResourceInterruptTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemResourceInterruptTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0050 This object defines the System Resource Interrupts Table." - ::= { systemResourceGroup 50 } -systemResourceInterruptTableEntry OBJECT-TYPE - SYNTAX SystemResourceInterruptTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0050.0001 This object defines the System Resource Interrupts Table Entry." - INDEX { systemResourceInterruptchassisIndex, - systemResourceInterruptIndex } - ::= { systemResourceInterruptTable 1 } - -systemResourceInterruptchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { systemResourceInterruptTableEntry 1 } -systemResourceInterruptIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0002 This attribute defines the index (one based) of the -system resource interrupt." - ::= { systemResourceInterruptTableEntry 2 } -systemResourceInterruptStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0003 This attribute defines the state capabilities of the -system resource interrupt." - ::= { systemResourceInterruptTableEntry 3 } -systemResourceInterruptStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0004 This attribute defines the state settings of the -system resource interrupt." - ::= { systemResourceInterruptTableEntry 4 } -systemResourceInterruptStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0005 This attribute defines the status of the -system resource interrupt." - ::= { systemResourceInterruptTableEntry 5 } -systemResourceInterruptOwnerIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0006 This attribute defines the index to the associated -system resource owner for this system resource interrupt." - ::= { systemResourceInterruptTableEntry 6 } -systemResourceInterruptShareDisposition OBJECT-TYPE - SYNTAX DellResourceShareDisposition - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0007 This attribute defines the share disposition of the -system resource interrupt." - ::= { systemResourceInterruptTableEntry 7 } -systemResourceInterruptLevel OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0008 This attribute defines the interrupt request level (IRQ) -of the system resource interrupt." - ::= { systemResourceInterruptTableEntry 8 } -systemResourceInterruptType OBJECT-TYPE - SYNTAX DellResourceInterruptType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0009 This attribute defines the interrupt type of the -system resource interrupt." - ::= { systemResourceInterruptTableEntry 9 } -systemResourceInterruptTrigger OBJECT-TYPE - SYNTAX DellResourceInterruptTrigger - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0050.0001.0010 This attribute defines the interrupt trigger of the -system resource interrupt." - ::= { systemResourceInterruptTableEntry 10 } - - -------------------------------------------------------------------------------- --- System Resource DMA Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.500.60.1... -------------------------------------------------------------------------------- - -DellResourceDMATransferWidth ::= INTEGER { - dmaTransferWidthIsOther(1), -- width is other than following values - dmaTransferWidthIsunknown(2), -- width is unknown - dmaTransferWidthIs8Bits(3), -- width is 8 bits - dmaTransferWidthIs16Bits(4), -- width is 16 bits - dmaTransferWidthIs32Bits(5), -- width is 32 bits - dmaTransferWidthIs64Bits(6), -- width is 64 bits - dmaTransferWidthIs128Bits(7) -- width is 128 bits -} -DellResourceDMABusMaster ::= INTEGER { - dmaIsOther(1), -- bus master capability is other than following values - dmaIsUnknown(2), -- bus master capability is unknown - dmaIsNotABusmaster(3), -- DMA has no bus master capability - dmaIsABusmaster(4) -- DMA has bus master capability -} - -SystemResourceDMATableEntry ::= SEQUENCE { - systemResourceDMAchassisIndex DellObjectRange, - systemResourceDMAIndex DellObjectRange, - systemResourceDMAStateCapabilities DellStateCapabilities, - systemResourceDMAStateSettings DellStateSettings, - systemResourceDMAStatus DellStatus, - systemResourceDMAOwnerIndexReference DellObjectRange, - systemResourceDMAShareDisposition DellResourceShareDisposition, - systemResourceDMAMaximumTransferSize DellUnsigned32BitRange, - systemResourceDMATransferWidth DellResourceDMATransferWidth, - systemResourceDMABusMaster DellResourceDMABusMaster -} - -systemResourceDMATable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemResourceDMATableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0060 This object defines the System Resource DMA Table." - ::= { systemResourceGroup 60 } -systemResourceDMATableEntry OBJECT-TYPE - SYNTAX SystemResourceDMATableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0500.0060.0001 This object defines the System Resource DMA Table Entry." - INDEX { systemResourceDMAchassisIndex, - systemResourceDMAIndex } - ::= { systemResourceDMATable 1 } - -systemResourceDMAchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { systemResourceDMATableEntry 1 } -systemResourceDMAIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0002 This attribute defines the index (one based) of the -system resource DMA." - ::= { systemResourceDMATableEntry 2 } -systemResourceDMAStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0003 This attribute defines the state capabilities of the -system resource DMA." - ::= { systemResourceDMATableEntry 3 } -systemResourceDMAStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0004 This attribute defines the state settings of the -system resource DMA." - ::= { systemResourceDMATableEntry 4 } -systemResourceDMAStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0005 This attribute defines the status of the -system resource DMA." - ::= { systemResourceDMATableEntry 5 } -systemResourceDMAOwnerIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0006 This attribute defines the index to the associated -system resource owner for this system resource DMA." - ::= { systemResourceDMATableEntry 6 } -systemResourceDMAShareDisposition OBJECT-TYPE - SYNTAX DellResourceShareDisposition - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0007 This attribute defines the share disposition of the -system resource DMA." - ::= { systemResourceDMATableEntry 7 } -systemResourceDMAMaximumTransferSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0008 This attribute defines the maximum size of a memory -transfer in bytes for the system resource DMA." - ::= { systemResourceDMATableEntry 8 } -systemResourceDMATransferWidth OBJECT-TYPE - SYNTAX DellResourceDMATransferWidth - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0009 This attribute defines the tranfer width of the -system resource DMA." - ::= { systemResourceDMATableEntry 9 } -systemResourceDMABusMaster OBJECT-TYPE - SYNTAX DellResourceDMABusMaster - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0500.0060.0001.0010 This attribute defines the bus master capabilities -of the system resource DMA." - ::= { systemResourceDMATableEntry 10 } - - -------------------------------------------------------------------------------- --- Power Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Power Unit Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.10.1... -------------------------------------------------------------------------------- - -PowerUnitTableEntry ::= SEQUENCE { - powerUnitchassisIndex DellObjectRange, - powerUnitIndex DellObjectRange, - powerUnitStateCapabilities DellStateCapabilities, - powerUnitStateSettings DellStateSettings, - powerUnitRedundancyStatus DellStatusRedundancy, - powerSupplyCountForRedundancy DellObjectRange, - powerUnitName DellString, - powerUnitStatus DellStatus -} - -powerUnitTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerUnitTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0010 This object defines the Power Unit Table." - ::= { powerGroup 10 } -powerUnitTableEntry OBJECT-TYPE - SYNTAX PowerUnitTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0010.0001 This object defines the Power Unit Table Entry." - INDEX { powerUnitchassisIndex, - powerUnitIndex } - ::= { powerUnitTable 1 } - -powerUnitchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0010.0001.0001 This attribute defines the index (one based) of the -chassis." - ::= { powerUnitTableEntry 1 } -powerUnitIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0010.0001.0002 This attribute defines the index (one based) of the -power unit." - ::= { powerUnitTableEntry 2 } -powerUnitStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0010.0001.0003 This attribute defines the state capabilities of the -power unit." - ::= { powerUnitTableEntry 3 } -powerUnitStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0010.0001.0004 This attribute defines the state settings of the -power unit." - ::= { powerUnitTableEntry 4 } -powerUnitRedundancyStatus OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0010.0001.0005 This attribute defines the redundancy status of the -power unit." - ::= { powerUnitTableEntry 5 } -powerSupplyCountForRedundancy OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0010.0001.0006 This attribute defines the total number of power supplies -required for this power unit to have full redundancy." - ::= { powerUnitTableEntry 6 } -powerUnitName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0010.0001.0007 This attribute defines the name of the power unit." - ::= { powerUnitTableEntry 7 } -powerUnitStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0010.0001.0008 This attribute defines the status of the power unit." - ::= { powerUnitTableEntry 8 } - - -------------------------------------------------------------------------------- --- Power Supply Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.12.1... -------------------------------------------------------------------------------- - -DellPowerSupplyStateCapabilitiesUnique ::= INTEGER { - -- If 0 (zero), there are no power supply state capabilities - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- state capabilities are unknown - onlineCapable(2), -- power supply can be enabled (online) or disabled (offline) - notReadyCapable(4) -- power supply can be not ready -} -DellPowerSupplyStateSettingsUnique ::= INTEGER { - -- If 0 (zero), there are no power supply state settings - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- state settings are unknown - onLine(2), -- power supply is enabled (online) - notReady(4), -- power supply is not ready - fanFailure(8), -- power supply fan has failed - onlineAndFanFailure(10), - powerSupplyIsON(16), -- power supply is supplying power - powerSupplyIsOK(32), -- power supply is indicating it is OK - acSwitchIsON(64), -- power supply is indicating AC power switch is on - onlineandAcSwitchIsON(66), - acPowerIsON(128), -- power supply is indicating AC power is on - onlineAndAcPowerIsON(130), - onlineAndPredictiveFailure(210), - acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline(242) -} -DellPowerSupplyType ::= INTEGER { - powerSupplyTypeIsOther(1), -- type is other than following values - powerSupplyTypeIsUnknown(2), -- type is unknown - powerSupplyTypeIsLinear(3), -- type is Linear - powerSupplyTypeIsSwitching(4), -- type is Switching - powerSupplyTypeIsBattery(5), -- type is Battery - powerSupplyTypeIsUPS(6), -- type is Uninterruptible Power Supply - powerSupplyTypeIsConverter(7), -- type is Converter - powerSupplyTypeIsRegulator(8), -- type is Regulator - powerSupplyTypeIsAC(9), -- type is AC - powerSupplyTypeIsDC(10), -- type is DC - powerSupplyTypeIsVRM(11) -- type is VRM -} -DellPowerSupplySensorState ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - presenceDetected(1), -- state is Presence detected - psFailureDetected(2), -- state is PS Failure detected - predictiveFailure(4), -- state is Predictive Failure - psACLost(8), -- state is PS AC lost - acLostOrOutOfRange(16), -- state is AC lost or out-of-range - acOutOfRangeButPresent(32), -- state is AC out-of-range, but present - configurationError(64) -- state is Configuration error -} -DellPowerSupplyConfigurationErrorType ::= INTEGER { - vendorMismatch(1), -- error type is Vendor mismatch - revisionMismatch(2), -- error type is Revision mismatch - processorMissing(3) -- error type is Processor missing -} - -PowerSupplyTableEntry ::= SEQUENCE { - powerSupplychassisIndex DellObjectRange, - powerSupplyIndex DellObjectRange, - powerSupplyStateCapabilitiesUnique DellPowerSupplyStateCapabilitiesUnique, - powerSupplyStateSettingsUnique DellPowerSupplyStateSettingsUnique, - powerSupplyStatus DellStatus, - powerSupplyOutputWatts DellSigned32BitRange, - powerSupplyType DellPowerSupplyType, - powerSupplyLocationName DellString, - powerSupplyInputVoltage DellSigned32BitRange, - powerSupplypowerUnitIndexReference DellObjectRange, - powerSupplySensorState DellPowerSupplySensorState, - powerSupplyConfigurationErrorType DellPowerSupplyConfigurationErrorType, - powerSupplyPowerMonitorCapable DellBoolean, - powerSupplyRatedInputWattage DellSigned32BitRange -} - -powerSupplyTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerSupplyTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0012 This object defines the Power Supply Table." - ::= { powerGroup 12 } -powerSupplyTableEntry OBJECT-TYPE - SYNTAX PowerSupplyTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0012.0001 This object defines the Power Supply Table Entry." - INDEX { powerSupplychassisIndex, - powerSupplyIndex } - ::= { powerSupplyTable 1 } - -powerSupplychassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0001 This attribute defines the index (one based) of the -chassis." - ::= { powerSupplyTableEntry 1 } -powerSupplyIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0002 This attribute defines the index (one based) of the -power supply." - ::= { powerSupplyTableEntry 2 } -powerSupplyStateCapabilitiesUnique OBJECT-TYPE - SYNTAX DellPowerSupplyStateCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0003 This attribute defines the state capabilities of the -power supply." - ::= { powerSupplyTableEntry 3 } -powerSupplyStateSettingsUnique OBJECT-TYPE - SYNTAX DellPowerSupplyStateSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0004 This attribute defines the state settings of the -power supply." - ::= { powerSupplyTableEntry 4 } -powerSupplyStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0005 This attribute defines the status of the power supply." - ::= { powerSupplyTableEntry 5 } -powerSupplyOutputWatts OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0006 This attribute defines the maximum sustained output -wattage of the power supply (in tenths of Watts)." - ::= { powerSupplyTableEntry 6 } -powerSupplyType OBJECT-TYPE - SYNTAX DellPowerSupplyType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0007 This attribute defines the type of the power supply." - ::= { powerSupplyTableEntry 7 } -powerSupplyLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0008 This attribute defines the location of the power supply." - ::= { powerSupplyTableEntry 8 } -powerSupplyInputVoltage OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0009 This attribute defines the input voltage to the power -supply (in Volts)." - ::= { powerSupplyTableEntry 9 } -powerSupplypowerUnitIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0010 This attribute defines the index to the associated -power unit if the power supply is part of a power unit." - ::= { powerSupplyTableEntry 10 } -powerSupplySensorState OBJECT-TYPE - SYNTAX DellPowerSupplySensorState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0011 This attribute defines the state reported by the -power supply sensor. This attribute supplements the attribute -powerSupplyStateSettingsUnique." - ::= { powerSupplyTableEntry 11 } -powerSupplyConfigurationErrorType OBJECT-TYPE - SYNTAX DellPowerSupplyConfigurationErrorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0012 This attribute defines the type of configuration error -reported by the power supply sensor. When the configurationError bit is on -in the value for the attribute powerSupplySensorState, a value is returned -for this attribute; otherwise, a value is not returned for this attribute." - ::= { powerSupplyTableEntry 12 } -powerSupplyPowerMonitorCapable OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0013 This attribute defines a boolean value that reports -whether the power supply is capable of monitoring power consumption." - ::= { powerSupplyTableEntry 13 } -powerSupplyRatedInputWattage OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0012.0001.0014 This attribute defines the rated input wattage of the -power supply (in tenths of Watts)." - ::= { powerSupplyTableEntry 14 } - - -------------------------------------------------------------------------------- --- Voltage Probe Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.20.1... -------------------------------------------------------------------------------- - -DellVoltageType ::= INTEGER { - voltageProbeTypeIsOther(1), -- type is other than following values - voltageProbeTypeIsUnknown(2), -- type is unknown - voltageProbeTypeIs1Point5Volt(3), -- type is 1.5 volt probe - voltageProbeTypeIs3Point3Volt(4), -- type is 3.3 volt probe - voltageProbeTypeIs5Volt(5), -- type is 5 volt probe - voltageProbeTypeIsMinus5Volt(6), -- type is -5 volt probe - voltageProbeTypeIs12Volt(7), -- type is 12 volt probe - voltageProbeTypeIsMinus12Volt(8), -- type is -12 volt probe - voltageProbeTypeIsIO(9), -- type is I/O probe - voltageProbeTypeIsCore(10), -- type is Core probe - voltageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe - voltageProbeTypeIsBattery(12), -- type is Battery probe - voltageProbeTypeIsTerminator(13), -- type is SCSI Termination probe - voltageProbeTypeIs2Point5Volt(14), -- type is 2.5 volt probe - voltageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe - voltageProbeTypeIsDiscrete(16) -- type is voltage probe with discrete reading -} -DellVoltageDiscreteReading ::= INTEGER { - voltageIsGood(1), -- voltage reading is Good - voltageIsBad(2) -- voltage reading is Bad -} - -VoltageProbeTableEntry ::= SEQUENCE { - voltageProbechassisIndex DellObjectRange, - voltageProbeIndex DellObjectRange, - voltageProbeStateCapabilities DellStateCapabilities, - voltageProbeStateSettings DellStateSettings, - voltageProbeStatus DellStatusProbe, - voltageProbeReading DellSigned32BitRange, - voltageProbeType DellVoltageType, - voltageProbeLocationName DellString, - voltageProbeUpperNonRecoverableThreshold DellSigned32BitRange, - voltageProbeUpperCriticalThreshold DellSigned32BitRange, - voltageProbeUpperNonCriticalThreshold DellSigned32BitRange, - voltageProbeLowerNonCriticalThreshold DellSigned32BitRange, - voltageProbeLowerCriticalThreshold DellSigned32BitRange, - voltageProbeLowerNonRecoverableThreshold DellSigned32BitRange, - voltageProbeProbeCapabilities DellProbeCapabilities, - voltageProbeDiscreteReading DellVoltageDiscreteReading -} - -voltageProbeTable OBJECT-TYPE - SYNTAX SEQUENCE OF VoltageProbeTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0020 This object defines the Voltage Probe Table." - ::= { powerGroup 20 } -voltageProbeTableEntry OBJECT-TYPE - SYNTAX VoltageProbeTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0020.001 This object defines the Voltage Probe Table Entry." - INDEX { voltageProbechassisIndex, - voltageProbeIndex } - ::= { voltageProbeTable 1 } - -voltageProbechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0001 This attribute defines the index (one based) of the -chassis." - ::= { voltageProbeTableEntry 1 } -voltageProbeIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0002 This attribute defines the index (one based) of the -voltage probe." - ::= { voltageProbeTableEntry 2 } -voltageProbeStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0003 This attribute defines the state capabilities of the -voltage probe." - ::= { voltageProbeTableEntry 3 } -voltageProbeStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0004 This attribute defines the state settings of the -voltage probe." - ::= { voltageProbeTableEntry 4 } -voltageProbeStatus OBJECT-TYPE - SYNTAX DellStatusProbe - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0005 This attribute defines the probe status of the -voltage probe." - ::= { voltageProbeTableEntry 5 } -voltageProbeReading OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0006 This attribute defines the reading for a voltage -probe of type other than voltageProbeTypeIsDiscrete. When the value -for voltageProbeType is other than voltageProbeTypeIsDiscrete, the value -returned for this attribute is the voltage that the probe is reading -in millivolts. When the value for voltageProbeType is -voltageProbeTypeIsDiscrete, a value is not returned for this attribute." - ::= { voltageProbeTableEntry 6 } -voltageProbeType OBJECT-TYPE - SYNTAX DellVoltageType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0007 This attribute defines the type of the voltage probe." - ::= { voltageProbeTableEntry 7 } -voltageProbeLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0008 This attribute defines the location name of the -voltage probe." - ::= { voltageProbeTableEntry 8 } -voltageProbeUpperNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0009 This attribute defines the upper nonrecoverable threshold -of the voltage probe. The value is an integer representing the voltage -of the threshold in millivolts." - ::= { voltageProbeTableEntry 9 } -voltageProbeUpperCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0010 This attribute defines the upper critical threshold -of the voltage probe. The value is an integer representing the voltage -of the threshold in millivolts." - ::= { voltageProbeTableEntry 10 } -voltageProbeUpperNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0011 This attribute defines the upper noncritical threshold -of the voltage probe. The value is an integer representing the voltage -of the threshold in millivolts." - ::= { voltageProbeTableEntry 11 } -voltageProbeLowerNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0012 This attribute defines the lower noncritical threshold -of the voltage probe. The value is an integer representing the voltage -of the threshold in millivolts." - ::= { voltageProbeTableEntry 12 } -voltageProbeLowerCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0013 This attribute defines the lower critical threshold -of the voltage probe. The value is an integer representing the voltage -of the threshold in millivolts." - ::= { voltageProbeTableEntry 13 } -voltageProbeLowerNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0014 This attribute defines the lower nonrecoverable threshold -of the voltage probe. The value is an integer representing the voltage -of the threshold in millivolts." - ::= { voltageProbeTableEntry 14 } -voltageProbeProbeCapabilities OBJECT-TYPE - SYNTAX DellProbeCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0015 This attribute defines the probe capabilities of the -voltage probe." - ::= { voltageProbeTableEntry 15 } -voltageProbeDiscreteReading OBJECT-TYPE - SYNTAX DellVoltageDiscreteReading - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0020.0001.0016 This attribute defines the reading for a voltage -probe of type voltageProbeTypeIsDiscrete. When the value for voltageProbeType -is other than voltageProbeTypeIsDiscrete, a value is not returned for this -attribute. When the value for voltageProbeType is voltageProbeTypeIsDiscrete, -the value returned for this attribute is the discrete reading for the probe." - ::= { voltageProbeTableEntry 16 } - - -------------------------------------------------------------------------------- --- Amperage Probe Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.30.1... -------------------------------------------------------------------------------- - -DellAmperageProbeType ::= INTEGER { - amperageProbeTypeIsOther(1), -- type is other than following values - amperageProbeTypeIsUnknown(2), -- type is unknown - amperageProbeTypeIs1Point5Volt(3), -- type is 1.5 amperage probe - amperageProbeTypeIs3Point3volt(4), -- type is 3.3 amperage probe - amperageProbeTypeIs5Volt(5), -- type is 5 amperage probe - amperageProbeTypeIsMinus5Volt(6), -- type is -5 amperage probe - amperageProbeTypeIs12Volt(7), -- type is 12 amperage probe - amperageProbeTypeIsMinus12Volt(8), -- type is -12 amperage probe - amperageProbeTypeIsIO(9), -- type is I/O probe - amperageProbeTypeIsCore(10), -- type is Core probe - amperageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe - amperageProbeTypeIsBattery(12), -- type is Battery probe - amperageProbeTypeIsTerminator(13), -- type is SCSI Termination probe - amperageProbeTypeIs2Point5Volt(14), -- type is 2.5 amperage probe - amperageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe - amperageProbeTypeIsDiscrete(16), -- type is amperage probe with discrete reading - amperageProbeTypeIsPowerSupplyAmps(23), -- type is Power Supply probe with reading in Amps - amperageProbeTypeIsPowerSupplyWatts(24), -- type is Power Supply probe with reading in Watts - amperageProbeTypeIsSystemAmps(25), -- type is System probe with reading in Amps - amperageProbeTypeIsSystemWatts(26) -- type is System probe with reading in Watts -} -DellAmperageDiscreteReading ::= INTEGER { - amperageIsGood(1), -- amperage reading is Good - amperageIsBad(2) -- amperage reading is Bad -} - -AmperageProbeTableEntry ::= SEQUENCE { - amperageProbechassisIndex DellObjectRange, - amperageProbeIndex DellObjectRange, - amperageProbeStateCapabilities DellStateCapabilities, - amperageProbeStateSettings DellStateSettings, - amperageProbeStatus DellStatusProbe, - amperageProbeReading DellSigned32BitRange, - amperageProbeType DellAmperageProbeType, - amperageProbeLocationName DellString, - amperageProbeUpperNonRecoverableThreshold DellSigned32BitRange, - amperageProbeUpperCriticalThreshold DellSigned32BitRange, - amperageProbeUpperNonCriticalThreshold DellSigned32BitRange, - amperageProbeLowerNonCriticalThreshold DellSigned32BitRange, - amperageProbeLowerCriticalThreshold DellSigned32BitRange, - amperageProbeLowerNonRecoverableThreshold DellSigned32BitRange, - amperageProbeProbeCapabilities DellProbeCapabilities, - amperageProbeDiscreteReading DellAmperageDiscreteReading -} - -amperageProbeTable OBJECT-TYPE - SYNTAX SEQUENCE OF AmperageProbeTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0030 This object defines the Amperage Probe Table." - ::= { powerGroup 30 } -amperageProbeTableEntry OBJECT-TYPE - SYNTAX AmperageProbeTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0030.0001 This object defines the Amperage Probe Table Entry." - INDEX { amperageProbechassisIndex, - amperageProbeIndex } - ::= { amperageProbeTable 1 } - -amperageProbechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0001 This attribute defines the index (one based) of the -chassis." - ::= { amperageProbeTableEntry 1 } -amperageProbeIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0002 This attribute defines the index (one based) of the -amperage probe." - ::= { amperageProbeTableEntry 2 } -amperageProbeStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0003 This attribute defines the state capabilities of the -amperage probe." - ::= { amperageProbeTableEntry 3 } -amperageProbeStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0004 This attribute defines the state settings of the -amperage probe." - ::= { amperageProbeTableEntry 4 } -amperageProbeStatus OBJECT-TYPE - SYNTAX DellStatusProbe - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0005 This attribute defines the probe status of the -amperage probe." - ::= { amperageProbeTableEntry 5 } -amperageProbeReading OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0006 This attribute defines the reading for an amperage -probe of type other than amperageProbeTypeIsDiscrete. - -When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyAmps -or amperageProbeTypeIsSystemAmps, the value returned for this attribute -is the power usage that the probe is reading in tenths of Amps. - -When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyWatts -or amperageProbeTypeIsSystemWatts, the value returned for this attribute -is the power usage that the probe is reading in Watts. - -When the value for amperageProbeType is other than amperageProbeTypeIsDiscrete, -amperageProbeTypeIsPowerSupplyAmps, amperageProbeTypeIsPowerSupplyWatts, -amperageProbeTypeIsSystemAmps or amperageProbeTypeIsSystemWatts, -the value returned for this attribute is the amperage that the probe is -reading in Milliamps. - -When the value for amperageProbeType is amperageProbeTypeIsDiscrete, -a value is not returned for this attribute." - ::= { amperageProbeTableEntry 6 } -amperageProbeType OBJECT-TYPE - SYNTAX DellAmperageProbeType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0007 This attribute defines the type of the amperage probe." - ::= { amperageProbeTableEntry 7 } -amperageProbeLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0008 This attribute defines the location of the amperage probe." - ::= { amperageProbeTableEntry 8 } -amperageProbeUpperNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0009 This attribute defines the upper nonrecoverable threshold -of the amperage probe. The value is an integer representing the amperage -of the threshold in milliamps." - ::= { amperageProbeTableEntry 9 } -amperageProbeUpperCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0010 This attribute defines the upper critical threshold -of the amperage probe. The value is an integer representing the amperage -of the threshold in milliamps." - ::= { amperageProbeTableEntry 10 } -amperageProbeUpperNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0011 This attribute defines the upper noncritical threshold -of the amperage probe. The value is an integer representing the amperage -of the threshold in milliamps." - ::= { amperageProbeTableEntry 11 } -amperageProbeLowerNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0012 This attribute defines the lower noncritical threshold -of the amperage probe. The value is an integer representing the amperage -of the threshold in milliamps." - ::= { amperageProbeTableEntry 12 } -amperageProbeLowerCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0013 This attribute defines the lower critical threshold -of the amperage probe. The value is an integer representing the amperage -of the threshold in milliamps." - ::= { amperageProbeTableEntry 13 } -amperageProbeLowerNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0014 This attribute defines the lower nonrecoverable threshold -of the amperage probe. The value is an integer representing the amperage -of the threshold in milliamps." - ::= { amperageProbeTableEntry 14 } -amperageProbeProbeCapabilities OBJECT-TYPE - SYNTAX DellProbeCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0015 This attribute defines the probe capabilities of the -amperage probe." - ::= { amperageProbeTableEntry 15 } -amperageProbeDiscreteReading OBJECT-TYPE - SYNTAX DellAmperageDiscreteReading - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0030.0001.0016 This attribute defines the reading for an amperage -probe of type amperageProbeTypeIsDiscrete. When the value for amperageProbeType -is other than amperageProbeTypeIsDiscrete, a value is not returned for this -attribute. When the value for amperageProbeType is amperageProbeTypeIsDiscrete, -the value returned for this attribute is the discrete reading for the probe." - ::= { amperageProbeTableEntry 16 } - - -------------------------------------------------------------------------------- --- AC Power Switch Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.40.1... -------------------------------------------------------------------------------- - -DellACPowerSwitchCapabilities ::= INTEGER { - -- If 0 (zero), there are no AC Power Switch capabilities - -- Note: These values are bit masks, so combination values are possible. - unknownCapabilities(1), -- capabilities are unknown - -- The objects capabilities allow it to be set to: - inputSourceCord1NoReturnCapable(2), -- input source can be cord 1, with no return - inputSourceCord1ReturnCapable(4), -- input source can be cord 1, with return - inputSourceCord2NoReturnCapable(8), -- input source can be cord 2, with no return - inputSourceCord1NoReturnCord1ReturnAndCord2NoReturnCapable(14), - inputSourceCord2ReturnCapable(16), -- input source can be cord 2, with return - inputSourceAllExceptSharedCapable(30), - inputSourceSharedCapable(32), -- input source can be shared - inputSourceAllCapable(62) -} -DellACPowerSwitchSettings ::= INTEGER { - -- If 0 (zero), there are no AC Power Switch settings - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- settings are unknown - -- Input source settings are mutually-exclusive - inputSourceCord1NoReturn(2), -- input source is cord 1, with no return - inputSourceCord1Return(4), -- input source is cord 1, with return - inputSourceCord2NoReturn(8), -- input source is cord 2, with no return - inputSourceCord2Return(16), -- input source is cord 2, with return - inputSourceShared(32) -- input source is shared -} -DellACPowerSwitchRedundancyMode ::= INTEGER { - nonRedundant(1), -- AC power switch not expecting redundancy - redundant(2) -- AC power switch is expecting redundancy -} - -ACPowerSwitchTableEntry ::= SEQUENCE { - aCPowerSwitchchassisIndex DellObjectRange, - aCPowerSwitchIndex DellObjectRange, - aCPowerSwitchCapabilities DellACPowerSwitchCapabilities, - aCPowerSwitchSettings DellACPowerSwitchSettings, - aCPowerSwitchRedundancyStatus DellStatusRedundancy, - aCPowerCordCountForRedundancy DellObjectRange, - aCPowerSwitchName DellString, - aCPowerSwitchRedundancyMode DellACPowerSwitchRedundancyMode, - aCPowerSwitchStatus DellStatus -} - -aCPowerSwitchTable OBJECT-TYPE - SYNTAX SEQUENCE OF ACPowerSwitchTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0040 This object defines the AC Power Switch Table." - ::= { powerGroup 40 } -aCPowerSwitchTableEntry OBJECT-TYPE - SYNTAX ACPowerSwitchTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0040.0001 This object defines the AC Power Switch Table Entry." - INDEX { aCPowerSwitchchassisIndex, - aCPowerSwitchIndex } - ::= { aCPowerSwitchTable 1 } - -aCPowerSwitchchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { aCPowerSwitchTableEntry 1 } -aCPowerSwitchIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0002 This attribute defines the index (one based) of the -AC power switch." - ::= { aCPowerSwitchTableEntry 2 } -aCPowerSwitchCapabilities OBJECT-TYPE - SYNTAX DellACPowerSwitchCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0003 This attribute defines the capabilities of the -AC power switch." - ::= { aCPowerSwitchTableEntry 3 } -aCPowerSwitchSettings OBJECT-TYPE - SYNTAX DellACPowerSwitchSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0004 This attribute defines the settings of the -AC power switch." - ::= { aCPowerSwitchTableEntry 4 } -aCPowerSwitchRedundancyStatus OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0005 This attribute defines the redundancy status of the -AC power switch." - ::= { aCPowerSwitchTableEntry 5 } -aCPowerCordCountForRedundancy OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0006 This attribute defines the total number of AC power -cords required for this AC power switch to have full redundancy." - ::= { aCPowerSwitchTableEntry 6 } -aCPowerSwitchName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0007 This attribute defines the name of the AC power switch." - ::= { aCPowerSwitchTableEntry 7 } -aCPowerSwitchRedundancyMode OBJECT-TYPE - SYNTAX DellACPowerSwitchRedundancyMode - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0008 This attribute defines the redundancy mode of the -AC power switch." - ::= { aCPowerSwitchTableEntry 8 } -aCPowerSwitchStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0040.0001.0009 This attribute defines the status of the AC power switch." - ::= { aCPowerSwitchTableEntry 9 } - - -------------------------------------------------------------------------------- --- AC Power Cord Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.42.1... -------------------------------------------------------------------------------- - -DellACPowerCordStateCapabilities ::= INTEGER { - -- If 0 (zero), there are no AC Power Cord state capabilities - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- state capabilities are unknown - enableCapable(2), -- AC power cord can be enabled (online) or disabled (offline) - notReadyCapable(4) -- AC power cord can be not ready -} -DellACPowerCordStateSettings ::= INTEGER { - -- If 0 (zero), there are no AC Power Cord state settings - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- state settings are unknown - enabled(2), -- AC power cord is enabled (online) - notReady(4), -- AC power cord is not ready - acPowerCordHasPower(8), -- AC power cord has power - acPowerCordIsEnabledAndHasPower(10), - acPowerCordIsActiveSource(16), -- AC power cord is active source of AC power - acPowerCordIsEnabledHasPowerAndIsActiveSource(26) -} - -ACPowerCordTableEntry ::= SEQUENCE { - aCPowerCordchassisIndex DellObjectRange, - aCPowerCordIndex DellObjectRange, - aCPowerCordStateCapabilities DellACPowerCordStateCapabilities, - aCPowerCordStateSettings DellACPowerCordStateSettings, - aCPowerCordStatus DellStatus, - aCPowerCordaCPowerSwitchIndexReference DellObjectRange, - aCPowerCordLocationName DellString -} - -aCPowerCordTable OBJECT-TYPE - SYNTAX SEQUENCE OF ACPowerCordTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0042 This object defines the AC Power Cord Table." - ::= { powerGroup 42 } -aCPowerCordTableEntry OBJECT-TYPE - SYNTAX ACPowerCordTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0042.0001 This object defines the AC Power Cord Table Entry." - INDEX { aCPowerCordchassisIndex, - aCPowerCordIndex } - ::= { aCPowerCordTable 1 } - -aCPowerCordchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0042.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { aCPowerCordTableEntry 1 } -aCPowerCordIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0042.0001.0002 This attribute defines the index (one based) of the -AC power cord." - ::= { aCPowerCordTableEntry 2 } -aCPowerCordStateCapabilities OBJECT-TYPE - SYNTAX DellACPowerCordStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0042.0001.0003 This attribute defines the state capabilities of the -AC power cord." - ::= { aCPowerCordTableEntry 3 } -aCPowerCordStateSettings OBJECT-TYPE - SYNTAX DellACPowerCordStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0042.0001.0004 This attribute defines the state settings of the -AC power cord." - ::= { aCPowerCordTableEntry 4 } -aCPowerCordStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0042.0001.0005 This attribute defines the status of the AC power cord." - ::= { aCPowerCordTableEntry 5 } -aCPowerCordaCPowerSwitchIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0042.0001.0006 This attribute defines the index (one based) to the -associated AC power switch for this AC power cord." - ::= { aCPowerCordTableEntry 6 } -aCPowerCordLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0042.0001.0007 This attribute defines the location of the -AC power cord." - ::= { aCPowerCordTableEntry 7 } - - -------------------------------------------------------------------------------- --- Battery Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.50.1... -------------------------------------------------------------------------------- - -DellBatteryReading ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - predictiveFailure(1), -- battery predictive failure - failed(2), -- battery failed - presenceDetected(4) -- battery presence detected -} - -BatteryTableEntry ::= SEQUENCE { - batteryChassisIndex DellObjectRange, - batteryIndex DellObjectRange, - batteryStateCapabilities DellStateCapabilities, - batteryStateSettings DellStateSettings, - batteryStatus DellStatus, - batteryReading DellBatteryReading, - batteryLocationName DellString -} - -batteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF BatteryTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0050 This object defines the Battery Table." - ::= { powerGroup 50 } -batteryTableEntry OBJECT-TYPE - SYNTAX BatteryTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0050.0001 This object defines the Battery Table Entry." - INDEX { batteryChassisIndex, - batteryIndex } - ::= { batteryTable 1 } - -batteryChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0050.0001.0001 This attribute defines the index (one based) of the -chassis that contains the battery." - ::= { batteryTableEntry 1 } -batteryIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0050.0001.0002 This attribute defines the index (one based) of the -battery." - ::= { batteryTableEntry 2 } -batteryStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0050.0001.0003 This attribute defines the state capabilities of the -battery." - ::= { batteryTableEntry 3 } -batteryStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0050.0001.0004 This attribute defines the state settings of the -battery." - ::= { batteryTableEntry 4 } -batteryStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0050.0001.0005 This attribute defines the status of the battery." - ::= { batteryTableEntry 5 } -batteryReading OBJECT-TYPE - SYNTAX DellBatteryReading - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0050.0001.0006 This attribute defines the reading of the battery." - ::= { batteryTableEntry 6 } -batteryLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0050.0001.0007 This attribute defines the location of the battery." - ::= { batteryTableEntry 7 } - - -------------------------------------------------------------------------------- --- Power Usage Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.60.1... -------------------------------------------------------------------------------- - -DellPowerCapCapabilities ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - no power cap capabilities - enable(1), -- power cap can be enabled - disable(2) -- power cap can be disabled -} -DellPowerCapSetting ::= INTEGER { - -- disabled(0), - power cap disabled - enabled(1) -- power cap enabled -} - -PowerUsageTableEntry ::= SEQUENCE { - powerUsageChassisIndex DellObjectRange, - powerUsageIndex DellObjectRange, - powerUsageStateCapabilities DellStateCapabilities, - powerUsageStateSettings DellStateSettings, - powerUsageStatus DellStatus, - powerUsageEntityName DellString, - powerUsageCumulativeWattage DellUnsigned32BitRange, - powerUsageCumulativeWattageStartDateName DellDateName, - powerUsagePeakWatts DellUnsigned32BitRange, - powerUsagePeakWattsStartDateName DellDateName, - powerUsagePeakWattsReadingDateName DellDateName, - powerUsagePeakAmps DellUnsigned32BitRange, - powerUsagePeakAmpsStartDateName DellDateName, - powerUsagePeakAmpsReadingDateName DellDateName, - powerUsageIdlePower DellUnsigned32BitRange, - powerUsageMaxPotentialPower DellUnsigned32BitRange, - powerUsagePowerCapCapabilities DellPowerCapCapabilities, - powerUsagePowerCapSetting DellPowerCapSetting, - powerUsagePowerCapValue DellUnsigned32BitRange, - powerUsageInstantaneousHeadroom DellUnsigned32BitRange, - powerUsagePeakHeadroom DellUnsigned32BitRange -} - -powerUsageTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerUsageTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0060 This object defines the Power Usage Table." - ::= { powerGroup 60 } -powerUsageTableEntry OBJECT-TYPE - SYNTAX PowerUsageTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0060.0001 This object defines the Power Usage Table Entry." - INDEX { powerUsageChassisIndex, - powerUsageIndex } - ::= { powerUsageTable 1 } - -powerUsageChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { powerUsageTableEntry 1 } -powerUsageIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0002 This attribute defines the index (one based) of the -power usage information." - ::= { powerUsageTableEntry 2 } -powerUsageStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0003 This attribute defines the state capabilities of the -power usage information." - ::= { powerUsageTableEntry 3 } -powerUsageStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0004 This attribute defines the state settings of the -power usage information." - ::= { powerUsageTableEntry 4 } -powerUsageStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0005 This attribute defines the status of the -power usage information." - ::= { powerUsageTableEntry 5 } -powerUsageEntityName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0006 This attribute defines the name of the entity -associated with this power usage information." - ::= { powerUsageTableEntry 6 } -powerUsageCumulativeWattage OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0007 This attribute defines the total wattage used -(in Watt-hours) by this entity since the date and time specified -by the powerUsageCumulativeWattageStartDateName attribute." - ::= { powerUsageTableEntry 7 } -powerUsageCumulativeWattageStartDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0008 This attribute defines the date and time at -which the data collection started for the value reported by the -powerUsageCumulativeWattage attribute." - ::= { powerUsageTableEntry 8 } -powerUsagePeakWatts OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0009 This attribute defines the peak wattage reading -(in Watts) for this entity since the date and time specified by the -powerUsagePeakWattsStartDateName attribute." - ::= { powerUsageTableEntry 9 } -powerUsagePeakWattsStartDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0010 This attribute defines the date and time at -which the data collection started for the value reported by the -powerUsagePeakWatts attribute." - ::= { powerUsageTableEntry 10 } -powerUsagePeakWattsReadingDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0011 This attribute defines the date and time at -which the value reported by the powerUsagePeakWatts attribute was -measured." - ::= { powerUsageTableEntry 11 } -powerUsagePeakAmps OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0012 This attribute defines the peak amperage reading -(in tenths of Amps) for this entity since the date and time specified -by the powerUsagePeakAmpsStartDateName attribute." - ::= { powerUsageTableEntry 12 } -powerUsagePeakAmpsStartDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0013 This attribute defines the date and time at -which the data collection started for the value reported by the -powerUsagePeakAmps attribute." - ::= { powerUsageTableEntry 13 } -powerUsagePeakAmpsReadingDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0014 This attribute defines the date and time at -which the value reported by the powerUsagePeakAmps attribute was -measured." - ::= { powerUsageTableEntry 14 } -powerUsageIdlePower OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0015 This attribute defines the system idle power -(in Watts). This is the minimum power the system can consume -based on the current hardware configuration." - ::= { powerUsageTableEntry 15 } -powerUsageMaxPotentialPower OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0016 This attribute defines the system maximum potential -power (in Watts). This is the maximum power the system can consume -based on the current hardware configuration." - ::= { powerUsageTableEntry 16 } -powerUsagePowerCapCapabilities OBJECT-TYPE - SYNTAX DellPowerCapCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0017 This attribute defines the system power cap capabilities." - ::= { powerUsageTableEntry 17 } -powerUsagePowerCapSetting OBJECT-TYPE - SYNTAX DellPowerCapSetting - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0018 This attribute defines the system power cap setting." - ::= { powerUsageTableEntry 18 } -powerUsagePowerCapValue OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0019 This attribute defines the system power cap value -(in Watts)." - ::= { powerUsageTableEntry 19 } -powerUsageInstantaneousHeadroom OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0020 This attribute defines the system instantaneous -headroom (in Watts). This is the theoretical maximum power drawn by -the power supply minus instantaneous power draw." - ::= { powerUsageTableEntry 20 } -powerUsagePeakHeadroom OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0021 This attribute defines the system peak headroom -(in Watts). This is the theoretical maximum power drawn by the power -supply minus peak power draw." - ::= { powerUsageTableEntry 21 } - - -------------------------------------------------------------------------------- --- Power Profile Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.600.70.1... -------------------------------------------------------------------------------- - -DellPowerProfileType ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - none - maxPerformance(1), -- Maximum Performance - osControl(2), -- OS Control - activePowerController(4), -- Active Power Controller - custom(8) -- Custom -} -DellCPUPowerPerformanceManagementType ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - none - maxPerformance(1), -- Maximum Performance - minPower(2), -- Minimum Power - osDBPM(4), -- OS Demand Based Power Management - systemDBPM(8) -- System Demand Based Power Management -} -DellMemoryPowerPerformanceManagementType ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - none - maxPerformance(1), -- Maximum Performance - mhz1333(2), -- 1333 MHz - mhz1067(4), -- 1067 MHz - mhz800(8), -- 800 MHz - minPower(16) -- Minimum Power -} -DellFanPowerPerformanceManagementType ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - none - maxPerformance(1), -- Maximum Performance - minPower(2) -- Minimum Power -} - -PowerProfileTableEntry ::= SEQUENCE { - powerProfileChassisIndex DellObjectRange, - powerProfileIndex DellObjectRange, - powerProfileSupportedProfiles DellPowerProfileType, - powerProfileSetting DellPowerProfileType, - powerProfileCustomCPUMgmtCapabilities DellCPUPowerPerformanceManagementType, - powerProfileCustomCPUMgmtSetting DellCPUPowerPerformanceManagementType, - powerProfileCustomMemoryMgmtCapabilities DellMemoryPowerPerformanceManagementType, - powerProfileCustomMemoryMgmtSetting DellMemoryPowerPerformanceManagementType, - powerProfileCustomFanMgmtCapabilities DellFanPowerPerformanceManagementType, - powerProfileCustomFanMgmtSetting DellFanPowerPerformanceManagementType -} - -powerProfileTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerProfileTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0070 This object defines the Power Profile Table." - ::= { powerGroup 70 } -powerProfileTableEntry OBJECT-TYPE - SYNTAX PowerProfileTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0600.0070.0001 This object defines the Power Profile Table Entry." - INDEX { powerProfileChassisIndex, - powerProfileIndex } - ::= { powerProfileTable 1 } - -powerProfileChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { powerProfileTableEntry 1 } -powerProfileIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0060.0001.0002 This attribute defines the index (one based) of the -power profile information." - ::= { powerProfileTableEntry 2 } -powerProfileSupportedProfiles OBJECT-TYPE - SYNTAX DellPowerProfileType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0003 This attribute defines the supported power profiles." - ::= { powerProfileTableEntry 3 } -powerProfileSetting OBJECT-TYPE - SYNTAX DellPowerProfileType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0004 This attribute defines the power profile setting." - ::= { powerProfileTableEntry 4 } -powerProfileCustomCPUMgmtCapabilities OBJECT-TYPE - SYNTAX DellCPUPowerPerformanceManagementType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0005 This attribute defines the custom CPU power and -performance management capabilities that are available for the Custom -power profile." - ::= { powerProfileTableEntry 5 } -powerProfileCustomCPUMgmtSetting OBJECT-TYPE - SYNTAX DellCPUPowerPerformanceManagementType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0006 This attribute defines the custom CPU power and -performance management setting for the Custom power profile." - ::= { powerProfileTableEntry 6 } -powerProfileCustomMemoryMgmtCapabilities OBJECT-TYPE - SYNTAX DellMemoryPowerPerformanceManagementType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0007 This attribute defines the custom memory power and -performance management capabilities that are available for the Custom -power profile." - ::= { powerProfileTableEntry 7 } -powerProfileCustomMemoryMgmtSetting OBJECT-TYPE - SYNTAX DellMemoryPowerPerformanceManagementType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0008 This attribute defines the custom memory power and -performance management setting for the Custom power profile." - ::= { powerProfileTableEntry 8 } -powerProfileCustomFanMgmtCapabilities OBJECT-TYPE - SYNTAX DellFanPowerPerformanceManagementType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0009 This attribute defines the custom fan power and -performance management capabilities that are available for the Custom -power profile." - ::= { powerProfileTableEntry 9 } -powerProfileCustomFanMgmtSetting OBJECT-TYPE - SYNTAX DellFanPowerPerformanceManagementType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0600.0070.0001.0010 This attribute defines the custom fan power and -performance management setting for the Custom power profile." - ::= { powerProfileTableEntry 10 } - - -------------------------------------------------------------------------------- --- Thermal Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.700 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Cooling Unit Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.700.10.1... -------------------------------------------------------------------------------- - -CoolingUnitTableEntry ::= SEQUENCE { - coolingUnitchassisIndex DellObjectRange, - coolingUnitIndex DellObjectRange, - coolingUnitStateCapabilties DellStateCapabilities, - coolingUnitStateSettings DellStateSettings, - coolingUnitRedundancyStatus DellStatusRedundancy, - coolingDeviceCountForRedundancy DellObjectRange, - coolingUnitName DellString, - coolingUnitStatus DellStatus -} - -coolingUnitTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0700.0010 This object defines the Cooling Unit Table." - ::= { thermalGroup 10 } -coolingUnitTableEntry OBJECT-TYPE - SYNTAX CoolingUnitTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0700.0010.0001 This object defines the Cooling Unit Table Entry." - INDEX { coolingUnitchassisIndex, - coolingUnitIndex } - ::= { coolingUnitTable 1 } - -coolingUnitchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0010.0001.0001 This attribute defines the index (one based) of the -assoicated chassis." - ::= { coolingUnitTableEntry 1 } -coolingUnitIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0010.0001.0002 This attribute defines the index (one based) of the -cooling unit." - ::= { coolingUnitTableEntry 2 } -coolingUnitStateCapabilties OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0010.0001.0003 This attribute defines the state capabilities of the -cooling unit." - ::= { coolingUnitTableEntry 3 } -coolingUnitStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0010.0001.0004 This attribute defines the state settings of the -cooling unit." - ::= { coolingUnitTableEntry 4 } -coolingUnitRedundancyStatus OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0010.0001.0005 This attribute defines the redundancy status of the -cooling unit." - ::= { coolingUnitTableEntry 5 } -coolingDeviceCountForRedundancy OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0010.0001.0006 This attribute defines the total number of cooling devices -required for this cooling unit to have full redundancy." - ::= { coolingUnitTableEntry 6 } -coolingUnitName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0010.0001.0007 This attribute defines the name of the cooling unit." - ::= { coolingUnitTableEntry 7 } -coolingUnitStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0010.0001.0008 This attribute defines the status of the cooling unit." - ::= { coolingUnitTableEntry 8 } - - -------------------------------------------------------------------------------- --- Cooling Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.700.12.1... -------------------------------------------------------------------------------- - -DellCoolingDeviceType ::= INTEGER { - coolingDeviceTypeIsOther(1), -- type is other than following values - coolingDeviceTypeIsUnknown(2), -- type is unknown - coolingDeviceTypeIsAFan(3), -- type is Fan - coolingDeviceTypeIsABlower(4), -- type is Centrifugal Blower - coolingDeviceTypeIsAChipFan(5), -- type is Fan on Integrated Circuit - coolingDeviceTypeIsACabinetFan(6), -- type is Cabinet Fan - coolingDeviceTypeIsAPowerSupplyFan(7), -- type is Power Supply Fan - coolingDeviceTypeIsAHeatPipe(8), -- type is Heat Pipe - coolingDeviceTypeIsRefrigeration(9), -- type is Integrated Refrigeration Unit - coolingDeviceTypeIsActiveCooling(10), -- type is Active Cooling Device - coolingDeviceTypeIsPassiveCooling(11) -- type is Passive Cooling Device -} -DellCoolingDeviceSubType ::= INTEGER { - coolingDeviceSubTypeIsOther(1), -- subtype is other than following values - coolingDeviceSubTypeIsUnknown(2), -- subtype is unknown - coolingDeviceSubTypeIsAFanThatReadsInRPM(3),-- subtype is Fan that reads RPM - coolingDeviceSubTypeIsAFanReadsONorOFF(4), -- subtype is Fan that reads Off or On - coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM(5), -- subtype is Power Supply Fan that reads RPM - coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF(6),-- subtype is Power Supply Fan that reads Off or On - coolingDeviceSubTypeIsDiscrete(16) -- subtype is cooling device with discrete reading -} -DellCoolingDeviceDiscreteReading ::= INTEGER { - coolingDeviceIsGood(1), -- cooling device is Good - coolingDeviceIsBad(2) -- cooling device is Bad -} - -CoolingDeviceTableEntry ::= SEQUENCE { - coolingDevicechassisIndex DellObjectRange, - coolingDeviceIndex DellObjectRange, - coolingDeviceStateCapabilities DellStateCapabilities, - coolingDeviceStateSettings DellStateSettings, - coolingDeviceStatus DellStatusProbe, - coolingDeviceReading DellSigned32BitRange, - coolingDeviceType DellCoolingDeviceType, - coolingDeviceLocationName DellString, - coolingDeviceUpperNonRecoverableThreshold DellSigned32BitRange, - coolingDeviceUpperCriticalThreshold DellSigned32BitRange, - coolingDeviceUpperNonCriticalThreshold DellSigned32BitRange, - coolingDeviceLowerNonCriticalThreshold DellSigned32BitRange, - coolingDeviceLowerCriticalThreshold DellSigned32BitRange, - coolingDeviceLowerNonRecoverableThreshold DellSigned32BitRange, - coolingDevicecoolingUnitIndexReference DellObjectRange, - coolingDeviceSubType DellCoolingDeviceSubType, - coolingDeviceProbeCapabilities DellProbeCapabilities, - coolingDeviceDiscreteReading DellCoolingDeviceDiscreteReading -} - -coolingDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0700.0012 This object defines the Cooling Device Table." - ::= { thermalGroup 12 } -coolingDeviceTableEntry OBJECT-TYPE - SYNTAX CoolingDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0700.0012.0001 This object defines the Cooling Device Table Entry." - INDEX { coolingDevicechassisIndex, - coolingDeviceIndex } - ::= { coolingDeviceTable 1 } - -coolingDevicechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { coolingDeviceTableEntry 1 } -coolingDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0002 This attribute defines the index (one based) of the -cooling device." - ::= { coolingDeviceTableEntry 2 } -coolingDeviceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0003 This attribute defines the state capabilities of the -cooling device." - ::= { coolingDeviceTableEntry 3 } -coolingDeviceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0004 This attribute defines the state settings of the -cooling device." - ::= { coolingDeviceTableEntry 4 } -coolingDeviceStatus OBJECT-TYPE - SYNTAX DellStatusProbe - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0005 This attribute defines the probe status of the -cooling device." - ::= { coolingDeviceTableEntry 5 } -coolingDeviceReading OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0006 This attribute defines the reading for a cooling device -of subtype other than coolingDeviceSubTypeIsDiscrete. When the value -for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the -value returned for this attribute is the speed in RPM or the OFF/ON value -of the cooling device. When the value for coolingDeviceSubType is -coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute." - ::= { coolingDeviceTableEntry 6 } -coolingDeviceType OBJECT-TYPE - SYNTAX DellCoolingDeviceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0007 This attribute defines the type of the cooling device." - ::= { coolingDeviceTableEntry 7 } -coolingDeviceLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0008 This attribute defines the location name of the -cooling device." - ::= { coolingDeviceTableEntry 8 } -coolingDeviceUpperNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0009 This attribute defines the upper nonrecoverable threshold -of the cooling device. The value is an integer representing fan speed -in revolutions per minute (RPM). It is not applicable to OFF/ON type -cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 9 } -coolingDeviceUpperCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0010 This attribute defines the upper critical threshold -of the cooling device. The value is an integer representing fan speed -in revolutions per minute (RPM). It is not applicable to OFF/ON type -cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 10 } -coolingDeviceUpperNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0011 This attribute defines the upper noncritical threshold -of the cooling device. The value is an integer representing fan speed -in revolutions per minute (RPM). It is not applicable to OFF/ON type -cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 11 } -coolingDeviceLowerNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0012 This attribute defines the lower noncritical threshold -of the cooling device. The value is an integer representing fan speed -in revolutions per minute (RPM). It is not applicable to OFF/ON type -cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 12 } -coolingDeviceLowerCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0013 This attribute defines the lower critical threshold -of the cooling device. The value is an integer representing fan speed -in revolutions per minute (RPM). It is not applicable to OFF/ON type -cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 13 } -coolingDeviceLowerNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0014 This attribute defines the lower nonrecoverable threshold -of the cooling device. The value is an integer representing fan speed -in revolutions per minute (RPM). It is not applicable to OFF/ON type -cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 14 } -coolingDevicecoolingUnitIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0015 This attribute defines the index to the associated -cooling unit." - ::= { coolingDeviceTableEntry 15 } -coolingDeviceSubType OBJECT-TYPE - SYNTAX DellCoolingDeviceSubType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0016 This attribute defines the subtype of the cooling device." - ::= { coolingDeviceTableEntry 16 } -coolingDeviceProbeCapabilities OBJECT-TYPE - SYNTAX DellProbeCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0017 This attribute defines the probe capabilities of the -cooling device." - ::= { coolingDeviceTableEntry 17 } -coolingDeviceDiscreteReading OBJECT-TYPE - SYNTAX DellCoolingDeviceDiscreteReading - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0012.0001.0018 This attribute defines the reading for a cooling device -of type coolingDeviceSubTypeIsDiscrete. When the value for -coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, a value -is not returned for this attribute. When the value for coolingDeviceSubType -is coolingDeviceSubTypeIsDiscrete, the value returned for this attribute -is the discrete reading for the cooling device." - ::= { coolingDeviceTableEntry 18 } - - -------------------------------------------------------------------------------- --- Temperature Probe Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.700.20.1... -------------------------------------------------------------------------------- - -DellTemperatureProbeType ::= INTEGER { - temperatureProbeTypeIsOther(1), -- type is other than following values - temperatureProbeTypeIsUnknown(2), -- type is unknown - temperatureProbeTypeIsAmbientESM(3), -- type is Ambient Embedded Systems Management temperature probe - temperatureProbeTypeIsDiscrete(16) -- type is temperature probe with discrete reading -} -DellTemperatureDiscreteReading ::= INTEGER { - temperatureIsGood(1), -- temperature reading is Good - temperatureIsBad(2) -- temperature reading is Bad -} - -TemperatureProbeTableEntry ::= SEQUENCE { - temperatureProbechassisIndex DellObjectRange, - temperatureProbeIndex DellObjectRange, - temperatureProbeStateCapabilities DellStateCapabilities, - temperatureProbeStateSettings DellStateSettings, - temperatureProbeStatus DellStatusProbe, - temperatureProbeReading DellSigned32BitRange, - temperatureProbeType DellTemperatureProbeType, - temperatureProbeLocationName DellString, - temperatureProbeUpperNonRecoverableThreshold DellSigned32BitRange, - temperatureProbeUpperCriticalThreshold DellSigned32BitRange, - temperatureProbeUpperNonCriticalThreshold DellSigned32BitRange, - temperatureProbeLowerNonCriticalThreshold DellSigned32BitRange, - temperatureProbeLowerCriticalThreshold DellSigned32BitRange, - temperatureProbeLowerNonRecoverableThreshold DellSigned32BitRange, - temperatureProbeProbeCapabilities DellProbeCapabilities, - temperatureProbeDiscreteReading DellTemperatureDiscreteReading -} - -temperatureProbeTable OBJECT-TYPE - SYNTAX SEQUENCE OF TemperatureProbeTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0700.0020 This object defines the Temperature Probe Table." - ::= { thermalGroup 20 } -temperatureProbeTableEntry OBJECT-TYPE - SYNTAX TemperatureProbeTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0700.0020.0001 This object defines the Temperature Probe Table Entry." - INDEX { temperatureProbechassisIndex, - temperatureProbeIndex } - ::= { temperatureProbeTable 1 } - -temperatureProbechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { temperatureProbeTableEntry 1 } -temperatureProbeIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0002 This attribute defines the index (one based) of the -temperature probe." - ::= { temperatureProbeTableEntry 2 } -temperatureProbeStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0003 This attribute defines the state capabilities of the -temperature probe." - ::= { temperatureProbeTableEntry 3 } -temperatureProbeStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0004 This attribute defines the state settings of the -temperature probe." - ::= { temperatureProbeTableEntry 4 } -temperatureProbeStatus OBJECT-TYPE - SYNTAX DellStatusProbe - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0005 This attribute defines the probe status of the -temperature probe." - ::= { temperatureProbeTableEntry 5 } -temperatureProbeReading OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0006 This attribute defines the reading for a temperature -probe of type other than temperatureProbeTypeIsDiscrete. When the value -for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, -the value returned for this attribute is the temperature that the probe -is reading in tenths of degrees Centigrade. When the value for -temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not -returned for this attribute." - ::= { temperatureProbeTableEntry 6 } -temperatureProbeType OBJECT-TYPE - SYNTAX DellTemperatureProbeType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0007 This attribute defines the type of the temperature probe." - ::= { temperatureProbeTableEntry 7 } -temperatureProbeLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0008 This attribute defines the location name of the -temperature probe." - ::= { temperatureProbeTableEntry 8 } -temperatureProbeUpperNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0009 This attribute defines the upper nonrecoverable threshold -of the temperature probe. The value is an integer representing the temperature -of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 9 } -temperatureProbeUpperCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0010 This attribute defines the upper critical threshold -of the temperature probe. The value is an integer representing the temperature -of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 10 } -temperatureProbeUpperNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0011 This attribute defines the upper noncritical threshold -of the temperature probe. The value is an integer representing the temperature -of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 11 } -temperatureProbeLowerNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0012 This attribute defines the lower noncritical threshold -of the temperature probe. The value is an integer representing the temperature -of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 12 } -temperatureProbeLowerCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0013 This attribute defines the lower critical threshold -of the temperature probe. The value is an integer representing the temperature -of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 13 } -temperatureProbeLowerNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0014 This attribute defines the lower nonrecoverable threshold -of the temperature probe. The value is an integer representing the temperature -of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 14 } -temperatureProbeProbeCapabilities OBJECT-TYPE - SYNTAX DellProbeCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0015 This attribute defines the probe capabilities of the -temperature probe." - ::= { temperatureProbeTableEntry 15 } -temperatureProbeDiscreteReading OBJECT-TYPE - SYNTAX DellTemperatureDiscreteReading - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0700.0020.0001.0016 This attribute defines the reading for a temperature -probe of type temperatureProbeTypeIsDiscrete. When the value for -temperatureProbeType is other than temperatureProbeTypeIsDiscrete, a value -is not returned for this attribute. When the value for temperatureProbeType -is temperatureProbeTypeIsDiscrete, the value returned for this attribute -is the discrete reading for the probe." - ::= { temperatureProbeTableEntry 16 } - - -------------------------------------------------------------------------------- --- User Security Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.800 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- User Security Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.800.10.1... -------------------------------------------------------------------------------- - -UserSecurityTableEntry ::= SEQUENCE { - userSecuritychassisIndex DellObjectRange, - userSecurityIndex DellObjectRange, - userSecurityUserName DellSecurityString, - userSecurityControlName DellSecurityString, - userSecurityRequestName DellSecurityString -} - -userSecurityTable OBJECT-TYPE - SYNTAX SEQUENCE OF UserSecurityTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0800.0010 This object defines the User Security Table." - ::= { userSecurityGroup 10 } -userSecurityTableEntry OBJECT-TYPE - SYNTAX UserSecurityTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0800.0010.0001 This object defines the User Security Table Entry." - INDEX { userSecuritychassisIndex, - userSecurityIndex } - ::= { userSecurityTable 1 } - -userSecuritychassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0800.0010.0001.0001 This attribute defines the index (one based) of the -assoicated chassis." - ::= { userSecurityTableEntry 1 } -userSecurityIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0800.0010.0001.0002 This attribute defines the index (one based) of the -user." - ::= { userSecurityTableEntry 2 } -userSecurityUserName OBJECT-TYPE - SYNTAX DellSecurityString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0800.0010.0001.0003 This attribute defines the name of the user -that is authorized to perform Set operations on this system." - ::= { userSecurityTableEntry 3 } -userSecurityControlName OBJECT-TYPE - SYNTAX DellSecurityString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0800.0010.0001.0004 This attribute defines the control string -that is used for managing users in this table." - ::= { userSecurityTableEntry 4 } -userSecurityRequestName OBJECT-TYPE - SYNTAX DellSecurityString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0800.0010.0001.0005 This attribute defines the request string -that is used for Set requests on this system." - ::= { userSecurityTableEntry 5 } - - -------------------------------------------------------------------------------- --- Remote Flash BIOS Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.900 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Remote Flash BIOS Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.900.10.1... -------------------------------------------------------------------------------- - -DellRemoteFlashBIOSStateCapabilitiesUnique ::= INTEGER { - -- If 0 (zero), there are no remote flash BIOS state capabilities - unknown(1), -- state capabilities are unknown - enableCapable(2), -- remote flash BIOS can be enabled (online) or be disabled (offline) - notReadyCapable(4), -- remote flash BIOS can be not ready - cancelCapable(8), -- remote flash BIOS can be canceled - enableAndCancelCapable(10) -- remote flash BIOS can be enabled and canceled -} -DellRemoteFlashBIOSStateSettingsUnique ::= INTEGER { - -- If 0 (zero), there are no remote flash BIOS state settings - unknown(1), -- state settings are unknown - enabled(2), -- remote flash BIOS is enabled - notReady(4), -- remote flash BIOS is not ready - canceled(8), -- remote flash BIOS is canceled - pending(16), -- remote flash BIOS is pending - other(32) -- state settings are other than above -} -DellRemoteFlashBIOSCompletionCode ::= INTEGER { - completionCodeIsOther(1), -- code is other than following values - completionCodeIsUnknown(2), -- code is unknown - completionCodeIsOK(3), -- code is completed successfully - completionCodeIsBadImage(4), -- code is bad flash BIOS image - completionCodeIsNoFileAccess(5), -- code is flash BIOS image could not be accessed - completionCodeIsNotReady(6), -- code is flash BIOS memory not ready - completionCodeIsDisabled(7), -- code is flash BIOS is currently disabled - completionCodeIsNoBattery(8), -- code is battery must be installed - completionCodeIsNoChargedBattery(9), -- code is fully charged battery must be installed - completionCodeIsNoExternalPower(10), -- code is external power adapter must be connected - completionCodeIsNo12VoltSet(11), -- code is that 12 volts could not be set - completionCodeIsNo12VoltRemoval(12), -- code is that 12 volts could not be removed - completionCodeIsFlashMemoryFailed(13), -- code is flash memory failure occured - completionCodeIsGeneralFailure(14), -- code is general failure occurred - completionCodeIsDataMiscompare(15), -- code is data miscompare error occurred - completionCodeIsNoImageFound(16), -- code is flash BIOS image could not be found in memory - completionCodeIsNoUpdatePerformed(17) -- code is no update operation has been performed -} - -RemoteFlashBIOSTableEntry ::= SEQUENCE { - remoteFlashBIOSchassisIndex DellObjectRange, - remoteFlashBIOSIndex DellObjectRange, - remoteFlashBIOSStateCapabilitiesUnique DellRemoteFlashBIOSStateCapabilitiesUnique, - remoteFlashBIOSStateSettingsUnique DellRemoteFlashBIOSStateSettingsUnique, - remoteFlashBIOSStatus DellStatus, - remoteFlashBIOSLastBIOSDateName DellDateName, - remoteFlashBIOSCompletionCode DellRemoteFlashBIOSCompletionCode, - remoteFlashBIOSMinimumContiguousMemory DellUnsigned32BitRange -} - -remoteFlashBIOSTable OBJECT-TYPE - SYNTAX SEQUENCE OF RemoteFlashBIOSTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0900.0010 This object defines the Remote Flash BIOS Table." - ::= { remoteFlashBIOSGroup 10 } -remoteFlashBIOSTableEntry OBJECT-TYPE - SYNTAX RemoteFlashBIOSTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"0900.0010.0001 This object defines the Remote Flash BIOS Table Entry." - INDEX { remoteFlashBIOSchassisIndex, - remoteFlashBIOSIndex } - ::= { remoteFlashBIOSTable 1 } - -remoteFlashBIOSchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0900.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { remoteFlashBIOSTableEntry 1 } -remoteFlashBIOSIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0900.0010.0001.0002 This attribute defines the index (one based) of the -remote flash BIOS function." - ::= { remoteFlashBIOSTableEntry 2 } -remoteFlashBIOSStateCapabilitiesUnique OBJECT-TYPE - SYNTAX DellRemoteFlashBIOSStateCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0900.0010.0001.0003 This attribute defines the state capabilities of the -remote flash BIOS function." - ::= { remoteFlashBIOSTableEntry 3 } -remoteFlashBIOSStateSettingsUnique OBJECT-TYPE - SYNTAX DellRemoteFlashBIOSStateSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0900.0010.0001.0004 This attribute defines the state settings of the -remote flash BIOS function." - ::= { remoteFlashBIOSTableEntry 4 } -remoteFlashBIOSStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0900.0010.0001.0005 This attribute defines the status of the -remote flash BIOS function." - ::= { remoteFlashBIOSTableEntry 5 } -remoteFlashBIOSLastBIOSDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0900.0010.0001.0006 This attribute defines the date of last BIOS update. -Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes and ss are the seconds. -uuuuuu is the number of microseconds, and +fff or -fff is the offset from -UTC in minutes." - ::= { remoteFlashBIOSTableEntry 6 } -remoteFlashBIOSCompletionCode OBJECT-TYPE - SYNTAX DellRemoteFlashBIOSCompletionCode - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0900.0010.0001.0007 This attribute defines the completion code of the -last BIOS update." - ::= { remoteFlashBIOSTableEntry 7 } -remoteFlashBIOSMinimumContiguousMemory OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"0900.0010.0001.0008 This attribute defines the minimum size of contiguous -memory required for the remote flash BIOS function in KBbytes." - ::= { remoteFlashBIOSTableEntry 8 } - - -------------------------------------------------------------------------------- --- Port Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000 -------------------------------------------------------------------------------- - - -DellGenericPortConnectorType ::= INTEGER { - portConnectorTypeIsOther(1), -- type is other than following values - portConnectorTypeIsNone(2), -- type is no port connector - portConnectorTypeIsCentronics(3), -- type is Centronics, IEEE1284-B Receptical - portConnectorTypeIsMiniCentronics(4), -- type is MiniCentronics, IEEE1284-C Receptical - portConnectorTypeIsProprietary(5), -- type is Proprietary - portConnectorTypeIsDB25Male(6), -- type is Male DB-25, IEEE1284-A Plug - portConnectorTypeIsDB25Female(7), -- type is Female DB-25, IEEE1284-A Receptical - portConnectorTypeIsDB15Male(8), -- type is Male DB-15 - portConnectorTypeIsDB15Female(9), -- type is Female DB-15 - portConnectorTypeIsDB9Male(10), -- type is Male DB-9 - portConnectorTypeIsDB9Female(11), -- type is Female DB-9 - portConnectorTypeIsRJ11(12), -- type is RJ-11 - portConnectorTypeIsRJ45(13), -- type is RJ-45 - portConnectorTypeIsMiniSCSI50Pin(14), -- type is 50 pin MiniSCSI - portConnectorTypeIsMiniDIN(15), -- type is Mini DIN - portConnectorTypeIsMicroDIN(16), -- type is Micro DIN - portConnectorTypeIsPS2(17), -- type is PS/2 - portConnectorTypeIsInfrared(18), -- type is Infrared - portConnectorTypeIsHPHIL(19), -- type is HP-HIL - portConnectorTypeIsAccessBussUSB(20), -- type is Access Bus USB - portConnectorTypeISSASCSI(21), -- type is SSA SCSI - portConnectorTypeIsCirdin8Male(22), -- type is Male Circular DIN-8 - portConnectorTypeIsCirdin8Female(23), -- type is Female Circular DIN-8 - portConnectorTypeIsIDE(24), -- type is IDE - portConnectorTypeIsFloppy(25), -- type is Floppy - portConnectorTypeIsDIN9Pin(26), -- type is 9-pin Dual Inline - portConnectorTypeIsDIN25Pin(27), -- type is 25-pin Dual Inline - portConnectorTypeIsDIN50Pin(28), -- type is 50-pin Dual Inline - portConnectorTypeIsDIN68Pin(29), -- type is 68-pin Dual Inline - portConnectorTypeIsCDROMLineOut(30), -- type is CDROM Line Output - portConnectorTypeIsMiniCentronics14(31), -- type is MiniCentronics 14 - portConnectorTypeIsMiniCentronics26(32), -- type is MiniCentronics 26 - portConnectorTypeIsMiniJack(33), -- type is Minijack, headphones - portConnectorTypeIsBNC(34), -- type is BNC - portConnectorTypeIs1394(35), -- type is 1394, firewire - portConnectorTypeIsPC98(36), -- type is PC-98 - portConnectorTypeIsPC98Hireso(37), -- type is PC-98 Hireso - portConnectorTypeIsPCH98(38), -- type is PCH98 - portConnectorTypeIsPC98Note(39), -- type is PC-98 Note - portConnectorTypeIsPC98Full(40) -- type is PC-98 Full -} -DellPortSecurityState ::= INTEGER { - other(1), -- security state is other than following values - unknown(2), -- security state is unknown - none(3), -- security state is no security - externalIsDisabled(4), -- security state is external interface is disabled - externalIsEnabled(5), -- security state is external interface is enabled - bootByPass(6) -- security state is boot bypass -} - - -------------------------------------------------------------------------------- --- Pointing Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.10.1... -------------------------------------------------------------------------------- - -DellPointingPortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following values - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsSerial(3), -- type is Serial - connectorPortTypeIsPS2(4), -- type is PS/2 - connectorPortTypeIsInfrared(5), -- type is Infrared - connectorPortTypeIsHPHIL(6), -- type is HP-HIL - connectorPortTypeIsBusMouse(7), -- type is Bus Mouse - connectorPortTypeIsADB(8), -- type is ADB - connectorPortTypeIsDB9(9), -- type is DB-9 - connectorPortTypeIsMicroDIN(10), -- type is Micro DIN - connectorPortTypeIsAccessBusUSB(11), -- type is Access Bus USB - connectorPortTypeIsPC98(12) -- type is PC-98 -} - -PointingPortTableEntry ::= SEQUENCE { - pointingPortchassisIndex DellObjectRange, - pointingPortIndex DellObjectRange, - pointingPortStateCapabilities DellStateCapabilities, - pointingPortStateSettings DellStateSettings, - pointingPortStatus DellStatus, - pointingPortSecurityState DellPortSecurityState, - pointingPortConnectorType DellPointingPortConnectorType, - pointingPortName DellString, - pointingPortBIOSConnectorType DellGenericPortConnectorType -} - -pointingPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF PointingPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0010 This object defines the Pointing Port Table." - ::= { portGroup 10 } -pointingPortTableEntry OBJECT-TYPE - SYNTAX PointingPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0010.0001 This object defines the Pointing Port Table Entry." - INDEX { pointingPortchassisIndex, - pointingPortIndex } - ::= { pointingPortTable 1 } - -pointingPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { pointingPortTableEntry 1 } -pointingPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0002 This attribute defines the index (one based) of the -pointing port." - ::= { pointingPortTableEntry 2 } -pointingPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0003 This attribute defines the state capabilities of the -pointing port." - ::= { pointingPortTableEntry 3 } -pointingPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0004 This attribute defines the state settings of the -pointing port." - ::= { pointingPortTableEntry 4 } -pointingPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0005 This attribute defines the status of the -pointing port." - ::= { pointingPortTableEntry 5 } -pointingPortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0006 This attribute defines the security state of the -pointing port." - ::= { pointingPortTableEntry 6 } -pointingPortConnectorType OBJECT-TYPE - SYNTAX DellPointingPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0007 This attribute defines the connector type of the -pointing port." - ::= { pointingPortTableEntry 7 } -pointingPortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0008 This attribute defines name of the pointing port." - ::= { pointingPortTableEntry 8 } -pointingPortBIOSConnectorType OBJECT-TYPE - SYNTAX DellGenericPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0010.0001.0009 This attribute defines the BIOS connector type of the -pointing port." - ::= { pointingPortTableEntry 9 } - - -------------------------------------------------------------------------------- --- Keyboard Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.20.1... -------------------------------------------------------------------------------- - -DellKeyboardPortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following values - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsMiniDIN(3), -- type is Mini DIN - connectorPortTypeIsMicroDIN(4), -- type is Micro DIN - connectorPortTypeIsPS2(5), -- type is PS/2 - connectorPortTypeIsInfrared(6), -- type is Infrared - connectorPortTypeIsHPHIL(7), -- type is HP-HIL - connectorPortTypeIsDB9(8), -- type is DB-9 - connectorPortTypeIsAccessBusUSB(9), -- type is Access Bus USB - connectorPortTypeIsPC98(10) -- type is PC-98 -} - -KeyboardPortTableEntry ::= SEQUENCE { - keyboardPortchassisIndex DellObjectRange, - keyboardPortIndex DellObjectRange, - keyboardPortStateCapabilities DellStateCapabilities, - keyboardPortStateSettings DellStateSettings, - keyboardPortStatus DellStatus, - keyboardPortSecurityState DellPortSecurityState, - keyboardPortConnectorType DellKeyboardPortConnectorType, - keyboardPortName DellString, - keyboardPortBIOSConnectorType DellGenericPortConnectorType -} - -keyboardPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF KeyboardPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0020 This object defines the Keyboard Port Table." - ::= { portGroup 20 } -keyboardPortTableEntry OBJECT-TYPE - SYNTAX KeyboardPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0020.0001 This object defines the Keyboard Port Table Entry." - INDEX { keyboardPortchassisIndex, - keyboardPortIndex } - ::= { keyboardPortTable 1 } - -keyboardPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { keyboardPortTableEntry 1 } -keyboardPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0002 This attribute defines the index (one based) of the -keyboard port." - ::= { keyboardPortTableEntry 2 } -keyboardPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0003 This attribute defines the state capabilities of the -keyboard port." - ::= { keyboardPortTableEntry 3 } -keyboardPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0004 This attribute defines the state settings of the -keyboard port." - ::= { keyboardPortTableEntry 4 } -keyboardPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0005 This attribute defines the status of the -keyboard port." - ::= { keyboardPortTableEntry 5 } -keyboardPortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0006 This attribute defines the security state of the -keyboard port." - ::= { keyboardPortTableEntry 6 } -keyboardPortConnectorType OBJECT-TYPE - SYNTAX DellKeyboardPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0007 This attribute defines the connector type of the -keyboard port." - ::= { keyboardPortTableEntry 7 } -keyboardPortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0008 This attribute defines name of the keyboard port." - ::= { keyboardPortTableEntry 8 } -keyboardPortBIOSConnectorType OBJECT-TYPE - SYNTAX DellGenericPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0020.0001.0009 This attribute defines the BIOS connector type of the -keyboard port." - ::= { keyboardPortTableEntry 9 } - - -------------------------------------------------------------------------------- --- Processor Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.30.1... -------------------------------------------------------------------------------- - -DellProcessorPortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following values - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsDaughterdBoard(3), -- type is Daughter Board - connectorPortTypeIsZIFSocket(4), -- type is Zero Insertion Force Socket - connectorPortTypeIsAPiggyBackBoard(5), -- type is Replacement/Piggy Back Board - connectorPortTypeIsNone(6), -- type is None (soldered in place) - connectorPortTypeIsLIFSocket(7), -- type is Low Force Insertion Socket - connectorPortTypeIsSlot1(8), -- type is Slot 1 - connectorPortTypeIsSlot2(9), -- type is Slot 2 - connectorPortTypeIs370PinSocket(10) -- type is 370 Pin Socket -} - -ProcessorPortTableEntry ::= SEQUENCE { - processorPortchassisIndex DellObjectRange, - processorPortIndex DellObjectRange, - processorPortStateCapabilities DellStateCapabilities, - processorPortStateSettings DellStateSettings, - processorPortStatus DellStatus, - processorPortSecurityState DellPortSecurityState, - processorPortConnectorType DellProcessorPortConnectorType, - processorPortName DellString, - processorPortBIOSConnectorType DellGenericPortConnectorType -} - -processorPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF ProcessorPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0030 This object defines the Processor Port Table." - ::= { portGroup 30 } -processorPortTableEntry OBJECT-TYPE - SYNTAX ProcessorPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0030.0001 This object defines the Processor Port Table Entry." - INDEX { processorPortchassisIndex, - processorPortIndex } - ::= { processorPortTable 1 } - -processorPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { processorPortTableEntry 1 } -processorPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0002 This attribute defines the index (one based) of the -processor port." - ::= { processorPortTableEntry 2 } -processorPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0003 This attribute defines the state capabilities of the -processor port." - ::= { processorPortTableEntry 3 } -processorPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0004 This attribute defines the state settings of the -processor port." - ::= { processorPortTableEntry 4 } -processorPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0005 This attribute defines the status of the -processor port." - ::= { processorPortTableEntry 5 } -processorPortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0006 This attribute defines the security state of the -processor port." - ::= { processorPortTableEntry 6 } -processorPortConnectorType OBJECT-TYPE - SYNTAX DellProcessorPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0007 This attribute defines the connector type of the -processor port." - ::= { processorPortTableEntry 7 } -processorPortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0008 This attribute defines name of the processor port." - ::= { processorPortTableEntry 8 } -processorPortBIOSConnectorType OBJECT-TYPE - SYNTAX DellGenericPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0030.0001.0009 This attribute defines the BIOS connector type of the -processor port." - ::= { processorPortTableEntry 9 } - - -------------------------------------------------------------------------------- --- Memory Device Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.40.1... -------------------------------------------------------------------------------- - -DellMemoryDevicePortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following values - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsSIMM(3), -- type is SIMM - connectorPortTypeIsSIP(4), -- type is SIP - connectorPortTypeIsAChip(5), -- type is Chip - connectorPortTypeIsDIP(6), -- type is DIP - connectorPortTypeIsZIP(7), -- type is ZIP - connectorPortTypeIsAProprietaryCard(8), -- type is Proprietary Card - connectorPortTypeIsDIMM(9), -- type is DIMM - connectorPortTypeIsTSOP(10), -- type is TSOP - connectorPortTypeIsARowOfChips(11), -- type is Row of Chips - connectorPortTypeIsRIMM(12), -- type is RIMM - connectorPortTypeIsSODIMM(13), -- type is SODIMM - connectorPortTypeIsSRIMM(14) -- type is SRIMM -} - -MemoryDevicePortTableEntry ::= SEQUENCE { - memoryDevicePortchassisIndex DellObjectRange, - memoryDevicePortIndex DellObjectRange, - memoryDevicePortStateCapabilities DellStateCapabilities, - memoryDevicePortStateSettings DellStateSettings, - memoryDevicePortStatus DellStatus, - memoryDevicePortSecurityState DellPortSecurityState, - memoryDevicePortConnectorType DellMemoryDevicePortConnectorType, - memoryDevicePortName DellString, - memoryDevicePortBIOSConnectorType DellGenericPortConnectorType, - memoryDevicePortPhysicalMemoryArrayIndexReference DellUnsigned32BitRange, - memoryDevicePortPhysicalMemoryCardIndexReference DellUnsigned32BitRange -} - -memoryDevicePortTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemoryDevicePortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0040 This object defines the Memory Device Port Table." - ::= { portGroup 40 } -memoryDevicePortTableEntry OBJECT-TYPE - SYNTAX MemoryDevicePortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0040.0001 This object defines the Memory Device Port Table Entry." - INDEX { memoryDevicePortchassisIndex, - memoryDevicePortIndex } - ::= { memoryDevicePortTable 1 } - -memoryDevicePortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { memoryDevicePortTableEntry 1 } -memoryDevicePortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0002 This attribute defines the index (one based) of the -memory device port." - ::= { memoryDevicePortTableEntry 2 } -memoryDevicePortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0003 This attribute defines the state capabilities of the -memory device port." - ::= { memoryDevicePortTableEntry 3 } -memoryDevicePortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0004 This attribute defines the state settings of the -memory device port." - ::= { memoryDevicePortTableEntry 4 } -memoryDevicePortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0005 This attribute defines the status of the -memory device port." - ::= { memoryDevicePortTableEntry 5 } -memoryDevicePortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0006 This attribute defines the security state of the -memory device port." - ::= { memoryDevicePortTableEntry 6 } -memoryDevicePortConnectorType OBJECT-TYPE - SYNTAX DellMemoryDevicePortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0007 This attribute defines the connector type of the -memory device port." - ::= { memoryDevicePortTableEntry 7 } -memoryDevicePortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0008 This attribute defines name of the memory device port." - ::= { memoryDevicePortTableEntry 8 } -memoryDevicePortBIOSConnectorType OBJECT-TYPE - SYNTAX DellGenericPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0009 This attribute defines the BIOS connector type of the -memory device port." - ::= { memoryDevicePortTableEntry 9 } -memoryDevicePortPhysicalMemoryArrayIndexReference OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0010 This attribute defines the index (one based) of the -Physical Memory Array Table entry for the physical memory array with the -same chassis index that this memory device port is associated with." - ::= { memoryDevicePortTableEntry 10 } -memoryDevicePortPhysicalMemoryCardIndexReference OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0040.0001.0011 This attribute defines the index (one based) of the -Physical Memory Card Table entry for the physical memory card with the -same chassis index that this memory device port is associated with (if any)." - ::= { memoryDevicePortTableEntry 11 } - - -------------------------------------------------------------------------------- --- Monitor Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.50.1... -------------------------------------------------------------------------------- - -DellMonitorPortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following values - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsDB15PinMale(3), -- type is Male DB-15 - connectorPortTypeIsDB15PinFemale(4) -- type is Female DB-15 -} - -MonitorPortTableEntry ::= SEQUENCE { - monitorPortchassisIndex DellObjectRange, - monitorPortIndex DellObjectRange, - monitorPortStateCapabilities DellStateCapabilities, - monitorPortStateSettings DellStateSettings, - monitorPortStatus DellStatus, - monitorPortSecurityState DellPortSecurityState, - monitorPortConnectorType DellMonitorPortConnectorType, - monitorPortName DellString, - monitorPortBIOSConnectorType DellGenericPortConnectorType -} - -monitorPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF MonitorPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0050 This object defines the Monitor Port Table." - ::= { portGroup 50 } -monitorPortTableEntry OBJECT-TYPE - SYNTAX MonitorPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0050.0001 This object defines the Monitor Port Table Entry." - INDEX { monitorPortchassisIndex, - monitorPortIndex } - ::= { monitorPortTable 1 } - -monitorPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { monitorPortTableEntry 1 } -monitorPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0002 This attribute defines the index (one based) of the -monitor port." - ::= { monitorPortTableEntry 2 } -monitorPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0003 This attribute defines the state capabilities of the -monitor port." - ::= { monitorPortTableEntry 3 } -monitorPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0004 This attribute defines the state settings of the -monitor port." - ::= { monitorPortTableEntry 4 } -monitorPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0005 This attribute defines the status of the -monitor port." - ::= { monitorPortTableEntry 5 } -monitorPortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0006 This attribute defines the security state of the -monitor port." - ::= { monitorPortTableEntry 6 } -monitorPortConnectorType OBJECT-TYPE - SYNTAX DellMonitorPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0007 This attribute defines the connector type of the -monitor port." - ::= { monitorPortTableEntry 7 } -monitorPortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0008 This attribute defines name of the monitor port." - ::= { monitorPortTableEntry 8 } -monitorPortBIOSConnectorType OBJECT-TYPE - SYNTAX DellGenericPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0050.0001.0009 This attribute defines the BIOS connector type of the -monitor port." - ::= { monitorPortTableEntry 9 } - - -------------------------------------------------------------------------------- --- Small Computer Systems Interface (SCSI) Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.60.1... -------------------------------------------------------------------------------- - -DellSCSIPortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following valaues - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsDIN25pin(3), -- type is DIN 25-pin - connectorPortTypeIsDIN50pin(4), -- type is DIN 50-pin - connectorPortTypeIsDIN68pin(5) -- type is DIN 68-pin -} - -SCSIPortTableEntry ::= SEQUENCE { - sCSIPortchassisIndex DellObjectRange, - sCSIPortIndex DellObjectRange, - sCSIPortStateCapabilities DellStateCapabilities, - sCSIPortStateSettings DellStateSettings, - sCSIPortStatus DellStatus, - sCSIPortSecurityState DellPortSecurityState, - sCSIPortConnectorType DellSCSIPortConnectorType, - sCSIPortName DellString, - sCSIPortBIOSConnectorType DellGenericPortConnectorType -} - -sCSIPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF SCSIPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0060 This object defines the Small Computer Systems Interface (SCSI) -Port Table." - ::= { portGroup 60 } -sCSIPortTableEntry OBJECT-TYPE - SYNTAX SCSIPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0060.0001 This object defines the Small Computer Systems Interface (SCSI) -Port Table Entry." - INDEX { sCSIPortchassisIndex, - sCSIPortIndex } - ::= { sCSIPortTable 1 } - -sCSIPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { sCSIPortTableEntry 1 } -sCSIPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0002 This attribute defines the index (one based) of the -SCSI port." - ::= { sCSIPortTableEntry 2 } -sCSIPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0003 This attribute defines the state capabilities of the -SCSI port." - ::= { sCSIPortTableEntry 3 } -sCSIPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0004 This attribute defines the state settings of the -SCSI port." - ::= { sCSIPortTableEntry 4 } -sCSIPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0005 This attribute defines the status of the -SCSI port." - ::= { sCSIPortTableEntry 5 } -sCSIPortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0006 This attribute defines the security state of the -SCSI port." - ::= { sCSIPortTableEntry 6 } -sCSIPortConnectorType OBJECT-TYPE - SYNTAX DellSCSIPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0007 This attribute defines the connector type of the -SCSI port." - ::= { sCSIPortTableEntry 7 } -sCSIPortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0008 This attribute defines name of the SCSI port." - ::= { sCSIPortTableEntry 8 } -sCSIPortBIOSConnectorType OBJECT-TYPE - SYNTAX DellGenericPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0060.0001.0009 This attribute defines the BIOS connector type of the -SCSI port." - ::= { sCSIPortTableEntry 9 } - - -------------------------------------------------------------------------------- --- Parallel Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.70.1... -------------------------------------------------------------------------------- - -DellParallelPortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following values - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsDB25PinFemale(3), -- type is Female DB-25, IEEE1284-A Receptical - connectorPortTypeIsDB25PinMale(4), -- type is Male DB-25, IEEE1284-A Plug - connectorPortTypeIsCentronics(5), -- type is Centronics, IEEE1284-B Receptical - connectorPortTypeIsMiniCentronics(6), -- type is MiniCentronics, IEEE1284-C Receptical - connectorPortTypeIsProprietary(7), -- type is Proprietary - connectorPortTypeIsCentronics14(8), -- type is Centronics 14 - connectorPortTypeIsDB36PinFemale(9), -- type is Female DB-36 - connectorPortTypeIsMiniCentronics20(10) -- type is MiniCentronics 20 -} -DellParallelPortConnectorPinout ::= INTEGER { - connectorPortPinoutIsOther(1), -- pinout is other than following values - connectorPortPinoutIsUnknown(2), -- pinout is unknown - connectorPortPinoutIsXTorAT(3), -- pinout is XT or AT pinout compatible - connectorPortPinoutIsPS2(4), -- pinout is PS/2 pinout compatible - connectorPortPinoutIsIEEE1284(5), -- pinout is IEEE 1284 pinout compatible - connectorPortPinoutIsProprietary(6), -- pinout is Proprietary - connectorPortPinoutIsPC98(7), -- pinout is PC-98 pinout compatible - connectorPortPinoutIsPC98Hireso(8), -- pinout is PC-98 Hireso pinout compatible - connectorPortPinoutIsPC98Note(9), -- pinout is PC-98 Note pinout compatible - connectorPortPinoutIsPC98Full(10) -- pinout is PC-98 Full pinout compatible -} -DellParallelPortCapabilitiesUnique ::= INTEGER { - -- If 0 (zero), there are no parallel port capabilities - unknown(1), -- capabilities are unknown - atCapable(2), -- port is AT mode capable - ps2Capable(4), -- port is PS/2 mode capable - ecpCapable(8), -- port is ECP mode capable - eppCapable(16), -- port is EPP mode capable - atOrPS2OrECPOrEPPCapable(30), -- port is AT, PS/2, ECP and EPP mode capable - pc98Capable(32), -- port is PC98 mode capable - pc98HiresoCapable(64), -- port is PC98 Hireso mode capable - pc98HCapable(128) -- port is PC98H mode capable -} - -ParallelPortTableEntry ::= SEQUENCE { - parallelPortchassisIndex DellObjectRange, - parallelPortIndex DellObjectRange, - parallelPortStateCapabilities DellStateCapabilities, - parallelPortStateSettings DellStateSettings, - parallelPortStatus DellStatus, - parallelPortSecurityState DellPortSecurityState, - parallelPortConnectorType DellParallelPortConnectorType, - parallelPortName DellString, - parallelPortConnectorPinOut DellParallelPortConnectorPinout, - parallelPortCapabilitiesUnique DellParallelPortCapabilitiesUnique, - parallelPortBaseIOAddress DellUnsigned64BitRange, - parallelPortIRQLevel DellUnsigned8BitRange, - parallelPortDMASupport DellBoolean -} - -parallelPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF ParallelPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0070 This object defines the Parallel Port Table." - ::= { portGroup 70 } -parallelPortTableEntry OBJECT-TYPE - SYNTAX ParallelPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0070.0001 This object defines the Parallel Port Table Entry." - INDEX { parallelPortchassisIndex, - parallelPortIndex } - ::= { parallelPortTable 1 } - -parallelPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { parallelPortTableEntry 1 } -parallelPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0002 This attribute defines the index (one based) of the -parallel port." - ::= { parallelPortTableEntry 2 } -parallelPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0003 This attribute defines the state capabilities of the -parallel port." - ::= { parallelPortTableEntry 3 } -parallelPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0004 This attribute defines the state settings of the -parallel port." - ::= { parallelPortTableEntry 4 } -parallelPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0005 This attribute defines the status of the -parallel port." - ::= { parallelPortTableEntry 5 } -parallelPortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0006 This attribute defines the security state of the -parallel port." - ::= { parallelPortTableEntry 6 } -parallelPortConnectorType OBJECT-TYPE - SYNTAX DellParallelPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0007 This attribute defines the connector type of the -parallel port." - ::= { parallelPortTableEntry 7 } -parallelPortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0008 This attribute defines the name of the -parallel port." - ::= { parallelPortTableEntry 8 } -parallelPortConnectorPinOut OBJECT-TYPE - SYNTAX DellParallelPortConnectorPinout - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0009 This attribute defines the pinout of the -parallel port." - ::= { parallelPortTableEntry 9 } -parallelPortCapabilitiesUnique OBJECT-TYPE - SYNTAX DellParallelPortCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0010 This attribute defines the mode capabilities of the -parallel port." - ::= { parallelPortTableEntry 10 } -parallelPortBaseIOAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0011 This attribute defines the base Input/Output address of -the parallel port." - ::= { parallelPortTableEntry 11 } -parallelPortIRQLevel OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0012 This attribute defines the Interrupt Request Level of -the parallel port." - ::= { parallelPortTableEntry 12 } -parallelPortDMASupport OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0070.0001.0013 This attribute defines if DMA is supported by the -parallel port." - ::= { parallelPortTableEntry 13 } - - -------------------------------------------------------------------------------- --- Serial Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.80.1... -------------------------------------------------------------------------------- - -DellSerialPortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following values - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsDB9PinMale(3), -- type is Male DB-9 - connectorPortTypeIsDB9PinFemale(4), -- type is Female DB-9 - connectorPortTypeIsDB25PinMale(5), -- type is Male DB-25 - connectorPortTypeIsDB25PinFemale(6), -- type is Female DB-25 - connectorPortTypeIsRJ11(7), -- type is RJ-11 - connectorPortTypeIsRJ45(8), -- type is RJ-45 - connectorPortTypeIsProprietary(9), -- type is Proprietary - connectorPortTypeIsCirdin8Male(10), -- type is Male Circular DIN-8 - connectorPortTypeIsCirdin8Female(11), -- type is Female Circular DIN-8 - connectorPortTypeIsMiniCentronics14(12), -- type is MiniCentronics 14 - connectorPortTypeIsMiniCentronics26(13) -- type is MiniCentronics 26 -} -DellSerialPortCapabilitiesUnique ::= INTEGER { - other(1), -- capabilities are other than following values - unknown(2), -- capabilities are unknown - xtorATCapable(4), -- port is XT or AT mode capable - c16450Capable(8), -- port is 16450 capable - c16550Capable(16), -- port is 16550 capable - c16550aCapable(32), -- port is 16550A capable - c8251Capable(64), -- port is 8251 capable - c8251FIFOCapable(128) -- port is 8251 FIFO capable -} - -SerialPortTableEntry ::= SEQUENCE { - serialPortchassisIndex DellObjectRange, - serialPortIndex DellObjectRange, - serialPortStateCapabilities DellStateCapabilities, - serialPortStateSettings DellStateSettings, - serialPortStatus DellStatus, - serialPortSecurityState DellPortSecurityState, - serialPortConnectorType DellSerialPortConnectorType, - serialPortName DellString, - serialPortMaximumSpeed DellUnsigned32BitRange, - serialPortCapabilitiesUnique DellSerialPortCapabilitiesUnique, - serialPortBaseIOAddress DellUnsigned64BitRange, - serialPortIRQLevel DellUnsigned8BitRange -} - -serialPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF SerialPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0080 This object defines the Serial Port Table." - ::= { portGroup 80 } -serialPortTableEntry OBJECT-TYPE - SYNTAX SerialPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0080.0001 This object defines the Serial Port Table Entry." - INDEX { serialPortchassisIndex, - serialPortIndex } - ::= { serialPortTable 1 } - -serialPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { serialPortTableEntry 1 } -serialPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0002 This attribute defines the index (one based) of the -serial port." - ::= { serialPortTableEntry 2 } -serialPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0003 This attribute defines the state capabilities of the -serial port." - ::= { serialPortTableEntry 3 } -serialPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0004 This attribute defines the state settings of the -serial port." - ::= { serialPortTableEntry 4 } -serialPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0005 This attribute defines the status of the -serial port." - ::= { serialPortTableEntry 5 } -serialPortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0006 This attribute defines the security state of the -serial port." - ::= { serialPortTableEntry 6 } -serialPortConnectorType OBJECT-TYPE - SYNTAX DellSerialPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0007 This attribute defines the connector type of the -serial port." - ::= { serialPortTableEntry 7 } -serialPortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0008 This attribute defines the name of the -serial port." - ::= { serialPortTableEntry 8 } -serialPortMaximumSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0009 This attribute defines the maximum speed the serial -port can support in bits per second. 0 (zero) indicates maximum speed -is unknown." - ::= { serialPortTableEntry 9 } -serialPortCapabilitiesUnique OBJECT-TYPE - SYNTAX DellSerialPortCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0010 This attribute defines the mode capabilities of the -serial port." - ::= { serialPortTableEntry 10 } -serialPortBaseIOAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0011 This attribute defines the base Input/Output address of -the serial port." - ::= { serialPortTableEntry 11 } -serialPortIRQLevel OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0080.0001.0012 This attribute defines the Interrupt Request Level of -the serial port." - ::= { serialPortTableEntry 12 } - - -------------------------------------------------------------------------------- --- Universal Serial Bus (USB) Port Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1000.90.1... -------------------------------------------------------------------------------- - -DellUSBPortConnectorType ::= INTEGER { - connectorPortTypeIsOther(1), -- type is other than following values - connectorPortTypeIsUnknown(2), -- type is unknown - connectorPortTypeIsUSB(3) -- type is Universal Serial Bus -} - -USBPortTableEntry ::= SEQUENCE { - uSBPortchassisIndex DellObjectRange, - uSBPortIndex DellObjectRange, - uSBPortStateCapabilities DellStateCapabilities, - uSBPortStateSettings DellStateSettings, - uSBPortStatus DellStatus, - uSBPortSecurityState DellPortSecurityState, - uSBPortConnectorType DellUSBPortConnectorType, - uSBPortName DellString, - uSBPortBIOSConnectorType DellGenericPortConnectorType -} - -uSBPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF USBPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0090 This object defines the Universal Serial Bus (USB) Port Table." - ::= { portGroup 90 } -uSBPortTableEntry OBJECT-TYPE - SYNTAX USBPortTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1000.0090.0001 This object defines the USB Port Table Entry." - INDEX { uSBPortchassisIndex, - uSBPortIndex } - ::= { uSBPortTable 1 } - -uSBPortchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { uSBPortTableEntry 1 } -uSBPortIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0002 This attribute defines the index (one based) of the -USB port." - ::= { uSBPortTableEntry 2 } -uSBPortStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0003 This attribute defines the state capabilities of the -USB port." - ::= { uSBPortTableEntry 3 } -uSBPortStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0004 This attribute defines the state settings of the -USB port." - ::= { uSBPortTableEntry 4 } -uSBPortStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0005 This attribute defines the status of the USB port." - ::= { uSBPortTableEntry 5 } -uSBPortSecurityState OBJECT-TYPE - SYNTAX DellPortSecurityState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0006 This attribute defines the security state of the -USB port." - ::= { uSBPortTableEntry 6 } -uSBPortConnectorType OBJECT-TYPE - SYNTAX DellUSBPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0007 This attribute defines the connector type of the -USB port." - ::= { uSBPortTableEntry 7 } -uSBPortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0008 This attribute defines name of the USB port." - ::= { uSBPortTableEntry 8 } -uSBPortBIOSConnectorType OBJECT-TYPE - SYNTAX DellGenericPortConnectorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1000.0090.0001.0009 This attribute defines the BIOS connector type of the -USB port." - ::= { uSBPortTableEntry 9 } - - -------------------------------------------------------------------------------- --- Device Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Pointing Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.10.1... -------------------------------------------------------------------------------- - -DellPointingDeviceType ::= INTEGER { - deviceTypeIsOther(1), -- type is other than following values - deviceTypeIsUnknown(2), -- type is Unknown - deviceTypeIsAMouse(3), -- type is Mouse - deviceTypeIsATrackBall(4), -- type is Track Ball - deviceTypeIsATrackPoint(5), -- type is Track Point - deviceTypeIsAGlidePoint(6), -- type is Glide Point - deviceTypeIsATouchPad(7) -- type is Touch Pad -} - -PointingDeviceTableEntry ::= SEQUENCE { - pointingDevicechassisIndex DellObjectRange, - pointingDeviceIndex DellObjectRange, - pointingDeviceStateCapabilities DellStateCapabilities, - pointingDeviceStateSettings DellStateSettings, - pointingDeviceStatus DellStatus, - pointingPortIndexReference DellObjectRange, - pointingDeviceType DellPointingDeviceType, - pointingDeviceNumberofButtons DellUnsigned8BitRange -} - -pointingDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF PointingDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0010 This object defines the Pointing Device Table." - ::= { deviceGroup 10 } -pointingDeviceTableEntry OBJECT-TYPE - SYNTAX PointingDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0010.0001 This object defines the Pointing Device Table Entry." - INDEX { pointingDevicechassisIndex, - pointingDeviceIndex } - ::= { pointingDeviceTable 1 } - -pointingDevicechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { pointingDeviceTableEntry 1 } -pointingDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0010.0001.0002 This attribute defines the index (one based) of the -pointing device." - ::= { pointingDeviceTableEntry 2 } -pointingDeviceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0010.0001.0003 This attribute defines the state capabilities of the -pointing device." - ::= { pointingDeviceTableEntry 3 } -pointingDeviceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0010.0001.0004 This attribute defines the state settings of the -pointing device." - ::= { pointingDeviceTableEntry 4 } -pointingDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0010.0001.0005 This attribute defines the status of the pointing device." - ::= { pointingDeviceTableEntry 5 } -pointingPortIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0010.0001.0006 This attribute defines the index (one based) of the -associated pointing port in the same chassis." - ::= { pointingDeviceTableEntry 6 } -pointingDeviceType OBJECT-TYPE - SYNTAX DellPointingDeviceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0010.0001.0007 This attribute defines the type of the pointing device." - ::= { pointingDeviceTableEntry 7 } -pointingDeviceNumberofButtons OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0010.0001.0008 This attribute defines the number of buttons on the -pointing device." - ::= { pointingDeviceTableEntry 8 } - - -------------------------------------------------------------------------------- --- Keyboard Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.20.1... -------------------------------------------------------------------------------- - -KeyboardDeviceTableEntry ::= SEQUENCE { - keyboardDevicechassisIndex DellObjectRange, - keyboardDeviceIndex DellObjectRange, - keyboardDeviceStateCapabilities DellStateCapabilities, - keyboardDeviceStateSettings DellStateSettings, - keyboardDeviceStatus DellStatus, - keyboardPortIndexReference DellObjectRange, - keyboardDeviceTypeName DellString, - keyboardDeviceLayoutName DellString -} - -keyboardDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF KeyboardDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0020 This object defines the Keyboard Device Table." - ::= { deviceGroup 20 } -keyboardDeviceTableEntry OBJECT-TYPE - SYNTAX KeyboardDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0020.0001 This object defines the Keyboard Device Table Entry." - INDEX { keyboardDevicechassisIndex, - keyboardDeviceIndex } - ::= { keyboardDeviceTable 1 } - -keyboardDevicechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { keyboardDeviceTableEntry 1 } -keyboardDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0020.0001.0002 This attribute defines the index (one based) of the -keyboard device." - ::= { keyboardDeviceTableEntry 2 } -keyboardDeviceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0020.0001.0003 This attribute defines the state capabilities of the -keyboard device." - ::= { keyboardDeviceTableEntry 3 } -keyboardDeviceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0020.0001.0004 This attribute defines the state settings of the -keyboard device." - ::= { keyboardDeviceTableEntry 4 } -keyboardDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0020.0001.0005 This attribute defines the status of the keyboard device." - ::= { keyboardDeviceTableEntry 5 } -keyboardPortIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0020.0001.0006 This attribute defines the index (one based) of the -associated keyboard device in the same chassis." - ::= { keyboardDeviceTableEntry 6 } -keyboardDeviceTypeName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0020.0001.0007 This attribute defines the name of the keyboard device -type." - ::= { keyboardDeviceTableEntry 7 } -keyboardDeviceLayoutName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0020.0001.0008 This attribute defines the name of the keyboard device -layout." - ::= { keyboardDeviceTableEntry 8 } - - -------------------------------------------------------------------------------- --- Processor Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.30.1... -------------------------------------------------------------------------------- - -DellProcessorDeviceType ::= INTEGER { - deviceTypeIsOther(1), -- type is other than following values - deviceTypeIsUnknown(2), -- type is unknown - deviceTypeIsCPU(3), -- type is Central Processing Unit - deviceTypeIsMathProcessor(4), -- type is Math Processor - deviceTypeIsDSP(5), -- type is Digital Signal Processor - deviceTypeIsAVideoProcessor(6) -- type is Video Processor -} -DellProcessorDeviceFamily ::= INTEGER { - deviceFamilyIsOther(1), -- family is Other - deviceFamilyIsUnknown(2), -- family is Unknown - deviceFamilyIs8086(3), -- family is 8086 - deviceFamilyIs80286(4), -- family is 80286 - deviceFamilyIsIntel386(5), -- family is Intel386 processor - deviceFamilyIsIntel486(6), -- family is Intel486 processor - deviceFamilyIs8087(7), -- family is 8087 - deviceFamilyIs80287(8), -- family is 80287 - deviceFamilyIs80387(9), -- family is 80387 - deviceFamilyIs80487(10), -- family is 80487 - deviceFamilyIsPentium(11), -- family is Pentium processor Family - deviceFamilyIsPentiumPro(12), -- family is Pentium Pro processor - deviceFamilyIsPentiumII(13), -- family is Pentium II processor - deviceFamilyIsPentiumMMX(14), -- family is Pentium processor with MMX technology - deviceFamilyIsCeleron(15), -- family is Celeron processor - deviceFamilyIsPentiumIIXeon(16), -- family is Pentium II Xeon processor - deviceFamilyIsPentiumIII(17), -- family is Pentium III processor - deviceFamilyIsPentiumIIIXeon(18), -- family is Pentium III Xeon processor - deviceFamilyIsPentiumIIISpeedStep(19), -- family is Pentium III Processor with Intel SpeedStep Technology - deviceFamilyIsItanium(20), -- family is Itanium processor - deviceFamilyIsIntelXeon(21), -- family is Intel Xeon - deviceFamilyIsPentium4(22), -- family is Pentium 4 Processor - deviceFamilyIsIntelXeonMP(23), -- family is Intel Xeon processor MP - deviceFamilyIsIntelItanium2(24), -- family is Intel Itanium 2 processor - deviceFamilyIsK5(25), -- family is K5 Family - deviceFamilyIsK6(26), -- family is K6 Family - deviceFamilyIsK6-2(27), -- family is K6-2 - deviceFamilyIsK6-3(28), -- family is K6-3 - deviceFamilyIsAMDAthlon(29), -- family is AMD Athlon Processor Family - deviceFamilyIsAMD2900(30), -- family is AMD2900 Family - deviceFamilyIsK6-2Plus(31), -- family is K6-2+ - deviceFamilyIsPowerPC(32), -- family is Power PC Family - deviceFamilyIsPowerPC601(33), -- family is Power PC 601 - deviceFamilyIsPowerPC603(34), -- family is Power PC 603 - deviceFamilyIsPowerPC603Plus(35), -- family is Power PC 603+ - deviceFamilyIsPowerPC604(36), -- family is Power PC 604 - deviceFamilyIsPowerPC620(37), -- family is Power PC 620 - deviceFamilyIsPowerPCx704(38), -- family is Power PC x704 - deviceFamilyIsPowerPC750(39), -- family is Power PC 750 - deviceFamilyIsIntelCoreDuo(40), -- family is Intel(R) Core(TM) Duo processor - deviceFamilyIsIntelCoreDuoMobile(41), -- family is Intel(R) Core(TM) Duo mobile processor - deviceFamilyIsIntelCoreSoloMobile(42), -- family is Intel(R) Core(TM) Solo mobile processor - deviceFamilyIsIntelAtom(43), -- family is Intel(R) Atom(TM) processor - deviceFamilyIsAlpha(48), -- family is Alpha Family - deviceFamilyIsAlpha21064(49), -- family is Alpha 21064 - deviceFamilyIsAlpha21066(50), -- family is Alpha 21066 - deviceFamilyIsAlpha21164(51), -- family is Alpha 21164 - deviceFamilyIsAlpha21164PC(52), -- family is Alpha 21164PC - deviceFamilyIsAlpha21164a(53), -- family is Alpha 21164a - deviceFamilyIsAlpha21264(54), -- family is Alpha 21264 - deviceFamilyIsAlpha21364(55), -- family is Alpha 21364 - deviceFamilyIsAMDTurionIIUltraDualMobileM(56), -- family is AMD Turion(TM) II Ultra Dual-Core Mobile M Processor Family - deviceFamilyIsAMDTurionIIDualMobileM(57), -- family is AMD Turion(TM) II Dual-Core Mobile M Processor Family - deviceFamilyIsAMDAthlonIIDualMobileM(58), -- family is AMD Athlon(TM) II Dual-Core Mobile M Processor Family - deviceFamilyIsAMDOpteron6100(59), -- family is AMD Opteron(TM) 6100 Series Processor - deviceFamilyIsAMDOpteron4100(60), -- family is AMD Opteron(TM) 4100 Series Processor - deviceFamilyIsAMDOpteron6200(61), -- family is AMD Opteron(TM) 6200 Series Processor - deviceFamilyIsAMDOpteron4200(62), -- family is AMD Opteron(TM) 4200 Series Processor - deviceFamilyIsMIPS(64), -- family is MIPS Family - deviceFamilyIsMIPSR4000(65), -- family is MIPS R4000 - deviceFamilyIsMIPSR4200(66), -- family is MIPS R4200 - deviceFamilyIsMIPSR4400(67), -- family is MIPS R4400 - deviceFamilyIsMIPSR4600(68), -- family is MIPS R4600 - deviceFamilyIsMIPSR10000(69), -- family is MIPS R10000 - deviceFamilyIsSPARC(80), -- family is SPARC Family - deviceFamilyIsSuperSPARC(81), -- family is SuperSPARC - deviceFamilyIsmicroSPARCII(82), -- family is microSPARC II - deviceFamilyIsmicroSPARCIIep(83), -- family is microSPARC IIep - deviceFamilyIsUltraSPARC(84), -- family is UltraSPARC - deviceFamilyIsUltraSPARCII(85), -- family is UltraSPARC II - deviceFamilyIsUltraSPARCIIi(86), -- family is UltraSPARC IIi - deviceFamilyIsUltraSPARCIII(87), -- family is UltraSPARC III - deviceFamilyIsUltraSPARCIIIi(88), -- family is UltraSPARC IIIi - deviceFamilyIs68040(96), -- family is 68040 Family - deviceFamilyIs68xxx(97), -- family is 68xxx - deviceFamilyIs68000(98), -- family is 68000 - deviceFamilyIs68010(99), -- family is 68010 - deviceFamilyIs68020(100), -- family is 68020 - deviceFamilyIs68030(101), -- family is 68030 - deviceFamilyIsHobbit(112), -- family is Hobbit Family - deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family - deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family - deviceFamilyIsEfficeonTM8000(122), -- family is Efficeon TM8000 Family - deviceFamilyIsWeitek(128), -- family is Weitek - deviceFamilyIsIntelCeleronM(130), -- family is Intel(R) Celeron(R) M processor - deviceFamilyIsAMDAthlon64(131), -- family is AMD Athlon 64 Processor Family - deviceFamilyIsAMDOpteron(132), -- family is AMD Opteron Processor Family - deviceFamilyIsAMDSempron(133), -- family is AMD Sempron Processor Family - deviceFamilyIsAMDTurion64Mobile(134), -- family is AMD Turion 64 Mobile Technology - deviceFamilyIsDualCoreAMDOpteron(135), -- family is Dual-Core AMD Opteron(TM) Processor Family - deviceFamilyIsAMDAthlon64X2DualCore(136), -- family is AMD Athlon 64 X2 Dual-Core Processor Family - deviceFamilyIsAMDTurion64X2Mobile(137), -- family is AMD Turion(TM) 64 X2 Mobile Technology - deviceFamilyIsQuadCoreAMDOpteron(138), -- family is Quad-Core AMD Opteron(TM) Processor Family - deviceFamilyIsThirdGenerationAMDOpteron(139), -- family is Third-Generation AMD Opteron(TM) Processor Family - deviceFamilyIsAMDPhenomFXQuadCore(140), -- family is AMD Phenom(TM) FX Quad-Core Processor Family - deviceFamilyIsAMDPhenomX4QuadCore(141), -- family is AMD Phenom(TM) X4 Quad-Core Processor Family - deviceFamilyIsAMDPhenomX2DualCore(142), -- family is AMD Phenom(TM) X2 Dual-Core Processor Family - deviceFamilyIsAMDAthlonX2DualCore(143), -- family is AMD Athlon(TM) X2 Dual-Core Processor Family - deviceFamilyIsPA-RISC(144), -- family is PA-RISC Family - deviceFamilyIsPA-RISC8500(145), -- family is PA-RISC 8500 - deviceFamilyIsPA-RISC8000(146), -- family is PA-RISC 8000 - deviceFamilyIsPA-RISC7300LC(147), -- family is PA-RISC 7300LC - deviceFamilyIsPA-RISC7200(148), -- family is PA-RISC 7200 - deviceFamilyIsPA-RISC7100LC(149), -- family is PA-RISC 7100LC - deviceFamilyIsPA-RISC7100(150), -- family is PA-RISC 7100 - deviceFamilyIsV30(160), -- family is V30 Family - deviceFamilyIsQuadCoreIntelXeon3200(161), -- family is Quad-Core Intel(R) Xeon(R) processor 3200 Series - deviceFamilyIsDualCoreIntelXeon3000(162), -- family is Dual-Core Intel(R) Xeon(R) processor 3000 Series - deviceFamilyIsQuadCoreIntelXeon5300(163), -- family is Quad-Core Intel(R) Xeon(R) processor 5300 Series - deviceFamilyIsDualCoreIntelXeon5100(164), -- family is Dual-Core Intel(R) Xeon(R) processor 5100 Series - deviceFamilyIsDualCoreIntelXeon5000(165), -- family is Dual-Core Intel(R) Xeon(R) processor 5000 Series - deviceFamilyIsDualCoreIntelXeonLV(166), -- family is Dual-Core Intel(R) Xeon(R) processor LV - deviceFamilyIsDualCoreIntelXeonULV(167), -- family is Dual-Core Intel(R) Xeon(R) processor ULV - deviceFamilyIsDualCoreIntelXeon7100(168), -- family is Dual-Core Intel(R) Xeon(R) processor 7100 Series - deviceFamilyIsQuadCoreIntelXeon5400(169), -- family is Quad-Core Intel(R) Xeon(R) processor 5400 Series - deviceFamilyIsQuadCoreIntelXeon(170), -- family is Quad-Core Intel(R) Xeon(R) processor - deviceFamilyIsDualCoreIntelXeon5200(171), -- family is Dual-Core Intel(R) Xeon(R) processor 5200 Series - deviceFamilyIsDualCoreIntelXeon7200(172), -- family is Dual-Core Intel(R) Xeon(R) processor 7200 Series - deviceFamilyIsQuadCoreIntelXeon7300(173), -- family is Quad-Core Intel(R) Xeon(R) processor 7300 Series - deviceFamilyIsQuadCoreIntelXeon7400(174), -- family is Quad-Core Intel(R) Xeon(R) processor 7400 Series - deviceFamilyIsMultiCoreIntelXeon7400(175), -- family is Multi-Core Intel(R) Xeon(R) processor 7400 Series - deviceFamilyIsM1(176), -- family is M1 Family - deviceFamilyIsM2(177), -- family is M2 Family - deviceFamilyIsIntelPentium4HT(179), -- family is Intel(R) Pentium(R) 4 HT processor - deviceFamilyIsAS400(180), -- family is AS400 Family - deviceFamilyIsAMDAthlonXP(182), -- family is AMD Athlon XP Processor Family - deviceFamilyIsAMDAthlonMP(183), -- family is AMD Athlon MP Processor Family - deviceFamilyIsAMDDuron(184), -- family is AMD Duron Processor Family - deviceFamilyIsIntelPentiumM(185), -- family is Intel Pentium M processor - deviceFamilyIsIntelCeleronD(186), -- family is Intel Celeron D processor - deviceFamilyIsIntelPentiumD(187), -- family is Intel Pentium D processor - deviceFamilyIsIntelPentiumExtreme(188), -- family is Intel Pentium Processor Extreme Edition - deviceFamilyIsIntelCoreSolo(189), -- family is Intel(R) Core(TM) Solo processor - deviceFamilyIsIntelCore2(190), -- family is Intel(R) Core(TM)2 processor - deviceFamilyIsIntelCore2Duo(191), -- family is Intel(R) Core(TM)2 Duo processor - deviceFamilyIsIntelCore2Solo(192), -- family is Intel(R) Core(TM)2 Solo processor - deviceFamilyIsIntelCore2Extreme(193), -- family is Intel(R) Core(TM)2 Extreme processor - deviceFamilyIsIntelCore2Quad(194), -- family is Intel(R) Core(TM)2 Quad processor - deviceFamilyIsIntelCore2ExtremeMobile(195), -- family is Intel(R) Core(TM)2 Extreme mobile processor - deviceFamilyIsIntelCore2DuoMobile(196), -- family is Intel(R) Core(TM)2 Duo mobile processor - deviceFamilyIsIntelCore2SoloMobile(197), -- family is Intel(R) Core(TM)2 Solo mobile processor - deviceFamilyIsIntelCorei7(198), -- family is Intel(R) Core(TM) i7 processor - deviceFamilyIsDualCoreIntelCeleron(199), -- family is Dual-Core Intel(R) Celeron(R) Processor - deviceFamilyIsIBM390(200), -- family is IBM390 Family - deviceFamilyIsG4(201), -- family is G4 - deviceFamilyIsG5(202), -- family is G5 - deviceFamilyIsESA390G6(203), -- family is ESA/390 G6 - deviceFamilyIszArchitectur(204), -- family is z/Architectur base - deviceFamilyIsIntelCorei5(205), -- family is Intel(R) Core(TM) i5 processor - deviceFamilyIsIntelCorei3(206), -- family is Intel(R) Core(TM) i3 processor - deviceFamilyIsVIAC7-M(210), -- family is VIA C7(TM)-M Processor Family - deviceFamilyIsVIAC7-D(211), -- family is VIA C7(TM)-D Processor Family - deviceFamilyIsVIAC7(212), -- family is VIA C7(TM) Processor Family - deviceFamilyIsVIAEden(213), -- family is VIA Eden(TM) Processor Family - deviceFamilyIsMultiCoreIntelXeon(214), -- family is Multi-Core Intel(R) Xeon(R) processor - deviceFamilyIsDualCoreIntelXeon3xxx(215), -- family is Dual-Core Intel(R) Xeon(R) processor 3xxx Series - deviceFamilyIsQuadCoreIntelXeon3xxx(216), -- family is Quad-Core Intel(R) Xeon(R) processor 3xxx Series - deviceFamilyIsVIANano(217), -- family is VIA Nano(TM) Processor Family - deviceFamilyIsDualCoreIntelXeon5xxx(218), -- family is Dual-Core Intel(R) Xeon(R) processor 5xxx Series - deviceFamilyIsQuadCoreIntelXeon5xxx(219), -- family is Quad-Core Intel(R) Xeon(R) processor 5xxx Series - deviceFamilyIsDualCoreIntelXeon7xxx(221), -- family is Dual-Core Intel(R) Xeon(R) processor 7xxx Series - deviceFamilyIsQuadCoreIntelXeon7xxx(222), -- family is Quad-Core Intel(R) Xeon(R) processor 7xxx Series - deviceFamilyIsMultiCoreIntelXeon7xxx(223), -- family is Multi-Core Intel(R) Xeon(R) processor 7xxx Series - deviceFamilyIsMultiCoreIntelXeon3400(224), -- family is Multi-Core Intel(R) Xeon(R) processor 3400 Series - deviceFamilyIsEmbeddedAMDOpertonQuadCore(230), -- family is Embedded AMD Opteron(TM) Quad-Core Processor Family - deviceFamilyIsAMDPhenomTripleCore(231), -- family is AMD Phenom(TM) Triple-Core Processor Family - deviceFamilyIsAMDTurionUltraDualCoreMobile(232), -- family is AMD Turion(TM) Ultra Dual-Core Mobile Processor Family - deviceFamilyIsAMDTurionDualCoreMobile(233), -- family is AMD Turion(TM) Dual-Core Mobile Processor Family - deviceFamilyIsAMDAthlonDualCore(234), -- family is AMD Athlon(TM) Dual-Core Processor Family - deviceFamilyIsAMDSempronSI(235), -- family is AMD Sempron(TM) SI Processor Family - deviceFamilyIsAMDPhenomII(236), -- family is AMD Phenom(TM) II Processor Family - deviceFamilyIsAMDAthlonII(237), -- family is AMD Athlon(TM) II Processor Family - deviceFamilyIsSixCoreAMDOpteron(238), -- family is Six-Core AMD Opteron(TM) Processor Family - deviceFamilyIsAMDSempronM(239), -- family is AMD Sempron(TM) M Processor Family - deviceFamilyIsi860(250), -- family is i860 - deviceFamilyIsi960(251) -- family is i960 -} -DellProcessorDeviceStatusState ::= INTEGER { - other(1), -- state is other than following values - unknown(2), -- state is unknown - enabled(3), -- state is enabled - userDisabled(4), -- state is disabled by user via BIOS setup - biosDisabled(5), -- state is disabled by BIOS (POST error) - idle(6) -- state is idle -} -DellProcessorUpgradeInformation ::= INTEGER { - processorUpgradeIsOther(1), -- upgrade is other than following values - processorUpgradeIsUnknown(2), -- upgrade is unknown - processorUpgradeIsByDaughterBoard(3), -- upgrade is by Daughter Board - processorUpgradeIsByZIFSocket(4), -- upgrade is by ZIF socket - processorUpgradeIsByReplacement(5), -- upgrade is by Replacement/Piggy Back - processorUpgradeIsNone(6), -- upgrade is None - processorUpgradeIsByLIFSocket(7), -- upgrade is by LIF Socket - processorUpgradeIsBySlot1(8), -- upgrade is by Slot 1 - processorUpgradeIsBySlot2(9), -- upgrade is by Slot 2 - processorUpgradeIsBy370PinSocket(10), -- upgrade is by 370 Pin Socket - processorUpgradeIsBySlotA(11), -- upgrade is by Slot A - processorUpgradeIsBySlotM(12), -- upgrade is by Slot M - processorUpgradeIsByScoket423(13), -- upgrade is by Socket 423 - processorUpgradeIsBySocketA(14), -- upgrade is by Socket A (Socket 462) - processorUpgradeIsBySocket478(15), -- upgrade is by Socket 478 - processorUpgradeIsBySocket754(16), -- upgrade is by Socket 754 - processorUpgradeIsBySocket940(17), -- upgrade is by Socket 940 - processorUpgradeIsBySocket939(18), -- upgrade is by Socket 939 - processorUpgradeIsBySocketmPGA604(19), -- upgrade is by Socket mPGA604 - processorUpgradeIsBySocketLGA771(20), -- upgrade is by Socket LGA771 - processorUpgradeIsBySocketLGA775(21), -- upgrade is by Socket LGA775 - processorUpgradeIsBySocketS1(22), -- upgrade is by Socket S1 - processorUpgradeIsBySocketAM2(23), -- upgrade is by Socket AM2 - processorUpgradeIsBySocketF(24), -- upgrade is by Socket F (1207) - processorUpgradeIsBySocketLGA1366(25) -- upgrade is by Socket LGA1366 -} - -ProcessorDeviceTableEntry ::= SEQUENCE { - processorDevicechassisIndex DellObjectRange, - processorDeviceIndex DellObjectRange, - processorDeviceStateCapabilities DellStateCapabilities, - processorDeviceStateSettings DellStateSettings, - processorDeviceStatus DellStatus, - processorPortIndexReference DellObjectRange, - processorDeviceType DellProcessorDeviceType, - processorDeviceManufacturerName DellString, - processorDeviceStatusState DellProcessorDeviceStatusState, - processorDeviceFamily DellProcessorDeviceFamily, - processorDeviceMaximumSpeed DellUnsigned32BitRange, - processorDeviceCurrentSpeed DellUnsigned32BitRange, - processorDeviceExternalClockSpeed DellUnsigned32BitRange, - processorDeviceVoltage DellSigned32BitRange, - processorDeviceUpgradeInformation DellProcessorUpgradeInformation, - processorDeviceVersionName DellString, - processorDeviceCoreCount DellUnsigned32BitRange, - processorDeviceCoreEnabledCount DellUnsigned32BitRange, - processorDeviceThreadCount DellUnsigned32BitRange, - processorDeviceCharacteristics DellUnsigned16BitRange, - processorDeviceExtendedCapabilities DellUnsigned16BitRange, - processorDeviceExtendedSettings DellUnsigned16BitRange, - processorDeviceBrandName DellString, - processorDeviceModelName DellString, - processorDeviceSteppingName DellString -} - -processorDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF ProcessorDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0030 This object defines the Processor Device Table." - ::= { deviceGroup 30 } -processorDeviceTableEntry OBJECT-TYPE - SYNTAX ProcessorDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0030.0001 This object defines the Processor Device Table Entry." - INDEX { processorDevicechassisIndex, - processorDeviceIndex } - ::= { processorDeviceTable 1 } - -processorDevicechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { processorDeviceTableEntry 1 } -processorDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0002 This attribute defines the index (one based) of the -processor device." - ::= { processorDeviceTableEntry 2 } -processorDeviceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0003 This attribute defines the state capabilities of the -processor device." - ::= { processorDeviceTableEntry 3 } -processorDeviceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0004 This attribute defines the state settings of the -processor device." - ::= { processorDeviceTableEntry 4 } -processorDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0005 This attribute defines the status of the -processor device." - ::= { processorDeviceTableEntry 5 } -processorPortIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0006 This attribute defines the index (one based) of the -associated processor port in the same chassis." - ::= { processorDeviceTableEntry 6 } -processorDeviceType OBJECT-TYPE - SYNTAX DellProcessorDeviceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0007 This attribute defines the type of the processor device." - ::= { processorDeviceTableEntry 7 } -processorDeviceManufacturerName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0008 This attribute defines the name of the manufacturer -of the processor device." - ::= { processorDeviceTableEntry 8 } -processorDeviceStatusState OBJECT-TYPE - SYNTAX DellProcessorDeviceStatusState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0009 This attribute defines the status state of the -processor device." - ::= { processorDeviceTableEntry 9 } -processorDeviceFamily OBJECT-TYPE - SYNTAX DellProcessorDeviceFamily - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0010 This attribute defines the family of the -processor device." - ::= { processorDeviceTableEntry 10 } -processorDeviceMaximumSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0011 This attribute defines the maximum speed of the -processor device in MHz. Zero indicates the maximum speed is unknown." - ::= { processorDeviceTableEntry 11 } -processorDeviceCurrentSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0012 This attribute defines the current speed of the -processor device in MHz. Zero indicates the current speed is unknown." - ::= { processorDeviceTableEntry 12 } -processorDeviceExternalClockSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0013 This attribute defines the speed of the -external clock for the processor device in MHz. Zero indicates -the external clock speed is unknown." - ::= { processorDeviceTableEntry 13 } -processorDeviceVoltage OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0014 This attribute defines the voltage powering the -processor device in millivolts. Zero indicates the voltage is unknown." - ::= { processorDeviceTableEntry 14 } -processorDeviceUpgradeInformation OBJECT-TYPE - SYNTAX DellProcessorUpgradeInformation - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0015 This attribute defines the processor upgrade -information for the processor device." - ::= { processorDeviceTableEntry 15 } -processorDeviceVersionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0016 This attribute defines the version of the -processor device. On some systems, this value contains the -brand and stepping information; on other systems, this value -contains the model and stepping information." - ::= { processorDeviceTableEntry 16 } -processorDeviceCoreCount OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0017 This attribute defines the number of processor cores -detected for the processor device." - ::= { processorDeviceTableEntry 17 } -processorDeviceCoreEnabledCount OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0018 This attribute defines the number of processor cores -enabled for the processor device." - ::= { processorDeviceTableEntry 18 } -processorDeviceThreadCount OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0019 This attribute defines the number of processor threads -detected for the processor device." - ::= { processorDeviceTableEntry 19 } -processorDeviceCharacteristics OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0020 This attribute defines characteristics of the -processor device. This attribute is a bit field where a bit has the meaning -defined below when set to 1 (one). - -NOTE: Bits 2-15 need to be examined in the context of bit 1. -If bit 1 is set, the processor charactistics are unknown and bits 2-15 cannot -be used to determine if the functions associated with the bits are supported. - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 Reserved - Bit 1 Unknown - Bit 2 64-bit capable - Bit 3-15 Reserved" - ::= { processorDeviceTableEntry 20 } -processorDeviceExtendedCapabilities OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0021 This attribute defines extended capabilities of the -processor device. This attribute is a bit field where a bit has the meaning -defined below when set to 1 (one). - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 Virtualization Technology (VT) supported - Bit 1 Demand-Based Switching (DBS) supported - Bit 2 eXecute Disable (XD) supported - Bit 3 Hyper-Threading (HT) supported" - ::= { processorDeviceTableEntry 21 } -processorDeviceExtendedSettings OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0022 This attribute defines extended settings of the -processor device. This attribute is a bit field where a bit has the meaning -defined below when set to 1 (one). - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 Virtualization Technology (VT) enabled - Bit 1 Demand Based Switching (DBS) enabled - Bit 2 eXecute Disable (XD) enabled - Bit 3 Hyper-Threading (HT) enabled" - ::= { processorDeviceTableEntry 22 } -processorDeviceBrandName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0023 This attribute defines the brand of the -processor device." - ::= { processorDeviceTableEntry 23 } -processorDeviceModelName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0024 This attribute defines the model of the -processor device." - ::= { processorDeviceTableEntry 24 } -processorDeviceSteppingName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0030.0001.0025 This attribute defines the stepping of the -processor device." - ::= { processorDeviceTableEntry 25 } - - -------------------------------------------------------------------------------- --- Processor Device Status Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.32.1... -------------------------------------------------------------------------------- - -DellProcessorDeviceStatusReading ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - internalError(1), -- Internal Error - thermalTrip(2), -- Thermal Trip - configurationError(32), -- Configuration Error - processorPresent(128), -- Processor Present - processorDisabled(256), -- Processor Disabled - terminatorPresent(512), -- Terminator Present - processorThrottled(1024) -- Processor Throttled -} - -ProcessorDeviceStatusTableEntry ::= SEQUENCE { - processorDeviceStatusChassisIndex DellObjectRange, - processorDeviceStatusIndex DellObjectRange, - processorDeviceStatusStateCapabilities DellStateCapabilities, - processorDeviceStatusStateSettings DellStateSettings, - processorDeviceStatusStatus DellStatus, - processorDeviceStatusReading DellProcessorDeviceStatusReading, - processorDeviceStatusLocationName DellString, - processorDeviceStatusPortIndexReference DellObjectRange -} - -processorDeviceStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF ProcessorDeviceStatusTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0032 This object defines the Processor Device Status Table." - ::= { deviceGroup 32 } -processorDeviceStatusTableEntry OBJECT-TYPE - SYNTAX ProcessorDeviceStatusTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0032.0001 This object defines the Processor Device Status Table Entry." - INDEX { processorDeviceStatusChassisIndex, - processorDeviceStatusIndex } - ::= { processorDeviceStatusTable 1 } - -processorDeviceStatusChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0032.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { processorDeviceStatusTableEntry 1 } -processorDeviceStatusIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0032.0001.0002 This attribute defines the index (one based) of the -processor device status probe." - ::= { processorDeviceStatusTableEntry 2 } -processorDeviceStatusStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0032.0001.0003 This attribute defines the state capabilities of the -processor device status probe." - ::= { processorDeviceStatusTableEntry 3 } -processorDeviceStatusStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0032.0001.0004 This attribute defines the state settings of the -processor device status probe." - ::= { processorDeviceStatusTableEntry 4 } -processorDeviceStatusStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0032.0001.0005 This attribute defines the status of the -processor device status probe. This status will be joined into -the processorDeviceStatus attribute." - ::= { processorDeviceStatusTableEntry 5 } -processorDeviceStatusReading OBJECT-TYPE - SYNTAX DellProcessorDeviceStatusReading - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0032.0001.0006 This attribute defines the reading of the -processor device status probe." - ::= { processorDeviceStatusTableEntry 6 } -processorDeviceStatusLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0032.0001.0007 This attribute defines the location name of the -processor device status probe." - ::= { processorDeviceStatusTableEntry 7 } -processorDeviceStatusPortIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0032.0001.0008 This attribute defines the index (one based) of the -associated processor port in the same chassis." - ::= { processorDeviceStatusTableEntry 8 } - - -------------------------------------------------------------------------------- --- Cache Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.40.1... -------------------------------------------------------------------------------- - -DellCacheDeviceType ::= INTEGER { - deviceTypeIsOther(1), -- type is other than following values - deviceTypeIsUnknown(2), -- type is unknown - deviceTypeIsInstruction(3), -- type is instruction - deviceTypeIsData(4), -- type is data - deviceTypeIsUnified(5) -- type is unified -} -DellCacheDeviceLevel ::= INTEGER { - deviceLevelIsOther(1), -- level is other than following values - deviceLevelIsUnknown(2), -- level is unknown - deviceLevelIsPrimary(3), -- level is primary - deviceLevelIsSecondary(4), -- level is secondary - deviceLevelIsTertiary(5) -- level is tertiary -} -DellCacheDeviceWritePolicy ::= INTEGER { - deviceWritePolicyIsOther(1), -- policy is other than following values - deviceWritePolicyIsUnknown(2), -- policy is unknown - deviceWritePolicyIsWriteBack(3), -- policy is write back - deviceWritePolicyIsWriteThrough(4), -- policy is write through - deviceWritePolicyIsVariesByAddress(5), -- policy is varies by address - deviceWritePolicyIsDeterminedByIO(6) -- policy is determined by I/O query -} -DellCacheDeviceStatusState ::= INTEGER { - other(1), -- state is other than following values - unknown(2), -- state is unknown - enabled(3), -- state is enabled - userDisabled(4), -- state is disabled by user - biosDisabled(5) -- state is BIOS disabled -} -DellCacheDeviceECCType ::= INTEGER { - deviceECCTypeIsOther(1), -- ECC type is other than following values - deviceECCTypeIsUnknown(2), -- ECC type is unknown - deviceECCTypeIsNone(3), -- ECC type is none - deviceECCTypeIsParity(4), -- ECC type is parity - deviceECCTypeIsSingleBitECC(5), -- ECC type is single bit ECC - deviceECCTypeIsMultiBitECC(6), -- ECC type is multibit ECC - deviceECCTypeIsCRC(7) -- ECC type is CRC -} -DellCacheDeviceAssociativity ::= INTEGER { - deviceAssociativityIsOther(1), -- associativity is Other - deviceAssociativityIsUnknown(2), -- associativity is Unknown - deviceAssociativityIsDirectMapped(3), -- associativity is Direct Mapped - deviceAssociativityIsTwoWaySetAssociative(4), -- associativity is 2-way Set-Associative - deviceAssociativityIsFourWaySetAssociative(5), -- associativity is 4-way Set-Associative - deviceAssociativityIsFullyAssociative(6), -- associativity is Fully Associative - deviceAssociativityIsEightWaySetAssociative(7), -- associativity is 8-way Set-Associative - deviceAssociativityIsSixteenWaySetAssociative(8), -- associativity is 16-way Set-Associative - deviceAssociativityIs12WaySetAssociative(9), -- associativity is 12-way Set-Associative - deviceAssociativityIs24WaySetAssociative(10), -- associativity is 24-way Set-Associative - deviceAssociativityIs32WaySetAssociative(11), -- associativity is 32-way Set-Associative - deviceAssociativityIs48WaySetAssociative(12), -- associativity is 48-way Set-Associative - deviceAssociativityIs64WaySetAssociative(13) -- associativity is 64-way Set-Associative -} -DellCacheDeviceLocation ::= INTEGER { - deviceLocationIsOther(1), -- location is other than following values - deviceLocationIsUnknown(2), -- location is unknown - deviceLocationIsInternal(3), -- location is internal - deviceLocationIsExternal(4) -- location is external -} -DellCacheDeviceSRAMType ::= INTEGER { - deviceSRAMTypeIsOther(1), -- SRAM type is other than following values - deviceSRAMTypeIsUnknown(2), -- SRAM type is unknown - deviceSRAMTypeIsNonBurst(3), -- SRAM type is nonburst - deviceSRAMTypeIsBurst(4), -- SRAM type is burst - deviceSRAMTypeIsPipeBurst(5), -- SRAM type is pipeburst - deviceSRAMTypeIsSynchronous(6), -- SRAM type is synchronous - deviceSRAMTypeIsAsynchronous(7) -- SRAM type is asynchronous -} - -CacheDeviceTableEntry ::= SEQUENCE { - cacheDevicechassisIndex DellObjectRange, - cacheDeviceIndex DellObjectRange, - cacheDeviceStateCapabilities DellStateCapabilities, - cacheDeviceStateSettings DellStateSettings, - cacheDeviceStatus DellStatus, - cacheDeviceprocessorDeviceIndexReference DellObjectRange, - cacheDeviceType DellCacheDeviceType, - cacheDeviceLocation DellCacheDeviceLocation, - cacheDeviceStatusState DellCacheDeviceStatusState, - cacheDeviceExternalSocketName DellString, - cacheDeviceLevel DellCacheDeviceLevel, - cacheDeviceMaximumSize DellUnsigned32BitRange, - cacheDeviceCurrentSize DellUnsigned32BitRange, - cacheDeviceSpeed DellUnsigned32BitRange, - cacheDeviceWritePolicy DellCacheDeviceWritePolicy, - cacheDeviceIsSocketed DellBoolean, - cacheDeviceECCType DellCacheDeviceECCType, - cacheDeviceAssociativity DellCacheDeviceAssociativity, - cacheDeviceSupportedType DellCacheDeviceSRAMType, - cacheDeviceCurrentType DellCacheDeviceSRAMType -} - -cacheDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF CacheDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0040 This object defines the Cache Device Table." - ::= { deviceGroup 40 } -cacheDeviceTableEntry OBJECT-TYPE - SYNTAX CacheDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0040.0001 This object defines the Cache Device Table Entry." - INDEX { cacheDevicechassisIndex, - cacheDeviceIndex } - ::= { cacheDeviceTable 1 } - -cacheDevicechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cacheDeviceTableEntry 1 } -cacheDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0002 This attribute defines the index (one based) of the -cache device." - ::= { cacheDeviceTableEntry 2 } -cacheDeviceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0003 This attribute defines the state capabilities of the -cache device." - ::= { cacheDeviceTableEntry 3 } -cacheDeviceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0004 This attribute defines the state settings of the -cache device." - ::= { cacheDeviceTableEntry 4 } -cacheDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0005 This attribute defines the status of the cache device." - ::= { cacheDeviceTableEntry 5 } -cacheDeviceprocessorDeviceIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0006 This attribute defines the index (one based) of the -processor device associated with the cache device." - ::= { cacheDeviceTableEntry 6 } -cacheDeviceType OBJECT-TYPE - SYNTAX DellCacheDeviceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0007 This attribute defines the type of cache device." - ::= { cacheDeviceTableEntry 7 } -cacheDeviceLocation OBJECT-TYPE - SYNTAX DellCacheDeviceLocation - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0008 This attribute defines the location of the cache device." - ::= { cacheDeviceTableEntry 8 } -cacheDeviceStatusState OBJECT-TYPE - SYNTAX DellCacheDeviceStatusState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0009 This attribute defines the status state of the -cache device." - ::= { cacheDeviceTableEntry 9 } -cacheDeviceExternalSocketName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0010 This attribute defines the name of the external socket -name of the cache device if the cache device is socketed." - ::= { cacheDeviceTableEntry 10 } -cacheDeviceLevel OBJECT-TYPE - SYNTAX DellCacheDeviceLevel - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0011 This attribute defines the level of the cache device." - ::= { cacheDeviceTableEntry 11 } -cacheDeviceMaximumSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0012 This attribute defines the maximum size of the -cache device in KBytes. Zero indicates the maximum size is unknown." - ::= { cacheDeviceTableEntry 12 } -cacheDeviceCurrentSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0013 This attribute defines the current size of the -cache device in KBytes. Zero indicates the current size is unknown." - ::= { cacheDeviceTableEntry 13 } -cacheDeviceSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0014 This attribute defines the speed of the -cache device in nanoseconds. Zero indicates the speed is unknown." - ::= { cacheDeviceTableEntry 14 } -cacheDeviceWritePolicy OBJECT-TYPE - SYNTAX DellCacheDeviceWritePolicy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0015 This attribute defines the write policy of the -cache device." - ::= { cacheDeviceTableEntry 15 } -cacheDeviceIsSocketed OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0016 This attribute defines if the cache device is -socketed or not." - ::= { cacheDeviceTableEntry 16 } -cacheDeviceECCType OBJECT-TYPE - SYNTAX DellCacheDeviceECCType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0017 This attribute defines the type of error correction -in use by the cache device." - ::= { cacheDeviceTableEntry 17 } -cacheDeviceAssociativity OBJECT-TYPE - SYNTAX DellCacheDeviceAssociativity - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0018 This attribute defines the type of associativity -in use by the cache device." - ::= { cacheDeviceTableEntry 18 } -cacheDeviceSupportedType OBJECT-TYPE - SYNTAX DellCacheDeviceSRAMType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0019 This attribute defines the supported SRAM type of the -cache device." - ::= { cacheDeviceTableEntry 19 } -cacheDeviceCurrentType OBJECT-TYPE - SYNTAX DellCacheDeviceSRAMType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0040.0001.0020 This attribute defines the current SRAM type of the -cache device." - ::= { cacheDeviceTableEntry 20 } - - -------------------------------------------------------------------------------- --- Memory Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.50.1... -------------------------------------------------------------------------------- - -DellMemoryDeviceFormFactor ::= INTEGER { - deviceFormFactorIsOther(1), -- form factor is other than following values - deviceFormFactorIsUnknown(2), -- form factor is unknown - deviceFormFactorIsSIMM(3), -- form factor is SIMM - deviceFormFactorIsSIP(4), -- form factor is SIP - deviceFormFactorIsAChip(5), -- form factor is Chip - deviceFormFactorIsDIP(6), -- form factor is DIP - deviceFormFactorIsZIP(7), -- form factor is ZIP - deviceFormFactorIsAProprietaryCard(8), -- form factor is Proprietary Card - deviceFormFactorIsDIMM(9), -- form factor is DIMM - deviceFormFactorIsTSOP(10), -- form factor is TSOP - deviceFormFactorIsARowOfChips(11), -- form factor is Row of Chips - deviceFormFactorIsRIMM(12), -- form factor is RIMM - deviceFormFactorIsSODIMM(13), -- form factor is SODIMM - deviceFormFactorIsSRIMM(14), -- form factor is SRIMM - deviceFormFactorIsFBDIMM(15) -- form factor is FB-DIMM -} -DellMemoryDeviceType ::= INTEGER { - deviceTypeIsOther(1), -- type is other than following values - deviceTypeIsUnknown(2), -- type is unknown - deviceTypeIsDRAM(3), -- type is DRAM - deviceTypeIsEDRAM(4), -- type is EDRAM - deviceTypeIsVRAM(5), -- type is VRAM - deviceTypeIsSRAM(6), -- type is SRAM - deviceTypeIsRAM(7), -- type is RAM - deviceTypeIsROM(8), -- type is ROM - deviceTypeIsFLASH(9), -- type is FLASH - deviceTypeIsEEPROM(10), -- type is EEPROM - deviceTypeIsFEPROM(11), -- type is FEPROM - deviceTypeIsEPROM(12), -- type is EPROM - deviceTypeIsCDRAM(13), -- type is CDRAM - deviceTypeIs3DRAM(14), -- type is 3DRAM - deviceTypeIsSDRAM(15), -- type is SDRAM - deviceTypeIsSGRAM(16), -- type is SGRAM - deviceTypeIsRDRAM(17), -- type is RDRAM - deviceTypeIsDDR(18), -- type is DDR - deviceTypeIsDDR2(19), -- type is DDR2 - deviceTypeIsDDR2FBDIMM(20), -- type is DDR2 FB-DIMM - deviceTypeIsDDR3(24), -- type is DDR3 - deviceTypeIsFBD2(25) -- type is FBD2 -} - -DellMemoryDeviceRank ::= INTEGER { - deviceRankIsUnknown(1), -- Rank is unknown - deviceRankIsSingle(2), -- Rank is Single - deviceRankIsDual(4), -- Rank is Dual - deviceRankIsQuad(8), -- Rank is Quad - deviceRankIsOctal(16), -- Rank is Octal - deviceRankIsHexa(32) -- Rank is Hexa -} - -DellMemoryDeviceTypeDetails ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - deviceTypeDetailIsOther(2), -- type detail is Other - deviceTypeDetailIsUnknown(4), -- type detail is Unknown - deviceTypeDetailIsFastPaged(8), -- type detail is Fast Paged - deviceTypeDetailIsStaticColumn(16), -- type detail is Static Column - deviceTypeDetailIsPseudoStatic(32), -- type detail is Pseudo-static - deviceTypeDetailIsRAMBUS(64), -- type detail is RAMBUS - deviceTypeDetailIsSynchronous(128), -- type detail is Synchronous - deviceTypeDetailIsCMOS(256), -- type detail is CMOS - deviceTypeDetailIsEDO(512), -- type detail is EDO - deviceTypeDetailIsWindowDRAM(1024), -- type detail is Window DRAM - deviceTypeDetailIsCacheDRAM(2048), -- type detail is Cache DRAM - deviceTypeDetailIsNonVolatile(4096), -- type detail is Non-volatile - deviceTypeDetailIsRegistered(8192), -- type detail is Registered - deviceTypeDetailIsNonRegistered(16384) -- type detail is Non-registered -} -DellMemoryDeviceFailureModes ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- If value is 0 (zero), memory device has no faults. - eccSingleBitCorrectionWarningRate(1), -- ECC single bit correction warning rate exceeded - eccSingleBitCorrectionFailureRate(2), -- ECC single bit correction failure rate exceeded - eccMultiBitFault(4), -- ECC multibit fault encountered - eccSingleBitCorrectionLoggingDisabled(8), -- ECC single bit correction logging disabled - deviceDisabledBySpareActivation(16) -- device disabled because of spare activation -} - -MemoryDeviceTableEntry ::= SEQUENCE { - memoryDevicechassisIndex DellObjectRange, - memoryDeviceIndex DellObjectRange, - memoryDeviceStateCapabilities DellStateCapabilities, - memoryDeviceStateSettings DellStateSettings, - memoryDeviceStatus DellStatus, - memoryDeviceMemoryPortIndexReference DellObjectRange, - memoryDeviceType DellMemoryDeviceType, - memoryDeviceLocationName DellString, - memoryDeviceErrorCount DellSigned32BitRange, - memoryDeviceBankLocationName DellString, - memoryDeviceTypeDetails DellMemoryDeviceTypeDetails, - memoryDeviceFormFactor DellMemoryDeviceFormFactor, - memoryDeviceSet DellUnsigned32BitRange, - memoryDeviceSize DellUnsigned32BitRange, - memoryDeviceSpeed DellUnsigned32BitRange, - memoryDeviceTotalBusWidth DellUnsigned32BitRange, - memoryDeviceTotalDataBusWidth DellUnsigned32BitRange, - memoryDeviceSingleBitErrorCount DellSigned32BitRange, - memoryDeviceMultiBitErrorCount DellSigned32BitRange, - memoryDeviceFailureModes DellMemoryDeviceFailureModes, - memoryDeviceManufacturerName DellString, - memoryDevicePartNumberName DellString, - memoryDeviceSerialNumberName DellString, - memoryDeviceAssetTagName DellString, - memoryDeviceSpeedName DellString, - memoryDeviceRank DellMemoryDeviceRank, - memoryDeviceExtendedSize DellUnsigned32BitRange -} - -memoryDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemoryDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0050 This object defines the Memory Device Table." - ::= { deviceGroup 50 } -memoryDeviceTableEntry OBJECT-TYPE - SYNTAX MemoryDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0050.0001 This object defines the Memory Device Table Entry." - INDEX { memoryDevicechassisIndex, - memoryDeviceIndex } - ::= { memoryDeviceTable 1 } - -memoryDevicechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { memoryDeviceTableEntry 1 } -memoryDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0002 This attribute defines the index (one based) of the -memory device." - ::= { memoryDeviceTableEntry 2 } -memoryDeviceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0003 This attribute defines the state capabilities of the -memory device." - ::= { memoryDeviceTableEntry 3 } -memoryDeviceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0004 This attribute defines the state settings of the -memory device." - ::= { memoryDeviceTableEntry 4 } -memoryDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0005 This attribute defines the status of the memory device." - ::= { memoryDeviceTableEntry 5 } -memoryDeviceMemoryPortIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0006 This attribute defines the index (one based) of the -memory port that this memory device is part of." - ::= { memoryDeviceTableEntry 6 } -memoryDeviceType OBJECT-TYPE - SYNTAX DellMemoryDeviceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0007 This attribute defines the type of the memory device." - ::= { memoryDeviceTableEntry 7 } -memoryDeviceLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0008 This attribute defines the location of the memory device." - ::= { memoryDeviceTableEntry 8 } -memoryDeviceErrorCount OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS deprecated - DESCRIPTION -"1100.0050.0001.0009 This attribute defines the total number of ECC corrections -for the memory device. Writing a 0 (zero) to this variable will reset -the error counts for the device. - -**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. -The value will always be zero. Writing a 0 (zero) has no effect." - ::= { memoryDeviceTableEntry 9 } -memoryDeviceBankLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0010 This attribute defines the location of the bank for the -memory device." - ::= { memoryDeviceTableEntry 10 } -memoryDeviceTypeDetails OBJECT-TYPE - SYNTAX DellMemoryDeviceTypeDetails - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0011 This attribute defines the detailed type of the -memory device." - ::= { memoryDeviceTableEntry 11 } -memoryDeviceFormFactor OBJECT-TYPE - SYNTAX DellMemoryDeviceFormFactor - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0012 This attribute defines the form factor of the -memory device." - ::= { memoryDeviceTableEntry 12 } -memoryDeviceSet OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0013 This attribute defines if the memory device is a part -of a set. Zero indicates it is not part of a set; 2,147,483,647 indicates -it is unknown if it is a part of a set." - ::= { memoryDeviceTableEntry 13 } -memoryDeviceSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS deprecated - DESCRIPTION -"1100.0050.0001.0014 This attribute defines the size in KBytes of the -memory device. Zero indicates no memory installed; 2,147,483,647 indicates -an unknown memory size. - -**NOTE: This attribute is deprecated and replaced by memoryDeviceExtendedSize." - ::= { memoryDeviceTableEntry 14 } -memoryDeviceSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0015 This attribute defines the speed in nanoseconds -of the memory device. Zero indicates an unknown speed." - ::= { memoryDeviceTableEntry 15 } -memoryDeviceTotalBusWidth OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0016 This attribute defines the total number bits, -including ECC, used by the memory device. 2,147,483,647 indicates -an unknown number of bits." - ::= { memoryDeviceTableEntry 16 } -memoryDeviceTotalDataBusWidth OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0017 This attribute defines the total number of data bits -used by the memory device. 2,147,483,647 indicates an unknown number of bits." - ::= { memoryDeviceTableEntry 17 } -memoryDeviceSingleBitErrorCount OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS deprecated - DESCRIPTION -"1100.0050.0001.0018 This attribute defines the total number of single bit -ECC corrections for the memory device. - -**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. -The value will always be zero." - ::= { memoryDeviceTableEntry 18 } -memoryDeviceMultiBitErrorCount OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS deprecated - DESCRIPTION -"1100.0050.0001.0019 This attribute defines the total number of multibit -ECC errors for the memory device. - -**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. -The value will always be zero." - ::= { memoryDeviceTableEntry 19 } -memoryDeviceFailureModes OBJECT-TYPE - SYNTAX DellMemoryDeviceFailureModes - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0020 This attribute defines the failure modes of the -memory device when the memoryDeviceStatus attribute is not ok(3). It is -a bit field that can be used to report more than one type of failure mode -by using a combination of the defined bit masks. - -**NOTE: This attribute replaces the memory device error count attributes. -When the memoryDeviceStatus attribute is not ok(3), this attribute should be -used to determine the reason for that instead of the error count attributes." - ::= { memoryDeviceTableEntry 20 } -memoryDeviceManufacturerName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0021 This attribute defines the manufacturer of the -memory device." - ::= { memoryDeviceTableEntry 21 } -memoryDevicePartNumberName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0022 This attribute defines the manufacturer's part number -for the memory device." - ::= { memoryDeviceTableEntry 22 } -memoryDeviceSerialNumberName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0023 This attribute defines the serial number of the -memory device." - ::= { memoryDeviceTableEntry 23 } -memoryDeviceAssetTagName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0024 This attribute defines the asset tag of the -memory device." - ::= { memoryDeviceTableEntry 24 } -memoryDeviceSpeedName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0025 This attribute defines the speed of the memory device -in string format with units specified in string." - ::= { memoryDeviceTableEntry 25 } -memoryDeviceRank OBJECT-TYPE - SYNTAX DellMemoryDeviceRank - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0026 This attribute defines the Rank -of the memory device (DIMM). Zero indicates an unknown." - ::= { memoryDeviceTableEntry 26 } -memoryDeviceExtendedSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0050.0001.0027 This attribute defines the size in MBytes of the -memory device. - -**NOTE: This attribute replaces the memoryDeviceSize." - ::= { memoryDeviceTableEntry 27 } - - -------------------------------------------------------------------------------- --- Memory Device Mapped Address Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.60.1... -------------------------------------------------------------------------------- - -MemoryDeviceMappedAddressTableEntry ::= SEQUENCE { - memoryDeviceMappedAddresschassisIndex DellObjectRange, - memoryDeviceMappedAddressIndex DellObjectRange, - memoryDeviceMappedAddressStateCapabilities DellStateCapabilities, - memoryDeviceMappedAddressStateSettings DellStateSettings, - memoryDeviceMappedAddressStatus DellStatus, - memoryDeviceIndexReference DellObjectRange, - memoryDeviceMappedAddressRowPosition DellUnsigned32BitRange, - memoryDeviceMappedAddressInterleavePosition DellUnsigned32BitRange, - memoryDeviceMappedAddressInterleaveDepth DellUnsigned32BitRange, - memoryDeviceMappedAddressStartingAddress DellUnsigned64BitRange, - memoryDeviceMappedAddressEndingAddress DellUnsigned64BitRange -} - -memoryDeviceMappedAddressTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemoryDeviceMappedAddressTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0060 This object defines the Memory Device Mapped Address Table." - ::= { deviceGroup 60 } -memoryDeviceMappedAddressTableEntry OBJECT-TYPE - SYNTAX MemoryDeviceMappedAddressTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0060.0001 This object defines the Memory Device Mapped Address -Table Entry." - INDEX { memoryDeviceMappedAddresschassisIndex, - memoryDeviceMappedAddressIndex } - ::= { memoryDeviceMappedAddressTable 1 } - -memoryDeviceMappedAddresschassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { memoryDeviceMappedAddressTableEntry 1 } -memoryDeviceMappedAddressIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0002 This attribute defines the index (one based) of the -memory device mapped address." - ::= { memoryDeviceMappedAddressTableEntry 2 } -memoryDeviceMappedAddressStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0003 This attribute defines the state capabilities of the -memory device mapped address." - ::= { memoryDeviceMappedAddressTableEntry 3 } -memoryDeviceMappedAddressStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0004 This attribute defines the state settings of the -memory device mapped address." - ::= { memoryDeviceMappedAddressTableEntry 4 } -memoryDeviceMappedAddressStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0005 This attribute defines the status of the -memory device mapped address." - ::= { memoryDeviceMappedAddressTableEntry 5 } -memoryDeviceIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0006 This attribute defines the index (one based) of the -memory device associated with the memory device mapped address." - ::= { memoryDeviceMappedAddressTableEntry 6 } -memoryDeviceMappedAddressRowPosition OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0007 This attribute defines the position of the referenced -memory in a row of the memory device mapped address. -2,147,483,647 indicates an unknown position." - ::= { memoryDeviceMappedAddressTableEntry 7 } -memoryDeviceMappedAddressInterleavePosition OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0008 This attribute defines the position of the referenced -memory in an interleave of the memory device mapped address. -2,147,483,647 indicates an unknown position." - ::= { memoryDeviceMappedAddressTableEntry 8 } -memoryDeviceMappedAddressInterleaveDepth OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0009 This attribute defines the maximum number of -consecutive rows from the referenced memory device that are accessed -in a single interleaved transfer in the memory device mapped address. -2,147,483,647 indicates an unknown number of rows." - ::= { memoryDeviceMappedAddressTableEntry 9 } -memoryDeviceMappedAddressStartingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0010 This attribute defines the physical starting address -in KBytes of the memory device mapped address." - ::= { memoryDeviceMappedAddressTableEntry 10 } -memoryDeviceMappedAddressEndingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0060.0001.0011 This attribute defines the physical ending address -in KBytes of the memory device mapped address." - ::= { memoryDeviceMappedAddressTableEntry 11 } - - -------------------------------------------------------------------------------- --- Generic Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.70.1... -------------------------------------------------------------------------------- - -DellGenericDeviceType ::= INTEGER { - deviceTypeIsOther(1), -- type is other than following values - deviceTypeIsUnknown(2), -- type is unknown - deviceTypeIsAVideoDevice(3), -- type is Video Device - deviceTypeIsASCSIController(4), -- type is SCSI Controller - deviceTypeIsAnEthernetDevice(5), -- type is Ethernet - deviceTypeIsTokenRingDevice(6), -- type is Token Ring - deviceTypeIsASoundDevice(7) -- type is Sound Device -} - -GenericDeviceTableEntry ::= SEQUENCE { - genericDevicechassisIndex DellObjectRange, - genericDeviceIndex DellObjectRange, - genericDeviceStateCapabilities DellStateCapabilities, - genericDeviceStateSettings DellStateSettings, - genericDeviceStatus DellStatus, - genericDeviceSystemSlotIndexReference DellObjectRange, - genericDeviceType DellGenericDeviceType, - genericDeviceName DellString -} - -genericDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF GenericDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0070 This object defines the Generic Device Table." - ::= { deviceGroup 70 } -genericDeviceTableEntry OBJECT-TYPE - SYNTAX GenericDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0070.0001 This object defines the Generic Device Table Entry." - INDEX { genericDevicechassisIndex, - genericDeviceIndex } - ::= { genericDeviceTable 1 } - -genericDevicechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0070.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { genericDeviceTableEntry 1 } -genericDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0070.0001.0002 This attribute defines the index (one based) of the -generic device." - ::= { genericDeviceTableEntry 2 } -genericDeviceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0070.0001.0003 This attribute defines the state capabilities of the -generic device." - ::= { genericDeviceTableEntry 3 } -genericDeviceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0070.0001.0004 This attribute defines the state settings of the -generic device." - ::= { genericDeviceTableEntry 4 } -genericDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0070.0001.0005 This attribute defines the status of the -generic device." - ::= { genericDeviceTableEntry 5 } -genericDeviceSystemSlotIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0070.0001.0006 This attribute defines the index (one based) of the -system slot that the generic device is in." - ::= { genericDeviceTableEntry 6 } -genericDeviceType OBJECT-TYPE - SYNTAX DellGenericDeviceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0070.0001.0007 This attribute defines the type of the generic device." - ::= { genericDeviceTableEntry 7 } -genericDeviceName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0070.0001.0008 This attribute defines the name of the generic device." - ::= { genericDeviceTableEntry 8 } - - -------------------------------------------------------------------------------- --- PCI Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.80.1... -------------------------------------------------------------------------------- - -PCIDeviceTableEntry ::= SEQUENCE { - pCIDevicechassisIndex DellObjectRange, - pCIDeviceIndex DellObjectRange, - pCIDeviceStateCapabilities DellStateCapabilities, - pCIDeviceStateSettings DellStateSettings, - pCIDeviceStatus DellStatus, - pCIDeviceSystemSlotIndexReference DellObjectRange, - pCIDeviceDataBusWidth DellUnsigned32BitRange, - pCIDeviceManufacturerName DellString, - pCIDeviceDescriptionName DellString, - pCIDeviceSpeed DellUnsigned32BitRange, - pCIDeviceAdapterFault DellBoolean -} - -pCIDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF PCIDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0080 This object defines the PCI Device Table." - ::= { deviceGroup 80 } -pCIDeviceTableEntry OBJECT-TYPE - SYNTAX PCIDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0080.0001 This object defines the PCI Device Table Entry." - INDEX { pCIDevicechassisIndex, - pCIDeviceIndex } - ::= { pCIDeviceTable 1 } - -pCIDevicechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { pCIDeviceTableEntry 1 } -pCIDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0002 This attribute defines the index (one based) of the -PCI device." - ::= { pCIDeviceTableEntry 2 } -pCIDeviceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0003 This attribute defines the state capabilities of the -PCI device." - ::= { pCIDeviceTableEntry 3 } -pCIDeviceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0004 This attribute defines the state settings of the -PCI device." - ::= { pCIDeviceTableEntry 4 } -pCIDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0005 This attribute defines the status of the PCI device." - ::= { pCIDeviceTableEntry 5 } -pCIDeviceSystemSlotIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0006 This attribute defines the index (one based) of the -system slot that the PCI Device is in." - ::= { pCIDeviceTableEntry 6 } -pCIDeviceDataBusWidth OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0007 This attribute defines the width of the data bus -of the PCI device." - ::= { pCIDeviceTableEntry 7 } -pCIDeviceManufacturerName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0008 This attribute defines the name of the manufacturer -of the PCI device." - ::= { pCIDeviceTableEntry 8 } -pCIDeviceDescriptionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0009 This attribute defines the description of the PCI device." - ::= { pCIDeviceTableEntry 9 } -pCIDeviceSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0010 This attribute defines the bus speed in MHz of the -PCI device. Zero indicates the speed is unknown." - ::= { pCIDeviceTableEntry 10 } -pCIDeviceAdapterFault OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0080.0001.0011 This attribute defines if the PCI device has detected -a fault or not." - ::= { pCIDeviceTableEntry 11 } - - -------------------------------------------------------------------------------- --- PCI Device Configuration Space Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.82.1... -------------------------------------------------------------------------------- - -PCIDeviceConfigurationSpaceTableEntry ::= SEQUENCE { - pCIDeviceConfigurationSpacechassisIndex DellObjectRange, - pCIDeviceConfigurationSpaceIndex DellObjectRange, - pCIDeviceConfigurationSpaceStateCapabilities DellStateCapabilities, - pCIDeviceConfigurationSpaceStateSettings DellStateSettings, - pCIDeviceConfigurationSpaceStatus DellStatus, - pCIDeviceIndexReference DellObjectRange, - pCIDeviceConfigurationSpaceBusNumber DellUnsigned32BitRange, - pCIDeviceConfigurationSpaceDeviceNumber DellUnsigned32BitRange, - pCIDeviceConfigurationSpaceFunctionNumber DellUnsigned32BitRange, - pCIDeviceConfigurationSpaceHeader OCTET STRING(SIZE(0..1025)) -} - -pCIDeviceConfigurationSpaceTable OBJECT-TYPE - SYNTAX SEQUENCE OF PCIDeviceConfigurationSpaceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0082 This object defines the PCI Device Configuration Space Table." - ::= { deviceGroup 82 } -pCIDeviceConfigurationSpaceTableEntry OBJECT-TYPE - SYNTAX PCIDeviceConfigurationSpaceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0082.0001 This object defines the PCI Device Configuration Space Table -Entry." - INDEX { pCIDeviceConfigurationSpacechassisIndex, - pCIDeviceConfigurationSpaceIndex } - ::= { pCIDeviceConfigurationSpaceTable 1 } - -pCIDeviceConfigurationSpacechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { pCIDeviceConfigurationSpaceTableEntry 1 } -pCIDeviceConfigurationSpaceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0002 This attribute defines the index (one based) of the -PCI device configuration space." - ::= { pCIDeviceConfigurationSpaceTableEntry 2 } -pCIDeviceConfigurationSpaceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0003 This attribute defines the state capabilities of the -PCI device configuration space." - ::= { pCIDeviceConfigurationSpaceTableEntry 3 } -pCIDeviceConfigurationSpaceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0004 This attribute defines the state settings of the -PCI device configuration space." - ::= { pCIDeviceConfigurationSpaceTableEntry 4 } -pCIDeviceConfigurationSpaceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0005 This attribute defines the status of the -PCI device configuration space." - ::= { pCIDeviceConfigurationSpaceTableEntry 5 } -pCIDeviceIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0006 This attribute defines the index (one based) of the -PCI device that this PCI device configuration space applies to." - ::= { pCIDeviceConfigurationSpaceTableEntry 6 } -pCIDeviceConfigurationSpaceBusNumber OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0007 This attribute defines the bus number of the -PCI device configuration space." - ::= { pCIDeviceConfigurationSpaceTableEntry 7 } -pCIDeviceConfigurationSpaceDeviceNumber OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0008 This attribute defines the device number of the -PCI device configuration space." - ::= { pCIDeviceConfigurationSpaceTableEntry 8 } -pCIDeviceConfigurationSpaceFunctionNumber OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0009 This attribute defines the function number of the -PCI device configuration space." - ::= { pCIDeviceConfigurationSpaceTableEntry 9 } -pCIDeviceConfigurationSpaceHeader OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(0..1025)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0082.0001.0010 This attribute defines the header of the -PCI device configuration space." - ::= { pCIDeviceConfigurationSpaceTableEntry 10 } - - -------------------------------------------------------------------------------- --- Network Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.90.1... -------------------------------------------------------------------------------- - -DellNetworkDeviceConnectionStatus ::= INTEGER { - -- unknown(0), - unable to determine connection status - connected(1), -- media reports connected - disconnected(2), -- media reports disconnected - driverBad(3), -- driver cannot be opened to determine status - driverDisabled(4), -- driver is disabled - hardwareInitalizing(10), -- hardware is initializing - hardwareResetting(11), -- hardware is resetting - hardwareClosing(12), -- hardware is closing down - hardwareNotReady(13) -- hardware is not ready -} -DellNetworkDeviceTeamingFlags ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- undefined(0), - teaming flags are undefined - noTeam(1), -- device is not part of any team - teamingEnabled(2), -- teaming is enabled - adapterFaultToleranceMode(4), -- adapter fault tolerance teaming mode - loadBalancingMode(8) -- load balancing teaming mode -} -DellNetworkDeviceTOECapabilityFlags ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- none(0), - querying for TOE capability is not supported - unknown(1), -- querying for TOE capability is supported but query returned an error - available(2), -- device has TOE capability - notAvailable(4), -- device does not have TOE capability - cannotBeDetermined(8), -- querying for TOE capability is supported but an error prevented querying - driverNotResponding(16) -- querying for TOE capability is supported but driver did not respond to query -} -DellNetworkDeviceRDMACapabilityFlags ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- none(0), - querying for RDMA capability is not supported - unknown(1), -- querying for RDMA capability is supported but query returned an error - available(2), -- device has RDMA capability - notAvailable(4), -- device does not have RDMA capability - cannotBeDetermined(8), -- querying for RDMA capability is supported but an error prevented querying - driverNotResponding(16) -- querying for RDMA capability is supported but driver did not respond to query -} -DellNetworkDeviceiSCSICapabilityFlags ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- none(0), - querying for iSCSI capability is not supported - unknown(1), -- querying for iSCSI capability is supported but query returned an error - available(2), -- device has iSCSI capability - notAvailable(4), -- device does not have iSCSI capability - cannotBeDetermined(8), -- querying for iSCSI capability is supported but an error prevented querying - driverNotResponding(16) -- querying for iSCSI capability is supported but driver did not respond to query -} -DellNetworkDeviceCapabilities ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- notSupported(0), - device does not support reporting capabilities via this attribute - supported(1), -- device supports reporting capabilities via this attribute - toe(2), -- device has TOE capability - iscsiOffload(4), -- device has iSCSI Offload capability - fcoeOffload(8) -- device has FCoE Offload capability -} -DellNetworkDeviceNParEPEnabled ::= INTEGER { - disabled(1), -- NParEP mode is not enabled on device - enabled(2), -- NparEP mode is enabled on device - unknown (3) -- don't know NParEP mode on device -} - -NetworkDeviceTableEntry ::= SEQUENCE { - networkDeviceChassisIndex DellObjectRange, - networkDeviceIndex DellObjectRange, - networkDeviceStatus DellStatus, - networkDeviceConnectionStatus DellNetworkDeviceConnectionStatus, - networkDeviceDescriptionName DellString, - networkDeviceProductName DellString, - networkDeviceVendorName DellString, - networkDeviceServiceName DellString, - networkDeviceDriverImagePathName DellString, - networkDeviceDriverVersionName DellString, - networkDeviceIPAddress IpAddress, - networkDeviceIPSubnetMask IpAddress, - networkDeviceDefaultGatewayIPAddress IpAddress, - networkDeviceDHCPServerIPAddress IpAddress, - networkDeviceCurrentMACAddress DellMACAddress, - networkDevicePermanentMACAddress DellMACAddress, - networkDevicePCIBusNumber DellUnsigned8BitRange, - networkDevicePCIDeviceNumber DellUnsigned8BitRange, - networkDevicePCIFunctionNumber DellUnsigned8BitRange, - networkDeviceIRQ DellUnsigned32BitRange, - networkDeviceBaseIOPortAddress DellUnsigned32BitRange, - networkDeviceTeamingFlags DellNetworkDeviceTeamingFlags, - networkDeviceTOECapabilityFlags DellNetworkDeviceTOECapabilityFlags, - networkDeviceTOEEnabled DellBoolean, - networkDeviceRDMACapabilityFlags DellNetworkDeviceRDMACapabilityFlags, - networkDeviceRDMAEnabled DellBoolean, - networkDeviceiSCSICapabilityFlags DellNetworkDeviceiSCSICapabilityFlags, - networkDeviceiSCSIEnabled DellBoolean, - networkDeviceCapabilities DellNetworkDeviceCapabilities, - networkDeviceNParEPEnabled DellNetworkDeviceNParEPEnabled -} - -networkDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF NetworkDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0090 This object defines the Network Device Table." - ::= { deviceGroup 90 } -networkDeviceTableEntry OBJECT-TYPE - SYNTAX NetworkDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0090.0001 This object defines the Network Device Table Entry." - INDEX { networkDeviceChassisIndex, - networkDeviceIndex } - ::= { networkDeviceTable 1 } - -networkDeviceChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0001 This attribute defines the index (one based) of the -chassis that contains the network device." - ::= { networkDeviceTableEntry 1 } -networkDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0002 This attribute defines the index (one based) of the -network device." - ::= { networkDeviceTableEntry 2 } -networkDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0003 This attribute defines the status of the network device." - ::= { networkDeviceTableEntry 3 } -networkDeviceConnectionStatus OBJECT-TYPE - SYNTAX DellNetworkDeviceConnectionStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0004 This attribute defines the connection status of the -network device." - ::= { networkDeviceTableEntry 4 } -networkDeviceDescriptionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0005 This attribute defines the description of the -network device." - ::= { networkDeviceTableEntry 5 } -networkDeviceProductName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0006 This attribute defines the product name of the -network device." - ::= { networkDeviceTableEntry 6 } -networkDeviceVendorName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0007 This attribute defines the name of the vendor of the -network device." - ::= { networkDeviceTableEntry 7 } -networkDeviceServiceName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0008 This attribute defines the service name of the -network device." - ::= { networkDeviceTableEntry 8 } -networkDeviceDriverImagePathName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0009 This attribute defines the path to the binary image -of the driver for the network device." - ::= { networkDeviceTableEntry 9 } -networkDeviceDriverVersionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0010 This attribute defines the version of the driver -for the network device." - ::= { networkDeviceTableEntry 10 } -networkDeviceIPAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0011 This attribute defines the IP address of the -network device." - ::= { networkDeviceTableEntry 11 } -networkDeviceIPSubnetMask OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0012 This attribute defines the IP subnet mask for the -IP address currently assigned to the network device." - ::= { networkDeviceTableEntry 12 } -networkDeviceDefaultGatewayIPAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0013 This attribute defines the IP address of the -default gateway for the network device." - ::= { networkDeviceTableEntry 13 } -networkDeviceDHCPServerIPAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0014 This attribute defines the IP address of the -DHCP server that was used to obtain the IP address of the network device -if DHCP is used to configure the network device." - ::= { networkDeviceTableEntry 14 } -networkDeviceCurrentMACAddress OBJECT-TYPE - SYNTAX DellMACAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0015 This attribute defines the current MAC address of the -network device." - ::= { networkDeviceTableEntry 15 } -networkDevicePermanentMACAddress OBJECT-TYPE - SYNTAX DellMACAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0016 This attribute defines the permanent MAC address of the -network device." - ::= { networkDeviceTableEntry 16 } -networkDevicePCIBusNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0017 This attribute defines the PCI bus number of the -network device." - ::= { networkDeviceTableEntry 17 } -networkDevicePCIDeviceNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0018 This attribute defines the PCI device number of the -network device." - ::= { networkDeviceTableEntry 18 } -networkDevicePCIFunctionNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0019 This attribute defines the PCI function number of the -network device." - ::= { networkDeviceTableEntry 19 } -networkDeviceIRQ OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0020 This attribute defines the interrupt request number -of the network device." - ::= { networkDeviceTableEntry 20 } -networkDeviceBaseIOPortAddress OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0021 This attribute defines the base input/outport port -address of the network device." - ::= { networkDeviceTableEntry 21 } -networkDeviceTeamingFlags OBJECT-TYPE - SYNTAX DellNetworkDeviceTeamingFlags - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0022 This attribute defines the teaming features of the -network device." - ::= { networkDeviceTableEntry 22 } -networkDeviceTOECapabilityFlags OBJECT-TYPE - SYNTAX DellNetworkDeviceTOECapabilityFlags - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0023 This attribute defines the TCP/IP Offload Engine (TOE) -capability flags of the network device." - ::= { networkDeviceTableEntry 23 } -networkDeviceTOEEnabled OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0024 This attribute defines if TOE is enabled for the -network device." - ::= { networkDeviceTableEntry 24 } -networkDeviceRDMACapabilityFlags OBJECT-TYPE - SYNTAX DellNetworkDeviceRDMACapabilityFlags - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0025 This attribute defines the Remote Direct Memory Access -(RDMA) capability flags of the network device." - ::= { networkDeviceTableEntry 25 } -networkDeviceRDMAEnabled OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0026 This attribute defines if RDMA is enabled for the -network device." - ::= { networkDeviceTableEntry 26 } -networkDeviceiSCSICapabilityFlags OBJECT-TYPE - SYNTAX DellNetworkDeviceiSCSICapabilityFlags - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0027 This attribute defines the Internet Small Computer -System Interface (iSCSI) capability flags of the network device." - ::= { networkDeviceTableEntry 27 } -networkDeviceiSCSIEnabled OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0028 This attribute defines if iSCSI is enabled for the -network device." - ::= { networkDeviceTableEntry 28 } -networkDeviceCapabilities OBJECT-TYPE - SYNTAX DellNetworkDeviceCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0029 This attribute defines the capabilities of the network device. -If this value is notSupported(0), the networkDeviceTOECapabilityFlags, -networkDeviceTOEEnabled, networkDeviceRDMACapabilityFlags, networkDeviceRDMAEnabled, -networkDeviceiSCSICapabilityFlags and networkDeviceiSCSIEnabled attributes should -be used to determine the network device capabilities. If the supported(1) bit -is on, this attribute should be used to determine the network device capabilities, -and the attributes mentioned above should not be used. NOTE: For a network device -on Converged Network Adapter (CNA), this attribute provides capability information -for the CNA and not for the network device. For more information read vendor -documentation." - ::= { networkDeviceTableEntry 29 } -networkDeviceNParEPEnabled OBJECT-TYPE - SYNTAX DellNetworkDeviceNParEPEnabled - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0090.0001.0030 This attribute defines if NParEP mode is enabled for the -network device." - ::= { networkDeviceTableEntry 30 } - -------------------------------------------------------------------------------- --- Managed System Services Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.100.1... -------------------------------------------------------------------------------- - -DellManagedSystemServicesDeviceType ::= INTEGER { - -- baseDevice(0), - type is base device - optionalDevice(1) -- type is optional device -} - -ManagedSystemServicesDeviceTableEntry ::= SEQUENCE { - managedSystemServicesDeviceChassisIndex DellObjectRange, - managedSystemServicesDeviceIndex DellObjectRange, - managedSystemServicesDeviceStatus DellStatus, - managedSystemServicesDeviceType DellManagedSystemServicesDeviceType, - managedSystemServicesDeviceStoragePresent DellBoolean, - managedSystemServicesDeviceStorageSize DellUnsigned32BitRange -} - -managedSystemServicesDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF ManagedSystemServicesDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0100 This object defines the Managed System Services Device Table." - ::= { deviceGroup 100 } -managedSystemServicesDeviceTableEntry OBJECT-TYPE - SYNTAX ManagedSystemServicesDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0100.0001 This object defines the Managed System Services Device Table -Entry." - INDEX { managedSystemServicesDeviceChassisIndex, - managedSystemServicesDeviceIndex } - ::= { managedSystemServicesDeviceTable 1 } - -managedSystemServicesDeviceChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0100.0001.0001 This attribute defines the index (one-based) of the -chassis that contains the managed system services device." - ::= { managedSystemServicesDeviceTableEntry 1 } -managedSystemServicesDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0100.0001.0002 This attribute defines the index (one-based) of the -managed system services device." - ::= { managedSystemServicesDeviceTableEntry 2 } -managedSystemServicesDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0100.0001.0003 This attribute defines the status of the -managed system services device." - ::= { managedSystemServicesDeviceTableEntry 3 } -managedSystemServicesDeviceType OBJECT-TYPE - SYNTAX DellManagedSystemServicesDeviceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0100.0001.0004 This attribute defines the type of the -managed system services device." - ::= { managedSystemServicesDeviceTableEntry 4 } -managedSystemServicesDeviceStoragePresent OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0100.0001.0005 This attribute defines whether storage is present -on the managed system services device." - ::= { managedSystemServicesDeviceTableEntry 5 } -managedSystemServicesDeviceStorageSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0100.0001.0006 This attribute defines the size in MB (megabytes) -of the storage present on the managed system services device." - ::= { managedSystemServicesDeviceTableEntry 6 } - - -------------------------------------------------------------------------------- --- SD Card Unit Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.110.1... -------------------------------------------------------------------------------- - -SdCardUnitTableEntry ::= SEQUENCE { - sdCardUnitChassisIndex DellObjectRange, - sdCardUnitIndex DellObjectRange, - sdCardUnitStateCapabilities DellStateCapabilities, - sdCardUnitStateSettings DellStateSettings, - sdCardUnitRedundancyStatus DellStatusRedundancy, - sdCardUnitCountForRedundancy DellObjectRange, - sdCardUnitName DellString, - sdCardUnitStatus DellStatus -} - -sdCardUnitTable OBJECT-TYPE - SYNTAX SEQUENCE OF SdCardUnitTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0110 This object defines the SD Card Unit Table." - ::= { deviceGroup 110 } -sdCardUnitTableEntry OBJECT-TYPE - SYNTAX SdCardUnitTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0110.0001 This object defines the SD Card Unit Table Entry." - INDEX { sdCardUnitChassisIndex, - sdCardUnitIndex } - ::= { sdCardUnitTable 1 } - -sdCardUnitChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0110.0001.0001 This attribute defines the index (one-based) of the -chassis that contains the SD Card unit." - ::= { sdCardUnitTableEntry 1 } -sdCardUnitIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0110.0001.0002 This attribute defines the index (one-based) of the -SD Card unit." - ::= { sdCardUnitTableEntry 2 } -sdCardUnitStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0110.0001.0003 This attribute defines the state capabilities of the -SD Card unit." - ::= { sdCardUnitTableEntry 3 } -sdCardUnitStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0110.0001.0004 This attribute defines the state settings of the -SD Card unit." - ::= { sdCardUnitTableEntry 4 } -sdCardUnitRedundancyStatus OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0110.0001.0005 This attribute defines the redundancy status of the -SD Card unit." - ::= { sdCardUnitTableEntry 5 } -sdCardUnitCountForRedundancy OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0110.0001.0006 This attribute defines the total number of SD Card -devices required for this SD Card unit to have full redundancy." - ::= { sdCardUnitTableEntry 6 } -sdCardUnitName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0110.0001.0007 This attribute defines the name of the SD Card unit." - ::= { sdCardUnitTableEntry 7 } -sdCardUnitStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0110.0001.0008 This attribute defines the status of the SD Card unit." - ::= { sdCardUnitTableEntry 8 } - - -------------------------------------------------------------------------------- --- SD Card Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1100.112.1... -------------------------------------------------------------------------------- - -DellSDCardDeviceType ::= INTEGER { - other(1), -- device type is other - unknown(2), -- device type is unknown - hypervisor(3), -- device type is Hypervisor - vFlash(4) -- device type is Virtual Flash (vFlash) -} -DellSDCardDeviceConfigCapabilities ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- none(0), - no capabilities - sdCapable(1), -- SD media can be enabled - vFlashCapable(2) -- vFlash can be enabled -} -DellSDCardDeviceConfigSettings ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- none(0), - no settings enabled - sdEnabled(1), -- SD media enabled - vFlashEnabled(2) -- vFlash enabled -} -DellSDCardDeviceCardState ::= INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- none(0), - state is none of the following: - present(1), -- device is present - ipmiReady(2), -- device is IPMI ready - fullReady(4), -- device is full ready - offline(8), -- device is offline - failed(16), -- device is failed - active(32), -- device is active - bootable(64), -- device is bootable - writeProtect(128), -- device is write-protected - standby(256) -- device is in standby mode -} -DellSDCardDeviceCardLicensed ::= INTEGER { - -- unlicensed(0), - SD card is not licensed by system vendor - licensed(1) -- SD card is licensed by system vendor -} - -SdCardDeviceTableEntry ::= SEQUENCE { - sdCardDeviceChassisIndex DellObjectRange, - sdCardDeviceIndex DellObjectRange, - sdCardDeviceStatus DellStatus, - sdCardDeviceType DellSDCardDeviceType, - sdCardDeviceConfigCapabilities DellSDCardDeviceConfigCapabilities, - sdCardDeviceConfigSettings DellSDCardDeviceConfigSettings, - sdCardDeviceLocationName DellString, - sdCardDeviceCardPresent DellBoolean, - sdCardDeviceCardState DellSDCardDeviceCardState, - sdCardDeviceCardStorageSize DellUnsigned32BitRange, - sdCardDeviceUnitIndexReference DellObjectRange, - sdCardDeviceCardAvailableStorageSize DellSigned32BitRange, - sdCardDeviceCardLicensed DellSDCardDeviceCardLicensed -} - -sdCardDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF SdCardDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0112 This object defines the SD Card Device Table." - ::= { deviceGroup 112 } -sdCardDeviceTableEntry OBJECT-TYPE - SYNTAX SdCardDeviceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1100.0112.0001 This object defines the SD Card Device Table Entry." - INDEX { sdCardDeviceChassisIndex, - sdCardDeviceIndex } - ::= { sdCardDeviceTable 1 } - -sdCardDeviceChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0001 This attribute defines the index (one-based) of the -chassis that contains the SD Card device." - ::= { sdCardDeviceTableEntry 1 } -sdCardDeviceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0002 This attribute defines the index (one-based) of the -SD Card device." - ::= { sdCardDeviceTableEntry 2 } -sdCardDeviceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0003 This attribute defines the status of the SD Card device." - ::= { sdCardDeviceTableEntry 3 } -sdCardDeviceType OBJECT-TYPE - SYNTAX DellSDCardDeviceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0004 This attribute defines the type of the SD Card device." - ::= { sdCardDeviceTableEntry 4 } -sdCardDeviceConfigCapabilities OBJECT-TYPE - SYNTAX DellSDCardDeviceConfigCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0005 This attribute defines the configuration capabilities -of the SD Card device." - ::= { sdCardDeviceTableEntry 5 } -sdCardDeviceConfigSettings OBJECT-TYPE - SYNTAX DellSDCardDeviceConfigSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0006 This attribute defines the configuration settings -of the SD Card device." - ::= { sdCardDeviceTableEntry 6 } -sdCardDeviceLocationName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0007 This attribute defines the location of the SD Card device." - ::= { sdCardDeviceTableEntry 7 } -sdCardDeviceCardPresent OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0008 This attribute defines whether the SD card is present -for the SD Card device." - ::= { sdCardDeviceTableEntry 8 } -sdCardDeviceCardState OBJECT-TYPE - SYNTAX DellSDCardDeviceCardState - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0009 This attribute defines the state of the SD card." - ::= { sdCardDeviceTableEntry 9 } -sdCardDeviceCardStorageSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0010 This attribute defines the total storage size in MB (megabytes) -of the SD card for the SD Card device." - ::= { sdCardDeviceTableEntry 10 } -sdCardDeviceUnitIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0011 This attribute defines the index to the associated -SD Card unit if the SD Card device is part of a SD Card unit." - ::= { sdCardDeviceTableEntry 11 } -sdCardDeviceCardAvailableStorageSize OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0012 This attribute defines the available storage size in MB (megabytes) -of the SD card for the SD Card device." - ::= { sdCardDeviceTableEntry 12 } -sdCardDeviceCardLicensed OBJECT-TYPE - SYNTAX DellSDCardDeviceCardLicensed - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1100.0112.0001.0013 This attribute defines whether the SD card is licensed -by the system vendor." - ::= { sdCardDeviceTableEntry 13 } - - -------------------------------------------------------------------------------- --- Slot Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1200 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- System Slot Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1200.10.1... -------------------------------------------------------------------------------- - -DellSystemSlotStateCapabilities ::= INTEGER { - systemSlotHotPlugIsUnknown(1), -- state capabilities are unknown - systemSlotHotPlugIsHotPluggableCapable(2), -- slot can support Hot Plug - systemSlotHotPlugCanBePoweredOn(4), -- slot power (and corresponding LED) can be powered on - systemSlotHotPlugCanSignalAttention(8), -- slot attention state (and corresponding LED) can be set - systemSlotHotPlugCanSignalPowerFault(16), -- slot power on fault (and corresponding LED) can be detected due to a short or overcurrent - systemSlotHotPlugCanSignalAdapterPresent(32), -- slot adapter (card) present in slot (may not be powered) can be detected - systemSlotHotPlugCanSignalPowerButtonPressed(64), -- slot power button can be pressed to signal a toggle of the power state - canSupportAllHotPlugCapabilities(126), -- slot can support all Hot Plug capabilities - systemSlotCanProvide5Volts(128), -- slot can provide 5 volt supply - systemSlotCanProvide3Point3Volts(256), -- slot can provide 3.3 volt supply - systemSlotCanSignalIfShared(512), -- slot opening if shared with another slot can be detected - systemSlotCanSupportCard16(1024), -- slot can support PC Card-16 - systemSlotCanSupportCardBus(2048), -- slot can support CardBus - systemSlotCanSupportZoomVideo(4096), -- slot can support Zoom Video - systemSlotCanSupportModemRingResume(8192), -- slot can support Modem Ring Resume - systemSlotCanSupportPMESignal(16384), -- slot can support Power Management Enable (PME#) signal - canSupportAllSlotCapabilities(32640), -- slot can support all Slot capabilities - canSupportAllSlotAndAllHotPlugCapabilities(32766) -- slot can support all Slot and all Hot Plug capabilities -} -DellSystemSlotStateSettings ::= INTEGER { - systemSlotHotPlugIsUnknown(1), -- state settings are unknown - systemSlotHotPlugIsHotPluggable(2), -- slot supports Hot Plug - systemSlotHotPlugIsPoweredOn(4), -- slot has power (and corresponding LED) ON - systemSlotHotPlugIsAtAttention(8), -- slot is at attention state (and corresponding LED) is ON - systemSlotHotPlugHasPowerFaulted(16), -- slot has power on fault (and corresponding LED) was detected due to a short or overcurrent - systemSlotHotPlugAdapterIsPresent(32), -- slot adapter (card) present in slot (may not be powered on) - systemSlotHotPlugAdapterPresentAndPoweredOn(36), -- slot adapter (card) present in slot and powered on - systemSlotHotPlugPowerButtonPressed(64), -- slot power button pressed to signal toggle of power state - systemSlotProvides5Volts(128), -- slot provides 5 volt supply - systemSlotProvides3Point3Volts(256), -- slot provides 3.3 volt supply - systemSlotIsShared(512), -- slot opening is shared with another slot (e.g. PCI/EISA shared slot) - systemSlotSupportsCard16(1024), -- slot supports PC Card-16 - systemSlotSupportsCardBus(2048), -- slot supports CardBus - systemSlotSupportsZoomVideo(4096), -- slot supports Zoom Video - systemSlotSupportsModemRingResume(8192), -- slot supports Modem Ring Resume - systemSlotSupportsPMESignal(16384), -- slot supports Power Management Enable (PME#) signal - supportsPMEand3P3Vand5VandHotPluggable(16770), - supportsPMEand3P3Vand5VhasAdapterOn(16804), - supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable(16806), - supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable(17316) -} -DellSystemSlotType ::= INTEGER { - systemSlotIsOther(1), -- type is Other - systemSlotIsUnknown(2), -- type is Unknown - systemSlotIsISA(3), -- type is ISA - systemSlotIsMCA(4), -- type is MCA - systemSlotIsEISA(5), -- type is EISA - systemSlotIsPCI(6), -- type is PCI - systemSlotIsPCMCIA(7), -- type is PCMCIA - systemSlotIsVLVESA(8), -- type is VL-VESA - systemSlotIsProprietary(9), -- type is Proprietary - systemSlotIsProcessorCard(10), -- type is Processor Card Slot - systemSlotIsProprietaryMemory(11), -- type is Proprietary Memory Card Slot - systemSlotIsIORiserCard(12), -- type is I/O Riser Card Slot - systemSlotIsNuBUS(13), -- type is NuBus - systemSlotIsPCI66MHz(14), -- type is PCI - 66MHz Capable - systemSlotIsAGP(15), -- type is AGP - systemSlotIsAGP2X(16), -- type is AGP 2X - systemSlotIsAGP4X(17), -- type is AGP 4X - systemSlotIsPC98C20(18), -- type is PC-98/C20 - systemSlotIsPC98C24(19), -- type is PC-98/C24 - systemSlotIsPC98E(20), -- type is PC-98/E - systemSlotIsPC98LocalBus(21), -- type is PC-98/Local Bus - systemSlotIsPC98Card(22), -- type is PC-98/Card - systemSlotIsPCIX(23), -- type is PCI-X - systemSlotIsPCIExpress(24), -- type is PCI Express - systemSlotIsAGP8X(25), -- type is AGP 8X - systemSlotIsPCIExpressX1(166), -- type is PCI Express x1 - systemSlotIsPCIExpressX2(167), -- type is PCI Express x2 - systemSlotIsPCIExpressX4(168), -- type is PCI Express x4 - systemSlotIsPCIExpressX8(169), -- type is PCI Express x8 - systemSlotIsPCIExpressX16(170), -- type is PCI Express x16 - systemSlotIsPCIExpressGen2(171), -- type is PCI Express Gen 2 - systemSlotIsPCIExpressGen2X1(172), -- type is PCI Express Gen 2 x1 - systemSlotIsPCIExpressGen2X2(173), -- type is PCI Express Gen 2 x2 - systemSlotIsPCIExpressGen2X4(174), -- type is PCI Express Gen 2 x4 - systemSlotIsPCIExpressGen2X8(175), -- type is PCI Express Gen 2 x8 - systemSlotIsPCIExpressGen2X16(176) -- type is PCI Express Gen 2 x16 -} -DellSystemSlotUsage ::= INTEGER { - systemSlotUsageIsOther(1), -- usage is other than following values - systemSlotUsageIsUnknown(2), -- usage is unknown - systemSlotUsageIsAvailable(3), -- usage is available - systemSlotUsageIsInUse(4) -- usage is in use -} -DellSystemSlotLength ::= INTEGER { - systemSlotLengthIsOther(1), -- length is other than following values - systemSlotLengthIsUnknown(2), -- length is unknown - systemSlotLengthIsShort(3), -- length is Short - systemSlotLengthIsLong(4) -- length is Long -} -DellSystemSlotCategory ::= INTEGER { - systemSlotCategoryIsOther(1), -- category is other than following values - systemSlotCategoryIsUnknown(2), -- category is unknown - systemSlotCategoryIsBusConnector(3), -- category is Bus Connector - systemSlotCategoryIsPCMCIA(4), -- category is PCMCIA - systemSlotCategoryIsMotherboard(5) -- category is Motherboard -} -DellSystemSlotHotPlugBusWidth ::= INTEGER { --- Bus Width meanings of type "n bits" are for parallel bus such as PCI. --- Bus Width meanings of type "nx or xn" are for serial bus such as PCI Express. - busWidthIsOther(1), -- bus width is other than following values - busWidthIsUnknown(2), -- bus width is unknown - busWidthIs8bits(3), -- bus width is 8 bits - busWidthIs16bits(4), -- bus width is 16 bits - busWidthIs32bits(5), -- bus width is 32 bits - busWidthIs64bits(6), -- bus width is 64 bits - busWidthIs128bits(7), -- bus width is 128 bits - busWidthIs1xOrx1(8), -- bus width is 1x or x1 - busWidthIs2xOrx2(9), -- bus width is 2x or x2 - busWidthIs4xOrx4(10), -- bus width is 4x or x4 - busWidthIs8xOrx8(11), -- bus width is 8x or x8 - busWidthIs12xOrx12(12), -- bus width is 12x or x12 - busWidthIs16xOrx16(13), -- bus width is 16x or x16 - busWidthIs32xOrx32(14) -- bus width is 32x or x32 -} - -SystemSlotTableEntry ::= SEQUENCE { - systemSlotchassisIndex DellObjectRange, - systemSlotIndex DellObjectRange, - systemSlotStateCapabilitiesUnique DellSystemSlotStateCapabilities, - systemSlotStateSettingsUnique DellSystemSlotStateSettings, - systemSlotStatus DellStatus, - systemSlotCurrentUsage DellSystemSlotUsage, - systemSlotType DellSystemSlotType, - systemSlotSlotExternalSlotName DellString, - systemSlotLength DellSystemSlotLength, - systemSlotSlotID DellUnsigned32BitRange, - systemSlotCategory DellSystemSlotCategory, - systemSlotHotPlugBusWidth DellSystemSlotHotPlugBusWidth, - systemSlotHotPlugSlotSpeed DellUnsigned32BitRange, - systemSlotHotPlugAdapterSpeed DellUnsigned32BitRange -} - -systemSlotTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemSlotTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1200.0010 This object defines the System Slot Table." - ::= { slotGroup 10 } -systemSlotTableEntry OBJECT-TYPE - SYNTAX SystemSlotTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1200.0010.0001 This object defines the System Slot Table Entry." - INDEX { systemSlotchassisIndex, - systemSlotIndex } - ::= { systemSlotTable 1 } - -systemSlotchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { systemSlotTableEntry 1 } -systemSlotIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0002 This attribute defines the index (one based) of the -system slot." - ::= { systemSlotTableEntry 2 } -systemSlotStateCapabilitiesUnique OBJECT-TYPE - SYNTAX DellSystemSlotStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0003 This attribute defines the state capabilities of the -system slot." - ::= { systemSlotTableEntry 3 } -systemSlotStateSettingsUnique OBJECT-TYPE - SYNTAX DellSystemSlotStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0004 This attribute defines the state settings of the -system slot." - ::= { systemSlotTableEntry 4 } -systemSlotStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0005 This attribute defines the status of the system slot." - ::= { systemSlotTableEntry 5 } -systemSlotCurrentUsage OBJECT-TYPE - SYNTAX DellSystemSlotUsage - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0006 This attribute defines the current usage of the -system slot." - ::= { systemSlotTableEntry 6 } -systemSlotType OBJECT-TYPE - SYNTAX DellSystemSlotType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0007 This attribute defines the type of the system slot." - ::= { systemSlotTableEntry 7 } -systemSlotSlotExternalSlotName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0008 This attribute defines the name of the external -connector name of the system slot." - ::= { systemSlotTableEntry 8 } -systemSlotLength OBJECT-TYPE - SYNTAX DellSystemSlotLength - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0009 This attribute defines the length of the system slot." - ::= { systemSlotTableEntry 9 } -systemSlotSlotID OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0010 This attribute defines the slot identification number -of the system slot." - ::= { systemSlotTableEntry 10 } -systemSlotCategory OBJECT-TYPE - SYNTAX DellSystemSlotCategory - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0011 This attribute defines the category of the system slot." - ::= { systemSlotTableEntry 11 } -systemSlotHotPlugBusWidth OBJECT-TYPE - SYNTAX DellSystemSlotHotPlugBusWidth - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0012 This attribute defines the bus width of the hot plug -system slot." - ::= { systemSlotTableEntry 12 } -systemSlotHotPlugSlotSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0013 This attribute defines the slot speed in MHz of the -hot plug system slot. Zero indicates the slot speed is unknown." - ::= { systemSlotTableEntry 13 } -systemSlotHotPlugAdapterSpeed OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1200.0010.0001.0014 This attribute defines the adapter speed in MHz of the -hot plug system slot. Zero indicates the adapter speed is unknown." - ::= { systemSlotTableEntry 14 } - - -------------------------------------------------------------------------------- --- Memory Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1300 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Physical Memory Array Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1300.10.1... -------------------------------------------------------------------------------- - -DellPhysicalMemoryArrayLocation ::= INTEGER { - memoryArrayLocationIsOther(1), -- location is other than following values - memoryArrayLocationIsUnknown(2), -- location is unknown - memoryArrayLocationIsSystemOrMotherboard(3),-- location is System Board or Motherboard - memoryArrayLocationIsISA(4), -- location is ISA add-on card - memoryArrayLocationIsEISA(5), -- location is EISA add-on card - memoryArrayLocationIsPCI(6), -- location is PCI add-on card - memoryArrayLocationIsMCA(7), -- location is MCA add-on card - memoryArrayLocationIsPCMCIA(8), -- location is PCMCIA add-on card - memoryArrayLocationIsProprietary(9), -- location is Proprietary add-on card - memoryArrayLocationIsNUBUS(10), -- location is NUBUS bus - memoryArrayLocationIsPC98C20(11), -- location is PC-98/C20 add-on card - memoryArrayLocationIsPC98C24(12), -- location is PC-98/C24 add-on card - memoryArrayLocationIsPC98E(13), -- location is PC-98/E add-on card - memoryArrayLocationIsPC98LocalBus(14), -- location is PC-98/Local Bus add-on card - memoryArrayLocationIsPC98Card(15) -- location is PC-98/Card slot add-on card -} -DellPhysicalMemoryArrayUse ::= INTEGER { - memoryArrayUseIsOther(1), -- use is other than following values - memoryArrayUseIsUnknown(2), -- use is unknown - memoryArrayUseIsSystemMemory(3), -- use is System Memory - memoryArrayUseIsVideoMemory(4), -- use is Video Memory - memoryArrayUseIsFLASHMemory(5), -- use is Flash Memory - memoryArrayUseIsNonVolatileRAMMemory(6), -- use is Nonvolatile RAM - memoryArrayUseIsCacheMemory(7) -- use is Cache Memory -} -DellPhysicalMemoryArrayECCType ::= INTEGER { - memoryArrayECCTypeIsOther(1), -- ECC type is other than following values - memoryArrayECCTypeIsUnknown(2), -- ECC type is unknown - memoryArrayECCTypeIsNone(3), -- ECC type is none - memoryArrayECCTypeIsParity(4), -- ECC type is Parity - memoryArrayECCTypeIsSingleBitECC(5), -- ECC type is Single bit ECC - memoryArrayECCTypeIsMultiBitECC(6), -- ECC type is Multibit ECC - memoryArrayECCTypeIsCRC(7) -- ECC type is CRC -} - -PhysicalMemoryArrayTableEntry ::= SEQUENCE { - physicalMemoryArraychassisIndex DellObjectRange, - physicalMemoryArrayIndex DellObjectRange, - physicalMemoryArrayStateCapabilities DellStateCapabilities, - physicalMemoryArrayStateSettings DellStateSettings, - physicalMemoryArrayStatus DellStatus, - physicalMemoryArrayUse DellPhysicalMemoryArrayUse, - physicalMemoryArrayECCType DellPhysicalMemoryArrayECCType, - physicalMemoryArrayLocation DellPhysicalMemoryArrayLocation, - physicalMemoryArrayMaximumSize DellUnsigned32BitRange, - physicalMemoryArrayTotalNumberSockets DellUnsigned32BitRange, - physicalMemoryArrayInUseNumberSockets DellUnsigned32BitRange, - physicalMemoryArrayECCErrorNonRecoverableThreshold DellSigned32BitRange, - physicalMemoryArrayECCErrorCriticalThreshold DellSigned32BitRange, - physicalMemoryArrayECCErrorNonCriticalThreshold DellSigned32BitRange, - physicalMemoryArrayRedundantMemoryUnitIndexReference DellObjectRange, - physicalMemoryArrayExtendedMaximumSize DellUnsigned64BitRange -} - -physicalMemoryArrayTable OBJECT-TYPE - SYNTAX SEQUENCE OF PhysicalMemoryArrayTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0010 This object defines the Physical Memory Array Table." - ::= { memoryGroup 10 } -physicalMemoryArrayTableEntry OBJECT-TYPE - SYNTAX PhysicalMemoryArrayTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0010.0001 This object defines the Physical Memory Array Table Entry." - INDEX { physicalMemoryArraychassisIndex, - physicalMemoryArrayIndex } - ::= { physicalMemoryArrayTable 1 } - -physicalMemoryArraychassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { physicalMemoryArrayTableEntry 1 } -physicalMemoryArrayIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0002 This attribute defines the index (one based) of the -physical memory array." - ::= { physicalMemoryArrayTableEntry 2 } -physicalMemoryArrayStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0003 This attribute defines the state capabilities of the -physical memory array." - ::= { physicalMemoryArrayTableEntry 3 } -physicalMemoryArrayStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0004 This attribute defines the state settings of the -physical memory array." - ::= { physicalMemoryArrayTableEntry 4 } -physicalMemoryArrayStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0005 This attribute defines the status of the physical -memory array." - ::= { physicalMemoryArrayTableEntry 5 } -physicalMemoryArrayUse OBJECT-TYPE - SYNTAX DellPhysicalMemoryArrayUse - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0006 This attribute defines the use of the physical -memory array." - ::= { physicalMemoryArrayTableEntry 6 } -physicalMemoryArrayECCType OBJECT-TYPE - SYNTAX DellPhysicalMemoryArrayECCType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0007 This attribute defines the error correction type used -by the physical memory array." - ::= { physicalMemoryArrayTableEntry 7 } -physicalMemoryArrayLocation OBJECT-TYPE - SYNTAX DellPhysicalMemoryArrayLocation - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0008 This attribute defines the location of the physical -memory array." - ::= { physicalMemoryArrayTableEntry 8 } -physicalMemoryArrayMaximumSize OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS deprecated - DESCRIPTION -"1300.0010.0001.0009 This attribute defines the maximum size in KBytes -of the physical memory array. Zero inicates no memory is installed. -2,147,483,647 indicates an unknown maximum size. - -**NOTE: This attribute is deprecated and replaced by physicalMemoryArrayExtendedMaximumSize." - ::= { physicalMemoryArrayTableEntry 9 } -physicalMemoryArrayTotalNumberSockets OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0010 This attribute defines the total number of memory -sockets available for the physical memory array. 2,147,483,647 indicates -an unknown number of sockets." - ::= { physicalMemoryArrayTableEntry 10 } -physicalMemoryArrayInUseNumberSockets OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0011 This attribute defines the total number of memory -sockets in use by the physical memory array. 2,147,483,647 indicates -an unknown number of sockets." - ::= { physicalMemoryArrayTableEntry 11 } -physicalMemoryArrayECCErrorNonRecoverableThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0012 This attribute defines the value of the physical -memory array ECC error nonrecoverable threshold. The value is an integer -representing the number of errors detected." - ::= { physicalMemoryArrayTableEntry 12 } -physicalMemoryArrayECCErrorCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.00013 This attribute defines the value of the physical -memory array ECC error critical threshold. The value is an integer -representing the number of errors detected." - ::= { physicalMemoryArrayTableEntry 13 } -physicalMemoryArrayECCErrorNonCriticalThreshold OBJECT-TYPE - SYNTAX DellSigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.00014 This attribute defines the value of the physical -memory array ECC error noncritical threshold. The value is an integer -representing the number of errors detected." - ::= { physicalMemoryArrayTableEntry 14 } -physicalMemoryArrayRedundantMemoryUnitIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0015 This attribute defines the index to the associated -redundant memory unit if this physical memory array is part of a redundant -memory unit." - ::= { physicalMemoryArrayTableEntry 15 } -physicalMemoryArrayExtendedMaximumSize OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0010.0001.0016 This attribute defines the maximum size in Bytes -of the physical memory array. - -**NOTE: This attribute replaces the physicalMemoryArrayMaximumSize." - ::= { physicalMemoryArrayTableEntry 16 } - - -------------------------------------------------------------------------------- --- Physical Memory Array Mapped Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1300.20.1... -------------------------------------------------------------------------------- - -PhysicalMemoryArrayMappedTableEntry ::= SEQUENCE { - physicalMemoryArrayMappedchassisIndex DellObjectRange, - physicalMemoryArrayMappedIndex DellObjectRange, - physicalMemoryArrayMappedStateCapabilities DellStateCapabilities, - physicalMemoryArrayMappedStateSettings DellStateSettings, - physicalMemoryArrayMappedStatus DellStatus, - physicalMemoryArrayIndexReference DellObjectRange, - physicalMemoryArrayMappedStartingAddress DellUnsigned64BitRange, - physicalMemoryArrayMappedEndingAddress DellUnsigned64BitRange, - physicalMemoryArrayMappedPartitionWidth DellUnsigned32BitRange -} - -physicalMemoryArrayMappedTable OBJECT-TYPE - SYNTAX SEQUENCE OF PhysicalMemoryArrayMappedTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0020 This object defines the Physical Memory Array Mapped Table." - ::= { memoryGroup 20 } -physicalMemoryArrayMappedTableEntry OBJECT-TYPE - SYNTAX PhysicalMemoryArrayMappedTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0020.0001 This object defines the Physical Memory Array Mapped -Table Entry." - INDEX { physicalMemoryArrayMappedchassisIndex, - physicalMemoryArrayMappedIndex } - ::= { physicalMemoryArrayMappedTable 1 } - -physicalMemoryArrayMappedchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { physicalMemoryArrayMappedTableEntry 1 } -physicalMemoryArrayMappedIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0002 This attribute defines the index (one based) of the -physical memory array mapped address." - ::= { physicalMemoryArrayMappedTableEntry 2 } -physicalMemoryArrayMappedStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0003 This attribute defines the state capabilities of the -physical memory array mapped address." - ::= { physicalMemoryArrayMappedTableEntry 3 } -physicalMemoryArrayMappedStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0004 This attribute defines the state settings of the -physical memory array mapped address." - ::= { physicalMemoryArrayMappedTableEntry 4 } -physicalMemoryArrayMappedStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0005 This attribute defines the status of the -physical memory array mapped address." - ::= { physicalMemoryArrayMappedTableEntry 5 } -physicalMemoryArrayIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0006 This attribute defines the index (one based) of the -associated physical memory array." - ::= { physicalMemoryArrayMappedTableEntry 6 } -physicalMemoryArrayMappedStartingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0007 This attribute defines the physical starting address -in KBytes of the physical memory array mapped address." - ::= { physicalMemoryArrayMappedTableEntry 7 } -physicalMemoryArrayMappedEndingAddress OBJECT-TYPE - SYNTAX DellUnsigned64BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0008 This attribute defines the physical ending address -in KBytes of the physical memory array mapped address." - ::= { physicalMemoryArrayMappedTableEntry 8 } -physicalMemoryArrayMappedPartitionWidth OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0020.0001.0009 This attribute defines the number of memory devices -that form a single row in the memory array mapped address. 2,147,483,647 -indicates an unknown number of memory devices." - ::= { physicalMemoryArrayMappedTableEntry 9 } - - -------------------------------------------------------------------------------- --- Physical Memory Configuration Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1300.30.1... -------------------------------------------------------------------------------- - -DellPhysicalMemoryConfigStateCapabilities ::= INTEGER { - -- none(0), - no state capabilities supported - unknownCapabilities(1), -- state capabilities are unknown - enableCapable(2), -- memory config can be enabled and disabled - notReadyCapable(4) -- memory config can be not ready -} -DellPhysicalMemoryConfigStateSettings ::= INTEGER { - -- none(0), - no state settings enabled - unknown(1), -- state settings are unknown - enabled(2), -- memory config is enabled - notReady(4), -- memory config is not ready - redundantMemoryIsActive(8), -- redundant memory is active (in use) - enabledAndRedundantMemoryIsActive(10) -} -DellPhysicalMemoryConfigRedundantCapabilities ::= INTEGER { - -- none(0), - no redundant capabilities supported - unknownCapabilities(1), -- redundant capabilities are unknown - spareCapable(2), -- Spare redundancy is supported - mirrorCapable(4), -- Mirror redundancy is supported - spareAndMirrorCapable(6), - raidCapable(8), -- RAID redundancy is supported - dddcCapable(16) -- DDDC redundancy is supported -} -DellPhysicalMemoryConfigRedundantSettings ::= INTEGER { - -- none(0), - no redundant settings enabled - unknown(1), -- redundant settings are unknown - -- The following settings are mutually exclusive: - spareEnabled(2), -- Spare redundancy is enabled - mirrorEnabled(4), -- Mirror redundancy is enabled - raidEnabled(8), -- RAID redundancy is enabled - dddcEnabled(16) -- DDDC redundancy is enabled -} -DellPhysicalMemoryConfigMOMCapabilities ::= INTEGER { - -- none(0), - no memory operating mode capabilities supported - unknownCapabilities(1), -- memory operating mode capabilities are unknown - momOptimizerCapable(2), -- Optimizer mode is supported - momSpareCapable(4), -- Spare mode is supported - momMirrorCapable(8), -- Mirror mode is supported - momAdvancedECCCapable(16) -- Advanced ECC mode is supported -} -DellPhysicalMemoryConfigMOMSettings ::= INTEGER { - -- none(0), - no memory operating mode settings enabled - unknown(1), -- memory operating mode settings are unknown - -- The following settings are mutually exclusive: - momOptimizerEnabled(2), -- Optimizer mode is enabled - momSpareEnabled(4), -- Spare mode is enabled - momMirrorEnabled(8), -- Mirror mode is enabled - momAdvancedECCEnabled(16) -- Advanced ECC mode is enabled -} - -PhysicalMemoryConfigTableEntry ::= SEQUENCE { - physicalMemoryConfigChassisIndex DellObjectRange, - physicalMemoryConfigIndex DellObjectRange, - physicalMemoryConfigStateCapabilities DellPhysicalMemoryConfigStateCapabilities, - physicalMemoryConfigStateSettings DellPhysicalMemoryConfigStateSettings, - physicalMemoryConfigStatus DellStatus, - physicalMemoryConfigRedundantCapabilities DellPhysicalMemoryConfigRedundantCapabilities, - physicalMemoryConfigRedundantSettings DellPhysicalMemoryConfigRedundantSettings, - physicalMemoryConfigMOMCapabilities DellPhysicalMemoryConfigMOMCapabilities, - physicalMemoryConfigMOMSettings DellPhysicalMemoryConfigMOMSettings -} - -physicalMemoryConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF PhysicalMemoryConfigTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0030 This object defines the Physical Memory Configuration Table." - ::= { memoryGroup 30 } -physicalMemoryConfigTableEntry OBJECT-TYPE - SYNTAX PhysicalMemoryConfigTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0030.0001 This object defines the Physical Memory Configuration -Table Entry." - INDEX { physicalMemoryConfigChassisIndex, - physicalMemoryConfigIndex } - ::= { physicalMemoryConfigTable 1 } - -physicalMemoryConfigChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { physicalMemoryConfigTableEntry 1 } -physicalMemoryConfigIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0002 This attribute defines the index (one based) of the -physical memory configuration." - ::= { physicalMemoryConfigTableEntry 2 } -physicalMemoryConfigStateCapabilities OBJECT-TYPE - SYNTAX DellPhysicalMemoryConfigStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0003 This attribute defines the state capabilities of the -physical memory configuration." - ::= { physicalMemoryConfigTableEntry 3 } -physicalMemoryConfigStateSettings OBJECT-TYPE - SYNTAX DellPhysicalMemoryConfigStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0004 This attribute defines the state settings of the -physical memory configuration." - ::= { physicalMemoryConfigTableEntry 4 } -physicalMemoryConfigStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0005 This attribute defines the status of the -physical memory configuration." - ::= { physicalMemoryConfigTableEntry 5 } -physicalMemoryConfigRedundantCapabilities OBJECT-TYPE - SYNTAX DellPhysicalMemoryConfigRedundantCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0006 This attribute defines the redundant capabilities of the -physical memory." - ::= { physicalMemoryConfigTableEntry 6 } -physicalMemoryConfigRedundantSettings OBJECT-TYPE - SYNTAX DellPhysicalMemoryConfigRedundantSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0007 This attribute defines the redundant settings of the -physical memory." - ::= { physicalMemoryConfigTableEntry 7 } -physicalMemoryConfigMOMCapabilities OBJECT-TYPE - SYNTAX DellPhysicalMemoryConfigMOMCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0008 This attribute defines the Memory Operating Mode capabilities -of the physical memory." - ::= { physicalMemoryConfigTableEntry 8 } -physicalMemoryConfigMOMSettings OBJECT-TYPE - SYNTAX DellPhysicalMemoryConfigMOMSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0030.0001.0009 This attribute defines the Memory Operating Mode settings -of the physical memory." - ::= { physicalMemoryConfigTableEntry 9 } - - -------------------------------------------------------------------------------- --- Physical Memory Logging Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1300.40.1... -------------------------------------------------------------------------------- - -DellPhysicalMemoryLoggingCapabilities ::= INTEGER { - -- If set to 0 (zero), there are no Logging capabilities - unknownCapabilities(1), -- logging capabilities are unknown - enableCapable(2) -- logging can be enabled or disabled -} -DellPhysicalMemoryLoggingSettings ::= INTEGER { - -- If set to 0 (zero), there are no Logging settings enabled - unknown(1), -- logging settings are unknown - enabled(2) -- logging is enabled -} - -PhysicalMemoryLoggingTableEntry ::= SEQUENCE { - physicalMemoryLoggingChassisIndex DellObjectRange, - physicalMemoryLoggingIndex DellObjectRange, - physicalMemoryLoggingCapabilities DellPhysicalMemoryLoggingCapabilities, - physicalMemoryLoggingSettings DellPhysicalMemoryLoggingSettings, - physicalMemoryLoggingStatus DellStatus -} - -physicalMemoryLoggingTable OBJECT-TYPE - SYNTAX SEQUENCE OF PhysicalMemoryLoggingTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0040 This object defines the Physical Memory Logging Table." - ::= { memoryGroup 40 } -physicalMemoryLoggingTableEntry OBJECT-TYPE - SYNTAX PhysicalMemoryLoggingTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0040.0001 This object defines the Physical Memory Logging Table Entry." - INDEX { physicalMemoryLoggingChassisIndex, - physicalMemoryLoggingIndex } - ::= { physicalMemoryLoggingTable 1 } - -physicalMemoryLoggingChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0040.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { physicalMemoryLoggingTableEntry 1 } -physicalMemoryLoggingIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0040.0001.0002 This attribute defines the index (one based) of the -physical memory logging." - ::= { physicalMemoryLoggingTableEntry 2 } -physicalMemoryLoggingCapabilities OBJECT-TYPE - SYNTAX DellPhysicalMemoryLoggingCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0040.0001.0003 This attribute defines the capabilities of the -physical memory logging." - ::= { physicalMemoryLoggingTableEntry 3 } -physicalMemoryLoggingSettings OBJECT-TYPE - SYNTAX DellPhysicalMemoryLoggingSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0040.0001.0004 This attribute defines the settings of the -physical memory logging." - ::= { physicalMemoryLoggingTableEntry 4 } -physicalMemoryLoggingStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0040.0001.0005 This attribute defines the status of the -physical memory logging." - ::= { physicalMemoryLoggingTableEntry 5 } - - -------------------------------------------------------------------------------- --- Redundant Memory Unit Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1300.50.1... -------------------------------------------------------------------------------- - -RedundantMemoryUnitTableEntry ::= SEQUENCE { - redundantMemoryUnitChassisIndex DellObjectRange, - redundantMemoryUnitIndex DellObjectRange, - redundantMemoryUnitStateCapabilities DellStateCapabilities, - redundantMemoryUnitStateSettings DellStateSettings, - redundantMemoryUnitRedundancyStatus DellStatusRedundancy, - redundantMemoryUnitName DellString, - redundantMemoryUnitStatus DellStatus -} - -redundantMemoryUnitTable OBJECT-TYPE - SYNTAX SEQUENCE OF RedundantMemoryUnitTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0050 This object defines the Redundant Memory Unit Table." - ::= { memoryGroup 50 } -redundantMemoryUnitTableEntry OBJECT-TYPE - SYNTAX RedundantMemoryUnitTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0050.0001 This object defines the Redundant Memory Unit Table Entry." - INDEX { redundantMemoryUnitChassisIndex, - redundantMemoryUnitIndex } - ::= { redundantMemoryUnitTable 1 } - -redundantMemoryUnitChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0050.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { redundantMemoryUnitTableEntry 1 } -redundantMemoryUnitIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0050.0001.0002 This attribute defines the index (one based) of the -redundant memory unit." - ::= { redundantMemoryUnitTableEntry 2 } -redundantMemoryUnitStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0050.0001.0003 This attribute defines the state capabilities of the -redundant memory unit." - ::= { redundantMemoryUnitTableEntry 3 } -redundantMemoryUnitStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0050.0001.0004 This attribute defines the state settings of the -redundant memory unit." - ::= { redundantMemoryUnitTableEntry 4 } -redundantMemoryUnitRedundancyStatus OBJECT-TYPE - SYNTAX DellStatusRedundancy - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0050.0001.0005 This attribute defines the redundancy status of the -redundant memory unit." - ::= { redundantMemoryUnitTableEntry 5 } -redundantMemoryUnitName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0050.0001.0006 This attribute defines the name of the -redundant memory unit." - ::= { redundantMemoryUnitTableEntry 6 } -redundantMemoryUnitStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0050.0001.0007 This attribute defines the status of the -redundant memory unit." - ::= { redundantMemoryUnitTableEntry 7 } - - -------------------------------------------------------------------------------- --- Physical Memory Card Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1300.60.1... -------------------------------------------------------------------------------- - -PhysicalMemoryCardTableEntry ::= SEQUENCE { - physicalMemoryCardChassisIndex DellObjectRange, - physicalMemoryCardIndex DellObjectRange, - physicalMemoryCardStateCapabilities DellStateCapabilities, - physicalMemoryCardStateSettings DellStateSettings, - physicalMemoryCardStatus DellStatus, - physicalMemoryCardName DellString, - physicalMemoryCardTotalNumberSockets DellUnsigned32BitRange, - physicalMemoryCardInUseNumberSockets DellUnsigned32BitRange, - physicalMemoryCardPhyMemArrayIndexReference DellObjectRange -} - -physicalMemoryCardTable OBJECT-TYPE - SYNTAX SEQUENCE OF PhysicalMemoryCardTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0060 This object defines the Physical Memory Card Table." - ::= { memoryGroup 60 } -physicalMemoryCardTableEntry OBJECT-TYPE - SYNTAX PhysicalMemoryCardTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1300.0060.0001 This object defines the Physical Memory Card Table Entry." - INDEX { physicalMemoryCardChassisIndex, - physicalMemoryCardIndex } - ::= { physicalMemoryCardTable 1 } - -physicalMemoryCardChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { physicalMemoryCardTableEntry 1 } -physicalMemoryCardIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0002 This attribute defines the index (one based) of the -physical memory card." - ::= { physicalMemoryCardTableEntry 2 } -physicalMemoryCardStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0003 This attribute defines the state capabilities of the -physical memory card." - ::= { physicalMemoryCardTableEntry 3 } -physicalMemoryCardStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0004 This attribute defines the state settings of the -physical memory card." - ::= { physicalMemoryCardTableEntry 4 } -physicalMemoryCardStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0005 This attribute defines the status of the -physical memory card." - ::= { physicalMemoryCardTableEntry 5 } -physicalMemoryCardName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0006 This attribute defines the name of the -physical memory card." - ::= { physicalMemoryCardTableEntry 6 } -physicalMemoryCardTotalNumberSockets OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0007 This attribute defines the total number of memory -sockets available on the physical memory card. 2,147,483,647 indicates -an unknown number of sockets." - ::= { physicalMemoryCardTableEntry 7 } -physicalMemoryCardInUseNumberSockets OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0008 This attribute defines the number of memory -sockets in use on the physical memory card. Zero indicates that the -physical memory card is not installed or has a configuration error. -2,147,483,647 indicates an unknown number of sockets." - ::= { physicalMemoryCardTableEntry 8 } -physicalMemoryCardPhyMemArrayIndexReference OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1300.0060.0001.0009 This attribute defines the index (one based) of the -Physical Memory Array Table entry for the physical memory array with the -same chassis index that this physical memory card is associated with." - ::= { physicalMemoryCardTableEntry 9 } - - -------------------------------------------------------------------------------- --- BIOS Setup Control Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- BIOS Setup Control Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.10.1.. -------------------------------------------------------------------------------- - -DellSpeakerControlCapabilitiesUnique ::= INTEGER { - unknown(1), -- speaker control capabilities are unknown - enableCapable(2), -- speaker can be enabled or disabled - lowCapable(4), -- speaker volume can be set to low - mediumCapable(8), -- speaker volume can be set to medium - highCapable(16), -- speaker volume can be set to high - allVolumeCapable(30) -- speaker volume can be set to low, medium or high -} -DellSpeakerControlSettingsUnique ::= INTEGER { - unknown(1), -- speaker control settings are unknown - enabled(2), -- speaker is enabled - low(4), -- speaker volume is low - medium(8), -- speaker volume is medium - high(16) -- speaker volume is high -} -DellNIFwakeonLanControlCapabilitiesUnique ::= INTEGER { - unknown(1), -- wake on LAN capabilities are unknown - enableCapable(2), -- wake on LAN can be enabled or disabled - addInCardCapable(4), -- wake on LAN by add in card capable - onBoardCapable(8), -- wake on LAN by onboard NIF capable - bothCapable(14) -} -DellNIFwakeonLanControlSettingsUnique ::= INTEGER { - unknown(1), -- wake on LAN settings are unknown - enabled(2), -- wake on LAN is enabled - addInCard(4), -- wake on LAN is by add in card - onBoard(8), -- wake on LAN is by onboard NIF - addInCardOrOnBoard(12) -- wake on LAN is by either add in card or onboard NIF -} -DellBootSequenceControlCapabilitiesUnique ::= INTEGER { - bootSequenceUnknown(1), -- boot sequence capabilities are unknown - bootFromDisketteFirstCapable(2), -- boot sequence can be diskette first - bootFromHardDriveFirstCapable(4), -- boot sequence can be IDE hard drive first - bootFromDisketteORHardDriveFirstCapable(6), -- boot sequence can be diskette or IDE hard drive first - bootFromDeviceListCapable(8), -- boot sequence can be device list - bootFromCDROMFirstCapable(16), -- boot sequence can be CD ROM first - allFirstCapable(30) -- boot sequence can be any of the above methods first -} -DellBootSequenceControlSettingsUnique ::= INTEGER { - bootSequenceUnknown(1), -- boot sequence settings are unknown - bootFromDisketteFirst(2), -- boot sequence is diskette first - bootFromHardDriveFirst(4), -- boot sequence is IDE hard drive first - bootFromDeviceList(8), -- boot sequence is device list - bootFromCDROMFirst(16) -- boot sequence is CD ROM first -} -DellBIOSPasswordControlCapabilitiesUnique ::= INTEGER { - passwordControlCapabilitiesUnknown(1), -- BIOS password capabilities are unknown - passwordControlEnableCapable(2), -- BIOS password can be enabled - passwordControlJumperDisableCapable(4), -- BIOS password can be jumper disabled - passwordControlEnableAndJumperDisableCapable(6) -} -DellBIOSPasswordControlSettingsUnique ::= INTEGER { - passwordControlSettingsUnknown(1), -- BIOS password settings are unknown - passwordControlEnabled(2), -- BIOS password is enabled - passwordControlJumperDisabled(4) -- BIOS password has been disabled by jumper -} -DellTPMSecurityControlCapabilities ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - offCapable(1), -- TPM security can be Off - onWithPrebootMeasurementsCapable(2), -- TPM security can be On with Pre-boot Measurements - onWithoutPrebootMeasurementsCapable(4) -- TPM security can be On without Pre-boot Measurements -} -DellTPMSecurityControlSetting ::= INTEGER { - -- off(0), - TPM security is Off - onWithPrebootMeasurements(1), -- TPM security is On with Pre-boot Measurements - onWithoutPrebootMeasurements(2) -- TPM security is On without Pre-boot Measurements -} - -BiosSetUpControlTableEntry ::= SEQUENCE { - biosSetUpControlchassisIndex DellObjectRange, - bSUCpointingDeviceControlCapabilities DellStateCapabilities, - bSUCpointingDeviceControlSettings DellStateSettings, - bSUCpointingDeviceControlStatus DellStatus, - bSUCpointingDeviceControlName DellString, - bSUCnumLockControlCapabilities DellStateCapabilities, - bSUCnumLockControlSettings DellStateSettings, - bSUCnumLockControlStatus DellStatus, - bSUCnumLockControlName DellString, - bSUCprocessorSerialNumberControlCapabilities DellStateCapabilities, - bSUCprocessorSerialNumberControlSettings DellStateSettings, - bSUCprocessorSerialNumberControlStatus DellStatus, - bSUCprocessorSerialNumberControlName DellString, - bSUCspeakerControlCapabilitiesUnique DellSpeakerControlCapabilitiesUnique, - bSUCspeakerControlSettingsUnique DellSpeakerControlSettingsUnique, - bSUCspeakerControlStatus DellStatus, - bSUCspeakerControlName DellString, - bSUCnIFwakeonLanControlCapabilitiesUnique DellNIFwakeonLanControlCapabilitiesUnique, - bSUCnIFwakeonLanControlSettingsUnique DellNIFwakeonLanControlSettingsUnique, - bSUCnIFwakeonLanControlStatus DellStatus, - bSUCnIFwakeonLanControlName DellString, - bSUCbootSequenceControlCapabilitiesUnique DellBootSequenceControlCapabilitiesUnique, - bSUCbootSequenceControlSettingsUnique DellBootSequenceControlSettingsUnique, - bSUCbootSequenceControlStatus DellStatus, - bSUCbootSequenceControlName DellString, - bSUCadministratorPasswordControlCapabilitiesUnique DellBIOSPasswordControlCapabilitiesUnique, - bSUCadministratorPasswordControlSettingsUnique DellBIOSPasswordControlSettingsUnique, - bSUCadministratorPasswordControlStatus DellStatus, - bSUCadministratorPasswordPasswordVerifyName DellString, - bSUCadministratorPasswordNewPasswordName DellString, - bSUCuserPasswordControlCapabilitiesUnique DellBIOSPasswordControlCapabilitiesUnique, - bSUCuserPasswordControlSettingsUnique DellBIOSPasswordControlSettingsUnique, - bSUCuserPasswordControlStatus DellStatus, - bSUCuserPasswordPasswordVerifyName DellString, - bSUCuserPasswordNewPasswordName DellString, - bSUCtpmSecurityControlCapabilities DellTPMSecurityControlCapabilities, - bSUCtpmSecurityControlSetting DellTPMSecurityControlSetting, - bSUCtpmSecurityControlStatus DellStatus, - bSUCtpmSecurityControlName DellString -} - -biosSetUpControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF BiosSetUpControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0010 This object defines the BIOS Setup Control Table." - ::= { biosSetUpControlGroup 10 } -biosSetUpControlTableEntry OBJECT-TYPE - SYNTAX BiosSetUpControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0010.0001 This object defines the BIOS Setup Control Table Entry." - INDEX { biosSetUpControlchassisIndex } - ::= { biosSetUpControlTable 1 } - -biosSetUpControlchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { biosSetUpControlTableEntry 1 } -bSUCpointingDeviceControlCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0002 This attribute defines the BIOS setup control capabilities -of the pointing Device." - ::= { biosSetUpControlTableEntry 2 } -bSUCpointingDeviceControlSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0003 This attribute defines the BIOS setup control settings -of the pointing device." - ::= { biosSetUpControlTableEntry 3 } -bSUCpointingDeviceControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0004 This attribute defines the BIOS setup control status -of the pointing device." - ::= { biosSetUpControlTableEntry 4 } -bSUCpointingDeviceControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0005 This attribute defines the BIOS setup control name -of the pointing device." - ::= { biosSetUpControlTableEntry 5 } -bSUCnumLockControlCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0006 This attribute defines the BIOS setup control capabilities -of the numeric lock." - ::= { biosSetUpControlTableEntry 6 } -bSUCnumLockControlSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0007 This attribute defines the BIOS setup control settings -of the numeric lock." - ::= { biosSetUpControlTableEntry 7 } -bSUCnumLockControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0008 This attribute defines the BIOS setup control status -of the numeric lock." - ::= { biosSetUpControlTableEntry 8 } -bSUCnumLockControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0009 This attribute defines the BIOS setup control name -of the numeric lock." - ::= { biosSetUpControlTableEntry 9 } -bSUCprocessorSerialNumberControlCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0010 This attribute defines the BIOS setup control capabilities -of the processor serial number." - ::= { biosSetUpControlTableEntry 10 } -bSUCprocessorSerialNumberControlSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0011 This attribute defines the BIOS setup control settings -of the processor serial number." - ::= { biosSetUpControlTableEntry 11 } -bSUCprocessorSerialNumberControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0012 This attribute defines the BIOS setup control status -of the processor serial number." - ::= { biosSetUpControlTableEntry 12 } -bSUCprocessorSerialNumberControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0013 This attribute defines the BIOS setup control name -of the processor serial number." - ::= { biosSetUpControlTableEntry 13 } -bSUCspeakerControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellSpeakerControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0014 This attribute defines the BIOS setup control capabilities -of the speaker." - ::= { biosSetUpControlTableEntry 14 } -bSUCspeakerControlSettingsUnique OBJECT-TYPE - SYNTAX DellSpeakerControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0015 This attribute defines the BIOS setup control settings -of the speaker." - ::= { biosSetUpControlTableEntry 15 } -bSUCspeakerControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0016 This attribute defines the BIOS setup control status -of the speaker." - ::= { biosSetUpControlTableEntry 16 } -bSUCspeakerControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0017 This attribute defines the BIOS setup control name -of the speaker." - ::= { biosSetUpControlTableEntry 17 } -bSUCnIFwakeonLanControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellNIFwakeonLanControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0018 This attribute defines the BIOS setup control capabilities -of the NIF wake on Lan." - ::= { biosSetUpControlTableEntry 18 } -bSUCnIFwakeonLanControlSettingsUnique OBJECT-TYPE - SYNTAX DellNIFwakeonLanControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0019 This attribute defines the BIOS setup control settings -of the NIF wake on Lan." - ::= { biosSetUpControlTableEntry 19 } -bSUCnIFwakeonLanControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0020 This attribute defines the BIOS setup control status -of the NIF wake on Lan." - ::= { biosSetUpControlTableEntry 20 } -bSUCnIFwakeonLanControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0021 This attribute defines the BIOS setup control name -of the NIF wake on Lan." - ::= { biosSetUpControlTableEntry 21 } -bSUCbootSequenceControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellBootSequenceControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0022 This attribute defines the BIOS setup control capabilities -of the boot sequence." - ::= { biosSetUpControlTableEntry 22 } -bSUCbootSequenceControlSettingsUnique OBJECT-TYPE - SYNTAX DellBootSequenceControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0023 This attribute defines the BIOS setup control settings -of the boot sequence." - ::= { biosSetUpControlTableEntry 23 } -bSUCbootSequenceControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0024 This attribute defines the BIOS setup control status -of the boot sequence." - ::= { biosSetUpControlTableEntry 24 } -bSUCbootSequenceControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0025 This attribute defines the BIOS setup control name -of the boot sequence." - ::= { biosSetUpControlTableEntry 25 } -bSUCadministratorPasswordControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellBIOSPasswordControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0026 This attribute defines the BIOS setup control capabilities -of the administrator password." - ::= { biosSetUpControlTableEntry 26 } -bSUCadministratorPasswordControlSettingsUnique OBJECT-TYPE - SYNTAX DellBIOSPasswordControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0027 This attribute defines the BIOS setup control settings -of the administrator password." - ::= { biosSetUpControlTableEntry 27 } -bSUCadministratorPasswordControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0028 This attribute defines the BIOS setup control status -of the administrator password." - ::= { biosSetUpControlTableEntry 28 } -bSUCadministratorPasswordPasswordVerifyName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0029 This attribute defines the BIOS setup control value -of the current administrator password." - ::= { biosSetUpControlTableEntry 29 } -bSUCadministratorPasswordNewPasswordName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0030 This attribute defines the BIOS setup control value -of the new administrator password. To set a new administrator password, -a successful set of the current administrator password must have been -done immediately preceeding this set." - ::= { biosSetUpControlTableEntry 30 } -bSUCuserPasswordControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellBIOSPasswordControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0031 This attribute defines the BIOS setup control capabilities -of the user password." - ::= { biosSetUpControlTableEntry 31 } -bSUCuserPasswordControlSettingsUnique OBJECT-TYPE - SYNTAX DellBIOSPasswordControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0032 This attribute defines the BIOS setup control settings -of the user password." - ::= { biosSetUpControlTableEntry 32 } -bSUCuserPasswordControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0033 This attribute defines the BIOS setup control status -of the user password." - ::= { biosSetUpControlTableEntry 33 } -bSUCuserPasswordPasswordVerifyName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0034 This attribute defines the BIOS setup control value -of the current user password." - ::= { biosSetUpControlTableEntry 34 } -bSUCuserPasswordNewPasswordName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0035 This attribute defines the BIOS setup control value -of the new user password. To set a new user password, a successful set of the -current user password must have been done immediately preceeding this set." - ::= { biosSetUpControlTableEntry 35 } -bSUCtpmSecurityControlCapabilities OBJECT-TYPE - SYNTAX DellTPMSecurityControlCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0036 This attribute defines the BIOS setup control capabilities -of Trusted Platform Module (TPM) security." - ::= { biosSetUpControlTableEntry 36 } -bSUCtpmSecurityControlSetting OBJECT-TYPE - SYNTAX DellTPMSecurityControlSetting - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0037 This attribute defines the BIOS setup control setting -of Trusted Platform Module (TPM) security." - ::= { biosSetUpControlTableEntry 37 } -bSUCtpmSecurityControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0038 This attribute defines the BIOS setup control status -of Trusted Platform Module (TPM) security." - ::= { biosSetUpControlTableEntry 38 } -bSUCtpmSecurityControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0010.0001.0039 This attribute defines the BIOS setup control name -of Trusted Platform Module (TPM) security." - ::= { biosSetUpControlTableEntry 39 } - - -------------------------------------------------------------------------------- --- Small Computer Systems Interface (SCSI) Control Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.20.1... -------------------------------------------------------------------------------- - -SCSIControlTableEntry ::= SEQUENCE { - sCSIControlchassisIndex DellObjectRange, - sCSIControlIndex DellObjectRange, - sCSIControlCapabilities DellStateCapabilities, - sCSIControlSettings DellStateSettings, - sCSIControlStatus DellStatus, - sCSIControlName DellString -} - -sCSIControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF SCSIControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0020 This object defines the Small Computer Systems Interface (SCSI) -Control Table." - ::= { biosSetUpControlGroup 20 } -sCSIControlTableEntry OBJECT-TYPE - SYNTAX SCSIControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0020.0001 This object defines the Small Computer Systems Interface (SCSI) -Control Table Entry." - INDEX { sCSIControlchassisIndex, - sCSIControlIndex } - ::= { sCSIControlTable 1 } - -sCSIControlchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0020.0001.0001 This attribute defines the index (one based) of the -assoicated chassis." - ::= { sCSIControlTableEntry 1 } -sCSIControlIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0020.0001.0002 This attribute defines the index (one based) of the -SCSI control." - ::= { sCSIControlTableEntry 2 } -sCSIControlCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0020.0001.0003 This attribute defines the state capabilities of the -SCSI control." - ::= { sCSIControlTableEntry 3 } -sCSIControlSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0020.0001.0004 This attribute defines the state settings of the -SCSI control." - ::= { sCSIControlTableEntry 4 } -sCSIControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0020.0001.0005 This attribute defines the status of the -SCSI control." - ::= { sCSIControlTableEntry 5 } -sCSIControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0020.0001.0006 This attribute defines the BIOS setup control name -of the SCSI device." - ::= { sCSIControlTableEntry 6 } - - -------------------------------------------------------------------------------- --- Parallel Port Control Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.30.1... -------------------------------------------------------------------------------- - -DellParallelPortControlCapabilitiesUnique ::= INTEGER { - unknown(1), -- parallel port capabilities are unknown - enableCapable(2), -- parallel port can be enabled or disabled - lpt1Capable(4), -- parallel port can be set to LPT1 - lpt1andEnableCapable(6), -- parallel port can be enabled and set to LPT1 - lpt2Capable(8), -- parallel port can be set to LPT2 - lpt2andEnableCapable(10), -- parallel port can be enabled and set to LPT2 - lpt3Capable(16), -- parallel port can be set to LPT3 - lpt3andEnableCapable(18), -- parallel port can be enabled and set to LPT3 - allParallelPortCapable(30) -- parallel port can be enabled and set to LPT1, LPT2 or LPT3 -} -DellParallelPortControlSettingsUnique ::= INTEGER { - unknown(1), -- parallel port settings are unknown - enabled(2), -- parallel port enabled - lpt1(4), -- parallel port set to LPT1 - lpt1Enabled(6), -- parallel port enabled and set to LPT1 - lpt2(8), -- parallel port set to LPT2 - lpt2Enabled(10), -- parallel port enabled and set to LPT2 - lpt3(16), -- parallel port set to LPT3 - lpt3Enabled(18) -- parallel port enabled and set to LPT3 -} -DellParallelPortControlModeCapabilitiesUnique ::= INTEGER { - unknown(1), -- mode capabilities are unknown - atCapable(2), -- parallel port can be set to AT mode - ps2Capable(4), -- parallel port can be set to PS/2 mode - atAndPS2Capable(6), -- parallel port can be set to AT mode or PS/2 mode - ecpCapable(8), -- parallel port can be set to ECP mode - eppCapable(16), -- parallel port can be set to EPP mode - allModeCapable(30) -- parallel port can be set to all modes -} -DellParallelPortControlModeSettingsUnique ::= INTEGER { - unknown(1), -- mode settings are unknown - atModeEnabled(2), -- parallel port set to AT mode - ps2ModeEnabled(4), -- parallel port set to PS/2 mode - ecpModeEnabled(8), -- parallel port set to ECP mode - eppModeEnabled(16) -- parallel port set to EPP mode -} - -ParallelPortControlTableEntry ::= SEQUENCE { - parallelPortControlchassisIndex DellObjectRange, - parallelPortControlIndex DellObjectRange, - parallelPortControlCapabilitiesUnique DellParallelPortControlCapabilitiesUnique, - parallelPortControlSettingsUnique DellParallelPortControlSettingsUnique, - parallelPortControlStatus DellStatus, - parallelPortControlName DellString, - parallelPortControlModeCapabilitiesUnique DellParallelPortControlModeCapabilitiesUnique, - parallelPortControlModeSettingsUnique DellParallelPortControlModeSettingsUnique -} - -parallelPortControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF ParallelPortControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0030 This object defines the Parallel Port Control Table." - ::= { biosSetUpControlGroup 30 } -parallelPortControlTableEntry OBJECT-TYPE - SYNTAX ParallelPortControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0030.0001 This object defines the Parallel Port Control Table Entry." - INDEX { parallelPortControlchassisIndex, - parallelPortControlIndex } - ::= { parallelPortControlTable 1 } - -parallelPortControlchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0030.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { parallelPortControlTableEntry 1 } -parallelPortControlIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0030.0001.0002 This attribute defines the index (one based) of the -parallel port control." - ::= { parallelPortControlTableEntry 2 } -parallelPortControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellParallelPortControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0030.0001.0003 This attribute defines the port capabilities of the -parallel port control." - ::= { parallelPortControlTableEntry 3 } -parallelPortControlSettingsUnique OBJECT-TYPE - SYNTAX DellParallelPortControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0030.0001.0004 This attribute defines the port settings of the -parallel port control." - ::= { parallelPortControlTableEntry 4 } -parallelPortControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0030.0001.0005 This attribute defines the status of the -parallel port control." - ::= { parallelPortControlTableEntry 5 } -parallelPortControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0030.0001.0006 This attribute defines the BIOS setup control name -of the parallel port." - ::= { parallelPortControlTableEntry 6 } -parallelPortControlModeCapabilitiesUnique OBJECT-TYPE - SYNTAX DellParallelPortControlModeCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0030.0001.0007 This attribute defines the mode capabilities of the -parallel port control." - ::= { parallelPortControlTableEntry 7 } -parallelPortControlModeSettingsUnique OBJECT-TYPE - SYNTAX DellParallelPortControlModeSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0030.0001.0008 This attribute defines the mode settings of the -parallel port control." - ::= { parallelPortControlTableEntry 8 } - - -------------------------------------------------------------------------------- --- Serial Port Control Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.40.1... -------------------------------------------------------------------------------- - -DellSerialPortControlCapabilitiesUnique ::= INTEGER { - unknown(1), -- serial port capabilities are unknown - enableCapable(2), -- serial port can be enabled or disabled - com1Capable(4), -- serial port can be set to COM1 - enableAndCom1Capable(6), -- serial port can be enabled and set to COM1 - com2Capable(8), -- serial port can be set to COM2 - enableAndCom2Capable(10), -- serial port can be enabled and set to COM2 - com3Capable(16), -- serial port can be set to COM3 - enableAndCom3Capable(18), -- serial port can be enabled and set to COM3 - com4Capable(32), -- serial port can be set to COM4 - enableAndCom4Capable(34), -- serial port can be enabled and set to COM4 - autoConfigCapable(64), -- serial port can be autoconfigured - com1OrCom3CapableAndAutoConfigCapable(86), - com2OrCom4CapableAndAutoConfigCapable(106), - allcomCapable(126) -- serial port supports all capabilities -} -DellSerialPortControlSettingsUnique ::= INTEGER { - unknown(1), -- serial port settings are unknown - enabled(2), -- serial port enabled - com1(4), -- serial port set to COM1 - com1Enabled(6), -- serial port enabled and set to COM1 - com2(8), -- serial port set to COM2 - com2Enabled(10), -- serial port enabled and set to COM2 - com3(16), -- serial port set to COM3 - com3Enabled(18), -- serial port enabled and set to COM3 - com4(32), -- serial port set to COM4 - com4Enabled(34), -- serial port enabled and set to COM4 - comPortsAutoConfig(64), -- serial port set to autoconfiguration - enabledAndAutoConfig(66) -- serial port enabled and set to autoconfiguration -} - -SerialPortControlTableEntry ::= SEQUENCE { - serialPortControlchassisIndex DellObjectRange, - serialPortControlIndex DellObjectRange, - serialPortControlCapabilitiesUnique DellSerialPortControlCapabilitiesUnique, - serialPortControlSettingsUnique DellSerialPortControlSettingsUnique, - serialPortControlStatus DellStatus, - serialPortControlName DellString -} - -serialPortControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF SerialPortControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0040 This object defines the Serial Port Control Table." - ::= { biosSetUpControlGroup 40 } -serialPortControlTableEntry OBJECT-TYPE - SYNTAX SerialPortControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0040.0001 This object defines the Serial Port Control Table Entry." - INDEX { serialPortControlchassisIndex, - serialPortControlIndex } - ::= { serialPortControlTable 1 } - -serialPortControlchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0040.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { serialPortControlTableEntry 1 } -serialPortControlIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0040.0001.0002 This attribute defines the index (one based) of the -serial port control." - ::= { serialPortControlTableEntry 2 } -serialPortControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellSerialPortControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0040.0001.0003 This attribute defines the port capabilities of the -serial port control." - ::= { serialPortControlTableEntry 3 } -serialPortControlSettingsUnique OBJECT-TYPE - SYNTAX DellSerialPortControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0040.0001.0004 This attribute defines the port settings of the -serial port control." - ::= { serialPortControlTableEntry 4 } -serialPortControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0040.0001.0005 This attribute defines the status of the -serial port control." - ::= { serialPortControlTableEntry 5 } -serialPortControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0040.0001.0006 This attribute defines the BIOS setup control name -of the serial port." - ::= { serialPortControlTableEntry 6 } - - -------------------------------------------------------------------------------- --- Universal Serial Bus (USB) Control Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.50.1... -------------------------------------------------------------------------------- - -UsbControlTableEntry ::= SEQUENCE { - usbControlchassisIndex DellObjectRange, - usbControlIndex DellObjectRange, - usbControlCapabilities DellStateCapabilities, - usbControlSettings DellStateSettings, - usbControlStatus DellStatus, - usbControlName DellString -} - -usbControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF UsbControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0050 This object defines the Universal Serial Bus (USB) Control Table." - ::= { biosSetUpControlGroup 50 } -usbControlTableEntry OBJECT-TYPE - SYNTAX UsbControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0050.0001 This object defines the Universal Serial Bus (USB) Control -Table Entry." - INDEX { usbControlchassisIndex, - usbControlIndex } - ::= { usbControlTable 1 } - -usbControlchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0050.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { usbControlTableEntry 1 } -usbControlIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0050.0001.0002 This attribute defines the index (one based) of the -USB control." - ::= { usbControlTableEntry 2 } -usbControlCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0050.0001.0003 This attribute defines the state capabilities of the -USB control." - ::= { usbControlTableEntry 3 } -usbControlSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0050.0001.0004 This attribute defines the state settings of the -USB control." - ::= { usbControlTableEntry 4 } -usbControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0050.0001.0005 This attribute defines the status of the USB control." - ::= { usbControlTableEntry 5 } -usbControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0050.0001.0006 This attribute defines the BIOS setup control name -of the USB device." - ::= { usbControlTableEntry 6 } - - -------------------------------------------------------------------------------- --- Integrated Device Electronics (IDE) Control Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.60.1... -------------------------------------------------------------------------------- - -DellideControlCapabilitiesUnique ::= INTEGER { - unknown(1), -- IDE capabilities are unknown - ideControlAutoConfigOrEnableCapable(2) -- IDE can be autoconfigured or enabled/disabled -} -DellideControlSettingsUnique ::= INTEGER { - unknown(1), -- IDE settings are unknown - ideControlAutoConfigEnabledOrEnabled(2) -- IDE set to autoconfigured or enabled -} - -IdeControlTableEntry ::= SEQUENCE { - ideControlchassisIndex DellObjectRange, - ideControlIndex DellObjectRange, - ideControlCapabilitiesUnique DellideControlCapabilitiesUnique, - ideControlSettingsUnique DellideControlSettingsUnique, - ideControlStatus DellStatus, - ideControlName DellString -} - -ideControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF IdeControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0060 This object defines the Integrated Device Electronics (IDE) -Control Table." - ::= { biosSetUpControlGroup 60 } -ideControlTableEntry OBJECT-TYPE - SYNTAX IdeControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0060.0001 This object defines the Integrated Device Electronics (IDE) -Control Table Entry." - INDEX { ideControlchassisIndex, - ideControlIndex } - ::= { ideControlTable 1 } - -ideControlchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0060.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { ideControlTableEntry 1 } -ideControlIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0060.0001.0002 This attribute defines the index (one based) of the -IDE control." - ::= { ideControlTableEntry 2 } -ideControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellideControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0060.0001.0003 This attribute defines the capabilities of the -IDE control." - ::= { ideControlTableEntry 3 } -ideControlSettingsUnique OBJECT-TYPE - SYNTAX DellideControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0060.0001.0004 This attribute defines the settings of the -IDE control." - ::= { ideControlTableEntry 4 } -ideControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0060.0001.0005 This attribute defines the state of the IDE control." - ::= { ideControlTableEntry 5 } -ideControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0060.0001.0006 This attribute defines the BIOS setup control name -of the IDE device." - ::= { ideControlTableEntry 6 } - - -------------------------------------------------------------------------------- --- Diskette Control Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.70.1... -------------------------------------------------------------------------------- - -DellDisketteControlCapabilitiesUnique ::= INTEGER { - unknown(1), -- diskette capabilities are unknown - disketteAutoConfigOrEnableCapable(2), -- diskette can be enabled or disabled - disketteReadOnlyCapable(4), -- diskette can be set to read only - disketteAutoConfigOrEnableCapableandReadOnlyCapable(6) -} -DellDisketteControlSettingsUnique ::= INTEGER { - unknown(1), -- Diskette Control state is unknown - disketteAutoConfigEnabledOrEnabled(2), -- Diskette Control is autoconfigurable or enabled - disketteisReadOnly(4) -- Diskette is in read only operation -} - -DisketteControlTableEntry ::= SEQUENCE { - disketteControlchassisIndex DellObjectRange, - disketteControlIndex DellObjectRange, - disketteControlCapabilitiesUnique DellDisketteControlCapabilitiesUnique, - disketteControlSettingsUnique DellDisketteControlSettingsUnique, - disketteControlStatus DellStatus, - disketteControlName DellString -} - -disketteControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF DisketteControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0070 This object defines the Diskette Control Table." - ::= { biosSetUpControlGroup 70 } -disketteControlTableEntry OBJECT-TYPE - SYNTAX DisketteControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0070.0001 This object defines the Diskette Control Table Entry." - INDEX { disketteControlchassisIndex, - disketteControlIndex } - ::= { disketteControlTable 1 } - -disketteControlchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0070.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { disketteControlTableEntry 1 } -disketteControlIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0070.0001.0002 This attribute defines the index (one based) of the -diskette control." - ::= { disketteControlTableEntry 2 } -disketteControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellDisketteControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0070.0001.0003 This attribute defines the capabilities of the -diskette control." - ::= { disketteControlTableEntry 3 } -disketteControlSettingsUnique OBJECT-TYPE - SYNTAX DellDisketteControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0070.0001.0004 This attribute defines the settings of the -diskette control." - ::= { disketteControlTableEntry 4 } -disketteControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0070.0001.0005 This attribute defines the status of the -diskette control." - ::= { disketteControlTableEntry 5 } -disketteControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0070.0001.0006 This attribute defines the BIOS setup control name -of the diskette device." - ::= { disketteControlTableEntry 6 } - - -------------------------------------------------------------------------------- --- Network Interface Control Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.80.1... -------------------------------------------------------------------------------- - -DellNetworkInterfaceControlCapabilitiesUnique ::= INTEGER { - unknown(1), -- network interface capabilities are unknown - enableCapable(2), -- network interface can be enabled or disabled - enableWithoutPXECapable(4) -- network interface can be enabled without PXE -} -DellNetworkInterfaceControlSettingsUnique ::= INTEGER { - unknown(1), -- network interface settings are unknown - enabled(2), -- network interface enabled - enabledWithoutPXE(4) -- network interface enabled without PXE -} - -NetworkInterfaceControlTableEntry ::= SEQUENCE { - networkInterfaceControlchassisIndex DellObjectRange, - networkInterfaceControlIndex DellObjectRange, - networkInterfaceControlCapabilitiesUnique DellNetworkInterfaceControlCapabilitiesUnique, - networkInterfaceControlSettingsUnique DellNetworkInterfaceControlSettingsUnique, - networkInterfaceControlStatus DellStatus, - networkInterfaceControlName DellString -} - -networkInterfaceControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF NetworkInterfaceControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0080 This object defines the Network Interface Control Table." - ::= { biosSetUpControlGroup 80 } -networkInterfaceControlTableEntry OBJECT-TYPE - SYNTAX NetworkInterfaceControlTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0080.0001 This object defines the Network Interface Control Table Entry." - INDEX { networkInterfaceControlchassisIndex, - networkInterfaceControlIndex } - ::= { networkInterfaceControlTable 1 } - -networkInterfaceControlchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0080.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { networkInterfaceControlTableEntry 1 } -networkInterfaceControlIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0080.0001.0002 This attribute defines the index (one based) of the -network interface control." - ::= { networkInterfaceControlTableEntry 2 } -networkInterfaceControlCapabilitiesUnique OBJECT-TYPE - SYNTAX DellNetworkInterfaceControlCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0080.0001.0003 This attribute defines the capabilities of the -network interface control." - ::= { networkInterfaceControlTableEntry 3 } -networkInterfaceControlSettingsUnique OBJECT-TYPE - SYNTAX DellNetworkInterfaceControlSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0080.0001.0004 This attribute defines the settings of the -network interface control." - ::= { networkInterfaceControlTableEntry 4 } -networkInterfaceControlStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0080.0001.0005 This attribute defines the status of the -network interface control." - ::= { networkInterfaceControlTableEntry 5 } -networkInterfaceControlName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0080.0001.0006 This attribute defines the BIOS setup control name -of the network interface." - ::= { networkInterfaceControlTableEntry 6 } - - -------------------------------------------------------------------------------- --- BIOS Setting Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1400.90.1... -------------------------------------------------------------------------------- - -DellBIOSSettingValueType ::= INTEGER { - integer(1), -- type is Integer - string(2), -- type is String - enumeration(3), -- type is Enumeration - orderedList(4) -- type is Ordered List -} - -BiosSettingTableEntry ::= SEQUENCE { - biosSettingChassisIndex DellObjectRange, - biosSettingIndex DellObjectRange, - biosSettingName DisplayString, - biosSettingDisplayName DisplayString, - biosSettingValueType DellBIOSSettingValueType, - biosSettingCurrentValue DisplayString, - biosSettingPendingValue DisplayString, - biosSettingDefaultValue DisplayString, - biosSettingPossibleValues DisplayString, - biosSettingDisplayOrder DellUnsigned32BitRange, - biosSettingGroupDisplayName DisplayString, - biosSettingFQDD DisplayString -} - -biosSettingTable OBJECT-TYPE - SYNTAX SEQUENCE OF BiosSettingTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0090 This object defines the BIOS Setting Table." - ::= { biosSetUpControlGroup 90 } -biosSettingTableEntry OBJECT-TYPE - SYNTAX BiosSettingTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1400.0090.0001 This object defines the BIOS Setting Table Entry." - INDEX { biosSettingChassisIndex, - biosSettingIndex } - ::= { biosSettingTable 1 } - -biosSettingChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { biosSettingTableEntry 1 } -biosSettingIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0002 This attribute defines the index (one based) of the -BIOS setting." - ::= { biosSettingTableEntry 2 } -biosSettingName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0003 This attribute defines the name of the BIOS setting." - ::= { biosSettingTableEntry 3 } -biosSettingDisplayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0004 This attribute defines the display name of the BIOS setting." - ::= { biosSettingTableEntry 4 } -biosSettingValueType OBJECT-TYPE - SYNTAX DellBIOSSettingValueType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0005 This attribute defines the type of the BIOS setting value." - ::= { biosSettingTableEntry 5 } -biosSettingCurrentValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0006 This attribute defines the current value of the BIOS setting. -If value type is orderedList(4), value is an ordered comma-separated list of values -if there is more than one value." - ::= { biosSettingTableEntry 6 } -biosSettingPendingValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0007 This attribute defines the pending value of the BIOS setting. -This value will not take effect until some point in the future. This would typically -be used to represent a value that could not be changed until a system reset. -If value type is orderedList(4), value is an ordered comma-separated list of values -if there is more than one value." - ::= { biosSettingTableEntry 7 } -biosSettingDefaultValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0008 This attribute defines the default value of the BIOS setting. -If value type is orderedList(4), value is an ordered comma-separated list of values -if there is more than one value." - ::= { biosSettingTableEntry 8 } -biosSettingPossibleValues OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0009 This attribute defines the possible values of the BIOS setting. -If value type is integer(1) or string(2), no value is returned. If value type is -enumeration(3) or orderedList(4), value is a comma-separated list of values -if there is more than one value." - ::= { biosSettingTableEntry 9 } -biosSettingDisplayOrder OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0010 This attribute defines the recommended display order of the -BIOS setting within its BIOS setting group. This value can be used to display -BIOS settings from lowest number to highest number." - ::= { biosSettingTableEntry 10 } -biosSettingGroupDisplayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0011 This attribute defines the display name of the BIOS setting -group for the BIOS setting." - ::= { biosSettingTableEntry 11 } -biosSettingFQDD OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1400.0090.0001.0012 This attribute defines the Fully Qualified Device Descriptor -(FQDD) for the BIOS setting." - ::= { biosSettingTableEntry 12 } - - -------------------------------------------------------------------------------- --- Local Response Agent (LRA) Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1500 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Local Response Agent (LRA) Global Settings Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1500.10.1.. -------------------------------------------------------------------------------- - -DellLocalResponseAgentCapabilitiesUnique ::= INTEGER { - -- If set to 0 (zero), LRA has no capabilities - speakerControlCapable(1), -- LRA capable of speaker beep - consoleAlertCapable(2), -- LRA capable of console alert - broadcastMessageCapable(4), -- LRA capable of broadcast message - osShutDownCapable(8), -- LRA capable of operating system shutdown - rebootCapable(16), -- LRA capable of system reboot - powerCycleCapable(32), -- LRA capable of system power cycle - powerOFFCapable(64), -- LRA capable of system power off - executeApplicationCapable(256), -- LRA capable of executing user-specified application - lraFullyCapable(383) -- all LRA capabilities -} -DellLRAThermalShutdownCapabilitiesUnique ::= INTEGER { - -- If set to 0 (zero), LRA has no thermal shutdown capabilities - unknownCapabilities(1), -- thermal shutdown capabilities are unknown - enableCapable(2), -- thermal shutdown can be enabled or disabled - warningCapable(4), -- thermal shutdown can be set to activate on warning - enableOnWarningCapable(6), - failureCapable(8), -- thermal shutdown can be set to activate on failure - enableOnFailureCapable(10), - enableOnWarningOrFailureCapable(14) -} -DellLRAThermalShutdownStateSettingsUnique ::= INTEGER { - -- If set to 0 (zero), LRA thermal shutdown is disabled - unknown(1), -- thermal shutdown settings are unknown - activatedOnWarning(6), -- thermal shutdown set to activate on warning - activatedOnFailure(10) -- thermal shutdown set to activate on failure -} - -LRAGlobalSettingsTableEntry ::= SEQUENCE { - lRAGlobalchassisIndex DellObjectRange, - lRAGlobalState DellStateSettings, - lRAGlobalSettingsDisableTimeoutValue DellUnsigned32BitRange, - lRAGlobalSettingsCapabilitiesUnique DellLocalResponseAgentCapabilitiesUnique, - lRAGlobalThermalShutdownCapabilitiesUnique DellLRAThermalShutdownCapabilitiesUnique, - lRAGlobalThermalShutdownStateSettingsUnique DellLRAThermalShutdownStateSettingsUnique -} - -lRAGlobalSettingsTable OBJECT-TYPE - SYNTAX SEQUENCE OF LRAGlobalSettingsTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1500.0010 This object defines the Local Response Agent (LRA) Global Settings -Table." - ::= { lraGroup 10 } -lRAGlobalSettingsTableEntry OBJECT-TYPE - SYNTAX LRAGlobalSettingsTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1500.0010.0001 This object defines the Local Response Agent (LRA) Global -Settings Table Entry." - INDEX { lRAGlobalchassisIndex } - ::= { lRAGlobalSettingsTable 1 } - -lRAGlobalchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { lRAGlobalSettingsTableEntry 1 } -lRAGlobalState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0010.0001.0002 This attribute defines the state settings of the -Local Response Agent." - ::= { lRAGlobalSettingsTableEntry 2 } -lRAGlobalSettingsDisableTimeoutValue OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0010.0001.0003 This attribute defines the timeout duration in seconds -that the Local Response Agent will be disabled after a machine shutdown and -reboot." - ::= { lRAGlobalSettingsTableEntry 3 } -lRAGlobalSettingsCapabilitiesUnique OBJECT-TYPE - SYNTAX DellLocalResponseAgentCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0010.0001.0004 This attribute defines the global settings capabilities -that all Local Response Agents may or may not allow to be set or reset." - ::= { lRAGlobalSettingsTableEntry 4 } -lRAGlobalThermalShutdownCapabilitiesUnique OBJECT-TYPE - SYNTAX DellLRAThermalShutdownCapabilitiesUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0010.0001.0005 This attribute defines the thermal shutdown capabilities -of the Local Response Agent." - ::= { lRAGlobalSettingsTableEntry 5 } -lRAGlobalThermalShutdownStateSettingsUnique OBJECT-TYPE - SYNTAX DellLRAThermalShutdownStateSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0010.0001.0006 This attribute defines the thermal shutdown settings -of the Local Response Agent." - ::= { lRAGlobalSettingsTableEntry 6 } - - -------------------------------------------------------------------------------- --- Local Response Agent (LRA) Action Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1500.20.1... -------------------------------------------------------------------------------- - -DellLocalResponseAgentSettingsUnique ::= INTEGER { - speakerControl(1), -- issue speaker beep - consoleAlert(2), -- issue console alert - broadcastMessage(4), -- issue broadcast message - osShutDown(8), -- issue operating system shutdown - reboot(16), -- issue system reboot - powerCycle(32), -- issue system power cycle - powerOFF(64), -- issue system power off - executeApplication(256), -- execute user-specified application - allLRASettingsUnique(383) -- all LRA settings -} - -LRAActionTableTableEntry ::= SEQUENCE { - lRAActionTablechassisIndex DellObjectRange, - lRAActionTableActionNumberIndex DellUnsigned16BitRange, - lRAActionTableUserApplicationName DisplayString (SIZE (0..256)), - lRAActionTableSettingsUnique DellLocalResponseAgentSettingsUnique -} - -lRAActionTableTable OBJECT-TYPE - SYNTAX SEQUENCE OF LRAActionTableTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1500.0020 This object defines the Local Response Agent (LRA) Action Table." - ::= { lraGroup 20 } -lRAActionTableTableEntry OBJECT-TYPE - SYNTAX LRAActionTableTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1500.0020.0001 This object defines the Local Response Agent (LRA) Action -Table Entry." - INDEX { lRAActionTablechassisIndex, - lRAActionTableActionNumberIndex } - ::= { lRAActionTableTable 1 } - -lRAActionTablechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { lRAActionTableTableEntry 1 } -lRAActionTableActionNumberIndex OBJECT-TYPE - SYNTAX DellUnsigned16BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0020.0001.0002 This attribute defines the action number index -of the LRA action. The currently supported values are: - 160 temperature failure action definition - 168 cooling device failure action definition - 172 voltage failure action definition - 200 temperature warning action definition - 202 voltage warning action definition - 204 cooling device warning action definition - 206 amperage failure action definition - 208 amperage warning action definition - 210 redundancy unit redundancy lost action definition - 212 redundancy unit redundancy degraded action definition - 214 power supply failure action definition - 220 chassis intrusion action definition - 228 memory device noncritical action definition - 474 memory device critical action definition - 1006 automatic system recovery (ASR) action definition - 1353 power supply warning action definition - 1553 log near full action definition - 1554 log full action definition - 1603 processor warning action definition - 1604 processor failure action definition - 1703 battery warning action definition - 1704 battery failure action definition" - ::= { lRAActionTableTableEntry 2 } -lRAActionTableUserApplicationName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..256)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0020.0001.0003 This attribute defines the name of the user application -executable path and file name to execute by the Local Response Agent if the -value executeApplication was set." - ::= { lRAActionTableTableEntry 3 } -lRAActionTableSettingsUnique OBJECT-TYPE - SYNTAX DellLocalResponseAgentSettingsUnique - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1500.0020.0001.0004 This attribute defines the settings for the LRA action." - ::= { lRAActionTableTableEntry 4 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600 -------------------------------------------------------------------------------- - - -DellCooOwnershipCodes ::= INTEGER { - other(1), -- ownership code is other than following values - unknown(2), -- ownership code is unknown - owned(3), -- ownership code is owned - leased(4), -- ownership code is leased - rented(5), -- ownership code is rented - offOfLease(6), -- ownership code is off of lease - transfer(7) -- ownership code is transfer -} -DellCooHourDayDurationType ::= INTEGER { - unknown(1), -- duration type is unknown - hours(2), -- duration type is hours - days(3) -- duration type is days -} -DellCooDayMonthDurationType ::= INTEGER { - unknown(1), -- duration type is unknown - days(3), -- duration type is days - months(4) -- duration type is months -} -DellCooMonthYearDurationType ::= INTEGER { - unknown(1), -- duration type is unknown - months(4), -- duration type is months - years(5) -- duration type is years -} - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.10.1.. -------------------------------------------------------------------------------- - -CooTableEntry ::= SEQUENCE { - coochassisIndex DellObjectRange, - cooState DellStateSettings, - cooAquisitionPurchaseCost DellUnsigned32BitRange, - cooAquisitionWayBillNumber DellUnsigned32BitRange, - cooAquisitionInstallDateName DellDateName, - cooAquisitionPurchaseOrder DellUnsigned32BitRange, - cooAquisitionPurchaseDateName DellDateName, - cooAquisitionSigningAuthorityName DellCostofOwnershipString, - cooOriginalMachineConfigurationExpensed DellBoolean, - cooOriginalMachineConfigurationVendorName DellCostofOwnershipString, - cooCostCenterInformationVendorName DellCostofOwnershipString, - cooUserInformationUserName DellCostofOwnershipString, - cooExtendedWarrantyStartDateName DellDateName, - cooExtendedWarrantyEndDateName DellDateName, - cooExtendedWarrantyCost DellUnsigned32BitRange, - cooExtendedWarrantyProviderName DellCostofOwnershipString, - cooOwnershipCode DellCooOwnershipCodes, - cooCorporateOwnerName DellCostofOwnershipString, - cooHazardousWasteCodeName DellCostofOwnershipString, - cooDeploymentDateLength DellUnsigned32BitRange, - cooDeploymentDurationType DellCooHourDayDurationType, - cooTrainingName DellCostofOwnershipString, - cooOutsourcingProblemDescriptionName DellCostofOwnershipString, - cooOutsourcingServiceFeeName DellCostofOwnershipString, - cooOutsourcingSigningAuthorityName DellCostofOwnershipString, - cooOutsourcingProviderFeeName DellCostofOwnershipString, - cooOutsourcingProviderServiceLevelName DellCostofOwnershipString, - cooInsuranceCompanyName DellCostofOwnershipString, - cooBoxAssetTagName DellCostofOwnershipString, - cooBoxSystemName DellCostofOwnershipString, - cooBoxCPUSerialNumberName DellCostofOwnershipString, - cooOperatingSystemUpgradeTypeName DellCostofOwnershipString, - cooOperatingSystemUpgradePatchLevelName DellCostofOwnershipString, - cooOperatingSystemUpgradeDate DellCostofOwnershipString, - cooDepreciationDuration DellUnsigned32BitRange, - cooDepreciationDurationType DellCooMonthYearDurationType, - cooDepreciationPercentage DellUnsigned32BitRange, - cooDepreciationMethodName DellCostofOwnershipString, - cooRegistrationIsRegistered DellBoolean -} - -cooTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0010 This object defines the Cost Of Ownership (COO) Table." - ::= { cooGroup 10 } -cooTableEntry OBJECT-TYPE - SYNTAX CooTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0010.0001 This object defines the Cost Of Ownership (COO) Table Entry." - INDEX { coochassisIndex } - ::= { cooTable 1 } - -coochassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooTableEntry 1 } -cooState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0002 This attribute defines the state settings of the -COO information." - ::= { cooTableEntry 2 } -cooAquisitionPurchaseCost OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0003 This attribute defines the purchase cost of the system." - ::= { cooTableEntry 3 } -cooAquisitionWayBillNumber OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0004 This attribute defines the waybill number of the system." - ::= { cooTableEntry 4 } -cooAquisitionInstallDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0005 This attribute defines the install date and time of the -system. Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes, ss are the seconds, uuuuuu are the microseconds and -+fff or -fff is the offset from UTC in minutes." - ::= { cooTableEntry 5 } -cooAquisitionPurchaseOrder OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0006 This attribute defines the purchase order number of the -system." - ::= { cooTableEntry 6 } -cooAquisitionPurchaseDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0007 This attribute defines the purchase date and time of the -system. Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes, ss are the seconds, uuuuuu are the microseconds and -+fff or -fff is the offset from UTC in minutes." - ::= { cooTableEntry 7 } -cooAquisitionSigningAuthorityName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0008 This attribute defines the name of the signing authority -for the system." - ::= { cooTableEntry 8 } -cooOriginalMachineConfigurationExpensed OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0009 This attribute defines if the purchase of the system -was expensed or not." - ::= { cooTableEntry 9 } -cooOriginalMachineConfigurationVendorName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0010 This attribute defines the name of the vendor of the -system." - ::= { cooTableEntry 10 } -cooCostCenterInformationVendorName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0011 This attribute defines the cost center name of the -system." - ::= { cooTableEntry 11 } -cooUserInformationUserName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0012 This attribute defines the name of the user of the -system." - ::= { cooTableEntry 12 } -cooExtendedWarrantyStartDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0013 This attribute defines the extended warranty start date -and time for the system. Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes, ss are the seconds, uuuuuu are the microseconds and -+fff or -fff is the offset from UTC in minutes." - ::= { cooTableEntry 13 } -cooExtendedWarrantyEndDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0014 This attribute defines the extended warranty end date -and time for the system. Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes, ss are the seconds, uuuuuu are the microseconds and -+fff or -fff is the offset from UTC in minutes." - ::= { cooTableEntry 14 } -cooExtendedWarrantyCost OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0015 This attribute defines the extended warranty cost -for the system." - ::= { cooTableEntry 15 } -cooExtendedWarrantyProviderName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0016 This attribute defines the name of the extended warranty -provider for the system." - ::= { cooTableEntry 16 } -cooOwnershipCode OBJECT-TYPE - SYNTAX DellCooOwnershipCodes - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0017 This attribute defines the ownership code for the system." - ::= { cooTableEntry 17 } -cooCorporateOwnerName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0018 This attribute defines the name of the corporate owner -of the system." - ::= { cooTableEntry 18 } -cooHazardousWasteCodeName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0019 This attribute defines the hazardous waste code name -for the system." - ::= { cooTableEntry 19 } -cooDeploymentDateLength OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0020 This attribute defines the deployment time length -for the system." - ::= { cooTableEntry 20 } -cooDeploymentDurationType OBJECT-TYPE - SYNTAX DellCooHourDayDurationType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0021 This attribute defines the deployment duration time unit -for the Dell System." - ::= { cooTableEntry 21 } -cooTrainingName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0022 This attribute defines the training name for the system." - ::= { cooTableEntry 22 } -cooOutsourcingProblemDescriptionName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0023 This attribute defines the outsourcing problem description -for the system." - ::= { cooTableEntry 23 } -cooOutsourcingServiceFeeName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0024 This attribute defines the outsourcing service fee -for the system." - ::= { cooTableEntry 24 } -cooOutsourcingSigningAuthorityName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0025 This attribute defines the name of the person who has -signing authority for service." - ::= { cooTableEntry 25 } -cooOutsourcingProviderFeeName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0026 This attribute defines any additional outsourcing -charge for service." - ::= { cooTableEntry 26 } -cooOutsourcingProviderServiceLevelName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0027 This attribute defines the service level agreement -for service." - ::= { cooTableEntry 27 } -cooInsuranceCompanyName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0028 This attribute defines the name of the company -insuring the system." - ::= { cooTableEntry 28 } -cooBoxAssetTagName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0029 This attribute defines the name the system asset tag." - ::= { cooTableEntry 29 } -cooBoxSystemName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0030 This attribute defines the name of the system." - ::= { cooTableEntry 30 } -cooBoxCPUSerialNumberName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0031 This attribute defines the name of the CPU serial -number in the system." - ::= { cooTableEntry 31 } -cooOperatingSystemUpgradeTypeName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0032 This attribute defines the name the operating system -on the system." - ::= { cooTableEntry 32 } -cooOperatingSystemUpgradePatchLevelName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0033 This attribute defines the operating system patch level -of the system." - ::= { cooTableEntry 33 } -cooOperatingSystemUpgradeDate OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0034 This attribute defines the operating system upgrade date -of the system." - ::= { cooTableEntry 34 } -cooDepreciationDuration OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0035 This attribute defines the depreciation duration time -for the system." - ::= { cooTableEntry 35 } -cooDepreciationDurationType OBJECT-TYPE - SYNTAX DellCooMonthYearDurationType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0036 This attribute defines the depreciation duration time -unit for the system." - ::= { cooTableEntry 36 } -cooDepreciationPercentage OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0037 This attribute defines the percentage of depreciation -for the system." - ::= { cooTableEntry 37 } -cooDepreciationMethodName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0038 This attribute defines the method of Depreciation -for the system." - ::= { cooTableEntry 38 } -cooRegistrationIsRegistered OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0010.0001.0039 This attribute defines if the system is registered -or not." - ::= { cooTableEntry 39 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Service Contract Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.20.1... -------------------------------------------------------------------------------- - -CooServiceContractTableEntry ::= SEQUENCE { - cooServiceContractchassisIndex DellObjectRange, - cooServiceContractIndex DellObjectRange, - cooServiceContractState DellStateSettings, - cooServiceContractWasRenewed DellBoolean, - cooServiceContractTypeName DellCostofOwnershipString, - cooServiceContractVendorName DellCostofOwnershipString -} - -cooServiceContractTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooServiceContractTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0020 This object defines the Cost Of Ownership (COO) Service Contract -Table." - ::= { cooGroup 20 } -cooServiceContractTableEntry OBJECT-TYPE - SYNTAX CooServiceContractTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0020.0001 This object defines the Cost Of Ownership (COO) Service -Contract Table Entry." - INDEX { cooServiceContractchassisIndex, - cooServiceContractIndex } - ::= { cooServiceContractTable 1 } - -cooServiceContractchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooServiceContractTableEntry 1 } -cooServiceContractIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0020.0001.0002 This attribute defines the index (one based) of the -COO service contract." - ::= { cooServiceContractTableEntry 2 } -cooServiceContractState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0020.0001.0003 This attribute defines the state settings of the -COO service contract." - ::= { cooServiceContractTableEntry 3 } -cooServiceContractWasRenewed OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0020.0001.0004 This attribute defines if the COO service contract -was renewed not." - ::= { cooServiceContractTableEntry 4 } -cooServiceContractTypeName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0020.0001.0005 This attribute defines the name of the type of -COO service contract." - ::= { cooServiceContractTableEntry 5 } -cooServiceContractVendorName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0020.0001.0006 This attribute defines the name of the provider of the -COO service contract." - ::= { cooServiceContractTableEntry 6 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Cost Event Log Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.30.1... -------------------------------------------------------------------------------- - -CooCostEventLogTableEntry ::= SEQUENCE { - cooCostEventLogchassisIndex DellObjectRange, - cooCostEventLogIndex DellObjectRange, - cooCostEventLogState DellStateSettings, - cooCostEventLogDuration DellUnsigned32BitRange, - cooCostEventLogDurationType DellCooHourDayDurationType, - cooCostEventLogDescriptionName DellCostofOwnershipString -} - -cooCostEventLogTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooCostEventLogTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0030 This object defines the Cost Of Ownership (COO) Cost Event Log -Table." - ::= { cooGroup 30 } -cooCostEventLogTableEntry OBJECT-TYPE - SYNTAX CooCostEventLogTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0030.0001 This object defines the Cost Of Ownership (COO) Cost Event -Log Table Entry." - INDEX { cooCostEventLogchassisIndex, - cooCostEventLogIndex } - ::= { cooCostEventLogTable 1 } - -cooCostEventLogchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0030.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooCostEventLogTableEntry 1 } -cooCostEventLogIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0030.0001.0002 This attribute defines the index (one based) of the -COO cost event log entry." - ::= { cooCostEventLogTableEntry 2 } -cooCostEventLogState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0030.0001.0003 This attribute defines the state settings of the -COO cost event log entry." - ::= { cooCostEventLogTableEntry 3 } -cooCostEventLogDuration OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0030.0001.0004 This attribute defines the duration of the -COO cost event." - ::= { cooCostEventLogTableEntry 4 } -cooCostEventLogDurationType OBJECT-TYPE - SYNTAX DellCooHourDayDurationType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0030.0001.0005 This attribute defines the duration type of the -COO cost event." - ::= { cooCostEventLogTableEntry 5 } -cooCostEventLogDescriptionName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0030.0001.0006 This attribute defines the description of the -COO cost event." - ::= { cooCostEventLogTableEntry 6 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Warranty Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.40.1... -------------------------------------------------------------------------------- - -CooWarrantyTableEntry ::= SEQUENCE { - cooWarrantychassisIndex DellObjectRange, - cooWarrantyIndex DellObjectRange, - cooWarrantyState DellStateSettings, - cooWarrantyDuration DellUnsigned32BitRange, - cooWarrantyDurationType DellCooDayMonthDurationType, - cooWarrantyEndDateName DellDateName, - cooWarrantyCost DellUnsigned32BitRange -} - -cooWarrantyTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooWarrantyTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0040 This object defines the Cost Of Ownership (COO) Warranty Table." - ::= { cooGroup 40 } -cooWarrantyTableEntry OBJECT-TYPE - SYNTAX CooWarrantyTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0040.0001 This object defines the Cost Of Ownership (COO) Warranty -Table Entry." - INDEX { cooWarrantychassisIndex, - cooWarrantyIndex } - ::= { cooWarrantyTable 1 } - -cooWarrantychassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0040.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooWarrantyTableEntry 1 } -cooWarrantyIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0040.0001.0002 This attribute defines the index (one based) of the -COO warranty." - ::= { cooWarrantyTableEntry 2 } -cooWarrantyState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0040.0001.0003 This attribute defines the state settings of the -COO warranty." - ::= { cooWarrantyTableEntry 3 } -cooWarrantyDuration OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0040.0001.0004 This attribute defines the duration of the COO warranty." - ::= { cooWarrantyTableEntry 4 } -cooWarrantyDurationType OBJECT-TYPE - SYNTAX DellCooDayMonthDurationType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0040.0001.0005 This attribute defines the duration type of the -COO warranty." - ::= { cooWarrantyTableEntry 5 } -cooWarrantyEndDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0040.0001.0006 This attribute defines the end date of the COO warranty. -Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes, ss are the seconds, uuuuuu are the microseconds and -+fff or -fff is the offset from UTC in minutes." - ::= { cooWarrantyTableEntry 6 } -cooWarrantyCost OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0040.0001.0007 This attribute defines the cost of the COO warranty." - ::= { cooWarrantyTableEntry 7 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Lease Information Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.50.1... -------------------------------------------------------------------------------- - -CooLeaseInformationTableEntry ::= SEQUENCE { - cooLeaseInformationchassisIndex DellObjectRange, - cooLeaseInformationIndex DellObjectRange, - cooLeaseInformationState DellStateSettings, - cooLeaseInformationMultipleSchedules DellBoolean, - cooLeaseInformationBuyOutAmount DellUnsigned32BitRange, - cooLeaseInformationLeaseRateFactor DellUnsigned32BitRange, - cooLeaseInformationEndDateName DellDateName, - cooLeaseInformationFairMarketValue DellUnsigned32BitRange, - cooLeaseInformationLessorName DellCostofOwnershipString -} - -cooLeaseInformationTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooLeaseInformationTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0050 This object defines the Cost Of Ownership (COO) Lease Information -Table." - ::= { cooGroup 50 } -cooLeaseInformationTableEntry OBJECT-TYPE - SYNTAX CooLeaseInformationTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0050.0001 This object defines the Cost Of Ownership (COO) Lease -Information Table Entry." - INDEX { cooLeaseInformationchassisIndex, - cooLeaseInformationIndex } - ::= { cooLeaseInformationTable 1 } - -cooLeaseInformationchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooLeaseInformationTableEntry 1 } -cooLeaseInformationIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0002 This attribute defines the index (one based) of the -COO lease information." - ::= { cooLeaseInformationTableEntry 2 } -cooLeaseInformationState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0003 This attribute defines the state settings of the -COO lease information." - ::= { cooLeaseInformationTableEntry 3 } -cooLeaseInformationMultipleSchedules OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0004 This attribute defines if there are multiple schedules -for this lease." - ::= { cooLeaseInformationTableEntry 4 } -cooLeaseInformationBuyOutAmount OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0005 This attribute defines buy out amount for this lease." - ::= { cooLeaseInformationTableEntry 5 } -cooLeaseInformationLeaseRateFactor OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0006 This attribute defines the rate factor for this lease." - ::= { cooLeaseInformationTableEntry 6 } -cooLeaseInformationEndDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0007 This attribute defines the end date for this lease. -Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes, ss are the seconds, uuuuuu are the microseconds and -+fff or -fff is the offset from UTC in minutes." - ::= { cooLeaseInformationTableEntry 7 } -cooLeaseInformationFairMarketValue OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0008 This attribute defines the fair market value -for this lease." - ::= { cooLeaseInformationTableEntry 8 } -cooLeaseInformationLessorName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0050.0001.0009 This attribute defines the name of the lessor -for this lease." - ::= { cooLeaseInformationTableEntry 9 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Schedule Number Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.60.1... -------------------------------------------------------------------------------- - -CooScheduleNumberTableEntry ::= SEQUENCE { - cooScheduleNumberchassisIndex DellObjectRange, - cooScheduleNumberIndex DellObjectRange, - cooScheduleNumberState DellStateSettings, - cooScheduleNumberLeaseInformationIndexReference DellUnsigned32BitRange, - cooScheduleNumberDescriptionName DellCostofOwnershipString -} - -cooScheduleNumberTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooScheduleNumberTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0060 This object defines the Cost Of Ownership (COO) Schedule Number -Table." - ::= { cooGroup 60 } -cooScheduleNumberTableEntry OBJECT-TYPE - SYNTAX CooScheduleNumberTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0060.0001 This object defines the Cost Of Ownership (COO) Schedule Number -Table Entry." - INDEX { cooScheduleNumberchassisIndex, - cooScheduleNumberIndex } - ::= { cooScheduleNumberTable 1 } - -cooScheduleNumberchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0060.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooScheduleNumberTableEntry 1 } -cooScheduleNumberIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0060.0001.0002 This attribute defines the index (one based) of the -COO schedule number." - ::= { cooScheduleNumberTableEntry 2 } -cooScheduleNumberState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0060.0001.0003 This attribute defines the state settings of the -COO schedule number." - ::= { cooScheduleNumberTableEntry 3 } -cooScheduleNumberLeaseInformationIndexReference OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0060.0001.0004 This attribute defines the index (one based) of the -COO lease information associated with the COO schedule number." - ::= { cooScheduleNumberTableEntry 4 } -cooScheduleNumberDescriptionName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0060.0001.0005 This attribute defines the description of the -COO schedule number." - ::= { cooScheduleNumberTableEntry 5 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Options Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.70.1... -------------------------------------------------------------------------------- - -CooOptionsTableEntry ::= SEQUENCE { - cooOptionschassisIndex DellObjectRange, - cooOptionsIndex DellObjectRange, - cooOptionsState DellStateSettings, - cooOptionsLeaseInformationIndexReference DellUnsigned32BitRange, - cooOptionsDescriptionName DellCostofOwnershipString -} - -cooOptionsTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooOptionsTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0070 This object defines the Cost Of Ownership (COO) Options Table." - ::= { cooGroup 70 } -cooOptionsTableEntry OBJECT-TYPE - SYNTAX CooOptionsTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0070.0001 This object defines the Cost Of Ownership (COO) Options Table -Entry." - INDEX { cooOptionschassisIndex, - cooOptionsIndex } - ::= { cooOptionsTable 1 } - -cooOptionschassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0070.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooOptionsTableEntry 1 } -cooOptionsIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0070.0001.0002 This attribute defines the index (one based) of the -COO options." - ::= { cooOptionsTableEntry 2 } -cooOptionsState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0070.0001.0003 This attribute defines the state settings of the -COO options." - ::= { cooOptionsTableEntry 3 } -cooOptionsLeaseInformationIndexReference OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0070.0001.0004 This attribute defines the index (one based) of the -COO lease information associated with the COO options." - ::= { cooOptionsTableEntry 4 } -cooOptionsDescriptionName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0070.0001.0005 This attribute defines the description of the -COO options." - ::= { cooOptionsTableEntry 5 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Maintenance Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.80.1... -------------------------------------------------------------------------------- - -CooMaintenanceTableEntry ::= SEQUENCE { - cooMaintenancechassisIndex DellObjectRange, - cooMaintenanceIndex DellObjectRange, - cooMaintenanceState DellStateSettings, - cooMaintenanceStartDateName DellDateName, - cooMaintenanceEndDateName DellDateName, - cooMaintenanceProviderName DellCostofOwnershipString, - cooMaintenanceRestrictionsName DellCostofOwnershipString -} - -cooMaintenanceTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooMaintenanceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0080 This object defines the Cost Of Ownership (COO) Maintenance Table." - ::= { cooGroup 80 } -cooMaintenanceTableEntry OBJECT-TYPE - SYNTAX CooMaintenanceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0080.0001 This object defines the Cost Of Ownership (COO) Maintenance -Table Entry." - INDEX { cooMaintenancechassisIndex, - cooMaintenanceIndex } - ::= { cooMaintenanceTable 1 } - -cooMaintenancechassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0080.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooMaintenanceTableEntry 1 } -cooMaintenanceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0080.0001.0002 This attribute defines the index (one based) of the -COO maintenance." - ::= { cooMaintenanceTableEntry 2 } -cooMaintenanceState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0080.0001.0003 This attribute defines the state settings of the -COO maintenance." - ::= { cooMaintenanceTableEntry 3 } -cooMaintenanceStartDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0080.0001.0004 This attribute defines the start date of the -COO maintenance. Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes, ss are the seconds, uuuuuu are the microseconds and -+fff or -fff is the offset from UTC in minutes." - ::= { cooMaintenanceTableEntry 4 } -cooMaintenanceEndDateName OBJECT-TYPE - SYNTAX DellDateName - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0080.0001.0005 This attribute defines the end date of the -COO maintenance. Dates are defined in the ASCII format: - yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff -where yyyy is the year, MM is the month, dd is the day, hh are the hours, -mm are the minutes, ss are the seconds, uuuuuu are the microseconds and -+fff or -fff is the offset from UTC in minutes." - ::= { cooMaintenanceTableEntry 5 } -cooMaintenanceProviderName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0080.0001.0006 This attribute defines the name of the provider of the -COO maintenance." - ::= { cooMaintenanceTableEntry 6 } -cooMaintenanceRestrictionsName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0080.0001.0007 This attribute defines the text of the maintenance -agreement restrictions." - ::= { cooMaintenanceTableEntry 7 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Repair Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.90.1... -------------------------------------------------------------------------------- - -CooRepairTableEntry ::= SEQUENCE { - cooRepairchassisIndex DellObjectRange, - cooRepairIndex DellObjectRange, - cooRepairState DellStateSettings, - cooRepairCounter DellUnsigned32BitRange, - cooRepairVendorName DellCostofOwnershipString -} - -cooRepairTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooRepairTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0090 This object defines the Cost Of Ownership (COO) Repair Table." - ::= { cooGroup 90 } -cooRepairTableEntry OBJECT-TYPE - SYNTAX CooRepairTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0090.0001 This object defines the Cost Of Ownership (COO) Repair Table -Entry." - INDEX { cooRepairchassisIndex, - cooRepairIndex } - ::= { cooRepairTable 1 } - -cooRepairchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0090.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooRepairTableEntry 1 } -cooRepairIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0090.0001.0002 This attribute defines the index (one based) of the -COO repair." - ::= { cooRepairTableEntry 2 } -cooRepairState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0090.0001.0003 This attribute defines the state setting of the -COO repair." - ::= { cooRepairTableEntry 3 } -cooRepairCounter OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0090.0001.0004 This attribute defines the number of repairs this -system has had." - ::= { cooRepairTableEntry 4 } -cooRepairVendorName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0090.0001.0005 This attribute defines the repair vendors's name." - ::= { cooRepairTableEntry 5 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Support Information Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.100.1... -------------------------------------------------------------------------------- - -CooSupportInformationTableEntry ::= SEQUENCE { - cooSupportInformationchassisIndex DellObjectRange, - cooSupportInformationIndex DellObjectRange, - cooSupportInformationState DellStateSettings, - cooSupportInformationIsOutsourced DellBoolean, - cooSupportInformationType DellUnsigned32BitRange, - cooSupportInformationHelpDeskName DellCostofOwnershipString, - cooSupportInformationFixTypeName DellCostofOwnershipString -} - -cooSupportInformationTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooSupportInformationTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0100 This object defines the Cost Of Ownership (COO) Support -Information Table." - ::= { cooGroup 100 } -cooSupportInformationTableEntry OBJECT-TYPE - SYNTAX CooSupportInformationTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0100.0001 This object defines the Cost Of Ownership (COO) Support -Information Table Entry." - INDEX { cooSupportInformationchassisIndex, - cooSupportInformationIndex } - ::= { cooSupportInformationTable 1 } - -cooSupportInformationchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0100.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooSupportInformationTableEntry 1 } -cooSupportInformationIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0100.0001.0002 This attribute defines the index (one based) of the -COO support information." - ::= { cooSupportInformationTableEntry 2 } -cooSupportInformationState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0100.0001.0003 This attribute defines the state setting of the -COO support information." - ::= { cooSupportInformationTableEntry 3 } -cooSupportInformationIsOutsourced OBJECT-TYPE - SYNTAX DellBoolean - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0100.0001.0004 This attribute defines if support is outsourced or not." - ::= { cooSupportInformationTableEntry 4 } -cooSupportInformationType OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0100.0001.0005 This attribute defines the type of the conmponent, -system or network problem that occurred." - ::= { cooSupportInformationTableEntry 5 } -cooSupportInformationHelpDeskName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0100.0001.0006 This attribute defines the help desk support -information provided." - ::= { cooSupportInformationTableEntry 6 } -cooSupportInformationFixTypeName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0100.0001.0007 This attribute defines the method used to fix -the problem." - ::= { cooSupportInformationTableEntry 7 } - - -------------------------------------------------------------------------------- --- Cost Of Ownership (COO) Trouble Ticket Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1600.110.1... -------------------------------------------------------------------------------- - -CooTroubleTicketTableEntry ::= SEQUENCE { - cooTroubleTicketchassisIndex DellObjectRange, - cooTroubleTicketIndex DellObjectRange, - cooTroubleTicketState DellStateSettings, - cooTroubleTicketSupportInformationIndexReference DellUnsigned32BitRange, - cooTroubleTicketNumberName DellCostofOwnershipString -} - -cooTroubleTicketTable OBJECT-TYPE - SYNTAX SEQUENCE OF CooTroubleTicketTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0110 This object defines the Cost Of Ownership (COO) Trouble Ticket -Table." - ::= { cooGroup 110 } -cooTroubleTicketTableEntry OBJECT-TYPE - SYNTAX CooTroubleTicketTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1600.0110.0001 This object defines the Cost Of Ownership (COO) Trouble Ticket -Table Entry." - INDEX { cooTroubleTicketchassisIndex, - cooTroubleTicketIndex } - ::= { cooTroubleTicketTable 1 } - -cooTroubleTicketchassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0110.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { cooTroubleTicketTableEntry 1 } -cooTroubleTicketIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0110.0001.0002 This attribute defines the index (one based) of the -COO trouble ticket." - ::= { cooTroubleTicketTableEntry 2 } -cooTroubleTicketState OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0110.0001.0003 This attribute defines the state settings of the -COO trouble ticket." - ::= { cooTroubleTicketTableEntry 3 } -cooTroubleTicketSupportInformationIndexReference OBJECT-TYPE - SYNTAX DellUnsigned32BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0110.0001.0004 This attribute defines the index (one based) of the -COO support information associated with the COO trouble ticket." - ::= { cooTroubleTicketTableEntry 4 } -cooTroubleTicketNumberName OBJECT-TYPE - SYNTAX DellCostofOwnershipString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1600.0110.0001.0005 This attribute defines the name of the -COO trouble ticket." - ::= { cooTroubleTicketTableEntry 5 } - - -------------------------------------------------------------------------------- --- Remote Access Group (in another MIB file) --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1700 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Cluster Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1800 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Cluster Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1800.10.1... -------------------------------------------------------------------------------- - -DellClusterType ::= INTEGER { - unknown(1), -- cluster type is unknown - highAvailabilityCluster(2) -- cluster type is High Availability Cluster -} - -ClusterTableEntry ::= SEQUENCE { - clusterChassisIndex DellObjectRange, - clusterIndex DellObjectRange, - clusterStateCapabilities DellStateCapabilities, - clusterStateSettings DellStateSettings, - clusterStatus DellStatus, - clusterType DellClusterType, - clusterTypeDescriptionName DellString, - clusterName DellString -} - -clusterTable OBJECT-TYPE - SYNTAX SEQUENCE OF ClusterTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1800.0010 This object defines the Cluster Table." - ::= { clusterGroup 10 } -clusterTableEntry OBJECT-TYPE - SYNTAX ClusterTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1800.0010.0001 This object defines the Cluster Table Entry." - INDEX { clusterChassisIndex, - clusterIndex } - ::= { clusterTable 1 } - -clusterChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1800.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { clusterTableEntry 1 } -clusterIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1800.0010.0001.0002 This attribute defines the index (one based) of the -cluster." - ::= { clusterTableEntry 2 } -clusterStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1800.0010.0001.0003 This attribute defines the state capabilities of the -cluster." - ::= { clusterTableEntry 3 } -clusterStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1800.0010.0001.0004 This attribute defines the state settings of the - cluster." - ::= { clusterTableEntry 4 } -clusterStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1800.0010.0001.0005 This attribute defines the status of the cluster." - ::= { clusterTableEntry 5 } -clusterType OBJECT-TYPE - SYNTAX DellClusterType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1800.0010.0001.0006 This attribute defines the type of the cluster." - ::= { clusterTableEntry 6 } -clusterTypeDescriptionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1800.0010.0001.0007 This attribute defines the description name for the -type of the cluster." - ::= { clusterTableEntry 7 } -clusterName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1800.0010.0001.0008 This attribute defines the name of the cluster." - ::= { clusterTableEntry 8 } - - -------------------------------------------------------------------------------- --- Baseboard Management Controller (BMC) Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1900 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Baseboard Management Controller (BMC) Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1900.10.1... -------------------------------------------------------------------------------- - -DellManagementControllerType ::= INTEGER { - -- legacyBMC(0), - type is legacy Baseboard Management Controller - iDRAC(8), -- type is Integrated Dell Remote Access Controller - iDRAC6(10), -- type is Integrated Dell Remote Access Controller 6 - iDRAC6Modular(11), -- type is Integrated Dell Remote Access Controller 6 (Modular) - iDRAC6BMC(13), -- type is Integrated Dell Remote Access Controller 6 (BMC mode) - iDRAC7(16), -- type is Integrated Dell Remote Access Controller 7 - iDRAC7Modular(17) -- type is Integrated Dell Remote Access Controller 7 (Modular) -} - -DellBladeFormFactorType ::= INTEGER { - formFactorTypeIsSingleWidthHalfHeight(1), -- Form Factor Type is singleWidthHalfHeight - formFactorTypeIsDualWidthHalfHeight(2), -- Form Factor Type is DualWidthHalfHeight - formFactorTypeIsSingleWidthFullHeight(3), -- Form Factor Type is SingleWidthFullHeight - formFactorTypeIsDualWidthFullHeight(4), -- Form Factor Type is DualWidthFullHeight - formFactorTypeIsSingleWidthQuarterHeight(5), -- Form Factor Type is SingleWidthQuarterHeight - formFactorTypeIs1UHalfWidth(6), -- Form Factor Type is 1UHalfWidth - formFactorTypeIs1UQuarterWidth(7), -- Form Factor Type is 1UQuarterWidth - formFactorTypeIs1UFullWidth(8), -- Form Factor Type is 1UFullWidth - notApplicable(256) -- Form Factor Type is Not Applicable for the system - -} - - -BmcTableEntry ::= SEQUENCE { - bmcChassisIndex DellObjectRange, - bmcIndex DellObjectRange, - bmcStateCapabilities DellStateCapabilities, - bmcStateSettings DellStateSettings, - bmcStatus DellStatus, - bmcDisplayName DellString, - bmcDescriptionName DisplayString (SIZE (0..255)), - bmcIPMIVersionName DellString, - bmcGUID OCTET STRING (SIZE(16)), - bmcType DellManagementControllerType, - bmcModuleName DellString, - bmcIPv4URLName DisplayString (SIZE (0..1024)), - bmcIPv6URLName DisplayString (SIZE (0..1024)), - bmcBladeFormFactorName DellBladeFormFactorType -} - -bmcTable OBJECT-TYPE - SYNTAX SEQUENCE OF BmcTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1900.0010 This object defines the Baseboard Management Controller (BMC) -Table." - ::= { bmcGroup 10 } -bmcTableEntry OBJECT-TYPE - SYNTAX BmcTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1900.0010.0001 This object defines the Baseboard Management Controller (BMC) -Table Entry." - INDEX { bmcChassisIndex, - bmcIndex } - ::= { bmcTable 1 } - -bmcChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { bmcTableEntry 1 } -bmcIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0002 This attribute defines the index (one based) of the BMC." - ::= { bmcTableEntry 2 } -bmcStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0003 This attribute defines the state capabilities of the BMC." - ::= { bmcTableEntry 3 } -bmcStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0004 This attribute defines the state settings of the BMC." - ::= { bmcTableEntry 4 } -bmcStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0005 This attribute defines the status of the BMC." - ::= { bmcTableEntry 5 } -bmcDisplayName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0006 This attribute defines the display name of the BMC." - ::= { bmcTableEntry 6 } -bmcDescriptionName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0007 This attribute defines the description of the BMC." - ::= { bmcTableEntry 7 } -bmcIPMIVersionName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0008 This attribute defines the version of the -Intelligent Platform Management Interface (IPMI) specification -that the BMC supports." - ::= { bmcTableEntry 8 } -bmcGUID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0009 This attribute defines the Globally Unique ID (GUID) -of the BMC." - ::= { bmcTableEntry 9 } -bmcType OBJECT-TYPE - SYNTAX DellManagementControllerType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.00010 This attribute defines the type of the BMC." - ::= { bmcTableEntry 10 } -bmcModuleName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0011 This attribute defines the module name for the BMC. -The module name is present only on certain systems such as blade systems." - ::= { bmcTableEntry 11 } -bmcIPv4URLName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0012 This attribute defines the IPv4 URL for the BMC. -The URL is not present on all systems." - ::= { bmcTableEntry 12 } -bmcIPv6URLName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0013 This attribute defines the IPv6 URL for the BMC. -The URL is not present on all systems." - ::= { bmcTableEntry 13 } -bmcBladeFormFactorName OBJECT-TYPE - SYNTAX DellBladeFormFactorType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0010.0001.0014 This attribute defines Blade FormFactor." - ::= { bmcTableEntry 14 } - - - - -------------------------------------------------------------------------------- --- Baseboard Management Controller (BMC) Serial Interface Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1900.20.1.... -------------------------------------------------------------------------------- - -DellBMCSerialConnectionModeCapabilities ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - no mode capabilities - modemBasic(1), -- Modem Basic mode capable - modemPPP(2), -- Modem PPP mode capable - modemTerminal(4), -- Modem Terminal mode capable - directBasic(8), -- Direct Basic mode capable - directPPP(16), -- Direct PPP mode capable - directTerminal(32) -- Direct Terminal mode capable -} -DellBMCSerialConnectionModeSettings ::= INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - no modes enabled - modemBasic(1), -- Modem Basic mode enabled - modemPPP(2), -- Modem PPP mode enabled - modemTerminal(4), -- Modem Terminal mode enabled - directBasic(8), -- Direct Basic mode enabled - directPPP(16), -- Direct PPP mode enabled - directTerminal(32) -- Direct Terminal mode enabled -} -DellBMCSerialFlowControlType ::= INTEGER { - -- none(0), - no flow control used - rtsCts(1), -- RTS/CTS (hardware) flow control - xonXoff(2) -- XON/XOFF flow control -} -DellBMCSerialBitRateType ::= INTEGER { - bps9600(6), -- 9600 bps (bits per second) - bps19200(7), -- 19200 bps - bps38400(8), -- 38400 bps - bps57600(9), -- 57600 bps - bps115200(10) -- 115200 bps -} - -BmcSerialInterfaceTableEntry ::= SEQUENCE { - bmcSerialInterfaceChassisIndex DellObjectRange, - bmcSerialInterfaceBMCIndex DellObjectRange, - bmcSerialInterfaceIndex DellObjectRange, - bmcSerialInterfaceStateCapabilities DellStateCapabilities, - bmcSerialInterfaceStateSettings DellStateSettings, - bmcSerialInterfaceStatus DellStatus, - bmcSerialInterfaceChannelNumber DellUnsigned8BitRange, - bmcSerialInterfaceConnectionModeCapabilities DellBMCSerialConnectionModeCapabilities, - bmcSerialInterfaceConnectionModeSettings DellBMCSerialConnectionModeSettings, - bmcSerialInterfaceFlowControl DellBMCSerialFlowControlType, - bmcSerialInterfaceBitRate DellBMCSerialBitRateType -} - -bmcSerialInterfaceTable OBJECT-TYPE - SYNTAX SEQUENCE OF BmcSerialInterfaceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1900.0020 This object defines the Baseboard Management Controller (BMC) -Serial Interface Table." - ::= { bmcGroup 20 } -bmcSerialInterfaceTableEntry OBJECT-TYPE - SYNTAX BmcSerialInterfaceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1900.0020.0001 This object defines the Baseboard Management Controller (BMC) -Serial Interface Table Entry." - INDEX { bmcSerialInterfaceChassisIndex, - bmcSerialInterfaceBMCIndex, - bmcSerialInterfaceIndex } - ::= { bmcSerialInterfaceTable 1 } - -bmcSerialInterfaceChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { bmcSerialInterfaceTableEntry 1 } -bmcSerialInterfaceBMCIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0002 This attribute defines the index (one based) of the -assoiciated BMC." - ::= { bmcSerialInterfaceTableEntry 2 } -bmcSerialInterfaceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0003 This attribute defines the index (one based) of the -BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 3 } -bmcSerialInterfaceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0004 This attribute defines the state capabilities of the -BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 4 } -bmcSerialInterfaceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0005 This attribute defines the state settings of the -BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 5 } -bmcSerialInterfaceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0006 This attribute defines the status of the -BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 6 } -bmcSerialInterfaceChannelNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0007 This attribute defines the BMC channel number of the -BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 7 } -bmcSerialInterfaceConnectionModeCapabilities OBJECT-TYPE - SYNTAX DellBMCSerialConnectionModeCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0008 This attribute defines the connection mode capabilities -of the BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 8 } -bmcSerialInterfaceConnectionModeSettings OBJECT-TYPE - SYNTAX DellBMCSerialConnectionModeSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0009 This attribute defines the connection mode settings -of the BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 9 } -bmcSerialInterfaceFlowControl OBJECT-TYPE - SYNTAX DellBMCSerialFlowControlType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0010 This attribute defines the flow control type of the -BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 10 } -bmcSerialInterfaceBitRate OBJECT-TYPE - SYNTAX DellBMCSerialBitRateType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0020.0001.0011 This attribute defines the bit rate of the -BMC serial interface." - ::= { bmcSerialInterfaceTableEntry 11 } - - -------------------------------------------------------------------------------- --- Baseboard Management Controller (BMC) LAN Interface Table --- --- OID Format: 1.3.6.1.4.1.674.10892.1.1900.30.1.... -------------------------------------------------------------------------------- - -DellBMCLANIPAddressSourceType ::= INTEGER { - -- unspecified(0), - source is unspecified - static(1), -- static IP address - dhcp(2), -- DHCP used to obtain IP address - biosOrSystemSoftware(3), -- BIOS or system software provided IP Address - other(4) -- other protocol used to obtain IP address -} - -BmcLANInterfaceTableEntry ::= SEQUENCE { - bmcLANInterfaceChassisIndex DellObjectRange, - bmcLANInterfaceBMCIndex DellObjectRange, - bmcLANInterfaceIndex DellObjectRange, - bmcLANInterfaceStateCapabilities DellStateCapabilities, - bmcLANInterfaceStateSettings DellStateSettings, - bmcLANInterfaceStatus DellStatus, - bmcLANInterfaceChannelNumber DellUnsigned8BitRange, - bmcLANInterfaceIPAddressSource DellBMCLANIPAddressSourceType, - bmcLANInterfaceIPAddress IpAddress, - bmcLANInterfaceSubnetMaskAddress IpAddress, - bmcLANInterfaceDefaultGatewayAddress IpAddress, - bmcLANInterfaceMACAddress DellMACAddress, - bmcLANInterfaceAlertCommunityName DisplayString (SIZE (0..32)) -} - -bmcLANInterfaceTable OBJECT-TYPE - SYNTAX SEQUENCE OF BmcLANInterfaceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1900.0030 This object defines the Baseboard Management Controller (BMC) -LAN Interface Table." - ::= { bmcGroup 30 } -bmcLANInterfaceTableEntry OBJECT-TYPE - SYNTAX BmcLANInterfaceTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION -"1900.0030.0001 This object defines the Baseboard Management Controller (BMC) -LAN Interface Table Entry." - INDEX { bmcLANInterfaceChassisIndex, - bmcLANInterfaceBMCIndex, - bmcLANInterfaceIndex } - ::= { bmcLANInterfaceTable 1 } - -bmcLANInterfaceChassisIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0001 This attribute defines the index (one based) of the -associated chassis." - ::= { bmcLANInterfaceTableEntry 1 } -bmcLANInterfaceBMCIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0002 This attribute defines the index (one based) of the -assoiciated BMC." - ::= { bmcLANInterfaceTableEntry 2 } -bmcLANInterfaceIndex OBJECT-TYPE - SYNTAX DellObjectRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0003 This attribute defines the index (one based) of the -BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 3 } -bmcLANInterfaceStateCapabilities OBJECT-TYPE - SYNTAX DellStateCapabilities - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0004 This attribute defines the state capabilities of the -BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 4 } -bmcLANInterfaceStateSettings OBJECT-TYPE - SYNTAX DellStateSettings - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0005 This attribute defines the state settings of the -BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 5 } -bmcLANInterfaceStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0006 This attribute defines the status of the -BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 6 } -bmcLANInterfaceChannelNumber OBJECT-TYPE - SYNTAX DellUnsigned8BitRange - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0007 This attribute defines the BMC channel number of the -BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 7 } -bmcLANInterfaceIPAddressSource OBJECT-TYPE - SYNTAX DellBMCLANIPAddressSourceType - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0008 This attribute defines the source type of the -IP address of the BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 8 } -bmcLANInterfaceIPAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0009 This attribute defines the IP address of the -BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 9 } -bmcLANInterfaceSubnetMaskAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0010 This attribute defines the subnet mask of the -BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 10 } -bmcLANInterfaceDefaultGatewayAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0011 This attribute defines the IP address of the -default gateway for the BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 11 } -bmcLANInterfaceMACAddress OBJECT-TYPE - SYNTAX DellMACAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0012 This attribute defines the MAC address of the -BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 12 } -bmcLANInterfaceAlertCommunityName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"1900.0030.0001.0013 This attribute defines the SNMP community used for -BMC LAN alerts (traps) sent on the BMC LAN interface." - ::= { bmcLANInterfaceTableEntry 13 } - - -------------------------------------------------------------------------------- --- Alert Group --- --- OID Format: 1.3.6.1.4.1.674.10892.1.5000 -------------------------------------------------------------------------------- - -alertVariables OBJECT IDENTIFIER ::= { alertGroup 10 } - -------------------------------------------------------------------------------- --- Alert Variables --- --- OID Format: 1.3.6.1.4.1.674.10892.1.5000.10..0 -------------------------------------------------------------------------------- - -alertSystem OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0001 Name of the system generating the alert." - ::= { alertVariables 1 } -alertTableIndexOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0002 OID for the index attribute in the table that contains the object -causing the alert. This value can be used to uniquely identify the object -causing the alert and to correlate different alerts caused by an object. -If not applicable, the value will be 0.0." - ::= { alertVariables 2 } -alertMessage OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0003 Message describing the alert." - ::= { alertVariables 3 } -alertCurrentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0004 Current status of object causing the alert." - ::= { alertVariables 4 } -alertPreviousStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0005 Previous status of object causing the alert." - ::= { alertVariables 5 } -alertData OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0006 Alert data." - ::= { alertVariables 6 } -alertMsgID OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0007 Alert message ID." - ::= { alertVariables 7 } -alertSystemFQDN OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0008 Fully qualified domain name of the system generating the alert." - ::= { alertVariables 8 } -alertServiceTag OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0009 Service tag of the system generating the alert." - ::= { alertVariables 9 } -alertChassisServiceTag OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION -"5000.0010.0010 Chassis service tag of the system generating the alert." - ::= { alertVariables 10 } - -------------------------------------------------------------------------------- --- --- Legacy Traps --- -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Miscellaneous Traps -------------------------------------------------------------------------------- - -alertSystemUp TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Server Administrator has completed its initialization." - - --Novell NMS trap annotation - --#TYPE "Server Administrator Startup Complete" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1001 - -alertThermalShutdown TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Thermal shutdown protection has been initiated." - - --Novell NMS trap annotation - --#TYPE "Server Thermal Shutdown" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - - ::= 1004 - -alertAutomaticSystemRecovery TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Automatic system recovery (ASR) was performed." - - --Novell NMS trap annotation - --#TYPE "Server Automatic System Recovery" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1006 - -alertUserHostSystemReset TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"User has initiated host system reset." - - --Novell NMS trap annotation - --#TYPE "Server User Host System Reset" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1007 - -alertSystemPeakPowerNewPeak TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"System peak power sensor has detected a new peak value." - - --Novell NMS trap annotation - --#TYPE "Server System Peak Power New Peak" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1013 - -alertSystemSoftwareEvent TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"System software event has occurred." - - --Novell NMS trap annotation - --#TYPE "Server System Software Event" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1014 - -------------------------------------------------------------------------------- --- Temperature Probe Traps -------------------------------------------------------------------------------- - -alertTemperatureProbeNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Temperature probe has returned to a normal value." - - --Novell NMS trap annotation - --#TYPE "Server Temperature Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1052 - -alertTemperatureProbeWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Temperature probe has detected a warning value." - - --Novell NMS trap annotation - --#TYPE "Server Temperature Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1053 - -alertTemperatureProbeFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Temperature probe has detected a failure value." - - --Novell NMS trap annotation - --#TYPE "Server Temperature Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1054 - -alertTemperatureProbeNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Temperature probe has detected a non-recoverable value." - - --Novell NMS trap annotation - --#TYPE "Server Temperature Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1055 - -------------------------------------------------------------------------------- --- Cooling Device Traps -------------------------------------------------------------------------------- - -alertCoolingDeviceNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Cooling device sensor has returned to a normal value." - - --Novell NMS trap annotation - --#TYPE "Server Cooling Device Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1102 - -alertCoolingDeviceWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Cooling device sensor has detected a warning value." - - --Novell NMS trap annotation - --#TYPE "Server Cooling Device Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1103 - -alertCoolingDeviceFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Cooling device sensor has detected a failure value." - - --Novell NMS trap annotation - --#TYPE "Server Cooling Device Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1104 - -alertCoolingDeviceNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Cooling device sensor has detected a non-recoverable value." - - --Novell NMS trap annotation - --#TYPE "Server Cooling Device Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1105 - -------------------------------------------------------------------------------- --- Voltage Probe Traps -------------------------------------------------------------------------------- - -alertVoltageProbeNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Voltage probe has returned to a normal value." - - --Novell NMS trap annotation - --#TYPE "Server Voltage Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1152 - -alertVoltageProbeWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Voltage probe has detected a warning value." - - --Novell NMS trap annotation - --#TYPE "Server Voltage Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1153 - -alertVoltageProbeFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Voltage probe has detected a failure value." - - --Novell NMS trap annotation - --#TYPE "Server Voltage Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1154 - -alertVoltageProbeNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Voltage probe has detected a non-recoverable value." - - --Novell NMS trap annotation - --#TYPE "Server Voltage Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1155 - -------------------------------------------------------------------------------- --- Amperage Probe Traps -------------------------------------------------------------------------------- - -alertAmperageProbeNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Amperage probe has returned to a normal value." - - --Novell NMS trap annotation - --#TYPE "Server Amperage Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1202 - -alertAmperageProbeWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Amperage probe has detected a warning value." - - --Novell NMS trap annotation - --#TYPE "Server Amperage Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1203 - -alertAmperageProbeFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Amperage probe has detected a failure value." - - --Novell NMS trap annotation - --#TYPE "Server Amperage Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1204 - -alertAmperageProbeNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Amperage probe has detected a non-recoverable value." - - --Novell NMS trap annotation - --#TYPE "Server Amperage Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1205 - -------------------------------------------------------------------------------- --- Chassis Intrusion Traps -------------------------------------------------------------------------------- - -alertChassisIntrusionNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Chassis intrusion has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Chassis Intrusion Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1252 - -alertChassisIntrusionDetected TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Chassis intrusion has been detected." - - --Novell NMS trap annotation - --#TYPE "Server Chassis Intrusion Detected" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1254 - -------------------------------------------------------------------------------- --- Redundancy Traps -------------------------------------------------------------------------------- - -alertRedundancyNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Redundancy has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Redundancy Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1304 - -alertRedundancyDegraded TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Redundancy has been degraded." - - --Novell NMS trap annotation - --#TYPE "Server Redundancy Degraded" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1305 - -alertRedundancyLost TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Redundancy has been lost." - - --Novell NMS trap annotation - --#TYPE "Server Redundancy Lost" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1306 - -------------------------------------------------------------------------------- --- Power Supply Traps -------------------------------------------------------------------------------- - -alertPowerSupplyNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Power supply has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Power Supply Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1352 - -alertPowerSupplyWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Power supply has detected a warning." - - --Novell NMS trap annotation - --#TYPE "Server Power Supply Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1353 - -alertPowerSupplyFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Power supply has detected a failure." - - --Novell NMS trap annotation - --#TYPE "Server Power Supply Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1354 - -------------------------------------------------------------------------------- --- Memory Device Traps -------------------------------------------------------------------------------- - -alertMemoryDeviceNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Memory device status is normal." - - --Novell NMS trap annotation - --#TYPE "Server Memory Device Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1402 - -alertMemoryDeviceWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Memory device status is noncritical." - - --Novell NMS trap annotation - --#TYPE "Server Memory Device Noncritical" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1403 - -alertMemoryDeviceFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Memory device status is critical." - - --Novell NMS trap annotation - --#TYPE "Server Memory Device Critical" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1404 - -alertMemoryDeviceNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Memory device status is non-recoverable." - - --Novell NMS trap annotation - --#TYPE "Server Memory Device Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1405 - -------------------------------------------------------------------------------- --- Fan Enclosure Traps -------------------------------------------------------------------------------- - -alertFanEnclosureInsertion TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Fan enclosure has been inserted into system." - - --Novell NMS trap annotation - --#TYPE "Server Fan Enclosure Insertion" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1452 - -alertFanEnclosureRemoval TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Fan enclosure has been removed from system." - - --Novell NMS trap annotation - --#TYPE "Server Fan Enclosure Removal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1453 - -alertFanEnclosureExtendedRemoval TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Fan enclosure has been removed from system for an extended amount of time." - - --Novell NMS trap annotation - --#TYPE "Server Fan Enclosure Extended Removal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1454 - -------------------------------------------------------------------------------- --- AC Power Cord Traps -------------------------------------------------------------------------------- - -alertACPowerCordNoPowerNonRedundant TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"AC power cord does not have power, and the reduncancy mode -for its AC power switch has been set to non-redundant." - - --Novell NMS trap annotation - --#TYPE "Server AC Cord No Power Non-redundant" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1501 - -alertACPowerCordNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"AC power cord has regained power." - - --Novell NMS trap annotation - --#TYPE "Server AC Cord Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1502 - -alertACPowerCordFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"AC power cord has lost power." - - --Novell NMS trap annotation - --#TYPE "Server AC Cord Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1504 - -------------------------------------------------------------------------------- --- Hardware Log Traps -------------------------------------------------------------------------------- - -alertLogNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Log size is no longer near or at capacity." - - --Novell NMS trap annotation - --#TYPE "Server Hardware Log Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1552 - -alertLogWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Log size is near capacity." - - --Novell NMS trap annotation - --#TYPE "Server Hardware Log Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1553 - -alertLogFull TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Log size is at capacity." - - --Novell NMS trap annotation - --#TYPE "Server Hardware Log Full" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1554 - -------------------------------------------------------------------------------- --- Processor Device Status Traps -------------------------------------------------------------------------------- - -alertProcessorDeviceStatusNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Processor device status has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Processor Device Status Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1602 - -alertProcessorDeviceStatusWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Processor device status has detected a warning." - - --Novell NMS trap annotation - --#TYPE "Server Processor Device Status Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1603 - -alertProcessorDeviceStatusFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Processor device status has detected a failure." - - --Novell NMS trap annotation - --#TYPE "Server Processor Device Status Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1604 - -------------------------------------------------------------------------------- --- Device Traps -------------------------------------------------------------------------------- - -alertDeviceAdd TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Device added to system." - - --Novell NMS trap annotation - --#TYPE "Server Device Add" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1651 - -alertDeviceRemove TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Device removed from system." - - --Novell NMS trap annotation - --#TYPE "Server Device Remove" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1652 - -alertDeviceConfigError TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Device configuration error detected." - - --Novell NMS trap annotation - --#TYPE "Server Device Config Error" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1653 - -------------------------------------------------------------------------------- --- Battery Traps -------------------------------------------------------------------------------- - -alertBatteryNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Battery has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Battery Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 1702 - -alertBatteryWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Battery has detected a warning." - - --Novell NMS trap annotation - --#TYPE "Server Battery Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1703 - -alertBatteryFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"Battery has detected a failure." - - --Novell NMS trap annotation - --#TYPE "Server Battery Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1704 - -------------------------------------------------------------------------------- --- SD Card Device Traps -------------------------------------------------------------------------------- - -alertSDCardDeviceWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"SD card device has detected a warning." - - --Novell NMS trap annotation - --#TYPE "Server SD Card Device Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1753 - -alertSDCardDeviceFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData } - DESCRIPTION -"SD card device has detected a failure." - - --Novell NMS trap annotation - --#TYPE "Server SD Card Device Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 1754 - -------------------------------------------------------------------------------- --- --- Enhanced Traps --- -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Miscellaneous Traps -------------------------------------------------------------------------------- - -enhancedAlertSystemUp TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Server Administrator has completed its initialization." - - --Novell NMS trap annotation - --#TYPE "Server Administrator Startup Complete" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5001 - -enhancedAlertThermalShutdown TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Thermal shutdown protection has been initiated." - - --Novell NMS trap annotation - --#TYPE "Server Thermal Shutdown" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - - ::= 5004 - -enhancedAlertAutomaticSystemRecovery TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Automatic system recovery (ASR) was performed." - - --Novell NMS trap annotation - --#TYPE "Server Automatic System Recovery" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5006 - -enhancedAlertUserHostSystemReset TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"User has initiated host system reset." - - --Novell NMS trap annotation - --#TYPE "Server User Host System Reset" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5007 - -enhancedAlertSystemPeakPowerNewPeak TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"System peak power sensor has detected a new peak value." - - --Novell NMS trap annotation - --#TYPE "Server System Peak Power New Peak" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5013 - -enhancedAlertSystemSoftwareEvent TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"System software event has occurred." - - --Novell NMS trap annotation - --#TYPE "Server System Software Event" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5014 - -------------------------------------------------------------------------------- --- Temperature Probe Traps -------------------------------------------------------------------------------- - -enhancedAlertTemperatureProbeNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Temperature probe has returned to a normal value." - - --Novell NMS trap annotation - --#TYPE "Server Temperature Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5052 - -enhancedAlertTemperatureProbeWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Temperature probe has detected a warning value." - - --Novell NMS trap annotation - --#TYPE "Server Temperature Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5053 - -enhancedAlertTemperatureProbeFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Temperature probe has detected a failure value." - - --Novell NMS trap annotation - --#TYPE "Server Temperature Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5054 - -enhancedAlertTemperatureProbeNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Temperature probe has detected a non-recoverable value." - - --Novell NMS trap annotation - --#TYPE "Server Temperature Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5055 - -------------------------------------------------------------------------------- --- Cooling Device Traps -------------------------------------------------------------------------------- - -enhancedAlertCoolingDeviceNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Cooling device sensor has returned to a normal value." - - --Novell NMS trap annotation - --#TYPE "Server Cooling Device Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5102 - -enhancedAlertCoolingDeviceWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Cooling device sensor has detected a warning value." - - --Novell NMS trap annotation - --#TYPE "Server Cooling Device Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5103 - -enhancedAlertCoolingDeviceFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Cooling device sensor has detected a failure value." - - --Novell NMS trap annotation - --#TYPE "Server Cooling Device Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5104 - -enhancedAlertCoolingDeviceNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Cooling device sensor has detected a non-recoverable value." - - --Novell NMS trap annotation - --#TYPE "Server Cooling Device Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5105 - -------------------------------------------------------------------------------- --- Voltage Probe Traps -------------------------------------------------------------------------------- - -enhancedAlertVoltageProbeNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Voltage probe has returned to a normal value." - - --Novell NMS trap annotation - --#TYPE "Server Voltage Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5152 - -enhancedAlertVoltageProbeWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Voltage probe has detected a warning value." - - --Novell NMS trap annotation - --#TYPE "Server Voltage Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5153 - -enhancedAlertVoltageProbeFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Voltage probe has detected a failure value." - - --Novell NMS trap annotation - --#TYPE "Server Voltage Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5154 - -enhancedAlertVoltageProbeNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Voltage probe has detected a non-recoverable value." - - --Novell NMS trap annotation - --#TYPE "Server Voltage Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5155 - -------------------------------------------------------------------------------- --- Amperage Probe Traps -------------------------------------------------------------------------------- - -enhancedAlertAmperageProbeNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Amperage probe has returned to a normal value." - - --Novell NMS trap annotation - --#TYPE "Server Amperage Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5202 - -enhancedAlertAmperageProbeWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Amperage probe has detected a warning value." - - --Novell NMS trap annotation - --#TYPE "Server Amperage Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5203 - -enhancedAlertAmperageProbeFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Amperage probe has detected a failure value." - - --Novell NMS trap annotation - --#TYPE "Server Amperage Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5204 - -enhancedAlertAmperageProbeNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Amperage probe has detected a non-recoverable value." - - --Novell NMS trap annotation - --#TYPE "Server Amperage Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5205 - -------------------------------------------------------------------------------- --- Chassis Intrusion Traps -------------------------------------------------------------------------------- - -enhancedAlertChassisIntrusionNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Chassis intrusion has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Chassis Intrusion Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5252 - -enhancedAlertChassisIntrusionDetected TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Chassis intrusion has been detected." - - --Novell NMS trap annotation - --#TYPE "Server Chassis Intrusion Detected" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5254 - -------------------------------------------------------------------------------- --- Redundancy Traps -------------------------------------------------------------------------------- - -enhancedAlertRedundancyNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Redundancy has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Redundancy Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5304 - -enhancedAlertRedundancyDegraded TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Redundancy has been degraded." - - --Novell NMS trap annotation - --#TYPE "Server Redundancy Degraded" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5305 - -enhancedAlertRedundancyLost TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Redundancy has been lost." - - --Novell NMS trap annotation - --#TYPE "Server Redundancy Lost" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5306 - -------------------------------------------------------------------------------- --- Power Supply Traps -------------------------------------------------------------------------------- - -enhancedAlertPowerSupplyNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Power supply has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Power Supply Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5352 - -enhancedAlertPowerSupplyWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Power supply has detected a warning." - - --Novell NMS trap annotation - --#TYPE "Server Power Supply Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5353 - -enhancedAlertPowerSupplyFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Power supply has detected a failure." - - --Novell NMS trap annotation - --#TYPE "Server Power Supply Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5354 - -------------------------------------------------------------------------------- --- Memory Device Traps -------------------------------------------------------------------------------- - -enhancedAlertMemoryDeviceNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Memory device status is normal." - - --Novell NMS trap annotation - --#TYPE "Server Memory Device Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5402 - -enhancedAlertMemoryDeviceWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Memory device status is noncritical." - - --Novell NMS trap annotation - --#TYPE "Server Memory Device Noncritical" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5403 - -enhancedAlertMemoryDeviceFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Memory device status is critical." - - --Novell NMS trap annotation - --#TYPE "Server Memory Device Critical" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5404 - -enhancedAlertMemoryDeviceNonRecoverable TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Memory device status is non-recoverable." - - --Novell NMS trap annotation - --#TYPE "Server Memory Device Nonrecoverable" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5405 - -------------------------------------------------------------------------------- --- Fan Enclosure Traps -------------------------------------------------------------------------------- - -enhancedAlertFanEnclosureInsertion TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Fan enclosure has been inserted into system." - - --Novell NMS trap annotation - --#TYPE "Server Fan Enclosure Insertion" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5452 - -enhancedAlertFanEnclosureRemoval TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Fan enclosure has been removed from system." - - --Novell NMS trap annotation - --#TYPE "Server Fan Enclosure Removal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5453 - -enhancedAlertFanEnclosureExtendedRemoval TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Fan enclosure has been removed from system for an extended amount of time." - - --Novell NMS trap annotation - --#TYPE "Server Fan Enclosure Extended Removal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5454 - -------------------------------------------------------------------------------- --- AC Power Cord Traps -------------------------------------------------------------------------------- - -enhancedAlertACPowerCordNoPowerNonRedundant TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"AC power cord does not have power, and the reduncancy mode -for its AC power switch has been set to non-redundant." - - --Novell NMS trap annotation - --#TYPE "Server AC Cord No Power Non-redundant" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5501 - -enhancedAlertACPowerCordNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"AC power cord has regained power." - - --Novell NMS trap annotation - --#TYPE "Server AC Cord Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5502 - -enhancedAlertACPowerCordFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"AC power cord has lost power." - - --Novell NMS trap annotation - --#TYPE "Server AC Cord Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5504 - -------------------------------------------------------------------------------- --- Hardware Log Traps -------------------------------------------------------------------------------- - -enhancedAlertLogNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Log size is no longer near or at capacity." - - --Novell NMS trap annotation - --#TYPE "Server Hardware Log Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5552 - -enhancedAlertLogWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Log size is near capacity." - - --Novell NMS trap annotation - --#TYPE "Server Hardware Log Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5553 - -enhancedAlertLogFull TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Log size is at capacity." - - --Novell NMS trap annotation - --#TYPE "Server Hardware Log Full" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5554 - -------------------------------------------------------------------------------- --- Processor Device Status Traps -------------------------------------------------------------------------------- - -enhancedAlertProcessorDeviceStatusNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Processor device status has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Processor Device Status Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5602 - -enhancedAlertProcessorDeviceStatusWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Processor device status has detected a warning." - - --Novell NMS trap annotation - --#TYPE "Server Processor Device Status Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5603 - -enhancedAlertProcessorDeviceStatusFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Processor device status has detected a failure." - - --Novell NMS trap annotation - --#TYPE "Server Processor Device Status Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5604 - -------------------------------------------------------------------------------- --- Device Traps -------------------------------------------------------------------------------- - -enhancedAlertDeviceAdd TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Device added to system." - - --Novell NMS trap annotation - --#TYPE "Server Device Add" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5651 - -enhancedAlertDeviceRemove TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Device removed from system." - - --Novell NMS trap annotation - --#TYPE "Server Device Remove" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5652 - -enhancedAlertDeviceConfigError TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Device configuration error detected." - - --Novell NMS trap annotation - --#TYPE "Server Device Config Error" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5653 - -------------------------------------------------------------------------------- --- Battery Traps -------------------------------------------------------------------------------- - -enhancedAlertBatteryNormal TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Battery has returned to normal." - - --Novell NMS trap annotation - --#TYPE "Server Battery Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - - ::= 5702 - -enhancedAlertBatteryWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Battery has detected a warning." - - --Novell NMS trap annotation - --#TYPE "Server Battery Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5703 - -enhancedAlertBatteryFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"Battery has detected a failure." - - --Novell NMS trap annotation - --#TYPE "Server Battery Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5704 - -------------------------------------------------------------------------------- --- SD Card Device Traps -------------------------------------------------------------------------------- - -enhancedAlertSDCardDeviceWarning TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"SD card device has detected a warning." - - --Novell NMS trap annotation - --#TYPE "Server SD Card Device Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5753 - -enhancedAlertSDCardDeviceFailure TRAP-TYPE - ENTERPRISE baseboardGroup - VARIABLES { alertSystem, - alertTableIndexOID, - alertMessage, - alertCurrentStatus, - alertPreviousStatus, - alertData, - alertMsgID, - alertSystemFQDN, - alertServiceTag, - alertChassisServiceTag } - DESCRIPTION -"SD card device has detected a failure." - - --Novell NMS trap annotation - --#TYPE "Server SD Card Device Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - - ::= 5754 - - -END - -------------------------------------------------------------------------------- --- End MIB -------------------------------------------------------------------------------- +------------------------------------------------------------------------------- +-- +-- Title: Systems Management Instrumentation MIB +-- +-- Version: 7.4.0 +-- +-- Release Date:Nov 2013 +-- +-- Description: This MIB defines MIB objects that make system instrumentation +-- data available to SNMP management applications. +-- +-- Copyright (c) 2000-2013 Dell Inc. +-- All Rights Reserved. +-- +-- Note: The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- OID Format Legend: +-- = attribute ID +-- = index ID +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Begin MIB +------------------------------------------------------------------------------- + +MIB-Dell-10892 DEFINITIONS ::= BEGIN + +IMPORTS + enterprises, IpAddress, Gauge + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + DisplayString + FROM RFC1213-MIB; + + +------------------------------------------------------------------------------- +-- Object Identifiers +------------------------------------------------------------------------------- + +-- Enterprise ID +dell OBJECT IDENTIFIER ::= { enterprises 674 } + +-- Server3 Branch +server3 OBJECT IDENTIFIER ::= { dell 10892 } + +-- Server3 Groups +baseboardGroup OBJECT IDENTIFIER ::= { server3 1 } +-- drsOutOfBandGroup OBJECT IDENTIFIER ::= { server3 2 } +-- (drsOutOfBandGroup is defined in another MIB file.) + +-- Server3 Baseboard Groups for Instrumentation +mIBVersionGroup OBJECT IDENTIFIER ::= { baseboardGroup 1 } +systemManagementSoftwareGroup OBJECT IDENTIFIER ::= { baseboardGroup 100 } +systemStateGroup OBJECT IDENTIFIER ::= { baseboardGroup 200 } +chassisInformationGroup OBJECT IDENTIFIER ::= { baseboardGroup 300 } +operatingSystemGroup OBJECT IDENTIFIER ::= { baseboardGroup 400 } +systemResourceGroup OBJECT IDENTIFIER ::= { baseboardGroup 500 } +powerGroup OBJECT IDENTIFIER ::= { baseboardGroup 600 } +thermalGroup OBJECT IDENTIFIER ::= { baseboardGroup 700 } +userSecurityGroup OBJECT IDENTIFIER ::= { baseboardGroup 800 } +remoteFlashBIOSGroup OBJECT IDENTIFIER ::= { baseboardGroup 900 } +portGroup OBJECT IDENTIFIER ::= { baseboardGroup 1000 } +deviceGroup OBJECT IDENTIFIER ::= { baseboardGroup 1100 } +slotGroup OBJECT IDENTIFIER ::= { baseboardGroup 1200 } +memoryGroup OBJECT IDENTIFIER ::= { baseboardGroup 1300 } +biosSetUpControlGroup OBJECT IDENTIFIER ::= { baseboardGroup 1400 } +lraGroup OBJECT IDENTIFIER ::= { baseboardGroup 1500 } +cooGroup OBJECT IDENTIFIER ::= { baseboardGroup 1600 } +-- remoteAccessGroup OBJECT IDENTIFIER ::= { baseboardGroup 1700 } +-- (remoteAccessGroup is defined in dcs3rmt.mib) +clusterGroup OBJECT IDENTIFIER ::= { baseboardGroup 1800 } +bmcGroup OBJECT IDENTIFIER ::= { baseboardGroup 1900 } +-- fruGroup OBJECT IDENTIFIER ::= { baseboardGroup 2000 } +-- (fruGroup is defined in dcs3fru.mib) +alertGroup OBJECT IDENTIFIER ::= { baseboardGroup 5000 } + + +------------------------------------------------------------------------------- +-- Textual Conventions +------------------------------------------------------------------------------- + +DellString ::= DisplayString (SIZE (0..64)) +DellSecurityString ::= DisplayString (SIZE (0..255)) +DellCostofOwnershipString ::= DisplayString (SIZE (0..64)) +DellMACAddress ::= OCTET STRING (SIZE(6)) +DellObjectRange ::= INTEGER (1..128) +DellUnsigned8BitRange ::= INTEGER (0..255) +DellUnsigned16BitRange ::= INTEGER (0..65535) +DellUnsigned32BitRange ::= Gauge (0..4294967295) +DellSigned32BitRange ::= INTEGER (-2147483647..2147483647) +DellBoolean ::= INTEGER (0..1) -- 0 = FALSE, 1 = TRUE + +-- This definition is required because SNMP V1 does not support 64 bit ranges. +-- The information sent back by this subagent will have the most significant +-- byte of the information as the first byte (i.e. network byte order). +-- E.G. The integer value 0x1029384754657687 will be sent as: +-- Byte: 1 2 3 4 ... +-- Hex: 10 29 38 47 ... +-- Binary: 0001 0000 0010 1001 0011 1000 0100 0111 ... +DellUnsigned64BitRange ::= OCTET STRING (SIZE(8)) + +-- DellDateName dates are defined in the displayable format +-- yyyymmddHHMMSS.uuuuuu+ooo +-- where yyyy is the year, mm is the month number, dd is the day of the month, +-- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the +-- number of microseconds, and +ooo is the offset from UTC in minutes. If east +-- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the +-- number is preceded by a minus (-) sign. +-- +-- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT +-- would be represented as: 19940525133015.000000-300 +-- +-- Values must be zero-padded if necessary, like "05" in the example above. +-- If a value is not supplied for a field, each character in the field +-- must be replaced with asterisk ('*') characters. +DellDateName ::= DisplayString (SIZE (25)) + +-- Note About Bit Fields: +-- Attributes with definitions of xxxCapabilities, xxxCapabilitiesUnique, +-- xxxSettings, xxxSettingsUnique and xxxFeatureFlags are integers +-- representing a series of bit definitions. They are NOT enumerations and +-- should be treated as bit fields. The value is passed as a decimal value; +-- it should be converted to hex, and the appropriate bits should be parsed +-- from that. Some of the more common bit combinations are defined in some +-- variables, but not all combinations are or will be defined. + +-- +-- Generic State Capabilities +-- +DellStateCapabilities ::= INTEGER { + -- If set to 0 (zero), object has no state capabilities + unknownCapabilities(1), -- object's state capabilities are unknown + -- The object's state capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + enableAndNotReadyCapable(6) +} + +-- +-- Generic State Settings +-- +DellStateSettings ::= INTEGER { + -- If set to 0 (zero), object has no state settings enabled and is disabled + unknown(1), -- object's state is unknown + enabled(2), -- object's state is disabled (offline) if bit is off + -- or enabled (online) if bit is on + notReady(4), -- object's state is not ready + enabledAndNotReady(6) +} + +-- +-- Probe Capabilities +-- +DellProbeCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no probe capabilities + -- The object's probe capabilities allow it to be set to: + upperNonCriticalThresholdSetCapable(1), -- upper noncritical threshold can be set + lowerNonCriticalThresholdSetCapable(2), -- lower noncritical threshold can be set + upperNonCriticalThresholdDefaultCapable(4), -- upper noncritical threshold can be set to default + lowerNonCriticalThresholdDefaultCapable(8) -- lower noncritical threshold can be set to default +} + +-- +-- Status +-- +DellStatus ::= INTEGER { + other(1), -- status is not one of the following: + unknown(2), -- status of object is unknown (not known or monitored) + ok(3), -- status of object is OK (normal) + nonCritical(4), -- status of object is noncritical (warning) + critical(5), -- status of object is critical (failure) + nonRecoverable(6) -- status of object is non-recoverable (dead) +} + +-- +-- Redundancy Status +-- +DellStatusRedundancy ::= INTEGER { + other(1), -- redundancy status is not one of the following: + unknown(2), -- redundancy status is unknown (not known or monitored) + full(3), -- object is fully redundant + degraded(4), -- object's redundancy has been degraded + lost(5), -- object's redundancy has been lost + notRedundant(6), -- redundancy status does not apply or object is not redundant + redundancyOffline(7) -- redundancy object taken offline +} + +-- +-- Probe Status +-- +DellStatusProbe ::= INTEGER { + other(1), -- probe status is not one of the following: + unknown(2), -- probe status is unknown (not known or monitored) + ok(3), -- probe is reporting a value within the thresholds + nonCriticalUpper(4), -- probe has crossed upper noncritical threshold + criticalUpper(5), -- probe has crossed upper critical threshold + nonRecoverableUpper(6), -- probe has crossed upper non-recoverable threshold + nonCriticalLower(7), -- probe has crossed lower noncritical threshold + criticalLower(8), -- probe has crossed lower critical threshold + nonRecoverableLower(9), -- probe has crossed lower non-recoverable threshold + failed(10) -- probe is not functional +} + + +------------------------------------------------------------------------------- +-- +-- MIB Groups +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- MIB Version Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1..0 +------------------------------------------------------------------------------- + +mIBMajorVersionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0001.0001 This attribute defines the major version number for the version +of this MIB supported by the systems management software." + ::= { mIBVersionGroup 1 } +mIBMinorVersionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0001.0002 This attribute defines the minor version number for the version +of this MIB supported by the systems management software." + ::= { mIBVersionGroup 2 } +mIBMaintenanceVersionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0001.0003 This attribute defines the maintenance version number for the +version of this MIB supported by the systems management software." + ::= { mIBVersionGroup 3 } + + +------------------------------------------------------------------------------- +-- System Management Software Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.100..0 +------------------------------------------------------------------------------- + +SMSSupportedTypes ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + supportsSNMP(1), -- supports SNMP + supportsDMI(2), -- supports DMI + supportsSNMPandDMI(3), -- supports SNMP and DMI + supportsCIMOM(4), -- supports CIM + supportsSNMPandCIMOM(5), -- supports SNMP and CIM + supportsSNMPandDMIandCIMOM(7) -- supports SNMP, DMI and CIM +} +SMSFeatureFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- If 0 (zero), none of the following features are enabled: + webOneToOneManagementPreferred(1) -- web 1:1 management preferred +} +SMSSNMPAgentFeatureFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- If 0 (zero), none of the following features are enabled: + supportsSparseTables(1) -- SNMP agent supports sparse tables +} + +systemManagementSoftwareName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0001 This attribute defines the product name of the +systems management software." + ::= { systemManagementSoftwareGroup 1 } +systemManagementSoftwareVersionNumberName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0002 This attribute defines the version number of the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 2 } +systemManagementSoftwareBuildNumber OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0003 This attribute defines the build number of the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 3 } +systemManagementSoftwareDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0004 This attribute defines the description of the +systems management software." + ::= { systemManagementSoftwareGroup 4 } +systemManagementSoftwareSupportedProtocol OBJECT-TYPE + SYNTAX SMSSupportedTypes + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0005 This attribute defines the protocols supported by the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 5 } +systemManagementSoftwarePreferredProtocol OBJECT-TYPE + SYNTAX SMSSupportedTypes + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0006 This attribute defines the protocol preferred by the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 6 } +systemManagementSoftwareUpdateLevelName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0007 This attribute defines the update level of the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 7 } +systemManagementSoftwareURLName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0008 This attribute defines the Universal Resource Locator (URL) +of the systems management software." + ::= { systemManagementSoftwareGroup 8 } +systemManagementSoftwareLanguageName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0009 This attribute defines the language of the +systems management software." + ::= { systemManagementSoftwareGroup 9 } +systemManagementSoftwareGlobalVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0010 This attribute defines the global version of the +systems management software." + ::= { systemManagementSoftwareGroup 10 } +systemManagementSoftwareFeatureFlags OBJECT-TYPE + SYNTAX SMSFeatureFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0011 This attribute defines the features of the systems management +software. If the value is zero, none of the features are enabled. +Note: This attribute is a bit field, so the value returned may be +a combination of the bit masks defined in SMSFeatureFlags." + ::= { systemManagementSoftwareGroup 11 } +systemManagementSoftwareSNMPAgentFeatureFlags OBJECT-TYPE + SYNTAX SMSSNMPAgentFeatureFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0012 This attribute defines the features of the SNMP agent +software provided by the operating system. If the value is zero, +none of the features are enabled. Note: This attribute is a bit field, +so the value returned may be a combination of the bit masks defined +in SMSSNMPAgentFeatureFlags." + ::= { systemManagementSoftwareGroup 12 } +systemManagementSoftwareManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0013 This attribute defines the manufacturer of the +systems management software." + ::= { systemManagementSoftwareGroup 13 } + + +------------------------------------------------------------------------------- +-- System State Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.200 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System State Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.200.10.1.. +------------------------------------------------------------------------------- + +SystemStateTableEntry ::= SEQUENCE { + systemStatechassisIndex DellObjectRange, + systemStateGlobalSystemStatus DellStatus, + systemStateChassisState DellStateSettings, + systemStateChassisStatus DellStatus, + systemStatePowerUnitStateDetails OCTET STRING (SIZE(1..128)), + systemStatePowerUnitStatusRedundancy DellStatusRedundancy, + systemStatePowerUnitStatusDetails OCTET STRING (SIZE(1..128)), + systemStatePowerSupplyStateDetails OCTET STRING (SIZE(1..128)), + systemStatePowerSupplyStatusCombined DellStatus, + systemStatePowerSupplyStatusDetails OCTET STRING (SIZE(1..128)), + systemStateVoltageStateDetails OCTET STRING (SIZE(1..128)), + systemStateVoltageStatusCombined DellStatus, + systemStateVoltageStatusDetails OCTET STRING (SIZE(1..128)), + systemStateAmperageStateDetails OCTET STRING (SIZE(1..128)), + systemStateAmperageStatusCombined DellStatus, + systemStateAmperageStatusDetails OCTET STRING (SIZE(1..128)), + systemStateCoolingUnitStateDetails OCTET STRING (SIZE(1..128)), + systemStateCoolingUnitStatusRedundancy DellStatusRedundancy, + systemStateCoolingUnitStatusDetails OCTET STRING (SIZE(1..128)), + systemStateCoolingDeviceStateDetails OCTET STRING (SIZE(1..128)), + systemStateCoolingDeviceStatusCombined DellStatus, + systemStateCoolingDeviceStatusDetails OCTET STRING (SIZE(1..128)), + systemStateTemperatureStateDetails OCTET STRING (SIZE(1..128)), + systemStateTemperatureStatusCombined DellStatus, + systemStateTemperatureStatusDetails OCTET STRING (SIZE(1..128)), + systemStateMemoryDeviceStateDetails OCTET STRING (SIZE(1..128)), + systemStateMemoryDeviceStatusCombined DellStatus, + systemStateMemoryDeviceStatusDetails OCTET STRING (SIZE(1..128)), + systemStateChassisIntrusionStateDetails OCTET STRING (SIZE(1..128)), + systemStateChassisIntrusionStatusCombined DellStatus, + systemStateChassisIntrusionStatusDetails OCTET STRING (SIZE(1..128)), + systemStateACPowerSwitchStateDetails OCTET STRING (SIZE(1..128)), + systemStateACPowerSwitchStatusRedundancy DellStatusRedundancy, + systemStateACPowerSwitchStatusDetails OCTET STRING (SIZE(1..128)), + systemStateACPowerCordStateDetails OCTET STRING (SIZE(1..128)), + systemStateACPowerCordStatusCombined DellStatus, + systemStateACPowerCordStatusDetails OCTET STRING (SIZE(1..128)), + systemStateRedundantMemoryUnitStateDetails OCTET STRING (SIZE(1..128)), + systemStateRedundantMemoryUnitStatusRedundancy DellStatusRedundancy, + systemStateRedundantMemoryUnitStatusDetails OCTET STRING (SIZE(1..128)), + systemStateEventLogStatus DellStatus, + systemStatePowerUnitStatusCombined DellStatus, + systemStatePowerUnitStatusList OCTET STRING (SIZE(1..128)), + systemStateCoolingUnitStatusCombined DellStatus, + systemStateCoolingUnitStatusList OCTET STRING (SIZE(1..128)), + systemStateACPowerSwitchStatusCombined DellStatus, + systemStateACPowerSwitchStatusList OCTET STRING (SIZE(1..128)), + systemStateRedundantMemoryUnitStatusCombined DellStatus, + systemStateRedundantMemoryUnitStatusList OCTET STRING (SIZE(1..128)), + systemStateProcessorDeviceStatusCombined DellStatus, + systemStateProcessorDeviceStatusList OCTET STRING (SIZE(1..128)), + systemStateBatteryStatusCombined DellStatus, + systemStateBatteryStatusList OCTET STRING (SIZE(1..128)), + systemStateSDCardUnitStatusCombined DellStatus, + systemStateSDCardUnitStatusList OCTET STRING (SIZE(1..128)), + systemStateSDCardDeviceStatusCombined DellStatus, + systemStateSDCardDeviceStatusList OCTET STRING (SIZE(1..128)) +} + +systemStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemStateTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0200.0010 This object defines the System State Table." + ::= { systemStateGroup 10 } +systemStateTableEntry OBJECT-TYPE + SYNTAX SystemStateTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0200.0010.0001 This object defines the System State Table Entry." + INDEX { systemStatechassisIndex } + ::= { systemStateTable 1 } + +systemStatechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0001 This attribute defines the index (one based) of this +chassis." + ::= { systemStateTableEntry 1 } +systemStateGlobalSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0002 This attribute defines the global system status +of all chassis being monitored by the systems management software." + ::= { systemStateTableEntry 2 } +systemStateChassisState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0003 This attribute defines the state settings of this +chassis." + ::= { systemStateTableEntry 3 } +systemStateChassisStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0004 This attribute defines the status of this chassis." + ::= { systemStateTableEntry 4 } +systemStatePowerUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0005 This attribute lists the state settings of each +power unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a power unit. The first byte returned represents the state settings +of the first power unit, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 5 } +systemStatePowerUnitStatusRedundancy OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0006 This attribute defines the combined redundancy status +of all power units of this chassis." + ::= { systemStateTableEntry 6 } +systemStatePowerUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0007 This attribute lists the redundancy status of each +power unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the redundancy status +of a power unit. The first byte returned represents the redundancy status +of the first power unit, etc. The bytes have the same definition type as +DellStatusRedundancy." + ::= { systemStateTableEntry 7 } +systemStatePowerSupplyStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0008 This attribute lists the state settings of each +power supply of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a power supply. The first byte returned represents the state settings +of the first power supply, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 8 } +systemStatePowerSupplyStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0009 This attribute defines the combined status of all +power supplies of this chassis." + ::= { systemStateTableEntry 9 } +systemStatePowerSupplyStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0010 This attribute lists the status of each power supply +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a power supply. +The first byte returned represents the status of the first power supply, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 10 } +systemStateVoltageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0011 This attribute lists the state settings of each +voltage probe of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a voltage probe. The first byte returned represents the state settings +of the first voltage probe, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 11 } +systemStateVoltageStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0012 This attribute defines the combined status of all +voltage probes of this chassis." + ::= { systemStateTableEntry 12 } +systemStateVoltageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0013 This attribute lists the status of each voltage probe +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a voltage probe. +The first byte returned represents the status of the first voltage probe, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 13 } +systemStateAmperageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0014 This attribute lists the state settings of each +amperage probe of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of an amperage probe. The first byte returned represents the state settings +of the first amperage probe, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 14 } +systemStateAmperageStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0015 This attribute defines the combined status of all +amperage probes of this chassis." + ::= { systemStateTableEntry 15 } +systemStateAmperageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0016 This attribute lists the status of each amperage probe +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of an amperage probe. +The first byte returned represents the status of the first amperage probe, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 16 } +systemStateCoolingUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0017 This attribute lists the state settings of each +cooling unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a cooling unit. The first byte returned represents the state settings +of the first cooling unit, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 17 } +systemStateCoolingUnitStatusRedundancy OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0018 This attribute defines the combined redundancy status +of all cooling units of this chassis." + ::= { systemStateTableEntry 18 } +systemStateCoolingUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only STATUS mandatory + DESCRIPTION +"0200.0010.0001.0019 This attribute lists the redundancy status of each +cooling unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the redundancy status +of a cooling unit. The first byte returned represents the redundancy status +of the first cooling unit, etc. The bytes have the same definition type as +DellStatusRedundancy." + ::= { systemStateTableEntry 19 } +systemStateCoolingDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0020 This attribute lists the state settings of each +cooling device of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a cooling device. The first byte returned represents the state settings +of the first cooling device, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 20 } +systemStateCoolingDeviceStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0021 This attribute defines the combined status of all +cooling devices of this chassis." + ::= { systemStateTableEntry 21 } +systemStateCoolingDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0022 This attribute lists the status of each cooling device +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a cooling device. +The first byte returned represents the status of the first cooling device, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 22 } +systemStateTemperatureStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0023 This attribute lists the state settings of each +temperature probe of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a temperature probe. The first byte returned represents the state settings +of the first temperature probe, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 23 } +systemStateTemperatureStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0024 This attribute defines the combined status of all +temperature probes of this chassis." + ::= { systemStateTableEntry 24 } +systemStateTemperatureStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0025 This attribute lists the status of each temperature probe +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a temperature probe. +The first byte returned represents the status of the first temperature probe, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 25 } +systemStateMemoryDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0026 This attribute lists the state settings of each +memory device of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a memory device. The first byte returned represents the state settings +of the first memory device, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 26 } +systemStateMemoryDeviceStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0027 This attribute defines the combined status of all +memory devices of this chassis." + ::= { systemStateTableEntry 27 } +systemStateMemoryDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0028 This attribute lists the status of each memory device +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a memory device. +The first byte returned represents the status of the first memory device, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 28 } +systemStateChassisIntrusionStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0029 This attribute lists the state settings of each +intrusion detection device of this chassis. The results are returned as +a binary octet string where each byte of the octet string represents the +state settings of an intrusion detection device. The first byte returned +represents the state settings of the first intrusion detection device, etc. +The bytes have the same definition type as DellStateSettings." + ::= { systemStateTableEntry 29 } +systemStateChassisIntrusionStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0030 This attribute defines the combined status of all +intrusion detection devices of this chassis." + ::= { systemStateTableEntry 30 } +systemStateChassisIntrusionStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0031 This attribute lists the status of each intrusion +detection device of this chassis. The results are returned as a binary +octet string where each byte of the octet string represents the status +of an intrusion detection device. The first byte returned represents the +status of the first intrusion detection device, etc. The bytes have the +same definition type as DellStatus." + ::= { systemStateTableEntry 31 } +systemStateACPowerSwitchStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0032 This attribute lists the state settings of each +AC power switch of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of an AC power switch. The first byte returned represents the state settings +of the first AC power switch, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 32 } +systemStateACPowerSwitchStatusRedundancy OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0033 This attribute defines the combined redundancy status +of all AC power switches of this chassis." + ::= { systemStateTableEntry 33 } +systemStateACPowerSwitchStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0034 This attribute lists the redundancy status of each +AC power switch of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the redundancy status +of an AC power switch. The first byte returned represents the redundancy +status of the first AC power switch, etc. The bytes have the same definition +type as DellStatusRedundancy." + ::= { systemStateTableEntry 34 } +systemStateACPowerCordStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0035 This attribute lists the state settings of each +AC power cord associated with an AC power switch of this chassis. +The results are returned as a binary octet string where each byte of +the octet string represents the state settings of an AC power cord. +The first byte returned represents the state settings of the first +AC power cord, etc. The bytes have the same definition type as +DellStateSettings." + ::= { systemStateTableEntry 35 } +systemStateACPowerCordStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0036 This attribute defines the combined status of all +AC power cords for any AC power switches of this chassis." + ::= { systemStateTableEntry 36 } +systemStateACPowerCordStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0037 This attribute lists the status of each AC power cord +associated with an AC power switch of this chassis. The results are returned +as a binary octet string where each byte of the octet string represents +the status of an AC power cord. The first byte returned represents the status +of the first AC power cord, etc. The bytes have the same definition type +as DellStatus." + ::= { systemStateTableEntry 37 } +systemStateRedundantMemoryUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0038 This attribute lists the state settings of each +redundant memory unit of this chassis. The results are returned as +a binary octet string where each byte of the octet string represents +the state settings of a redundant memory unit. The first byte returned +represents the state settings of the first redundant memory unit, etc. +The bytes have the same definition type as DellStateSettings." + ::= { systemStateTableEntry 38 } +systemStateRedundantMemoryUnitStatusRedundancy OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0039 This attribute defines the combined redundancy status +of all redundant memory units of this chassis." + ::= { systemStateTableEntry 39 } +systemStateRedundantMemoryUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0040 This attribute lists the redundancy status of each +redundant memory unit of this chassis. The results are returned as a binary +octet string where each byte of the octet string represents the redundancy +status of a redundant memory unit. The first byte returned represents the +redundancy status of the first redundant memory unit, etc. The bytes have +the same definition type as DellStatusRedundancy." + ::= { systemStateTableEntry 40 } +systemStateEventLogStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0041 This attribute defines the overall status of the +(ESM) event log of this chassis." + ::= { systemStateTableEntry 41 } +systemStatePowerUnitStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0042 This attribute defines the combined status +of all power units of this chassis." + ::= { systemStateTableEntry 42 } +systemStatePowerUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0043 This attribute lists the status of each +power unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the status +of a power unit. The first byte returned represents the status +of the first power unit, etc. The bytes have the same definition type +as DellStatus." + ::= { systemStateTableEntry 43 } +systemStateCoolingUnitStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0044 This attribute defines the combined status +of all cooling units of this chassis." + ::= { systemStateTableEntry 44 } +systemStateCoolingUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0045 This attribute lists the status of each +cooling unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the status +of a cooling unit. The first byte returned represents the status +of the first cooling unit, etc. The bytes have the same definition type +as DellStatus." + ::= { systemStateTableEntry 45 } +systemStateACPowerSwitchStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0046 This attribute defines the combined status +of all AC power switches of this chassis." + ::= { systemStateTableEntry 46 } +systemStateACPowerSwitchStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0047 This attribute lists the status of each +AC power switch of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the status +of an AC power switch. The first byte returned represents the status +of the first AC power switch, etc. The bytes have the same definition type +as DellStatus." + ::= { systemStateTableEntry 47 } +systemStateRedundantMemoryUnitStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0048 This attribute defines the combined status +of all redundant memory units of this chassis." + ::= { systemStateTableEntry 48 } +systemStateRedundantMemoryUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0049 This attribute lists the status of each +redundant memory unit of this chassis. The results are returned as a binary +octet string where each byte of the octet string represents the status +of a redundant memory unit. The first byte returned represents the status +of the first redundant memory unit, etc. The bytes have the same definition +type as DellStatus." + ::= { systemStateTableEntry 49 } +systemStateProcessorDeviceStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0050 This attribute defines the combined status of all +processor devices of this chassis." + ::= { systemStateTableEntry 50 } +systemStateProcessorDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0051 This attribute lists the status of each processor device +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a processor device. +The first byte returned represents the status of the first processor device, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 51 } +systemStateBatteryStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0052 This attribute defines the combined status of all +batteries of this chassis." + ::= { systemStateTableEntry 52 } +systemStateBatteryStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0053 This attribute lists the status of each battery +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a battery. +The first byte returned represents the status of the first battery, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 53 } +systemStateSDCardUnitStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0054 This attribute defines the combined status +of all SD Card units of this chassis." + ::= { systemStateTableEntry 54 } +systemStateSDCardUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0055 This attribute lists the status of each +SD Card unit of this chassis. The results are returned as a binary +octet string where each byte of the octet string represents the status +of a SD Card unit. The first byte returned represents the status +of the first SD Card unit, etc. The bytes have the same definition +type as DellStatus." + ::= { systemStateTableEntry 55 } +systemStateSDCardDeviceStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0056 This attribute defines the combined status of all +SD Card devices of this chassis." + ::= { systemStateTableEntry 56 } +systemStateSDCardDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0057 This attribute lists the status of each SD Card device +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a SD Card device. +The first byte returned represents the status of the first SD Card device, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 57 } + + +------------------------------------------------------------------------------- +-- Chassis Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300 +------------------------------------------------------------------------------- + + +DellStateCapabilitiesLogUnique ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state capabilities are unknown + onlineCapable(2), -- log can be enabled (online) or disabled (offline) + notReadyCapable(4), -- log can be not ready + resetCapable(8) -- log can be reset +} +DellStateSettingsLogUnique ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state settings are unknown + online(2), -- log is enabled (online) + notReady(4), -- log is not ready + reset(8) -- reset log +} +DellLogFormat ::= INTEGER { + raw(1), -- format is Raw + ascii(2), -- format is ASCII + uniCode(3) -- format is Unicode +} + + +------------------------------------------------------------------------------- +-- Chassis Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.10.1.. +------------------------------------------------------------------------------- + +DellChassisType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + desktop(3), -- type is Desktop + lowProfileDesktop(4), -- type is Low Profile Desktop + pizzaBox(5), -- type is Pizza Box + miniTower(6), -- type is MiniTower + tower(7), -- type is Tower + portable(8), -- type is Portable + lapTop(9), -- type is Laptop + noteBook(10), -- type is Notebook + handHeld(11), -- type is Handheld + dockingStation(12), -- type is Docking Station + allInOne(13), -- type is All-In-One + subNoteBook(14), -- type is SubNotebook + spaceSaving(15), -- type is Spacesaver + lunchBox(16), -- type is Lunchbox + mainSystemChassis(17), -- type is Main System Chassis + expansionChassis(18), -- type is Expansion Chassis + subChassis(19), -- type is SubChassis + busExpansionChassis(20), -- type is Bus Expansion Chassis + peripheralChassis(21), -- type is Peripheral Chassis + raidChassis(22), -- type is RAID Chassis + rackMountChassis(23), -- type is Rack-mounted Chassis + sealedCasePC(24), -- type is Sealed-case PC + multiSystemChassis(25) -- type is Multi-system Chassis +} +DellChassisSystemClass ::= INTEGER { + other(1), -- class is other than following values + unknown(2), -- class is unknown + workstationClass(3), -- class is Workstation + serverClass(4), -- class is Server + desktopClass(5), -- class is Desktop + portableClass(6), -- class is Portable + netPCClass(7), -- class is Net PC + storageClass(8) -- class is Storage +} +DellConnectionStatus ::= INTEGER { + unknown(2), -- status is unknown + ok(3), -- status is OK + failure(4) -- status is Failure +} +DellFanControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Fan Control capabilities + unknown(1), -- fan control capabilities are unknown + lowSpeedCapable(2), -- fan can be set to low speed + highSpeedCapable(4), -- fan can be set to high speed + lowOrHighSpeedCapable(6) -- fan can be set to low or high speed +} +DellFanControlSettings ::= INTEGER { + -- If 0 (zero), there are no Fan Control settings + unknown(1), -- fan control settings are unknown + lowSpeed(2), -- fan set to low speed + highSpeed(4) -- fan set to high speed +} +DellLEDControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no LED Control capabilities + unknown(1), -- LED control capabilities are unknown + alertOnErrorCapable(2), -- LED can alert on error condition + alertOnWarningAndErrorCapable(4), -- LED can alert on error and warning condition + alertOnWarningOrErrorCapable(6) -- LED can alert on error or warning condition +} +DellLEDControlSettings ::= INTEGER { + -- If 0 (zero), there are no LED Control settings + unknown(1), -- LED control settings are unknown + alertOnError(2), -- LED set to alert on error condition + alertOnWarningAndError(4) -- LED set to alert on error or warning condition +} +DellHDFaultLEDControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Hard Drive Fault LED Control capabilities + unknownCapabilities(1), -- LED control capabilities are unknown + enableCapable(2), -- LED can be be enabled (online) or disabled (offline) + notReadyCapable(4), -- LED can be not ready + resetCapable(8) -- LED can be reset +} +DellHDFaultLEDControlSettings ::= INTEGER { + -- If 0 (zero), there are no Hard Drive Fault LED Control settings + unknown(1), -- LED control settings are unknown + enabled(2), -- LED is enabled (online) + notReady(4), -- LED is not ready + reset(8), -- reset LED + resetAndEnable(10) -- reset and enable LED +} +DellChassisIdentifyControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Chassis Identify Control capabilities + unknownCapabilities(1), -- chassis identify capabilities are unknown + -- The objects capabilities allow it to be set to: + enableCapable(2), -- chassis identify can be enabled (online) or disabled (offline) + notReadyCapable(4), -- chassis identify can be not ready + identifyCapable(8) -- chassis idenfity can be made to identify chassis +} +DellChassisIdentifyControlSettings ::= INTEGER { + -- If 0 (zero), there are no Chassis Identify Control settings + unknown(1), -- chassis identify settings are unknown + enabled(2), -- chassis identify is enabled (online) + notReady(4), -- chassis identify is not ready + identifyChassis(8), -- identify chassis + identifyChassisAndEnable(10) -- identify chassis and enabled +} +DellHostControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Host Control capabilities + manualRebootCapable(1), -- host can be rebooted + manualPowerOFFCapable(2), -- host can be powered off + manualPowerCycleCapable(4), -- host can be power cycled + manualAllExceptOperatingSystemShutdownCapable(7), -- all host control capabilities except OS shutdown + manualOperatingSystemShutdownCapable(8), -- operating system can be shutdown + manualFullyCapable(15), -- all host control capabilities + manualRebootWithOSShutdownCapable(16), -- host can be rebooted with operating system shutdown + manualRebootWithoutOSShutdownCapable(32), -- host can be rebooted without operating system shutdown + manualPowerOffWithOSShutdownCapable(64), -- host can be powered off with operating system shutdown + manualPowerOffWithoutOSShutdownCapable(128),-- host can be powered off without operating system shutdown + manualPowerCycleWithOSShutdownCapable(256), -- host can be power cycled with operating system shutdown + manualPowerCycleWithoutOSShutdownCapable(512) -- host can be power cycled with operating system shutdown +} +DellHostControlSettings ::= INTEGER { + -- If 0 (zero), there are no Host Control settings + manualReboot(1), -- reboot host + manualPowerOFF(2), -- power off host + manualPowerCycle(4), -- power cycle host + manualOperatingSystemShutdown(8), -- shutdown operating system on host + manualOperatingSystemShutdownThenReboot(9), -- shutdown operating system on host then reboot host + manualOperatingSystemShutdownThenPowerOFF(10), -- shutdown operating system on host then power off host + manualOperatingSystemShutdownThenPowerCycle(12) -- shutdown operating system on host then power cycle host +} +DellWatchDogControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Watchdog Control capabilities + automaticRebootCapable(1), -- watchdog can reboot host + automaticPowerCycleCapable(2), -- watchdog can power cycle host + automaticNotificationCapable(4), -- watchdog can notify + automaticWatchDogTimerCapable(8), -- watchdog supports timer + automaticPowerOffCapable(16), -- watchdog can power off host + automaticAllExceptNotificationCapable(27), -- all capabilities except notification + automaticFullyCapable(31) -- all watchdog control capabilities +} +DellWatchControlSettings ::= INTEGER { + -- If 0 (zero), there are no Watchdog Control settings + automaticRebootEnabled(1), -- watchdog set for automatic reboot + automaticPowerCycleEnabled(2), -- watchdog set for automatic power cycle + automaticNotificationEnabled(4), -- watchdog set for automatic notification + automaticPowerOffEnabled(8) -- watchdog set for automatic power off +} +DellWatchDogTimerCapabilities ::= INTEGER { + -- If 0 (zero), there are no Watchdog Timer capabilities + type1Capable(1), -- watchdog can time in range of 20-480 seconds + type2Capable(2), -- watchdog can time in 30, 60, 120 and 480 second intervals + type3Capable(4) -- watchdog can time in 60 second intervals +} +DellPowerButtonControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Power Button Control capabilities + unknownCapabilities(1), -- power button capabilities are unknown + enableCapable(2) -- power button can be enabled or disabled +} +DellPowerButtonControlSettings ::= INTEGER { + -- If 0 (zero), there are no Power Button Control settings + unknown(1), -- power button settings are unknown + enabled(2), -- power button is enabled + disabled(4) -- power button disabled +} +DellNMIButtonControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no NMI Button Control capabilities + unknownCapabilities(1), -- NMI button capabilities are unknown + enableCapable(2) -- NMI button can be enabled or disabled +} +DellNMIButtonControlSettings ::= INTEGER { + -- If 0 (zero), there are no NMI Button Control settings + unknown(1), -- NMI button settings are unknown + enabled(2), -- NMI button is enabled + disabled(4) -- NMI button disabled +} +DellSystemProperties ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no properties + energySmart(1) -- Energy Smart system +} + +ChassisInformationTableEntry ::= SEQUENCE { + chassisIndexChassisInformation DellObjectRange, + chassisStateCapabilities DellStateCapabilities, + chassisStateSettings DellStateSettings, + chassisStatus DellStatus, + chassisparentIndexReference DellObjectRange, + chassisType DellChassisType, + chassisName DellString, + chassisManufacturerName DellString, + chassisModelName DellString, + chassisAssetTagName DisplayString (SIZE (0..10)), + chassisServiceTagName DisplayString (SIZE (0..7)), + chassisID DellUnsigned8BitRange, + chassisIDExtension DellUnsigned16BitRange, + chassisSystemClass DellChassisSystemClass, + chassisSystemName DellString, + chassisSystemBootDateName DellDateName, + chassisSystemDateName DellDateName, + chassisSystemLocationName DellString, + chassisSystemPrimaryUserName DellString, + chassisSystemUserPhoneNumberName DellString, + chassisConnectionStatusUnique DellConnectionStatus, + chassisFanControlCapabilitiesUnique DellFanControlCapabilities, + chassisFanControlSettingsUnique DellFanControlSettings, + chassisLEDControlCapabilitiesUnique DellLEDControlCapabilities, + chassisLEDControlSettingsUnique DellLEDControlSettings, + chassisHDFaultClearControlCapabilities DellHDFaultLEDControlCapabilities, + chassisHDFaultClearControlSettings DellHDFaultLEDControlSettings, + chassisIdentifyFlashControlCapabilities DellChassisIdentifyControlCapabilities, + chassisIdentifyFlashControlSettings DellChassisIdentifyControlSettings, + chassisLockPresent DellBoolean, + chassishostControlCapabilitiesUnique DellHostControlCapabilities, + chassishostControlSettingsUnique DellHostControlSettings, + chassiswatchDogControlCapabilitiesUnique DellWatchDogControlCapabilities, + chassiswatchDogControlSettingsUnique DellWatchControlSettings, + chassiswatchDogControlExpiryTimeCapabilitiesUnique DellWatchDogTimerCapabilities, + chassiswatchDogControlExpiryTime DellUnsigned16BitRange, + chassisallowSETCommandsfromSNMP DellBoolean, + chassisPowerButtonControlCapabilitiesUnique DellPowerButtonControlCapabilities, + chassisPowerButtonControlSettingsUnique DellPowerButtonControlSettings, + chassisResellerName DisplayString (SIZE (0..128)), + chassisResellerContactInformationName DisplayString (SIZE (0..128)), + chassisResellerProductName DisplayString (SIZE (0..128)), + chassisResellerSystemID DellUnsigned16BitRange, + chassisNMIButtonControlCapabilitiesUnique DellNMIButtonControlCapabilities, + chassisNMIButtonControlSettingsUnique DellNMIButtonControlSettings, + chassisSystemProperties DellSystemProperties, + chassisSystemRevisionNumber DellUnsigned8BitRange, + chassisSystemRevisionName DellString, + chassisExpressServiceCodeName DellString, + chassisNodeIDName DellString + } + +chassisInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChassisInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0010 This object defines the Chassis Information Table." + ::= { chassisInformationGroup 10 } +chassisInformationTableEntry OBJECT-TYPE + SYNTAX ChassisInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0010.0001 This object defines the Chassis Information Table Entry." + INDEX { chassisIndexChassisInformation } + ::= { chassisInformationTable 1 } + +chassisIndexChassisInformation OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { chassisInformationTableEntry 1 } +chassisStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0002 This attribute defines the state capabilities of the +chassis." + ::= { chassisInformationTableEntry 2 } +chassisStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0003 This attribute defines the state settings of the +chassis." + ::= { chassisInformationTableEntry 3 } +chassisStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0004 This attribute defines the status of the chassis." + ::= { chassisInformationTableEntry 4 } +chassisparentIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0005 This attribute defines the index (one based) to the +parent chassis of this chassis, if any." + ::= { chassisInformationTableEntry 5 } +chassisType OBJECT-TYPE + SYNTAX DellChassisType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0006 This attribute defines the chassis type of the chassis." + ::= { chassisInformationTableEntry 6 } +chassisName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0007 This attribute defines the user-assigned name of the +chassis." + ::= { chassisInformationTableEntry 7 } +chassisManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0008 This attribute defines the name of the manufacturer +of the chassis." + ::= { chassisInformationTableEntry 8 } +chassisModelName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0009 This attribute defines the system model type of the +chassis." + ::= { chassisInformationTableEntry 9 } +chassisAssetTagName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0010 This attribute defines the asset tag name of the +chassis." + ::= { chassisInformationTableEntry 10 } +chassisServiceTagName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0011 This attribute defines the service tag name of the +chassis." + ::= { chassisInformationTableEntry 11 } +chassisID OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0012 This attribute defines the system ID. If the value +is 254 (0xFE), the attribute chassisIDExtension provides the system ID." + ::= { chassisInformationTableEntry 12 } +chassisIDExtension OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0013 This attribute defines the system ID extension." + ::= { chassisInformationTableEntry 13 } +chassisSystemClass OBJECT-TYPE + SYNTAX DellChassisSystemClass + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0014 This attribute defines the system class." + ::= { chassisInformationTableEntry 14 } +chassisSystemName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0015 This attribute defines the host name of the system." + ::= { chassisInformationTableEntry 15 } +chassisSystemBootDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0016 This attribute defines boot time of the system. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes and ss are the seconds. +uuuuuu is the number of microseconds, and +fff or -fff is the offset from +UTC in minutes." + ::= { chassisInformationTableEntry 16 } +chassisSystemDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0017 This attribute defines the current time of the system. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes and ss are the seconds. +uuuuuu is the number of microseconds, and +fff or -fff is the offset from +UTC in minutes." + ::= { chassisInformationTableEntry 17 } +chassisSystemLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0018 This attribute defines the location of the system." + ::= { chassisInformationTableEntry 18 } +chassisSystemPrimaryUserName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0019 This attribute defines the name of the primary user +of the system." + ::= { chassisInformationTableEntry 19 } +chassisSystemUserPhoneNumberName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0020 This attribute defines the phone number of the primary +user of the system." + ::= { chassisInformationTableEntry 20 } +chassisConnectionStatusUnique OBJECT-TYPE + SYNTAX DellConnectionStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0021 This attribute defines the status of the connection +of the chassis." + ::= { chassisInformationTableEntry 21 } +chassisFanControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellFanControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0022 This attribute defines the capabilities of the +fan control hardware in the chassis." + ::= { chassisInformationTableEntry 22 } +chassisFanControlSettingsUnique OBJECT-TYPE + SYNTAX DellFanControlSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0023 This attribute defines the reading and setting of the +fan control hardware in the chassis." + ::= { chassisInformationTableEntry 23 } +chassisLEDControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellLEDControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0024 This attribute defines the capabilities of the +LED control hardware in the chassis." + ::= { chassisInformationTableEntry 24 } +chassisLEDControlSettingsUnique OBJECT-TYPE + SYNTAX DellLEDControlSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0025 This attribute defines the reading and setting of the +LED control hardware in the chassis." + ::= { chassisInformationTableEntry 25 } +chassisHDFaultClearControlCapabilities OBJECT-TYPE + SYNTAX DellHDFaultLEDControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0026 This attribute defines if the chassis allows reset +of the chassis hard disk drive fault LED." + ::= { chassisInformationTableEntry 26 } +chassisHDFaultClearControlSettings OBJECT-TYPE + SYNTAX DellHDFaultLEDControlSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0027 This attribute allows reset of a chassis hard disk +drive fault LED." + ::= { chassisInformationTableEntry 27 } +chassisIdentifyFlashControlCapabilities OBJECT-TYPE + SYNTAX DellChassisIdentifyControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0028 This attribute defines if the chassis allows setting +of the chassis front panel LED to flash." + ::= { chassisInformationTableEntry 28 } +chassisIdentifyFlashControlSettings OBJECT-TYPE + SYNTAX DellChassisIdentifyControlSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0029 This attribute setting causes the chassis front panel +LED to flash." + ::= { chassisInformationTableEntry 29 } +chassisLockPresent OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0030 If true, a chassis lock is present on the chassis." + ::= { chassisInformationTableEntry 30 } +chassishostControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellHostControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.031 This attribute defines the capabilities of the +host control function." + ::= { chassisInformationTableEntry 31 } +chassishostControlSettingsUnique OBJECT-TYPE + SYNTAX DellHostControlSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0032 This attribute defines the settings of the +host control function." + ::= { chassisInformationTableEntry 32 } +chassiswatchDogControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellWatchDogControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0033 This attribute defines the capabilities of the +watchdog control function." + ::= { chassisInformationTableEntry 33 } +chassiswatchDogControlSettingsUnique OBJECT-TYPE + SYNTAX DellWatchControlSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0034 This attribute defines the settings of the +watchdog control function." + ::= { chassisInformationTableEntry 34 } +chassiswatchDogControlExpiryTimeCapabilitiesUnique OBJECT-TYPE + SYNTAX DellWatchDogTimerCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0035 This attribute defines the capabilities of the +watchdog control expiry timer function." + ::= { chassisInformationTableEntry 35 } +chassiswatchDogControlExpiryTime OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0036 This attribute defines the current watchdog timer +value in seconds." + ::= { chassisInformationTableEntry 36 } +chassisallowSETCommandsfromSNMP OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0037 This attribute defines if SNMP SET type commands +are allowed or not." + ::= { chassisInformationTableEntry 37 } +chassisPowerButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellPowerButtonControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0038 This attribute defines the capabilities of the +power button control hardware in the chassis." + ::= { chassisInformationTableEntry 38 } +chassisPowerButtonControlSettingsUnique OBJECT-TYPE + SYNTAX DellPowerButtonControlSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0039 This attribute defines the reading and setting of +the power button control hardware in the chassis." + ::= { chassisInformationTableEntry 39 } +chassisResellerName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0040 This attribute defines the name of the system reseller." + ::= { chassisInformationTableEntry 40 } +chassisResellerContactInformationName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0041 This attribute defines the contact information +for the system reseller." + ::= { chassisInformationTableEntry 41 } +chassisResellerProductName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0042 This attribute defines the reseller's product name +for the system." + ::= { chassisInformationTableEntry 42 } +chassisResellerSystemID OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0043 This attribute defines the reseller's system ID +for the system." + ::= { chassisInformationTableEntry 43 } +chassisNMIButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellNMIButtonControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0044 This attribute defines the capabilities of the +NMI button control hardware in the chassis." + ::= { chassisInformationTableEntry 44 } +chassisNMIButtonControlSettingsUnique OBJECT-TYPE + SYNTAX DellNMIButtonControlSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0045 This attribute defines the reading and setting of +the NMI button control hardware in the chassis." + ::= { chassisInformationTableEntry 45 } +chassisSystemProperties OBJECT-TYPE + SYNTAX DellSystemProperties + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0046 This attribute defines the properties of the system." + ::= { chassisInformationTableEntry 46 } +chassisSystemRevisionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0047 This attribute defines the revision number of the system +where zero indicates the original version of the system. The revision number +is not available on all systems." + ::= { chassisInformationTableEntry 47 } +chassisSystemRevisionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0048 This attribute defines the revision name of the system, +if applicable." + ::= { chassisInformationTableEntry 48 } +chassisExpressServiceCodeName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0049 This attribute defines the Express Service Code of the +chassis." + ::= { chassisInformationTableEntry 49 } +chassisNodeIDName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0050 This attribute defines the NodeID Code of the +chassis,if applicable" + ::= { chassisInformationTableEntry 50 } + + + +------------------------------------------------------------------------------- +-- Universal Unique ID (UUID) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.20.1... +------------------------------------------------------------------------------- + +DellUUIDType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + motherBoard(3), -- type is Motherboard + systemBackPlane(4), -- type is System Backplane + powerSupplyParallelingBoard(5), -- type is Power Supply Paralleling Board + peripheralBayBackPlane(6), -- type is Peripheral Bay Backplane + secondaryBackPlane(7) -- type is Secondary Backplane +} + +UUIDTableEntry ::= SEQUENCE { + uUIDchassisIndex DellObjectRange, + uUIDIndex DellObjectRange, + uUIDType DellUUIDType, + uUIDValue OCTET STRING (SIZE(16)) +} + +uUIDTable OBJECT-TYPE + SYNTAX SEQUENCE OF UUIDTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0020 This object defines the Universal Unique ID (UUID) Table." + ::= { chassisInformationGroup 20 } +uUIDTableEntry OBJECT-TYPE + SYNTAX UUIDTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0020.0001 This object defines the UUID Table Entry." + INDEX { uUIDchassisIndex, + uUIDIndex } + ::= { uUIDTable 1 } + +uUIDchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { uUIDTableEntry 1 } +uUIDIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0020.0001.0002 This attribute defines the index (one based) of the UUID." + ::= { uUIDTableEntry 2 } +uUIDType OBJECT-TYPE + SYNTAX DellUUIDType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0020.0001.0003 This attribute defines the type of the UUID." + ::= { uUIDTableEntry 3 } +uUIDValue OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0020.0001.0004 This attribute defines the value of the UUID." + ::= { uUIDTableEntry 4 } + + +------------------------------------------------------------------------------- +-- Power On Self Test (POST) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.30.1... +------------------------------------------------------------------------------- + +PostLogTableEntry ::= SEQUENCE { + postLogchassisIndex DellObjectRange, + postLogRecordIndex DellUnsigned32BitRange, + postLogStateCapabilitiesUnique DellStateCapabilitiesLogUnique, + postLogStateSettingsUnique DellStateSettingsLogUnique, + postLogRecord DisplayString (SIZE (0..1024)), + postLogFormat DellLogFormat +} + +postLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF PostLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0030 This object defines the Power On Self Test (POST) Log Table." + ::= { chassisInformationGroup 30 } +postLogTableEntry OBJECT-TYPE + SYNTAX PostLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0030.0001 This object defines the POST Log Table Entry." + INDEX { postLogchassisIndex, + postLogRecordIndex } + ::= { postLogTable 1 } + +postLogchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { postLogTableEntry 1 } +postLogRecordIndex OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0002 This attribute defines the index (one based) of the +POST log record." + ::= { postLogTableEntry 2 } +postLogStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellStateCapabilitiesLogUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0003 This attribute defines the state capabilities of the +object that is writing the POST log." + ::= { postLogTableEntry 3 } +postLogStateSettingsUnique OBJECT-TYPE + SYNTAX DellStateSettingsLogUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0004 This attribute defines the state settings of the +object that is writing the POST log." + ::= { postLogTableEntry 4 } +postLogRecord OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0005 This attribute defines the data of the POST log record." + ::= { postLogTableEntry 5 } +postLogFormat OBJECT-TYPE + SYNTAX DellLogFormat + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0006 This attribute defines the format of the POST log record." + ::= { postLogTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Event (ESM) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.40.1... +------------------------------------------------------------------------------- + +EventLogTableEntry ::= SEQUENCE { + eventLogchassisIndex DellObjectRange, + eventLogRecordIndex DellUnsigned32BitRange, + eventLogStateCapabilitiesUnique DellStateCapabilitiesLogUnique, + eventLogStateSettingsUnique DellStateSettingsLogUnique, + eventLogRecord DisplayString (SIZE (0..1024)), + eventLogFormat DellLogFormat, + eventLogSeverityStatus DellStatus, + eventLogDateName DellDateName +} + +eventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF EventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0040 This object defines the Event (ESM) Log Table." + ::= { chassisInformationGroup 40 } +eventLogTableEntry OBJECT-TYPE + SYNTAX EventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0040.0001 This object defines the Event (ESM) Log Table Entry." + INDEX { eventLogchassisIndex, + eventLogRecordIndex } + ::= { eventLogTable 1 } + +eventLogchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { eventLogTableEntry 1 } +eventLogRecordIndex OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0002 This attribute defines the index (one based) of the +event log record." + ::= { eventLogTableEntry 2 } +eventLogStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellStateCapabilitiesLogUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0003 This attribute defines the state capabilities of the +object that is writing the event log." + ::= { eventLogTableEntry 3 } +eventLogStateSettingsUnique OBJECT-TYPE + SYNTAX DellStateSettingsLogUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0004 This attribute defines the state settings of the +object that is writing the event log." + ::= { eventLogTableEntry 4 } +eventLogRecord OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0005 This attribute defines the data of the event log record." + ::= { eventLogTableEntry 5 } +eventLogFormat OBJECT-TYPE + SYNTAX DellLogFormat + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0006 This attribute defines the format of the event log record." + ::= { eventLogTableEntry 6 } +eventLogSeverityStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0007 This attribute defines the severity of the +event log record." + ::= { eventLogTableEntry 7 } +eventLogDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0008 This attribute defines the date and time of the +event log record." + ::= { eventLogTableEntry 8 } + + +------------------------------------------------------------------------------- +-- System BIOS Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.50.1... +------------------------------------------------------------------------------- + +SystemBIOSTableEntry ::= SEQUENCE { + systemBIOSchassisIndex DellObjectRange, + systemBIOSIndex DellObjectRange, + systemBIOSStateCapabilities DellStateCapabilities, + systemBIOSStateSettings DellStateSettings, + systemBIOSStatus DellStatus, + systemBIOSSize DellUnsigned32BitRange, + systemBIOSReleaseDateName DellDateName, + systemBIOSVersionName DellString, + systemBIOSStartingAddress DellUnsigned64BitRange, + systemBIOSEndingAddress DellUnsigned64BitRange, + systemBIOSManufacturerName DellString, + systemBIOSCharacteristics DellUnsigned64BitRange, + systemBIOSCharacteristicsExt1 DellUnsigned8BitRange, + systemBIOSCharacteristicsExt2 DellUnsigned8BitRange +} + +systemBIOSTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0050 This object defines the System BIOS Table." + ::= { chassisInformationGroup 50 } +systemBIOSTableEntry OBJECT-TYPE + SYNTAX SystemBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0050.0001 This object defines the System BIOS Table Entry." + INDEX { systemBIOSchassisIndex, + systemBIOSIndex } + ::= { systemBIOSTable 1 } + +systemBIOSchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemBIOSTableEntry 1 } +systemBIOSIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0002 This attribute defines the index (one based) of the +system BIOS." + ::= { systemBIOSTableEntry 2 } +systemBIOSStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0003 This attribute defines the state capabilities of the +system BIOS." + ::= { systemBIOSTableEntry 3 } +systemBIOSStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0004 This attribute defines the state settings of the +system BIOS." + ::= { systemBIOSTableEntry 4 } +systemBIOSStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0005 This attribute defines the status of the system BIOS." + ::= { systemBIOSTableEntry 5 } +systemBIOSSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0006 This attribute defines the image size of the +system BIOS in KBytes. Zero indicates size is unknown." + ::= { systemBIOSTableEntry 6 } +systemBIOSReleaseDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0007 This attribute defines the release date name of the +system BIOS." + ::= { systemBIOSTableEntry 7 } +systemBIOSVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0008 This attribute defines the version name of the +system BIOS." + ::= { systemBIOSTableEntry 8 } +systemBIOSStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0009 This attribute defines the starting address of the +system BIOS. Zero indicates the starting address is unknown." + ::= { systemBIOSTableEntry 9 } +systemBIOSEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0010 This attribute defines the ending address of the +system BIOS. Zero indicates the starting address is unknown." + ::= { systemBIOSTableEntry 10 } +systemBIOSManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0011 This attribute defines the name of the manufacturer +of the system BIOS." + ::= { systemBIOSTableEntry 11 } +systemBIOSCharacteristics OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0012 This attribute defines characteristics of the +system BIOS. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). Bit 63 is the first bit in the value, +and bit 0 is the last bit in the value. See the description of +DellUnsigned64BitRange at the beginning of this file for more information +on the format of the value. + +NOTE: Bits 48-63 need to be examined in the context of the system ID. +The system ID is available in the attribute chassisID. If the value +for chassisID is non-zero, bits 48-63 have the meaning defined below. + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Reserved + Bit 1 Reserved + Bit 2 Unknown + Bit 3 BIOS Characteristics Not Supported + Bit 4 ISA is supported + Bit 5 MCA is supported + Bit 6 EISA is supported + Bit 7 PCI is supported + Bit 8 PC Card (PCMCIA) is supported + Bit 9 Plug and Play is supported + Bit 10 APM is supported + Bit 11 BIOS is Upgradeable (Flash) + Bit 12 BIOS shadowing is allowed + Bit 13 VL-VESA is supported + Bit 14 ESCD support is available + Bit 15 Boot from CD is supported + Bit 16 Selectable Boot is supported + Bit 17 BIOS ROM is socketed + Bit 18 Boot From PC Card (PCMCIA) is supported + Bit 19 EDD (Enhanced Disk Drive) Specification is supported + Bit 20 Int 13h - Japanese Floppy for NEC 9800 1.2mb (3.5 in, 1k Bytes/Sector, 360 RPM) is supported + Bit 21 Int 13h - Japanese Floppy for Toshiba 1.2mb (3.5 in, 360 RPM) is supported + Bit 22 Int 13h - 5.25 in / 360 KB Floppy Services are supported + Bit 23 Int 13h - 5.25 in /1.2MB Floppy Services are supported + Bit 24 Int 13h - 3.5 in / 720 KB Floppy Services are supported + Bit 25 Int 13h - 3.5 in / 2.88 MB Floppy Services are supported + Bit 26 Int 5h, Print Screen Service is supported + Bit 27 Int 9h, 8042 Keyboard services are supported + Bit 28 Int 14h, Serial Services are supported + Bit 29 Int 17h, Printer Services are supported + Bit 30 Int 10h, CGA/Mono Video Services are supported + Bit 31 NEC PC-98 + Bit 32-47 Reserved + Bit 48 Built-in NIC supports Magic Packet + Bit 49 System supports Wake-on-LAN + Bit 50 System supports chassis intrusion + Bit 51 Built-in NIC supports pattern-matching + Bit 52 System BIOS supports a 7-character service tag + Bit 53-63 Reserved" + ::= { systemBIOSTableEntry 12 } +systemBIOSCharacteristicsExt1 OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0013 This attribute defines additional characteristics of the +system BIOS. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 ACPI supported + Bit 1 USB Legacy is supported + Bit 2 AGP is supported + Bit 3 I2O boot is supported + Bit 4 LS-120 boot is supported + Bit 5 ATAPI ZIP Drive boot is supported + Bit 6 1394 boot is supported + Bit 7 Smart Battery supported" + ::= { systemBIOSTableEntry 13 } +systemBIOSCharacteristicsExt2 OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0014 This attribute defines additional characteristics of the +system BIOS. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 BIOS Boot Specification supported + Bit 1 Function key-initiated Network Service boot supported + Bit 2 Targeted Content Distribution supported + Bit 3-7 Reserved" + ::= { systemBIOSTableEntry 14 } + + +------------------------------------------------------------------------------- +-- Firmware Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.60.1... +------------------------------------------------------------------------------- + +DellFirmwareType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + systemBIOS(3), -- type is System BIOS + embeddedSystemManagementController(4), -- type is Embedded System Management Controller + powerSupplyParallelingBoard(5), -- type is Power Supply Paralleling Board + systemBackPlane(6), -- type is System (Primary) Backplane + powerVault2XXSKernel(7), -- type is PowerVault 2XXS Kernel + powerVault2XXSApplication(8), -- type is PowerVault 2XXS Application + frontPanel(9), -- type is Front Panel Controller + baseboardManagementController(10), -- type is Baseboard Management Controller + hotPlugPCI(11), -- type is Hot Plug PCI Controller + sensorData(12), -- type is Sensor Data Records + peripheralBay(13), -- type is Peripheral Bay Backplane + secondaryBackPlane(14), -- type is Secondary Backplane for ESM 2 systems + secondaryBackPlaneESM3And4(15), -- type is Secondary Backplane for ESM 3 and 4 systems + rac(16), -- type is Remote Access Controller + iDRAC(17), -- type is Integrated Dell Remote Access Controller + iDRAC6(18), -- type is Integrated Dell Remote Access Controller 6 + unifiedServerConfigurator(19), -- type is Unified Server Configurator + lifecycleController(20), -- type is Lifecycle Controller + iDRAC7(21), -- type is Integrated Dell Remote Access Controller 7 + iDRAC8(22) -- type is Integrated Dell Remote Access Controller 8 +} + +FirmwareTableEntry ::= SEQUENCE { + firmwarechassisIndex DellObjectRange, + firmwareIndex DellObjectRange, + firmwareStateCapabilities DellStateCapabilities, + firmwareStateSettings DellStateSettings, + firmwareStatus DellStatus, + firmwareSize DellUnsigned16BitRange, + firmwareType DellFirmwareType, + firmwareTypeName DellString, + firmwareUpdateCapabilities DellUnsigned16BitRange, + firmwareDateName OCTET STRING (SIZE(8)), + firmwareVersionName DellString +} + +firmwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF FirmwareTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0060 This object defines the Firmware Table." + ::= { chassisInformationGroup 60 } +firmwareTableEntry OBJECT-TYPE + SYNTAX FirmwareTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0060.0001 This object defines the Firmware Table Entry." + INDEX { firmwarechassisIndex, + firmwareIndex } + ::= { firmwareTable 1 } + +firmwarechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { firmwareTableEntry 1 } +firmwareIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0002 This attribute defines the index (one based) of the +firmware." + ::= { firmwareTableEntry 2 } +firmwareStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0003 This attribute defines the state capabilities of the +firmware." + ::= { firmwareTableEntry 3 } +firmwareStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0004 This attribute defines the state settings of the +firmware." + ::= { firmwareTableEntry 4 } +firmwareStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0005 This attribute defines the status of the firmware." + ::= { firmwareTableEntry 5 } +firmwareSize OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0006 This attribute defines the image size of the firmware +in KBytes. Zero indicates size is unknown." + ::= { firmwareTableEntry 6 } +firmwareType OBJECT-TYPE + SYNTAX DellFirmwareType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0007 This attribute defines the type of firmware." + ::= { firmwareTableEntry 7 } +firmwareTypeName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0008 This attribute defines the type name of the firmware." + ::= { firmwareTableEntry 8 } +firmwareUpdateCapabilities OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0009 This attribute defines the bitmap of supported methods +for firmware update." + ::= { firmwareTableEntry 9 } +firmwareDateName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0010 This attribute defines the release date of the firmware." + ::= { firmwareTableEntry 10 } +firmwareVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0011 This attribute defines the version of the firmware." + ::= { firmwareTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Intrusion Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.70.1... +------------------------------------------------------------------------------- + +DellIntrusionReading ::= INTEGER { + chassisNotBreached(1), -- chassis not breached and no uncleared breaches + chassisBreached(2), -- chassis currently breached + chassisBreachedPrior(3), -- chassis breached prior to boot and has not been cleared + chassisBreachSensorFailure(4) -- intrusion sensor has failed +} +DellIntrusionType ::= INTEGER { + chassisBreachDetectionWhenPowerON(1), -- type is detect intrusion while power on + chassisBreachDetectionWhenPowerOFF(2) -- type is detect intrusion while power off +} + +IntrusionTableEntry ::= SEQUENCE { + intrusionchassisIndex DellObjectRange, + intrusionIndex DellObjectRange, + intrusionStateCapabilities DellStateCapabilities, + intrusionStateSettings DellStateSettings, + intrusionStatus DellStatus, + intrusionReading DellIntrusionReading, + intrusionType DellIntrusionType, + intrusionLocationName DellString +} + +intrusionTable OBJECT-TYPE + SYNTAX SEQUENCE OF IntrusionTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0070 This object defines the Intrusion Table." + ::= { chassisInformationGroup 70 } +intrusionTableEntry OBJECT-TYPE + SYNTAX IntrusionTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0070.0001 This object defines the Intrusion Table Entry." + INDEX { intrusionchassisIndex, + intrusionIndex } + ::= { intrusionTable 1 } + +intrusionchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { intrusionTableEntry 1 } +intrusionIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0002 This attribute defines the index (one based) of the +intrusion sensor." + ::= { intrusionTableEntry 2 } +intrusionStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0003 This attribute defines the state capabilities of the +intrusion sensor." + ::= { intrusionTableEntry 3 } +intrusionStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0004 This attribute defines the state settings of the +intrusion sensor." + ::= { intrusionTableEntry 4 } +intrusionStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0005 This attribute defines the status of the +intrusion sensor." + ::= { intrusionTableEntry 5 } +intrusionReading OBJECT-TYPE + SYNTAX DellIntrusionReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0006 This attribute defines the reading of the +intrusion sensor." + ::= { intrusionTableEntry 6 } +intrusionType OBJECT-TYPE + SYNTAX DellIntrusionType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0007 This attribute defines the type of the +intrusion sensor." + ::= { intrusionTableEntry 7 } +intrusionLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0008 This attribute defines the location of the +intrusion sensor." + ::= { intrusionTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Base Board Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.80.1... +------------------------------------------------------------------------------- + +DellBaseBoardType ::= INTEGER { + unknown(1), -- type is unknown + other(2), -- type is other than following values + serverBlade(3), -- type is Server Blade + connectivitySwitch(4), -- type is Connectivity Switch + systemManagementModule(5), -- type is System Management Module + processorModule(6), -- type is Processor Module + ioModule(7), -- type is I/O Module + memoryModule(8), -- type is Memory Module + daughterBoard(9), -- type is Daughter Board + motherboard(10), -- type is Motherboard + processorMemoryModule(11), -- type is Processor/Memory Module + processorIOModule(12), -- type is Processor/IO Module + interconnectBoard(13) -- type is Interconnect Board +} +DellBaseBoardFeatureFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- If 0 (zero), base board has none of the following features: + boardIsHostingBoard(1), -- board is Hosting Board + boardRequiresDaughterBoard(2), -- board requires at least one Daughter Board or Auxiliary Card + boardIsRemovable(4), -- board is Removable + boardIsReplaceable(8), -- board is Replaceable + boardIsHotSwappable(16) -- board is Hot Swappable +} + +BaseBoardTableEntry ::= SEQUENCE { + baseBoardChassisIndex DellObjectRange, + baseBoardIndex DellObjectRange, + baseBoardStateCapabilities DellStateCapabilities, + baseBoardStateSettings DellStateSettings, + baseBoardStatus DellStatus, + baseBoardFeatureFlags DellBaseBoardFeatureFlags, + baseBoardType DellBaseBoardType, + baseBoardTypeName DellString, + baseBoardLocationName DellString, + baseBoardManufacturerName DellString, + baseBoardProductName DellString, + baseBoardVersionName DellString, + baseBoardServiceTagName DellString, + baseBoardPiecePartIDName DellString, + baseBoardAssetTagName DellString, + baseBoardExpressServiceCodeName DellString +} + +baseBoardTable OBJECT-TYPE + SYNTAX SEQUENCE OF BaseBoardTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0080 This object defines the Base Board Table." + ::= { chassisInformationGroup 80 } +baseBoardTableEntry OBJECT-TYPE + SYNTAX BaseBoardTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0080.0001 This object defines the Base Board Table Entry." + INDEX { baseBoardChassisIndex, + baseBoardIndex } + ::= { baseBoardTable 1 } + +baseBoardChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { baseBoardTableEntry 1 } +baseBoardIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0002 This attribute defines the index (one based) of the +base board." + ::= { baseBoardTableEntry 2 } +baseBoardStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0003 This attribute defines the state capabilities of the +base board." + ::= { baseBoardTableEntry 3 } +baseBoardStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0004 This attribute defines the state settings of the +base board." + ::= { baseBoardTableEntry 4 } +baseBoardStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0005 This attribute defines the status of the base board." + ::= { baseBoardTableEntry 5 } +baseBoardFeatureFlags OBJECT-TYPE + SYNTAX DellBaseBoardFeatureFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0006 This attribute defines the features of the base board." + ::= { baseBoardTableEntry 6 } +baseBoardType OBJECT-TYPE + SYNTAX DellBaseBoardType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0007 This attribute defines the type of the base board." + ::= { baseBoardTableEntry 7 } +baseBoardTypeName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0008 This attribute defines the type name of the base board." + ::= { baseBoardTableEntry 8 } +baseBoardLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0009 This attribute defines the location of the base board." + ::= { baseBoardTableEntry 9 } +baseBoardManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0010 This attribute defines the name of the manufacturer +of the base board." + ::= { baseBoardTableEntry 10 } +baseBoardProductName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0011 This attribute defines the product name of the +base board." + ::= { baseBoardTableEntry 11 } +baseBoardVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0012 This attribute defines the version of the base board." + ::= { baseBoardTableEntry 12 } +baseBoardServiceTagName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0013 This attribute defines the service tag of the base board." + ::= { baseBoardTableEntry 13 } +baseBoardPiecePartIDName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0014 This attribute defines the Piece Part ID (PPID) of the +base board." + ::= { baseBoardTableEntry 14 } +baseBoardAssetTagName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0015 This attribute defines the asset tag of the base board." + ::= { baseBoardTableEntry 15 } +baseBoardExpressServiceCodeName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0016 This attribute defines the Express Service Code of the +base board." + ::= { baseBoardTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Operating System Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.400 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Operating System Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.400.10.1.. +------------------------------------------------------------------------------- + +OperatingSystemTableEntry ::= SEQUENCE { + operatingSystemchassisIndex DellObjectRange, + operatingSystemStateCapabilities DellStateCapabilities, + operatingSystemStateSettings DellStateSettings, + operatingSystemStatus DellStatus, + operatingSystemIsPrimary DellBoolean, + operatingSystemOperatingSystemName DisplayString (SIZE (0..255)), + operatingSystemOperatingSystemVersionName DisplayString (SIZE (0..255)) +} + +operatingSystemTable OBJECT-TYPE + SYNTAX SEQUENCE OF OperatingSystemTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0400.0010 This object defines the Operating System Table." + ::= { operatingSystemGroup 10 } +operatingSystemTableEntry OBJECT-TYPE + SYNTAX OperatingSystemTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0400.0010.0001 This object defines the Operating System Table Entry." + INDEX { operatingSystemchassisIndex } + ::= { operatingSystemTable 1 } + +operatingSystemchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { operatingSystemTableEntry 1 } +operatingSystemStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0002 This attribute defines the state capabilities of the +operating system." + ::= { operatingSystemTableEntry 2 } +operatingSystemStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0003 This attribute defines the state settings of the +operating system." + ::= { operatingSystemTableEntry 3 } +operatingSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0004 This attribute defines the status of the +operating system." + ::= { operatingSystemTableEntry 4 } +operatingSystemIsPrimary OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0005 This attribute defines if this operating system is the +primary operating system or not." + ::= { operatingSystemTableEntry 5 } +operatingSystemOperatingSystemName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0006 This attribute defines the name of the operating system." + ::= { operatingSystemTableEntry 6 } +operatingSystemOperatingSystemVersionName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0007 This attribute defines the version of the operating system." + ::= { operatingSystemTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Operating System Memory Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.400.20.1.. +------------------------------------------------------------------------------- + +OperatingSystemMemoryTableEntry ::= SEQUENCE { + operatingSystemMemorychassisIndex DellObjectRange, + operatingSystemMemoryStateCapabilities DellStateCapabilities, + operatingSystemMemoryStateSettings DellStateSettings, + operatingSystemMemoryStatus DellStatus, + operatingSystemMemoryTotalPhysicalSize DellUnsigned32BitRange, + operatingSystemMemoryAvailablePhysicalSize DellUnsigned32BitRange, + operatingSystemMemoryTotalPageFileSize DellUnsigned32BitRange, + operatingSystemMemoryAvailablePageFileSize DellUnsigned32BitRange, + operatingSystemMemoryTotalVirtualSize DellUnsigned32BitRange, + operatingSystemMemoryAvailableVirtualSize DellUnsigned32BitRange, + operatingSystemMemoryExtTotalPhysicalSize DellUnsigned64BitRange +} + +operatingSystemMemoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF OperatingSystemMemoryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0400.0020 This object defines the Operating System Memory Table." + ::= { operatingSystemGroup 20 } +operatingSystemMemoryTableEntry OBJECT-TYPE + SYNTAX OperatingSystemMemoryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0400.0020.0001 This object defines the Operating System Memory Table Entry." + INDEX { operatingSystemMemorychassisIndex } + ::= { operatingSystemMemoryTable 1 } + +operatingSystemMemorychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { operatingSystemMemoryTableEntry 1 } +operatingSystemMemoryStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0002 This attribute defines the state capabilities of the +operating system memory." + ::= { operatingSystemMemoryTableEntry 2 } +operatingSystemMemoryStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0003 This attribute defines the state settings of the +operating system memory." + ::= { operatingSystemMemoryTableEntry 3 } +operatingSystemMemoryStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0004 This attribute defines the status of the +operating system memory." + ::= { operatingSystemMemoryTableEntry 4 } +operatingSystemMemoryTotalPhysicalSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS deprecated + DESCRIPTION +"0400.0020.0001.0005 This attribute defines the total physical memory +for the operating system memory in KBytes. +**NOTE: This attribute is deprecated and replaced by operatingSystemMemoryExtTotalPhysicalSize." + ::= { operatingSystemMemoryTableEntry 5 } +operatingSystemMemoryAvailablePhysicalSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0006 This attribute defines the available physical memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 6 } +operatingSystemMemoryTotalPageFileSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0007 This attribute defines the total page file memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 7 } +operatingSystemMemoryAvailablePageFileSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0008 This attribute defines the available page file memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 8 } +operatingSystemMemoryTotalVirtualSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0009 This attribute defines the total virtual memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 9 } +operatingSystemMemoryAvailableVirtualSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0010 This attribute defines the available virtual memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 10 } +operatingSystemMemoryExtTotalPhysicalSize OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0011 This attribute defines the total physical memory +for the operating system memory in KBytes. +**NOTE: This attribute is replaces operatingSystemMemoryTotalPhysicalSize." + ::= { operatingSystemMemoryTableEntry 11 } + + +------------------------------------------------------------------------------- +-- System Resource Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System Resource Map Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.10.1... +------------------------------------------------------------------------------- + +DellSystemResourceMapType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + typeOne(3) -- type is type 1 (one) +} + +SystemResourceMapTableEntry ::= SEQUENCE { + systemResourceMapchassisIndex DellObjectRange, + systemResourceMapIndex DellObjectRange, + systemResourceMapStateCapabilities DellStateCapabilities, + systemResourceMapStateSettings DellStateSettings, + systemResourceMapStatus DellStatus, + systemResourceMapType DellSystemResourceMapType +} + +systemResourceMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceMapTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0010 This object defines the System Resource Map Table." + ::= { systemResourceGroup 10 } +systemResourceMapTableEntry OBJECT-TYPE + SYNTAX SystemResourceMapTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0010.0001 This object defines the System Resource Map Table Entry." + INDEX { systemResourceMapchassisIndex, + systemResourceMapIndex } + ::= { systemResourceMapTable 1 } + +systemResourceMapchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceMapTableEntry 1 } +systemResourceMapIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0002 This attribute defines the index (one based) of the +system resource map." + ::= { systemResourceMapTableEntry 2 } +systemResourceMapStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0003 This attribute defines the state capabilities of the +system resource map." + ::= { systemResourceMapTableEntry 3 } +systemResourceMapStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0004 This attribute defines the state settings of the +system resource map." + ::= { systemResourceMapTableEntry 4 } +systemResourceMapStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0005 This attribute defines the status of the +system resource map." + ::= { systemResourceMapTableEntry 5 } +systemResourceMapType OBJECT-TYPE + SYNTAX DellSystemResourceMapType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0006 This attribute defines the type of the system resource map." + ::= { systemResourceMapTableEntry 6 } + + +------------------------------------------------------------------------------- +-- System Resource Owner Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.20.1... +------------------------------------------------------------------------------- + +DellResourceOwnerInterfaceType ::= INTEGER { + typeIsOther(1), -- type is other than following values + typeIsUnknown(2), -- type is unknown + typeIsInternal(3), -- type is Internal + typeIsISA(4), -- type is ISA Bus + typeIsEISA(5), -- type is EISA Bus + typeIsMCA(6), -- type is MCA Bus + typeIsTurboChannel(7), -- type is TurboChannel Bus + typeIsPCI(8) -- type is PCI Bus +} + +SystemResourceOwnerTableEntry ::= SEQUENCE { + systemResourceOwnerchassisIndex DellObjectRange, + systemResourceOwnerIndex DellObjectRange, + systemResourceOwnerStateCapabilities DellStateCapabilities, + systemResourceOwnerStateSettings DellStateSettings, + systemResourceOwnerStatus DellStatus, + systemResourceOwnerInterfaceType DellResourceOwnerInterfaceType, + systemResourceMapIndexReference DellObjectRange, + systemResourceOwnerDescriptionName DellString, + systemResourceOwnerInterfaceInstance DellObjectRange +} + +systemResourceOwnerTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceOwnerTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0020 This object defines the System Resource Owner Table." + ::= { systemResourceGroup 20 } +systemResourceOwnerTableEntry OBJECT-TYPE + SYNTAX SystemResourceOwnerTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0020.0001 This object defines the System Resource Owner Table Entry." + INDEX { systemResourceOwnerchassisIndex, + systemResourceOwnerIndex } + ::= { systemResourceOwnerTable 1 } + +systemResourceOwnerchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceOwnerTableEntry 1 } +systemResourceOwnerIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0002 This attribute defines the index of (one based) of the +system resource owner." + ::= { systemResourceOwnerTableEntry 2 } +systemResourceOwnerStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0003 This attribute defines the state capabilities of the +system resource owner." + ::= { systemResourceOwnerTableEntry 3 } +systemResourceOwnerStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0004 This attribute defines the state settings of the +system resource owner." + ::= { systemResourceOwnerTableEntry 4 } +systemResourceOwnerStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0005 This attribute defines the status of the +system resource owner." + ::= { systemResourceOwnerTableEntry 5 } +systemResourceOwnerInterfaceType OBJECT-TYPE + SYNTAX DellResourceOwnerInterfaceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0006 This attribute defines the interface type of the +system resource owner." + ::= { systemResourceOwnerTableEntry 6 } +systemResourceMapIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0007 This attribute defines the index to the associated +system resource map." + ::= { systemResourceOwnerTableEntry 7 } +systemResourceOwnerDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0008 This attribute defines the description of the +system resource owner." + ::= { systemResourceOwnerTableEntry 8 } +systemResourceOwnerInterfaceInstance OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0009 This attribute defines the index to the associated +system resource owner interface type." + ::= { systemResourceOwnerTableEntry 9 } + + +------------------------------------------------------------------------------- +-- System Resource I/O Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.30.1... +------------------------------------------------------------------------------- + +DellResourceShareDisposition ::= INTEGER { + shareIsOther(1), -- disposition is other than following values + shareIsUnknown(2), -- disposition is unknown + shareIsDeviceExclusive(3), -- disposition is Device Exclusive + shareIsDriverExclusive(4), -- disposition is Driver Exclusive + shareIsShared(5) -- disposition is Shared +} + +SystemResourceIOPortTableEntry ::= SEQUENCE { + systemResourceIOPortchassisIndex DellObjectRange, + systemResourceIOPortIndex DellObjectRange, + systemResourceIOPortStateCapabilities DellStateCapabilities, + systemResourceIOPortStateSettings DellStateSettings, + systemResourceIOPortStatus DellStatus, + systemResourceIOPortOwnerIndexReference DellObjectRange, + systemResourceIOPortShareDisposition DellResourceShareDisposition, + systemResourceIOPortStartingAddress DellUnsigned64BitRange, + systemResourceIOPortEndingAddress DellUnsigned64BitRange +} + +systemResourceIOPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceIOPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0030 This object defines the System Resource I/O Port Table." + ::= { systemResourceGroup 30 } +systemResourceIOPortTableEntry OBJECT-TYPE + SYNTAX SystemResourceIOPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0030.0001 This object defines the System Resource I/O Port Table Entry." + INDEX { systemResourceIOPortchassisIndex, + systemResourceIOPortIndex } + ::= { systemResourceIOPortTable 1 } + +systemResourceIOPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceIOPortTableEntry 1 } +systemResourceIOPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0002 This attribute defines the index (one based) of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 2 } +systemResourceIOPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0003 This attribute defines the state capabilities of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 3 } +systemResourceIOPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0004 This attribute defines the state settings of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 4 } +systemResourceIOPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0005 This attribute defines the status of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 5 } +systemResourceIOPortOwnerIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0006 This attribute defines the index to the associated +system resource owner for this system resource I/O port." + ::= { systemResourceIOPortTableEntry 6 } +systemResourceIOPortShareDisposition OBJECT-TYPE + SYNTAX DellResourceShareDisposition + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0007 This attribute defines the share disposition of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 7 } +systemResourceIOPortStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0008 This attribute defines the 64-bit starting address +of the system resource I/O port." + ::= { systemResourceIOPortTableEntry 8 } +systemResourceIOPortEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0009 This attribute defines the 64-bit ending address +of the system resource I/O port." + ::= { systemResourceIOPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- System Resource Memory Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.40.1... +------------------------------------------------------------------------------- + +DellResourceMemoryFlags ::= INTEGER { + memoryIsReadOnly(1), -- memory is read-only + memoryIsWriteOnly(2), -- memory is write-only + memoryIsReadAndWrite(3), -- memory is read-write + memoryIsPreFetchable(4), -- memory is prefetchable + memoryIsCombinedWritable(8), -- memory is combined writable + memoryIsF24(16) -- memory is F24 +} + +SystemResourceMemoryTableEntry ::= SEQUENCE { + systemResourceMemorychassisIndex DellObjectRange, + systemResourceMemoryIndex DellObjectRange, + systemResourceMemoryStateCapabilities DellStateCapabilities, + systemResourceMemoryStateSettings DellStateSettings, + systemResourceMemoryStatus DellStatus, + systemResourceMemoryOwnerIndexReference DellObjectRange, + systemResourceMemoryShareDisposition DellResourceShareDisposition, + systemResourceMemoryStartingAddress DellUnsigned64BitRange, + systemResourceMemoryEndingAddress DellUnsigned64BitRange, + systemResourceMemoryFlags DellResourceMemoryFlags +} + +systemResourceMemoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceMemoryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0040 This object defines the System Resource Memory Table." + ::= { systemResourceGroup 40 } +systemResourceMemoryTableEntry OBJECT-TYPE + SYNTAX SystemResourceMemoryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0040.0001 This object defines the System Resource Memory Table Entry." + INDEX { systemResourceMemorychassisIndex, + systemResourceMemoryIndex } + ::= { systemResourceMemoryTable 1 } + +systemResourceMemorychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceMemoryTableEntry 1 } +systemResourceMemoryIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0002 This attribute defines the index (one based) of the +system resource memory." + ::= { systemResourceMemoryTableEntry 2 } +systemResourceMemoryStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0003 This attribute defines the state capabilities of the +system resource memory." + ::= { systemResourceMemoryTableEntry 3 } +systemResourceMemoryStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0004 This attribute defines the state settings of the +system resource memory." + ::= { systemResourceMemoryTableEntry 4 } +systemResourceMemoryStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0005 This attribute defines the status of the +system resource memory." + ::= { systemResourceMemoryTableEntry 5 } +systemResourceMemoryOwnerIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0006 This attribute defines the index to the associated +system resource owner for this system resource memory." + ::= { systemResourceMemoryTableEntry 6 } +systemResourceMemoryShareDisposition OBJECT-TYPE + SYNTAX DellResourceShareDisposition + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0007 This attribute defines the share disposition of the +system resource memory." + ::= { systemResourceMemoryTableEntry 7 } +systemResourceMemoryStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0008 This attribute defines the 64-bit starting address +of the system resource memory." + ::= { systemResourceMemoryTableEntry 8 } +systemResourceMemoryEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0009 This attribute defines the 64-bit ending address +of the system resource memory." + ::= { systemResourceMemoryTableEntry 9 } +systemResourceMemoryFlags OBJECT-TYPE + SYNTAX DellResourceMemoryFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0010 This attribute defines the permission flags of the +system resource memory." + ::= { systemResourceMemoryTableEntry 10 } + + +------------------------------------------------------------------------------- +-- System Resource Interrupts Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.50.1... +------------------------------------------------------------------------------- + +DellResourceInterruptType ::= INTEGER { + interruptIsLevelSensitive(1), -- type is Level Sensitive + interruptIsLatched(2) -- type is Latched +} +DellResourceInterruptTrigger ::= INTEGER { + interruptIsActiveWhenLow(1), -- trigger is active on low signal + interruptIsActiveWhenHigh(2) -- trigger is active on high signal +} + +SystemResourceInterruptTableEntry ::= SEQUENCE { + systemResourceInterruptchassisIndex DellObjectRange, + systemResourceInterruptIndex DellObjectRange, + systemResourceInterruptStateCapabilities DellStateCapabilities, + systemResourceInterruptStateSettings DellStateSettings, + systemResourceInterruptStatus DellStatus, + systemResourceInterruptOwnerIndexReference DellObjectRange, + systemResourceInterruptShareDisposition DellResourceShareDisposition, + systemResourceInterruptLevel DellUnsigned32BitRange, + systemResourceInterruptType DellResourceInterruptType, + systemResourceInterruptTrigger DellResourceInterruptTrigger +} + +systemResourceInterruptTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceInterruptTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0050 This object defines the System Resource Interrupts Table." + ::= { systemResourceGroup 50 } +systemResourceInterruptTableEntry OBJECT-TYPE + SYNTAX SystemResourceInterruptTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0050.0001 This object defines the System Resource Interrupts Table Entry." + INDEX { systemResourceInterruptchassisIndex, + systemResourceInterruptIndex } + ::= { systemResourceInterruptTable 1 } + +systemResourceInterruptchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceInterruptTableEntry 1 } +systemResourceInterruptIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0002 This attribute defines the index (one based) of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 2 } +systemResourceInterruptStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0003 This attribute defines the state capabilities of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 3 } +systemResourceInterruptStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0004 This attribute defines the state settings of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 4 } +systemResourceInterruptStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0005 This attribute defines the status of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 5 } +systemResourceInterruptOwnerIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0006 This attribute defines the index to the associated +system resource owner for this system resource interrupt." + ::= { systemResourceInterruptTableEntry 6 } +systemResourceInterruptShareDisposition OBJECT-TYPE + SYNTAX DellResourceShareDisposition + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0007 This attribute defines the share disposition of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 7 } +systemResourceInterruptLevel OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0008 This attribute defines the interrupt request level (IRQ) +of the system resource interrupt." + ::= { systemResourceInterruptTableEntry 8 } +systemResourceInterruptType OBJECT-TYPE + SYNTAX DellResourceInterruptType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0009 This attribute defines the interrupt type of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 9 } +systemResourceInterruptTrigger OBJECT-TYPE + SYNTAX DellResourceInterruptTrigger + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0010 This attribute defines the interrupt trigger of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 10 } + + +------------------------------------------------------------------------------- +-- System Resource DMA Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.60.1... +------------------------------------------------------------------------------- + +DellResourceDMATransferWidth ::= INTEGER { + dmaTransferWidthIsOther(1), -- width is other than following values + dmaTransferWidthIsunknown(2), -- width is unknown + dmaTransferWidthIs8Bits(3), -- width is 8 bits + dmaTransferWidthIs16Bits(4), -- width is 16 bits + dmaTransferWidthIs32Bits(5), -- width is 32 bits + dmaTransferWidthIs64Bits(6), -- width is 64 bits + dmaTransferWidthIs128Bits(7) -- width is 128 bits +} +DellResourceDMABusMaster ::= INTEGER { + dmaIsOther(1), -- bus master capability is other than following values + dmaIsUnknown(2), -- bus master capability is unknown + dmaIsNotABusmaster(3), -- DMA has no bus master capability + dmaIsABusmaster(4) -- DMA has bus master capability +} + +SystemResourceDMATableEntry ::= SEQUENCE { + systemResourceDMAchassisIndex DellObjectRange, + systemResourceDMAIndex DellObjectRange, + systemResourceDMAStateCapabilities DellStateCapabilities, + systemResourceDMAStateSettings DellStateSettings, + systemResourceDMAStatus DellStatus, + systemResourceDMAOwnerIndexReference DellObjectRange, + systemResourceDMAShareDisposition DellResourceShareDisposition, + systemResourceDMAMaximumTransferSize DellUnsigned32BitRange, + systemResourceDMATransferWidth DellResourceDMATransferWidth, + systemResourceDMABusMaster DellResourceDMABusMaster +} + +systemResourceDMATable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceDMATableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0060 This object defines the System Resource DMA Table." + ::= { systemResourceGroup 60 } +systemResourceDMATableEntry OBJECT-TYPE + SYNTAX SystemResourceDMATableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0060.0001 This object defines the System Resource DMA Table Entry." + INDEX { systemResourceDMAchassisIndex, + systemResourceDMAIndex } + ::= { systemResourceDMATable 1 } + +systemResourceDMAchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceDMATableEntry 1 } +systemResourceDMAIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0002 This attribute defines the index (one based) of the +system resource DMA." + ::= { systemResourceDMATableEntry 2 } +systemResourceDMAStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0003 This attribute defines the state capabilities of the +system resource DMA." + ::= { systemResourceDMATableEntry 3 } +systemResourceDMAStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0004 This attribute defines the state settings of the +system resource DMA." + ::= { systemResourceDMATableEntry 4 } +systemResourceDMAStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0005 This attribute defines the status of the +system resource DMA." + ::= { systemResourceDMATableEntry 5 } +systemResourceDMAOwnerIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0006 This attribute defines the index to the associated +system resource owner for this system resource DMA." + ::= { systemResourceDMATableEntry 6 } +systemResourceDMAShareDisposition OBJECT-TYPE + SYNTAX DellResourceShareDisposition + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0007 This attribute defines the share disposition of the +system resource DMA." + ::= { systemResourceDMATableEntry 7 } +systemResourceDMAMaximumTransferSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0008 This attribute defines the maximum size of a memory +transfer in bytes for the system resource DMA." + ::= { systemResourceDMATableEntry 8 } +systemResourceDMATransferWidth OBJECT-TYPE + SYNTAX DellResourceDMATransferWidth + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0009 This attribute defines the tranfer width of the +system resource DMA." + ::= { systemResourceDMATableEntry 9 } +systemResourceDMABusMaster OBJECT-TYPE + SYNTAX DellResourceDMABusMaster + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0010 This attribute defines the bus master capabilities +of the system resource DMA." + ::= { systemResourceDMATableEntry 10 } + + +------------------------------------------------------------------------------- +-- Power Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Power Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.10.1... +------------------------------------------------------------------------------- + +PowerUnitTableEntry ::= SEQUENCE { + powerUnitchassisIndex DellObjectRange, + powerUnitIndex DellObjectRange, + powerUnitStateCapabilities DellStateCapabilities, + powerUnitStateSettings DellStateSettings, + powerUnitRedundancyStatus DellStatusRedundancy, + powerSupplyCountForRedundancy DellObjectRange, + powerUnitName DellString, + powerUnitStatus DellStatus +} + +powerUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0010 This object defines the Power Unit Table." + ::= { powerGroup 10 } +powerUnitTableEntry OBJECT-TYPE + SYNTAX PowerUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0010.0001 This object defines the Power Unit Table Entry." + INDEX { powerUnitchassisIndex, + powerUnitIndex } + ::= { powerUnitTable 1 } + +powerUnitchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { powerUnitTableEntry 1 } +powerUnitIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0002 This attribute defines the index (one based) of the +power unit." + ::= { powerUnitTableEntry 2 } +powerUnitStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0003 This attribute defines the state capabilities of the +power unit." + ::= { powerUnitTableEntry 3 } +powerUnitStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0004 This attribute defines the state settings of the +power unit." + ::= { powerUnitTableEntry 4 } +powerUnitRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0005 This attribute defines the redundancy status of the +power unit." + ::= { powerUnitTableEntry 5 } +powerSupplyCountForRedundancy OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0006 This attribute defines the total number of power supplies +required for this power unit to have full redundancy." + ::= { powerUnitTableEntry 6 } +powerUnitName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0007 This attribute defines the name of the power unit." + ::= { powerUnitTableEntry 7 } +powerUnitStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0008 This attribute defines the status of the power unit." + ::= { powerUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Power Supply Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.12.1... +------------------------------------------------------------------------------- + +DellPowerSupplyStateCapabilitiesUnique ::= INTEGER { + -- If 0 (zero), there are no power supply state capabilities + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state capabilities are unknown + onlineCapable(2), -- power supply can be enabled (online) or disabled (offline) + notReadyCapable(4) -- power supply can be not ready +} +DellPowerSupplyStateSettingsUnique ::= INTEGER { + -- If 0 (zero), there are no power supply state settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state settings are unknown + onLine(2), -- power supply is enabled (online) + notReady(4), -- power supply is not ready + fanFailure(8), -- power supply fan has failed + onlineAndFanFailure(10), + powerSupplyIsON(16), -- power supply is supplying power + powerSupplyIsOK(32), -- power supply is indicating it is OK + acSwitchIsON(64), -- power supply is indicating AC power switch is on + onlineandAcSwitchIsON(66), + acPowerIsON(128), -- power supply is indicating AC power is on + onlineAndAcPowerIsON(130), + onlineAndPredictiveFailure(210), + acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline(242) +} +DellPowerSupplyType ::= INTEGER { + powerSupplyTypeIsOther(1), -- type is other than following values + powerSupplyTypeIsUnknown(2), -- type is unknown + powerSupplyTypeIsLinear(3), -- type is Linear + powerSupplyTypeIsSwitching(4), -- type is Switching + powerSupplyTypeIsBattery(5), -- type is Battery + powerSupplyTypeIsUPS(6), -- type is Uninterruptible Power Supply + powerSupplyTypeIsConverter(7), -- type is Converter + powerSupplyTypeIsRegulator(8), -- type is Regulator + powerSupplyTypeIsAC(9), -- type is AC + powerSupplyTypeIsDC(10), -- type is DC + powerSupplyTypeIsVRM(11) -- type is VRM +} +DellPowerSupplySensorState ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + presenceDetected(1), -- state is Presence detected + psFailureDetected(2), -- state is PS Failure detected + predictiveFailure(4), -- state is Predictive Failure + psACLost(8), -- state is PS AC lost + acLostOrOutOfRange(16), -- state is AC lost or out-of-range + acOutOfRangeButPresent(32), -- state is AC out-of-range, but present + configurationError(64) -- state is Configuration error +} +DellPowerSupplyConfigurationErrorType ::= INTEGER { + vendorMismatch(1), -- error type is Vendor mismatch + revisionMismatch(2), -- error type is Revision mismatch + processorMissing(3) -- error type is Processor missing +} + +PowerSupplyTableEntry ::= SEQUENCE { + powerSupplychassisIndex DellObjectRange, + powerSupplyIndex DellObjectRange, + powerSupplyStateCapabilitiesUnique DellPowerSupplyStateCapabilitiesUnique, + powerSupplyStateSettingsUnique DellPowerSupplyStateSettingsUnique, + powerSupplyStatus DellStatus, + powerSupplyOutputWatts DellSigned32BitRange, + powerSupplyType DellPowerSupplyType, + powerSupplyLocationName DellString, + powerSupplyInputVoltage DellSigned32BitRange, + powerSupplypowerUnitIndexReference DellObjectRange, + powerSupplySensorState DellPowerSupplySensorState, + powerSupplyConfigurationErrorType DellPowerSupplyConfigurationErrorType, + powerSupplyPowerMonitorCapable DellBoolean, + powerSupplyRatedInputWattage DellSigned32BitRange +} + +powerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0012 This object defines the Power Supply Table." + ::= { powerGroup 12 } +powerSupplyTableEntry OBJECT-TYPE + SYNTAX PowerSupplyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0012.0001 This object defines the Power Supply Table Entry." + INDEX { powerSupplychassisIndex, + powerSupplyIndex } + ::= { powerSupplyTable 1 } + +powerSupplychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { powerSupplyTableEntry 1 } +powerSupplyIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0002 This attribute defines the index (one based) of the +power supply." + ::= { powerSupplyTableEntry 2 } +powerSupplyStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellPowerSupplyStateCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0003 This attribute defines the state capabilities of the +power supply." + ::= { powerSupplyTableEntry 3 } +powerSupplyStateSettingsUnique OBJECT-TYPE + SYNTAX DellPowerSupplyStateSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0004 This attribute defines the state settings of the +power supply." + ::= { powerSupplyTableEntry 4 } +powerSupplyStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0005 This attribute defines the status of the power supply." + ::= { powerSupplyTableEntry 5 } +powerSupplyOutputWatts OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0006 This attribute defines the maximum sustained output +wattage of the power supply (in tenths of Watts)." + ::= { powerSupplyTableEntry 6 } +powerSupplyType OBJECT-TYPE + SYNTAX DellPowerSupplyType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0007 This attribute defines the type of the power supply." + ::= { powerSupplyTableEntry 7 } +powerSupplyLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0008 This attribute defines the location of the power supply." + ::= { powerSupplyTableEntry 8 } +powerSupplyInputVoltage OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0009 This attribute defines the input voltage to the power +supply (in Volts)." + ::= { powerSupplyTableEntry 9 } +powerSupplypowerUnitIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0010 This attribute defines the index to the associated +power unit if the power supply is part of a power unit." + ::= { powerSupplyTableEntry 10 } +powerSupplySensorState OBJECT-TYPE + SYNTAX DellPowerSupplySensorState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0011 This attribute defines the state reported by the +power supply sensor. This attribute supplements the attribute +powerSupplyStateSettingsUnique." + ::= { powerSupplyTableEntry 11 } +powerSupplyConfigurationErrorType OBJECT-TYPE + SYNTAX DellPowerSupplyConfigurationErrorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0012 This attribute defines the type of configuration error +reported by the power supply sensor. When the configurationError bit is on +in the value for the attribute powerSupplySensorState, a value is returned +for this attribute; otherwise, a value is not returned for this attribute." + ::= { powerSupplyTableEntry 12 } +powerSupplyPowerMonitorCapable OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0013 This attribute defines a boolean value that reports +whether the power supply is capable of monitoring power consumption." + ::= { powerSupplyTableEntry 13 } +powerSupplyRatedInputWattage OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0014 This attribute defines the rated input wattage of the +power supply (in tenths of Watts)." + ::= { powerSupplyTableEntry 14 } + + +------------------------------------------------------------------------------- +-- Voltage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.20.1... +------------------------------------------------------------------------------- + +DellVoltageType ::= INTEGER { + voltageProbeTypeIsOther(1), -- type is other than following values + voltageProbeTypeIsUnknown(2), -- type is unknown + voltageProbeTypeIs1Point5Volt(3), -- type is 1.5 volt probe + voltageProbeTypeIs3Point3Volt(4), -- type is 3.3 volt probe + voltageProbeTypeIs5Volt(5), -- type is 5 volt probe + voltageProbeTypeIsMinus5Volt(6), -- type is -5 volt probe + voltageProbeTypeIs12Volt(7), -- type is 12 volt probe + voltageProbeTypeIsMinus12Volt(8), -- type is -12 volt probe + voltageProbeTypeIsIO(9), -- type is I/O probe + voltageProbeTypeIsCore(10), -- type is Core probe + voltageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + voltageProbeTypeIsBattery(12), -- type is Battery probe + voltageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + voltageProbeTypeIs2Point5Volt(14), -- type is 2.5 volt probe + voltageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + voltageProbeTypeIsDiscrete(16) -- type is voltage probe with discrete reading +} +DellVoltageDiscreteReading ::= INTEGER { + voltageIsGood(1), -- voltage reading is Good + voltageIsBad(2) -- voltage reading is Bad +} + +VoltageProbeTableEntry ::= SEQUENCE { + voltageProbechassisIndex DellObjectRange, + voltageProbeIndex DellObjectRange, + voltageProbeStateCapabilities DellStateCapabilities, + voltageProbeStateSettings DellStateSettings, + voltageProbeStatus DellStatusProbe, + voltageProbeReading DellSigned32BitRange, + voltageProbeType DellVoltageType, + voltageProbeLocationName DellString, + voltageProbeUpperNonRecoverableThreshold DellSigned32BitRange, + voltageProbeUpperCriticalThreshold DellSigned32BitRange, + voltageProbeUpperNonCriticalThreshold DellSigned32BitRange, + voltageProbeLowerNonCriticalThreshold DellSigned32BitRange, + voltageProbeLowerCriticalThreshold DellSigned32BitRange, + voltageProbeLowerNonRecoverableThreshold DellSigned32BitRange, + voltageProbeProbeCapabilities DellProbeCapabilities, + voltageProbeDiscreteReading DellVoltageDiscreteReading +} + +voltageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoltageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0020 This object defines the Voltage Probe Table." + ::= { powerGroup 20 } +voltageProbeTableEntry OBJECT-TYPE + SYNTAX VoltageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0020.001 This object defines the Voltage Probe Table Entry." + INDEX { voltageProbechassisIndex, + voltageProbeIndex } + ::= { voltageProbeTable 1 } + +voltageProbechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { voltageProbeTableEntry 1 } +voltageProbeIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0002 This attribute defines the index (one based) of the +voltage probe." + ::= { voltageProbeTableEntry 2 } +voltageProbeStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0003 This attribute defines the state capabilities of the +voltage probe." + ::= { voltageProbeTableEntry 3 } +voltageProbeStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0004 This attribute defines the state settings of the +voltage probe." + ::= { voltageProbeTableEntry 4 } +voltageProbeStatus OBJECT-TYPE + SYNTAX DellStatusProbe + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0005 This attribute defines the probe status of the +voltage probe." + ::= { voltageProbeTableEntry 5 } +voltageProbeReading OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0006 This attribute defines the reading for a voltage +probe of type other than voltageProbeTypeIsDiscrete. When the value +for voltageProbeType is other than voltageProbeTypeIsDiscrete, the value +returned for this attribute is the voltage that the probe is reading +in millivolts. When the value for voltageProbeType is +voltageProbeTypeIsDiscrete, a value is not returned for this attribute." + ::= { voltageProbeTableEntry 6 } +voltageProbeType OBJECT-TYPE + SYNTAX DellVoltageType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0007 This attribute defines the type of the voltage probe." + ::= { voltageProbeTableEntry 7 } +voltageProbeLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0008 This attribute defines the location name of the +voltage probe." + ::= { voltageProbeTableEntry 8 } +voltageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0009 This attribute defines the upper nonrecoverable threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 9 } +voltageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0010 This attribute defines the upper critical threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 10 } +voltageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0011 This attribute defines the upper noncritical threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 11 } +voltageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0012 This attribute defines the lower noncritical threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 12 } +voltageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0013 This attribute defines the lower critical threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 13 } +voltageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0014 This attribute defines the lower nonrecoverable threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 14 } +voltageProbeProbeCapabilities OBJECT-TYPE + SYNTAX DellProbeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0015 This attribute defines the probe capabilities of the +voltage probe." + ::= { voltageProbeTableEntry 15 } +voltageProbeDiscreteReading OBJECT-TYPE + SYNTAX DellVoltageDiscreteReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0016 This attribute defines the reading for a voltage +probe of type voltageProbeTypeIsDiscrete. When the value for voltageProbeType +is other than voltageProbeTypeIsDiscrete, a value is not returned for this +attribute. When the value for voltageProbeType is voltageProbeTypeIsDiscrete, +the value returned for this attribute is the discrete reading for the probe." + ::= { voltageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Amperage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.30.1... +------------------------------------------------------------------------------- + +DellAmperageProbeType ::= INTEGER { + amperageProbeTypeIsOther(1), -- type is other than following values + amperageProbeTypeIsUnknown(2), -- type is unknown + amperageProbeTypeIs1Point5Volt(3), -- type is 1.5 amperage probe + amperageProbeTypeIs3Point3volt(4), -- type is 3.3 amperage probe + amperageProbeTypeIs5Volt(5), -- type is 5 amperage probe + amperageProbeTypeIsMinus5Volt(6), -- type is -5 amperage probe + amperageProbeTypeIs12Volt(7), -- type is 12 amperage probe + amperageProbeTypeIsMinus12Volt(8), -- type is -12 amperage probe + amperageProbeTypeIsIO(9), -- type is I/O probe + amperageProbeTypeIsCore(10), -- type is Core probe + amperageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + amperageProbeTypeIsBattery(12), -- type is Battery probe + amperageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + amperageProbeTypeIs2Point5Volt(14), -- type is 2.5 amperage probe + amperageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + amperageProbeTypeIsDiscrete(16), -- type is amperage probe with discrete reading + amperageProbeTypeIsPowerSupplyAmps(23), -- type is Power Supply probe with reading in Amps + amperageProbeTypeIsPowerSupplyWatts(24), -- type is Power Supply probe with reading in Watts + amperageProbeTypeIsSystemAmps(25), -- type is System probe with reading in Amps + amperageProbeTypeIsSystemWatts(26) -- type is System probe with reading in Watts +} +DellAmperageDiscreteReading ::= INTEGER { + amperageIsGood(1), -- amperage reading is Good + amperageIsBad(2) -- amperage reading is Bad +} + +AmperageProbeTableEntry ::= SEQUENCE { + amperageProbechassisIndex DellObjectRange, + amperageProbeIndex DellObjectRange, + amperageProbeStateCapabilities DellStateCapabilities, + amperageProbeStateSettings DellStateSettings, + amperageProbeStatus DellStatusProbe, + amperageProbeReading DellSigned32BitRange, + amperageProbeType DellAmperageProbeType, + amperageProbeLocationName DellString, + amperageProbeUpperNonRecoverableThreshold DellSigned32BitRange, + amperageProbeUpperCriticalThreshold DellSigned32BitRange, + amperageProbeUpperNonCriticalThreshold DellSigned32BitRange, + amperageProbeLowerNonCriticalThreshold DellSigned32BitRange, + amperageProbeLowerCriticalThreshold DellSigned32BitRange, + amperageProbeLowerNonRecoverableThreshold DellSigned32BitRange, + amperageProbeProbeCapabilities DellProbeCapabilities, + amperageProbeDiscreteReading DellAmperageDiscreteReading +} + +amperageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AmperageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0030 This object defines the Amperage Probe Table." + ::= { powerGroup 30 } +amperageProbeTableEntry OBJECT-TYPE + SYNTAX AmperageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0030.0001 This object defines the Amperage Probe Table Entry." + INDEX { amperageProbechassisIndex, + amperageProbeIndex } + ::= { amperageProbeTable 1 } + +amperageProbechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { amperageProbeTableEntry 1 } +amperageProbeIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0002 This attribute defines the index (one based) of the +amperage probe." + ::= { amperageProbeTableEntry 2 } +amperageProbeStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0003 This attribute defines the state capabilities of the +amperage probe." + ::= { amperageProbeTableEntry 3 } +amperageProbeStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0004 This attribute defines the state settings of the +amperage probe." + ::= { amperageProbeTableEntry 4 } +amperageProbeStatus OBJECT-TYPE + SYNTAX DellStatusProbe + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0005 This attribute defines the probe status of the +amperage probe." + ::= { amperageProbeTableEntry 5 } +amperageProbeReading OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0006 This attribute defines the reading for an amperage +probe of type other than amperageProbeTypeIsDiscrete. + +When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyAmps +or amperageProbeTypeIsSystemAmps, the value returned for this attribute +is the power usage that the probe is reading in tenths of Amps. + +When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyWatts +or amperageProbeTypeIsSystemWatts, the value returned for this attribute +is the power usage that the probe is reading in Watts. + +When the value for amperageProbeType is other than amperageProbeTypeIsDiscrete, +amperageProbeTypeIsPowerSupplyAmps, amperageProbeTypeIsPowerSupplyWatts, +amperageProbeTypeIsSystemAmps or amperageProbeTypeIsSystemWatts, +the value returned for this attribute is the amperage that the probe is +reading in Milliamps. + +When the value for amperageProbeType is amperageProbeTypeIsDiscrete, +a value is not returned for this attribute." + ::= { amperageProbeTableEntry 6 } +amperageProbeType OBJECT-TYPE + SYNTAX DellAmperageProbeType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0007 This attribute defines the type of the amperage probe." + ::= { amperageProbeTableEntry 7 } +amperageProbeLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0008 This attribute defines the location of the amperage probe." + ::= { amperageProbeTableEntry 8 } +amperageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0009 This attribute defines the upper nonrecoverable threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 9 } +amperageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0010 This attribute defines the upper critical threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 10 } +amperageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0011 This attribute defines the upper noncritical threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 11 } +amperageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0012 This attribute defines the lower noncritical threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 12 } +amperageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0013 This attribute defines the lower critical threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 13 } +amperageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0014 This attribute defines the lower nonrecoverable threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 14 } +amperageProbeProbeCapabilities OBJECT-TYPE + SYNTAX DellProbeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0015 This attribute defines the probe capabilities of the +amperage probe." + ::= { amperageProbeTableEntry 15 } +amperageProbeDiscreteReading OBJECT-TYPE + SYNTAX DellAmperageDiscreteReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0016 This attribute defines the reading for an amperage +probe of type amperageProbeTypeIsDiscrete. When the value for amperageProbeType +is other than amperageProbeTypeIsDiscrete, a value is not returned for this +attribute. When the value for amperageProbeType is amperageProbeTypeIsDiscrete, +the value returned for this attribute is the discrete reading for the probe." + ::= { amperageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- AC Power Switch Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.40.1... +------------------------------------------------------------------------------- + +DellACPowerSwitchCapabilities ::= INTEGER { + -- If 0 (zero), there are no AC Power Switch capabilities + -- Note: These values are bit masks, so combination values are possible. + unknownCapabilities(1), -- capabilities are unknown + -- The objects capabilities allow it to be set to: + inputSourceCord1NoReturnCapable(2), -- input source can be cord 1, with no return + inputSourceCord1ReturnCapable(4), -- input source can be cord 1, with return + inputSourceCord2NoReturnCapable(8), -- input source can be cord 2, with no return + inputSourceCord1NoReturnCord1ReturnAndCord2NoReturnCapable(14), + inputSourceCord2ReturnCapable(16), -- input source can be cord 2, with return + inputSourceAllExceptSharedCapable(30), + inputSourceSharedCapable(32), -- input source can be shared + inputSourceAllCapable(62) +} +DellACPowerSwitchSettings ::= INTEGER { + -- If 0 (zero), there are no AC Power Switch settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- settings are unknown + -- Input source settings are mutually-exclusive + inputSourceCord1NoReturn(2), -- input source is cord 1, with no return + inputSourceCord1Return(4), -- input source is cord 1, with return + inputSourceCord2NoReturn(8), -- input source is cord 2, with no return + inputSourceCord2Return(16), -- input source is cord 2, with return + inputSourceShared(32) -- input source is shared +} +DellACPowerSwitchRedundancyMode ::= INTEGER { + nonRedundant(1), -- AC power switch not expecting redundancy + redundant(2) -- AC power switch is expecting redundancy +} + +ACPowerSwitchTableEntry ::= SEQUENCE { + aCPowerSwitchchassisIndex DellObjectRange, + aCPowerSwitchIndex DellObjectRange, + aCPowerSwitchCapabilities DellACPowerSwitchCapabilities, + aCPowerSwitchSettings DellACPowerSwitchSettings, + aCPowerSwitchRedundancyStatus DellStatusRedundancy, + aCPowerCordCountForRedundancy DellObjectRange, + aCPowerSwitchName DellString, + aCPowerSwitchRedundancyMode DellACPowerSwitchRedundancyMode, + aCPowerSwitchStatus DellStatus +} + +aCPowerSwitchTable OBJECT-TYPE + SYNTAX SEQUENCE OF ACPowerSwitchTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0040 This object defines the AC Power Switch Table." + ::= { powerGroup 40 } +aCPowerSwitchTableEntry OBJECT-TYPE + SYNTAX ACPowerSwitchTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0040.0001 This object defines the AC Power Switch Table Entry." + INDEX { aCPowerSwitchchassisIndex, + aCPowerSwitchIndex } + ::= { aCPowerSwitchTable 1 } + +aCPowerSwitchchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { aCPowerSwitchTableEntry 1 } +aCPowerSwitchIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0002 This attribute defines the index (one based) of the +AC power switch." + ::= { aCPowerSwitchTableEntry 2 } +aCPowerSwitchCapabilities OBJECT-TYPE + SYNTAX DellACPowerSwitchCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0003 This attribute defines the capabilities of the +AC power switch." + ::= { aCPowerSwitchTableEntry 3 } +aCPowerSwitchSettings OBJECT-TYPE + SYNTAX DellACPowerSwitchSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0004 This attribute defines the settings of the +AC power switch." + ::= { aCPowerSwitchTableEntry 4 } +aCPowerSwitchRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0005 This attribute defines the redundancy status of the +AC power switch." + ::= { aCPowerSwitchTableEntry 5 } +aCPowerCordCountForRedundancy OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0006 This attribute defines the total number of AC power +cords required for this AC power switch to have full redundancy." + ::= { aCPowerSwitchTableEntry 6 } +aCPowerSwitchName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0007 This attribute defines the name of the AC power switch." + ::= { aCPowerSwitchTableEntry 7 } +aCPowerSwitchRedundancyMode OBJECT-TYPE + SYNTAX DellACPowerSwitchRedundancyMode + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0008 This attribute defines the redundancy mode of the +AC power switch." + ::= { aCPowerSwitchTableEntry 8 } +aCPowerSwitchStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0009 This attribute defines the status of the AC power switch." + ::= { aCPowerSwitchTableEntry 9 } + + +------------------------------------------------------------------------------- +-- AC Power Cord Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.42.1... +------------------------------------------------------------------------------- + +DellACPowerCordStateCapabilities ::= INTEGER { + -- If 0 (zero), there are no AC Power Cord state capabilities + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state capabilities are unknown + enableCapable(2), -- AC power cord can be enabled (online) or disabled (offline) + notReadyCapable(4) -- AC power cord can be not ready +} +DellACPowerCordStateSettings ::= INTEGER { + -- If 0 (zero), there are no AC Power Cord state settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state settings are unknown + enabled(2), -- AC power cord is enabled (online) + notReady(4), -- AC power cord is not ready + acPowerCordHasPower(8), -- AC power cord has power + acPowerCordIsEnabledAndHasPower(10), + acPowerCordIsActiveSource(16), -- AC power cord is active source of AC power + acPowerCordIsEnabledHasPowerAndIsActiveSource(26) +} + +ACPowerCordTableEntry ::= SEQUENCE { + aCPowerCordchassisIndex DellObjectRange, + aCPowerCordIndex DellObjectRange, + aCPowerCordStateCapabilities DellACPowerCordStateCapabilities, + aCPowerCordStateSettings DellACPowerCordStateSettings, + aCPowerCordStatus DellStatus, + aCPowerCordaCPowerSwitchIndexReference DellObjectRange, + aCPowerCordLocationName DellString +} + +aCPowerCordTable OBJECT-TYPE + SYNTAX SEQUENCE OF ACPowerCordTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0042 This object defines the AC Power Cord Table." + ::= { powerGroup 42 } +aCPowerCordTableEntry OBJECT-TYPE + SYNTAX ACPowerCordTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0042.0001 This object defines the AC Power Cord Table Entry." + INDEX { aCPowerCordchassisIndex, + aCPowerCordIndex } + ::= { aCPowerCordTable 1 } + +aCPowerCordchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { aCPowerCordTableEntry 1 } +aCPowerCordIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0002 This attribute defines the index (one based) of the +AC power cord." + ::= { aCPowerCordTableEntry 2 } +aCPowerCordStateCapabilities OBJECT-TYPE + SYNTAX DellACPowerCordStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0003 This attribute defines the state capabilities of the +AC power cord." + ::= { aCPowerCordTableEntry 3 } +aCPowerCordStateSettings OBJECT-TYPE + SYNTAX DellACPowerCordStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0004 This attribute defines the state settings of the +AC power cord." + ::= { aCPowerCordTableEntry 4 } +aCPowerCordStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0005 This attribute defines the status of the AC power cord." + ::= { aCPowerCordTableEntry 5 } +aCPowerCordaCPowerSwitchIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0006 This attribute defines the index (one based) to the +associated AC power switch for this AC power cord." + ::= { aCPowerCordTableEntry 6 } +aCPowerCordLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0007 This attribute defines the location of the +AC power cord." + ::= { aCPowerCordTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Battery Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.50.1... +------------------------------------------------------------------------------- + +DellBatteryReading ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + predictiveFailure(1), -- battery predictive failure + failed(2), -- battery failed + presenceDetected(4) -- battery presence detected +} + +BatteryTableEntry ::= SEQUENCE { + batteryChassisIndex DellObjectRange, + batteryIndex DellObjectRange, + batteryStateCapabilities DellStateCapabilities, + batteryStateSettings DellStateSettings, + batteryStatus DellStatus, + batteryReading DellBatteryReading, + batteryLocationName DellString +} + +batteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0050 This object defines the Battery Table." + ::= { powerGroup 50 } +batteryTableEntry OBJECT-TYPE + SYNTAX BatteryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0050.0001 This object defines the Battery Table Entry." + INDEX { batteryChassisIndex, + batteryIndex } + ::= { batteryTable 1 } + +batteryChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0001 This attribute defines the index (one based) of the +chassis that contains the battery." + ::= { batteryTableEntry 1 } +batteryIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0002 This attribute defines the index (one based) of the +battery." + ::= { batteryTableEntry 2 } +batteryStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0003 This attribute defines the state capabilities of the +battery." + ::= { batteryTableEntry 3 } +batteryStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0004 This attribute defines the state settings of the +battery." + ::= { batteryTableEntry 4 } +batteryStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0005 This attribute defines the status of the battery." + ::= { batteryTableEntry 5 } +batteryReading OBJECT-TYPE + SYNTAX DellBatteryReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0006 This attribute defines the reading of the battery." + ::= { batteryTableEntry 6 } +batteryLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0007 This attribute defines the location of the battery." + ::= { batteryTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Power Usage Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.60.1... +------------------------------------------------------------------------------- + +DellPowerCapCapabilities ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no power cap capabilities + enable(1), -- power cap can be enabled + disable(2) -- power cap can be disabled +} +DellPowerCapSetting ::= INTEGER { + -- disabled(0), - power cap disabled + enabled(1) -- power cap enabled +} + +PowerUsageTableEntry ::= SEQUENCE { + powerUsageChassisIndex DellObjectRange, + powerUsageIndex DellObjectRange, + powerUsageStateCapabilities DellStateCapabilities, + powerUsageStateSettings DellStateSettings, + powerUsageStatus DellStatus, + powerUsageEntityName DellString, + powerUsageCumulativeWattage DellUnsigned32BitRange, + powerUsageCumulativeWattageStartDateName DellDateName, + powerUsagePeakWatts DellUnsigned32BitRange, + powerUsagePeakWattsStartDateName DellDateName, + powerUsagePeakWattsReadingDateName DellDateName, + powerUsagePeakAmps DellUnsigned32BitRange, + powerUsagePeakAmpsStartDateName DellDateName, + powerUsagePeakAmpsReadingDateName DellDateName, + powerUsageIdlePower DellUnsigned32BitRange, + powerUsageMaxPotentialPower DellUnsigned32BitRange, + powerUsagePowerCapCapabilities DellPowerCapCapabilities, + powerUsagePowerCapSetting DellPowerCapSetting, + powerUsagePowerCapValue DellUnsigned32BitRange, + powerUsageInstantaneousHeadroom DellUnsigned32BitRange, + powerUsagePeakHeadroom DellUnsigned32BitRange +} + +powerUsageTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUsageTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0060 This object defines the Power Usage Table." + ::= { powerGroup 60 } +powerUsageTableEntry OBJECT-TYPE + SYNTAX PowerUsageTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0060.0001 This object defines the Power Usage Table Entry." + INDEX { powerUsageChassisIndex, + powerUsageIndex } + ::= { powerUsageTable 1 } + +powerUsageChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { powerUsageTableEntry 1 } +powerUsageIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0002 This attribute defines the index (one based) of the +power usage information." + ::= { powerUsageTableEntry 2 } +powerUsageStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0003 This attribute defines the state capabilities of the +power usage information." + ::= { powerUsageTableEntry 3 } +powerUsageStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0004 This attribute defines the state settings of the +power usage information." + ::= { powerUsageTableEntry 4 } +powerUsageStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0005 This attribute defines the status of the +power usage information." + ::= { powerUsageTableEntry 5 } +powerUsageEntityName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0006 This attribute defines the name of the entity +associated with this power usage information." + ::= { powerUsageTableEntry 6 } +powerUsageCumulativeWattage OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0007 This attribute defines the total wattage used +(in Watt-hours) by this entity since the date and time specified +by the powerUsageCumulativeWattageStartDateName attribute." + ::= { powerUsageTableEntry 7 } +powerUsageCumulativeWattageStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0008 This attribute defines the date and time at +which the data collection started for the value reported by the +powerUsageCumulativeWattage attribute." + ::= { powerUsageTableEntry 8 } +powerUsagePeakWatts OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0009 This attribute defines the peak wattage reading +(in Watts) for this entity since the date and time specified by the +powerUsagePeakWattsStartDateName attribute." + ::= { powerUsageTableEntry 9 } +powerUsagePeakWattsStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0010 This attribute defines the date and time at +which the data collection started for the value reported by the +powerUsagePeakWatts attribute." + ::= { powerUsageTableEntry 10 } +powerUsagePeakWattsReadingDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0011 This attribute defines the date and time at +which the value reported by the powerUsagePeakWatts attribute was +measured." + ::= { powerUsageTableEntry 11 } +powerUsagePeakAmps OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0012 This attribute defines the peak amperage reading +(in tenths of Amps) for this entity since the date and time specified +by the powerUsagePeakAmpsStartDateName attribute." + ::= { powerUsageTableEntry 12 } +powerUsagePeakAmpsStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0013 This attribute defines the date and time at +which the data collection started for the value reported by the +powerUsagePeakAmps attribute." + ::= { powerUsageTableEntry 13 } +powerUsagePeakAmpsReadingDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0014 This attribute defines the date and time at +which the value reported by the powerUsagePeakAmps attribute was +measured." + ::= { powerUsageTableEntry 14 } +powerUsageIdlePower OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0015 This attribute defines the system idle power +(in Watts). This is the minimum power the system can consume +based on the current hardware configuration." + ::= { powerUsageTableEntry 15 } +powerUsageMaxPotentialPower OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0016 This attribute defines the system maximum potential +power (in Watts). This is the maximum power the system can consume +based on the current hardware configuration." + ::= { powerUsageTableEntry 16 } +powerUsagePowerCapCapabilities OBJECT-TYPE + SYNTAX DellPowerCapCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0017 This attribute defines the system power cap capabilities." + ::= { powerUsageTableEntry 17 } +powerUsagePowerCapSetting OBJECT-TYPE + SYNTAX DellPowerCapSetting + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0018 This attribute defines the system power cap setting." + ::= { powerUsageTableEntry 18 } +powerUsagePowerCapValue OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0019 This attribute defines the system power cap value +(in Watts)." + ::= { powerUsageTableEntry 19 } +powerUsageInstantaneousHeadroom OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0020 This attribute defines the system instantaneous +headroom (in Watts). This is the theoretical maximum power drawn by +the power supply minus instantaneous power draw." + ::= { powerUsageTableEntry 20 } +powerUsagePeakHeadroom OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0021 This attribute defines the system peak headroom +(in Watts). This is the theoretical maximum power drawn by the power +supply minus peak power draw." + ::= { powerUsageTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Power Profile Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.70.1... +------------------------------------------------------------------------------- + +DellPowerProfileType ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - none + maxPerformance(1), -- Maximum Performance + osControl(2), -- OS Control + activePowerController(4), -- Active Power Controller + custom(8) -- Custom +} +DellCPUPowerPerformanceManagementType ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - none + maxPerformance(1), -- Maximum Performance + minPower(2), -- Minimum Power + osDBPM(4), -- OS Demand Based Power Management + systemDBPM(8) -- System Demand Based Power Management +} +DellMemoryPowerPerformanceManagementType ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - none + maxPerformance(1), -- Maximum Performance + mhz1333(2), -- 1333 MHz + mhz1067(4), -- 1067 MHz + mhz800(8), -- 800 MHz + minPower(16) -- Minimum Power +} +DellFanPowerPerformanceManagementType ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - none + maxPerformance(1), -- Maximum Performance + minPower(2) -- Minimum Power +} + +PowerProfileTableEntry ::= SEQUENCE { + powerProfileChassisIndex DellObjectRange, + powerProfileIndex DellObjectRange, + powerProfileSupportedProfiles DellPowerProfileType, + powerProfileSetting DellPowerProfileType, + powerProfileCustomCPUMgmtCapabilities DellCPUPowerPerformanceManagementType, + powerProfileCustomCPUMgmtSetting DellCPUPowerPerformanceManagementType, + powerProfileCustomMemoryMgmtCapabilities DellMemoryPowerPerformanceManagementType, + powerProfileCustomMemoryMgmtSetting DellMemoryPowerPerformanceManagementType, + powerProfileCustomFanMgmtCapabilities DellFanPowerPerformanceManagementType, + powerProfileCustomFanMgmtSetting DellFanPowerPerformanceManagementType +} + +powerProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerProfileTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0070 This object defines the Power Profile Table." + ::= { powerGroup 70 } +powerProfileTableEntry OBJECT-TYPE + SYNTAX PowerProfileTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0070.0001 This object defines the Power Profile Table Entry." + INDEX { powerProfileChassisIndex, + powerProfileIndex } + ::= { powerProfileTable 1 } + +powerProfileChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { powerProfileTableEntry 1 } +powerProfileIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0002 This attribute defines the index (one based) of the +power profile information." + ::= { powerProfileTableEntry 2 } +powerProfileSupportedProfiles OBJECT-TYPE + SYNTAX DellPowerProfileType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0003 This attribute defines the supported power profiles." + ::= { powerProfileTableEntry 3 } +powerProfileSetting OBJECT-TYPE + SYNTAX DellPowerProfileType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0004 This attribute defines the power profile setting." + ::= { powerProfileTableEntry 4 } +powerProfileCustomCPUMgmtCapabilities OBJECT-TYPE + SYNTAX DellCPUPowerPerformanceManagementType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0005 This attribute defines the custom CPU power and +performance management capabilities that are available for the Custom +power profile." + ::= { powerProfileTableEntry 5 } +powerProfileCustomCPUMgmtSetting OBJECT-TYPE + SYNTAX DellCPUPowerPerformanceManagementType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0006 This attribute defines the custom CPU power and +performance management setting for the Custom power profile." + ::= { powerProfileTableEntry 6 } +powerProfileCustomMemoryMgmtCapabilities OBJECT-TYPE + SYNTAX DellMemoryPowerPerformanceManagementType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0007 This attribute defines the custom memory power and +performance management capabilities that are available for the Custom +power profile." + ::= { powerProfileTableEntry 7 } +powerProfileCustomMemoryMgmtSetting OBJECT-TYPE + SYNTAX DellMemoryPowerPerformanceManagementType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0008 This attribute defines the custom memory power and +performance management setting for the Custom power profile." + ::= { powerProfileTableEntry 8 } +powerProfileCustomFanMgmtCapabilities OBJECT-TYPE + SYNTAX DellFanPowerPerformanceManagementType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0009 This attribute defines the custom fan power and +performance management capabilities that are available for the Custom +power profile." + ::= { powerProfileTableEntry 9 } +powerProfileCustomFanMgmtSetting OBJECT-TYPE + SYNTAX DellFanPowerPerformanceManagementType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0070.0001.0010 This attribute defines the custom fan power and +performance management setting for the Custom power profile." + ::= { powerProfileTableEntry 10 } + + +------------------------------------------------------------------------------- +-- Thermal Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.700 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cooling Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.700.10.1... +------------------------------------------------------------------------------- + +CoolingUnitTableEntry ::= SEQUENCE { + coolingUnitchassisIndex DellObjectRange, + coolingUnitIndex DellObjectRange, + coolingUnitStateCapabilties DellStateCapabilities, + coolingUnitStateSettings DellStateSettings, + coolingUnitRedundancyStatus DellStatusRedundancy, + coolingDeviceCountForRedundancy DellObjectRange, + coolingUnitName DellString, + coolingUnitStatus DellStatus +} + +coolingUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0010 This object defines the Cooling Unit Table." + ::= { thermalGroup 10 } +coolingUnitTableEntry OBJECT-TYPE + SYNTAX CoolingUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0010.0001 This object defines the Cooling Unit Table Entry." + INDEX { coolingUnitchassisIndex, + coolingUnitIndex } + ::= { coolingUnitTable 1 } + +coolingUnitchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0001 This attribute defines the index (one based) of the +assoicated chassis." + ::= { coolingUnitTableEntry 1 } +coolingUnitIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0002 This attribute defines the index (one based) of the +cooling unit." + ::= { coolingUnitTableEntry 2 } +coolingUnitStateCapabilties OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0003 This attribute defines the state capabilities of the +cooling unit." + ::= { coolingUnitTableEntry 3 } +coolingUnitStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0004 This attribute defines the state settings of the +cooling unit." + ::= { coolingUnitTableEntry 4 } +coolingUnitRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0005 This attribute defines the redundancy status of the +cooling unit." + ::= { coolingUnitTableEntry 5 } +coolingDeviceCountForRedundancy OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0006 This attribute defines the total number of cooling devices +required for this cooling unit to have full redundancy." + ::= { coolingUnitTableEntry 6 } +coolingUnitName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0007 This attribute defines the name of the cooling unit." + ::= { coolingUnitTableEntry 7 } +coolingUnitStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0008 This attribute defines the status of the cooling unit." + ::= { coolingUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Cooling Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.700.12.1... +------------------------------------------------------------------------------- + +DellCoolingDeviceType ::= INTEGER { + coolingDeviceTypeIsOther(1), -- type is other than following values + coolingDeviceTypeIsUnknown(2), -- type is unknown + coolingDeviceTypeIsAFan(3), -- type is Fan + coolingDeviceTypeIsABlower(4), -- type is Centrifugal Blower + coolingDeviceTypeIsAChipFan(5), -- type is Fan on Integrated Circuit + coolingDeviceTypeIsACabinetFan(6), -- type is Cabinet Fan + coolingDeviceTypeIsAPowerSupplyFan(7), -- type is Power Supply Fan + coolingDeviceTypeIsAHeatPipe(8), -- type is Heat Pipe + coolingDeviceTypeIsRefrigeration(9), -- type is Integrated Refrigeration Unit + coolingDeviceTypeIsActiveCooling(10), -- type is Active Cooling Device + coolingDeviceTypeIsPassiveCooling(11) -- type is Passive Cooling Device +} +DellCoolingDeviceSubType ::= INTEGER { + coolingDeviceSubTypeIsOther(1), -- subtype is other than following values + coolingDeviceSubTypeIsUnknown(2), -- subtype is unknown + coolingDeviceSubTypeIsAFanThatReadsInRPM(3),-- subtype is Fan that reads RPM + coolingDeviceSubTypeIsAFanReadsONorOFF(4), -- subtype is Fan that reads Off or On + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM(5), -- subtype is Power Supply Fan that reads RPM + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF(6),-- subtype is Power Supply Fan that reads Off or On + coolingDeviceSubTypeIsDiscrete(16) -- subtype is cooling device with discrete reading +} +DellCoolingDeviceDiscreteReading ::= INTEGER { + coolingDeviceIsGood(1), -- cooling device is Good + coolingDeviceIsBad(2) -- cooling device is Bad +} + +CoolingDeviceTableEntry ::= SEQUENCE { + coolingDevicechassisIndex DellObjectRange, + coolingDeviceIndex DellObjectRange, + coolingDeviceStateCapabilities DellStateCapabilities, + coolingDeviceStateSettings DellStateSettings, + coolingDeviceStatus DellStatusProbe, + coolingDeviceReading DellSigned32BitRange, + coolingDeviceType DellCoolingDeviceType, + coolingDeviceLocationName DellString, + coolingDeviceUpperNonRecoverableThreshold DellSigned32BitRange, + coolingDeviceUpperCriticalThreshold DellSigned32BitRange, + coolingDeviceUpperNonCriticalThreshold DellSigned32BitRange, + coolingDeviceLowerNonCriticalThreshold DellSigned32BitRange, + coolingDeviceLowerCriticalThreshold DellSigned32BitRange, + coolingDeviceLowerNonRecoverableThreshold DellSigned32BitRange, + coolingDevicecoolingUnitIndexReference DellObjectRange, + coolingDeviceSubType DellCoolingDeviceSubType, + coolingDeviceProbeCapabilities DellProbeCapabilities, + coolingDeviceDiscreteReading DellCoolingDeviceDiscreteReading +} + +coolingDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0012 This object defines the Cooling Device Table." + ::= { thermalGroup 12 } +coolingDeviceTableEntry OBJECT-TYPE + SYNTAX CoolingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0012.0001 This object defines the Cooling Device Table Entry." + INDEX { coolingDevicechassisIndex, + coolingDeviceIndex } + ::= { coolingDeviceTable 1 } + +coolingDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { coolingDeviceTableEntry 1 } +coolingDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0002 This attribute defines the index (one based) of the +cooling device." + ::= { coolingDeviceTableEntry 2 } +coolingDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0003 This attribute defines the state capabilities of the +cooling device." + ::= { coolingDeviceTableEntry 3 } +coolingDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0004 This attribute defines the state settings of the +cooling device." + ::= { coolingDeviceTableEntry 4 } +coolingDeviceStatus OBJECT-TYPE + SYNTAX DellStatusProbe + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0005 This attribute defines the probe status of the +cooling device." + ::= { coolingDeviceTableEntry 5 } +coolingDeviceReading OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0006 This attribute defines the reading for a cooling device +of subtype other than coolingDeviceSubTypeIsDiscrete. When the value +for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the +value returned for this attribute is the speed in RPM or the OFF/ON value +of the cooling device. When the value for coolingDeviceSubType is +coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute." + ::= { coolingDeviceTableEntry 6 } +coolingDeviceType OBJECT-TYPE + SYNTAX DellCoolingDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0007 This attribute defines the type of the cooling device." + ::= { coolingDeviceTableEntry 7 } +coolingDeviceLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0008 This attribute defines the location name of the +cooling device." + ::= { coolingDeviceTableEntry 8 } +coolingDeviceUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0009 This attribute defines the upper nonrecoverable threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 9 } +coolingDeviceUpperCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0010 This attribute defines the upper critical threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 10 } +coolingDeviceUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0011 This attribute defines the upper noncritical threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 11 } +coolingDeviceLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0012 This attribute defines the lower noncritical threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 12 } +coolingDeviceLowerCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0013 This attribute defines the lower critical threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 13 } +coolingDeviceLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0014 This attribute defines the lower nonrecoverable threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 14 } +coolingDevicecoolingUnitIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0015 This attribute defines the index to the associated +cooling unit." + ::= { coolingDeviceTableEntry 15 } +coolingDeviceSubType OBJECT-TYPE + SYNTAX DellCoolingDeviceSubType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0016 This attribute defines the subtype of the cooling device." + ::= { coolingDeviceTableEntry 16 } +coolingDeviceProbeCapabilities OBJECT-TYPE + SYNTAX DellProbeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0017 This attribute defines the probe capabilities of the +cooling device." + ::= { coolingDeviceTableEntry 17 } +coolingDeviceDiscreteReading OBJECT-TYPE + SYNTAX DellCoolingDeviceDiscreteReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0018 This attribute defines the reading for a cooling device +of type coolingDeviceSubTypeIsDiscrete. When the value for +coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, a value +is not returned for this attribute. When the value for coolingDeviceSubType +is coolingDeviceSubTypeIsDiscrete, the value returned for this attribute +is the discrete reading for the cooling device." + ::= { coolingDeviceTableEntry 18 } + + +------------------------------------------------------------------------------- +-- Temperature Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.700.20.1... +------------------------------------------------------------------------------- + +DellTemperatureProbeType ::= INTEGER { + temperatureProbeTypeIsOther(1), -- type is other than following values + temperatureProbeTypeIsUnknown(2), -- type is unknown + temperatureProbeTypeIsAmbientESM(3), -- type is Ambient Embedded Systems Management temperature probe + temperatureProbeTypeIsDiscrete(16) -- type is temperature probe with discrete reading +} +DellTemperatureDiscreteReading ::= INTEGER { + temperatureIsGood(1), -- temperature reading is Good + temperatureIsBad(2) -- temperature reading is Bad +} + +TemperatureProbeTableEntry ::= SEQUENCE { + temperatureProbechassisIndex DellObjectRange, + temperatureProbeIndex DellObjectRange, + temperatureProbeStateCapabilities DellStateCapabilities, + temperatureProbeStateSettings DellStateSettings, + temperatureProbeStatus DellStatusProbe, + temperatureProbeReading DellSigned32BitRange, + temperatureProbeType DellTemperatureProbeType, + temperatureProbeLocationName DellString, + temperatureProbeUpperNonRecoverableThreshold DellSigned32BitRange, + temperatureProbeUpperCriticalThreshold DellSigned32BitRange, + temperatureProbeUpperNonCriticalThreshold DellSigned32BitRange, + temperatureProbeLowerNonCriticalThreshold DellSigned32BitRange, + temperatureProbeLowerCriticalThreshold DellSigned32BitRange, + temperatureProbeLowerNonRecoverableThreshold DellSigned32BitRange, + temperatureProbeProbeCapabilities DellProbeCapabilities, + temperatureProbeDiscreteReading DellTemperatureDiscreteReading +} + +temperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0020 This object defines the Temperature Probe Table." + ::= { thermalGroup 20 } +temperatureProbeTableEntry OBJECT-TYPE + SYNTAX TemperatureProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0020.0001 This object defines the Temperature Probe Table Entry." + INDEX { temperatureProbechassisIndex, + temperatureProbeIndex } + ::= { temperatureProbeTable 1 } + +temperatureProbechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { temperatureProbeTableEntry 1 } +temperatureProbeIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0002 This attribute defines the index (one based) of the +temperature probe." + ::= { temperatureProbeTableEntry 2 } +temperatureProbeStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0003 This attribute defines the state capabilities of the +temperature probe." + ::= { temperatureProbeTableEntry 3 } +temperatureProbeStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0004 This attribute defines the state settings of the +temperature probe." + ::= { temperatureProbeTableEntry 4 } +temperatureProbeStatus OBJECT-TYPE + SYNTAX DellStatusProbe + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0005 This attribute defines the probe status of the +temperature probe." + ::= { temperatureProbeTableEntry 5 } +temperatureProbeReading OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0006 This attribute defines the reading for a temperature +probe of type other than temperatureProbeTypeIsDiscrete. When the value +for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, +the value returned for this attribute is the temperature that the probe +is reading in tenths of degrees Centigrade. When the value for +temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not +returned for this attribute." + ::= { temperatureProbeTableEntry 6 } +temperatureProbeType OBJECT-TYPE + SYNTAX DellTemperatureProbeType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0007 This attribute defines the type of the temperature probe." + ::= { temperatureProbeTableEntry 7 } +temperatureProbeLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0008 This attribute defines the location name of the +temperature probe." + ::= { temperatureProbeTableEntry 8 } +temperatureProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0009 This attribute defines the upper nonrecoverable threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 9 } +temperatureProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0010 This attribute defines the upper critical threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 10 } +temperatureProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0011 This attribute defines the upper noncritical threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 11 } +temperatureProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0012 This attribute defines the lower noncritical threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 12 } +temperatureProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0013 This attribute defines the lower critical threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 13 } +temperatureProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0014 This attribute defines the lower nonrecoverable threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 14 } +temperatureProbeProbeCapabilities OBJECT-TYPE + SYNTAX DellProbeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0015 This attribute defines the probe capabilities of the +temperature probe." + ::= { temperatureProbeTableEntry 15 } +temperatureProbeDiscreteReading OBJECT-TYPE + SYNTAX DellTemperatureDiscreteReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0016 This attribute defines the reading for a temperature +probe of type temperatureProbeTypeIsDiscrete. When the value for +temperatureProbeType is other than temperatureProbeTypeIsDiscrete, a value +is not returned for this attribute. When the value for temperatureProbeType +is temperatureProbeTypeIsDiscrete, the value returned for this attribute +is the discrete reading for the probe." + ::= { temperatureProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- User Security Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.800 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- User Security Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.800.10.1... +------------------------------------------------------------------------------- + +UserSecurityTableEntry ::= SEQUENCE { + userSecuritychassisIndex DellObjectRange, + userSecurityIndex DellObjectRange, + userSecurityUserName DellSecurityString, + userSecurityControlName DellSecurityString, + userSecurityRequestName DellSecurityString +} + +userSecurityTable OBJECT-TYPE + SYNTAX SEQUENCE OF UserSecurityTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0800.0010 This object defines the User Security Table." + ::= { userSecurityGroup 10 } +userSecurityTableEntry OBJECT-TYPE + SYNTAX UserSecurityTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0800.0010.0001 This object defines the User Security Table Entry." + INDEX { userSecuritychassisIndex, + userSecurityIndex } + ::= { userSecurityTable 1 } + +userSecuritychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0001 This attribute defines the index (one based) of the +assoicated chassis." + ::= { userSecurityTableEntry 1 } +userSecurityIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0002 This attribute defines the index (one based) of the +user." + ::= { userSecurityTableEntry 2 } +userSecurityUserName OBJECT-TYPE + SYNTAX DellSecurityString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0003 This attribute defines the name of the user +that is authorized to perform Set operations on this system." + ::= { userSecurityTableEntry 3 } +userSecurityControlName OBJECT-TYPE + SYNTAX DellSecurityString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0004 This attribute defines the control string +that is used for managing users in this table." + ::= { userSecurityTableEntry 4 } +userSecurityRequestName OBJECT-TYPE + SYNTAX DellSecurityString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0005 This attribute defines the request string +that is used for Set requests on this system." + ::= { userSecurityTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Remote Flash BIOS Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.900 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Remote Flash BIOS Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.900.10.1... +------------------------------------------------------------------------------- + +DellRemoteFlashBIOSStateCapabilitiesUnique ::= INTEGER { + -- If 0 (zero), there are no remote flash BIOS state capabilities + unknown(1), -- state capabilities are unknown + enableCapable(2), -- remote flash BIOS can be enabled (online) or be disabled (offline) + notReadyCapable(4), -- remote flash BIOS can be not ready + cancelCapable(8), -- remote flash BIOS can be canceled + enableAndCancelCapable(10) -- remote flash BIOS can be enabled and canceled +} +DellRemoteFlashBIOSStateSettingsUnique ::= INTEGER { + -- If 0 (zero), there are no remote flash BIOS state settings + unknown(1), -- state settings are unknown + enabled(2), -- remote flash BIOS is enabled + notReady(4), -- remote flash BIOS is not ready + canceled(8), -- remote flash BIOS is canceled + pending(16), -- remote flash BIOS is pending + other(32) -- state settings are other than above +} +DellRemoteFlashBIOSCompletionCode ::= INTEGER { + completionCodeIsOther(1), -- code is other than following values + completionCodeIsUnknown(2), -- code is unknown + completionCodeIsOK(3), -- code is completed successfully + completionCodeIsBadImage(4), -- code is bad flash BIOS image + completionCodeIsNoFileAccess(5), -- code is flash BIOS image could not be accessed + completionCodeIsNotReady(6), -- code is flash BIOS memory not ready + completionCodeIsDisabled(7), -- code is flash BIOS is currently disabled + completionCodeIsNoBattery(8), -- code is battery must be installed + completionCodeIsNoChargedBattery(9), -- code is fully charged battery must be installed + completionCodeIsNoExternalPower(10), -- code is external power adapter must be connected + completionCodeIsNo12VoltSet(11), -- code is that 12 volts could not be set + completionCodeIsNo12VoltRemoval(12), -- code is that 12 volts could not be removed + completionCodeIsFlashMemoryFailed(13), -- code is flash memory failure occured + completionCodeIsGeneralFailure(14), -- code is general failure occurred + completionCodeIsDataMiscompare(15), -- code is data miscompare error occurred + completionCodeIsNoImageFound(16), -- code is flash BIOS image could not be found in memory + completionCodeIsNoUpdatePerformed(17) -- code is no update operation has been performed +} + +RemoteFlashBIOSTableEntry ::= SEQUENCE { + remoteFlashBIOSchassisIndex DellObjectRange, + remoteFlashBIOSIndex DellObjectRange, + remoteFlashBIOSStateCapabilitiesUnique DellRemoteFlashBIOSStateCapabilitiesUnique, + remoteFlashBIOSStateSettingsUnique DellRemoteFlashBIOSStateSettingsUnique, + remoteFlashBIOSStatus DellStatus, + remoteFlashBIOSLastBIOSDateName DellDateName, + remoteFlashBIOSCompletionCode DellRemoteFlashBIOSCompletionCode, + remoteFlashBIOSMinimumContiguousMemory DellUnsigned32BitRange +} + +remoteFlashBIOSTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteFlashBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0900.0010 This object defines the Remote Flash BIOS Table." + ::= { remoteFlashBIOSGroup 10 } +remoteFlashBIOSTableEntry OBJECT-TYPE + SYNTAX RemoteFlashBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0900.0010.0001 This object defines the Remote Flash BIOS Table Entry." + INDEX { remoteFlashBIOSchassisIndex, + remoteFlashBIOSIndex } + ::= { remoteFlashBIOSTable 1 } + +remoteFlashBIOSchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { remoteFlashBIOSTableEntry 1 } +remoteFlashBIOSIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0002 This attribute defines the index (one based) of the +remote flash BIOS function." + ::= { remoteFlashBIOSTableEntry 2 } +remoteFlashBIOSStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellRemoteFlashBIOSStateCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0003 This attribute defines the state capabilities of the +remote flash BIOS function." + ::= { remoteFlashBIOSTableEntry 3 } +remoteFlashBIOSStateSettingsUnique OBJECT-TYPE + SYNTAX DellRemoteFlashBIOSStateSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0004 This attribute defines the state settings of the +remote flash BIOS function." + ::= { remoteFlashBIOSTableEntry 4 } +remoteFlashBIOSStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0005 This attribute defines the status of the +remote flash BIOS function." + ::= { remoteFlashBIOSTableEntry 5 } +remoteFlashBIOSLastBIOSDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0006 This attribute defines the date of last BIOS update. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes and ss are the seconds. +uuuuuu is the number of microseconds, and +fff or -fff is the offset from +UTC in minutes." + ::= { remoteFlashBIOSTableEntry 6 } +remoteFlashBIOSCompletionCode OBJECT-TYPE + SYNTAX DellRemoteFlashBIOSCompletionCode + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0007 This attribute defines the completion code of the +last BIOS update." + ::= { remoteFlashBIOSTableEntry 7 } +remoteFlashBIOSMinimumContiguousMemory OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0008 This attribute defines the minimum size of contiguous +memory required for the remote flash BIOS function in KBbytes." + ::= { remoteFlashBIOSTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Port Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000 +------------------------------------------------------------------------------- + + +DellGenericPortConnectorType ::= INTEGER { + portConnectorTypeIsOther(1), -- type is other than following values + portConnectorTypeIsNone(2), -- type is no port connector + portConnectorTypeIsCentronics(3), -- type is Centronics, IEEE1284-B Receptical + portConnectorTypeIsMiniCentronics(4), -- type is MiniCentronics, IEEE1284-C Receptical + portConnectorTypeIsProprietary(5), -- type is Proprietary + portConnectorTypeIsDB25Male(6), -- type is Male DB-25, IEEE1284-A Plug + portConnectorTypeIsDB25Female(7), -- type is Female DB-25, IEEE1284-A Receptical + portConnectorTypeIsDB15Male(8), -- type is Male DB-15 + portConnectorTypeIsDB15Female(9), -- type is Female DB-15 + portConnectorTypeIsDB9Male(10), -- type is Male DB-9 + portConnectorTypeIsDB9Female(11), -- type is Female DB-9 + portConnectorTypeIsRJ11(12), -- type is RJ-11 + portConnectorTypeIsRJ45(13), -- type is RJ-45 + portConnectorTypeIsMiniSCSI50Pin(14), -- type is 50 pin MiniSCSI + portConnectorTypeIsMiniDIN(15), -- type is Mini DIN + portConnectorTypeIsMicroDIN(16), -- type is Micro DIN + portConnectorTypeIsPS2(17), -- type is PS/2 + portConnectorTypeIsInfrared(18), -- type is Infrared + portConnectorTypeIsHPHIL(19), -- type is HP-HIL + portConnectorTypeIsAccessBussUSB(20), -- type is Access Bus USB + portConnectorTypeISSASCSI(21), -- type is SSA SCSI + portConnectorTypeIsCirdin8Male(22), -- type is Male Circular DIN-8 + portConnectorTypeIsCirdin8Female(23), -- type is Female Circular DIN-8 + portConnectorTypeIsIDE(24), -- type is IDE + portConnectorTypeIsFloppy(25), -- type is Floppy + portConnectorTypeIsDIN9Pin(26), -- type is 9-pin Dual Inline + portConnectorTypeIsDIN25Pin(27), -- type is 25-pin Dual Inline + portConnectorTypeIsDIN50Pin(28), -- type is 50-pin Dual Inline + portConnectorTypeIsDIN68Pin(29), -- type is 68-pin Dual Inline + portConnectorTypeIsCDROMLineOut(30), -- type is CDROM Line Output + portConnectorTypeIsMiniCentronics14(31), -- type is MiniCentronics 14 + portConnectorTypeIsMiniCentronics26(32), -- type is MiniCentronics 26 + portConnectorTypeIsMiniJack(33), -- type is Minijack, headphones + portConnectorTypeIsBNC(34), -- type is BNC + portConnectorTypeIs1394(35), -- type is 1394, firewire + portConnectorTypeIsPC98(36), -- type is PC-98 + portConnectorTypeIsPC98Hireso(37), -- type is PC-98 Hireso + portConnectorTypeIsPCH98(38), -- type is PCH98 + portConnectorTypeIsPC98Note(39), -- type is PC-98 Note + portConnectorTypeIsPC98Full(40) -- type is PC-98 Full +} +DellPortSecurityState ::= INTEGER { + other(1), -- security state is other than following values + unknown(2), -- security state is unknown + none(3), -- security state is no security + externalIsDisabled(4), -- security state is external interface is disabled + externalIsEnabled(5), -- security state is external interface is enabled + bootByPass(6) -- security state is boot bypass +} + + +------------------------------------------------------------------------------- +-- Pointing Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.10.1... +------------------------------------------------------------------------------- + +DellPointingPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsSerial(3), -- type is Serial + connectorPortTypeIsPS2(4), -- type is PS/2 + connectorPortTypeIsInfrared(5), -- type is Infrared + connectorPortTypeIsHPHIL(6), -- type is HP-HIL + connectorPortTypeIsBusMouse(7), -- type is Bus Mouse + connectorPortTypeIsADB(8), -- type is ADB + connectorPortTypeIsDB9(9), -- type is DB-9 + connectorPortTypeIsMicroDIN(10), -- type is Micro DIN + connectorPortTypeIsAccessBusUSB(11), -- type is Access Bus USB + connectorPortTypeIsPC98(12) -- type is PC-98 +} + +PointingPortTableEntry ::= SEQUENCE { + pointingPortchassisIndex DellObjectRange, + pointingPortIndex DellObjectRange, + pointingPortStateCapabilities DellStateCapabilities, + pointingPortStateSettings DellStateSettings, + pointingPortStatus DellStatus, + pointingPortSecurityState DellPortSecurityState, + pointingPortConnectorType DellPointingPortConnectorType, + pointingPortName DellString, + pointingPortBIOSConnectorType DellGenericPortConnectorType +} + +pointingPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF PointingPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0010 This object defines the Pointing Port Table." + ::= { portGroup 10 } +pointingPortTableEntry OBJECT-TYPE + SYNTAX PointingPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0010.0001 This object defines the Pointing Port Table Entry." + INDEX { pointingPortchassisIndex, + pointingPortIndex } + ::= { pointingPortTable 1 } + +pointingPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { pointingPortTableEntry 1 } +pointingPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0002 This attribute defines the index (one based) of the +pointing port." + ::= { pointingPortTableEntry 2 } +pointingPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0003 This attribute defines the state capabilities of the +pointing port." + ::= { pointingPortTableEntry 3 } +pointingPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0004 This attribute defines the state settings of the +pointing port." + ::= { pointingPortTableEntry 4 } +pointingPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0005 This attribute defines the status of the +pointing port." + ::= { pointingPortTableEntry 5 } +pointingPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0006 This attribute defines the security state of the +pointing port." + ::= { pointingPortTableEntry 6 } +pointingPortConnectorType OBJECT-TYPE + SYNTAX DellPointingPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0007 This attribute defines the connector type of the +pointing port." + ::= { pointingPortTableEntry 7 } +pointingPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0008 This attribute defines name of the pointing port." + ::= { pointingPortTableEntry 8 } +pointingPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0009 This attribute defines the BIOS connector type of the +pointing port." + ::= { pointingPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Keyboard Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.20.1... +------------------------------------------------------------------------------- + +DellKeyboardPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsMiniDIN(3), -- type is Mini DIN + connectorPortTypeIsMicroDIN(4), -- type is Micro DIN + connectorPortTypeIsPS2(5), -- type is PS/2 + connectorPortTypeIsInfrared(6), -- type is Infrared + connectorPortTypeIsHPHIL(7), -- type is HP-HIL + connectorPortTypeIsDB9(8), -- type is DB-9 + connectorPortTypeIsAccessBusUSB(9), -- type is Access Bus USB + connectorPortTypeIsPC98(10) -- type is PC-98 +} + +KeyboardPortTableEntry ::= SEQUENCE { + keyboardPortchassisIndex DellObjectRange, + keyboardPortIndex DellObjectRange, + keyboardPortStateCapabilities DellStateCapabilities, + keyboardPortStateSettings DellStateSettings, + keyboardPortStatus DellStatus, + keyboardPortSecurityState DellPortSecurityState, + keyboardPortConnectorType DellKeyboardPortConnectorType, + keyboardPortName DellString, + keyboardPortBIOSConnectorType DellGenericPortConnectorType +} + +keyboardPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF KeyboardPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0020 This object defines the Keyboard Port Table." + ::= { portGroup 20 } +keyboardPortTableEntry OBJECT-TYPE + SYNTAX KeyboardPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0020.0001 This object defines the Keyboard Port Table Entry." + INDEX { keyboardPortchassisIndex, + keyboardPortIndex } + ::= { keyboardPortTable 1 } + +keyboardPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { keyboardPortTableEntry 1 } +keyboardPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0002 This attribute defines the index (one based) of the +keyboard port." + ::= { keyboardPortTableEntry 2 } +keyboardPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0003 This attribute defines the state capabilities of the +keyboard port." + ::= { keyboardPortTableEntry 3 } +keyboardPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0004 This attribute defines the state settings of the +keyboard port." + ::= { keyboardPortTableEntry 4 } +keyboardPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0005 This attribute defines the status of the +keyboard port." + ::= { keyboardPortTableEntry 5 } +keyboardPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0006 This attribute defines the security state of the +keyboard port." + ::= { keyboardPortTableEntry 6 } +keyboardPortConnectorType OBJECT-TYPE + SYNTAX DellKeyboardPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0007 This attribute defines the connector type of the +keyboard port." + ::= { keyboardPortTableEntry 7 } +keyboardPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0008 This attribute defines name of the keyboard port." + ::= { keyboardPortTableEntry 8 } +keyboardPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0009 This attribute defines the BIOS connector type of the +keyboard port." + ::= { keyboardPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Processor Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.30.1... +------------------------------------------------------------------------------- + +DellProcessorPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDaughterdBoard(3), -- type is Daughter Board + connectorPortTypeIsZIFSocket(4), -- type is Zero Insertion Force Socket + connectorPortTypeIsAPiggyBackBoard(5), -- type is Replacement/Piggy Back Board + connectorPortTypeIsNone(6), -- type is None (soldered in place) + connectorPortTypeIsLIFSocket(7), -- type is Low Force Insertion Socket + connectorPortTypeIsSlot1(8), -- type is Slot 1 + connectorPortTypeIsSlot2(9), -- type is Slot 2 + connectorPortTypeIs370PinSocket(10) -- type is 370 Pin Socket +} + +ProcessorPortTableEntry ::= SEQUENCE { + processorPortchassisIndex DellObjectRange, + processorPortIndex DellObjectRange, + processorPortStateCapabilities DellStateCapabilities, + processorPortStateSettings DellStateSettings, + processorPortStatus DellStatus, + processorPortSecurityState DellPortSecurityState, + processorPortConnectorType DellProcessorPortConnectorType, + processorPortName DellString, + processorPortBIOSConnectorType DellGenericPortConnectorType +} + +processorPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0030 This object defines the Processor Port Table." + ::= { portGroup 30 } +processorPortTableEntry OBJECT-TYPE + SYNTAX ProcessorPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0030.0001 This object defines the Processor Port Table Entry." + INDEX { processorPortchassisIndex, + processorPortIndex } + ::= { processorPortTable 1 } + +processorPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { processorPortTableEntry 1 } +processorPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0002 This attribute defines the index (one based) of the +processor port." + ::= { processorPortTableEntry 2 } +processorPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0003 This attribute defines the state capabilities of the +processor port." + ::= { processorPortTableEntry 3 } +processorPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0004 This attribute defines the state settings of the +processor port." + ::= { processorPortTableEntry 4 } +processorPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0005 This attribute defines the status of the +processor port." + ::= { processorPortTableEntry 5 } +processorPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0006 This attribute defines the security state of the +processor port." + ::= { processorPortTableEntry 6 } +processorPortConnectorType OBJECT-TYPE + SYNTAX DellProcessorPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0007 This attribute defines the connector type of the +processor port." + ::= { processorPortTableEntry 7 } +processorPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0008 This attribute defines name of the processor port." + ::= { processorPortTableEntry 8 } +processorPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0009 This attribute defines the BIOS connector type of the +processor port." + ::= { processorPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Memory Device Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.40.1... +------------------------------------------------------------------------------- + +DellMemoryDevicePortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsSIMM(3), -- type is SIMM + connectorPortTypeIsSIP(4), -- type is SIP + connectorPortTypeIsAChip(5), -- type is Chip + connectorPortTypeIsDIP(6), -- type is DIP + connectorPortTypeIsZIP(7), -- type is ZIP + connectorPortTypeIsAProprietaryCard(8), -- type is Proprietary Card + connectorPortTypeIsDIMM(9), -- type is DIMM + connectorPortTypeIsTSOP(10), -- type is TSOP + connectorPortTypeIsARowOfChips(11), -- type is Row of Chips + connectorPortTypeIsRIMM(12), -- type is RIMM + connectorPortTypeIsSODIMM(13), -- type is SODIMM + connectorPortTypeIsSRIMM(14) -- type is SRIMM +} + +MemoryDevicePortTableEntry ::= SEQUENCE { + memoryDevicePortchassisIndex DellObjectRange, + memoryDevicePortIndex DellObjectRange, + memoryDevicePortStateCapabilities DellStateCapabilities, + memoryDevicePortStateSettings DellStateSettings, + memoryDevicePortStatus DellStatus, + memoryDevicePortSecurityState DellPortSecurityState, + memoryDevicePortConnectorType DellMemoryDevicePortConnectorType, + memoryDevicePortName DellString, + memoryDevicePortBIOSConnectorType DellGenericPortConnectorType, + memoryDevicePortPhysicalMemoryArrayIndexReference DellUnsigned32BitRange, + memoryDevicePortPhysicalMemoryCardIndexReference DellUnsigned32BitRange +} + +memoryDevicePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDevicePortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0040 This object defines the Memory Device Port Table." + ::= { portGroup 40 } +memoryDevicePortTableEntry OBJECT-TYPE + SYNTAX MemoryDevicePortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0040.0001 This object defines the Memory Device Port Table Entry." + INDEX { memoryDevicePortchassisIndex, + memoryDevicePortIndex } + ::= { memoryDevicePortTable 1 } + +memoryDevicePortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { memoryDevicePortTableEntry 1 } +memoryDevicePortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0002 This attribute defines the index (one based) of the +memory device port." + ::= { memoryDevicePortTableEntry 2 } +memoryDevicePortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0003 This attribute defines the state capabilities of the +memory device port." + ::= { memoryDevicePortTableEntry 3 } +memoryDevicePortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0004 This attribute defines the state settings of the +memory device port." + ::= { memoryDevicePortTableEntry 4 } +memoryDevicePortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0005 This attribute defines the status of the +memory device port." + ::= { memoryDevicePortTableEntry 5 } +memoryDevicePortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0006 This attribute defines the security state of the +memory device port." + ::= { memoryDevicePortTableEntry 6 } +memoryDevicePortConnectorType OBJECT-TYPE + SYNTAX DellMemoryDevicePortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0007 This attribute defines the connector type of the +memory device port." + ::= { memoryDevicePortTableEntry 7 } +memoryDevicePortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0008 This attribute defines name of the memory device port." + ::= { memoryDevicePortTableEntry 8 } +memoryDevicePortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0009 This attribute defines the BIOS connector type of the +memory device port." + ::= { memoryDevicePortTableEntry 9 } +memoryDevicePortPhysicalMemoryArrayIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0010 This attribute defines the index (one based) of the +Physical Memory Array Table entry for the physical memory array with the +same chassis index that this memory device port is associated with." + ::= { memoryDevicePortTableEntry 10 } +memoryDevicePortPhysicalMemoryCardIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0011 This attribute defines the index (one based) of the +Physical Memory Card Table entry for the physical memory card with the +same chassis index that this memory device port is associated with (if any)." + ::= { memoryDevicePortTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Monitor Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.50.1... +------------------------------------------------------------------------------- + +DellMonitorPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDB15PinMale(3), -- type is Male DB-15 + connectorPortTypeIsDB15PinFemale(4) -- type is Female DB-15 +} + +MonitorPortTableEntry ::= SEQUENCE { + monitorPortchassisIndex DellObjectRange, + monitorPortIndex DellObjectRange, + monitorPortStateCapabilities DellStateCapabilities, + monitorPortStateSettings DellStateSettings, + monitorPortStatus DellStatus, + monitorPortSecurityState DellPortSecurityState, + monitorPortConnectorType DellMonitorPortConnectorType, + monitorPortName DellString, + monitorPortBIOSConnectorType DellGenericPortConnectorType +} + +monitorPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MonitorPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0050 This object defines the Monitor Port Table." + ::= { portGroup 50 } +monitorPortTableEntry OBJECT-TYPE + SYNTAX MonitorPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0050.0001 This object defines the Monitor Port Table Entry." + INDEX { monitorPortchassisIndex, + monitorPortIndex } + ::= { monitorPortTable 1 } + +monitorPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { monitorPortTableEntry 1 } +monitorPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0002 This attribute defines the index (one based) of the +monitor port." + ::= { monitorPortTableEntry 2 } +monitorPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0003 This attribute defines the state capabilities of the +monitor port." + ::= { monitorPortTableEntry 3 } +monitorPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0004 This attribute defines the state settings of the +monitor port." + ::= { monitorPortTableEntry 4 } +monitorPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0005 This attribute defines the status of the +monitor port." + ::= { monitorPortTableEntry 5 } +monitorPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0006 This attribute defines the security state of the +monitor port." + ::= { monitorPortTableEntry 6 } +monitorPortConnectorType OBJECT-TYPE + SYNTAX DellMonitorPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0007 This attribute defines the connector type of the +monitor port." + ::= { monitorPortTableEntry 7 } +monitorPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0008 This attribute defines name of the monitor port." + ::= { monitorPortTableEntry 8 } +monitorPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0009 This attribute defines the BIOS connector type of the +monitor port." + ::= { monitorPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Small Computer Systems Interface (SCSI) Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.60.1... +------------------------------------------------------------------------------- + +DellSCSIPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following valaues + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDIN25pin(3), -- type is DIN 25-pin + connectorPortTypeIsDIN50pin(4), -- type is DIN 50-pin + connectorPortTypeIsDIN68pin(5) -- type is DIN 68-pin +} + +SCSIPortTableEntry ::= SEQUENCE { + sCSIPortchassisIndex DellObjectRange, + sCSIPortIndex DellObjectRange, + sCSIPortStateCapabilities DellStateCapabilities, + sCSIPortStateSettings DellStateSettings, + sCSIPortStatus DellStatus, + sCSIPortSecurityState DellPortSecurityState, + sCSIPortConnectorType DellSCSIPortConnectorType, + sCSIPortName DellString, + sCSIPortBIOSConnectorType DellGenericPortConnectorType +} + +sCSIPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SCSIPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0060 This object defines the Small Computer Systems Interface (SCSI) +Port Table." + ::= { portGroup 60 } +sCSIPortTableEntry OBJECT-TYPE + SYNTAX SCSIPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0060.0001 This object defines the Small Computer Systems Interface (SCSI) +Port Table Entry." + INDEX { sCSIPortchassisIndex, + sCSIPortIndex } + ::= { sCSIPortTable 1 } + +sCSIPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { sCSIPortTableEntry 1 } +sCSIPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0002 This attribute defines the index (one based) of the +SCSI port." + ::= { sCSIPortTableEntry 2 } +sCSIPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0003 This attribute defines the state capabilities of the +SCSI port." + ::= { sCSIPortTableEntry 3 } +sCSIPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0004 This attribute defines the state settings of the +SCSI port." + ::= { sCSIPortTableEntry 4 } +sCSIPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0005 This attribute defines the status of the +SCSI port." + ::= { sCSIPortTableEntry 5 } +sCSIPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0006 This attribute defines the security state of the +SCSI port." + ::= { sCSIPortTableEntry 6 } +sCSIPortConnectorType OBJECT-TYPE + SYNTAX DellSCSIPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0007 This attribute defines the connector type of the +SCSI port." + ::= { sCSIPortTableEntry 7 } +sCSIPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0008 This attribute defines name of the SCSI port." + ::= { sCSIPortTableEntry 8 } +sCSIPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0009 This attribute defines the BIOS connector type of the +SCSI port." + ::= { sCSIPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Parallel Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.70.1... +------------------------------------------------------------------------------- + +DellParallelPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDB25PinFemale(3), -- type is Female DB-25, IEEE1284-A Receptical + connectorPortTypeIsDB25PinMale(4), -- type is Male DB-25, IEEE1284-A Plug + connectorPortTypeIsCentronics(5), -- type is Centronics, IEEE1284-B Receptical + connectorPortTypeIsMiniCentronics(6), -- type is MiniCentronics, IEEE1284-C Receptical + connectorPortTypeIsProprietary(7), -- type is Proprietary + connectorPortTypeIsCentronics14(8), -- type is Centronics 14 + connectorPortTypeIsDB36PinFemale(9), -- type is Female DB-36 + connectorPortTypeIsMiniCentronics20(10) -- type is MiniCentronics 20 +} +DellParallelPortConnectorPinout ::= INTEGER { + connectorPortPinoutIsOther(1), -- pinout is other than following values + connectorPortPinoutIsUnknown(2), -- pinout is unknown + connectorPortPinoutIsXTorAT(3), -- pinout is XT or AT pinout compatible + connectorPortPinoutIsPS2(4), -- pinout is PS/2 pinout compatible + connectorPortPinoutIsIEEE1284(5), -- pinout is IEEE 1284 pinout compatible + connectorPortPinoutIsProprietary(6), -- pinout is Proprietary + connectorPortPinoutIsPC98(7), -- pinout is PC-98 pinout compatible + connectorPortPinoutIsPC98Hireso(8), -- pinout is PC-98 Hireso pinout compatible + connectorPortPinoutIsPC98Note(9), -- pinout is PC-98 Note pinout compatible + connectorPortPinoutIsPC98Full(10) -- pinout is PC-98 Full pinout compatible +} +DellParallelPortCapabilitiesUnique ::= INTEGER { + -- If 0 (zero), there are no parallel port capabilities + unknown(1), -- capabilities are unknown + atCapable(2), -- port is AT mode capable + ps2Capable(4), -- port is PS/2 mode capable + ecpCapable(8), -- port is ECP mode capable + eppCapable(16), -- port is EPP mode capable + atOrPS2OrECPOrEPPCapable(30), -- port is AT, PS/2, ECP and EPP mode capable + pc98Capable(32), -- port is PC98 mode capable + pc98HiresoCapable(64), -- port is PC98 Hireso mode capable + pc98HCapable(128) -- port is PC98H mode capable +} + +ParallelPortTableEntry ::= SEQUENCE { + parallelPortchassisIndex DellObjectRange, + parallelPortIndex DellObjectRange, + parallelPortStateCapabilities DellStateCapabilities, + parallelPortStateSettings DellStateSettings, + parallelPortStatus DellStatus, + parallelPortSecurityState DellPortSecurityState, + parallelPortConnectorType DellParallelPortConnectorType, + parallelPortName DellString, + parallelPortConnectorPinOut DellParallelPortConnectorPinout, + parallelPortCapabilitiesUnique DellParallelPortCapabilitiesUnique, + parallelPortBaseIOAddress DellUnsigned64BitRange, + parallelPortIRQLevel DellUnsigned8BitRange, + parallelPortDMASupport DellBoolean +} + +parallelPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParallelPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0070 This object defines the Parallel Port Table." + ::= { portGroup 70 } +parallelPortTableEntry OBJECT-TYPE + SYNTAX ParallelPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0070.0001 This object defines the Parallel Port Table Entry." + INDEX { parallelPortchassisIndex, + parallelPortIndex } + ::= { parallelPortTable 1 } + +parallelPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { parallelPortTableEntry 1 } +parallelPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0002 This attribute defines the index (one based) of the +parallel port." + ::= { parallelPortTableEntry 2 } +parallelPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0003 This attribute defines the state capabilities of the +parallel port." + ::= { parallelPortTableEntry 3 } +parallelPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0004 This attribute defines the state settings of the +parallel port." + ::= { parallelPortTableEntry 4 } +parallelPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0005 This attribute defines the status of the +parallel port." + ::= { parallelPortTableEntry 5 } +parallelPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0006 This attribute defines the security state of the +parallel port." + ::= { parallelPortTableEntry 6 } +parallelPortConnectorType OBJECT-TYPE + SYNTAX DellParallelPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0007 This attribute defines the connector type of the +parallel port." + ::= { parallelPortTableEntry 7 } +parallelPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0008 This attribute defines the name of the +parallel port." + ::= { parallelPortTableEntry 8 } +parallelPortConnectorPinOut OBJECT-TYPE + SYNTAX DellParallelPortConnectorPinout + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0009 This attribute defines the pinout of the +parallel port." + ::= { parallelPortTableEntry 9 } +parallelPortCapabilitiesUnique OBJECT-TYPE + SYNTAX DellParallelPortCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0010 This attribute defines the mode capabilities of the +parallel port." + ::= { parallelPortTableEntry 10 } +parallelPortBaseIOAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0011 This attribute defines the base Input/Output address of +the parallel port." + ::= { parallelPortTableEntry 11 } +parallelPortIRQLevel OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0012 This attribute defines the Interrupt Request Level of +the parallel port." + ::= { parallelPortTableEntry 12 } +parallelPortDMASupport OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0013 This attribute defines if DMA is supported by the +parallel port." + ::= { parallelPortTableEntry 13 } + + +------------------------------------------------------------------------------- +-- Serial Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.80.1... +------------------------------------------------------------------------------- + +DellSerialPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDB9PinMale(3), -- type is Male DB-9 + connectorPortTypeIsDB9PinFemale(4), -- type is Female DB-9 + connectorPortTypeIsDB25PinMale(5), -- type is Male DB-25 + connectorPortTypeIsDB25PinFemale(6), -- type is Female DB-25 + connectorPortTypeIsRJ11(7), -- type is RJ-11 + connectorPortTypeIsRJ45(8), -- type is RJ-45 + connectorPortTypeIsProprietary(9), -- type is Proprietary + connectorPortTypeIsCirdin8Male(10), -- type is Male Circular DIN-8 + connectorPortTypeIsCirdin8Female(11), -- type is Female Circular DIN-8 + connectorPortTypeIsMiniCentronics14(12), -- type is MiniCentronics 14 + connectorPortTypeIsMiniCentronics26(13) -- type is MiniCentronics 26 +} +DellSerialPortCapabilitiesUnique ::= INTEGER { + other(1), -- capabilities are other than following values + unknown(2), -- capabilities are unknown + xtorATCapable(4), -- port is XT or AT mode capable + c16450Capable(8), -- port is 16450 capable + c16550Capable(16), -- port is 16550 capable + c16550aCapable(32), -- port is 16550A capable + c8251Capable(64), -- port is 8251 capable + c8251FIFOCapable(128) -- port is 8251 FIFO capable +} + +SerialPortTableEntry ::= SEQUENCE { + serialPortchassisIndex DellObjectRange, + serialPortIndex DellObjectRange, + serialPortStateCapabilities DellStateCapabilities, + serialPortStateSettings DellStateSettings, + serialPortStatus DellStatus, + serialPortSecurityState DellPortSecurityState, + serialPortConnectorType DellSerialPortConnectorType, + serialPortName DellString, + serialPortMaximumSpeed DellUnsigned32BitRange, + serialPortCapabilitiesUnique DellSerialPortCapabilitiesUnique, + serialPortBaseIOAddress DellUnsigned64BitRange, + serialPortIRQLevel DellUnsigned8BitRange +} + +serialPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SerialPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0080 This object defines the Serial Port Table." + ::= { portGroup 80 } +serialPortTableEntry OBJECT-TYPE + SYNTAX SerialPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0080.0001 This object defines the Serial Port Table Entry." + INDEX { serialPortchassisIndex, + serialPortIndex } + ::= { serialPortTable 1 } + +serialPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { serialPortTableEntry 1 } +serialPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0002 This attribute defines the index (one based) of the +serial port." + ::= { serialPortTableEntry 2 } +serialPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0003 This attribute defines the state capabilities of the +serial port." + ::= { serialPortTableEntry 3 } +serialPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0004 This attribute defines the state settings of the +serial port." + ::= { serialPortTableEntry 4 } +serialPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0005 This attribute defines the status of the +serial port." + ::= { serialPortTableEntry 5 } +serialPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0006 This attribute defines the security state of the +serial port." + ::= { serialPortTableEntry 6 } +serialPortConnectorType OBJECT-TYPE + SYNTAX DellSerialPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0007 This attribute defines the connector type of the +serial port." + ::= { serialPortTableEntry 7 } +serialPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0008 This attribute defines the name of the +serial port." + ::= { serialPortTableEntry 8 } +serialPortMaximumSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0009 This attribute defines the maximum speed the serial +port can support in bits per second. 0 (zero) indicates maximum speed +is unknown." + ::= { serialPortTableEntry 9 } +serialPortCapabilitiesUnique OBJECT-TYPE + SYNTAX DellSerialPortCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0010 This attribute defines the mode capabilities of the +serial port." + ::= { serialPortTableEntry 10 } +serialPortBaseIOAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0011 This attribute defines the base Input/Output address of +the serial port." + ::= { serialPortTableEntry 11 } +serialPortIRQLevel OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0012 This attribute defines the Interrupt Request Level of +the serial port." + ::= { serialPortTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Universal Serial Bus (USB) Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.90.1... +------------------------------------------------------------------------------- + +DellUSBPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsUSB(3) -- type is Universal Serial Bus +} + +USBPortTableEntry ::= SEQUENCE { + uSBPortchassisIndex DellObjectRange, + uSBPortIndex DellObjectRange, + uSBPortStateCapabilities DellStateCapabilities, + uSBPortStateSettings DellStateSettings, + uSBPortStatus DellStatus, + uSBPortSecurityState DellPortSecurityState, + uSBPortConnectorType DellUSBPortConnectorType, + uSBPortName DellString, + uSBPortBIOSConnectorType DellGenericPortConnectorType +} + +uSBPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF USBPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0090 This object defines the Universal Serial Bus (USB) Port Table." + ::= { portGroup 90 } +uSBPortTableEntry OBJECT-TYPE + SYNTAX USBPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0090.0001 This object defines the USB Port Table Entry." + INDEX { uSBPortchassisIndex, + uSBPortIndex } + ::= { uSBPortTable 1 } + +uSBPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { uSBPortTableEntry 1 } +uSBPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0002 This attribute defines the index (one based) of the +USB port." + ::= { uSBPortTableEntry 2 } +uSBPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0003 This attribute defines the state capabilities of the +USB port." + ::= { uSBPortTableEntry 3 } +uSBPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0004 This attribute defines the state settings of the +USB port." + ::= { uSBPortTableEntry 4 } +uSBPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0005 This attribute defines the status of the USB port." + ::= { uSBPortTableEntry 5 } +uSBPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0006 This attribute defines the security state of the +USB port." + ::= { uSBPortTableEntry 6 } +uSBPortConnectorType OBJECT-TYPE + SYNTAX DellUSBPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0007 This attribute defines the connector type of the +USB port." + ::= { uSBPortTableEntry 7 } +uSBPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0008 This attribute defines name of the USB port." + ::= { uSBPortTableEntry 8 } +uSBPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0009 This attribute defines the BIOS connector type of the +USB port." + ::= { uSBPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Device Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Pointing Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.10.1... +------------------------------------------------------------------------------- + +DellPointingDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is Unknown + deviceTypeIsAMouse(3), -- type is Mouse + deviceTypeIsATrackBall(4), -- type is Track Ball + deviceTypeIsATrackPoint(5), -- type is Track Point + deviceTypeIsAGlidePoint(6), -- type is Glide Point + deviceTypeIsATouchPad(7) -- type is Touch Pad +} + +PointingDeviceTableEntry ::= SEQUENCE { + pointingDevicechassisIndex DellObjectRange, + pointingDeviceIndex DellObjectRange, + pointingDeviceStateCapabilities DellStateCapabilities, + pointingDeviceStateSettings DellStateSettings, + pointingDeviceStatus DellStatus, + pointingPortIndexReference DellObjectRange, + pointingDeviceType DellPointingDeviceType, + pointingDeviceNumberofButtons DellUnsigned8BitRange +} + +pointingDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PointingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0010 This object defines the Pointing Device Table." + ::= { deviceGroup 10 } +pointingDeviceTableEntry OBJECT-TYPE + SYNTAX PointingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0010.0001 This object defines the Pointing Device Table Entry." + INDEX { pointingDevicechassisIndex, + pointingDeviceIndex } + ::= { pointingDeviceTable 1 } + +pointingDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { pointingDeviceTableEntry 1 } +pointingDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0002 This attribute defines the index (one based) of the +pointing device." + ::= { pointingDeviceTableEntry 2 } +pointingDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0003 This attribute defines the state capabilities of the +pointing device." + ::= { pointingDeviceTableEntry 3 } +pointingDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0004 This attribute defines the state settings of the +pointing device." + ::= { pointingDeviceTableEntry 4 } +pointingDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0005 This attribute defines the status of the pointing device." + ::= { pointingDeviceTableEntry 5 } +pointingPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0006 This attribute defines the index (one based) of the +associated pointing port in the same chassis." + ::= { pointingDeviceTableEntry 6 } +pointingDeviceType OBJECT-TYPE + SYNTAX DellPointingDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0007 This attribute defines the type of the pointing device." + ::= { pointingDeviceTableEntry 7 } +pointingDeviceNumberofButtons OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0008 This attribute defines the number of buttons on the +pointing device." + ::= { pointingDeviceTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Keyboard Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.20.1... +------------------------------------------------------------------------------- + +KeyboardDeviceTableEntry ::= SEQUENCE { + keyboardDevicechassisIndex DellObjectRange, + keyboardDeviceIndex DellObjectRange, + keyboardDeviceStateCapabilities DellStateCapabilities, + keyboardDeviceStateSettings DellStateSettings, + keyboardDeviceStatus DellStatus, + keyboardPortIndexReference DellObjectRange, + keyboardDeviceTypeName DellString, + keyboardDeviceLayoutName DellString +} + +keyboardDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF KeyboardDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0020 This object defines the Keyboard Device Table." + ::= { deviceGroup 20 } +keyboardDeviceTableEntry OBJECT-TYPE + SYNTAX KeyboardDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0020.0001 This object defines the Keyboard Device Table Entry." + INDEX { keyboardDevicechassisIndex, + keyboardDeviceIndex } + ::= { keyboardDeviceTable 1 } + +keyboardDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { keyboardDeviceTableEntry 1 } +keyboardDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0002 This attribute defines the index (one based) of the +keyboard device." + ::= { keyboardDeviceTableEntry 2 } +keyboardDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0003 This attribute defines the state capabilities of the +keyboard device." + ::= { keyboardDeviceTableEntry 3 } +keyboardDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0004 This attribute defines the state settings of the +keyboard device." + ::= { keyboardDeviceTableEntry 4 } +keyboardDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0005 This attribute defines the status of the keyboard device." + ::= { keyboardDeviceTableEntry 5 } +keyboardPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0006 This attribute defines the index (one based) of the +associated keyboard device in the same chassis." + ::= { keyboardDeviceTableEntry 6 } +keyboardDeviceTypeName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0007 This attribute defines the name of the keyboard device +type." + ::= { keyboardDeviceTableEntry 7 } +keyboardDeviceLayoutName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0008 This attribute defines the name of the keyboard device +layout." + ::= { keyboardDeviceTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Processor Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.30.1... +------------------------------------------------------------------------------- + +DellProcessorDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsCPU(3), -- type is Central Processing Unit + deviceTypeIsMathProcessor(4), -- type is Math Processor + deviceTypeIsDSP(5), -- type is Digital Signal Processor + deviceTypeIsAVideoProcessor(6) -- type is Video Processor +} +DellProcessorDeviceFamily ::= INTEGER { + deviceFamilyIsOther(1), -- family is Other + deviceFamilyIsUnknown(2), -- family is Unknown + deviceFamilyIs8086(3), -- family is 8086 + deviceFamilyIs80286(4), -- family is 80286 + deviceFamilyIsIntel386(5), -- family is Intel386 processor + deviceFamilyIsIntel486(6), -- family is Intel486 processor + deviceFamilyIs8087(7), -- family is 8087 + deviceFamilyIs80287(8), -- family is 80287 + deviceFamilyIs80387(9), -- family is 80387 + deviceFamilyIs80487(10), -- family is 80487 + deviceFamilyIsPentium(11), -- family is Pentium processor Family + deviceFamilyIsPentiumPro(12), -- family is Pentium Pro processor + deviceFamilyIsPentiumII(13), -- family is Pentium II processor + deviceFamilyIsPentiumMMX(14), -- family is Pentium processor with MMX technology + deviceFamilyIsCeleron(15), -- family is Celeron processor + deviceFamilyIsPentiumIIXeon(16), -- family is Pentium II Xeon processor + deviceFamilyIsPentiumIII(17), -- family is Pentium III processor + deviceFamilyIsPentiumIIIXeon(18), -- family is Pentium III Xeon processor + deviceFamilyIsPentiumIIISpeedStep(19), -- family is Pentium III Processor with Intel SpeedStep Technology + deviceFamilyIsItanium(20), -- family is Itanium processor + deviceFamilyIsIntelXeon(21), -- family is Intel Xeon + deviceFamilyIsPentium4(22), -- family is Pentium 4 Processor + deviceFamilyIsIntelXeonMP(23), -- family is Intel Xeon processor MP + deviceFamilyIsIntelItanium2(24), -- family is Intel Itanium 2 processor + deviceFamilyIsK5(25), -- family is K5 Family + deviceFamilyIsK6(26), -- family is K6 Family + deviceFamilyIsK6-2(27), -- family is K6-2 + deviceFamilyIsK6-3(28), -- family is K6-3 + deviceFamilyIsAMDAthlon(29), -- family is AMD Athlon Processor Family + deviceFamilyIsAMD2900(30), -- family is AMD2900 Family + deviceFamilyIsK6-2Plus(31), -- family is K6-2+ + deviceFamilyIsPowerPC(32), -- family is Power PC Family + deviceFamilyIsPowerPC601(33), -- family is Power PC 601 + deviceFamilyIsPowerPC603(34), -- family is Power PC 603 + deviceFamilyIsPowerPC603Plus(35), -- family is Power PC 603+ + deviceFamilyIsPowerPC604(36), -- family is Power PC 604 + deviceFamilyIsPowerPC620(37), -- family is Power PC 620 + deviceFamilyIsPowerPCx704(38), -- family is Power PC x704 + deviceFamilyIsPowerPC750(39), -- family is Power PC 750 + deviceFamilyIsIntelCoreDuo(40), -- family is Intel(R) Core(TM) Duo processor + deviceFamilyIsIntelCoreDuoMobile(41), -- family is Intel(R) Core(TM) Duo mobile processor + deviceFamilyIsIntelCoreSoloMobile(42), -- family is Intel(R) Core(TM) Solo mobile processor + deviceFamilyIsIntelAtom(43), -- family is Intel(R) Atom(TM) processor + deviceFamilyIsAlpha(48), -- family is Alpha Family + deviceFamilyIsAlpha21064(49), -- family is Alpha 21064 + deviceFamilyIsAlpha21066(50), -- family is Alpha 21066 + deviceFamilyIsAlpha21164(51), -- family is Alpha 21164 + deviceFamilyIsAlpha21164PC(52), -- family is Alpha 21164PC + deviceFamilyIsAlpha21164a(53), -- family is Alpha 21164a + deviceFamilyIsAlpha21264(54), -- family is Alpha 21264 + deviceFamilyIsAlpha21364(55), -- family is Alpha 21364 + deviceFamilyIsAMDTurionIIUltraDualMobileM(56), -- family is AMD Turion(TM) II Ultra Dual-Core Mobile M Processor Family + deviceFamilyIsAMDTurionIIDualMobileM(57), -- family is AMD Turion(TM) II Dual-Core Mobile M Processor Family + deviceFamilyIsAMDAthlonIIDualMobileM(58), -- family is AMD Athlon(TM) II Dual-Core Mobile M Processor Family + deviceFamilyIsAMDOpteron6100(59), -- family is AMD Opteron(TM) 6100 Series Processor + deviceFamilyIsAMDOpteron4100(60), -- family is AMD Opteron(TM) 4100 Series Processor + deviceFamilyIsAMDOpteron6200(61), -- family is AMD Opteron(TM) 6200 Series Processor + deviceFamilyIsAMDOpteron4200(62), -- family is AMD Opteron(TM) 4200 Series Processor + deviceFamilyIsMIPS(64), -- family is MIPS Family + deviceFamilyIsMIPSR4000(65), -- family is MIPS R4000 + deviceFamilyIsMIPSR4200(66), -- family is MIPS R4200 + deviceFamilyIsMIPSR4400(67), -- family is MIPS R4400 + deviceFamilyIsMIPSR4600(68), -- family is MIPS R4600 + deviceFamilyIsMIPSR10000(69), -- family is MIPS R10000 + deviceFamilyIsSPARC(80), -- family is SPARC Family + deviceFamilyIsSuperSPARC(81), -- family is SuperSPARC + deviceFamilyIsmicroSPARCII(82), -- family is microSPARC II + deviceFamilyIsmicroSPARCIIep(83), -- family is microSPARC IIep + deviceFamilyIsUltraSPARC(84), -- family is UltraSPARC + deviceFamilyIsUltraSPARCII(85), -- family is UltraSPARC II + deviceFamilyIsUltraSPARCIIi(86), -- family is UltraSPARC IIi + deviceFamilyIsUltraSPARCIII(87), -- family is UltraSPARC III + deviceFamilyIsUltraSPARCIIIi(88), -- family is UltraSPARC IIIi + deviceFamilyIs68040(96), -- family is 68040 Family + deviceFamilyIs68xxx(97), -- family is 68xxx + deviceFamilyIs68000(98), -- family is 68000 + deviceFamilyIs68010(99), -- family is 68010 + deviceFamilyIs68020(100), -- family is 68020 + deviceFamilyIs68030(101), -- family is 68030 + deviceFamilyIsHobbit(112), -- family is Hobbit Family + deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family + deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family + deviceFamilyIsEfficeonTM8000(122), -- family is Efficeon TM8000 Family + deviceFamilyIsWeitek(128), -- family is Weitek + deviceFamilyIsIntelCeleronM(130), -- family is Intel(R) Celeron(R) M processor + deviceFamilyIsAMDAthlon64(131), -- family is AMD Athlon 64 Processor Family + deviceFamilyIsAMDOpteron(132), -- family is AMD Opteron Processor Family + deviceFamilyIsAMDSempron(133), -- family is AMD Sempron Processor Family + deviceFamilyIsAMDTurion64Mobile(134), -- family is AMD Turion 64 Mobile Technology + deviceFamilyIsDualCoreAMDOpteron(135), -- family is Dual-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDAthlon64X2DualCore(136), -- family is AMD Athlon 64 X2 Dual-Core Processor Family + deviceFamilyIsAMDTurion64X2Mobile(137), -- family is AMD Turion(TM) 64 X2 Mobile Technology + deviceFamilyIsQuadCoreAMDOpteron(138), -- family is Quad-Core AMD Opteron(TM) Processor Family + deviceFamilyIsThirdGenerationAMDOpteron(139), -- family is Third-Generation AMD Opteron(TM) Processor Family + deviceFamilyIsAMDPhenomFXQuadCore(140), -- family is AMD Phenom(TM) FX Quad-Core Processor Family + deviceFamilyIsAMDPhenomX4QuadCore(141), -- family is AMD Phenom(TM) X4 Quad-Core Processor Family + deviceFamilyIsAMDPhenomX2DualCore(142), -- family is AMD Phenom(TM) X2 Dual-Core Processor Family + deviceFamilyIsAMDAthlonX2DualCore(143), -- family is AMD Athlon(TM) X2 Dual-Core Processor Family + deviceFamilyIsPA-RISC(144), -- family is PA-RISC Family + deviceFamilyIsPA-RISC8500(145), -- family is PA-RISC 8500 + deviceFamilyIsPA-RISC8000(146), -- family is PA-RISC 8000 + deviceFamilyIsPA-RISC7300LC(147), -- family is PA-RISC 7300LC + deviceFamilyIsPA-RISC7200(148), -- family is PA-RISC 7200 + deviceFamilyIsPA-RISC7100LC(149), -- family is PA-RISC 7100LC + deviceFamilyIsPA-RISC7100(150), -- family is PA-RISC 7100 + deviceFamilyIsV30(160), -- family is V30 Family + deviceFamilyIsQuadCoreIntelXeon3200(161), -- family is Quad-Core Intel(R) Xeon(R) processor 3200 Series + deviceFamilyIsDualCoreIntelXeon3000(162), -- family is Dual-Core Intel(R) Xeon(R) processor 3000 Series + deviceFamilyIsQuadCoreIntelXeon5300(163), -- family is Quad-Core Intel(R) Xeon(R) processor 5300 Series + deviceFamilyIsDualCoreIntelXeon5100(164), -- family is Dual-Core Intel(R) Xeon(R) processor 5100 Series + deviceFamilyIsDualCoreIntelXeon5000(165), -- family is Dual-Core Intel(R) Xeon(R) processor 5000 Series + deviceFamilyIsDualCoreIntelXeonLV(166), -- family is Dual-Core Intel(R) Xeon(R) processor LV + deviceFamilyIsDualCoreIntelXeonULV(167), -- family is Dual-Core Intel(R) Xeon(R) processor ULV + deviceFamilyIsDualCoreIntelXeon7100(168), -- family is Dual-Core Intel(R) Xeon(R) processor 7100 Series + deviceFamilyIsQuadCoreIntelXeon5400(169), -- family is Quad-Core Intel(R) Xeon(R) processor 5400 Series + deviceFamilyIsQuadCoreIntelXeon(170), -- family is Quad-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon5200(171), -- family is Dual-Core Intel(R) Xeon(R) processor 5200 Series + deviceFamilyIsDualCoreIntelXeon7200(172), -- family is Dual-Core Intel(R) Xeon(R) processor 7200 Series + deviceFamilyIsQuadCoreIntelXeon7300(173), -- family is Quad-Core Intel(R) Xeon(R) processor 7300 Series + deviceFamilyIsQuadCoreIntelXeon7400(174), -- family is Quad-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsMultiCoreIntelXeon7400(175), -- family is Multi-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsM1(176), -- family is M1 Family + deviceFamilyIsM2(177), -- family is M2 Family + deviceFamilyIsIntelPentium4HT(179), -- family is Intel(R) Pentium(R) 4 HT processor + deviceFamilyIsAS400(180), -- family is AS400 Family + deviceFamilyIsAMDAthlonXP(182), -- family is AMD Athlon XP Processor Family + deviceFamilyIsAMDAthlonMP(183), -- family is AMD Athlon MP Processor Family + deviceFamilyIsAMDDuron(184), -- family is AMD Duron Processor Family + deviceFamilyIsIntelPentiumM(185), -- family is Intel Pentium M processor + deviceFamilyIsIntelCeleronD(186), -- family is Intel Celeron D processor + deviceFamilyIsIntelPentiumD(187), -- family is Intel Pentium D processor + deviceFamilyIsIntelPentiumExtreme(188), -- family is Intel Pentium Processor Extreme Edition + deviceFamilyIsIntelCoreSolo(189), -- family is Intel(R) Core(TM) Solo processor + deviceFamilyIsIntelCore2(190), -- family is Intel(R) Core(TM)2 processor + deviceFamilyIsIntelCore2Duo(191), -- family is Intel(R) Core(TM)2 Duo processor + deviceFamilyIsIntelCore2Solo(192), -- family is Intel(R) Core(TM)2 Solo processor + deviceFamilyIsIntelCore2Extreme(193), -- family is Intel(R) Core(TM)2 Extreme processor + deviceFamilyIsIntelCore2Quad(194), -- family is Intel(R) Core(TM)2 Quad processor + deviceFamilyIsIntelCore2ExtremeMobile(195), -- family is Intel(R) Core(TM)2 Extreme mobile processor + deviceFamilyIsIntelCore2DuoMobile(196), -- family is Intel(R) Core(TM)2 Duo mobile processor + deviceFamilyIsIntelCore2SoloMobile(197), -- family is Intel(R) Core(TM)2 Solo mobile processor + deviceFamilyIsIntelCorei7(198), -- family is Intel(R) Core(TM) i7 processor + deviceFamilyIsDualCoreIntelCeleron(199), -- family is Dual-Core Intel(R) Celeron(R) Processor + deviceFamilyIsIBM390(200), -- family is IBM390 Family + deviceFamilyIsG4(201), -- family is G4 + deviceFamilyIsG5(202), -- family is G5 + deviceFamilyIsESA390G6(203), -- family is ESA/390 G6 + deviceFamilyIszArchitectur(204), -- family is z/Architectur base + deviceFamilyIsIntelCorei5(205), -- family is Intel(R) Core(TM) i5 processor + deviceFamilyIsIntelCorei3(206), -- family is Intel(R) Core(TM) i3 processor + deviceFamilyIsVIAC7-M(210), -- family is VIA C7(TM)-M Processor Family + deviceFamilyIsVIAC7-D(211), -- family is VIA C7(TM)-D Processor Family + deviceFamilyIsVIAC7(212), -- family is VIA C7(TM) Processor Family + deviceFamilyIsVIAEden(213), -- family is VIA Eden(TM) Processor Family + deviceFamilyIsMultiCoreIntelXeon(214), -- family is Multi-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon3xxx(215), -- family is Dual-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsQuadCoreIntelXeon3xxx(216), -- family is Quad-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsVIANano(217), -- family is VIA Nano(TM) Processor Family + deviceFamilyIsDualCoreIntelXeon5xxx(218), -- family is Dual-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsQuadCoreIntelXeon5xxx(219), -- family is Quad-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsDualCoreIntelXeon7xxx(221), -- family is Dual-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsQuadCoreIntelXeon7xxx(222), -- family is Quad-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon7xxx(223), -- family is Multi-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon3400(224), -- family is Multi-Core Intel(R) Xeon(R) processor 3400 Series + deviceFamilyIsEmbeddedAMDOpertonQuadCore(230), -- family is Embedded AMD Opteron(TM) Quad-Core Processor Family + deviceFamilyIsAMDPhenomTripleCore(231), -- family is AMD Phenom(TM) Triple-Core Processor Family + deviceFamilyIsAMDTurionUltraDualCoreMobile(232), -- family is AMD Turion(TM) Ultra Dual-Core Mobile Processor Family + deviceFamilyIsAMDTurionDualCoreMobile(233), -- family is AMD Turion(TM) Dual-Core Mobile Processor Family + deviceFamilyIsAMDAthlonDualCore(234), -- family is AMD Athlon(TM) Dual-Core Processor Family + deviceFamilyIsAMDSempronSI(235), -- family is AMD Sempron(TM) SI Processor Family + deviceFamilyIsAMDPhenomII(236), -- family is AMD Phenom(TM) II Processor Family + deviceFamilyIsAMDAthlonII(237), -- family is AMD Athlon(TM) II Processor Family + deviceFamilyIsSixCoreAMDOpteron(238), -- family is Six-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDSempronM(239), -- family is AMD Sempron(TM) M Processor Family + deviceFamilyIsi860(250), -- family is i860 + deviceFamilyIsi960(251) -- family is i960 +} +DellProcessorDeviceStatusState ::= INTEGER { + other(1), -- state is other than following values + unknown(2), -- state is unknown + enabled(3), -- state is enabled + userDisabled(4), -- state is disabled by user via BIOS setup + biosDisabled(5), -- state is disabled by BIOS (POST error) + idle(6) -- state is idle +} +DellProcessorUpgradeInformation ::= INTEGER { + processorUpgradeIsOther(1), -- upgrade is other than following values + processorUpgradeIsUnknown(2), -- upgrade is unknown + processorUpgradeIsByDaughterBoard(3), -- upgrade is by Daughter Board + processorUpgradeIsByZIFSocket(4), -- upgrade is by ZIF socket + processorUpgradeIsByReplacement(5), -- upgrade is by Replacement/Piggy Back + processorUpgradeIsNone(6), -- upgrade is None + processorUpgradeIsByLIFSocket(7), -- upgrade is by LIF Socket + processorUpgradeIsBySlot1(8), -- upgrade is by Slot 1 + processorUpgradeIsBySlot2(9), -- upgrade is by Slot 2 + processorUpgradeIsBy370PinSocket(10), -- upgrade is by 370 Pin Socket + processorUpgradeIsBySlotA(11), -- upgrade is by Slot A + processorUpgradeIsBySlotM(12), -- upgrade is by Slot M + processorUpgradeIsByScoket423(13), -- upgrade is by Socket 423 + processorUpgradeIsBySocketA(14), -- upgrade is by Socket A (Socket 462) + processorUpgradeIsBySocket478(15), -- upgrade is by Socket 478 + processorUpgradeIsBySocket754(16), -- upgrade is by Socket 754 + processorUpgradeIsBySocket940(17), -- upgrade is by Socket 940 + processorUpgradeIsBySocket939(18), -- upgrade is by Socket 939 + processorUpgradeIsBySocketmPGA604(19), -- upgrade is by Socket mPGA604 + processorUpgradeIsBySocketLGA771(20), -- upgrade is by Socket LGA771 + processorUpgradeIsBySocketLGA775(21), -- upgrade is by Socket LGA775 + processorUpgradeIsBySocketS1(22), -- upgrade is by Socket S1 + processorUpgradeIsBySocketAM2(23), -- upgrade is by Socket AM2 + processorUpgradeIsBySocketF(24), -- upgrade is by Socket F (1207) + processorUpgradeIsBySocketLGA1366(25) -- upgrade is by Socket LGA1366 +} + +ProcessorDeviceTableEntry ::= SEQUENCE { + processorDevicechassisIndex DellObjectRange, + processorDeviceIndex DellObjectRange, + processorDeviceStateCapabilities DellStateCapabilities, + processorDeviceStateSettings DellStateSettings, + processorDeviceStatus DellStatus, + processorPortIndexReference DellObjectRange, + processorDeviceType DellProcessorDeviceType, + processorDeviceManufacturerName DellString, + processorDeviceStatusState DellProcessorDeviceStatusState, + processorDeviceFamily DellProcessorDeviceFamily, + processorDeviceMaximumSpeed DellUnsigned32BitRange, + processorDeviceCurrentSpeed DellUnsigned32BitRange, + processorDeviceExternalClockSpeed DellUnsigned32BitRange, + processorDeviceVoltage DellSigned32BitRange, + processorDeviceUpgradeInformation DellProcessorUpgradeInformation, + processorDeviceVersionName DellString, + processorDeviceCoreCount DellUnsigned32BitRange, + processorDeviceCoreEnabledCount DellUnsigned32BitRange, + processorDeviceThreadCount DellUnsigned32BitRange, + processorDeviceCharacteristics DellUnsigned16BitRange, + processorDeviceExtendedCapabilities DellUnsigned16BitRange, + processorDeviceExtendedSettings DellUnsigned16BitRange, + processorDeviceBrandName DellString, + processorDeviceModelName DellString, + processorDeviceSteppingName DellString +} + +processorDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0030 This object defines the Processor Device Table." + ::= { deviceGroup 30 } +processorDeviceTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0030.0001 This object defines the Processor Device Table Entry." + INDEX { processorDevicechassisIndex, + processorDeviceIndex } + ::= { processorDeviceTable 1 } + +processorDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { processorDeviceTableEntry 1 } +processorDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0002 This attribute defines the index (one based) of the +processor device." + ::= { processorDeviceTableEntry 2 } +processorDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0003 This attribute defines the state capabilities of the +processor device." + ::= { processorDeviceTableEntry 3 } +processorDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0004 This attribute defines the state settings of the +processor device." + ::= { processorDeviceTableEntry 4 } +processorDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0005 This attribute defines the status of the +processor device." + ::= { processorDeviceTableEntry 5 } +processorPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0006 This attribute defines the index (one based) of the +associated processor port in the same chassis." + ::= { processorDeviceTableEntry 6 } +processorDeviceType OBJECT-TYPE + SYNTAX DellProcessorDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0007 This attribute defines the type of the processor device." + ::= { processorDeviceTableEntry 7 } +processorDeviceManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0008 This attribute defines the name of the manufacturer +of the processor device." + ::= { processorDeviceTableEntry 8 } +processorDeviceStatusState OBJECT-TYPE + SYNTAX DellProcessorDeviceStatusState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0009 This attribute defines the status state of the +processor device." + ::= { processorDeviceTableEntry 9 } +processorDeviceFamily OBJECT-TYPE + SYNTAX DellProcessorDeviceFamily + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0010 This attribute defines the family of the +processor device." + ::= { processorDeviceTableEntry 10 } +processorDeviceMaximumSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0011 This attribute defines the maximum speed of the +processor device in MHz. Zero indicates the maximum speed is unknown." + ::= { processorDeviceTableEntry 11 } +processorDeviceCurrentSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0012 This attribute defines the current speed of the +processor device in MHz. Zero indicates the current speed is unknown." + ::= { processorDeviceTableEntry 12 } +processorDeviceExternalClockSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0013 This attribute defines the speed of the +external clock for the processor device in MHz. Zero indicates +the external clock speed is unknown." + ::= { processorDeviceTableEntry 13 } +processorDeviceVoltage OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0014 This attribute defines the voltage powering the +processor device in millivolts. Zero indicates the voltage is unknown." + ::= { processorDeviceTableEntry 14 } +processorDeviceUpgradeInformation OBJECT-TYPE + SYNTAX DellProcessorUpgradeInformation + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0015 This attribute defines the processor upgrade +information for the processor device." + ::= { processorDeviceTableEntry 15 } +processorDeviceVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0016 This attribute defines the version of the +processor device. On some systems, this value contains the +brand and stepping information; on other systems, this value +contains the model and stepping information." + ::= { processorDeviceTableEntry 16 } +processorDeviceCoreCount OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0017 This attribute defines the number of processor cores +detected for the processor device." + ::= { processorDeviceTableEntry 17 } +processorDeviceCoreEnabledCount OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0018 This attribute defines the number of processor cores +enabled for the processor device." + ::= { processorDeviceTableEntry 18 } +processorDeviceThreadCount OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0019 This attribute defines the number of processor threads +detected for the processor device." + ::= { processorDeviceTableEntry 19 } +processorDeviceCharacteristics OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0020 This attribute defines characteristics of the +processor device. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + +NOTE: Bits 2-15 need to be examined in the context of bit 1. +If bit 1 is set, the processor charactistics are unknown and bits 2-15 cannot +be used to determine if the functions associated with the bits are supported. + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Reserved + Bit 1 Unknown + Bit 2 64-bit capable + Bit 3-15 Reserved" + ::= { processorDeviceTableEntry 20 } +processorDeviceExtendedCapabilities OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0021 This attribute defines extended capabilities of the +processor device. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) supported + Bit 1 Demand-Based Switching (DBS) supported + Bit 2 eXecute Disable (XD) supported + Bit 3 Hyper-Threading (HT) supported" + ::= { processorDeviceTableEntry 21 } +processorDeviceExtendedSettings OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0022 This attribute defines extended settings of the +processor device. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) enabled + Bit 1 Demand Based Switching (DBS) enabled + Bit 2 eXecute Disable (XD) enabled + Bit 3 Hyper-Threading (HT) enabled" + ::= { processorDeviceTableEntry 22 } +processorDeviceBrandName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0023 This attribute defines the brand of the +processor device." + ::= { processorDeviceTableEntry 23 } +processorDeviceModelName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0024 This attribute defines the model of the +processor device." + ::= { processorDeviceTableEntry 24 } +processorDeviceSteppingName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0025 This attribute defines the stepping of the +processor device." + ::= { processorDeviceTableEntry 25 } + + +------------------------------------------------------------------------------- +-- Processor Device Status Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.32.1... +------------------------------------------------------------------------------- + +DellProcessorDeviceStatusReading ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + internalError(1), -- Internal Error + thermalTrip(2), -- Thermal Trip + configurationError(32), -- Configuration Error + processorPresent(128), -- Processor Present + processorDisabled(256), -- Processor Disabled + terminatorPresent(512), -- Terminator Present + processorThrottled(1024) -- Processor Throttled +} + +ProcessorDeviceStatusTableEntry ::= SEQUENCE { + processorDeviceStatusChassisIndex DellObjectRange, + processorDeviceStatusIndex DellObjectRange, + processorDeviceStatusStateCapabilities DellStateCapabilities, + processorDeviceStatusStateSettings DellStateSettings, + processorDeviceStatusStatus DellStatus, + processorDeviceStatusReading DellProcessorDeviceStatusReading, + processorDeviceStatusLocationName DellString, + processorDeviceStatusPortIndexReference DellObjectRange +} + +processorDeviceStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceStatusTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0032 This object defines the Processor Device Status Table." + ::= { deviceGroup 32 } +processorDeviceStatusTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceStatusTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0032.0001 This object defines the Processor Device Status Table Entry." + INDEX { processorDeviceStatusChassisIndex, + processorDeviceStatusIndex } + ::= { processorDeviceStatusTable 1 } + +processorDeviceStatusChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { processorDeviceStatusTableEntry 1 } +processorDeviceStatusIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0002 This attribute defines the index (one based) of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 2 } +processorDeviceStatusStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0003 This attribute defines the state capabilities of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 3 } +processorDeviceStatusStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0004 This attribute defines the state settings of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 4 } +processorDeviceStatusStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0005 This attribute defines the status of the +processor device status probe. This status will be joined into +the processorDeviceStatus attribute." + ::= { processorDeviceStatusTableEntry 5 } +processorDeviceStatusReading OBJECT-TYPE + SYNTAX DellProcessorDeviceStatusReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0006 This attribute defines the reading of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 6 } +processorDeviceStatusLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0007 This attribute defines the location name of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 7 } +processorDeviceStatusPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0008 This attribute defines the index (one based) of the +associated processor port in the same chassis." + ::= { processorDeviceStatusTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Cache Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.40.1... +------------------------------------------------------------------------------- + +DellCacheDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsInstruction(3), -- type is instruction + deviceTypeIsData(4), -- type is data + deviceTypeIsUnified(5) -- type is unified +} +DellCacheDeviceLevel ::= INTEGER { + deviceLevelIsOther(1), -- level is other than following values + deviceLevelIsUnknown(2), -- level is unknown + deviceLevelIsPrimary(3), -- level is primary + deviceLevelIsSecondary(4), -- level is secondary + deviceLevelIsTertiary(5) -- level is tertiary +} +DellCacheDeviceWritePolicy ::= INTEGER { + deviceWritePolicyIsOther(1), -- policy is other than following values + deviceWritePolicyIsUnknown(2), -- policy is unknown + deviceWritePolicyIsWriteBack(3), -- policy is write back + deviceWritePolicyIsWriteThrough(4), -- policy is write through + deviceWritePolicyIsVariesByAddress(5), -- policy is varies by address + deviceWritePolicyIsDeterminedByIO(6) -- policy is determined by I/O query +} +DellCacheDeviceStatusState ::= INTEGER { + other(1), -- state is other than following values + unknown(2), -- state is unknown + enabled(3), -- state is enabled + userDisabled(4), -- state is disabled by user + biosDisabled(5) -- state is BIOS disabled +} +DellCacheDeviceECCType ::= INTEGER { + deviceECCTypeIsOther(1), -- ECC type is other than following values + deviceECCTypeIsUnknown(2), -- ECC type is unknown + deviceECCTypeIsNone(3), -- ECC type is none + deviceECCTypeIsParity(4), -- ECC type is parity + deviceECCTypeIsSingleBitECC(5), -- ECC type is single bit ECC + deviceECCTypeIsMultiBitECC(6), -- ECC type is multibit ECC + deviceECCTypeIsCRC(7) -- ECC type is CRC +} +DellCacheDeviceAssociativity ::= INTEGER { + deviceAssociativityIsOther(1), -- associativity is Other + deviceAssociativityIsUnknown(2), -- associativity is Unknown + deviceAssociativityIsDirectMapped(3), -- associativity is Direct Mapped + deviceAssociativityIsTwoWaySetAssociative(4), -- associativity is 2-way Set-Associative + deviceAssociativityIsFourWaySetAssociative(5), -- associativity is 4-way Set-Associative + deviceAssociativityIsFullyAssociative(6), -- associativity is Fully Associative + deviceAssociativityIsEightWaySetAssociative(7), -- associativity is 8-way Set-Associative + deviceAssociativityIsSixteenWaySetAssociative(8), -- associativity is 16-way Set-Associative + deviceAssociativityIs12WaySetAssociative(9), -- associativity is 12-way Set-Associative + deviceAssociativityIs24WaySetAssociative(10), -- associativity is 24-way Set-Associative + deviceAssociativityIs32WaySetAssociative(11), -- associativity is 32-way Set-Associative + deviceAssociativityIs48WaySetAssociative(12), -- associativity is 48-way Set-Associative + deviceAssociativityIs64WaySetAssociative(13) -- associativity is 64-way Set-Associative +} +DellCacheDeviceLocation ::= INTEGER { + deviceLocationIsOther(1), -- location is other than following values + deviceLocationIsUnknown(2), -- location is unknown + deviceLocationIsInternal(3), -- location is internal + deviceLocationIsExternal(4) -- location is external +} +DellCacheDeviceSRAMType ::= INTEGER { + deviceSRAMTypeIsOther(1), -- SRAM type is other than following values + deviceSRAMTypeIsUnknown(2), -- SRAM type is unknown + deviceSRAMTypeIsNonBurst(3), -- SRAM type is nonburst + deviceSRAMTypeIsBurst(4), -- SRAM type is burst + deviceSRAMTypeIsPipeBurst(5), -- SRAM type is pipeburst + deviceSRAMTypeIsSynchronous(6), -- SRAM type is synchronous + deviceSRAMTypeIsAsynchronous(7) -- SRAM type is asynchronous +} + +CacheDeviceTableEntry ::= SEQUENCE { + cacheDevicechassisIndex DellObjectRange, + cacheDeviceIndex DellObjectRange, + cacheDeviceStateCapabilities DellStateCapabilities, + cacheDeviceStateSettings DellStateSettings, + cacheDeviceStatus DellStatus, + cacheDeviceprocessorDeviceIndexReference DellObjectRange, + cacheDeviceType DellCacheDeviceType, + cacheDeviceLocation DellCacheDeviceLocation, + cacheDeviceStatusState DellCacheDeviceStatusState, + cacheDeviceExternalSocketName DellString, + cacheDeviceLevel DellCacheDeviceLevel, + cacheDeviceMaximumSize DellUnsigned32BitRange, + cacheDeviceCurrentSize DellUnsigned32BitRange, + cacheDeviceSpeed DellUnsigned32BitRange, + cacheDeviceWritePolicy DellCacheDeviceWritePolicy, + cacheDeviceIsSocketed DellBoolean, + cacheDeviceECCType DellCacheDeviceECCType, + cacheDeviceAssociativity DellCacheDeviceAssociativity, + cacheDeviceSupportedType DellCacheDeviceSRAMType, + cacheDeviceCurrentType DellCacheDeviceSRAMType +} + +cacheDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CacheDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0040 This object defines the Cache Device Table." + ::= { deviceGroup 40 } +cacheDeviceTableEntry OBJECT-TYPE + SYNTAX CacheDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0040.0001 This object defines the Cache Device Table Entry." + INDEX { cacheDevicechassisIndex, + cacheDeviceIndex } + ::= { cacheDeviceTable 1 } + +cacheDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cacheDeviceTableEntry 1 } +cacheDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0002 This attribute defines the index (one based) of the +cache device." + ::= { cacheDeviceTableEntry 2 } +cacheDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0003 This attribute defines the state capabilities of the +cache device." + ::= { cacheDeviceTableEntry 3 } +cacheDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0004 This attribute defines the state settings of the +cache device." + ::= { cacheDeviceTableEntry 4 } +cacheDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0005 This attribute defines the status of the cache device." + ::= { cacheDeviceTableEntry 5 } +cacheDeviceprocessorDeviceIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0006 This attribute defines the index (one based) of the +processor device associated with the cache device." + ::= { cacheDeviceTableEntry 6 } +cacheDeviceType OBJECT-TYPE + SYNTAX DellCacheDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0007 This attribute defines the type of cache device." + ::= { cacheDeviceTableEntry 7 } +cacheDeviceLocation OBJECT-TYPE + SYNTAX DellCacheDeviceLocation + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0008 This attribute defines the location of the cache device." + ::= { cacheDeviceTableEntry 8 } +cacheDeviceStatusState OBJECT-TYPE + SYNTAX DellCacheDeviceStatusState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0009 This attribute defines the status state of the +cache device." + ::= { cacheDeviceTableEntry 9 } +cacheDeviceExternalSocketName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0010 This attribute defines the name of the external socket +name of the cache device if the cache device is socketed." + ::= { cacheDeviceTableEntry 10 } +cacheDeviceLevel OBJECT-TYPE + SYNTAX DellCacheDeviceLevel + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0011 This attribute defines the level of the cache device." + ::= { cacheDeviceTableEntry 11 } +cacheDeviceMaximumSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0012 This attribute defines the maximum size of the +cache device in KBytes. Zero indicates the maximum size is unknown." + ::= { cacheDeviceTableEntry 12 } +cacheDeviceCurrentSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0013 This attribute defines the current size of the +cache device in KBytes. Zero indicates the current size is unknown." + ::= { cacheDeviceTableEntry 13 } +cacheDeviceSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0014 This attribute defines the speed of the +cache device in nanoseconds. Zero indicates the speed is unknown." + ::= { cacheDeviceTableEntry 14 } +cacheDeviceWritePolicy OBJECT-TYPE + SYNTAX DellCacheDeviceWritePolicy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0015 This attribute defines the write policy of the +cache device." + ::= { cacheDeviceTableEntry 15 } +cacheDeviceIsSocketed OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0016 This attribute defines if the cache device is +socketed or not." + ::= { cacheDeviceTableEntry 16 } +cacheDeviceECCType OBJECT-TYPE + SYNTAX DellCacheDeviceECCType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0017 This attribute defines the type of error correction +in use by the cache device." + ::= { cacheDeviceTableEntry 17 } +cacheDeviceAssociativity OBJECT-TYPE + SYNTAX DellCacheDeviceAssociativity + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0018 This attribute defines the type of associativity +in use by the cache device." + ::= { cacheDeviceTableEntry 18 } +cacheDeviceSupportedType OBJECT-TYPE + SYNTAX DellCacheDeviceSRAMType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0019 This attribute defines the supported SRAM type of the +cache device." + ::= { cacheDeviceTableEntry 19 } +cacheDeviceCurrentType OBJECT-TYPE + SYNTAX DellCacheDeviceSRAMType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0020 This attribute defines the current SRAM type of the +cache device." + ::= { cacheDeviceTableEntry 20 } + + +------------------------------------------------------------------------------- +-- Memory Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.50.1... +------------------------------------------------------------------------------- + +DellMemoryDeviceFormFactor ::= INTEGER { + deviceFormFactorIsOther(1), -- form factor is other than following values + deviceFormFactorIsUnknown(2), -- form factor is unknown + deviceFormFactorIsSIMM(3), -- form factor is SIMM + deviceFormFactorIsSIP(4), -- form factor is SIP + deviceFormFactorIsAChip(5), -- form factor is Chip + deviceFormFactorIsDIP(6), -- form factor is DIP + deviceFormFactorIsZIP(7), -- form factor is ZIP + deviceFormFactorIsAProprietaryCard(8), -- form factor is Proprietary Card + deviceFormFactorIsDIMM(9), -- form factor is DIMM + deviceFormFactorIsTSOP(10), -- form factor is TSOP + deviceFormFactorIsARowOfChips(11), -- form factor is Row of Chips + deviceFormFactorIsRIMM(12), -- form factor is RIMM + deviceFormFactorIsSODIMM(13), -- form factor is SODIMM + deviceFormFactorIsSRIMM(14), -- form factor is SRIMM + deviceFormFactorIsFBDIMM(15) -- form factor is FB-DIMM +} +DellMemoryDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsDRAM(3), -- type is DRAM + deviceTypeIsEDRAM(4), -- type is EDRAM + deviceTypeIsVRAM(5), -- type is VRAM + deviceTypeIsSRAM(6), -- type is SRAM + deviceTypeIsRAM(7), -- type is RAM + deviceTypeIsROM(8), -- type is ROM + deviceTypeIsFLASH(9), -- type is FLASH + deviceTypeIsEEPROM(10), -- type is EEPROM + deviceTypeIsFEPROM(11), -- type is FEPROM + deviceTypeIsEPROM(12), -- type is EPROM + deviceTypeIsCDRAM(13), -- type is CDRAM + deviceTypeIs3DRAM(14), -- type is 3DRAM + deviceTypeIsSDRAM(15), -- type is SDRAM + deviceTypeIsSGRAM(16), -- type is SGRAM + deviceTypeIsRDRAM(17), -- type is RDRAM + deviceTypeIsDDR(18), -- type is DDR + deviceTypeIsDDR2(19), -- type is DDR2 + deviceTypeIsDDR2FBDIMM(20), -- type is DDR2 FB-DIMM + deviceTypeIsDDR3(24), -- type is DDR3 + deviceTypeIsFBD2(25), -- type is FBD2 + deviceTypeIsDDR4(26) -- type is DDR4 +} + +DellMemoryDeviceRank ::= INTEGER { + deviceRankIsUnknown(1), -- Rank is unknown + deviceRankIsSingle(2), -- Rank is Single + deviceRankIsDual(4), -- Rank is Dual + deviceRankIsQuad(8), -- Rank is Quad + deviceRankIsOctal(16), -- Rank is Octal + deviceRankIsHexa(32) -- Rank is Hexa +} + +DellMemoryDeviceTypeDetails ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + deviceTypeDetailIsOther(2), -- type detail is Other + deviceTypeDetailIsUnknown(4), -- type detail is Unknown + deviceTypeDetailIsFastPaged(8), -- type detail is Fast Paged + deviceTypeDetailIsStaticColumn(16), -- type detail is Static Column + deviceTypeDetailIsPseudoStatic(32), -- type detail is Pseudo-static + deviceTypeDetailIsRAMBUS(64), -- type detail is RAMBUS + deviceTypeDetailIsSynchronous(128), -- type detail is Synchronous + deviceTypeDetailIsCMOS(256), -- type detail is CMOS + deviceTypeDetailIsEDO(512), -- type detail is EDO + deviceTypeDetailIsWindowDRAM(1024), -- type detail is Window DRAM + deviceTypeDetailIsCacheDRAM(2048), -- type detail is Cache DRAM + deviceTypeDetailIsNonVolatile(4096), -- type detail is Non-volatile + deviceTypeDetailIsRegistered(8192), -- type detail is Registered + deviceTypeDetailIsNonRegistered(16384) -- type detail is Non-registered +} +DellMemoryDeviceFailureModes ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- If value is 0 (zero), memory device has no faults. + eccSingleBitCorrectionWarningRate(1), -- ECC single bit correction warning rate exceeded + eccSingleBitCorrectionFailureRate(2), -- ECC single bit correction failure rate exceeded + eccMultiBitFault(4), -- ECC multibit fault encountered + eccSingleBitCorrectionLoggingDisabled(8), -- ECC single bit correction logging disabled + deviceDisabledBySpareActivation(16) -- device disabled because of spare activation +} + +MemoryDeviceTableEntry ::= SEQUENCE { + memoryDevicechassisIndex DellObjectRange, + memoryDeviceIndex DellObjectRange, + memoryDeviceStateCapabilities DellStateCapabilities, + memoryDeviceStateSettings DellStateSettings, + memoryDeviceStatus DellStatus, + memoryDeviceMemoryPortIndexReference DellObjectRange, + memoryDeviceType DellMemoryDeviceType, + memoryDeviceLocationName DellString, + memoryDeviceErrorCount DellSigned32BitRange, + memoryDeviceBankLocationName DellString, + memoryDeviceTypeDetails DellMemoryDeviceTypeDetails, + memoryDeviceFormFactor DellMemoryDeviceFormFactor, + memoryDeviceSet DellUnsigned32BitRange, + memoryDeviceSize DellUnsigned32BitRange, + memoryDeviceSpeed DellUnsigned32BitRange, + memoryDeviceTotalBusWidth DellUnsigned32BitRange, + memoryDeviceTotalDataBusWidth DellUnsigned32BitRange, + memoryDeviceSingleBitErrorCount DellSigned32BitRange, + memoryDeviceMultiBitErrorCount DellSigned32BitRange, + memoryDeviceFailureModes DellMemoryDeviceFailureModes, + memoryDeviceManufacturerName DellString, + memoryDevicePartNumberName DellString, + memoryDeviceSerialNumberName DellString, + memoryDeviceAssetTagName DellString, + memoryDeviceSpeedName DellString, + memoryDeviceRank DellMemoryDeviceRank, + memoryDeviceExtendedSize DellUnsigned32BitRange +} + +memoryDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0050 This object defines the Memory Device Table." + ::= { deviceGroup 50 } +memoryDeviceTableEntry OBJECT-TYPE + SYNTAX MemoryDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0050.0001 This object defines the Memory Device Table Entry." + INDEX { memoryDevicechassisIndex, + memoryDeviceIndex } + ::= { memoryDeviceTable 1 } + +memoryDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { memoryDeviceTableEntry 1 } +memoryDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0002 This attribute defines the index (one based) of the +memory device." + ::= { memoryDeviceTableEntry 2 } +memoryDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0003 This attribute defines the state capabilities of the +memory device." + ::= { memoryDeviceTableEntry 3 } +memoryDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0004 This attribute defines the state settings of the +memory device." + ::= { memoryDeviceTableEntry 4 } +memoryDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0005 This attribute defines the status of the memory device." + ::= { memoryDeviceTableEntry 5 } +memoryDeviceMemoryPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0006 This attribute defines the index (one based) of the +memory port that this memory device is part of." + ::= { memoryDeviceTableEntry 6 } +memoryDeviceType OBJECT-TYPE + SYNTAX DellMemoryDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0007 This attribute defines the type of the memory device." + ::= { memoryDeviceTableEntry 7 } +memoryDeviceLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0008 This attribute defines the location of the memory device." + ::= { memoryDeviceTableEntry 8 } +memoryDeviceErrorCount OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS deprecated + DESCRIPTION +"1100.0050.0001.0009 This attribute defines the total number of ECC corrections +for the memory device. Writing a 0 (zero) to this variable will reset +the error counts for the device. + +**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. +The value will always be zero. Writing a 0 (zero) has no effect." + ::= { memoryDeviceTableEntry 9 } +memoryDeviceBankLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0010 This attribute defines the location of the bank for the +memory device." + ::= { memoryDeviceTableEntry 10 } +memoryDeviceTypeDetails OBJECT-TYPE + SYNTAX DellMemoryDeviceTypeDetails + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0011 This attribute defines the detailed type of the +memory device." + ::= { memoryDeviceTableEntry 11 } +memoryDeviceFormFactor OBJECT-TYPE + SYNTAX DellMemoryDeviceFormFactor + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0012 This attribute defines the form factor of the +memory device." + ::= { memoryDeviceTableEntry 12 } +memoryDeviceSet OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0013 This attribute defines if the memory device is a part +of a set. Zero indicates it is not part of a set; 2,147,483,647 indicates +it is unknown if it is a part of a set." + ::= { memoryDeviceTableEntry 13 } +memoryDeviceSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS deprecated + DESCRIPTION +"1100.0050.0001.0014 This attribute defines the size in KBytes of the +memory device. Zero indicates no memory installed; 2,147,483,647 indicates +an unknown memory size. + +**NOTE: This attribute is deprecated and replaced by memoryDeviceExtendedSize." + ::= { memoryDeviceTableEntry 14 } +memoryDeviceSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0015 This attribute defines the speed in nanoseconds +of the memory device. Zero indicates an unknown speed." + ::= { memoryDeviceTableEntry 15 } +memoryDeviceTotalBusWidth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0016 This attribute defines the total number bits, +including ECC, used by the memory device. 2,147,483,647 indicates +an unknown number of bits." + ::= { memoryDeviceTableEntry 16 } +memoryDeviceTotalDataBusWidth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0017 This attribute defines the total number of data bits +used by the memory device. 2,147,483,647 indicates an unknown number of bits." + ::= { memoryDeviceTableEntry 17 } +memoryDeviceSingleBitErrorCount OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS deprecated + DESCRIPTION +"1100.0050.0001.0018 This attribute defines the total number of single bit +ECC corrections for the memory device. + +**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. +The value will always be zero." + ::= { memoryDeviceTableEntry 18 } +memoryDeviceMultiBitErrorCount OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS deprecated + DESCRIPTION +"1100.0050.0001.0019 This attribute defines the total number of multibit +ECC errors for the memory device. + +**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. +The value will always be zero." + ::= { memoryDeviceTableEntry 19 } +memoryDeviceFailureModes OBJECT-TYPE + SYNTAX DellMemoryDeviceFailureModes + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0020 This attribute defines the failure modes of the +memory device when the memoryDeviceStatus attribute is not ok(3). It is +a bit field that can be used to report more than one type of failure mode +by using a combination of the defined bit masks. + +**NOTE: This attribute replaces the memory device error count attributes. +When the memoryDeviceStatus attribute is not ok(3), this attribute should be +used to determine the reason for that instead of the error count attributes." + ::= { memoryDeviceTableEntry 20 } +memoryDeviceManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0021 This attribute defines the manufacturer of the +memory device." + ::= { memoryDeviceTableEntry 21 } +memoryDevicePartNumberName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0022 This attribute defines the manufacturer's part number +for the memory device." + ::= { memoryDeviceTableEntry 22 } +memoryDeviceSerialNumberName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0023 This attribute defines the serial number of the +memory device." + ::= { memoryDeviceTableEntry 23 } +memoryDeviceAssetTagName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0024 This attribute defines the asset tag of the +memory device." + ::= { memoryDeviceTableEntry 24 } +memoryDeviceSpeedName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0025 This attribute defines the speed of the memory device +in string format with units specified in string." + ::= { memoryDeviceTableEntry 25 } +memoryDeviceRank OBJECT-TYPE + SYNTAX DellMemoryDeviceRank + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0026 This attribute defines the Rank +of the memory device (DIMM). Zero indicates an unknown." + ::= { memoryDeviceTableEntry 26 } +memoryDeviceExtendedSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0027 This attribute defines the size in MBytes of the +memory device. + +**NOTE: This attribute replaces the memoryDeviceSize." + ::= { memoryDeviceTableEntry 27 } + + +------------------------------------------------------------------------------- +-- Memory Device Mapped Address Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.60.1... +------------------------------------------------------------------------------- + +MemoryDeviceMappedAddressTableEntry ::= SEQUENCE { + memoryDeviceMappedAddresschassisIndex DellObjectRange, + memoryDeviceMappedAddressIndex DellObjectRange, + memoryDeviceMappedAddressStateCapabilities DellStateCapabilities, + memoryDeviceMappedAddressStateSettings DellStateSettings, + memoryDeviceMappedAddressStatus DellStatus, + memoryDeviceIndexReference DellObjectRange, + memoryDeviceMappedAddressRowPosition DellUnsigned32BitRange, + memoryDeviceMappedAddressInterleavePosition DellUnsigned32BitRange, + memoryDeviceMappedAddressInterleaveDepth DellUnsigned32BitRange, + memoryDeviceMappedAddressStartingAddress DellUnsigned64BitRange, + memoryDeviceMappedAddressEndingAddress DellUnsigned64BitRange +} + +memoryDeviceMappedAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDeviceMappedAddressTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0060 This object defines the Memory Device Mapped Address Table." + ::= { deviceGroup 60 } +memoryDeviceMappedAddressTableEntry OBJECT-TYPE + SYNTAX MemoryDeviceMappedAddressTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0060.0001 This object defines the Memory Device Mapped Address +Table Entry." + INDEX { memoryDeviceMappedAddresschassisIndex, + memoryDeviceMappedAddressIndex } + ::= { memoryDeviceMappedAddressTable 1 } + +memoryDeviceMappedAddresschassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { memoryDeviceMappedAddressTableEntry 1 } +memoryDeviceMappedAddressIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0002 This attribute defines the index (one based) of the +memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 2 } +memoryDeviceMappedAddressStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0003 This attribute defines the state capabilities of the +memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 3 } +memoryDeviceMappedAddressStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0004 This attribute defines the state settings of the +memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 4 } +memoryDeviceMappedAddressStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0005 This attribute defines the status of the +memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 5 } +memoryDeviceIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0006 This attribute defines the index (one based) of the +memory device associated with the memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 6 } +memoryDeviceMappedAddressRowPosition OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0007 This attribute defines the position of the referenced +memory in a row of the memory device mapped address. +2,147,483,647 indicates an unknown position." + ::= { memoryDeviceMappedAddressTableEntry 7 } +memoryDeviceMappedAddressInterleavePosition OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0008 This attribute defines the position of the referenced +memory in an interleave of the memory device mapped address. +2,147,483,647 indicates an unknown position." + ::= { memoryDeviceMappedAddressTableEntry 8 } +memoryDeviceMappedAddressInterleaveDepth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0009 This attribute defines the maximum number of +consecutive rows from the referenced memory device that are accessed +in a single interleaved transfer in the memory device mapped address. +2,147,483,647 indicates an unknown number of rows." + ::= { memoryDeviceMappedAddressTableEntry 9 } +memoryDeviceMappedAddressStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0010 This attribute defines the physical starting address +in KBytes of the memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 10 } +memoryDeviceMappedAddressEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0011 This attribute defines the physical ending address +in KBytes of the memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Generic Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.70.1... +------------------------------------------------------------------------------- + +DellGenericDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsAVideoDevice(3), -- type is Video Device + deviceTypeIsASCSIController(4), -- type is SCSI Controller + deviceTypeIsAnEthernetDevice(5), -- type is Ethernet + deviceTypeIsTokenRingDevice(6), -- type is Token Ring + deviceTypeIsASoundDevice(7) -- type is Sound Device +} + +GenericDeviceTableEntry ::= SEQUENCE { + genericDevicechassisIndex DellObjectRange, + genericDeviceIndex DellObjectRange, + genericDeviceStateCapabilities DellStateCapabilities, + genericDeviceStateSettings DellStateSettings, + genericDeviceStatus DellStatus, + genericDeviceSystemSlotIndexReference DellObjectRange, + genericDeviceType DellGenericDeviceType, + genericDeviceName DellString +} + +genericDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF GenericDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0070 This object defines the Generic Device Table." + ::= { deviceGroup 70 } +genericDeviceTableEntry OBJECT-TYPE + SYNTAX GenericDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0070.0001 This object defines the Generic Device Table Entry." + INDEX { genericDevicechassisIndex, + genericDeviceIndex } + ::= { genericDeviceTable 1 } + +genericDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { genericDeviceTableEntry 1 } +genericDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0002 This attribute defines the index (one based) of the +generic device." + ::= { genericDeviceTableEntry 2 } +genericDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0003 This attribute defines the state capabilities of the +generic device." + ::= { genericDeviceTableEntry 3 } +genericDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0004 This attribute defines the state settings of the +generic device." + ::= { genericDeviceTableEntry 4 } +genericDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0005 This attribute defines the status of the +generic device." + ::= { genericDeviceTableEntry 5 } +genericDeviceSystemSlotIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0006 This attribute defines the index (one based) of the +system slot that the generic device is in." + ::= { genericDeviceTableEntry 6 } +genericDeviceType OBJECT-TYPE + SYNTAX DellGenericDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0007 This attribute defines the type of the generic device." + ::= { genericDeviceTableEntry 7 } +genericDeviceName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0008 This attribute defines the name of the generic device." + ::= { genericDeviceTableEntry 8 } + + +------------------------------------------------------------------------------- +-- PCI Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.80.1... +------------------------------------------------------------------------------- + +PCIDeviceTableEntry ::= SEQUENCE { + pCIDevicechassisIndex DellObjectRange, + pCIDeviceIndex DellObjectRange, + pCIDeviceStateCapabilities DellStateCapabilities, + pCIDeviceStateSettings DellStateSettings, + pCIDeviceStatus DellStatus, + pCIDeviceSystemSlotIndexReference DellObjectRange, + pCIDeviceDataBusWidth DellUnsigned32BitRange, + pCIDeviceManufacturerName DellString, + pCIDeviceDescriptionName DellString, + pCIDeviceSpeed DellUnsigned32BitRange, + pCIDeviceAdapterFault DellBoolean +} + +pCIDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PCIDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0080 This object defines the PCI Device Table." + ::= { deviceGroup 80 } +pCIDeviceTableEntry OBJECT-TYPE + SYNTAX PCIDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0080.0001 This object defines the PCI Device Table Entry." + INDEX { pCIDevicechassisIndex, + pCIDeviceIndex } + ::= { pCIDeviceTable 1 } + +pCIDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { pCIDeviceTableEntry 1 } +pCIDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0002 This attribute defines the index (one based) of the +PCI device." + ::= { pCIDeviceTableEntry 2 } +pCIDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0003 This attribute defines the state capabilities of the +PCI device." + ::= { pCIDeviceTableEntry 3 } +pCIDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0004 This attribute defines the state settings of the +PCI device." + ::= { pCIDeviceTableEntry 4 } +pCIDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0005 This attribute defines the status of the PCI device." + ::= { pCIDeviceTableEntry 5 } +pCIDeviceSystemSlotIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0006 This attribute defines the index (one based) of the +system slot that the PCI Device is in." + ::= { pCIDeviceTableEntry 6 } +pCIDeviceDataBusWidth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0007 This attribute defines the width of the data bus +of the PCI device." + ::= { pCIDeviceTableEntry 7 } +pCIDeviceManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0008 This attribute defines the name of the manufacturer +of the PCI device." + ::= { pCIDeviceTableEntry 8 } +pCIDeviceDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0009 This attribute defines the description of the PCI device." + ::= { pCIDeviceTableEntry 9 } +pCIDeviceSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0010 This attribute defines the bus speed in MHz of the +PCI device. Zero indicates the speed is unknown." + ::= { pCIDeviceTableEntry 10 } +pCIDeviceAdapterFault OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0011 This attribute defines if the PCI device has detected +a fault or not." + ::= { pCIDeviceTableEntry 11 } + + +------------------------------------------------------------------------------- +-- PCI Device Configuration Space Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.82.1... +------------------------------------------------------------------------------- + +PCIDeviceConfigurationSpaceTableEntry ::= SEQUENCE { + pCIDeviceConfigurationSpacechassisIndex DellObjectRange, + pCIDeviceConfigurationSpaceIndex DellObjectRange, + pCIDeviceConfigurationSpaceStateCapabilities DellStateCapabilities, + pCIDeviceConfigurationSpaceStateSettings DellStateSettings, + pCIDeviceConfigurationSpaceStatus DellStatus, + pCIDeviceIndexReference DellObjectRange, + pCIDeviceConfigurationSpaceBusNumber DellUnsigned32BitRange, + pCIDeviceConfigurationSpaceDeviceNumber DellUnsigned32BitRange, + pCIDeviceConfigurationSpaceFunctionNumber DellUnsigned32BitRange, + pCIDeviceConfigurationSpaceHeader OCTET STRING(SIZE(0..1025)) +} + +pCIDeviceConfigurationSpaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PCIDeviceConfigurationSpaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0082 This object defines the PCI Device Configuration Space Table." + ::= { deviceGroup 82 } +pCIDeviceConfigurationSpaceTableEntry OBJECT-TYPE + SYNTAX PCIDeviceConfigurationSpaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0082.0001 This object defines the PCI Device Configuration Space Table +Entry." + INDEX { pCIDeviceConfigurationSpacechassisIndex, + pCIDeviceConfigurationSpaceIndex } + ::= { pCIDeviceConfigurationSpaceTable 1 } + +pCIDeviceConfigurationSpacechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { pCIDeviceConfigurationSpaceTableEntry 1 } +pCIDeviceConfigurationSpaceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0002 This attribute defines the index (one based) of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 2 } +pCIDeviceConfigurationSpaceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0003 This attribute defines the state capabilities of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 3 } +pCIDeviceConfigurationSpaceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0004 This attribute defines the state settings of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 4 } +pCIDeviceConfigurationSpaceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0005 This attribute defines the status of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 5 } +pCIDeviceIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0006 This attribute defines the index (one based) of the +PCI device that this PCI device configuration space applies to." + ::= { pCIDeviceConfigurationSpaceTableEntry 6 } +pCIDeviceConfigurationSpaceBusNumber OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0007 This attribute defines the bus number of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 7 } +pCIDeviceConfigurationSpaceDeviceNumber OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0008 This attribute defines the device number of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 8 } +pCIDeviceConfigurationSpaceFunctionNumber OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0009 This attribute defines the function number of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 9 } +pCIDeviceConfigurationSpaceHeader OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..1025)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0010 This attribute defines the header of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 10 } + + +------------------------------------------------------------------------------- +-- Network Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.90.1... +------------------------------------------------------------------------------- + +DellNetworkDeviceConnectionStatus ::= INTEGER { + -- unknown(0), - unable to determine connection status + connected(1), -- media reports connected + disconnected(2), -- media reports disconnected + driverBad(3), -- driver cannot be opened to determine status + driverDisabled(4), -- driver is disabled + hardwareInitalizing(10), -- hardware is initializing + hardwareResetting(11), -- hardware is resetting + hardwareClosing(12), -- hardware is closing down + hardwareNotReady(13) -- hardware is not ready +} +DellNetworkDeviceTeamingFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- undefined(0), - teaming flags are undefined + noTeam(1), -- device is not part of any team + teamingEnabled(2), -- teaming is enabled + adapterFaultToleranceMode(4), -- adapter fault tolerance teaming mode + loadBalancingMode(8) -- load balancing teaming mode +} +DellNetworkDeviceTOECapabilityFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for TOE capability is not supported + unknown(1), -- querying for TOE capability is supported but query returned an error + available(2), -- device has TOE capability + notAvailable(4), -- device does not have TOE capability + cannotBeDetermined(8), -- querying for TOE capability is supported but an error prevented querying + driverNotResponding(16) -- querying for TOE capability is supported but driver did not respond to query +} +DellNetworkDeviceRDMACapabilityFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for RDMA capability is not supported + unknown(1), -- querying for RDMA capability is supported but query returned an error + available(2), -- device has RDMA capability + notAvailable(4), -- device does not have RDMA capability + cannotBeDetermined(8), -- querying for RDMA capability is supported but an error prevented querying + driverNotResponding(16) -- querying for RDMA capability is supported but driver did not respond to query +} +DellNetworkDeviceiSCSICapabilityFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for iSCSI capability is not supported + unknown(1), -- querying for iSCSI capability is supported but query returned an error + available(2), -- device has iSCSI capability + notAvailable(4), -- device does not have iSCSI capability + cannotBeDetermined(8), -- querying for iSCSI capability is supported but an error prevented querying + driverNotResponding(16) -- querying for iSCSI capability is supported but driver did not respond to query +} +DellNetworkDeviceCapabilities ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- notSupported(0), - device does not support reporting capabilities via this attribute + supported(1), -- device supports reporting capabilities via this attribute + toe(2), -- device has TOE capability + iscsiOffload(4), -- device has iSCSI Offload capability + fcoeOffload(8) -- device has FCoE Offload capability +} +DellNetworkDeviceNParEPEnabled ::= INTEGER { + disabled(1), -- NParEP mode is not enabled on device + enabled(2), -- NparEP mode is enabled on device + unknown (3) -- don't know NParEP mode on device +} + +NetworkDeviceTableEntry ::= SEQUENCE { + networkDeviceChassisIndex DellObjectRange, + networkDeviceIndex DellObjectRange, + networkDeviceStatus DellStatus, + networkDeviceConnectionStatus DellNetworkDeviceConnectionStatus, + networkDeviceDescriptionName DellString, + networkDeviceProductName DellString, + networkDeviceVendorName DellString, + networkDeviceServiceName DellString, + networkDeviceDriverImagePathName DellString, + networkDeviceDriverVersionName DellString, + networkDeviceIPAddress IpAddress, + networkDeviceIPSubnetMask IpAddress, + networkDeviceDefaultGatewayIPAddress IpAddress, + networkDeviceDHCPServerIPAddress IpAddress, + networkDeviceCurrentMACAddress DellMACAddress, + networkDevicePermanentMACAddress DellMACAddress, + networkDevicePCIBusNumber DellUnsigned8BitRange, + networkDevicePCIDeviceNumber DellUnsigned8BitRange, + networkDevicePCIFunctionNumber DellUnsigned8BitRange, + networkDeviceIRQ DellUnsigned32BitRange, + networkDeviceBaseIOPortAddress DellUnsigned32BitRange, + networkDeviceTeamingFlags DellNetworkDeviceTeamingFlags, + networkDeviceTOECapabilityFlags DellNetworkDeviceTOECapabilityFlags, + networkDeviceTOEEnabled DellBoolean, + networkDeviceRDMACapabilityFlags DellNetworkDeviceRDMACapabilityFlags, + networkDeviceRDMAEnabled DellBoolean, + networkDeviceiSCSICapabilityFlags DellNetworkDeviceiSCSICapabilityFlags, + networkDeviceiSCSIEnabled DellBoolean, + networkDeviceCapabilities DellNetworkDeviceCapabilities, + networkDeviceNParEPEnabled DellNetworkDeviceNParEPEnabled +} + +networkDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetworkDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0090 This object defines the Network Device Table." + ::= { deviceGroup 90 } +networkDeviceTableEntry OBJECT-TYPE + SYNTAX NetworkDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0090.0001 This object defines the Network Device Table Entry." + INDEX { networkDeviceChassisIndex, + networkDeviceIndex } + ::= { networkDeviceTable 1 } + +networkDeviceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0001 This attribute defines the index (one based) of the +chassis that contains the network device." + ::= { networkDeviceTableEntry 1 } +networkDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0002 This attribute defines the index (one based) of the +network device." + ::= { networkDeviceTableEntry 2 } +networkDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0003 This attribute defines the status of the network device." + ::= { networkDeviceTableEntry 3 } +networkDeviceConnectionStatus OBJECT-TYPE + SYNTAX DellNetworkDeviceConnectionStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0004 This attribute defines the connection status of the +network device." + ::= { networkDeviceTableEntry 4 } +networkDeviceDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0005 This attribute defines the description of the +network device." + ::= { networkDeviceTableEntry 5 } +networkDeviceProductName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0006 This attribute defines the product name of the +network device." + ::= { networkDeviceTableEntry 6 } +networkDeviceVendorName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0007 This attribute defines the name of the vendor of the +network device." + ::= { networkDeviceTableEntry 7 } +networkDeviceServiceName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0008 This attribute defines the service name of the +network device." + ::= { networkDeviceTableEntry 8 } +networkDeviceDriverImagePathName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0009 This attribute defines the path to the binary image +of the driver for the network device." + ::= { networkDeviceTableEntry 9 } +networkDeviceDriverVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0010 This attribute defines the version of the driver +for the network device." + ::= { networkDeviceTableEntry 10 } +networkDeviceIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0011 This attribute defines the IP address of the +network device." + ::= { networkDeviceTableEntry 11 } +networkDeviceIPSubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0012 This attribute defines the IP subnet mask for the +IP address currently assigned to the network device." + ::= { networkDeviceTableEntry 12 } +networkDeviceDefaultGatewayIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0013 This attribute defines the IP address of the +default gateway for the network device." + ::= { networkDeviceTableEntry 13 } +networkDeviceDHCPServerIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0014 This attribute defines the IP address of the +DHCP server that was used to obtain the IP address of the network device +if DHCP is used to configure the network device." + ::= { networkDeviceTableEntry 14 } +networkDeviceCurrentMACAddress OBJECT-TYPE + SYNTAX DellMACAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0015 This attribute defines the current MAC address of the +network device." + ::= { networkDeviceTableEntry 15 } +networkDevicePermanentMACAddress OBJECT-TYPE + SYNTAX DellMACAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0016 This attribute defines the permanent MAC address of the +network device." + ::= { networkDeviceTableEntry 16 } +networkDevicePCIBusNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0017 This attribute defines the PCI bus number of the +network device." + ::= { networkDeviceTableEntry 17 } +networkDevicePCIDeviceNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0018 This attribute defines the PCI device number of the +network device." + ::= { networkDeviceTableEntry 18 } +networkDevicePCIFunctionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0019 This attribute defines the PCI function number of the +network device." + ::= { networkDeviceTableEntry 19 } +networkDeviceIRQ OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0020 This attribute defines the interrupt request number +of the network device." + ::= { networkDeviceTableEntry 20 } +networkDeviceBaseIOPortAddress OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0021 This attribute defines the base input/outport port +address of the network device." + ::= { networkDeviceTableEntry 21 } +networkDeviceTeamingFlags OBJECT-TYPE + SYNTAX DellNetworkDeviceTeamingFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0022 This attribute defines the teaming features of the +network device." + ::= { networkDeviceTableEntry 22 } +networkDeviceTOECapabilityFlags OBJECT-TYPE + SYNTAX DellNetworkDeviceTOECapabilityFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0023 This attribute defines the TCP/IP Offload Engine (TOE) +capability flags of the network device." + ::= { networkDeviceTableEntry 23 } +networkDeviceTOEEnabled OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0024 This attribute defines if TOE is enabled for the +network device." + ::= { networkDeviceTableEntry 24 } +networkDeviceRDMACapabilityFlags OBJECT-TYPE + SYNTAX DellNetworkDeviceRDMACapabilityFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0025 This attribute defines the Remote Direct Memory Access +(RDMA) capability flags of the network device." + ::= { networkDeviceTableEntry 25 } +networkDeviceRDMAEnabled OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0026 This attribute defines if RDMA is enabled for the +network device." + ::= { networkDeviceTableEntry 26 } +networkDeviceiSCSICapabilityFlags OBJECT-TYPE + SYNTAX DellNetworkDeviceiSCSICapabilityFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0027 This attribute defines the Internet Small Computer +System Interface (iSCSI) capability flags of the network device." + ::= { networkDeviceTableEntry 27 } +networkDeviceiSCSIEnabled OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0028 This attribute defines if iSCSI is enabled for the +network device." + ::= { networkDeviceTableEntry 28 } +networkDeviceCapabilities OBJECT-TYPE + SYNTAX DellNetworkDeviceCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0029 This attribute defines the capabilities of the network device. +If this value is notSupported(0), the networkDeviceTOECapabilityFlags, +networkDeviceTOEEnabled, networkDeviceRDMACapabilityFlags, networkDeviceRDMAEnabled, +networkDeviceiSCSICapabilityFlags and networkDeviceiSCSIEnabled attributes should +be used to determine the network device capabilities. If the supported(1) bit +is on, this attribute should be used to determine the network device capabilities, +and the attributes mentioned above should not be used. NOTE: For a network device +on Converged Network Adapter (CNA), this attribute provides capability information +for the CNA and not for the network device. For more information read vendor +documentation." + ::= { networkDeviceTableEntry 29 } +networkDeviceNParEPEnabled OBJECT-TYPE + SYNTAX DellNetworkDeviceNParEPEnabled + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0030 This attribute defines if NParEP mode is enabled for the +network device." + ::= { networkDeviceTableEntry 30 } + +------------------------------------------------------------------------------- +-- Managed System Services Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.100.1... +------------------------------------------------------------------------------- + +DellManagedSystemServicesDeviceType ::= INTEGER { + -- baseDevice(0), - type is base device + optionalDevice(1) -- type is optional device +} + +ManagedSystemServicesDeviceTableEntry ::= SEQUENCE { + managedSystemServicesDeviceChassisIndex DellObjectRange, + managedSystemServicesDeviceIndex DellObjectRange, + managedSystemServicesDeviceStatus DellStatus, + managedSystemServicesDeviceType DellManagedSystemServicesDeviceType, + managedSystemServicesDeviceStoragePresent DellBoolean, + managedSystemServicesDeviceStorageSize DellUnsigned32BitRange +} + +managedSystemServicesDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF ManagedSystemServicesDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0100 This object defines the Managed System Services Device Table." + ::= { deviceGroup 100 } +managedSystemServicesDeviceTableEntry OBJECT-TYPE + SYNTAX ManagedSystemServicesDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0100.0001 This object defines the Managed System Services Device Table +Entry." + INDEX { managedSystemServicesDeviceChassisIndex, + managedSystemServicesDeviceIndex } + ::= { managedSystemServicesDeviceTable 1 } + +managedSystemServicesDeviceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0001 This attribute defines the index (one-based) of the +chassis that contains the managed system services device." + ::= { managedSystemServicesDeviceTableEntry 1 } +managedSystemServicesDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0002 This attribute defines the index (one-based) of the +managed system services device." + ::= { managedSystemServicesDeviceTableEntry 2 } +managedSystemServicesDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0003 This attribute defines the status of the +managed system services device." + ::= { managedSystemServicesDeviceTableEntry 3 } +managedSystemServicesDeviceType OBJECT-TYPE + SYNTAX DellManagedSystemServicesDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0004 This attribute defines the type of the +managed system services device." + ::= { managedSystemServicesDeviceTableEntry 4 } +managedSystemServicesDeviceStoragePresent OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0005 This attribute defines whether storage is present +on the managed system services device." + ::= { managedSystemServicesDeviceTableEntry 5 } +managedSystemServicesDeviceStorageSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0006 This attribute defines the size in MB (megabytes) +of the storage present on the managed system services device." + ::= { managedSystemServicesDeviceTableEntry 6 } + + +------------------------------------------------------------------------------- +-- SD Card Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.110.1... +------------------------------------------------------------------------------- + +SdCardUnitTableEntry ::= SEQUENCE { + sdCardUnitChassisIndex DellObjectRange, + sdCardUnitIndex DellObjectRange, + sdCardUnitStateCapabilities DellStateCapabilities, + sdCardUnitStateSettings DellStateSettings, + sdCardUnitRedundancyStatus DellStatusRedundancy, + sdCardUnitCountForRedundancy DellObjectRange, + sdCardUnitName DellString, + sdCardUnitStatus DellStatus +} + +sdCardUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF SdCardUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0110 This object defines the SD Card Unit Table." + ::= { deviceGroup 110 } +sdCardUnitTableEntry OBJECT-TYPE + SYNTAX SdCardUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0110.0001 This object defines the SD Card Unit Table Entry." + INDEX { sdCardUnitChassisIndex, + sdCardUnitIndex } + ::= { sdCardUnitTable 1 } + +sdCardUnitChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0110.0001.0001 This attribute defines the index (one-based) of the +chassis that contains the SD Card unit." + ::= { sdCardUnitTableEntry 1 } +sdCardUnitIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0110.0001.0002 This attribute defines the index (one-based) of the +SD Card unit." + ::= { sdCardUnitTableEntry 2 } +sdCardUnitStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0110.0001.0003 This attribute defines the state capabilities of the +SD Card unit." + ::= { sdCardUnitTableEntry 3 } +sdCardUnitStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0110.0001.0004 This attribute defines the state settings of the +SD Card unit." + ::= { sdCardUnitTableEntry 4 } +sdCardUnitRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0110.0001.0005 This attribute defines the redundancy status of the +SD Card unit." + ::= { sdCardUnitTableEntry 5 } +sdCardUnitCountForRedundancy OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0110.0001.0006 This attribute defines the total number of SD Card +devices required for this SD Card unit to have full redundancy." + ::= { sdCardUnitTableEntry 6 } +sdCardUnitName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0110.0001.0007 This attribute defines the name of the SD Card unit." + ::= { sdCardUnitTableEntry 7 } +sdCardUnitStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0110.0001.0008 This attribute defines the status of the SD Card unit." + ::= { sdCardUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- SD Card Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.112.1... +------------------------------------------------------------------------------- + +DellSDCardDeviceType ::= INTEGER { + other(1), -- device type is other + unknown(2), -- device type is unknown + hypervisor(3), -- device type is Hypervisor + vFlash(4) -- device type is Virtual Flash (vFlash) +} +DellSDCardDeviceConfigCapabilities ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - no capabilities + sdCapable(1), -- SD media can be enabled + vFlashCapable(2) -- vFlash can be enabled +} +DellSDCardDeviceConfigSettings ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - no settings enabled + sdEnabled(1), -- SD media enabled + vFlashEnabled(2) -- vFlash enabled +} +DellSDCardDeviceCardState ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - state is none of the following: + present(1), -- device is present + ipmiReady(2), -- device is IPMI ready + fullReady(4), -- device is full ready + offline(8), -- device is offline + failed(16), -- device is failed + active(32), -- device is active + bootable(64), -- device is bootable + writeProtect(128), -- device is write-protected + standby(256) -- device is in standby mode +} +DellSDCardDeviceCardLicensed ::= INTEGER { + -- unlicensed(0), - SD card is not licensed by system vendor + licensed(1) -- SD card is licensed by system vendor +} + +SdCardDeviceTableEntry ::= SEQUENCE { + sdCardDeviceChassisIndex DellObjectRange, + sdCardDeviceIndex DellObjectRange, + sdCardDeviceStatus DellStatus, + sdCardDeviceType DellSDCardDeviceType, + sdCardDeviceConfigCapabilities DellSDCardDeviceConfigCapabilities, + sdCardDeviceConfigSettings DellSDCardDeviceConfigSettings, + sdCardDeviceLocationName DellString, + sdCardDeviceCardPresent DellBoolean, + sdCardDeviceCardState DellSDCardDeviceCardState, + sdCardDeviceCardStorageSize DellUnsigned32BitRange, + sdCardDeviceUnitIndexReference DellObjectRange, + sdCardDeviceCardAvailableStorageSize DellSigned32BitRange, + sdCardDeviceCardLicensed DellSDCardDeviceCardLicensed +} + +sdCardDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF SdCardDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0112 This object defines the SD Card Device Table." + ::= { deviceGroup 112 } +sdCardDeviceTableEntry OBJECT-TYPE + SYNTAX SdCardDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0112.0001 This object defines the SD Card Device Table Entry." + INDEX { sdCardDeviceChassisIndex, + sdCardDeviceIndex } + ::= { sdCardDeviceTable 1 } + +sdCardDeviceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0001 This attribute defines the index (one-based) of the +chassis that contains the SD Card device." + ::= { sdCardDeviceTableEntry 1 } +sdCardDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0002 This attribute defines the index (one-based) of the +SD Card device." + ::= { sdCardDeviceTableEntry 2 } +sdCardDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0003 This attribute defines the status of the SD Card device." + ::= { sdCardDeviceTableEntry 3 } +sdCardDeviceType OBJECT-TYPE + SYNTAX DellSDCardDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0004 This attribute defines the type of the SD Card device." + ::= { sdCardDeviceTableEntry 4 } +sdCardDeviceConfigCapabilities OBJECT-TYPE + SYNTAX DellSDCardDeviceConfigCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0005 This attribute defines the configuration capabilities +of the SD Card device." + ::= { sdCardDeviceTableEntry 5 } +sdCardDeviceConfigSettings OBJECT-TYPE + SYNTAX DellSDCardDeviceConfigSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0006 This attribute defines the configuration settings +of the SD Card device." + ::= { sdCardDeviceTableEntry 6 } +sdCardDeviceLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0007 This attribute defines the location of the SD Card device." + ::= { sdCardDeviceTableEntry 7 } +sdCardDeviceCardPresent OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0008 This attribute defines whether the SD card is present +for the SD Card device." + ::= { sdCardDeviceTableEntry 8 } +sdCardDeviceCardState OBJECT-TYPE + SYNTAX DellSDCardDeviceCardState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0009 This attribute defines the state of the SD card." + ::= { sdCardDeviceTableEntry 9 } +sdCardDeviceCardStorageSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0010 This attribute defines the total storage size in MB (megabytes) +of the SD card for the SD Card device." + ::= { sdCardDeviceTableEntry 10 } +sdCardDeviceUnitIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0011 This attribute defines the index to the associated +SD Card unit if the SD Card device is part of a SD Card unit." + ::= { sdCardDeviceTableEntry 11 } +sdCardDeviceCardAvailableStorageSize OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0012 This attribute defines the available storage size in MB (megabytes) +of the SD card for the SD Card device." + ::= { sdCardDeviceTableEntry 12 } +sdCardDeviceCardLicensed OBJECT-TYPE + SYNTAX DellSDCardDeviceCardLicensed + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0112.0001.0013 This attribute defines whether the SD card is licensed +by the system vendor." + ::= { sdCardDeviceTableEntry 13 } + + +------------------------------------------------------------------------------- +-- Slot Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1200 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System Slot Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1200.10.1... +------------------------------------------------------------------------------- + +DellSystemSlotStateCapabilities ::= INTEGER { + systemSlotHotPlugIsUnknown(1), -- state capabilities are unknown + systemSlotHotPlugIsHotPluggableCapable(2), -- slot can support Hot Plug + systemSlotHotPlugCanBePoweredOn(4), -- slot power (and corresponding LED) can be powered on + systemSlotHotPlugCanSignalAttention(8), -- slot attention state (and corresponding LED) can be set + systemSlotHotPlugCanSignalPowerFault(16), -- slot power on fault (and corresponding LED) can be detected due to a short or overcurrent + systemSlotHotPlugCanSignalAdapterPresent(32), -- slot adapter (card) present in slot (may not be powered) can be detected + systemSlotHotPlugCanSignalPowerButtonPressed(64), -- slot power button can be pressed to signal a toggle of the power state + canSupportAllHotPlugCapabilities(126), -- slot can support all Hot Plug capabilities + systemSlotCanProvide5Volts(128), -- slot can provide 5 volt supply + systemSlotCanProvide3Point3Volts(256), -- slot can provide 3.3 volt supply + systemSlotCanSignalIfShared(512), -- slot opening if shared with another slot can be detected + systemSlotCanSupportCard16(1024), -- slot can support PC Card-16 + systemSlotCanSupportCardBus(2048), -- slot can support CardBus + systemSlotCanSupportZoomVideo(4096), -- slot can support Zoom Video + systemSlotCanSupportModemRingResume(8192), -- slot can support Modem Ring Resume + systemSlotCanSupportPMESignal(16384), -- slot can support Power Management Enable (PME#) signal + canSupportAllSlotCapabilities(32640), -- slot can support all Slot capabilities + canSupportAllSlotAndAllHotPlugCapabilities(32766) -- slot can support all Slot and all Hot Plug capabilities +} +DellSystemSlotStateSettings ::= INTEGER { + systemSlotHotPlugIsUnknown(1), -- state settings are unknown + systemSlotHotPlugIsHotPluggable(2), -- slot supports Hot Plug + systemSlotHotPlugIsPoweredOn(4), -- slot has power (and corresponding LED) ON + systemSlotHotPlugIsAtAttention(8), -- slot is at attention state (and corresponding LED) is ON + systemSlotHotPlugHasPowerFaulted(16), -- slot has power on fault (and corresponding LED) was detected due to a short or overcurrent + systemSlotHotPlugAdapterIsPresent(32), -- slot adapter (card) present in slot (may not be powered on) + systemSlotHotPlugAdapterPresentAndPoweredOn(36), -- slot adapter (card) present in slot and powered on + systemSlotHotPlugPowerButtonPressed(64), -- slot power button pressed to signal toggle of power state + systemSlotProvides5Volts(128), -- slot provides 5 volt supply + systemSlotProvides3Point3Volts(256), -- slot provides 3.3 volt supply + systemSlotIsShared(512), -- slot opening is shared with another slot (e.g. PCI/EISA shared slot) + systemSlotSupportsCard16(1024), -- slot supports PC Card-16 + systemSlotSupportsCardBus(2048), -- slot supports CardBus + systemSlotSupportsZoomVideo(4096), -- slot supports Zoom Video + systemSlotSupportsModemRingResume(8192), -- slot supports Modem Ring Resume + systemSlotSupportsPMESignal(16384), -- slot supports Power Management Enable (PME#) signal + supportsPMEand3P3Vand5VandHotPluggable(16770), + supportsPMEand3P3Vand5VhasAdapterOn(16804), + supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable(16806), + supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable(17316) +} +DellSystemSlotType ::= INTEGER { + systemSlotIsOther(1), -- type is Other + systemSlotIsUnknown(2), -- type is Unknown + systemSlotIsISA(3), -- type is ISA + systemSlotIsMCA(4), -- type is MCA + systemSlotIsEISA(5), -- type is EISA + systemSlotIsPCI(6), -- type is PCI + systemSlotIsPCMCIA(7), -- type is PCMCIA + systemSlotIsVLVESA(8), -- type is VL-VESA + systemSlotIsProprietary(9), -- type is Proprietary + systemSlotIsProcessorCard(10), -- type is Processor Card Slot + systemSlotIsProprietaryMemory(11), -- type is Proprietary Memory Card Slot + systemSlotIsIORiserCard(12), -- type is I/O Riser Card Slot + systemSlotIsNuBUS(13), -- type is NuBus + systemSlotIsPCI66MHz(14), -- type is PCI - 66MHz Capable + systemSlotIsAGP(15), -- type is AGP + systemSlotIsAGP2X(16), -- type is AGP 2X + systemSlotIsAGP4X(17), -- type is AGP 4X + systemSlotIsPC98C20(18), -- type is PC-98/C20 + systemSlotIsPC98C24(19), -- type is PC-98/C24 + systemSlotIsPC98E(20), -- type is PC-98/E + systemSlotIsPC98LocalBus(21), -- type is PC-98/Local Bus + systemSlotIsPC98Card(22), -- type is PC-98/Card + systemSlotIsPCIX(23), -- type is PCI-X + systemSlotIsPCIExpress(24), -- type is PCI Express + systemSlotIsAGP8X(25), -- type is AGP 8X + systemSlotIsPCIExpressX1(166), -- type is PCI Express x1 + systemSlotIsPCIExpressX2(167), -- type is PCI Express x2 + systemSlotIsPCIExpressX4(168), -- type is PCI Express x4 + systemSlotIsPCIExpressX8(169), -- type is PCI Express x8 + systemSlotIsPCIExpressX16(170), -- type is PCI Express x16 + systemSlotIsPCIExpressGen2(171), -- type is PCI Express Gen 2 + systemSlotIsPCIExpressGen2X1(172), -- type is PCI Express Gen 2 x1 + systemSlotIsPCIExpressGen2X2(173), -- type is PCI Express Gen 2 x2 + systemSlotIsPCIExpressGen2X4(174), -- type is PCI Express Gen 2 x4 + systemSlotIsPCIExpressGen2X8(175), -- type is PCI Express Gen 2 x8 + systemSlotIsPCIExpressGen2X16(176) -- type is PCI Express Gen 2 x16 +} +DellSystemSlotUsage ::= INTEGER { + systemSlotUsageIsOther(1), -- usage is other than following values + systemSlotUsageIsUnknown(2), -- usage is unknown + systemSlotUsageIsAvailable(3), -- usage is available + systemSlotUsageIsInUse(4) -- usage is in use +} +DellSystemSlotLength ::= INTEGER { + systemSlotLengthIsOther(1), -- length is other than following values + systemSlotLengthIsUnknown(2), -- length is unknown + systemSlotLengthIsShort(3), -- length is Short + systemSlotLengthIsLong(4) -- length is Long +} +DellSystemSlotCategory ::= INTEGER { + systemSlotCategoryIsOther(1), -- category is other than following values + systemSlotCategoryIsUnknown(2), -- category is unknown + systemSlotCategoryIsBusConnector(3), -- category is Bus Connector + systemSlotCategoryIsPCMCIA(4), -- category is PCMCIA + systemSlotCategoryIsMotherboard(5) -- category is Motherboard +} +DellSystemSlotHotPlugBusWidth ::= INTEGER { +-- Bus Width meanings of type "n bits" are for parallel bus such as PCI. +-- Bus Width meanings of type "nx or xn" are for serial bus such as PCI Express. + busWidthIsOther(1), -- bus width is other than following values + busWidthIsUnknown(2), -- bus width is unknown + busWidthIs8bits(3), -- bus width is 8 bits + busWidthIs16bits(4), -- bus width is 16 bits + busWidthIs32bits(5), -- bus width is 32 bits + busWidthIs64bits(6), -- bus width is 64 bits + busWidthIs128bits(7), -- bus width is 128 bits + busWidthIs1xOrx1(8), -- bus width is 1x or x1 + busWidthIs2xOrx2(9), -- bus width is 2x or x2 + busWidthIs4xOrx4(10), -- bus width is 4x or x4 + busWidthIs8xOrx8(11), -- bus width is 8x or x8 + busWidthIs12xOrx12(12), -- bus width is 12x or x12 + busWidthIs16xOrx16(13), -- bus width is 16x or x16 + busWidthIs32xOrx32(14) -- bus width is 32x or x32 +} + +SystemSlotTableEntry ::= SEQUENCE { + systemSlotchassisIndex DellObjectRange, + systemSlotIndex DellObjectRange, + systemSlotStateCapabilitiesUnique DellSystemSlotStateCapabilities, + systemSlotStateSettingsUnique DellSystemSlotStateSettings, + systemSlotStatus DellStatus, + systemSlotCurrentUsage DellSystemSlotUsage, + systemSlotType DellSystemSlotType, + systemSlotSlotExternalSlotName DellString, + systemSlotLength DellSystemSlotLength, + systemSlotSlotID DellUnsigned32BitRange, + systemSlotCategory DellSystemSlotCategory, + systemSlotHotPlugBusWidth DellSystemSlotHotPlugBusWidth, + systemSlotHotPlugSlotSpeed DellUnsigned32BitRange, + systemSlotHotPlugAdapterSpeed DellUnsigned32BitRange +} + +systemSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemSlotTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1200.0010 This object defines the System Slot Table." + ::= { slotGroup 10 } +systemSlotTableEntry OBJECT-TYPE + SYNTAX SystemSlotTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1200.0010.0001 This object defines the System Slot Table Entry." + INDEX { systemSlotchassisIndex, + systemSlotIndex } + ::= { systemSlotTable 1 } + +systemSlotchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemSlotTableEntry 1 } +systemSlotIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0002 This attribute defines the index (one based) of the +system slot." + ::= { systemSlotTableEntry 2 } +systemSlotStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellSystemSlotStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0003 This attribute defines the state capabilities of the +system slot." + ::= { systemSlotTableEntry 3 } +systemSlotStateSettingsUnique OBJECT-TYPE + SYNTAX DellSystemSlotStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0004 This attribute defines the state settings of the +system slot." + ::= { systemSlotTableEntry 4 } +systemSlotStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0005 This attribute defines the status of the system slot." + ::= { systemSlotTableEntry 5 } +systemSlotCurrentUsage OBJECT-TYPE + SYNTAX DellSystemSlotUsage + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0006 This attribute defines the current usage of the +system slot." + ::= { systemSlotTableEntry 6 } +systemSlotType OBJECT-TYPE + SYNTAX DellSystemSlotType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0007 This attribute defines the type of the system slot." + ::= { systemSlotTableEntry 7 } +systemSlotSlotExternalSlotName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0008 This attribute defines the name of the external +connector name of the system slot." + ::= { systemSlotTableEntry 8 } +systemSlotLength OBJECT-TYPE + SYNTAX DellSystemSlotLength + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0009 This attribute defines the length of the system slot." + ::= { systemSlotTableEntry 9 } +systemSlotSlotID OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0010 This attribute defines the slot identification number +of the system slot." + ::= { systemSlotTableEntry 10 } +systemSlotCategory OBJECT-TYPE + SYNTAX DellSystemSlotCategory + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0011 This attribute defines the category of the system slot." + ::= { systemSlotTableEntry 11 } +systemSlotHotPlugBusWidth OBJECT-TYPE + SYNTAX DellSystemSlotHotPlugBusWidth + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0012 This attribute defines the bus width of the hot plug +system slot." + ::= { systemSlotTableEntry 12 } +systemSlotHotPlugSlotSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0013 This attribute defines the slot speed in MHz of the +hot plug system slot. Zero indicates the slot speed is unknown." + ::= { systemSlotTableEntry 13 } +systemSlotHotPlugAdapterSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0014 This attribute defines the adapter speed in MHz of the +hot plug system slot. Zero indicates the adapter speed is unknown." + ::= { systemSlotTableEntry 14 } + + +------------------------------------------------------------------------------- +-- Memory Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Physical Memory Array Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.10.1... +------------------------------------------------------------------------------- + +DellPhysicalMemoryArrayLocation ::= INTEGER { + memoryArrayLocationIsOther(1), -- location is other than following values + memoryArrayLocationIsUnknown(2), -- location is unknown + memoryArrayLocationIsSystemOrMotherboard(3),-- location is System Board or Motherboard + memoryArrayLocationIsISA(4), -- location is ISA add-on card + memoryArrayLocationIsEISA(5), -- location is EISA add-on card + memoryArrayLocationIsPCI(6), -- location is PCI add-on card + memoryArrayLocationIsMCA(7), -- location is MCA add-on card + memoryArrayLocationIsPCMCIA(8), -- location is PCMCIA add-on card + memoryArrayLocationIsProprietary(9), -- location is Proprietary add-on card + memoryArrayLocationIsNUBUS(10), -- location is NUBUS bus + memoryArrayLocationIsPC98C20(11), -- location is PC-98/C20 add-on card + memoryArrayLocationIsPC98C24(12), -- location is PC-98/C24 add-on card + memoryArrayLocationIsPC98E(13), -- location is PC-98/E add-on card + memoryArrayLocationIsPC98LocalBus(14), -- location is PC-98/Local Bus add-on card + memoryArrayLocationIsPC98Card(15) -- location is PC-98/Card slot add-on card +} +DellPhysicalMemoryArrayUse ::= INTEGER { + memoryArrayUseIsOther(1), -- use is other than following values + memoryArrayUseIsUnknown(2), -- use is unknown + memoryArrayUseIsSystemMemory(3), -- use is System Memory + memoryArrayUseIsVideoMemory(4), -- use is Video Memory + memoryArrayUseIsFLASHMemory(5), -- use is Flash Memory + memoryArrayUseIsNonVolatileRAMMemory(6), -- use is Nonvolatile RAM + memoryArrayUseIsCacheMemory(7) -- use is Cache Memory +} +DellPhysicalMemoryArrayECCType ::= INTEGER { + memoryArrayECCTypeIsOther(1), -- ECC type is other than following values + memoryArrayECCTypeIsUnknown(2), -- ECC type is unknown + memoryArrayECCTypeIsNone(3), -- ECC type is none + memoryArrayECCTypeIsParity(4), -- ECC type is Parity + memoryArrayECCTypeIsSingleBitECC(5), -- ECC type is Single bit ECC + memoryArrayECCTypeIsMultiBitECC(6), -- ECC type is Multibit ECC + memoryArrayECCTypeIsCRC(7) -- ECC type is CRC +} + +PhysicalMemoryArrayTableEntry ::= SEQUENCE { + physicalMemoryArraychassisIndex DellObjectRange, + physicalMemoryArrayIndex DellObjectRange, + physicalMemoryArrayStateCapabilities DellStateCapabilities, + physicalMemoryArrayStateSettings DellStateSettings, + physicalMemoryArrayStatus DellStatus, + physicalMemoryArrayUse DellPhysicalMemoryArrayUse, + physicalMemoryArrayECCType DellPhysicalMemoryArrayECCType, + physicalMemoryArrayLocation DellPhysicalMemoryArrayLocation, + physicalMemoryArrayMaximumSize DellUnsigned32BitRange, + physicalMemoryArrayTotalNumberSockets DellUnsigned32BitRange, + physicalMemoryArrayInUseNumberSockets DellUnsigned32BitRange, + physicalMemoryArrayECCErrorNonRecoverableThreshold DellSigned32BitRange, + physicalMemoryArrayECCErrorCriticalThreshold DellSigned32BitRange, + physicalMemoryArrayECCErrorNonCriticalThreshold DellSigned32BitRange, + physicalMemoryArrayRedundantMemoryUnitIndexReference DellObjectRange, + physicalMemoryArrayExtendedMaximumSize DellUnsigned64BitRange +} + +physicalMemoryArrayTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryArrayTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0010 This object defines the Physical Memory Array Table." + ::= { memoryGroup 10 } +physicalMemoryArrayTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryArrayTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0010.0001 This object defines the Physical Memory Array Table Entry." + INDEX { physicalMemoryArraychassisIndex, + physicalMemoryArrayIndex } + ::= { physicalMemoryArrayTable 1 } + +physicalMemoryArraychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryArrayTableEntry 1 } +physicalMemoryArrayIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0002 This attribute defines the index (one based) of the +physical memory array." + ::= { physicalMemoryArrayTableEntry 2 } +physicalMemoryArrayStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0003 This attribute defines the state capabilities of the +physical memory array." + ::= { physicalMemoryArrayTableEntry 3 } +physicalMemoryArrayStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0004 This attribute defines the state settings of the +physical memory array." + ::= { physicalMemoryArrayTableEntry 4 } +physicalMemoryArrayStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0005 This attribute defines the status of the physical +memory array." + ::= { physicalMemoryArrayTableEntry 5 } +physicalMemoryArrayUse OBJECT-TYPE + SYNTAX DellPhysicalMemoryArrayUse + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0006 This attribute defines the use of the physical +memory array." + ::= { physicalMemoryArrayTableEntry 6 } +physicalMemoryArrayECCType OBJECT-TYPE + SYNTAX DellPhysicalMemoryArrayECCType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0007 This attribute defines the error correction type used +by the physical memory array." + ::= { physicalMemoryArrayTableEntry 7 } +physicalMemoryArrayLocation OBJECT-TYPE + SYNTAX DellPhysicalMemoryArrayLocation + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0008 This attribute defines the location of the physical +memory array." + ::= { physicalMemoryArrayTableEntry 8 } +physicalMemoryArrayMaximumSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS deprecated + DESCRIPTION +"1300.0010.0001.0009 This attribute defines the maximum size in KBytes +of the physical memory array. Zero inicates no memory is installed. +2,147,483,647 indicates an unknown maximum size. + +**NOTE: This attribute is deprecated and replaced by physicalMemoryArrayExtendedMaximumSize." + ::= { physicalMemoryArrayTableEntry 9 } +physicalMemoryArrayTotalNumberSockets OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0010 This attribute defines the total number of memory +sockets available for the physical memory array. 2,147,483,647 indicates +an unknown number of sockets." + ::= { physicalMemoryArrayTableEntry 10 } +physicalMemoryArrayInUseNumberSockets OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0011 This attribute defines the total number of memory +sockets in use by the physical memory array. 2,147,483,647 indicates +an unknown number of sockets." + ::= { physicalMemoryArrayTableEntry 11 } +physicalMemoryArrayECCErrorNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0012 This attribute defines the value of the physical +memory array ECC error nonrecoverable threshold. The value is an integer +representing the number of errors detected." + ::= { physicalMemoryArrayTableEntry 12 } +physicalMemoryArrayECCErrorCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.00013 This attribute defines the value of the physical +memory array ECC error critical threshold. The value is an integer +representing the number of errors detected." + ::= { physicalMemoryArrayTableEntry 13 } +physicalMemoryArrayECCErrorNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.00014 This attribute defines the value of the physical +memory array ECC error noncritical threshold. The value is an integer +representing the number of errors detected." + ::= { physicalMemoryArrayTableEntry 14 } +physicalMemoryArrayRedundantMemoryUnitIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0015 This attribute defines the index to the associated +redundant memory unit if this physical memory array is part of a redundant +memory unit." + ::= { physicalMemoryArrayTableEntry 15 } +physicalMemoryArrayExtendedMaximumSize OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0016 This attribute defines the maximum size in Bytes +of the physical memory array. + +**NOTE: This attribute replaces the physicalMemoryArrayMaximumSize." + ::= { physicalMemoryArrayTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Physical Memory Array Mapped Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.20.1... +------------------------------------------------------------------------------- + +PhysicalMemoryArrayMappedTableEntry ::= SEQUENCE { + physicalMemoryArrayMappedchassisIndex DellObjectRange, + physicalMemoryArrayMappedIndex DellObjectRange, + physicalMemoryArrayMappedStateCapabilities DellStateCapabilities, + physicalMemoryArrayMappedStateSettings DellStateSettings, + physicalMemoryArrayMappedStatus DellStatus, + physicalMemoryArrayIndexReference DellObjectRange, + physicalMemoryArrayMappedStartingAddress DellUnsigned64BitRange, + physicalMemoryArrayMappedEndingAddress DellUnsigned64BitRange, + physicalMemoryArrayMappedPartitionWidth DellUnsigned32BitRange +} + +physicalMemoryArrayMappedTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryArrayMappedTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0020 This object defines the Physical Memory Array Mapped Table." + ::= { memoryGroup 20 } +physicalMemoryArrayMappedTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryArrayMappedTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0020.0001 This object defines the Physical Memory Array Mapped +Table Entry." + INDEX { physicalMemoryArrayMappedchassisIndex, + physicalMemoryArrayMappedIndex } + ::= { physicalMemoryArrayMappedTable 1 } + +physicalMemoryArrayMappedchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryArrayMappedTableEntry 1 } +physicalMemoryArrayMappedIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0002 This attribute defines the index (one based) of the +physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 2 } +physicalMemoryArrayMappedStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0003 This attribute defines the state capabilities of the +physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 3 } +physicalMemoryArrayMappedStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0004 This attribute defines the state settings of the +physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 4 } +physicalMemoryArrayMappedStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0005 This attribute defines the status of the +physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 5 } +physicalMemoryArrayIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0006 This attribute defines the index (one based) of the +associated physical memory array." + ::= { physicalMemoryArrayMappedTableEntry 6 } +physicalMemoryArrayMappedStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0007 This attribute defines the physical starting address +in KBytes of the physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 7 } +physicalMemoryArrayMappedEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0008 This attribute defines the physical ending address +in KBytes of the physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 8 } +physicalMemoryArrayMappedPartitionWidth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0009 This attribute defines the number of memory devices +that form a single row in the memory array mapped address. 2,147,483,647 +indicates an unknown number of memory devices." + ::= { physicalMemoryArrayMappedTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Physical Memory Configuration Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.30.1... +------------------------------------------------------------------------------- + +DellPhysicalMemoryConfigStateCapabilities ::= INTEGER { + -- none(0), - no state capabilities supported + unknownCapabilities(1), -- state capabilities are unknown + enableCapable(2), -- memory config can be enabled and disabled + notReadyCapable(4) -- memory config can be not ready +} +DellPhysicalMemoryConfigStateSettings ::= INTEGER { + -- none(0), - no state settings enabled + unknown(1), -- state settings are unknown + enabled(2), -- memory config is enabled + notReady(4), -- memory config is not ready + redundantMemoryIsActive(8), -- redundant memory is active (in use) + enabledAndRedundantMemoryIsActive(10) +} +DellPhysicalMemoryConfigRedundantCapabilities ::= INTEGER { + -- none(0), - no redundant capabilities supported + unknownCapabilities(1), -- redundant capabilities are unknown + spareCapable(2), -- Spare redundancy is supported + mirrorCapable(4), -- Mirror redundancy is supported + spareAndMirrorCapable(6), + raidCapable(8), -- RAID redundancy is supported + dddcCapable(16) -- DDDC redundancy is supported +} +DellPhysicalMemoryConfigRedundantSettings ::= INTEGER { + -- none(0), - no redundant settings enabled + unknown(1), -- redundant settings are unknown + -- The following settings are mutually exclusive: + spareEnabled(2), -- Spare redundancy is enabled + mirrorEnabled(4), -- Mirror redundancy is enabled + raidEnabled(8), -- RAID redundancy is enabled + dddcEnabled(16) -- DDDC redundancy is enabled +} +DellPhysicalMemoryConfigMOMCapabilities ::= INTEGER { + -- none(0), - no memory operating mode capabilities supported + unknownCapabilities(1), -- memory operating mode capabilities are unknown + momOptimizerCapable(2), -- Optimizer mode is supported + momSpareCapable(4), -- Spare mode is supported + momMirrorCapable(8), -- Mirror mode is supported + momAdvancedECCCapable(16) -- Advanced ECC mode is supported +} +DellPhysicalMemoryConfigMOMSettings ::= INTEGER { + -- none(0), - no memory operating mode settings enabled + unknown(1), -- memory operating mode settings are unknown + -- The following settings are mutually exclusive: + momOptimizerEnabled(2), -- Optimizer mode is enabled + momSpareEnabled(4), -- Spare mode is enabled + momMirrorEnabled(8), -- Mirror mode is enabled + momAdvancedECCEnabled(16) -- Advanced ECC mode is enabled +} + +PhysicalMemoryConfigTableEntry ::= SEQUENCE { + physicalMemoryConfigChassisIndex DellObjectRange, + physicalMemoryConfigIndex DellObjectRange, + physicalMemoryConfigStateCapabilities DellPhysicalMemoryConfigStateCapabilities, + physicalMemoryConfigStateSettings DellPhysicalMemoryConfigStateSettings, + physicalMemoryConfigStatus DellStatus, + physicalMemoryConfigRedundantCapabilities DellPhysicalMemoryConfigRedundantCapabilities, + physicalMemoryConfigRedundantSettings DellPhysicalMemoryConfigRedundantSettings, + physicalMemoryConfigMOMCapabilities DellPhysicalMemoryConfigMOMCapabilities, + physicalMemoryConfigMOMSettings DellPhysicalMemoryConfigMOMSettings +} + +physicalMemoryConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryConfigTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0030 This object defines the Physical Memory Configuration Table." + ::= { memoryGroup 30 } +physicalMemoryConfigTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryConfigTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0030.0001 This object defines the Physical Memory Configuration +Table Entry." + INDEX { physicalMemoryConfigChassisIndex, + physicalMemoryConfigIndex } + ::= { physicalMemoryConfigTable 1 } + +physicalMemoryConfigChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryConfigTableEntry 1 } +physicalMemoryConfigIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0002 This attribute defines the index (one based) of the +physical memory configuration." + ::= { physicalMemoryConfigTableEntry 2 } +physicalMemoryConfigStateCapabilities OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0003 This attribute defines the state capabilities of the +physical memory configuration." + ::= { physicalMemoryConfigTableEntry 3 } +physicalMemoryConfigStateSettings OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0004 This attribute defines the state settings of the +physical memory configuration." + ::= { physicalMemoryConfigTableEntry 4 } +physicalMemoryConfigStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0005 This attribute defines the status of the +physical memory configuration." + ::= { physicalMemoryConfigTableEntry 5 } +physicalMemoryConfigRedundantCapabilities OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigRedundantCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0006 This attribute defines the redundant capabilities of the +physical memory." + ::= { physicalMemoryConfigTableEntry 6 } +physicalMemoryConfigRedundantSettings OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigRedundantSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0007 This attribute defines the redundant settings of the +physical memory." + ::= { physicalMemoryConfigTableEntry 7 } +physicalMemoryConfigMOMCapabilities OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigMOMCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0008 This attribute defines the Memory Operating Mode capabilities +of the physical memory." + ::= { physicalMemoryConfigTableEntry 8 } +physicalMemoryConfigMOMSettings OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigMOMSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0009 This attribute defines the Memory Operating Mode settings +of the physical memory." + ::= { physicalMemoryConfigTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Physical Memory Logging Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.40.1... +------------------------------------------------------------------------------- + +DellPhysicalMemoryLoggingCapabilities ::= INTEGER { + -- If set to 0 (zero), there are no Logging capabilities + unknownCapabilities(1), -- logging capabilities are unknown + enableCapable(2) -- logging can be enabled or disabled +} +DellPhysicalMemoryLoggingSettings ::= INTEGER { + -- If set to 0 (zero), there are no Logging settings enabled + unknown(1), -- logging settings are unknown + enabled(2) -- logging is enabled +} + +PhysicalMemoryLoggingTableEntry ::= SEQUENCE { + physicalMemoryLoggingChassisIndex DellObjectRange, + physicalMemoryLoggingIndex DellObjectRange, + physicalMemoryLoggingCapabilities DellPhysicalMemoryLoggingCapabilities, + physicalMemoryLoggingSettings DellPhysicalMemoryLoggingSettings, + physicalMemoryLoggingStatus DellStatus +} + +physicalMemoryLoggingTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryLoggingTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0040 This object defines the Physical Memory Logging Table." + ::= { memoryGroup 40 } +physicalMemoryLoggingTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryLoggingTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0040.0001 This object defines the Physical Memory Logging Table Entry." + INDEX { physicalMemoryLoggingChassisIndex, + physicalMemoryLoggingIndex } + ::= { physicalMemoryLoggingTable 1 } + +physicalMemoryLoggingChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryLoggingTableEntry 1 } +physicalMemoryLoggingIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0002 This attribute defines the index (one based) of the +physical memory logging." + ::= { physicalMemoryLoggingTableEntry 2 } +physicalMemoryLoggingCapabilities OBJECT-TYPE + SYNTAX DellPhysicalMemoryLoggingCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0003 This attribute defines the capabilities of the +physical memory logging." + ::= { physicalMemoryLoggingTableEntry 3 } +physicalMemoryLoggingSettings OBJECT-TYPE + SYNTAX DellPhysicalMemoryLoggingSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0004 This attribute defines the settings of the +physical memory logging." + ::= { physicalMemoryLoggingTableEntry 4 } +physicalMemoryLoggingStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0005 This attribute defines the status of the +physical memory logging." + ::= { physicalMemoryLoggingTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Redundant Memory Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.50.1... +------------------------------------------------------------------------------- + +RedundantMemoryUnitTableEntry ::= SEQUENCE { + redundantMemoryUnitChassisIndex DellObjectRange, + redundantMemoryUnitIndex DellObjectRange, + redundantMemoryUnitStateCapabilities DellStateCapabilities, + redundantMemoryUnitStateSettings DellStateSettings, + redundantMemoryUnitRedundancyStatus DellStatusRedundancy, + redundantMemoryUnitName DellString, + redundantMemoryUnitStatus DellStatus +} + +redundantMemoryUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF RedundantMemoryUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0050 This object defines the Redundant Memory Unit Table." + ::= { memoryGroup 50 } +redundantMemoryUnitTableEntry OBJECT-TYPE + SYNTAX RedundantMemoryUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0050.0001 This object defines the Redundant Memory Unit Table Entry." + INDEX { redundantMemoryUnitChassisIndex, + redundantMemoryUnitIndex } + ::= { redundantMemoryUnitTable 1 } + +redundantMemoryUnitChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { redundantMemoryUnitTableEntry 1 } +redundantMemoryUnitIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0002 This attribute defines the index (one based) of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 2 } +redundantMemoryUnitStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0003 This attribute defines the state capabilities of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 3 } +redundantMemoryUnitStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0004 This attribute defines the state settings of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 4 } +redundantMemoryUnitRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0005 This attribute defines the redundancy status of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 5 } +redundantMemoryUnitName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0006 This attribute defines the name of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 6 } +redundantMemoryUnitStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0007 This attribute defines the status of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Physical Memory Card Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.60.1... +------------------------------------------------------------------------------- + +PhysicalMemoryCardTableEntry ::= SEQUENCE { + physicalMemoryCardChassisIndex DellObjectRange, + physicalMemoryCardIndex DellObjectRange, + physicalMemoryCardStateCapabilities DellStateCapabilities, + physicalMemoryCardStateSettings DellStateSettings, + physicalMemoryCardStatus DellStatus, + physicalMemoryCardName DellString, + physicalMemoryCardTotalNumberSockets DellUnsigned32BitRange, + physicalMemoryCardInUseNumberSockets DellUnsigned32BitRange, + physicalMemoryCardPhyMemArrayIndexReference DellObjectRange +} + +physicalMemoryCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryCardTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0060 This object defines the Physical Memory Card Table." + ::= { memoryGroup 60 } +physicalMemoryCardTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryCardTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0060.0001 This object defines the Physical Memory Card Table Entry." + INDEX { physicalMemoryCardChassisIndex, + physicalMemoryCardIndex } + ::= { physicalMemoryCardTable 1 } + +physicalMemoryCardChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryCardTableEntry 1 } +physicalMemoryCardIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0002 This attribute defines the index (one based) of the +physical memory card." + ::= { physicalMemoryCardTableEntry 2 } +physicalMemoryCardStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0003 This attribute defines the state capabilities of the +physical memory card." + ::= { physicalMemoryCardTableEntry 3 } +physicalMemoryCardStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0004 This attribute defines the state settings of the +physical memory card." + ::= { physicalMemoryCardTableEntry 4 } +physicalMemoryCardStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0005 This attribute defines the status of the +physical memory card." + ::= { physicalMemoryCardTableEntry 5 } +physicalMemoryCardName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0006 This attribute defines the name of the +physical memory card." + ::= { physicalMemoryCardTableEntry 6 } +physicalMemoryCardTotalNumberSockets OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0007 This attribute defines the total number of memory +sockets available on the physical memory card. 2,147,483,647 indicates +an unknown number of sockets." + ::= { physicalMemoryCardTableEntry 7 } +physicalMemoryCardInUseNumberSockets OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0008 This attribute defines the number of memory +sockets in use on the physical memory card. Zero indicates that the +physical memory card is not installed or has a configuration error. +2,147,483,647 indicates an unknown number of sockets." + ::= { physicalMemoryCardTableEntry 8 } +physicalMemoryCardPhyMemArrayIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0009 This attribute defines the index (one based) of the +Physical Memory Array Table entry for the physical memory array with the +same chassis index that this physical memory card is associated with." + ::= { physicalMemoryCardTableEntry 9 } + + +------------------------------------------------------------------------------- +-- BIOS Setup Control Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- BIOS Setup Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.10.1.. +------------------------------------------------------------------------------- + +DellSpeakerControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- speaker control capabilities are unknown + enableCapable(2), -- speaker can be enabled or disabled + lowCapable(4), -- speaker volume can be set to low + mediumCapable(8), -- speaker volume can be set to medium + highCapable(16), -- speaker volume can be set to high + allVolumeCapable(30) -- speaker volume can be set to low, medium or high +} +DellSpeakerControlSettingsUnique ::= INTEGER { + unknown(1), -- speaker control settings are unknown + enabled(2), -- speaker is enabled + low(4), -- speaker volume is low + medium(8), -- speaker volume is medium + high(16) -- speaker volume is high +} +DellNIFwakeonLanControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- wake on LAN capabilities are unknown + enableCapable(2), -- wake on LAN can be enabled or disabled + addInCardCapable(4), -- wake on LAN by add in card capable + onBoardCapable(8), -- wake on LAN by onboard NIF capable + bothCapable(14) +} +DellNIFwakeonLanControlSettingsUnique ::= INTEGER { + unknown(1), -- wake on LAN settings are unknown + enabled(2), -- wake on LAN is enabled + addInCard(4), -- wake on LAN is by add in card + onBoard(8), -- wake on LAN is by onboard NIF + addInCardOrOnBoard(12) -- wake on LAN is by either add in card or onboard NIF +} +DellBootSequenceControlCapabilitiesUnique ::= INTEGER { + bootSequenceUnknown(1), -- boot sequence capabilities are unknown + bootFromDisketteFirstCapable(2), -- boot sequence can be diskette first + bootFromHardDriveFirstCapable(4), -- boot sequence can be IDE hard drive first + bootFromDisketteORHardDriveFirstCapable(6), -- boot sequence can be diskette or IDE hard drive first + bootFromDeviceListCapable(8), -- boot sequence can be device list + bootFromCDROMFirstCapable(16), -- boot sequence can be CD ROM first + allFirstCapable(30) -- boot sequence can be any of the above methods first +} +DellBootSequenceControlSettingsUnique ::= INTEGER { + bootSequenceUnknown(1), -- boot sequence settings are unknown + bootFromDisketteFirst(2), -- boot sequence is diskette first + bootFromHardDriveFirst(4), -- boot sequence is IDE hard drive first + bootFromDeviceList(8), -- boot sequence is device list + bootFromCDROMFirst(16) -- boot sequence is CD ROM first +} +DellBIOSPasswordControlCapabilitiesUnique ::= INTEGER { + passwordControlCapabilitiesUnknown(1), -- BIOS password capabilities are unknown + passwordControlEnableCapable(2), -- BIOS password can be enabled + passwordControlJumperDisableCapable(4), -- BIOS password can be jumper disabled + passwordControlEnableAndJumperDisableCapable(6) +} +DellBIOSPasswordControlSettingsUnique ::= INTEGER { + passwordControlSettingsUnknown(1), -- BIOS password settings are unknown + passwordControlEnabled(2), -- BIOS password is enabled + passwordControlJumperDisabled(4) -- BIOS password has been disabled by jumper +} +DellTPMSecurityControlCapabilities ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + offCapable(1), -- TPM security can be Off + onWithPrebootMeasurementsCapable(2), -- TPM security can be On with Pre-boot Measurements + onWithoutPrebootMeasurementsCapable(4) -- TPM security can be On without Pre-boot Measurements +} +DellTPMSecurityControlSetting ::= INTEGER { + -- off(0), - TPM security is Off + onWithPrebootMeasurements(1), -- TPM security is On with Pre-boot Measurements + onWithoutPrebootMeasurements(2) -- TPM security is On without Pre-boot Measurements +} + +BiosSetUpControlTableEntry ::= SEQUENCE { + biosSetUpControlchassisIndex DellObjectRange, + bSUCpointingDeviceControlCapabilities DellStateCapabilities, + bSUCpointingDeviceControlSettings DellStateSettings, + bSUCpointingDeviceControlStatus DellStatus, + bSUCpointingDeviceControlName DellString, + bSUCnumLockControlCapabilities DellStateCapabilities, + bSUCnumLockControlSettings DellStateSettings, + bSUCnumLockControlStatus DellStatus, + bSUCnumLockControlName DellString, + bSUCprocessorSerialNumberControlCapabilities DellStateCapabilities, + bSUCprocessorSerialNumberControlSettings DellStateSettings, + bSUCprocessorSerialNumberControlStatus DellStatus, + bSUCprocessorSerialNumberControlName DellString, + bSUCspeakerControlCapabilitiesUnique DellSpeakerControlCapabilitiesUnique, + bSUCspeakerControlSettingsUnique DellSpeakerControlSettingsUnique, + bSUCspeakerControlStatus DellStatus, + bSUCspeakerControlName DellString, + bSUCnIFwakeonLanControlCapabilitiesUnique DellNIFwakeonLanControlCapabilitiesUnique, + bSUCnIFwakeonLanControlSettingsUnique DellNIFwakeonLanControlSettingsUnique, + bSUCnIFwakeonLanControlStatus DellStatus, + bSUCnIFwakeonLanControlName DellString, + bSUCbootSequenceControlCapabilitiesUnique DellBootSequenceControlCapabilitiesUnique, + bSUCbootSequenceControlSettingsUnique DellBootSequenceControlSettingsUnique, + bSUCbootSequenceControlStatus DellStatus, + bSUCbootSequenceControlName DellString, + bSUCadministratorPasswordControlCapabilitiesUnique DellBIOSPasswordControlCapabilitiesUnique, + bSUCadministratorPasswordControlSettingsUnique DellBIOSPasswordControlSettingsUnique, + bSUCadministratorPasswordControlStatus DellStatus, + bSUCadministratorPasswordPasswordVerifyName DellString, + bSUCadministratorPasswordNewPasswordName DellString, + bSUCuserPasswordControlCapabilitiesUnique DellBIOSPasswordControlCapabilitiesUnique, + bSUCuserPasswordControlSettingsUnique DellBIOSPasswordControlSettingsUnique, + bSUCuserPasswordControlStatus DellStatus, + bSUCuserPasswordPasswordVerifyName DellString, + bSUCuserPasswordNewPasswordName DellString, + bSUCtpmSecurityControlCapabilities DellTPMSecurityControlCapabilities, + bSUCtpmSecurityControlSetting DellTPMSecurityControlSetting, + bSUCtpmSecurityControlStatus DellStatus, + bSUCtpmSecurityControlName DellString +} + +biosSetUpControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF BiosSetUpControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0010 This object defines the BIOS Setup Control Table." + ::= { biosSetUpControlGroup 10 } +biosSetUpControlTableEntry OBJECT-TYPE + SYNTAX BiosSetUpControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0010.0001 This object defines the BIOS Setup Control Table Entry." + INDEX { biosSetUpControlchassisIndex } + ::= { biosSetUpControlTable 1 } + +biosSetUpControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { biosSetUpControlTableEntry 1 } +bSUCpointingDeviceControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0002 This attribute defines the BIOS setup control capabilities +of the pointing Device." + ::= { biosSetUpControlTableEntry 2 } +bSUCpointingDeviceControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0003 This attribute defines the BIOS setup control settings +of the pointing device." + ::= { biosSetUpControlTableEntry 3 } +bSUCpointingDeviceControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0004 This attribute defines the BIOS setup control status +of the pointing device." + ::= { biosSetUpControlTableEntry 4 } +bSUCpointingDeviceControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0005 This attribute defines the BIOS setup control name +of the pointing device." + ::= { biosSetUpControlTableEntry 5 } +bSUCnumLockControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0006 This attribute defines the BIOS setup control capabilities +of the numeric lock." + ::= { biosSetUpControlTableEntry 6 } +bSUCnumLockControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0007 This attribute defines the BIOS setup control settings +of the numeric lock." + ::= { biosSetUpControlTableEntry 7 } +bSUCnumLockControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0008 This attribute defines the BIOS setup control status +of the numeric lock." + ::= { biosSetUpControlTableEntry 8 } +bSUCnumLockControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0009 This attribute defines the BIOS setup control name +of the numeric lock." + ::= { biosSetUpControlTableEntry 9 } +bSUCprocessorSerialNumberControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0010 This attribute defines the BIOS setup control capabilities +of the processor serial number." + ::= { biosSetUpControlTableEntry 10 } +bSUCprocessorSerialNumberControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0011 This attribute defines the BIOS setup control settings +of the processor serial number." + ::= { biosSetUpControlTableEntry 11 } +bSUCprocessorSerialNumberControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0012 This attribute defines the BIOS setup control status +of the processor serial number." + ::= { biosSetUpControlTableEntry 12 } +bSUCprocessorSerialNumberControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0013 This attribute defines the BIOS setup control name +of the processor serial number." + ::= { biosSetUpControlTableEntry 13 } +bSUCspeakerControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellSpeakerControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0014 This attribute defines the BIOS setup control capabilities +of the speaker." + ::= { biosSetUpControlTableEntry 14 } +bSUCspeakerControlSettingsUnique OBJECT-TYPE + SYNTAX DellSpeakerControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0015 This attribute defines the BIOS setup control settings +of the speaker." + ::= { biosSetUpControlTableEntry 15 } +bSUCspeakerControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0016 This attribute defines the BIOS setup control status +of the speaker." + ::= { biosSetUpControlTableEntry 16 } +bSUCspeakerControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0017 This attribute defines the BIOS setup control name +of the speaker." + ::= { biosSetUpControlTableEntry 17 } +bSUCnIFwakeonLanControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellNIFwakeonLanControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0018 This attribute defines the BIOS setup control capabilities +of the NIF wake on Lan." + ::= { biosSetUpControlTableEntry 18 } +bSUCnIFwakeonLanControlSettingsUnique OBJECT-TYPE + SYNTAX DellNIFwakeonLanControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0019 This attribute defines the BIOS setup control settings +of the NIF wake on Lan." + ::= { biosSetUpControlTableEntry 19 } +bSUCnIFwakeonLanControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0020 This attribute defines the BIOS setup control status +of the NIF wake on Lan." + ::= { biosSetUpControlTableEntry 20 } +bSUCnIFwakeonLanControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0021 This attribute defines the BIOS setup control name +of the NIF wake on Lan." + ::= { biosSetUpControlTableEntry 21 } +bSUCbootSequenceControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellBootSequenceControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0022 This attribute defines the BIOS setup control capabilities +of the boot sequence." + ::= { biosSetUpControlTableEntry 22 } +bSUCbootSequenceControlSettingsUnique OBJECT-TYPE + SYNTAX DellBootSequenceControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0023 This attribute defines the BIOS setup control settings +of the boot sequence." + ::= { biosSetUpControlTableEntry 23 } +bSUCbootSequenceControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0024 This attribute defines the BIOS setup control status +of the boot sequence." + ::= { biosSetUpControlTableEntry 24 } +bSUCbootSequenceControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0025 This attribute defines the BIOS setup control name +of the boot sequence." + ::= { biosSetUpControlTableEntry 25 } +bSUCadministratorPasswordControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellBIOSPasswordControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0026 This attribute defines the BIOS setup control capabilities +of the administrator password." + ::= { biosSetUpControlTableEntry 26 } +bSUCadministratorPasswordControlSettingsUnique OBJECT-TYPE + SYNTAX DellBIOSPasswordControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0027 This attribute defines the BIOS setup control settings +of the administrator password." + ::= { biosSetUpControlTableEntry 27 } +bSUCadministratorPasswordControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0028 This attribute defines the BIOS setup control status +of the administrator password." + ::= { biosSetUpControlTableEntry 28 } +bSUCadministratorPasswordPasswordVerifyName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0029 This attribute defines the BIOS setup control value +of the current administrator password." + ::= { biosSetUpControlTableEntry 29 } +bSUCadministratorPasswordNewPasswordName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0030 This attribute defines the BIOS setup control value +of the new administrator password. To set a new administrator password, +a successful set of the current administrator password must have been +done immediately preceeding this set." + ::= { biosSetUpControlTableEntry 30 } +bSUCuserPasswordControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellBIOSPasswordControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0031 This attribute defines the BIOS setup control capabilities +of the user password." + ::= { biosSetUpControlTableEntry 31 } +bSUCuserPasswordControlSettingsUnique OBJECT-TYPE + SYNTAX DellBIOSPasswordControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0032 This attribute defines the BIOS setup control settings +of the user password." + ::= { biosSetUpControlTableEntry 32 } +bSUCuserPasswordControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0033 This attribute defines the BIOS setup control status +of the user password." + ::= { biosSetUpControlTableEntry 33 } +bSUCuserPasswordPasswordVerifyName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0034 This attribute defines the BIOS setup control value +of the current user password." + ::= { biosSetUpControlTableEntry 34 } +bSUCuserPasswordNewPasswordName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0035 This attribute defines the BIOS setup control value +of the new user password. To set a new user password, a successful set of the +current user password must have been done immediately preceeding this set." + ::= { biosSetUpControlTableEntry 35 } +bSUCtpmSecurityControlCapabilities OBJECT-TYPE + SYNTAX DellTPMSecurityControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0036 This attribute defines the BIOS setup control capabilities +of Trusted Platform Module (TPM) security." + ::= { biosSetUpControlTableEntry 36 } +bSUCtpmSecurityControlSetting OBJECT-TYPE + SYNTAX DellTPMSecurityControlSetting + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0037 This attribute defines the BIOS setup control setting +of Trusted Platform Module (TPM) security." + ::= { biosSetUpControlTableEntry 37 } +bSUCtpmSecurityControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0038 This attribute defines the BIOS setup control status +of Trusted Platform Module (TPM) security." + ::= { biosSetUpControlTableEntry 38 } +bSUCtpmSecurityControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0039 This attribute defines the BIOS setup control name +of Trusted Platform Module (TPM) security." + ::= { biosSetUpControlTableEntry 39 } + + +------------------------------------------------------------------------------- +-- Small Computer Systems Interface (SCSI) Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.20.1... +------------------------------------------------------------------------------- + +SCSIControlTableEntry ::= SEQUENCE { + sCSIControlchassisIndex DellObjectRange, + sCSIControlIndex DellObjectRange, + sCSIControlCapabilities DellStateCapabilities, + sCSIControlSettings DellStateSettings, + sCSIControlStatus DellStatus, + sCSIControlName DellString +} + +sCSIControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF SCSIControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0020 This object defines the Small Computer Systems Interface (SCSI) +Control Table." + ::= { biosSetUpControlGroup 20 } +sCSIControlTableEntry OBJECT-TYPE + SYNTAX SCSIControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0020.0001 This object defines the Small Computer Systems Interface (SCSI) +Control Table Entry." + INDEX { sCSIControlchassisIndex, + sCSIControlIndex } + ::= { sCSIControlTable 1 } + +sCSIControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0001 This attribute defines the index (one based) of the +assoicated chassis." + ::= { sCSIControlTableEntry 1 } +sCSIControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0002 This attribute defines the index (one based) of the +SCSI control." + ::= { sCSIControlTableEntry 2 } +sCSIControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0003 This attribute defines the state capabilities of the +SCSI control." + ::= { sCSIControlTableEntry 3 } +sCSIControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0004 This attribute defines the state settings of the +SCSI control." + ::= { sCSIControlTableEntry 4 } +sCSIControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0005 This attribute defines the status of the +SCSI control." + ::= { sCSIControlTableEntry 5 } +sCSIControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0006 This attribute defines the BIOS setup control name +of the SCSI device." + ::= { sCSIControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Parallel Port Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.30.1... +------------------------------------------------------------------------------- + +DellParallelPortControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- parallel port capabilities are unknown + enableCapable(2), -- parallel port can be enabled or disabled + lpt1Capable(4), -- parallel port can be set to LPT1 + lpt1andEnableCapable(6), -- parallel port can be enabled and set to LPT1 + lpt2Capable(8), -- parallel port can be set to LPT2 + lpt2andEnableCapable(10), -- parallel port can be enabled and set to LPT2 + lpt3Capable(16), -- parallel port can be set to LPT3 + lpt3andEnableCapable(18), -- parallel port can be enabled and set to LPT3 + allParallelPortCapable(30) -- parallel port can be enabled and set to LPT1, LPT2 or LPT3 +} +DellParallelPortControlSettingsUnique ::= INTEGER { + unknown(1), -- parallel port settings are unknown + enabled(2), -- parallel port enabled + lpt1(4), -- parallel port set to LPT1 + lpt1Enabled(6), -- parallel port enabled and set to LPT1 + lpt2(8), -- parallel port set to LPT2 + lpt2Enabled(10), -- parallel port enabled and set to LPT2 + lpt3(16), -- parallel port set to LPT3 + lpt3Enabled(18) -- parallel port enabled and set to LPT3 +} +DellParallelPortControlModeCapabilitiesUnique ::= INTEGER { + unknown(1), -- mode capabilities are unknown + atCapable(2), -- parallel port can be set to AT mode + ps2Capable(4), -- parallel port can be set to PS/2 mode + atAndPS2Capable(6), -- parallel port can be set to AT mode or PS/2 mode + ecpCapable(8), -- parallel port can be set to ECP mode + eppCapable(16), -- parallel port can be set to EPP mode + allModeCapable(30) -- parallel port can be set to all modes +} +DellParallelPortControlModeSettingsUnique ::= INTEGER { + unknown(1), -- mode settings are unknown + atModeEnabled(2), -- parallel port set to AT mode + ps2ModeEnabled(4), -- parallel port set to PS/2 mode + ecpModeEnabled(8), -- parallel port set to ECP mode + eppModeEnabled(16) -- parallel port set to EPP mode +} + +ParallelPortControlTableEntry ::= SEQUENCE { + parallelPortControlchassisIndex DellObjectRange, + parallelPortControlIndex DellObjectRange, + parallelPortControlCapabilitiesUnique DellParallelPortControlCapabilitiesUnique, + parallelPortControlSettingsUnique DellParallelPortControlSettingsUnique, + parallelPortControlStatus DellStatus, + parallelPortControlName DellString, + parallelPortControlModeCapabilitiesUnique DellParallelPortControlModeCapabilitiesUnique, + parallelPortControlModeSettingsUnique DellParallelPortControlModeSettingsUnique +} + +parallelPortControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParallelPortControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0030 This object defines the Parallel Port Control Table." + ::= { biosSetUpControlGroup 30 } +parallelPortControlTableEntry OBJECT-TYPE + SYNTAX ParallelPortControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0030.0001 This object defines the Parallel Port Control Table Entry." + INDEX { parallelPortControlchassisIndex, + parallelPortControlIndex } + ::= { parallelPortControlTable 1 } + +parallelPortControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { parallelPortControlTableEntry 1 } +parallelPortControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0002 This attribute defines the index (one based) of the +parallel port control." + ::= { parallelPortControlTableEntry 2 } +parallelPortControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellParallelPortControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0003 This attribute defines the port capabilities of the +parallel port control." + ::= { parallelPortControlTableEntry 3 } +parallelPortControlSettingsUnique OBJECT-TYPE + SYNTAX DellParallelPortControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0004 This attribute defines the port settings of the +parallel port control." + ::= { parallelPortControlTableEntry 4 } +parallelPortControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0005 This attribute defines the status of the +parallel port control." + ::= { parallelPortControlTableEntry 5 } +parallelPortControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0006 This attribute defines the BIOS setup control name +of the parallel port." + ::= { parallelPortControlTableEntry 6 } +parallelPortControlModeCapabilitiesUnique OBJECT-TYPE + SYNTAX DellParallelPortControlModeCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0007 This attribute defines the mode capabilities of the +parallel port control." + ::= { parallelPortControlTableEntry 7 } +parallelPortControlModeSettingsUnique OBJECT-TYPE + SYNTAX DellParallelPortControlModeSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0008 This attribute defines the mode settings of the +parallel port control." + ::= { parallelPortControlTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Serial Port Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.40.1... +------------------------------------------------------------------------------- + +DellSerialPortControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- serial port capabilities are unknown + enableCapable(2), -- serial port can be enabled or disabled + com1Capable(4), -- serial port can be set to COM1 + enableAndCom1Capable(6), -- serial port can be enabled and set to COM1 + com2Capable(8), -- serial port can be set to COM2 + enableAndCom2Capable(10), -- serial port can be enabled and set to COM2 + com3Capable(16), -- serial port can be set to COM3 + enableAndCom3Capable(18), -- serial port can be enabled and set to COM3 + com4Capable(32), -- serial port can be set to COM4 + enableAndCom4Capable(34), -- serial port can be enabled and set to COM4 + autoConfigCapable(64), -- serial port can be autoconfigured + com1OrCom3CapableAndAutoConfigCapable(86), + com2OrCom4CapableAndAutoConfigCapable(106), + allcomCapable(126) -- serial port supports all capabilities +} +DellSerialPortControlSettingsUnique ::= INTEGER { + unknown(1), -- serial port settings are unknown + enabled(2), -- serial port enabled + com1(4), -- serial port set to COM1 + com1Enabled(6), -- serial port enabled and set to COM1 + com2(8), -- serial port set to COM2 + com2Enabled(10), -- serial port enabled and set to COM2 + com3(16), -- serial port set to COM3 + com3Enabled(18), -- serial port enabled and set to COM3 + com4(32), -- serial port set to COM4 + com4Enabled(34), -- serial port enabled and set to COM4 + comPortsAutoConfig(64), -- serial port set to autoconfiguration + enabledAndAutoConfig(66) -- serial port enabled and set to autoconfiguration +} + +SerialPortControlTableEntry ::= SEQUENCE { + serialPortControlchassisIndex DellObjectRange, + serialPortControlIndex DellObjectRange, + serialPortControlCapabilitiesUnique DellSerialPortControlCapabilitiesUnique, + serialPortControlSettingsUnique DellSerialPortControlSettingsUnique, + serialPortControlStatus DellStatus, + serialPortControlName DellString +} + +serialPortControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF SerialPortControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0040 This object defines the Serial Port Control Table." + ::= { biosSetUpControlGroup 40 } +serialPortControlTableEntry OBJECT-TYPE + SYNTAX SerialPortControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0040.0001 This object defines the Serial Port Control Table Entry." + INDEX { serialPortControlchassisIndex, + serialPortControlIndex } + ::= { serialPortControlTable 1 } + +serialPortControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { serialPortControlTableEntry 1 } +serialPortControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0002 This attribute defines the index (one based) of the +serial port control." + ::= { serialPortControlTableEntry 2 } +serialPortControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellSerialPortControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0003 This attribute defines the port capabilities of the +serial port control." + ::= { serialPortControlTableEntry 3 } +serialPortControlSettingsUnique OBJECT-TYPE + SYNTAX DellSerialPortControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0004 This attribute defines the port settings of the +serial port control." + ::= { serialPortControlTableEntry 4 } +serialPortControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0005 This attribute defines the status of the +serial port control." + ::= { serialPortControlTableEntry 5 } +serialPortControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0006 This attribute defines the BIOS setup control name +of the serial port." + ::= { serialPortControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Universal Serial Bus (USB) Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.50.1... +------------------------------------------------------------------------------- + +UsbControlTableEntry ::= SEQUENCE { + usbControlchassisIndex DellObjectRange, + usbControlIndex DellObjectRange, + usbControlCapabilities DellStateCapabilities, + usbControlSettings DellStateSettings, + usbControlStatus DellStatus, + usbControlName DellString +} + +usbControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF UsbControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0050 This object defines the Universal Serial Bus (USB) Control Table." + ::= { biosSetUpControlGroup 50 } +usbControlTableEntry OBJECT-TYPE + SYNTAX UsbControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0050.0001 This object defines the Universal Serial Bus (USB) Control +Table Entry." + INDEX { usbControlchassisIndex, + usbControlIndex } + ::= { usbControlTable 1 } + +usbControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { usbControlTableEntry 1 } +usbControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0002 This attribute defines the index (one based) of the +USB control." + ::= { usbControlTableEntry 2 } +usbControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0003 This attribute defines the state capabilities of the +USB control." + ::= { usbControlTableEntry 3 } +usbControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0004 This attribute defines the state settings of the +USB control." + ::= { usbControlTableEntry 4 } +usbControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0005 This attribute defines the status of the USB control." + ::= { usbControlTableEntry 5 } +usbControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0006 This attribute defines the BIOS setup control name +of the USB device." + ::= { usbControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Integrated Device Electronics (IDE) Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.60.1... +------------------------------------------------------------------------------- + +DellideControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- IDE capabilities are unknown + ideControlAutoConfigOrEnableCapable(2) -- IDE can be autoconfigured or enabled/disabled +} +DellideControlSettingsUnique ::= INTEGER { + unknown(1), -- IDE settings are unknown + ideControlAutoConfigEnabledOrEnabled(2) -- IDE set to autoconfigured or enabled +} + +IdeControlTableEntry ::= SEQUENCE { + ideControlchassisIndex DellObjectRange, + ideControlIndex DellObjectRange, + ideControlCapabilitiesUnique DellideControlCapabilitiesUnique, + ideControlSettingsUnique DellideControlSettingsUnique, + ideControlStatus DellStatus, + ideControlName DellString +} + +ideControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF IdeControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0060 This object defines the Integrated Device Electronics (IDE) +Control Table." + ::= { biosSetUpControlGroup 60 } +ideControlTableEntry OBJECT-TYPE + SYNTAX IdeControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0060.0001 This object defines the Integrated Device Electronics (IDE) +Control Table Entry." + INDEX { ideControlchassisIndex, + ideControlIndex } + ::= { ideControlTable 1 } + +ideControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { ideControlTableEntry 1 } +ideControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0002 This attribute defines the index (one based) of the +IDE control." + ::= { ideControlTableEntry 2 } +ideControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellideControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0003 This attribute defines the capabilities of the +IDE control." + ::= { ideControlTableEntry 3 } +ideControlSettingsUnique OBJECT-TYPE + SYNTAX DellideControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0004 This attribute defines the settings of the +IDE control." + ::= { ideControlTableEntry 4 } +ideControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0005 This attribute defines the state of the IDE control." + ::= { ideControlTableEntry 5 } +ideControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0006 This attribute defines the BIOS setup control name +of the IDE device." + ::= { ideControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Diskette Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.70.1... +------------------------------------------------------------------------------- + +DellDisketteControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- diskette capabilities are unknown + disketteAutoConfigOrEnableCapable(2), -- diskette can be enabled or disabled + disketteReadOnlyCapable(4), -- diskette can be set to read only + disketteAutoConfigOrEnableCapableandReadOnlyCapable(6) +} +DellDisketteControlSettingsUnique ::= INTEGER { + unknown(1), -- Diskette Control state is unknown + disketteAutoConfigEnabledOrEnabled(2), -- Diskette Control is autoconfigurable or enabled + disketteisReadOnly(4) -- Diskette is in read only operation +} + +DisketteControlTableEntry ::= SEQUENCE { + disketteControlchassisIndex DellObjectRange, + disketteControlIndex DellObjectRange, + disketteControlCapabilitiesUnique DellDisketteControlCapabilitiesUnique, + disketteControlSettingsUnique DellDisketteControlSettingsUnique, + disketteControlStatus DellStatus, + disketteControlName DellString +} + +disketteControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF DisketteControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0070 This object defines the Diskette Control Table." + ::= { biosSetUpControlGroup 70 } +disketteControlTableEntry OBJECT-TYPE + SYNTAX DisketteControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0070.0001 This object defines the Diskette Control Table Entry." + INDEX { disketteControlchassisIndex, + disketteControlIndex } + ::= { disketteControlTable 1 } + +disketteControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { disketteControlTableEntry 1 } +disketteControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0002 This attribute defines the index (one based) of the +diskette control." + ::= { disketteControlTableEntry 2 } +disketteControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellDisketteControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0003 This attribute defines the capabilities of the +diskette control." + ::= { disketteControlTableEntry 3 } +disketteControlSettingsUnique OBJECT-TYPE + SYNTAX DellDisketteControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0004 This attribute defines the settings of the +diskette control." + ::= { disketteControlTableEntry 4 } +disketteControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0005 This attribute defines the status of the +diskette control." + ::= { disketteControlTableEntry 5 } +disketteControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0006 This attribute defines the BIOS setup control name +of the diskette device." + ::= { disketteControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Network Interface Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.80.1... +------------------------------------------------------------------------------- + +DellNetworkInterfaceControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- network interface capabilities are unknown + enableCapable(2), -- network interface can be enabled or disabled + enableWithoutPXECapable(4) -- network interface can be enabled without PXE +} +DellNetworkInterfaceControlSettingsUnique ::= INTEGER { + unknown(1), -- network interface settings are unknown + enabled(2), -- network interface enabled + enabledWithoutPXE(4) -- network interface enabled without PXE +} + +NetworkInterfaceControlTableEntry ::= SEQUENCE { + networkInterfaceControlchassisIndex DellObjectRange, + networkInterfaceControlIndex DellObjectRange, + networkInterfaceControlCapabilitiesUnique DellNetworkInterfaceControlCapabilitiesUnique, + networkInterfaceControlSettingsUnique DellNetworkInterfaceControlSettingsUnique, + networkInterfaceControlStatus DellStatus, + networkInterfaceControlName DellString +} + +networkInterfaceControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetworkInterfaceControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0080 This object defines the Network Interface Control Table." + ::= { biosSetUpControlGroup 80 } +networkInterfaceControlTableEntry OBJECT-TYPE + SYNTAX NetworkInterfaceControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0080.0001 This object defines the Network Interface Control Table Entry." + INDEX { networkInterfaceControlchassisIndex, + networkInterfaceControlIndex } + ::= { networkInterfaceControlTable 1 } + +networkInterfaceControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { networkInterfaceControlTableEntry 1 } +networkInterfaceControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0002 This attribute defines the index (one based) of the +network interface control." + ::= { networkInterfaceControlTableEntry 2 } +networkInterfaceControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellNetworkInterfaceControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0003 This attribute defines the capabilities of the +network interface control." + ::= { networkInterfaceControlTableEntry 3 } +networkInterfaceControlSettingsUnique OBJECT-TYPE + SYNTAX DellNetworkInterfaceControlSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0004 This attribute defines the settings of the +network interface control." + ::= { networkInterfaceControlTableEntry 4 } +networkInterfaceControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0005 This attribute defines the status of the +network interface control." + ::= { networkInterfaceControlTableEntry 5 } +networkInterfaceControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0006 This attribute defines the BIOS setup control name +of the network interface." + ::= { networkInterfaceControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- BIOS Setting Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.90.1... +------------------------------------------------------------------------------- + +DellBIOSSettingValueType ::= INTEGER { + integer(1), -- type is Integer + string(2), -- type is String + enumeration(3), -- type is Enumeration + orderedList(4) -- type is Ordered List +} + +BiosSettingTableEntry ::= SEQUENCE { + biosSettingChassisIndex DellObjectRange, + biosSettingIndex DellObjectRange, + biosSettingName DisplayString, + biosSettingDisplayName DisplayString, + biosSettingValueType DellBIOSSettingValueType, + biosSettingCurrentValue DisplayString, + biosSettingPendingValue DisplayString, + biosSettingDefaultValue DisplayString, + biosSettingPossibleValues DisplayString, + biosSettingDisplayOrder DellUnsigned32BitRange, + biosSettingGroupDisplayName DisplayString, + biosSettingFQDD DisplayString +} + +biosSettingTable OBJECT-TYPE + SYNTAX SEQUENCE OF BiosSettingTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0090 This object defines the BIOS Setting Table." + ::= { biosSetUpControlGroup 90 } +biosSettingTableEntry OBJECT-TYPE + SYNTAX BiosSettingTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0090.0001 This object defines the BIOS Setting Table Entry." + INDEX { biosSettingChassisIndex, + biosSettingIndex } + ::= { biosSettingTable 1 } + +biosSettingChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { biosSettingTableEntry 1 } +biosSettingIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0002 This attribute defines the index (one based) of the +BIOS setting." + ::= { biosSettingTableEntry 2 } +biosSettingName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0003 This attribute defines the name of the BIOS setting." + ::= { biosSettingTableEntry 3 } +biosSettingDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0004 This attribute defines the display name of the BIOS setting." + ::= { biosSettingTableEntry 4 } +biosSettingValueType OBJECT-TYPE + SYNTAX DellBIOSSettingValueType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0005 This attribute defines the type of the BIOS setting value." + ::= { biosSettingTableEntry 5 } +biosSettingCurrentValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0006 This attribute defines the current value of the BIOS setting. +If value type is orderedList(4), value is an ordered comma-separated list of values +if there is more than one value." + ::= { biosSettingTableEntry 6 } +biosSettingPendingValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0007 This attribute defines the pending value of the BIOS setting. +This value will not take effect until some point in the future. This would typically +be used to represent a value that could not be changed until a system reset. +If value type is orderedList(4), value is an ordered comma-separated list of values +if there is more than one value." + ::= { biosSettingTableEntry 7 } +biosSettingDefaultValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0008 This attribute defines the default value of the BIOS setting. +If value type is orderedList(4), value is an ordered comma-separated list of values +if there is more than one value." + ::= { biosSettingTableEntry 8 } +biosSettingPossibleValues OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0009 This attribute defines the possible values of the BIOS setting. +If value type is integer(1) or string(2), no value is returned. If value type is +enumeration(3) or orderedList(4), value is a comma-separated list of values +if there is more than one value." + ::= { biosSettingTableEntry 9 } +biosSettingDisplayOrder OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0010 This attribute defines the recommended display order of the +BIOS setting within its BIOS setting group. This value can be used to display +BIOS settings from lowest number to highest number." + ::= { biosSettingTableEntry 10 } +biosSettingGroupDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0011 This attribute defines the display name of the BIOS setting +group for the BIOS setting." + ::= { biosSettingTableEntry 11 } +biosSettingFQDD OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0090.0001.0012 This attribute defines the Fully Qualified Device Descriptor +(FQDD) for the BIOS setting." + ::= { biosSettingTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Local Response Agent (LRA) Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1500 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Local Response Agent (LRA) Global Settings Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1500.10.1.. +------------------------------------------------------------------------------- + +DellLocalResponseAgentCapabilitiesUnique ::= INTEGER { + -- If set to 0 (zero), LRA has no capabilities + speakerControlCapable(1), -- LRA capable of speaker beep + consoleAlertCapable(2), -- LRA capable of console alert + broadcastMessageCapable(4), -- LRA capable of broadcast message + osShutDownCapable(8), -- LRA capable of operating system shutdown + rebootCapable(16), -- LRA capable of system reboot + powerCycleCapable(32), -- LRA capable of system power cycle + powerOFFCapable(64), -- LRA capable of system power off + executeApplicationCapable(256), -- LRA capable of executing user-specified application + lraFullyCapable(383) -- all LRA capabilities +} +DellLRAThermalShutdownCapabilitiesUnique ::= INTEGER { + -- If set to 0 (zero), LRA has no thermal shutdown capabilities + unknownCapabilities(1), -- thermal shutdown capabilities are unknown + enableCapable(2), -- thermal shutdown can be enabled or disabled + warningCapable(4), -- thermal shutdown can be set to activate on warning + enableOnWarningCapable(6), + failureCapable(8), -- thermal shutdown can be set to activate on failure + enableOnFailureCapable(10), + enableOnWarningOrFailureCapable(14) +} +DellLRAThermalShutdownStateSettingsUnique ::= INTEGER { + -- If set to 0 (zero), LRA thermal shutdown is disabled + unknown(1), -- thermal shutdown settings are unknown + activatedOnWarning(6), -- thermal shutdown set to activate on warning + activatedOnFailure(10) -- thermal shutdown set to activate on failure +} + +LRAGlobalSettingsTableEntry ::= SEQUENCE { + lRAGlobalchassisIndex DellObjectRange, + lRAGlobalState DellStateSettings, + lRAGlobalSettingsDisableTimeoutValue DellUnsigned32BitRange, + lRAGlobalSettingsCapabilitiesUnique DellLocalResponseAgentCapabilitiesUnique, + lRAGlobalThermalShutdownCapabilitiesUnique DellLRAThermalShutdownCapabilitiesUnique, + lRAGlobalThermalShutdownStateSettingsUnique DellLRAThermalShutdownStateSettingsUnique +} + +lRAGlobalSettingsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LRAGlobalSettingsTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1500.0010 This object defines the Local Response Agent (LRA) Global Settings +Table." + ::= { lraGroup 10 } +lRAGlobalSettingsTableEntry OBJECT-TYPE + SYNTAX LRAGlobalSettingsTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1500.0010.0001 This object defines the Local Response Agent (LRA) Global +Settings Table Entry." + INDEX { lRAGlobalchassisIndex } + ::= { lRAGlobalSettingsTable 1 } + +lRAGlobalchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { lRAGlobalSettingsTableEntry 1 } +lRAGlobalState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0002 This attribute defines the state settings of the +Local Response Agent." + ::= { lRAGlobalSettingsTableEntry 2 } +lRAGlobalSettingsDisableTimeoutValue OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0003 This attribute defines the timeout duration in seconds +that the Local Response Agent will be disabled after a machine shutdown and +reboot." + ::= { lRAGlobalSettingsTableEntry 3 } +lRAGlobalSettingsCapabilitiesUnique OBJECT-TYPE + SYNTAX DellLocalResponseAgentCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0004 This attribute defines the global settings capabilities +that all Local Response Agents may or may not allow to be set or reset." + ::= { lRAGlobalSettingsTableEntry 4 } +lRAGlobalThermalShutdownCapabilitiesUnique OBJECT-TYPE + SYNTAX DellLRAThermalShutdownCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0005 This attribute defines the thermal shutdown capabilities +of the Local Response Agent." + ::= { lRAGlobalSettingsTableEntry 5 } +lRAGlobalThermalShutdownStateSettingsUnique OBJECT-TYPE + SYNTAX DellLRAThermalShutdownStateSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0006 This attribute defines the thermal shutdown settings +of the Local Response Agent." + ::= { lRAGlobalSettingsTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Local Response Agent (LRA) Action Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1500.20.1... +------------------------------------------------------------------------------- + +DellLocalResponseAgentSettingsUnique ::= INTEGER { + speakerControl(1), -- issue speaker beep + consoleAlert(2), -- issue console alert + broadcastMessage(4), -- issue broadcast message + osShutDown(8), -- issue operating system shutdown + reboot(16), -- issue system reboot + powerCycle(32), -- issue system power cycle + powerOFF(64), -- issue system power off + executeApplication(256), -- execute user-specified application + allLRASettingsUnique(383) -- all LRA settings +} + +LRAActionTableTableEntry ::= SEQUENCE { + lRAActionTablechassisIndex DellObjectRange, + lRAActionTableActionNumberIndex DellUnsigned16BitRange, + lRAActionTableUserApplicationName DisplayString (SIZE (0..256)), + lRAActionTableSettingsUnique DellLocalResponseAgentSettingsUnique +} + +lRAActionTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LRAActionTableTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1500.0020 This object defines the Local Response Agent (LRA) Action Table." + ::= { lraGroup 20 } +lRAActionTableTableEntry OBJECT-TYPE + SYNTAX LRAActionTableTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1500.0020.0001 This object defines the Local Response Agent (LRA) Action +Table Entry." + INDEX { lRAActionTablechassisIndex, + lRAActionTableActionNumberIndex } + ::= { lRAActionTableTable 1 } + +lRAActionTablechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { lRAActionTableTableEntry 1 } +lRAActionTableActionNumberIndex OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0020.0001.0002 This attribute defines the action number index +of the LRA action. The currently supported values are: + 160 temperature failure action definition + 168 cooling device failure action definition + 172 voltage failure action definition + 200 temperature warning action definition + 202 voltage warning action definition + 204 cooling device warning action definition + 206 amperage failure action definition + 208 amperage warning action definition + 210 redundancy unit redundancy lost action definition + 212 redundancy unit redundancy degraded action definition + 214 power supply failure action definition + 220 chassis intrusion action definition + 228 memory device noncritical action definition + 474 memory device critical action definition + 1006 automatic system recovery (ASR) action definition + 1353 power supply warning action definition + 1553 log near full action definition + 1554 log full action definition + 1603 processor warning action definition + 1604 processor failure action definition + 1703 battery warning action definition + 1704 battery failure action definition" + ::= { lRAActionTableTableEntry 2 } +lRAActionTableUserApplicationName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..256)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0020.0001.0003 This attribute defines the name of the user application +executable path and file name to execute by the Local Response Agent if the +value executeApplication was set." + ::= { lRAActionTableTableEntry 3 } +lRAActionTableSettingsUnique OBJECT-TYPE + SYNTAX DellLocalResponseAgentSettingsUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0020.0001.0004 This attribute defines the settings for the LRA action." + ::= { lRAActionTableTableEntry 4 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600 +------------------------------------------------------------------------------- + + +DellCooOwnershipCodes ::= INTEGER { + other(1), -- ownership code is other than following values + unknown(2), -- ownership code is unknown + owned(3), -- ownership code is owned + leased(4), -- ownership code is leased + rented(5), -- ownership code is rented + offOfLease(6), -- ownership code is off of lease + transfer(7) -- ownership code is transfer +} +DellCooHourDayDurationType ::= INTEGER { + unknown(1), -- duration type is unknown + hours(2), -- duration type is hours + days(3) -- duration type is days +} +DellCooDayMonthDurationType ::= INTEGER { + unknown(1), -- duration type is unknown + days(3), -- duration type is days + months(4) -- duration type is months +} +DellCooMonthYearDurationType ::= INTEGER { + unknown(1), -- duration type is unknown + months(4), -- duration type is months + years(5) -- duration type is years +} + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.10.1.. +------------------------------------------------------------------------------- + +CooTableEntry ::= SEQUENCE { + coochassisIndex DellObjectRange, + cooState DellStateSettings, + cooAquisitionPurchaseCost DellUnsigned32BitRange, + cooAquisitionWayBillNumber DellUnsigned32BitRange, + cooAquisitionInstallDateName DellDateName, + cooAquisitionPurchaseOrder DellUnsigned32BitRange, + cooAquisitionPurchaseDateName DellDateName, + cooAquisitionSigningAuthorityName DellCostofOwnershipString, + cooOriginalMachineConfigurationExpensed DellBoolean, + cooOriginalMachineConfigurationVendorName DellCostofOwnershipString, + cooCostCenterInformationVendorName DellCostofOwnershipString, + cooUserInformationUserName DellCostofOwnershipString, + cooExtendedWarrantyStartDateName DellDateName, + cooExtendedWarrantyEndDateName DellDateName, + cooExtendedWarrantyCost DellUnsigned32BitRange, + cooExtendedWarrantyProviderName DellCostofOwnershipString, + cooOwnershipCode DellCooOwnershipCodes, + cooCorporateOwnerName DellCostofOwnershipString, + cooHazardousWasteCodeName DellCostofOwnershipString, + cooDeploymentDateLength DellUnsigned32BitRange, + cooDeploymentDurationType DellCooHourDayDurationType, + cooTrainingName DellCostofOwnershipString, + cooOutsourcingProblemDescriptionName DellCostofOwnershipString, + cooOutsourcingServiceFeeName DellCostofOwnershipString, + cooOutsourcingSigningAuthorityName DellCostofOwnershipString, + cooOutsourcingProviderFeeName DellCostofOwnershipString, + cooOutsourcingProviderServiceLevelName DellCostofOwnershipString, + cooInsuranceCompanyName DellCostofOwnershipString, + cooBoxAssetTagName DellCostofOwnershipString, + cooBoxSystemName DellCostofOwnershipString, + cooBoxCPUSerialNumberName DellCostofOwnershipString, + cooOperatingSystemUpgradeTypeName DellCostofOwnershipString, + cooOperatingSystemUpgradePatchLevelName DellCostofOwnershipString, + cooOperatingSystemUpgradeDate DellCostofOwnershipString, + cooDepreciationDuration DellUnsigned32BitRange, + cooDepreciationDurationType DellCooMonthYearDurationType, + cooDepreciationPercentage DellUnsigned32BitRange, + cooDepreciationMethodName DellCostofOwnershipString, + cooRegistrationIsRegistered DellBoolean +} + +cooTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0010 This object defines the Cost Of Ownership (COO) Table." + ::= { cooGroup 10 } +cooTableEntry OBJECT-TYPE + SYNTAX CooTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0010.0001 This object defines the Cost Of Ownership (COO) Table Entry." + INDEX { coochassisIndex } + ::= { cooTable 1 } + +coochassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooTableEntry 1 } +cooState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0002 This attribute defines the state settings of the +COO information." + ::= { cooTableEntry 2 } +cooAquisitionPurchaseCost OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0003 This attribute defines the purchase cost of the system." + ::= { cooTableEntry 3 } +cooAquisitionWayBillNumber OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0004 This attribute defines the waybill number of the system." + ::= { cooTableEntry 4 } +cooAquisitionInstallDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0005 This attribute defines the install date and time of the +system. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooTableEntry 5 } +cooAquisitionPurchaseOrder OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0006 This attribute defines the purchase order number of the +system." + ::= { cooTableEntry 6 } +cooAquisitionPurchaseDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0007 This attribute defines the purchase date and time of the +system. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooTableEntry 7 } +cooAquisitionSigningAuthorityName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0008 This attribute defines the name of the signing authority +for the system." + ::= { cooTableEntry 8 } +cooOriginalMachineConfigurationExpensed OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0009 This attribute defines if the purchase of the system +was expensed or not." + ::= { cooTableEntry 9 } +cooOriginalMachineConfigurationVendorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0010 This attribute defines the name of the vendor of the +system." + ::= { cooTableEntry 10 } +cooCostCenterInformationVendorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0011 This attribute defines the cost center name of the +system." + ::= { cooTableEntry 11 } +cooUserInformationUserName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0012 This attribute defines the name of the user of the +system." + ::= { cooTableEntry 12 } +cooExtendedWarrantyStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0013 This attribute defines the extended warranty start date +and time for the system. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooTableEntry 13 } +cooExtendedWarrantyEndDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0014 This attribute defines the extended warranty end date +and time for the system. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooTableEntry 14 } +cooExtendedWarrantyCost OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0015 This attribute defines the extended warranty cost +for the system." + ::= { cooTableEntry 15 } +cooExtendedWarrantyProviderName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0016 This attribute defines the name of the extended warranty +provider for the system." + ::= { cooTableEntry 16 } +cooOwnershipCode OBJECT-TYPE + SYNTAX DellCooOwnershipCodes + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0017 This attribute defines the ownership code for the system." + ::= { cooTableEntry 17 } +cooCorporateOwnerName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0018 This attribute defines the name of the corporate owner +of the system." + ::= { cooTableEntry 18 } +cooHazardousWasteCodeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0019 This attribute defines the hazardous waste code name +for the system." + ::= { cooTableEntry 19 } +cooDeploymentDateLength OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0020 This attribute defines the deployment time length +for the system." + ::= { cooTableEntry 20 } +cooDeploymentDurationType OBJECT-TYPE + SYNTAX DellCooHourDayDurationType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0021 This attribute defines the deployment duration time unit +for the Dell System." + ::= { cooTableEntry 21 } +cooTrainingName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0022 This attribute defines the training name for the system." + ::= { cooTableEntry 22 } +cooOutsourcingProblemDescriptionName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0023 This attribute defines the outsourcing problem description +for the system." + ::= { cooTableEntry 23 } +cooOutsourcingServiceFeeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0024 This attribute defines the outsourcing service fee +for the system." + ::= { cooTableEntry 24 } +cooOutsourcingSigningAuthorityName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0025 This attribute defines the name of the person who has +signing authority for service." + ::= { cooTableEntry 25 } +cooOutsourcingProviderFeeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0026 This attribute defines any additional outsourcing +charge for service." + ::= { cooTableEntry 26 } +cooOutsourcingProviderServiceLevelName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0027 This attribute defines the service level agreement +for service." + ::= { cooTableEntry 27 } +cooInsuranceCompanyName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0028 This attribute defines the name of the company +insuring the system." + ::= { cooTableEntry 28 } +cooBoxAssetTagName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0029 This attribute defines the name the system asset tag." + ::= { cooTableEntry 29 } +cooBoxSystemName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0030 This attribute defines the name of the system." + ::= { cooTableEntry 30 } +cooBoxCPUSerialNumberName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0031 This attribute defines the name of the CPU serial +number in the system." + ::= { cooTableEntry 31 } +cooOperatingSystemUpgradeTypeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0032 This attribute defines the name the operating system +on the system." + ::= { cooTableEntry 32 } +cooOperatingSystemUpgradePatchLevelName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0033 This attribute defines the operating system patch level +of the system." + ::= { cooTableEntry 33 } +cooOperatingSystemUpgradeDate OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0034 This attribute defines the operating system upgrade date +of the system." + ::= { cooTableEntry 34 } +cooDepreciationDuration OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0035 This attribute defines the depreciation duration time +for the system." + ::= { cooTableEntry 35 } +cooDepreciationDurationType OBJECT-TYPE + SYNTAX DellCooMonthYearDurationType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0036 This attribute defines the depreciation duration time +unit for the system." + ::= { cooTableEntry 36 } +cooDepreciationPercentage OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0037 This attribute defines the percentage of depreciation +for the system." + ::= { cooTableEntry 37 } +cooDepreciationMethodName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0038 This attribute defines the method of Depreciation +for the system." + ::= { cooTableEntry 38 } +cooRegistrationIsRegistered OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0039 This attribute defines if the system is registered +or not." + ::= { cooTableEntry 39 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Service Contract Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.20.1... +------------------------------------------------------------------------------- + +CooServiceContractTableEntry ::= SEQUENCE { + cooServiceContractchassisIndex DellObjectRange, + cooServiceContractIndex DellObjectRange, + cooServiceContractState DellStateSettings, + cooServiceContractWasRenewed DellBoolean, + cooServiceContractTypeName DellCostofOwnershipString, + cooServiceContractVendorName DellCostofOwnershipString +} + +cooServiceContractTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooServiceContractTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0020 This object defines the Cost Of Ownership (COO) Service Contract +Table." + ::= { cooGroup 20 } +cooServiceContractTableEntry OBJECT-TYPE + SYNTAX CooServiceContractTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0020.0001 This object defines the Cost Of Ownership (COO) Service +Contract Table Entry." + INDEX { cooServiceContractchassisIndex, + cooServiceContractIndex } + ::= { cooServiceContractTable 1 } + +cooServiceContractchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooServiceContractTableEntry 1 } +cooServiceContractIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0002 This attribute defines the index (one based) of the +COO service contract." + ::= { cooServiceContractTableEntry 2 } +cooServiceContractState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0003 This attribute defines the state settings of the +COO service contract." + ::= { cooServiceContractTableEntry 3 } +cooServiceContractWasRenewed OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0004 This attribute defines if the COO service contract +was renewed not." + ::= { cooServiceContractTableEntry 4 } +cooServiceContractTypeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0005 This attribute defines the name of the type of +COO service contract." + ::= { cooServiceContractTableEntry 5 } +cooServiceContractVendorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0006 This attribute defines the name of the provider of the +COO service contract." + ::= { cooServiceContractTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Cost Event Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.30.1... +------------------------------------------------------------------------------- + +CooCostEventLogTableEntry ::= SEQUENCE { + cooCostEventLogchassisIndex DellObjectRange, + cooCostEventLogIndex DellObjectRange, + cooCostEventLogState DellStateSettings, + cooCostEventLogDuration DellUnsigned32BitRange, + cooCostEventLogDurationType DellCooHourDayDurationType, + cooCostEventLogDescriptionName DellCostofOwnershipString +} + +cooCostEventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooCostEventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0030 This object defines the Cost Of Ownership (COO) Cost Event Log +Table." + ::= { cooGroup 30 } +cooCostEventLogTableEntry OBJECT-TYPE + SYNTAX CooCostEventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0030.0001 This object defines the Cost Of Ownership (COO) Cost Event +Log Table Entry." + INDEX { cooCostEventLogchassisIndex, + cooCostEventLogIndex } + ::= { cooCostEventLogTable 1 } + +cooCostEventLogchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooCostEventLogTableEntry 1 } +cooCostEventLogIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0002 This attribute defines the index (one based) of the +COO cost event log entry." + ::= { cooCostEventLogTableEntry 2 } +cooCostEventLogState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0003 This attribute defines the state settings of the +COO cost event log entry." + ::= { cooCostEventLogTableEntry 3 } +cooCostEventLogDuration OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0004 This attribute defines the duration of the +COO cost event." + ::= { cooCostEventLogTableEntry 4 } +cooCostEventLogDurationType OBJECT-TYPE + SYNTAX DellCooHourDayDurationType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0005 This attribute defines the duration type of the +COO cost event." + ::= { cooCostEventLogTableEntry 5 } +cooCostEventLogDescriptionName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0006 This attribute defines the description of the +COO cost event." + ::= { cooCostEventLogTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Warranty Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.40.1... +------------------------------------------------------------------------------- + +CooWarrantyTableEntry ::= SEQUENCE { + cooWarrantychassisIndex DellObjectRange, + cooWarrantyIndex DellObjectRange, + cooWarrantyState DellStateSettings, + cooWarrantyDuration DellUnsigned32BitRange, + cooWarrantyDurationType DellCooDayMonthDurationType, + cooWarrantyEndDateName DellDateName, + cooWarrantyCost DellUnsigned32BitRange +} + +cooWarrantyTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooWarrantyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0040 This object defines the Cost Of Ownership (COO) Warranty Table." + ::= { cooGroup 40 } +cooWarrantyTableEntry OBJECT-TYPE + SYNTAX CooWarrantyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0040.0001 This object defines the Cost Of Ownership (COO) Warranty +Table Entry." + INDEX { cooWarrantychassisIndex, + cooWarrantyIndex } + ::= { cooWarrantyTable 1 } + +cooWarrantychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooWarrantyTableEntry 1 } +cooWarrantyIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0002 This attribute defines the index (one based) of the +COO warranty." + ::= { cooWarrantyTableEntry 2 } +cooWarrantyState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0003 This attribute defines the state settings of the +COO warranty." + ::= { cooWarrantyTableEntry 3 } +cooWarrantyDuration OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0004 This attribute defines the duration of the COO warranty." + ::= { cooWarrantyTableEntry 4 } +cooWarrantyDurationType OBJECT-TYPE + SYNTAX DellCooDayMonthDurationType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0005 This attribute defines the duration type of the +COO warranty." + ::= { cooWarrantyTableEntry 5 } +cooWarrantyEndDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0006 This attribute defines the end date of the COO warranty. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooWarrantyTableEntry 6 } +cooWarrantyCost OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0007 This attribute defines the cost of the COO warranty." + ::= { cooWarrantyTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Lease Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.50.1... +------------------------------------------------------------------------------- + +CooLeaseInformationTableEntry ::= SEQUENCE { + cooLeaseInformationchassisIndex DellObjectRange, + cooLeaseInformationIndex DellObjectRange, + cooLeaseInformationState DellStateSettings, + cooLeaseInformationMultipleSchedules DellBoolean, + cooLeaseInformationBuyOutAmount DellUnsigned32BitRange, + cooLeaseInformationLeaseRateFactor DellUnsigned32BitRange, + cooLeaseInformationEndDateName DellDateName, + cooLeaseInformationFairMarketValue DellUnsigned32BitRange, + cooLeaseInformationLessorName DellCostofOwnershipString +} + +cooLeaseInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooLeaseInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0050 This object defines the Cost Of Ownership (COO) Lease Information +Table." + ::= { cooGroup 50 } +cooLeaseInformationTableEntry OBJECT-TYPE + SYNTAX CooLeaseInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0050.0001 This object defines the Cost Of Ownership (COO) Lease +Information Table Entry." + INDEX { cooLeaseInformationchassisIndex, + cooLeaseInformationIndex } + ::= { cooLeaseInformationTable 1 } + +cooLeaseInformationchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooLeaseInformationTableEntry 1 } +cooLeaseInformationIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0002 This attribute defines the index (one based) of the +COO lease information." + ::= { cooLeaseInformationTableEntry 2 } +cooLeaseInformationState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0003 This attribute defines the state settings of the +COO lease information." + ::= { cooLeaseInformationTableEntry 3 } +cooLeaseInformationMultipleSchedules OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0004 This attribute defines if there are multiple schedules +for this lease." + ::= { cooLeaseInformationTableEntry 4 } +cooLeaseInformationBuyOutAmount OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0005 This attribute defines buy out amount for this lease." + ::= { cooLeaseInformationTableEntry 5 } +cooLeaseInformationLeaseRateFactor OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0006 This attribute defines the rate factor for this lease." + ::= { cooLeaseInformationTableEntry 6 } +cooLeaseInformationEndDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0007 This attribute defines the end date for this lease. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooLeaseInformationTableEntry 7 } +cooLeaseInformationFairMarketValue OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0008 This attribute defines the fair market value +for this lease." + ::= { cooLeaseInformationTableEntry 8 } +cooLeaseInformationLessorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0009 This attribute defines the name of the lessor +for this lease." + ::= { cooLeaseInformationTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Schedule Number Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.60.1... +------------------------------------------------------------------------------- + +CooScheduleNumberTableEntry ::= SEQUENCE { + cooScheduleNumberchassisIndex DellObjectRange, + cooScheduleNumberIndex DellObjectRange, + cooScheduleNumberState DellStateSettings, + cooScheduleNumberLeaseInformationIndexReference DellUnsigned32BitRange, + cooScheduleNumberDescriptionName DellCostofOwnershipString +} + +cooScheduleNumberTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooScheduleNumberTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0060 This object defines the Cost Of Ownership (COO) Schedule Number +Table." + ::= { cooGroup 60 } +cooScheduleNumberTableEntry OBJECT-TYPE + SYNTAX CooScheduleNumberTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0060.0001 This object defines the Cost Of Ownership (COO) Schedule Number +Table Entry." + INDEX { cooScheduleNumberchassisIndex, + cooScheduleNumberIndex } + ::= { cooScheduleNumberTable 1 } + +cooScheduleNumberchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooScheduleNumberTableEntry 1 } +cooScheduleNumberIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0002 This attribute defines the index (one based) of the +COO schedule number." + ::= { cooScheduleNumberTableEntry 2 } +cooScheduleNumberState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0003 This attribute defines the state settings of the +COO schedule number." + ::= { cooScheduleNumberTableEntry 3 } +cooScheduleNumberLeaseInformationIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0004 This attribute defines the index (one based) of the +COO lease information associated with the COO schedule number." + ::= { cooScheduleNumberTableEntry 4 } +cooScheduleNumberDescriptionName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0005 This attribute defines the description of the +COO schedule number." + ::= { cooScheduleNumberTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Options Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.70.1... +------------------------------------------------------------------------------- + +CooOptionsTableEntry ::= SEQUENCE { + cooOptionschassisIndex DellObjectRange, + cooOptionsIndex DellObjectRange, + cooOptionsState DellStateSettings, + cooOptionsLeaseInformationIndexReference DellUnsigned32BitRange, + cooOptionsDescriptionName DellCostofOwnershipString +} + +cooOptionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooOptionsTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0070 This object defines the Cost Of Ownership (COO) Options Table." + ::= { cooGroup 70 } +cooOptionsTableEntry OBJECT-TYPE + SYNTAX CooOptionsTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0070.0001 This object defines the Cost Of Ownership (COO) Options Table +Entry." + INDEX { cooOptionschassisIndex, + cooOptionsIndex } + ::= { cooOptionsTable 1 } + +cooOptionschassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooOptionsTableEntry 1 } +cooOptionsIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0002 This attribute defines the index (one based) of the +COO options." + ::= { cooOptionsTableEntry 2 } +cooOptionsState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0003 This attribute defines the state settings of the +COO options." + ::= { cooOptionsTableEntry 3 } +cooOptionsLeaseInformationIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0004 This attribute defines the index (one based) of the +COO lease information associated with the COO options." + ::= { cooOptionsTableEntry 4 } +cooOptionsDescriptionName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0005 This attribute defines the description of the +COO options." + ::= { cooOptionsTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Maintenance Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.80.1... +------------------------------------------------------------------------------- + +CooMaintenanceTableEntry ::= SEQUENCE { + cooMaintenancechassisIndex DellObjectRange, + cooMaintenanceIndex DellObjectRange, + cooMaintenanceState DellStateSettings, + cooMaintenanceStartDateName DellDateName, + cooMaintenanceEndDateName DellDateName, + cooMaintenanceProviderName DellCostofOwnershipString, + cooMaintenanceRestrictionsName DellCostofOwnershipString +} + +cooMaintenanceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooMaintenanceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0080 This object defines the Cost Of Ownership (COO) Maintenance Table." + ::= { cooGroup 80 } +cooMaintenanceTableEntry OBJECT-TYPE + SYNTAX CooMaintenanceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0080.0001 This object defines the Cost Of Ownership (COO) Maintenance +Table Entry." + INDEX { cooMaintenancechassisIndex, + cooMaintenanceIndex } + ::= { cooMaintenanceTable 1 } + +cooMaintenancechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooMaintenanceTableEntry 1 } +cooMaintenanceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0002 This attribute defines the index (one based) of the +COO maintenance." + ::= { cooMaintenanceTableEntry 2 } +cooMaintenanceState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0003 This attribute defines the state settings of the +COO maintenance." + ::= { cooMaintenanceTableEntry 3 } +cooMaintenanceStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0004 This attribute defines the start date of the +COO maintenance. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooMaintenanceTableEntry 4 } +cooMaintenanceEndDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0005 This attribute defines the end date of the +COO maintenance. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooMaintenanceTableEntry 5 } +cooMaintenanceProviderName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0006 This attribute defines the name of the provider of the +COO maintenance." + ::= { cooMaintenanceTableEntry 6 } +cooMaintenanceRestrictionsName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0007 This attribute defines the text of the maintenance +agreement restrictions." + ::= { cooMaintenanceTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Repair Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.90.1... +------------------------------------------------------------------------------- + +CooRepairTableEntry ::= SEQUENCE { + cooRepairchassisIndex DellObjectRange, + cooRepairIndex DellObjectRange, + cooRepairState DellStateSettings, + cooRepairCounter DellUnsigned32BitRange, + cooRepairVendorName DellCostofOwnershipString +} + +cooRepairTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooRepairTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0090 This object defines the Cost Of Ownership (COO) Repair Table." + ::= { cooGroup 90 } +cooRepairTableEntry OBJECT-TYPE + SYNTAX CooRepairTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0090.0001 This object defines the Cost Of Ownership (COO) Repair Table +Entry." + INDEX { cooRepairchassisIndex, + cooRepairIndex } + ::= { cooRepairTable 1 } + +cooRepairchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooRepairTableEntry 1 } +cooRepairIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0002 This attribute defines the index (one based) of the +COO repair." + ::= { cooRepairTableEntry 2 } +cooRepairState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0003 This attribute defines the state setting of the +COO repair." + ::= { cooRepairTableEntry 3 } +cooRepairCounter OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0004 This attribute defines the number of repairs this +system has had." + ::= { cooRepairTableEntry 4 } +cooRepairVendorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0005 This attribute defines the repair vendors's name." + ::= { cooRepairTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Support Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.100.1... +------------------------------------------------------------------------------- + +CooSupportInformationTableEntry ::= SEQUENCE { + cooSupportInformationchassisIndex DellObjectRange, + cooSupportInformationIndex DellObjectRange, + cooSupportInformationState DellStateSettings, + cooSupportInformationIsOutsourced DellBoolean, + cooSupportInformationType DellUnsigned32BitRange, + cooSupportInformationHelpDeskName DellCostofOwnershipString, + cooSupportInformationFixTypeName DellCostofOwnershipString +} + +cooSupportInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooSupportInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0100 This object defines the Cost Of Ownership (COO) Support +Information Table." + ::= { cooGroup 100 } +cooSupportInformationTableEntry OBJECT-TYPE + SYNTAX CooSupportInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0100.0001 This object defines the Cost Of Ownership (COO) Support +Information Table Entry." + INDEX { cooSupportInformationchassisIndex, + cooSupportInformationIndex } + ::= { cooSupportInformationTable 1 } + +cooSupportInformationchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooSupportInformationTableEntry 1 } +cooSupportInformationIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0002 This attribute defines the index (one based) of the +COO support information." + ::= { cooSupportInformationTableEntry 2 } +cooSupportInformationState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0003 This attribute defines the state setting of the +COO support information." + ::= { cooSupportInformationTableEntry 3 } +cooSupportInformationIsOutsourced OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0004 This attribute defines if support is outsourced or not." + ::= { cooSupportInformationTableEntry 4 } +cooSupportInformationType OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0005 This attribute defines the type of the conmponent, +system or network problem that occurred." + ::= { cooSupportInformationTableEntry 5 } +cooSupportInformationHelpDeskName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0006 This attribute defines the help desk support +information provided." + ::= { cooSupportInformationTableEntry 6 } +cooSupportInformationFixTypeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0007 This attribute defines the method used to fix +the problem." + ::= { cooSupportInformationTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Trouble Ticket Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.110.1... +------------------------------------------------------------------------------- + +CooTroubleTicketTableEntry ::= SEQUENCE { + cooTroubleTicketchassisIndex DellObjectRange, + cooTroubleTicketIndex DellObjectRange, + cooTroubleTicketState DellStateSettings, + cooTroubleTicketSupportInformationIndexReference DellUnsigned32BitRange, + cooTroubleTicketNumberName DellCostofOwnershipString +} + +cooTroubleTicketTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooTroubleTicketTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0110 This object defines the Cost Of Ownership (COO) Trouble Ticket +Table." + ::= { cooGroup 110 } +cooTroubleTicketTableEntry OBJECT-TYPE + SYNTAX CooTroubleTicketTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0110.0001 This object defines the Cost Of Ownership (COO) Trouble Ticket +Table Entry." + INDEX { cooTroubleTicketchassisIndex, + cooTroubleTicketIndex } + ::= { cooTroubleTicketTable 1 } + +cooTroubleTicketchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooTroubleTicketTableEntry 1 } +cooTroubleTicketIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0002 This attribute defines the index (one based) of the +COO trouble ticket." + ::= { cooTroubleTicketTableEntry 2 } +cooTroubleTicketState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0003 This attribute defines the state settings of the +COO trouble ticket." + ::= { cooTroubleTicketTableEntry 3 } +cooTroubleTicketSupportInformationIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0004 This attribute defines the index (one based) of the +COO support information associated with the COO trouble ticket." + ::= { cooTroubleTicketTableEntry 4 } +cooTroubleTicketNumberName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0005 This attribute defines the name of the +COO trouble ticket." + ::= { cooTroubleTicketTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Remote Access Group (in another MIB file) +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1700 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cluster Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1800 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cluster Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1800.10.1... +------------------------------------------------------------------------------- + +DellClusterType ::= INTEGER { + unknown(1), -- cluster type is unknown + highAvailabilityCluster(2) -- cluster type is High Availability Cluster +} + +ClusterTableEntry ::= SEQUENCE { + clusterChassisIndex DellObjectRange, + clusterIndex DellObjectRange, + clusterStateCapabilities DellStateCapabilities, + clusterStateSettings DellStateSettings, + clusterStatus DellStatus, + clusterType DellClusterType, + clusterTypeDescriptionName DellString, + clusterName DellString +} + +clusterTable OBJECT-TYPE + SYNTAX SEQUENCE OF ClusterTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1800.0010 This object defines the Cluster Table." + ::= { clusterGroup 10 } +clusterTableEntry OBJECT-TYPE + SYNTAX ClusterTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1800.0010.0001 This object defines the Cluster Table Entry." + INDEX { clusterChassisIndex, + clusterIndex } + ::= { clusterTable 1 } + +clusterChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { clusterTableEntry 1 } +clusterIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0002 This attribute defines the index (one based) of the +cluster." + ::= { clusterTableEntry 2 } +clusterStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0003 This attribute defines the state capabilities of the +cluster." + ::= { clusterTableEntry 3 } +clusterStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0004 This attribute defines the state settings of the + cluster." + ::= { clusterTableEntry 4 } +clusterStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0005 This attribute defines the status of the cluster." + ::= { clusterTableEntry 5 } +clusterType OBJECT-TYPE + SYNTAX DellClusterType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0006 This attribute defines the type of the cluster." + ::= { clusterTableEntry 6 } +clusterTypeDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0007 This attribute defines the description name for the +type of the cluster." + ::= { clusterTableEntry 7 } +clusterName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0008 This attribute defines the name of the cluster." + ::= { clusterTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Baseboard Management Controller (BMC) Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1900 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Baseboard Management Controller (BMC) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1900.10.1... +------------------------------------------------------------------------------- + +DellManagementControllerType ::= INTEGER { + -- legacyBMC(0), - type is legacy Baseboard Management Controller + iDRAC(8), -- type is Integrated Dell Remote Access Controller + iDRAC6(10), -- type is Integrated Dell Remote Access Controller 6 + iDRAC6Modular(11), -- type is Integrated Dell Remote Access Controller 6 (Modular) + iDRAC6BMC(13), -- type is Integrated Dell Remote Access Controller 6 (BMC mode) + iDRAC7(16), -- type is Integrated Dell Remote Access Controller 7 + iDRAC7Modular(17), -- type is Integrated Dell Remote Access Controller 7 (Modular) + vrtxCMC(18), -- type is VRTX CMC + fx2CMC(19), -- type is FX2 Family CMC + iDRAC8(32), -- type is iDRAC8 Monolithic + iDRAC8Modular(33) -- type is iDRAC8 Modular +} + +DellBladeFormFactorType ::= INTEGER { + formFactorTypeIsSingleWidthHalfHeight(1), -- Form Factor Type is singleWidthHalfHeight + formFactorTypeIsDualWidthHalfHeight(2), -- Form Factor Type is DualWidthHalfHeight + formFactorTypeIsSingleWidthFullHeight(3), -- Form Factor Type is SingleWidthFullHeight + formFactorTypeIsDualWidthFullHeight(4), -- Form Factor Type is DualWidthFullHeight + formFactorTypeIsSingleWidthQuarterHeight(5), -- Form Factor Type is SingleWidthQuarterHeight + formFactorTypeIs1UHalfWidth(6), -- Form Factor Type is 1UHalfWidth + formFactorTypeIs1UQuarterWidth(7), -- Form Factor Type is 1UQuarterWidth + formFactorTypeIs1UFullWidth(8), -- Form Factor Type is 1UFullWidth + notApplicable(256) -- Form Factor Type is Not Applicable for the system + +} + + +BmcTableEntry ::= SEQUENCE { + bmcChassisIndex DellObjectRange, + bmcIndex DellObjectRange, + bmcStateCapabilities DellStateCapabilities, + bmcStateSettings DellStateSettings, + bmcStatus DellStatus, + bmcDisplayName DellString, + bmcDescriptionName DisplayString (SIZE (0..255)), + bmcIPMIVersionName DellString, + bmcGUID OCTET STRING (SIZE(16)), + bmcType DellManagementControllerType, + bmcModuleName DellString, + bmcIPv4URLName DisplayString (SIZE (0..1024)), + bmcIPv6URLName DisplayString (SIZE (0..1024)), + bmcBladeFormFactorName DellBladeFormFactorType +} + +bmcTable OBJECT-TYPE + SYNTAX SEQUENCE OF BmcTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0010 This object defines the Baseboard Management Controller (BMC) +Table." + ::= { bmcGroup 10 } +bmcTableEntry OBJECT-TYPE + SYNTAX BmcTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0010.0001 This object defines the Baseboard Management Controller (BMC) +Table Entry." + INDEX { bmcChassisIndex, + bmcIndex } + ::= { bmcTable 1 } + +bmcChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { bmcTableEntry 1 } +bmcIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0002 This attribute defines the index (one based) of the BMC." + ::= { bmcTableEntry 2 } +bmcStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0003 This attribute defines the state capabilities of the BMC." + ::= { bmcTableEntry 3 } +bmcStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0004 This attribute defines the state settings of the BMC." + ::= { bmcTableEntry 4 } +bmcStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0005 This attribute defines the status of the BMC." + ::= { bmcTableEntry 5 } +bmcDisplayName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0006 This attribute defines the display name of the BMC." + ::= { bmcTableEntry 6 } +bmcDescriptionName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0007 This attribute defines the description of the BMC." + ::= { bmcTableEntry 7 } +bmcIPMIVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0008 This attribute defines the version of the +Intelligent Platform Management Interface (IPMI) specification +that the BMC supports." + ::= { bmcTableEntry 8 } +bmcGUID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0009 This attribute defines the Globally Unique ID (GUID) +of the BMC." + ::= { bmcTableEntry 9 } +bmcType OBJECT-TYPE + SYNTAX DellManagementControllerType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.00010 This attribute defines the type of the BMC." + ::= { bmcTableEntry 10 } +bmcModuleName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0011 This attribute defines the module name for the BMC. +The module name is present only on certain systems such as blade systems." + ::= { bmcTableEntry 11 } +bmcIPv4URLName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0012 This attribute defines the IPv4 URL for the BMC. +The URL is not present on all systems." + ::= { bmcTableEntry 12 } +bmcIPv6URLName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0013 This attribute defines the IPv6 URL for the BMC. +The URL is not present on all systems." + ::= { bmcTableEntry 13 } +bmcBladeFormFactorName OBJECT-TYPE + SYNTAX DellBladeFormFactorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0014 This attribute defines Blade FormFactor." + ::= { bmcTableEntry 14 } + + + + +------------------------------------------------------------------------------- +-- Baseboard Management Controller (BMC) Serial Interface Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1900.20.1.... +------------------------------------------------------------------------------- + +DellBMCSerialConnectionModeCapabilities ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no mode capabilities + modemBasic(1), -- Modem Basic mode capable + modemPPP(2), -- Modem PPP mode capable + modemTerminal(4), -- Modem Terminal mode capable + directBasic(8), -- Direct Basic mode capable + directPPP(16), -- Direct PPP mode capable + directTerminal(32) -- Direct Terminal mode capable +} +DellBMCSerialConnectionModeSettings ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no modes enabled + modemBasic(1), -- Modem Basic mode enabled + modemPPP(2), -- Modem PPP mode enabled + modemTerminal(4), -- Modem Terminal mode enabled + directBasic(8), -- Direct Basic mode enabled + directPPP(16), -- Direct PPP mode enabled + directTerminal(32) -- Direct Terminal mode enabled +} +DellBMCSerialFlowControlType ::= INTEGER { + -- none(0), - no flow control used + rtsCts(1), -- RTS/CTS (hardware) flow control + xonXoff(2) -- XON/XOFF flow control +} +DellBMCSerialBitRateType ::= INTEGER { + bps9600(6), -- 9600 bps (bits per second) + bps19200(7), -- 19200 bps + bps38400(8), -- 38400 bps + bps57600(9), -- 57600 bps + bps115200(10) -- 115200 bps +} + +BmcSerialInterfaceTableEntry ::= SEQUENCE { + bmcSerialInterfaceChassisIndex DellObjectRange, + bmcSerialInterfaceBMCIndex DellObjectRange, + bmcSerialInterfaceIndex DellObjectRange, + bmcSerialInterfaceStateCapabilities DellStateCapabilities, + bmcSerialInterfaceStateSettings DellStateSettings, + bmcSerialInterfaceStatus DellStatus, + bmcSerialInterfaceChannelNumber DellUnsigned8BitRange, + bmcSerialInterfaceConnectionModeCapabilities DellBMCSerialConnectionModeCapabilities, + bmcSerialInterfaceConnectionModeSettings DellBMCSerialConnectionModeSettings, + bmcSerialInterfaceFlowControl DellBMCSerialFlowControlType, + bmcSerialInterfaceBitRate DellBMCSerialBitRateType +} + +bmcSerialInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF BmcSerialInterfaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0020 This object defines the Baseboard Management Controller (BMC) +Serial Interface Table." + ::= { bmcGroup 20 } +bmcSerialInterfaceTableEntry OBJECT-TYPE + SYNTAX BmcSerialInterfaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0020.0001 This object defines the Baseboard Management Controller (BMC) +Serial Interface Table Entry." + INDEX { bmcSerialInterfaceChassisIndex, + bmcSerialInterfaceBMCIndex, + bmcSerialInterfaceIndex } + ::= { bmcSerialInterfaceTable 1 } + +bmcSerialInterfaceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { bmcSerialInterfaceTableEntry 1 } +bmcSerialInterfaceBMCIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0002 This attribute defines the index (one based) of the +assoiciated BMC." + ::= { bmcSerialInterfaceTableEntry 2 } +bmcSerialInterfaceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0003 This attribute defines the index (one based) of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 3 } +bmcSerialInterfaceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0004 This attribute defines the state capabilities of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 4 } +bmcSerialInterfaceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0005 This attribute defines the state settings of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 5 } +bmcSerialInterfaceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0006 This attribute defines the status of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 6 } +bmcSerialInterfaceChannelNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0007 This attribute defines the BMC channel number of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 7 } +bmcSerialInterfaceConnectionModeCapabilities OBJECT-TYPE + SYNTAX DellBMCSerialConnectionModeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0008 This attribute defines the connection mode capabilities +of the BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 8 } +bmcSerialInterfaceConnectionModeSettings OBJECT-TYPE + SYNTAX DellBMCSerialConnectionModeSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0009 This attribute defines the connection mode settings +of the BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 9 } +bmcSerialInterfaceFlowControl OBJECT-TYPE + SYNTAX DellBMCSerialFlowControlType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0010 This attribute defines the flow control type of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 10 } +bmcSerialInterfaceBitRate OBJECT-TYPE + SYNTAX DellBMCSerialBitRateType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0011 This attribute defines the bit rate of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Baseboard Management Controller (BMC) LAN Interface Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1900.30.1.... +------------------------------------------------------------------------------- + +DellBMCLANIPAddressSourceType ::= INTEGER { + -- unspecified(0), - source is unspecified + static(1), -- static IP address + dhcp(2), -- DHCP used to obtain IP address + biosOrSystemSoftware(3), -- BIOS or system software provided IP Address + other(4) -- other protocol used to obtain IP address +} + +BmcLANInterfaceTableEntry ::= SEQUENCE { + bmcLANInterfaceChassisIndex DellObjectRange, + bmcLANInterfaceBMCIndex DellObjectRange, + bmcLANInterfaceIndex DellObjectRange, + bmcLANInterfaceStateCapabilities DellStateCapabilities, + bmcLANInterfaceStateSettings DellStateSettings, + bmcLANInterfaceStatus DellStatus, + bmcLANInterfaceChannelNumber DellUnsigned8BitRange, + bmcLANInterfaceIPAddressSource DellBMCLANIPAddressSourceType, + bmcLANInterfaceIPAddress IpAddress, + bmcLANInterfaceSubnetMaskAddress IpAddress, + bmcLANInterfaceDefaultGatewayAddress IpAddress, + bmcLANInterfaceMACAddress DellMACAddress, + bmcLANInterfaceAlertCommunityName DisplayString (SIZE (0..32)) +} + +bmcLANInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF BmcLANInterfaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0030 This object defines the Baseboard Management Controller (BMC) +LAN Interface Table." + ::= { bmcGroup 30 } +bmcLANInterfaceTableEntry OBJECT-TYPE + SYNTAX BmcLANInterfaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0030.0001 This object defines the Baseboard Management Controller (BMC) +LAN Interface Table Entry." + INDEX { bmcLANInterfaceChassisIndex, + bmcLANInterfaceBMCIndex, + bmcLANInterfaceIndex } + ::= { bmcLANInterfaceTable 1 } + +bmcLANInterfaceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { bmcLANInterfaceTableEntry 1 } +bmcLANInterfaceBMCIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0002 This attribute defines the index (one based) of the +assoiciated BMC." + ::= { bmcLANInterfaceTableEntry 2 } +bmcLANInterfaceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0003 This attribute defines the index (one based) of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 3 } +bmcLANInterfaceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0004 This attribute defines the state capabilities of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 4 } +bmcLANInterfaceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0005 This attribute defines the state settings of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 5 } +bmcLANInterfaceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0006 This attribute defines the status of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 6 } +bmcLANInterfaceChannelNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0007 This attribute defines the BMC channel number of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 7 } +bmcLANInterfaceIPAddressSource OBJECT-TYPE + SYNTAX DellBMCLANIPAddressSourceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0008 This attribute defines the source type of the +IP address of the BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 8 } +bmcLANInterfaceIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0009 This attribute defines the IP address of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 9 } +bmcLANInterfaceSubnetMaskAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0010 This attribute defines the subnet mask of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 10 } +bmcLANInterfaceDefaultGatewayAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0011 This attribute defines the IP address of the +default gateway for the BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 11 } +bmcLANInterfaceMACAddress OBJECT-TYPE + SYNTAX DellMACAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0012 This attribute defines the MAC address of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 12 } +bmcLANInterfaceAlertCommunityName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0013 This attribute defines the SNMP community used for +BMC LAN alerts (traps) sent on the BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 13 } + + +------------------------------------------------------------------------------- +-- Alert Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.5000 +------------------------------------------------------------------------------- + +alertVariables OBJECT IDENTIFIER ::= { alertGroup 10 } + +------------------------------------------------------------------------------- +-- Alert Variables +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.5000.10..0 +------------------------------------------------------------------------------- + +alertSystem OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0001 Name of the system generating the alert." + ::= { alertVariables 1 } +alertTableIndexOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0002 OID for the index attribute in the table that contains the object +causing the alert. This value can be used to uniquely identify the object +causing the alert and to correlate different alerts caused by an object. +If not applicable, the value will be 0.0." + ::= { alertVariables 2 } +alertMessage OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0003 Message describing the alert." + ::= { alertVariables 3 } +alertCurrentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0004 Current status of object causing the alert." + ::= { alertVariables 4 } +alertPreviousStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0005 Previous status of object causing the alert." + ::= { alertVariables 5 } +alertData OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0006 Alert data." + ::= { alertVariables 6 } +alertMsgID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0007 Alert message ID." + ::= { alertVariables 7 } +alertSystemFQDN OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0008 Fully qualified domain name of the system generating the alert." + ::= { alertVariables 8 } +alertServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0009 Service tag of the system generating the alert." + ::= { alertVariables 9 } +alertChassisServiceTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0010 Chassis service tag of the system generating the alert." + ::= { alertVariables 10 } + +------------------------------------------------------------------------------- +-- +-- Legacy Traps +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Miscellaneous Traps +------------------------------------------------------------------------------- + +alertSystemUp TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Server Administrator has completed its initialization." + + --Novell NMS trap annotation + --#TYPE "Server Administrator Startup Complete" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1001 + +alertThermalShutdown TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Thermal shutdown protection has been initiated." + + --Novell NMS trap annotation + --#TYPE "Server Thermal Shutdown" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1004 + +alertAutomaticSystemRecovery TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Automatic system recovery (ASR) was performed." + + --Novell NMS trap annotation + --#TYPE "Server Automatic System Recovery" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1006 + +alertUserHostSystemReset TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"User has initiated host system reset." + + --Novell NMS trap annotation + --#TYPE "Server User Host System Reset" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1007 + +alertSystemPeakPowerNewPeak TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"System peak power sensor has detected a new peak value." + + --Novell NMS trap annotation + --#TYPE "Server System Peak Power New Peak" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1013 + +alertSystemSoftwareEvent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"System software event has occurred." + + --Novell NMS trap annotation + --#TYPE "Server System Software Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1014 + +------------------------------------------------------------------------------- +-- Temperature Probe Traps +------------------------------------------------------------------------------- + +alertTemperatureProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Temperature probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1052 + +alertTemperatureProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Temperature probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1053 + +alertTemperatureProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Temperature probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1054 + +alertTemperatureProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Temperature probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1055 + +------------------------------------------------------------------------------- +-- Cooling Device Traps +------------------------------------------------------------------------------- + +alertCoolingDeviceNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Cooling device sensor has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1102 + +alertCoolingDeviceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Cooling device sensor has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1103 + +alertCoolingDeviceFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Cooling device sensor has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1104 + +alertCoolingDeviceNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Cooling device sensor has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1105 + +------------------------------------------------------------------------------- +-- Voltage Probe Traps +------------------------------------------------------------------------------- + +alertVoltageProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Voltage probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1152 + +alertVoltageProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Voltage probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1153 + +alertVoltageProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Voltage probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1154 + +alertVoltageProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Voltage probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1155 + +------------------------------------------------------------------------------- +-- Amperage Probe Traps +------------------------------------------------------------------------------- + +alertAmperageProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Amperage probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1202 + +alertAmperageProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Amperage probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1203 + +alertAmperageProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Amperage probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1204 + +alertAmperageProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Amperage probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1205 + +------------------------------------------------------------------------------- +-- Chassis Intrusion Traps +------------------------------------------------------------------------------- + +alertChassisIntrusionNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Chassis intrusion has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Chassis Intrusion Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1252 + +alertChassisIntrusionDetected TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Chassis intrusion has been detected." + + --Novell NMS trap annotation + --#TYPE "Server Chassis Intrusion Detected" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1254 + +------------------------------------------------------------------------------- +-- Redundancy Traps +------------------------------------------------------------------------------- + +alertRedundancyNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Redundancy has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1304 + +alertRedundancyDegraded TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Redundancy has been degraded." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Degraded" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1305 + +alertRedundancyLost TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Redundancy has been lost." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Lost" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1306 + +------------------------------------------------------------------------------- +-- Power Supply Traps +------------------------------------------------------------------------------- + +alertPowerSupplyNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Power supply has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1352 + +alertPowerSupplyWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Power supply has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1353 + +alertPowerSupplyFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Power supply has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1354 + +------------------------------------------------------------------------------- +-- Memory Device Traps +------------------------------------------------------------------------------- + +alertMemoryDeviceNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device status is normal." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1402 + +alertMemoryDeviceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device status is noncritical." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1403 + +alertMemoryDeviceFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device status is critical." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1404 + +alertMemoryDeviceNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device status is non-recoverable." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1405 + +------------------------------------------------------------------------------- +-- Fan Enclosure Traps +------------------------------------------------------------------------------- + +alertFanEnclosureInsertion TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Fan enclosure has been inserted into system." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Insertion" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1452 + +alertFanEnclosureRemoval TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Fan enclosure has been removed from system." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Removal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1453 + +alertFanEnclosureExtendedRemoval TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Fan enclosure has been removed from system for an extended amount of time." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Extended Removal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1454 + +------------------------------------------------------------------------------- +-- AC Power Cord Traps +------------------------------------------------------------------------------- + +alertACPowerCordNoPowerNonRedundant TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"AC power cord does not have power, and the reduncancy mode +for its AC power switch has been set to non-redundant." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord No Power Non-redundant" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1501 + +alertACPowerCordNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"AC power cord has regained power." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1502 + +alertACPowerCordFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"AC power cord has lost power." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1504 + +------------------------------------------------------------------------------- +-- Hardware Log Traps +------------------------------------------------------------------------------- + +alertLogNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Log size is no longer near or at capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1552 + +alertLogWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Log size is near capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1553 + +alertLogFull TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Log size is at capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Full" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1554 + +------------------------------------------------------------------------------- +-- Processor Device Status Traps +------------------------------------------------------------------------------- + +alertProcessorDeviceStatusNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Processor device status has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1602 + +alertProcessorDeviceStatusWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Processor device status has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1603 + +alertProcessorDeviceStatusFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Processor device status has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1604 + +------------------------------------------------------------------------------- +-- Device Traps +------------------------------------------------------------------------------- + +alertDeviceAdd TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Device added to system." + + --Novell NMS trap annotation + --#TYPE "Server Device Add" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1651 + +alertDeviceRemove TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Device removed from system." + + --Novell NMS trap annotation + --#TYPE "Server Device Remove" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1652 + +alertDeviceConfigError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Device configuration error detected." + + --Novell NMS trap annotation + --#TYPE "Server Device Config Error" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1653 + +------------------------------------------------------------------------------- +-- Battery Traps +------------------------------------------------------------------------------- + +alertBatteryNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Battery has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Battery Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1702 + +alertBatteryWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Battery has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Battery Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1703 + +alertBatteryFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Battery has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Battery Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1704 + +------------------------------------------------------------------------------- +-- SD Card Device Traps +------------------------------------------------------------------------------- + +alertSDCardDeviceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"SD card device has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server SD Card Device Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1753 + +alertSDCardDeviceFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"SD card device has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server SD Card Device Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1754 + +------------------------------------------------------------------------------- +-- +-- Enhanced Traps +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Miscellaneous Traps +------------------------------------------------------------------------------- + +enhancedAlertSystemUp TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Server Administrator has completed its initialization." + + --Novell NMS trap annotation + --#TYPE "Server Administrator Startup Complete" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5001 + +enhancedAlertThermalShutdown TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Thermal shutdown protection has been initiated." + + --Novell NMS trap annotation + --#TYPE "Server Thermal Shutdown" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 5004 + +enhancedAlertAutomaticSystemRecovery TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Automatic system recovery (ASR) was performed." + + --Novell NMS trap annotation + --#TYPE "Server Automatic System Recovery" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5006 + +enhancedAlertUserHostSystemReset TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"User has initiated host system reset." + + --Novell NMS trap annotation + --#TYPE "Server User Host System Reset" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5007 + +enhancedAlertSystemPeakPowerNewPeak TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"System peak power sensor has detected a new peak value." + + --Novell NMS trap annotation + --#TYPE "Server System Peak Power New Peak" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5013 + +enhancedAlertSystemSoftwareEvent TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"System software event has occurred." + + --Novell NMS trap annotation + --#TYPE "Server System Software Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5014 + +------------------------------------------------------------------------------- +-- Temperature Probe Traps +------------------------------------------------------------------------------- + +enhancedAlertTemperatureProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Temperature probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5052 + +enhancedAlertTemperatureProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Temperature probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5053 + +enhancedAlertTemperatureProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Temperature probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5054 + +enhancedAlertTemperatureProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Temperature probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5055 + +------------------------------------------------------------------------------- +-- Cooling Device Traps +------------------------------------------------------------------------------- + +enhancedAlertCoolingDeviceNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Cooling device sensor has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5102 + +enhancedAlertCoolingDeviceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Cooling device sensor has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5103 + +enhancedAlertCoolingDeviceFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Cooling device sensor has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5104 + +enhancedAlertCoolingDeviceNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Cooling device sensor has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5105 + +------------------------------------------------------------------------------- +-- Voltage Probe Traps +------------------------------------------------------------------------------- + +enhancedAlertVoltageProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Voltage probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5152 + +enhancedAlertVoltageProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Voltage probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5153 + +enhancedAlertVoltageProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Voltage probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5154 + +enhancedAlertVoltageProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Voltage probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5155 + +------------------------------------------------------------------------------- +-- Amperage Probe Traps +------------------------------------------------------------------------------- + +enhancedAlertAmperageProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Amperage probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5202 + +enhancedAlertAmperageProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Amperage probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5203 + +enhancedAlertAmperageProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Amperage probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5204 + +enhancedAlertAmperageProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Amperage probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5205 + +------------------------------------------------------------------------------- +-- Chassis Intrusion Traps +------------------------------------------------------------------------------- + +enhancedAlertChassisIntrusionNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Chassis intrusion has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Chassis Intrusion Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5252 + +enhancedAlertChassisIntrusionDetected TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Chassis intrusion has been detected." + + --Novell NMS trap annotation + --#TYPE "Server Chassis Intrusion Detected" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5254 + +------------------------------------------------------------------------------- +-- Redundancy Traps +------------------------------------------------------------------------------- + +enhancedAlertRedundancyNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Redundancy has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5304 + +enhancedAlertRedundancyDegraded TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Redundancy has been degraded." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Degraded" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5305 + +enhancedAlertRedundancyLost TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Redundancy has been lost." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Lost" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5306 + +------------------------------------------------------------------------------- +-- Power Supply Traps +------------------------------------------------------------------------------- + +enhancedAlertPowerSupplyNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Power supply has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5352 + +enhancedAlertPowerSupplyWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Power supply has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5353 + +enhancedAlertPowerSupplyFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Power supply has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5354 + +------------------------------------------------------------------------------- +-- Memory Device Traps +------------------------------------------------------------------------------- + +enhancedAlertMemoryDeviceNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device status is normal." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5402 + +enhancedAlertMemoryDeviceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device status is noncritical." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5403 + +enhancedAlertMemoryDeviceFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device status is critical." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5404 + +enhancedAlertMemoryDeviceNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Memory device status is non-recoverable." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5405 + +------------------------------------------------------------------------------- +-- Fan Enclosure Traps +------------------------------------------------------------------------------- + +enhancedAlertFanEnclosureInsertion TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Fan enclosure has been inserted into system." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Insertion" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5452 + +enhancedAlertFanEnclosureRemoval TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Fan enclosure has been removed from system." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Removal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5453 + +enhancedAlertFanEnclosureExtendedRemoval TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Fan enclosure has been removed from system for an extended amount of time." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Extended Removal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5454 + +------------------------------------------------------------------------------- +-- AC Power Cord Traps +------------------------------------------------------------------------------- + +enhancedAlertACPowerCordNoPowerNonRedundant TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"AC power cord does not have power, and the reduncancy mode +for its AC power switch has been set to non-redundant." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord No Power Non-redundant" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5501 + +enhancedAlertACPowerCordNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"AC power cord has regained power." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5502 + +enhancedAlertACPowerCordFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"AC power cord has lost power." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5504 + +------------------------------------------------------------------------------- +-- Hardware Log Traps +------------------------------------------------------------------------------- + +enhancedAlertLogNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Log size is no longer near or at capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5552 + +enhancedAlertLogWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Log size is near capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5553 + +enhancedAlertLogFull TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Log size is at capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Full" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5554 + +------------------------------------------------------------------------------- +-- Processor Device Status Traps +------------------------------------------------------------------------------- + +enhancedAlertProcessorDeviceStatusNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Processor device status has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5602 + +enhancedAlertProcessorDeviceStatusWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Processor device status has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5603 + +enhancedAlertProcessorDeviceStatusFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Processor device status has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5604 + +------------------------------------------------------------------------------- +-- Device Traps +------------------------------------------------------------------------------- + +enhancedAlertDeviceAdd TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Device added to system." + + --Novell NMS trap annotation + --#TYPE "Server Device Add" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5651 + +enhancedAlertDeviceRemove TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Device removed from system." + + --Novell NMS trap annotation + --#TYPE "Server Device Remove" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5652 + +enhancedAlertDeviceConfigError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Device configuration error detected." + + --Novell NMS trap annotation + --#TYPE "Server Device Config Error" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5653 + +------------------------------------------------------------------------------- +-- Battery Traps +------------------------------------------------------------------------------- + +enhancedAlertBatteryNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Battery has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Battery Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 5702 + +enhancedAlertBatteryWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Battery has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Battery Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5703 + +enhancedAlertBatteryFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"Battery has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Battery Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5704 + +------------------------------------------------------------------------------- +-- SD Card Device Traps +------------------------------------------------------------------------------- + +enhancedAlertSDCardDeviceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"SD card device has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server SD Card Device Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5753 + +enhancedAlertSDCardDeviceFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData, + alertMsgID, + alertSystemFQDN, + alertServiceTag, + alertChassisServiceTag } + DESCRIPTION +"SD card device has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server SD Card Device Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 5754 + + +END + +------------------------------------------------------------------------------- +-- End MIB +------------------------------------------------------------------------------- + diff --git a/mibs/MIB-Dell-CM b/mibs/MIB-Dell-CM new file mode 100755 index 0000000000..c2d30899e3 --- /dev/null +++ b/mibs/MIB-Dell-CM @@ -0,0 +1,353 @@ +-- +-- +-- Title: Change Management MIB +-- +-- Version: 1.0.7 +-- +-- Release Date: Jul 2004 +-- +-- Description: This file defines the change management MIB that is +-- implemented by the Server Administrator Update Service. +-- The MIB defines objects that make change management data available to SNMP +-- management applications. The MIB models inventory data described by the +-- inventory XML schema contained in the CM SDK Specification. Refer to this +-- for details on the inventory data obtained by the inventory collector. +-- +-- Copyright (c) 2000-2004 Dell Inc. +-- All Rights Reserved. +-- +-- Note: The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- OID Format Legend: +-- = attribute ID +-- = index ID +-- +-- + +-- +-- Begin MIB +-- + +MIB-Dell-CM DEFINITIONS ::= BEGIN + +IMPORTS + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB; + +-- +-- Object Identifiers +-- + +-- Enterprise ID +dell OBJECT IDENTIFIER ::= { enterprises 674 } + +-- Dell Groups +-- The cm group holds Change Management information. See the CM SDK +-- Specification for details. +cm OBJECT IDENTIFIER ::= { dell 10899 } + +-- Change Management Groups +inventoryGroup OBJECT IDENTIFIER ::= { cm 1 } +operatingSystemGroup OBJECT IDENTIFIER ::= { cm 2 } + +-- Product Groups +productID OBJECT IDENTIFIER ::= { cm 100 } + +-- +-- Textual Conventions +-- + +SystemID ::= OCTET STRING (SIZE (16)) +Unsigned16BitRange ::= INTEGER (0..65535) + + +-- +-- System Management Inventory +-- +-- OID Format: 1.3.6.1.4.1.674.10899.1.1 +-- + +inventoryLocale OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the locale for the system." + ::= { inventoryGroup 1 } + +inventorySchemaVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the version of the inventory schema + implemented by this system." + ::= { inventoryGroup 2 } + +inventorySystemID OBJECT-TYPE + SYNTAX SystemID + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the System ID for the system." + ::= { inventoryGroup 3 } + +-- +-- Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10899.1.5 +-- + +deviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF DeviceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This defines a table of versioned devices as inventoried by the + product." + ::= { inventoryGroup 5 } + +deviceEntry OBJECT-TYPE + SYNTAX DeviceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This defines a row of versioned devices as inventoried by the + product." + INDEX { deviceIndex } + ::= { deviceTable 1 } + +DeviceEntry ::= SEQUENCE { + deviceIndex Unsigned16BitRange, -- INDEX Item + deviceComponentID INTEGER, + deviceDisplayString DisplayString, + deviceVendorID OCTET STRING, + deviceDeviceID OCTET STRING, + deviceSubID OCTET STRING, + deviceSubVendorID OCTET STRING +} + +deviceIndex OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the unique index for this device." + ::= { deviceEntry 1 } + +deviceComponentID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines an optional component id field for the + device." + ::= { deviceEntry 2 } + +deviceDisplayString OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute provides a displayable string that describes the + device." + ::= { deviceEntry 3 } + +deviceVendorID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute represents the ID for the vendor supplying + the device." + ::= { deviceEntry 4 } + +deviceDeviceID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute represents the ID for the device." + ::= { deviceEntry 5 } + +deviceSubID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute provides additional device identification + information." + ::= { deviceEntry 6 } + +deviceSubVendorID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute provides additional vendor identification + information." + ::= { deviceEntry 7 } + +-- +-- Application Table +-- +-- OID Format: 1.3.6.1.4.1.674.10899.1.6 +-- + +applicationTable OBJECT-TYPE + SYNTAX SEQUENCE OF ApplicationEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This defines a table of application information for the system." + ::= { inventoryGroup 6 } + +applicationEntry OBJECT-TYPE + SYNTAX ApplicationEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This defines a row of application information for the system." + INDEX { applicationIndex } + ::= { applicationTable 1 } + +ApplicationEntry ::= SEQUENCE { + applicationIndex Unsigned16BitRange, -- INDEX Item + -- Device index for cross-indexing + applicationDeviceIndex Unsigned16BitRange, + applicationComponentType DisplayString, + applicationVersion DisplayString, + applicationDisplayString DisplayString, + applicationSubComponentID DisplayString +} + +applicationIndex OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the unique index for this application." + ::= { applicationEntry 1 } + + +applicationDeviceIndex OBJECT-TYPE + SYNTAX Unsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines a cross-index to the device table for the + application." + ::= { applicationEntry 2 } + +applicationComponentType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute identifies the type of application reported." + ::= { applicationEntry 3 } + +applicationVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute identifies the version of the application." + ::= { applicationEntry 4 } + +applicationDisplayString OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute provides a user visible display string that + describes the application." + ::= { applicationEntry 5 } + +applicationSubComponentID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute provides the sub component id for the + application. This is usually valid on ESM device + reporting." + ::= { applicationEntry 6 } + +-- +-- Operating System Group +-- +-- OID Format: 1.3.6.1.4.1.674.10899.2 +-- + +operatingSystemVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the vendor of the Operating System." + ::= { operatingSystemGroup 1 } + +operatingSystemMajorVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the major version of the Operating System." + ::= { operatingSystemGroup 2 } + +operatingSystemMinorVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the minor version of the Operating System." + ::= { operatingSystemGroup 3 } + +operatingSystemSPMajorVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the Operating System's Service Pack major version." + ::= { operatingSystemGroup 5 } + +operatingSystemSPMinorVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the Operating System's Service Pack minor version." + ::= { operatingSystemGroup 6 } + +operatingSystemArchitecture OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the Operating System's architecture." + ::= { operatingSystemGroup 7 } + +-- +-- Product ID group +-- +-- OID Format: 1.3.6.1.4.1.674.10899.100.x +-- + +productIDDisplayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the display name of the product." + ::= { productID 1 } + +productIDDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines a short description of the product." + ::= { productID 2 } + +productIDVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the name of the manufacturer of the product." + ::= { productID 3 } + +productIDVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This attribute defines the version of the product." + ::= { productID 4 } + +productIDBuildNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION "This attribute defines the software build number of the product." + ::= { productID 5 } + +END diff --git a/mibs/MIB-Dell-OME b/mibs/MIB-Dell-OME new file mode 100755 index 0000000000..d7c787540a --- /dev/null +++ b/mibs/MIB-Dell-OME @@ -0,0 +1,194 @@ +------------------------------------------------------------------------------- +-- OM Essentials MIB : OME.mib +-- +-- Copyright (c) 2012 Dell Inc. +-- All Rights Reserved. +-- +-- The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- MIB Version 1.1 30 Oct 2012 +-- +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Begin MIB +------------------------------------------------------------------------------- + +MIB-Dell-OME DEFINITIONS ::= BEGIN + +IMPORTS + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + DisplayString + FROM RFC1213-MIB; + + +------------------------------------------------------------------------------- +-- OME Branch Location (.1.3.6.1.4.1.674.11000.1000.100) +------------------------------------------------------------------------------- + +dell OBJECT IDENTIFIER ::= { enterprises 674 } +enterpriseSW OBJECT IDENTIFIER ::= { dell 11000 } +sysMgmtBranch OBJECT IDENTIFIER ::= { enterpriseSW 1000 } +omEssentialsMIB OBJECT IDENTIFIER ::= { sysMgmtBranch 100 } +omEssentialsTrap OBJECT IDENTIFIER ::= { omEssentialsMIB 1 } + +------------------------------------------------------------------------------- +-- +-- Custom Types +-- +------------------------------------------------------------------------------- + +DellString ::= DisplayString (SIZE (0..512)) +DellString1 ::= DisplayString (SIZE (0..128)) + +------------------------------------------------------------------------------- +-- +-- Trap Attributes (Varbinds) +-- +------------------------------------------------------------------------------- + +omeAlertMessage OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Message in the alert." + ::= { omEssentialsTrap 1 } +omeAlertDevice OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of the device where alert originated." + ::= { omEssentialsTrap 2 } +omeAlertSeverity OBJECT-TYPE + SYNTAX DellString1 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Original severity of the alert." + ::= { omEssentialsTrap 3 } + +------------------------------------------------------------------------------- +-- +-- Traps +-- +------------------------------------------------------------------------------- + +omeTestAlert TRAP-TYPE + ENTERPRISE omEssentialsTrap + VARIABLES { omeAlertMessage, omeAlertDevice, omeAlertSeverity } + DESCRIPTION + "Test alert forwarded from OM Essentials." + + --#TYPE "Test alert forwarded from OM Essentials." + --#SUMMARY "Test alert from OM Essentials. Sending device: %s, Severity: %s, Message: %s." + --#ARGUMENTS {1,2,0} + --#SEVERITY INFORMATIONAL + ::= 1 + +omeAlertSystemUp TRAP-TYPE + ENTERPRISE omEssentialsTrap + VARIABLES { omeAlertMessage, omeAlertDevice } + DESCRIPTION + "System up message from OM Essentials. Sent when OM Essentials detects a device has come online." + + --#TYPE "System Up Message from OM Essentials" + --#SUMMARY "%s: %s" + --#ARGUMENTS {0,1} + --#SEVERITY INFORMATIONAL + + ::= 1000 + +omeAlertSystemDown TRAP-TYPE + ENTERPRISE omEssentialsTrap + VARIABLES { omeAlertMessage, omeAlertDevice } + DESCRIPTION + "System down message from OM Essentials. Sent when OM Essentials detects a device has gone offline." + + --#TYPE "System Down Message from OM Essentials" + --#SUMMARY "%s: %s" + --#ARGUMENTS {0,1} + --#SEVERITY CRITICAL + + ::= 1001 + +omeAlertForwardedAlert TRAP-TYPE + ENTERPRISE omEssentialsTrap + VARIABLES { omeAlertMessage, omeAlertDevice, omeAlertSeverity } + DESCRIPTION + "Forwarded alert from OM Essentials. The event may have originated as an SNMP trap or CIM indication to the OM Essentials Console. The alert format is normalized." + + --#TYPE "Forwarded Alert from OM Essentials" + --#SUMMARY "Forwarded Alert from OM Essentials. Sending device: %s, Severity: %s, Message: %s." + --#ARGUMENTS {1,2,0} + --#SEVERITY INFORMATIONAL + ::= 2000 + +-- +-- Device Status Internal Alerts. +-- + +omeAlertUnknownStatus TRAP-TYPE + ENTERPRISE omEssentialsTrap + VARIABLES { omeAlertMessage, omeAlertDevice } + DESCRIPTION + "System monitoring alert from Essentials. Sent when status of the remote device is Unknown." + + --#TYPE "Status Alert" + --#SUMMARY "Device %s has changed status to Unknown." + --#ARGUMENTS {1} + --#SEVERITY MINOR + ::= 3001 + +omeAlertNormalStatus TRAP-TYPE + ENTERPRISE omEssentialsTrap + VARIABLES { omeAlertMessage, omeAlertDevice } + DESCRIPTION + "System monitoring alert from Essentials. Sent when status of the remote device is Normal." + + --#TYPE "Status Alert" + --#SUMMARY "Device %s has changed status to Normal." + --#ARGUMENTS {1} + --#SEVERITY INFORMATIONAL + ::= 3002 + +omeAlertWarningStatus TRAP-TYPE + ENTERPRISE omEssentialsTrap + VARIABLES { omeAlertMessage, omeAlertDevice } + DESCRIPTION + "System monitoring alert from Essentials. Sent when status of the remote device is Warning." + + --#TYPE "Status Alert" + --#SUMMARY "Device %s has changed status to Warning." + --#ARGUMENTS {1} + --#SEVERITY MINOR + ::= 3003 + +omeAlertCriticalStatus TRAP-TYPE + ENTERPRISE omEssentialsTrap + VARIABLES { omeAlertMessage, omeAlertDevice } + DESCRIPTION + "System monitoring alert from Essentials. Sent when status of the remote device is Critical." + + --#TYPE "Status Alert" + --#SUMMARY "Device %s has changed status to Critical." + --#ARGUMENTS {1} + --#SEVERITY CRITICAL + ::= 3004 + +END + +------------------------------------------------------------------------------- +-- End MIB +------------------------------------------------------------------------------- diff --git a/mibs/StorageManagement-MIB b/mibs/StorageManagement-MIB old mode 100644 new mode 100755 index a13b71d04d..86aef71684 --- a/mibs/StorageManagement-MIB +++ b/mibs/StorageManagement-MIB @@ -1,8607 +1,8970 @@ --- --- dcstorag.mib --- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 240 --- Monday, September 02, 2013 at 16:26:07 --- - --- Copyright (c) 2002 Dell --- Module Name: dcstorag.mib --- Abstract: --- Defines the Dell OpenManage Storage Management SNMP interface. --- Authors: --- --- Revision History: --- KEMR (10/23/02) 0.1 - Original draft --- --- IMPORTANT NOTE --- MG-SOFT MibBuilder will be used as the tool to change this MIB. Because of the way the MG-SOFT MIB tools work, a copy --- of the intermediate file with the extension .bui will be kept in SourceSafe along with the ASCII .mib version. When --- any changes are made to the MIB they will have to be made to the .bui file using MibBuilder and then exported to the --- .mib file. If you open the .mib version of the MIB in MibBuilder, the compiler is run in on the fly and ALL comments --- will be removed. This is a "feature" of the tool and is beyond our control. - - StorageManagement-MIB DEFINITIONS ::= BEGIN - - IMPORTS - OBJECT-TYPE - FROM RFC-1212 - TRAP-TYPE - FROM RFC-1215 - enterprises - FROM RFC1155-SMI - DisplayString - FROM RFC1213-MIB; - - --- --- Type definitions --- - - DellStatus ::= INTEGER - { - other(1), - unknown(2), - ok(3), - nonCritical(4), - critical(5), - nonRecoverable(6) - } - - --- --- Node definitions --- - - -- 1.3.6.1.4.1.674 - dell OBJECT IDENTIFIER ::= { enterprises 674 } - - - -- 1.3.6.1.4.1.674.10893 - storage OBJECT IDENTIFIER ::= { dell 10893 } - - - -- 1.3.6.1.4.1.674.10893.1 - software OBJECT IDENTIFIER ::= { storage 1 } - - --- The Storage Management MIB (Management Information Base) Group --- defines the properties that identify information about the Storage --- Management software product and the current status of the system it manages. - -- 1.3.6.1.4.1.674.10893.1.20 - storageManagement OBJECT IDENTIFIER ::= { software 20 } - - - -- 1.3.6.1.4.1.674.10893.1.20.1 - softwareVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Version number of the storage management component of the systems management software." - ::= { storageManagement 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.2 - globalStatus OBJECT-TYPE - SYNTAX INTEGER - { - critical(1), - warning(2), - normal(3), - unknown(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Global health information for the subsystem managed by - the Storage Management software. This global status is - customized for HP OpenView. Other applications should - refer to the agentSystemGlobalStatus entry in the - globalData object group. - - Possible values: - 1: Critical - 2: Warning - 3: Normal - 4: Unknown" - ::= { storageManagement 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.3 - softwareManufacturer OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Manufacturer information for the Storage Management software." - ::= { storageManagement 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.4 - softwareProduct OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Product information for the Storage Management software." - ::= { storageManagement 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.5 - softwareDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Product Description for the Storage Management software." - ::= { storageManagement 5 } - - --- The Storage Management Information Management Information Base (MIB) --- Group defines the properties that identify the Storage Management software SNMP agent. - -- 1.3.6.1.4.1.674.10893.1.20.100 - storageManagementInfo OBJECT IDENTIFIER ::= { storageManagement 100 } - - - -- 1.3.6.1.4.1.674.10893.1.20.100.1 - displayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Name of this management software for display purposes." - ::= { storageManagementInfo 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.100.2 - description OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A short description of this management software." - ::= { storageManagementInfo 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.100.3 - agentVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the management software manufacturer." - ::= { storageManagementInfo 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.100.4 - agentVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. Refer to softwareVersion." - ::= { storageManagementInfo 4 } - - --- The Global Data Management Information Base (MIB) Group defines the --- properties that identify status information about system that the --- Storage Management software is managing and about the Storage Management SNMP agent. - -- 1.3.6.1.4.1.674.10893.1.20.110 - globalData OBJECT IDENTIFIER ::= { storageManagement 110 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.1 - agentSystemGlobalStatus OBJECT-TYPE - SYNTAX INTEGER - { - normal(1), - warning(2), - nonCriticalError(3), - failure(4), - unknown(5) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. Please use the value: agentGlobalSystemStatus. - Note: Enumerated values have changed." - ::= { globalData 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.2 - agentLastGlobalStatus OBJECT-TYPE - SYNTAX INTEGER - { - normal(1), - warning(2), - nonCriticalError(3), - failure(4), - unknown(5) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. Please use the value: agentLastGlobalSystemStatus. - Note: Enumerated values have changed." - ::= { globalData 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.3 - agentTimeStamp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The last time that the agent values have been updated. - Universal time in sec since UTC 1/1/70." - ::= { globalData 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.4 - agentGetTimeout OBJECT-TYPE - SYNTAX INTEGER (1..10000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Suggested timeout value in milliseconds for how long - the SNMP getter should wait while attempting to poll - the SNMP agent." - ::= { globalData 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.5 - agentModifiers OBJECT-TYPE - SYNTAX INTEGER (1..10000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Agent functional modifiers, when set the modifier is active. - Bit definitions: - Bit 3: agent in debug mode. - All other bits are product specific - " - ::= { globalData 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.6 - agentRefreshRate OBJECT-TYPE - SYNTAX INTEGER (1..10000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The rate, given in seconds, at which the cached data for SNMP is refreshed. - The default value is 300 seconds, or 5 minutes." - ::= { globalData 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.7 - agentHostname OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { globalData 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.8 - agentIPAddress OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { globalData 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.9 - agentSoftwareStatus OBJECT-TYPE - SYNTAX INTEGER - { - databaseUp(1), - databaseDown(2) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { globalData 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.10 - agentSnmpVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. Refer to softwareVersion." - ::= { globalData 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.11 - agentMibVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Version of the Storage Management MIB." - ::= { globalData 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.12 - agentManagementSoftwareURLName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Universal Resource Locator (URL) of the systems management software." - ::= { globalData 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.13 - agentGlobalSystemStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Global health information for the subsystem managed by - the Storage Management software. This global status - should be used by applications other than HP OpenView. - HP OpenView should refer to the globalStatus in the root level object - group. This is a rollup for the entire agent including - any monitored devices. The status is intended to give - initiative to a snmp monitor to get further data when - this status is abnormal. - - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { globalData 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.14 - agentLastGlobalSystemStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The previous global status of the system managed by the Storage Management software. - - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { globalData 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.110.15 - agentSmartThermalShutdown OBJECT-TYPE - SYNTAX INTEGER - { - enabled(1), - disabled(2), - notApplicable(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the status of smart thermal shutdown for PV220S and PV221S enclosures. - Possible values: - 1: Enabled - 2: Disabled" - ::= { globalData 15 } - - --- The Physical Devices Management Information Base (MIB) group exposes --- information about the devices managed by the Storage Management --- software and their relationships to each other. --- This group and all of its associated tables and objects are not --- supported on Microsoft Windows Advanced Server Limited Edition --- 64-bit operating system (Windows.Net-64) on a PE7150. - -- 1.3.6.1.4.1.674.10893.1.20.130 - physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2 - channelTable OBJECT-TYPE - SYNTAX SEQUENCE OF ChannelEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of controller channels. The number of entries is - related to the number of channels supported by a RAID - controller. Perc2 RAID controller supports a max of 4 - channels per controller. The maximum number of entries is - implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1 - channelEntry OBJECT-TYPE - SYNTAX ChannelEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the channel table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { channelNumber } - ::= { channelTable 1 } - - - ChannelEntry ::= - SEQUENCE { - channelNumber - INTEGER, - channelName - DisplayString, - channelState - INTEGER, - channelSeverity - INTEGER, - channelTermination - INTEGER, - channelSCSIID - INTEGER, - channelRollUpStatus - DellStatus, - channelComponentStatus - DellStatus, - channelNexusID - DisplayString, - channelDataRate - DisplayString, - channelBusType - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.1 - channelNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this channel entry." - ::= { channelEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.2 - channelName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the channel as represented in Storage Management. - The name will include the word channel and the instance. - For example: Channel 1" - ::= { channelEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.3 - channelState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - online(3), - offline(4), - degraded(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of the channel. - Possible states: - 0: Unknown - 1: Ready - The I/O has resumed. - 2: Failed - 3: Online - 4: Offline - The I/O has paused. - 6: Degraded - " - ::= { channelEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.4 - channelSeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { channelEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.5 - channelTermination OBJECT-TYPE - SYNTAX INTEGER - { - wide(1), - narrow(2), - notTerminated(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of SCSI termination on this channel. - Termination is required for proper operation of this channel. - - 1: Wide Termination (16 bit) - 2: Narrow Termination (8 bit) - 3: Not Terminated" - ::= { channelEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.6 - channelSCSIID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The SCSI ID of the controller to which the channel belongs." - ::= { channelEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.7 - channelRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the channel state. - This is the combined status of the channel and its - components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { channelEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.8 - channelComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the channel itself with out without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { channelEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.9 - channelNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this channel." - ::= { channelEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.10 - channelDataRate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The data rate (SCSI speed) of the channel. Example: Ultra 320M SCSI" - ::= { channelEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.11 - channelBusType OBJECT-TYPE - SYNTAX INTEGER - { - scsi(1), - ide(2), - fibreChannel(3), - ssa(4), - usb(6), - sata(7), - sas(8), - pcie(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bus type of the channel. - Possible values: - 1: SCSI - 2: IDE - 3: Fibre Channel - 4: SSA - 6: USB - 7: SATA - 8: SAS - 9: PCIe" - ::= { channelEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3 - enclosureTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosureEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Enclosures. The number of entries is - related to number of enclosures discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1 - enclosureEntry OBJECT-TYPE - SYNTAX EnclosureEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Enclosure table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { enclosureNumber } - ::= { enclosureTable 1 } - - - EnclosureEntry ::= - SEQUENCE { - enclosureNumber - INTEGER, - enclosureName - DisplayString, - enclosureVendor - DisplayString, - enclosureState - INTEGER, - enclosureSeverity - INTEGER, - enclosureID - DisplayString, - enclosureProcessorVersion - DisplayString, - enclosureServiceTag - DisplayString, - enclosureAssetTag - DisplayString, - enclosureAssetName - DisplayString, - enclosureSplitBusPartNumber - DisplayString, - enclosureProductID - DisplayString, - enclosureKernelVersion - DisplayString, - enclosureESM1PartNumber - DisplayString, - enclosureESM2PartNumber - DisplayString, - enclosureType - INTEGER, - enclosureProcessor2Version - DisplayString, - enclosureConfig - INTEGER, - enclosureChannelNumber - INTEGER, - enclosureAlarm - INTEGER, - enclosureBackplanePartNumber - DisplayString, - enclosureSCSIID - INTEGER, - enclosureRollUpStatus - DellStatus, - enclosureComponentStatus - DellStatus, - enclosureNexusID - DisplayString, - enclosureFirmwareVersion - DisplayString, - enclosureSCSIRate - DisplayString, - enclosurePartNumber - DisplayString, - enclosureSerialNumber - DisplayString, - enclosureSASAddress - DisplayString, - enclosureOccupiedSlotCount - INTEGER, - enclosureTotalSlots - INTEGER, - enclosureEmptySlotCount - INTEGER, - enclosureExpressServiceCode - DisplayString - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.1 - enclosureNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of the enclosure entry." - ::= { enclosureEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.2 - enclosureName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The enclosure's name as represented in Storage Management." - ::= { enclosureEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.3 - enclosureVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The enclosure's (re)seller's name." - ::= { enclosureEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.4 - enclosureState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - online(3), - offline(4), - degraded(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of the enclosure - (which includes any devices connected to it.) - Possible states: - 0: Unknown - 1: Ready - 2: Failed - 3: Online - 4: Offline - 6: Degraded" - ::= { enclosureEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.5 - enclosureSeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { enclosureEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.6 - enclosureID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Represents unique id for an enclosure." - ::= { enclosureEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.7 - enclosureProcessorVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { enclosureEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.8 - enclosureServiceTag OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Enclosure identification used when consulting customer support." - ::= { enclosureEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.9 - enclosureAssetTag OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "User definable asset tag for the enclosure." - ::= { enclosureEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.10 - enclosureAssetName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "User definable asset name of the enclosure." - ::= { enclosureEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.11 - enclosureSplitBusPartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The enclosure's split bus part number." - ::= { enclosureEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.12 - enclosureProductID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The enclosure's product identification. This also corresponds to the enclosure type. - " - ::= { enclosureEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.13 - enclosureKernelVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - Refer to enclosureFirmwareVersion for the firmware version of the enclosure." - ::= { enclosureEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.14 - enclosureESM1PartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { enclosureEntry 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.15 - enclosureESM2PartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { enclosureEntry 15 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.16 - enclosureType OBJECT-TYPE - SYNTAX INTEGER - { - internal(1), - dELLPV200SPV201S(2), - dELLPV210SPV211S(3), - dELLPV220SPV221S(4), - dELLPV660F(5), - dELLPV224F(6), - dELLPV660F224F(7), - md1000(8), - md1120(9), - md1200(10), - md1220(11) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of this enclosure. - Possible values: - 1: Internal - 2: Dell PV200S (PV201S) - 3: Dell PV210S (PV211S) - 4: Dell PV220S (PV221S) - 5: Dell PV660F - 6: Dell PV224F - 7: Dell PV660F / PV224F - 8: Dell MD1000 - 9: Dell MD1120 - 10: Dell MD1200 - 11: Dell MD1220" - ::= { enclosureEntry 16 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.17 - enclosureProcessor2Version OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { enclosureEntry 17 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.18 - enclosureConfig OBJECT-TYPE - SYNTAX INTEGER - { - joined(1), - splitBus(2), - clustered(3), - unified(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current configuration of the enclosure's backplane. - Possible values: - 1: Joined - 2: Split Bus - 3: Clustered - 4: Unified" - ::= { enclosureEntry 18 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.19 - enclosureChannelNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The channel number, or bus, to which the enclosure is connected." - ::= { enclosureEntry 19 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.20 - enclosureAlarm OBJECT-TYPE - SYNTAX INTEGER - { - disabled(1), - enabled(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current status of the enclosure's alarm (PV220S, and PV221S only.) - Possible values: - 1: Disabled - 2: Enabled" - ::= { enclosureEntry 20 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.21 - enclosureBackplanePartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The part number of the enclosure's backplane." - ::= { enclosureEntry 21 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.22 - enclosureSCSIID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The SCSI ID of the controller to which this enclosure is attached." - ::= { enclosureEntry 22 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.23 - enclosureRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the enclosure state. - This is the combined status of the enclosure and its components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { enclosureEntry 23 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.24 - enclosureComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the enclosure itself without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { enclosureEntry 24 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.25 - enclosureNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this enclosure." - ::= { enclosureEntry 25 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.26 - enclosureFirmwareVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware version of the enclosure." - ::= { enclosureEntry 26 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.27 - enclosureSCSIRate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Actual SCSI rate in the enclosure. - " - ::= { enclosureEntry 27 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.28 - enclosurePartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The part number of the enclosure. - " - ::= { enclosureEntry 28 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.29 - enclosureSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Serial number of the enclosure. - " - ::= { enclosureEntry 29 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.30 - enclosureSASAddress OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The specified SAS address if this is a SAS enclosure. " - ::= { enclosureEntry 30 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.31 - enclosureOccupiedSlotCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the number of physical disk slots occupied in a storage enclosure. - Note: A value of 9999 indicates feature not available." - ::= { enclosureEntry 31 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.32 - enclosureTotalSlots OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the total number of physical slots in a storage enclosure; it includes total count of occupied and empty slots. - Note: A value of 9999 indicates feature not available. - " - ::= { enclosureEntry 32 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.33 - enclosureEmptySlotCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the number of empty physical disk slots in a storage enclosure. - Note: A value of 9999 indicates feature not available. - " - ::= { enclosureEntry 33 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.34 - enclosureExpressServiceCode OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Express Service Code (ESC) is base10 converted numerical value of service tag." - ::= { enclosureEntry 34 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4 - arrayDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF ArrayDiskEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Array Disks. The number of entries is - related to number of Array Disks discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1 - arrayDiskEntry OBJECT-TYPE - SYNTAX ArrayDiskEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Array Disk table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { arrayDiskNumber } - ::= { arrayDiskTable 1 } - - - ArrayDiskEntry ::= - SEQUENCE { - arrayDiskNumber - INTEGER, - arrayDiskName - DisplayString, - arrayDiskVendor - DisplayString, - arrayDiskState - INTEGER, - arrayDiskSeverity - INTEGER, - arrayDiskProductID - DisplayString, - arrayDiskSerialNo - DisplayString, - arrayDiskRevision - DisplayString, - arrayDiskEnclosureID - DisplayString, - arrayDiskChannel - INTEGER, - arrayDiskLengthInMB - INTEGER, - arrayDiskLengthInBytes - INTEGER, - arrayDiskLargestContiguousFreeSpaceInMB - INTEGER, - arrayDiskLargestContiguousFreeSpaceInBytes - INTEGER, - arrayDiskTargetID - INTEGER, - arrayDiskLunID - INTEGER, - arrayDiskUsedSpaceInMB - INTEGER, - arrayDiskUsedSpaceInBytes - INTEGER, - arrayDiskFreeSpaceInMB - INTEGER, - arrayDiskFreeSpaceInBytes - INTEGER, - arrayDiskBusType - INTEGER, - arrayDiskSpareState - INTEGER, - arrayDiskRollUpStatus - DellStatus, - arrayDiskComponentStatus - DellStatus, - arrayDiskDeviceName - DisplayString, - arrayDiskNexusID - DisplayString, - arrayDiskPartNumber - DisplayString, - arrayDiskSASAddress - DisplayString, - arrayDiskNegotiatedSpeed - INTEGER, - arrayDiskCapableSpeed - INTEGER, - arrayDiskSmartAlertIndication - INTEGER, - arrayDiskManufactureDay - DisplayString, - arrayDiskManufactureWeek - DisplayString, - arrayDiskManufactureYear - DisplayString, - arrayDiskMediaType - INTEGER, - arrayDiskDellCertified - INTEGER, - arrayDiskAltaVendorId - DisplayString, - arrayDiskAltaProductId - DisplayString, - arrayDiskAltaRevisionId - DisplayString, - arrayDiskEncryptionCapable - INTEGER, - arrayDiskEncrypted - INTEGER, - arrayDiskPowerState - INTEGER, - arrayDiskDriveWriteCache - INTEGER, - arrayDiskModelNumber - DisplayString, - arrayDiskLifeRemaining - INTEGER, - arrayDiskDriverVersion - DisplayString, - arrayDiskDeviceLifeStatus - INTEGER, - arrayDiskReadOnly - DisplayString, - arrayDiskRemainingRatedWriteEndurance - DisplayString, - arrayDiskSectorSize - INTEGER, - arrayDiskPICapable - INTEGER, - arrayDiskMaxLinkWidth - INTEGER, - arrayDiskNegotiatedLinkWidth - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.1 - arrayDiskNumber OBJECT-TYPE - SYNTAX INTEGER (1..1000000000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this array disk entry." - ::= { arrayDiskEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.2 - arrayDiskName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the array disk as represented in Storage Management." - ::= { arrayDiskEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.3 - arrayDiskVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The array disk's manufacturer's name." - ::= { arrayDiskEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.4 - arrayDiskState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - online(3), - offline(4), - degraded(6), - recovering(7), - removed(11), - non-raid(13), - notReady(14), - resynching(15), - replacing(22), - spinningDown(23), - rebuild(24), - noMedia(25), - formatting(26), - diagnostics(28), - predictiveFailure(34), - initializing(35), - foreign(39), - clear(40), - unsupported(41), - incompatible(53), - readOnly(56) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of the array disk. - Possible states: - 0: Unknown - 1: Ready - Available for use, but no RAID configuration has been assigned. - 2: Failed - Not operational. - 3: Online - Operational. RAID configuration has been assigned. - 4: Offline - The drive is not available to the RAID controller. - 6: Degraded - Refers to a fault-tolerant array/virtual disk that has a failed disk. - 7: Recovering - Refers to state of recovering from bad blocks on disks. - 11: Removed - Indicates that array disk has been removed. - 13: Non-RAID - Indicates that array disk is not a RAID capable disk - 14: Not Ready - Applicable for PCIeSSD devices indicating that the device is in locked state - 15: Resynching - Indicates one of the following types of disk operations: Transform Type, Reconfiguration, and Check Consistency. - 22: Replacing - Indicates copyback operation is in progress. - 23: Spinning Down - Transit state when the physical disk is spinning down for physical disk power management. - 24: Rebuild - 25: No Media - CD-ROM or removable disk has no media. - 26: Formatting - In the process of formatting. - 28: Diagnostics - Diagnostics are running. - 34: Predictive failure - 35: Initializing: Applies only to virtual disks on PERC, PERC 2/SC, and PERC 2/DC controllers. - 39: Foreign - 40: Clear - 41: Unsupported - 53: Incompatible - 56: Read Only - Applicable for PCIeSSD devices. Indicates that device has reached read-only state - - " - ::= { arrayDiskEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.5 - arrayDiskSeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { arrayDiskEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.6 - arrayDiskProductID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The model number of the array disk." - ::= { arrayDiskEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.7 - arrayDiskSerialNo OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The array disk's unique identification number from the manufacturer. - " - ::= { arrayDiskEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.8 - arrayDiskRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware version of the array disk." - ::= { arrayDiskEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.9 - arrayDiskEnclosureID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The SCSI ID of the enclosure processor to which this array disk belongs." - ::= { arrayDiskEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.10 - arrayDiskChannel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bus to which this array disk is connected." - ::= { arrayDiskEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.11 - arrayDiskLengthInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size in megabytes of the array disk. If this size is 0, it is smaller than a megabyte." - ::= { arrayDiskEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.12 - arrayDiskLengthInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the array disk in bytes that is less than - a megabyte. This size plus the arrayDiskLengthInMB is - the total size of the array disk." - ::= { arrayDiskEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.13 - arrayDiskLargestContiguousFreeSpaceInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size in megabytes of the largest contiguous free space - on the array disk. If this size is 0, it is less than a megabyte." - ::= { arrayDiskEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.14 - arrayDiskLargestContiguousFreeSpaceInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the largest contiguous free space on this - array disk in bytes that is less than a megabyte. - This size plus the arrayDiskLargestContiguousFreeSpaceInMB - is the total size of the largest contiguous free space on - the array disk." - ::= { arrayDiskEntry 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.15 - arrayDiskTargetID OBJECT-TYPE - SYNTAX INTEGER (0..15) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The SCSI target ID which this array disk is assigned. " - ::= { arrayDiskEntry 15 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.16 - arrayDiskLunID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The array disk's logical unit number. " - ::= { arrayDiskEntry 16 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.17 - arrayDiskUsedSpaceInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount in megabytes of the used space on the array - disk. If this size is 0, it is smaller than a megabyte." - ::= { arrayDiskEntry 17 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.18 - arrayDiskUsedSpaceInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size in bytes of the used space on the array disk - that is smaller than a megabyte. This size plus the - arrayDiskUsedSpaceInMB is the total amount of used space - on the array disk." - ::= { arrayDiskEntry 18 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.19 - arrayDiskFreeSpaceInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount in megabytes of the free space on the array - disk. If this size is 0, it is smaller than a megabyte." - ::= { arrayDiskEntry 19 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.20 - arrayDiskFreeSpaceInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size in bytes of the free space on the array disk - that is smaller than a megabyte. This size plus the - arrayDiskFreeSpaceInMB is the total amount of free space - on the array disk." - ::= { arrayDiskEntry 20 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.21 - arrayDiskBusType OBJECT-TYPE - SYNTAX INTEGER - { - scsi(1), - ide(2), - fibre(3), - ssa(4), - usb(6), - sata(7), - sas(8), - pcie(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bus type of the array disk. - Possible values: - 1: SCSI - 2: IDE - 3: Fibre Channel - 4: SSA - 6: USB - 7: SATA - 8: SAS - 9: PCIe" - ::= { arrayDiskEntry 21 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.22 - arrayDiskSpareState OBJECT-TYPE - SYNTAX INTEGER - { - memberVD(1), - memberDG(2), - globalHotSpare(3), - dedicatedHotSpare(4), - notASpare(5), - notApplicable(99) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the array disk as a spare. - Possible states: - 1 : disk is a member of a virtual disk - 2 : disk is a member of a disk group - 3 : disk is a global hot spare - 4 : disk is a dedicated hot spare - 5 : not a spare - 99: not applicable" - ::= { arrayDiskEntry 22 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.23 - arrayDiskRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the array disk state. - This is the combined status of the array disk and its components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { arrayDiskEntry 23 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.24 - arrayDiskComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the array disk itself without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { arrayDiskEntry 24 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.25 - arrayDiskDeviceName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The operating system device name for this disk. This property is only applicable to array disks attached to a RAID controller." - ::= { arrayDiskEntry 25 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.26 - arrayDiskNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this array disk." - ::= { arrayDiskEntry 26 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.27 - arrayDiskPartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The part number of the disk. - " - ::= { arrayDiskEntry 27 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.28 - arrayDiskSASAddress OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The specified SAS address if this is a SAS disk. - " - ::= { arrayDiskEntry 28 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.29 - arrayDiskNegotiatedSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The speed at which the drive is actually running in MPS (megabytes per second). - " - ::= { arrayDiskEntry 29 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.30 - arrayDiskCapableSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum speed at which the drive is capable of negotiating in MPS (megabytes per second). - " - ::= { arrayDiskEntry 30 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.31 - arrayDiskSmartAlertIndication OBJECT-TYPE - SYNTAX INTEGER - { - no(1), - yes(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicated whether the disk has received a predictive failure. - Possible values: - 1: No - disk has not received a predictive failure alert - 2: Yes - disk has received a predictive failure alert" - ::= { arrayDiskEntry 31 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.32 - arrayDiskManufactureDay OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The day of the week (1=Sunday thru 7=Saturday) on which this disk was manufactured." - ::= { arrayDiskEntry 32 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.33 - arrayDiskManufactureWeek OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The week (1 thru 53) in which this disk was manufactured." - ::= { arrayDiskEntry 33 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.34 - arrayDiskManufactureYear OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The four digit year in which this disk was manufactured." - ::= { arrayDiskEntry 34 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.35 - arrayDiskMediaType OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - hdd(2), - ssd(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Media type of the array disk. +-- +-- dcstorag.mib +-- MIB generated by MG-SOFT Visual MIB Builder Version 7.0 Build 240 +-- Monday, September 02, 2013 at 16:26:07 +-- + +-- Copyright (c) 2002 Dell +-- Module Name: dcstorag.mib +-- Abstract: +-- Defines the Dell OpenManage Storage Management SNMP interface. +-- Authors: +-- +-- Revision History: +-- KEMR (10/23/02) 0.1 - Original draft +-- +-- IMPORTANT NOTE +-- MG-SOFT MibBuilder will be used as the tool to change this MIB. Because of the way the MG-SOFT MIB tools work, a copy +-- of the intermediate file with the extension .bui will be kept in SourceSafe along with the ASCII .mib version. When +-- any changes are made to the MIB they will have to be made to the .bui file using MibBuilder and then exported to the +-- .mib file. If you open the .mib version of the MIB in MibBuilder, the compiler is run in on the fly and ALL comments +-- will be removed. This is a "feature" of the tool and is beyond our control. + + StorageManagement-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + enterprises + FROM RFC1155-SMI + DisplayString + FROM RFC1213-MIB; + + +-- +-- Type definitions +-- + + DellStatus ::= INTEGER + { + other(1), + unknown(2), + ok(3), + nonCritical(4), + critical(5), + nonRecoverable(6) + } + + +-- +-- Node definitions +-- + + -- 1.3.6.1.4.1.674 + dell OBJECT IDENTIFIER ::= { enterprises 674 } + + + -- 1.3.6.1.4.1.674.10893 + storage OBJECT IDENTIFIER ::= { dell 10893 } + + + -- 1.3.6.1.4.1.674.10893.1 + software OBJECT IDENTIFIER ::= { storage 1 } + + +-- The Storage Management MIB (Management Information Base) Group +-- defines the properties that identify information about the Storage +-- Management software product and the current status of the system it manages. + -- 1.3.6.1.4.1.674.10893.1.20 + storageManagement OBJECT IDENTIFIER ::= { software 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.1 + softwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Version number of the storage management component of the systems management software." + ::= { storageManagement 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.2 + globalStatus OBJECT-TYPE + SYNTAX INTEGER + { + critical(1), + warning(2), + normal(3), + unknown(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Global health information for the subsystem managed by + the Storage Management software. This global status is + customized for HP OpenView. Other applications should + refer to the agentSystemGlobalStatus entry in the + globalData object group. + + Possible values: + 1: Critical + 2: Warning + 3: Normal + 4: Unknown" + ::= { storageManagement 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.3 + softwareManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Manufacturer information for the Storage Management software." + ::= { storageManagement 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.4 + softwareProduct OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Product information for the Storage Management software." + ::= { storageManagement 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.5 + softwareDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Product Description for the Storage Management software." + ::= { storageManagement 5 } + + +-- The Storage Management Information Management Information Base (MIB) +-- Group defines the properties that identify the Storage Management software SNMP agent. + -- 1.3.6.1.4.1.674.10893.1.20.100 + storageManagementInfo OBJECT IDENTIFIER ::= { storageManagement 100 } + + + -- 1.3.6.1.4.1.674.10893.1.20.100.1 + displayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of this management software for display purposes." + ::= { storageManagementInfo 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.100.2 + description OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A short description of this management software." + ::= { storageManagementInfo 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.100.3 + agentVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the management software manufacturer." + ::= { storageManagementInfo 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.100.4 + agentVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Refer to softwareVersion." + ::= { storageManagementInfo 4 } + + +-- The Global Data Management Information Base (MIB) Group defines the +-- properties that identify status information about system that the +-- Storage Management software is managing and about the Storage Management SNMP agent. + -- 1.3.6.1.4.1.674.10893.1.20.110 + globalData OBJECT IDENTIFIER ::= { storageManagement 110 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.1 + agentSystemGlobalStatus OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + warning(2), + nonCriticalError(3), + failure(4), + unknown(5) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Please use the value: agentGlobalSystemStatus. + Note: Enumerated values have changed." + ::= { globalData 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.2 + agentLastGlobalStatus OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + warning(2), + nonCriticalError(3), + failure(4), + unknown(5) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Please use the value: agentLastGlobalSystemStatus. + Note: Enumerated values have changed." + ::= { globalData 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.3 + agentTimeStamp OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The last time that the agent values have been updated. + Universal time in sec since UTC 1/1/70." + ::= { globalData 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.4 + agentGetTimeout OBJECT-TYPE + SYNTAX INTEGER (1..10000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Suggested timeout value in milliseconds for how long + the SNMP getter should wait while attempting to poll + the SNMP agent." + ::= { globalData 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.5 + agentModifiers OBJECT-TYPE + SYNTAX INTEGER (1..10000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Agent functional modifiers, when set the modifier is active. + Bit definitions: + Bit 3: agent in debug mode. + All other bits are product specific + " + ::= { globalData 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.6 + agentRefreshRate OBJECT-TYPE + SYNTAX INTEGER (1..10000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate, given in seconds, at which the cached data for SNMP is refreshed. + The default value is 300 seconds, or 5 minutes." + ::= { globalData 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.7 + agentHostname OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { globalData 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.8 + agentIPAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { globalData 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.9 + agentSoftwareStatus OBJECT-TYPE + SYNTAX INTEGER + { + databaseUp(1), + databaseDown(2) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { globalData 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.10 + agentSnmpVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Refer to softwareVersion." + ::= { globalData 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.11 + agentMibVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Version of the Storage Management MIB." + ::= { globalData 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.12 + agentManagementSoftwareURLName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Universal Resource Locator (URL) of the systems management software." + ::= { globalData 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.13 + agentGlobalSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Global health information for the subsystem managed by + the Storage Management software. This global status + should be used by applications other than HP OpenView. + HP OpenView should refer to the globalStatus in the root level object + group. This is a rollup for the entire agent including + any monitored devices. The status is intended to give + initiative to a snmp monitor to get further data when + this status is abnormal. + + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { globalData 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.14 + agentLastGlobalSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The previous global status of the system managed by the Storage Management software. + + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { globalData 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.15 + agentSmartThermalShutdown OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + notApplicable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the status of smart thermal shutdown for PV220S and PV221S enclosures. + Possible values: + 1: Enabled + 2: Disabled" + ::= { globalData 15 } + + +-- The Physical Devices Management Information Base (MIB) group exposes +-- information about the devices managed by the Storage Management +-- software and their relationships to each other. +-- This group and all of its associated tables and objects are not +-- supported on Microsoft Windows Advanced Server Limited Edition +-- 64-bit operating system (Windows.Net-64) on a PE7150. + -- 1.3.6.1.4.1.674.10893.1.20.130 + physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2 + channelTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of controller channels. The number of entries is + related to the number of channels supported by a RAID + controller. Perc2 RAID controller supports a max of 4 + channels per controller. The maximum number of entries is + implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1 + channelEntry OBJECT-TYPE + SYNTAX ChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the channel table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { channelNumber } + ::= { channelTable 1 } + + + ChannelEntry ::= + SEQUENCE { + channelNumber + INTEGER, + channelName + DisplayString, + channelState + INTEGER, + channelSeverity + INTEGER, + channelTermination + INTEGER, + channelSCSIID + INTEGER, + channelRollUpStatus + DellStatus, + channelComponentStatus + DellStatus, + channelNexusID + DisplayString, + channelDataRate + DisplayString, + channelBusType + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.1 + channelNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this channel entry." + ::= { channelEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.2 + channelName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the channel as represented in Storage Management. + The name will include the word channel and the instance. + For example: Channel 1" + ::= { channelEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.3 + channelState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the channel. + Possible states: + 0: Unknown + 1: Ready - The I/O has resumed. + 2: Failed + 3: Online + 4: Offline - The I/O has paused. + 6: Degraded + " + ::= { channelEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.4 + channelSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { channelEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.5 + channelTermination OBJECT-TYPE + SYNTAX INTEGER + { + wide(1), + narrow(2), + notTerminated(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of SCSI termination on this channel. + Termination is required for proper operation of this channel. + + 1: Wide Termination (16 bit) + 2: Narrow Termination (8 bit) + 3: Not Terminated" + ::= { channelEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.6 + channelSCSIID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI ID of the controller to which the channel belongs." + ::= { channelEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.7 + channelRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the channel state. + This is the combined status of the channel and its + components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { channelEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.8 + channelComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the channel itself with out without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { channelEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.9 + channelNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this channel." + ::= { channelEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.10 + channelDataRate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The data rate (SCSI speed) of the channel. Example: Ultra 320M SCSI" + ::= { channelEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.11 + channelBusType OBJECT-TYPE + SYNTAX INTEGER + { + scsi(1), + ide(2), + fibreChannel(3), + ssa(4), + usb(6), + sata(7), + sas(8), + pcie(9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bus type of the channel. + Possible values: + 1: SCSI + 2: IDE + 3: Fibre Channel + 4: SSA + 6: USB + 7: SATA + 8: SAS + 9: PCIe" + ::= { channelEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3 + enclosureTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Enclosures. The number of entries is + related to number of enclosures discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1 + enclosureEntry OBJECT-TYPE + SYNTAX EnclosureEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Enclosure table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { enclosureNumber } + ::= { enclosureTable 1 } + + + EnclosureEntry ::= + SEQUENCE { + enclosureNumber + INTEGER, + enclosureName + DisplayString, + enclosureVendor + DisplayString, + enclosureState + INTEGER, + enclosureSeverity + INTEGER, + enclosureID + DisplayString, + enclosureProcessorVersion + DisplayString, + enclosureServiceTag + DisplayString, + enclosureAssetTag + DisplayString, + enclosureAssetName + DisplayString, + enclosureSplitBusPartNumber + DisplayString, + enclosureProductID + DisplayString, + enclosureKernelVersion + DisplayString, + enclosureESM1PartNumber + DisplayString, + enclosureESM2PartNumber + DisplayString, + enclosureType + INTEGER, + enclosureProcessor2Version + DisplayString, + enclosureConfig + INTEGER, + enclosureChannelNumber + INTEGER, + enclosureAlarm + INTEGER, + enclosureBackplanePartNumber + DisplayString, + enclosureSCSIID + INTEGER, + enclosureRollUpStatus + DellStatus, + enclosureComponentStatus + DellStatus, + enclosureNexusID + DisplayString, + enclosureFirmwareVersion + DisplayString, + enclosureSCSIRate + DisplayString, + enclosurePartNumber + DisplayString, + enclosureSerialNumber + DisplayString, + enclosureSASAddress + DisplayString, + enclosureOccupiedSlotCount + INTEGER, + enclosureTotalSlots + INTEGER, + enclosureEmptySlotCount + INTEGER, + enclosureExpressServiceCode + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.1 + enclosureNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of the enclosure entry." + ::= { enclosureEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.2 + enclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure's name as represented in Storage Management." + ::= { enclosureEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.3 + enclosureVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure's (re)seller's name." + ::= { enclosureEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.4 + enclosureState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the enclosure + (which includes any devices connected to it.) + Possible states: + 0: Unknown + 1: Ready + 2: Failed + 3: Online + 4: Offline + 6: Degraded" + ::= { enclosureEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.5 + enclosureSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { enclosureEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.6 + enclosureID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Represents unique id for an enclosure." + ::= { enclosureEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.7 + enclosureProcessorVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { enclosureEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.8 + enclosureServiceTag OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Enclosure identification used when consulting customer support." + ::= { enclosureEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.9 + enclosureAssetTag OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "User definable asset tag for the enclosure." + ::= { enclosureEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.10 + enclosureAssetName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "User definable asset name of the enclosure." + ::= { enclosureEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.11 + enclosureSplitBusPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure's split bus part number." + ::= { enclosureEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.12 + enclosureProductID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure's product identification. This also corresponds to the enclosure type. + " + ::= { enclosureEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.13 + enclosureKernelVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + Refer to enclosureFirmwareVersion for the firmware version of the enclosure." + ::= { enclosureEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.14 + enclosureESM1PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { enclosureEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.15 + enclosureESM2PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { enclosureEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.16 + enclosureType OBJECT-TYPE + SYNTAX INTEGER + { + internal(1), + dELLPV200SPV201S(2), + dELLPV210SPV211S(3), + dELLPV220SPV221S(4), + dELLPV660F(5), + dELLPV224F(6), + dELLPV660F224F(7), + md1000(8), + md1120(9), + md1200(10), + md1220(11) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of this enclosure. + Possible values: + 1: Internal + 2: Dell PV200S (PV201S) + 3: Dell PV210S (PV211S) + 4: Dell PV220S (PV221S) + 5: Dell PV660F + 6: Dell PV224F + 7: Dell PV660F / PV224F + 8: Dell MD1000 + 9: Dell MD1120 + 10: Dell MD1200 + 11: Dell MD1220" + ::= { enclosureEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.17 + enclosureProcessor2Version OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { enclosureEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.18 + enclosureConfig OBJECT-TYPE + SYNTAX INTEGER + { + joined(1), + splitBus(2), + clustered(3), + unified(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current configuration of the enclosure's backplane. + Possible values: + 1: Joined + 2: Split Bus + 3: Clustered + 4: Unified" + ::= { enclosureEntry 18 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.19 + enclosureChannelNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The channel number, or bus, to which the enclosure is connected." + ::= { enclosureEntry 19 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.20 + enclosureAlarm OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1), + enabled(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current status of the enclosure's alarm (PV220S, and PV221S only.) + Possible values: + 1: Disabled + 2: Enabled" + ::= { enclosureEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.21 + enclosureBackplanePartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the enclosure's backplane." + ::= { enclosureEntry 21 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.22 + enclosureSCSIID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI ID of the controller to which this enclosure is attached." + ::= { enclosureEntry 22 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.23 + enclosureRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the enclosure state. + This is the combined status of the enclosure and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { enclosureEntry 23 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.24 + enclosureComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the enclosure itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { enclosureEntry 24 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.25 + enclosureNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this enclosure." + ::= { enclosureEntry 25 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.26 + enclosureFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The firmware version of the enclosure." + ::= { enclosureEntry 26 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.27 + enclosureSCSIRate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Actual SCSI rate in the enclosure. + " + ::= { enclosureEntry 27 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.28 + enclosurePartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the enclosure. + " + ::= { enclosureEntry 28 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.29 + enclosureSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Serial number of the enclosure. + " + ::= { enclosureEntry 29 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.30 + enclosureSASAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The specified SAS address if this is a SAS enclosure. " + ::= { enclosureEntry 30 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.31 + enclosureOccupiedSlotCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Shows the number of physical disk slots occupied in a storage enclosure. + Note: A value of 9999 indicates feature not available." + ::= { enclosureEntry 31 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.32 + enclosureTotalSlots OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Shows the total number of physical slots in a storage enclosure; it includes total count of occupied and empty slots. + Note: A value of 9999 indicates feature not available. + " + ::= { enclosureEntry 32 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.33 + enclosureEmptySlotCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Shows the number of empty physical disk slots in a storage enclosure. + Note: A value of 9999 indicates feature not available. + " + ::= { enclosureEntry 33 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.34 + enclosureExpressServiceCode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Express Service Code (ESC) is base10 converted numerical value of service tag." + ::= { enclosureEntry 34 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4 + arrayDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArrayDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Array Disks. The number of entries is + related to number of Array Disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1 + arrayDiskEntry OBJECT-TYPE + SYNTAX ArrayDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Array Disk table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { arrayDiskNumber } + ::= { arrayDiskTable 1 } + + + ArrayDiskEntry ::= + SEQUENCE { + arrayDiskNumber + INTEGER, + arrayDiskName + DisplayString, + arrayDiskVendor + DisplayString, + arrayDiskState + INTEGER, + arrayDiskSeverity + INTEGER, + arrayDiskProductID + DisplayString, + arrayDiskSerialNo + DisplayString, + arrayDiskRevision + DisplayString, + arrayDiskEnclosureID + DisplayString, + arrayDiskChannel + INTEGER, + arrayDiskLengthInMB + INTEGER, + arrayDiskLengthInBytes + INTEGER, + arrayDiskLargestContiguousFreeSpaceInMB + INTEGER, + arrayDiskLargestContiguousFreeSpaceInBytes + INTEGER, + arrayDiskTargetID + INTEGER, + arrayDiskLunID + INTEGER, + arrayDiskUsedSpaceInMB + INTEGER, + arrayDiskUsedSpaceInBytes + INTEGER, + arrayDiskFreeSpaceInMB + INTEGER, + arrayDiskFreeSpaceInBytes + INTEGER, + arrayDiskBusType + INTEGER, + arrayDiskSpareState + INTEGER, + arrayDiskRollUpStatus + DellStatus, + arrayDiskComponentStatus + DellStatus, + arrayDiskDeviceName + DisplayString, + arrayDiskNexusID + DisplayString, + arrayDiskPartNumber + DisplayString, + arrayDiskSASAddress + DisplayString, + arrayDiskNegotiatedSpeed + INTEGER, + arrayDiskCapableSpeed + INTEGER, + arrayDiskSmartAlertIndication + INTEGER, + arrayDiskManufactureDay + DisplayString, + arrayDiskManufactureWeek + DisplayString, + arrayDiskManufactureYear + DisplayString, + arrayDiskMediaType + INTEGER, + arrayDiskDellCertified + INTEGER, + arrayDiskAltaVendorId + DisplayString, + arrayDiskAltaProductId + DisplayString, + arrayDiskAltaRevisionId + DisplayString, + arrayDiskEncryptionCapable + INTEGER, + arrayDiskEncrypted + INTEGER, + arrayDiskPowerState + INTEGER, + arrayDiskDriveWriteCache + INTEGER, + arrayDiskModelNumber + DisplayString, + arrayDiskLifeRemaining + INTEGER, + arrayDiskDriverVersion + DisplayString, + arrayDiskDeviceLifeStatus + INTEGER, + arrayDiskReadOnly + DisplayString, + arrayDiskRemainingRatedWriteEndurance + DisplayString, + arrayDiskSectorSize + INTEGER, + arrayDiskPICapable + INTEGER, + arrayDiskMaxLinkWidth + INTEGER, + arrayDiskNegotiatedLinkWidth + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.1 + arrayDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this array disk entry." + ::= { arrayDiskEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.2 + arrayDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the array disk as represented in Storage Management." + ::= { arrayDiskEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.3 + arrayDiskVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The array disk's manufacturer's name." + ::= { arrayDiskEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.4 + arrayDiskState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6), + recovering(7), + removed(11), + non-raid(13), + notReady(14), + resynching(15), + replacing(22), + spinningDown(23), + rebuild(24), + noMedia(25), + formatting(26), + diagnostics(28), + predictiveFailure(34), + initializing(35), + foreign(39), + clear(40), + unsupported(41), + incompatible(53), + readOnly(56) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the array disk. + Possible states: + 0: Unknown + 1: Ready - Available for use, but no RAID configuration has been assigned. + 2: Failed - Not operational. + 3: Online - Operational. RAID configuration has been assigned. + 4: Offline - The drive is not available to the RAID controller. + 6: Degraded - Refers to a fault-tolerant array/virtual disk that has a failed disk. + 7: Recovering - Refers to state of recovering from bad blocks on disks. + 11: Removed - Indicates that array disk has been removed. + 13: Non-RAID - Indicates that array disk is not a RAID capable disk + 14: Not Ready - Applicable for PCIeSSD devices indicating that the device is in locked state + 15: Resynching - Indicates one of the following types of disk operations: Transform Type, Reconfiguration, and Check Consistency. + 22: Replacing - Indicates copyback operation is in progress. + 23: Spinning Down - Transit state when the physical disk is spinning down for physical disk power management. + 24: Rebuild + 25: No Media - CD-ROM or removable disk has no media. + 26: Formatting - In the process of formatting. + 28: Diagnostics - Diagnostics are running. + 34: Predictive failure + 35: Initializing: Applies only to virtual disks on PERC, PERC 2/SC, and PERC 2/DC controllers. + 39: Foreign + 40: Clear + 41: Unsupported + 53: Incompatible + 56: Read Only - Applicable for PCIeSSD devices. Indicates that device has reached read-only state + + " + ::= { arrayDiskEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.5 + arrayDiskSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { arrayDiskEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.6 + arrayDiskProductID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The model number of the array disk." + ::= { arrayDiskEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.7 + arrayDiskSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The array disk's unique identification number from the manufacturer. + " + ::= { arrayDiskEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.8 + arrayDiskRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The firmware version of the array disk." + ::= { arrayDiskEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.9 + arrayDiskEnclosureID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI ID of the enclosure processor to which this array disk belongs." + ::= { arrayDiskEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.10 + arrayDiskChannel OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bus to which this array disk is connected." + ::= { arrayDiskEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.11 + arrayDiskLengthInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in megabytes of the array disk. If this size is 0, it is smaller than a megabyte." + ::= { arrayDiskEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.12 + arrayDiskLengthInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the array disk in bytes that is less than + a megabyte. This size plus the arrayDiskLengthInMB is + the total size of the array disk." + ::= { arrayDiskEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.13 + arrayDiskLargestContiguousFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in megabytes of the largest contiguous free space + on the array disk. If this size is 0, it is less than a megabyte." + ::= { arrayDiskEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.14 + arrayDiskLargestContiguousFreeSpaceInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the largest contiguous free space on this + array disk in bytes that is less than a megabyte. + This size plus the arrayDiskLargestContiguousFreeSpaceInMB + is the total size of the largest contiguous free space on + the array disk." + ::= { arrayDiskEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.15 + arrayDiskTargetID OBJECT-TYPE + SYNTAX INTEGER (0..15) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI target ID which this array disk is assigned. " + ::= { arrayDiskEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.16 + arrayDiskLunID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The array disk's logical unit number. " + ::= { arrayDiskEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.17 + arrayDiskUsedSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount in megabytes of the used space on the array + disk. If this size is 0, it is smaller than a megabyte." + ::= { arrayDiskEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.18 + arrayDiskUsedSpaceInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in bytes of the used space on the array disk + that is smaller than a megabyte. This size plus the + arrayDiskUsedSpaceInMB is the total amount of used space + on the array disk." + ::= { arrayDiskEntry 18 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.19 + arrayDiskFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount in megabytes of the free space on the array + disk. If this size is 0, it is smaller than a megabyte." + ::= { arrayDiskEntry 19 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.20 + arrayDiskFreeSpaceInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in bytes of the free space on the array disk + that is smaller than a megabyte. This size plus the + arrayDiskFreeSpaceInMB is the total amount of free space + on the array disk." + ::= { arrayDiskEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.21 + arrayDiskBusType OBJECT-TYPE + SYNTAX INTEGER + { + scsi(1), + ide(2), + fibre(3), + ssa(4), + usb(6), + sata(7), + sas(8), + pcie(9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bus type of the array disk. + Possible values: + 1: SCSI + 2: IDE + 3: Fibre Channel + 4: SSA + 6: USB + 7: SATA + 8: SAS + 9: PCIe" + ::= { arrayDiskEntry 21 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.22 + arrayDiskSpareState OBJECT-TYPE + SYNTAX INTEGER + { + memberVD(1), + memberDG(2), + globalHotSpare(3), + dedicatedHotSpare(4), + notASpare(5), + notApplicable(99) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the array disk as a spare. + Possible states: + 1 : disk is a member of a virtual disk + 2 : disk is a member of a disk group + 3 : disk is a global hot spare + 4 : disk is a dedicated hot spare + 5 : not a spare + 99: not applicable" + ::= { arrayDiskEntry 22 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.23 + arrayDiskRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the array disk state. + This is the combined status of the array disk and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { arrayDiskEntry 23 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.24 + arrayDiskComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the array disk itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { arrayDiskEntry 24 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.25 + arrayDiskDeviceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The operating system device name for this disk. This property is only applicable to array disks attached to a RAID controller." + ::= { arrayDiskEntry 25 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.26 + arrayDiskNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this array disk." + ::= { arrayDiskEntry 26 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.27 + arrayDiskPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the disk. + " + ::= { arrayDiskEntry 27 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.28 + arrayDiskSASAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The specified SAS address if this is a SAS disk. + " + ::= { arrayDiskEntry 28 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.29 + arrayDiskNegotiatedSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The speed at which the drive is actually running in MPS (megabytes per second). + " + ::= { arrayDiskEntry 29 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.30 + arrayDiskCapableSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum speed at which the drive is capable of negotiating in MPS (megabytes per second). + " + ::= { arrayDiskEntry 30 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.31 + arrayDiskSmartAlertIndication OBJECT-TYPE + SYNTAX INTEGER + { + no(1), + yes(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicated whether the disk has received a predictive failure. + Possible values: + 1: No - disk has not received a predictive failure alert + 2: Yes - disk has received a predictive failure alert" + ::= { arrayDiskEntry 31 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.32 + arrayDiskManufactureDay OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The day of the week (1=Sunday thru 7=Saturday) on which this disk was manufactured." + ::= { arrayDiskEntry 32 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.33 + arrayDiskManufactureWeek OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The week (1 thru 53) in which this disk was manufactured." + ::= { arrayDiskEntry 33 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.34 + arrayDiskManufactureYear OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The four digit year in which this disk was manufactured." + ::= { arrayDiskEntry 34 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.35 + arrayDiskMediaType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + hdd(2), + ssd(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Media type of the array disk. + Possible Values: + 1:unknown + 2:hdd + 3:ssd" + ::= { arrayDiskEntry 35 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.36 + arrayDiskDellCertified OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if array disk is certified by Dell. + Value: 1 - Certified, 0 - Not Certified, 99 - Unknown" + ::= { arrayDiskEntry 36 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.37 + arrayDiskAltaVendorId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "Provides vendor information for Alta interposer." + ::= { arrayDiskEntry 37 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.38 + arrayDiskAltaProductId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "Provides product id for Alta interposer." + ::= { arrayDiskEntry 38 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.39 + arrayDiskAltaRevisionId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "Provides revision id for Alta interposer." + ::= { arrayDiskEntry 39 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.40 + arrayDiskEncryptionCapable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if physical disk is Encryption capable. + Value: 1 - Capable, 0 - Not Capable, 99 - Not Applicable" + ::= { arrayDiskEntry 40 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.41 + arrayDiskEncrypted OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if the physical disk has encryption enabled. + Value: 1 - Yes, 0 - No, 99 - Not Applicable" + ::= { arrayDiskEntry 41 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.42 + arrayDiskPowerState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates power state of a physical drive. + Value: 0 - Spun up, 1- Spun down, 255 - Transition, 99 - Not Applicable" + ::= { arrayDiskEntry 42 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.43 + arrayDiskDriveWriteCache OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates drive write cache capability for PCIe SSD devices. + Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined/Not Applicable" + ::= { arrayDiskEntry 43 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.44 + arrayDiskModelNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides PCIe SSD device model number." + ::= { arrayDiskEntry 44 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.45 + arrayDiskLifeRemaining OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides PCIe SSD device life remaining in percentage. + Value: 0..100, 999 - Undetermined/Not Applicable " + ::= { arrayDiskEntry 45 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.46 + arrayDiskDriverVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides PCIe SSD device driver version." + ::= { arrayDiskEntry 46 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.47 + arrayDiskDeviceLifeStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides PCIe SSD device life status. + Possible Values: + -1: Not Available / Not Applicable + 1: Drive Health Good + 2: Approaching Warranty Coverage Expiry + 3: Warranty Coverage Expired + 4: Approaching Read Only + 5: Read Only" + ::= { arrayDiskEntry 47 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.48 + arrayDiskReadOnly OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides PCIe SSD's Read Only attribute. + Possible Values: Yes, No, Not Applicable + " + ::= { arrayDiskEntry 48 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.49 + arrayDiskRemainingRatedWriteEndurance OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides PCIe SSD device Remaining Rated Write Endurance + Possible Values: 0-100% ,Not Available/Not Applicable + " + ::= { arrayDiskEntry 49 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.50 + arrayDiskSectorSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides the information regarding sector size of array disk. + Possible values are: 512 or 4096." + ::= { arrayDiskEntry 50 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.51 + arrayDiskPICapable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides the information regarding T10 PI capability of Array disk. + Possible values are: 0 (T10 PI incapable) or 1 (T10 PI capable)." + ::= { arrayDiskEntry 51 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.52 + arrayDiskMaxLinkWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides the information regarding Max Link Width of Array disk. + Possible values are: 0 - 8." + ::= { arrayDiskEntry 52 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.53 + arrayDiskNegotiatedLinkWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides the information regarding Negtioated Link Width of Array disk. + Possible values are: 0 - 8." + ::= { arrayDiskEntry 53 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.5 + arrayDiskEnclosureConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArrayDiskEnclosureConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between array disks, their enclosure, + and their associated controller. For each object in the table, its + object number corresponds to an instance number in the appropriate + MIB table for that object where all of the object properties can be found. + Note: Only array disks that are part of an enclosure will be listed + in this table. Backplanes are considered enclosures by + Storage Management." + ::= { physicalDevices 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1 + arrayDiskEnclosureConnectionEntry OBJECT-TYPE + SYNTAX ArrayDiskEnclosureConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Array Disk Enclosure Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { arrayDiskEnclosureConnectionNumber } + ::= { arrayDiskEnclosureConnectionTable 1 } + + + ArrayDiskEnclosureConnectionEntry ::= + SEQUENCE { + arrayDiskEnclosureConnectionNumber + INTEGER, + arrayDiskEnclosureConnectionArrayDiskName + DisplayString, + arrayDiskEnclosureConnectionArrayDiskNumber + INTEGER, + arrayDiskEnclosureConnectionEnclosureName + DisplayString, + arrayDiskEnclosureConnectionEnclosureNumber + INTEGER, + arrayDiskEnclosureConnectionControllerName + DisplayString, + arrayDiskEnclosureConnectionControllerNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.1 + arrayDiskEnclosureConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this array disk connection entry. + This table shows the array disk to enclosure relationship." + ::= { arrayDiskEnclosureConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.2 + arrayDiskEnclosureConnectionArrayDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the array disk in this connection as represented in Storage Management." + ::= { arrayDiskEnclosureConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.3 + arrayDiskEnclosureConnectionArrayDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the array disk in the arrayDiskTable + in this connection." + ::= { arrayDiskEnclosureConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.4 + arrayDiskEnclosureConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure as represented in Storage Management + to which this array disk belongs. + " + ::= { arrayDiskEnclosureConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.5 + arrayDiskEnclosureConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the enclosureTable of the enclosure + to which this array disk belongs." + ::= { arrayDiskEnclosureConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.6 + arrayDiskEnclosureConnectionControllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the controller as represented in Storage Management + to which this array disk is connected." + ::= { arrayDiskEnclosureConnectionEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.7 + arrayDiskEnclosureConnectionControllerNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the controllerTable of the controller + to which this array disk is connected." + ::= { arrayDiskEnclosureConnectionEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6 + arrayDiskChannelConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArrayDiskChannelConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between array disks, their channel, and + their associated controller. For each object in the table, its + object number corresponds to an instance number in the appropriate + MIB table for that object where all of the object properties can be + found. + Note: Only array disks that are NOT part of an enclosure will be + listed in this table. Backplanes are considered enclosures by + Storage Management." + ::= { physicalDevices 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1 + arrayDiskChannelConnectionEntry OBJECT-TYPE + SYNTAX ArrayDiskChannelConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Array Disk Channel Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { arrayDiskChannelConnectionNumber } + ::= { arrayDiskChannelConnectionTable 1 } + + + ArrayDiskChannelConnectionEntry ::= + SEQUENCE { + arrayDiskChannelConnectionNumber + INTEGER, + arrayDiskChannelConnectionArrayDiskName + DisplayString, + arrayDiskChannelConnectionArrayDiskNumber + INTEGER, + arrayDiskChannelConnectionChannelName + DisplayString, + arrayDiskChannelConnectionChannelNumber + INTEGER, + arrayDiskChannelConnectionControllerName + DisplayString, + arrayDiskChannelConnectionControllerNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.1 + arrayDiskChannelConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this array disk connection entry. + This table shows the array disk to SCSI channel relationship. + There is no enclosure service processor associated with these + array disks." + ::= { arrayDiskChannelConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.2 + arrayDiskChannelConnectionArrayDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the array disk in this connection + as represented in Storage Management." + ::= { arrayDiskChannelConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.3 + arrayDiskChannelConnectionArrayDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the array disk in the arrayDiskTable + in this connection." + ::= { arrayDiskChannelConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.4 + arrayDiskChannelConnectionChannelName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the channel as represented in Storage Management + to which is array disk is connected." + ::= { arrayDiskChannelConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.5 + arrayDiskChannelConnectionChannelNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the channel in the channelTable to + which this array disk is connected." + ::= { arrayDiskChannelConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.6 + arrayDiskChannelConnectionControllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the controller as represented in Storage Management + to which this array disk is connected." + ::= { arrayDiskChannelConnectionEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.7 + arrayDiskChannelConnectionControllerNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the controllerTable of the controller + to which this array disk is connected." + ::= { arrayDiskChannelConnectionEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7 + fanTable OBJECT-TYPE + SYNTAX SEQUENCE OF FanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Fans. The number of entries is + related to number of Fans discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1 + fanEntry OBJECT-TYPE + SYNTAX FanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Fan table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { fanNumber } + ::= { fanTable 1 } + + + FanEntry ::= + SEQUENCE { + fanNumber + INTEGER, + fanName + DisplayString, + fanVendor + DisplayString, + fanState + INTEGER, + fanSeverity + INTEGER, + fanProbeUnit + DisplayString, + fanProbeMinWarning + DisplayString, + fanProbeMinCritical + DisplayString, + fanProbeMaxWarning + DisplayString, + fanProbeMaxCritical + DisplayString, + fanProbeCurrValue + DisplayString, + fan1PartNumber + DisplayString, + fan2PartNumber + DisplayString, + fanRollUpStatus + DellStatus, + fanComponentStatus + DellStatus, + fanNexusID + DisplayString, + fanRevision + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.1 + fanNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this fan entry." + ::= { fanEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.2 + fanName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The fan's name as represented in Storage Management." + ::= { fanEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.3 + fanVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The fan's (re)seller's name." + ::= { fanEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.4 + fanState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + degraded(6), + removed(11), + missing(21) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the fan. + Possible states: + 0: Unknown + 1: Ready + 2: Failed + 3: Online + 4: Offline + 6: Degraded + 21: Missing" + ::= { fanEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.5 + fanSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { fanEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.6 + fanProbeUnit OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { fanEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.7 + fanProbeMinWarning OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.8 + fanProbeMinCritical OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.9 + fanProbeMaxWarning OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.10 + fanProbeMaxCritical OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.11 + fanProbeCurrValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current speed of the fan. + " + ::= { fanEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.12 + fan1PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the fan in the enclosure." + ::= { fanEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.13 + fan2PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.14 + fanRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the fan state. + This is the combined status of the fan and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { fanEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.15 + fanComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the fan itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { fanEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.16 + fanNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this fan." + ::= { fanEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.17 + fanRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision number of the fan in the enclosure." + ::= { fanEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8 + fanConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF FanConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each fan on + the managed node and its enclosure. Each enclosure + number in the table corresponds to that enclosure instance + in the Enclosure Table." + ::= { physicalDevices 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1 + fanConnectionEntry OBJECT-TYPE + SYNTAX FanConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Fan Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { fanConnectionNumber } + ::= { fanConnectionTable 1 } + + + FanConnectionEntry ::= + SEQUENCE { + fanConnectionNumber + INTEGER, + fanConnectionFanName + DisplayString, + fanConnectionFanNumber + INTEGER, + fanConnectionEnclosureName + DisplayString, + fanConnectionEnclosureNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.1 + fanConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this fan connection entry." + ::= { fanConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.2 + fanConnectionFanName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the fan in this connection as represented in Storage Management." + ::= { fanConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.3 + fanConnectionFanNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the fan in the fanTable in this connection." + ::= { fanConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.4 + fanConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure as represented in Storage Management + to which this fan belongs." + ::= { fanConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.5 + fanConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure in the enclosureTable + to which this fan belongs." + ::= { fanConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9 + powerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Power Supplies. The number of entries is + related to number of Power Supplies discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1 + powerSupplyEntry OBJECT-TYPE + SYNTAX PowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Power Supply table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { powerSupplyNumber } + ::= { powerSupplyTable 1 } + + + PowerSupplyEntry ::= + SEQUENCE { + powerSupplyNumber + INTEGER, + powerSupplyName + DisplayString, + powerSupplyVendor + DisplayString, + powerSupplyState + INTEGER, + powerSupplySeverity + INTEGER, + powerSupply1PartNumber + DisplayString, + powerSupply2PartNumber + DisplayString, + powerSupplyRollUpStatus + DellStatus, + powerSupplyComponentStatus + DellStatus, + powerSupplyNexusID + DisplayString, + powerSupplyRevision + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.1 + powerSupplyNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this power supply entry." + ::= { powerSupplyEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.2 + powerSupplyName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply's name as represented in Storage Management." + ::= { powerSupplyEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.3 + powerSupplyVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply's (re)seller's name." + ::= { powerSupplyEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.4 + powerSupplyState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + notInstalled(5), + degraded(6), + removed(11), + missing(21) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the power supply. + Possible states: + 0 : Unknown + 1 : Ready + 2 : Failed + 5 : Not Installed + 6 : Degraded + 11: Removed + 21: Missing" + ::= { powerSupplyEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.5 + powerSupplySeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { powerSupplyEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.6 + powerSupply1PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the power supply of the enclosure." + ::= { powerSupplyEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.7 + powerSupply2PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by power supplies managed under Storage Management." + ::= { powerSupplyEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.8 + powerSupplyRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the power supply state. + This is the combined status of the power supply and its + components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { powerSupplyEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.9 + powerSupplyComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the power supply itself without the + propegation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { powerSupplyEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.10 + powerSupplyNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this power supply." + ::= { powerSupplyEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.11 + powerSupplyRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision number of the power supply in the enclosure." + ::= { powerSupplyEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10 + powerSupplyConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each power + supply on the managed node and its enclosure. Each + enclosure number in the table corresponds to that + enclosure instance in the Enclosure Table." + ::= { physicalDevices 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1 + powerSupplyConnectionEntry OBJECT-TYPE + SYNTAX PowerSupplyConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Power Supply Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { powerSupplyConnectionNumber } + ::= { powerSupplyConnectionTable 1 } + + + PowerSupplyConnectionEntry ::= + SEQUENCE { + powerSupplyConnectionNumber + INTEGER, + powerSupplyConnectionPowersupplyName + DisplayString, + powerSupplyConnectionPowersupplyNumber + INTEGER, + powerSupplyConnectionEnclosureName + DisplayString, + powerSupplyConnectionEnclosureNumber + INTEGER, + powerSupplyConnectionFirmwareVersion + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.1 + powerSupplyConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this power supply connection entry." + ::= { powerSupplyConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.2 + powerSupplyConnectionPowersupplyName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the power supply in this connection + as represented in Storage Management." + ::= { powerSupplyConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.3 + powerSupplyConnectionPowersupplyNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This instance number in the powersupplyTable + of the power supply in this connection." + ::= { powerSupplyConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.4 + powerSupplyConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure to which this power supply is + connected as represented in Storage Management." + ::= { powerSupplyConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.5 + powerSupplyConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure in the enclosureTable + to which this power supply is connected." + ::= { powerSupplyConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.6 + powerSupplyConnectionFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Displays power supply connection firmware version. + Note: Available above 1.04 firmware version" + ::= { powerSupplyConnectionEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11 + temperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureProbeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Temperature Probes. The number of entries is + related to number of Temperature Probes discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1 + temperatureProbeEntry OBJECT-TYPE + SYNTAX TemperatureProbeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Temperature Probe table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { temperatureProbeNumber } + ::= { temperatureProbeTable 1 } + + + TemperatureProbeEntry ::= + SEQUENCE { + temperatureProbeNumber + INTEGER, + temperatureProbeName + DisplayString, + temperatureProbeVendor + DisplayString, + temperatureProbeState + INTEGER, + temperatureProbeSeverity + INTEGER, + temperatureProbeUnit + DisplayString, + temperatureProbeMinWarning + INTEGER, + temperatureProbeMinCritical + INTEGER, + temperatureProbeMaxWarning + INTEGER, + temperatureProbeMaxCritical + INTEGER, + temperatureProbeCurValue + INTEGER, + temperatureProbeRollUpStatus + DellStatus, + temperatureProbeComponentStatus + DellStatus, + temperatureProbeNexusID + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.1 + temperatureProbeNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this temperature probe entry." + ::= { temperatureProbeEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.2 + temperatureProbeName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of this temperature probe as represented in Storage Management." + ::= { temperatureProbeEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.3 + temperatureProbeVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Temperature probe's (re)seller's name." + ::= { temperatureProbeEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.4 + temperatureProbeState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + offline(4), + degraded(6), + inactive(9), + missing(21) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the temperature probe. + Possible states: + 0: Unknown + 1: Ready + 2: Failed (Minimum Failure Threshold Exceeded, + Maximum Failure Threshold Exceeded) + 4: Offline + 6: Degraded (Minimum Warning Threshold Exceeded, + Maximum Warning Threshold Exceeded) + 9: Inactive + 21: Missing" + ::= { temperatureProbeEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.5 + temperatureProbeSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { temperatureProbeEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.6 + temperatureProbeUnit OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The units that will be used to display temperatures for this + temperature probe." + ::= { temperatureProbeEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.7 + temperatureProbeMinWarning OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum temperature that will force the probe into + a warning state." + ::= { temperatureProbeEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.8 + temperatureProbeMinCritical OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum temperature that will force the probe into + an error state." + ::= { temperatureProbeEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.9 + temperatureProbeMaxWarning OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state." + ::= { temperatureProbeEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.10 + temperatureProbeMaxCritical OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum temperature that will force the probe into + an error state." + ::= { temperatureProbeEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.11 + temperatureProbeCurValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current temperature of this probe." + ::= { temperatureProbeEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.12 + temperatureProbeRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the temperature probe state. + This is the combined status of the temperature probe + and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { temperatureProbeEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.13 + temperatureProbeComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the temperature probe itself without the propagation + of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { temperatureProbeEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.14 + temperatureProbeNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this temperature probe." + ::= { temperatureProbeEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12 + temperatureConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each + temperature probe on the managed node and its enclosure. + Each enclosure number in the table corresponds to that + enclosure instance in the Enclosure Table." + ::= { physicalDevices 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1 + temperatureConnectionEntry OBJECT-TYPE + SYNTAX TemperatureConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Temperature Probe Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { temperatureConnectionNumber } + ::= { temperatureConnectionTable 1 } + + + TemperatureConnectionEntry ::= + SEQUENCE { + temperatureConnectionNumber + INTEGER, + temperatureConnectionTemperatureName + DisplayString, + temperatureConnectionTemperatureNumber + INTEGER, + temperatureConnectionEnclosureName + DisplayString, + temperatureConnectionEnclosureNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.1 + temperatureConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this temperature probe connection entry." + ::= { temperatureConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.2 + temperatureConnectionTemperatureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the temperature probe in this connection as + represented in Storage Management." + ::= { temperatureConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.3 + temperatureConnectionTemperatureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the temperatureTable of the temperature probe in this connection." + ::= { temperatureConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.4 + temperatureConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure as represented in Storage Management + to which this temperature probe belongs." + ::= { temperatureConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.5 + temperatureConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure in the enclosureTable + to which this temperature probe belongs. + " + ::= { temperatureConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13 + enclosureManagementModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureManagementModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Enclosure Management Modules. The number of + entries is related to number of Enclosure Management Modules + discovered in the system. The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1 + enclosureManagementModuleEntry OBJECT-TYPE + SYNTAX EnclosureManagementModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Enclosure Management Module table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { enclosureManagementModuleNumber } + ::= { enclosureManagementModuleTable 1 } + + + EnclosureManagementModuleEntry ::= + SEQUENCE { + enclosureManagementModuleNumber + INTEGER, + enclosureManagementModuleName + DisplayString, + enclosureManagementModuleVendor + DisplayString, + enclosureManagementModuleState + INTEGER, + enclosureManagementModuleSeverity + INTEGER, + enclosureManagementModulePartNumber + DisplayString, + enclosureManagementModuleType + INTEGER, + enclosureManagementModuleFWVersion + DisplayString, + enclosureManagementModuleMaxSpeed + DisplayString, + enclosureManagementModuleRollUpStatus + DellStatus, + enclosureManagementModuleComponentStatus + DellStatus, + enclosureManagementModuleNexusID + DisplayString, + enclosureManagementModuleRevision + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.1 + enclosureManagementModuleNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this enclosure memory module entry." + ::= { enclosureManagementModuleEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.2 + enclosureManagementModuleName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of this enclosure memory module as represented in + Storage Management." + ::= { enclosureManagementModuleEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.3 + enclosureManagementModuleVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The management module's (re)seller's name." + ::= { enclosureManagementModuleEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.4 + enclosureManagementModuleState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + notInstalled(5), + degraded(6), + missing(21) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the enclosure management + module. + Possible states: + 0: Unknown + 1: Ready + 2: Failed + 3: Online + 4: Offline + 5: Not Installed + 6: Degraded + 21: Missing" + ::= { enclosureManagementModuleEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.5 + enclosureManagementModuleSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { enclosureManagementModuleEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.6 + enclosureManagementModulePartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the enclosure memory module." + ::= { enclosureManagementModuleEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.7 + enclosureManagementModuleType OBJECT-TYPE + SYNTAX INTEGER + { + eMM(1), + terminationCard(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of the enclosure management module. + Possible values: + 0: Unknown + 1: EMM + 2: Termination Card" + ::= { enclosureManagementModuleEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.8 + enclosureManagementModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware version of the enclosure memory module." + ::= { enclosureManagementModuleEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.9 + enclosureManagementModuleMaxSpeed OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum bus speed of the enclosure management module." + ::= { enclosureManagementModuleEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.10 + enclosureManagementModuleRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the enclosure management module state. + This is the combined status of the EMM and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { enclosureManagementModuleEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.11 + enclosureManagementModuleComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the enclosure management module itself + without the propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { enclosureManagementModuleEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.12 + enclosureManagementModuleNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this EMM." + ::= { enclosureManagementModuleEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.13 + enclosureManagementModuleRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision number of the enclosure management module." + ::= { enclosureManagementModuleEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14 + enclosureManagementModuleConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureManagementModuleConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each enclosure management module + on the managed node and its enclosure. Each enclosure + number in the table corresponds to that enclosure instance + in the Enclosure Table." + ::= { physicalDevices 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1 + enclosureManagementModuleConnectionEntry OBJECT-TYPE + SYNTAX EnclosureManagementModuleConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Enclosure Management Module Connection table . A row in this + table cannot be created or deleted by SNMP operations on columns of the table." + INDEX { enclosureManagementModuleConnectionNumber } + ::= { enclosureManagementModuleConnectionTable 1 } + + + EnclosureManagementModuleConnectionEntry ::= + SEQUENCE { + enclosureManagementModuleConnectionNumber + INTEGER, + enclosureManagementModuleConnectionEMMName + DisplayString, + enclosureManagementModuleConnectionEMMNumber + INTEGER, + enclosureManagementModuleConnectionEnclosureName + DisplayString, + enclosureManagementModuleConnectionEnclosureNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.1 + enclosureManagementModuleConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this enclosure management module + connection entry." + ::= { enclosureManagementModuleConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.2 + enclosureManagementModuleConnectionEMMName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure management module in this + connection as represented in Storage Management." + ::= { enclosureManagementModuleConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.3 + enclosureManagementModuleConnectionEMMNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure management module in + the enclosureManagementModuleTable in this connection." + ::= { enclosureManagementModuleConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.4 + enclosureManagementModuleConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure as represented in Storage Management + to which this enclosure management module belongs." + ::= { enclosureManagementModuleConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.5 + enclosureManagementModuleConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure in the enclosureTable + to which this enclosure management module belongs." + ::= { enclosureManagementModuleConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15 + batteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Batteries. The number of + entries is related to number of Batteries + discovered in the system. The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1 + batteryEntry OBJECT-TYPE + SYNTAX BatteryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Battery table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { batteryNumber } + ::= { batteryTable 1 } + + + BatteryEntry ::= + SEQUENCE { + batteryNumber + INTEGER, + batteryName + DisplayString, + batteryVendor + DisplayString, + batteryState + INTEGER, + batteryRollUpStatus + DellStatus, + batteryComponentStatus + DellStatus, + batteryChargeCount + INTEGER, + batteryMaxChargeCount + INTEGER, + batteryNexusID + DisplayString, + batteryPredictedCapacity + INTEGER, + batteryNextLearnTime + INTEGER, + batteryLearnState + INTEGER, + batteryID + INTEGER, + batteryMaxLearnDelay + INTEGER, + batteryLearnMode + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.1 + batteryNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this battery entry." + ::= { batteryEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.2 + batteryName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The battery's name as represented in Storage Management." + ::= { batteryEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.3 + batteryVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The battery's (re)seller's name." + ::= { batteryEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.4 + batteryState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + degraded(6), + reconditioning(7), + high(9), + low(10), + charging(12), + missing(21), + learning(36) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current state of battery. + Possible values: + 0: Unknown + 1: Ready + 2: Failed + 6: Degraded + 7: Reconditioning + 9: High + 10: Low Power + 12: Charging + 21: Missing + 36: Learning + " + ::= { batteryEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.5 + batteryRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the battery state. + This is the combined status of the battery and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { batteryEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.6 + batteryComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the battery itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { batteryEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.7 + batteryChargeCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of charges that have been applied to the battery." + ::= { batteryEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.8 + batteryMaxChargeCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of charges that can be applied to the battery." + ::= { batteryEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.9 + batteryNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this battery." + ::= { batteryEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.10 + batteryPredictedCapacity OBJECT-TYPE + SYNTAX INTEGER + { + failed(1), + ready(2), + unknown(4) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This property displays the battery's ability to be charged. + Possible values: + 1: Failed - The battery cannot be charged and needs to be replaced. + 2: Ready - The battery can be charged to full capacity. + 4: Unknown - The battery is completing a Learn cycle. The charge capacity of the battery cannot be determined until the Learn cycle is complete. + " + ::= { batteryEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.11 + batteryNextLearnTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Time next learn cycle must be executed (in hours.) + " + ::= { batteryEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.12 + batteryLearnState OBJECT-TYPE + SYNTAX INTEGER + { + failed(1), + active(2), + timedOut(4), + requested(8), + idle(16), + due(32) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Specifies the learn state activity of the battery. + Possible values: + 1 : Failed + 2 : Active + 4 : Timed out + 8 : Requested + 16: Idle + 32: Due" + ::= { batteryEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.13 + batteryID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Represents unique id for battery." + ::= { batteryEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.14 + batteryMaxLearnDelay OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The maximum amount of time (in hours) that the battery learn cycle can be delayed." + ::= { batteryEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.15 + batteryLearnMode OBJECT-TYPE + SYNTAX INTEGER + { + auto(1), + warn(2), + autowarn(4), + unknown(8) + } + ACCESS read-write + STATUS deprecated + DESCRIPTION + "Indicates current learn mode of the battery. + Possible values: + 1: Auto + 2: Warn + 4: Autowarn + 8: Unknown + " + ::= { batteryEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16 + batteryConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each + battery on the managed node and its controller. + Each controller number in the table corresponds to that + controller instance in the Controller Table." + ::= { physicalDevices 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1 + batteryConnectionEntry OBJECT-TYPE + SYNTAX BatteryConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Battery Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { batteryConnectionNumber } + ::= { batteryConnectionTable 1 } + + + BatteryConnectionEntry ::= + SEQUENCE { + batteryConnectionNumber + INTEGER, + batteryConnectionBatteryName + DisplayString, + batteryConnectionBatteryNumber + INTEGER, + batteryConnectionControllerName + DisplayString, + batteryConnectionControllerNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.1 + batteryConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this battery connection entry." + ::= { batteryConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.2 + batteryConnectionBatteryName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the battery in this connection as represented in Storage Management." + ::= { batteryConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.3 + batteryConnectionBatteryNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the batteryTable of the battery in this connection." + ::= { batteryConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.4 + batteryConnectionControllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the controller as represented in Storage Management + to which this battery belongs." + ::= { batteryConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.5 + batteryConnectionControllerNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the controller in the controllerTable + to which this battery belongs." + ::= { batteryConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1 + controllerTable OBJECT-TYPE + SYNTAX SEQUENCE OF ControllerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed RAID controllers. The number of entries + is related to number of RAID controllers discovered in the + system. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1 + controllerEntry OBJECT-TYPE + SYNTAX ControllerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the table of RAID controllers. A row in this table cannot + be created or deleted by SNMP operations on columns of the table." + INDEX { controllerNumber } + ::= { controllerTable 1 } + + + ControllerEntry ::= + SEQUENCE { + controllerNumber + INTEGER, + controllerName + DisplayString, + controllerVendor + DisplayString, + controllerType + INTEGER, + controllerState + INTEGER, + controllerSeverity + INTEGER, + controllerRebuildRateInPercent + INTEGER, + controllerFWVersion + DisplayString, + controllerCacheSizeInMB + INTEGER, + controllerCacheSizeInBytes + INTEGER, + controllerPhysicalDeviceCount + INTEGER, + controllerLogicalDeviceCount + INTEGER, + controllerPartnerStatus + DisplayString, + controllerHostPortCount + INTEGER, + controllerMemorySizeInMB + INTEGER, + controllerMemorySizeInBytes + INTEGER, + controllerDriveChannelCount + INTEGER, + controllerFaultTolerant + INTEGER, + controllerC0Port0WWN + DisplayString, + controllerC0Port0Name + DisplayString, + controllerC0Port0ID + INTEGER, + controllerC0Target + INTEGER, + controllerC0Channel + INTEGER, + controllerC0OSController + DisplayString, + controllerC0BatteryState + INTEGER, + controllerC1Port0WWN + DisplayString, + controllerC1Port0Name + DisplayString, + controllerC1Port0ID + INTEGER, + controllerC1Target + INTEGER, + controllerC1Channel + INTEGER, + controllerC1OSController + INTEGER, + controllerC1BatteryState + INTEGER, + controllerNodeWWN + DisplayString, + controllerC0Port1WWN + DisplayString, + controllerC1Port1WWN + DisplayString, + controllerBatteryChargeCount + INTEGER, + controllerRollUpStatus + DellStatus, + controllerComponentStatus + DellStatus, + controllerNexusID + DisplayString, + controllerAlarmState + INTEGER, + controllerDriverVersion + DisplayString, + controllerPCISlot + DisplayString, + controllerClusterMode + INTEGER, + controllerMinFWVersion + DisplayString, + controllerMinDriverVersion + DisplayString, + controllerSCSIInitiatorID + INTEGER, + controllerChannelCount + INTEGER, + controllerReconstructRate + INTEGER, + controllerPatrolReadRate + INTEGER, + controllerBGIRate + INTEGER, + controllerCheckConsistencyRate + INTEGER, + controllerPatrolReadMode + INTEGER, + controllerPatrolReadState + INTEGER, + controllerPatrolReadIterations + INTEGER, + controllerStorportDriverVersion + DisplayString, + controllerMinRequiredStorportVer + DisplayString, + controllerEncryptionCapable + INTEGER, + controllerEncryptionKeyPresent + INTEGER, + controllerPersistentHotSpare + INTEGER, + controllerSpinDownUnconfiguredDrives + INTEGER, + controllerSpinDownHotSpareDrives + INTEGER, + controllerSpinDownTimeInterval + INTEGER, + controllerEncryptionMode + INTEGER, + controllerCacheCade + INTEGER, + controllerSpinDownConfiguredDrives + INTEGER, + controllerAutomaticPowerSaving + INTEGER, + controllerConfiguredDrivesSpinUpTime + DisplayString, + controllerConfiguredDrivesSpinUpTimeInterval + INTEGER, + controllerPreservedCache + INTEGER, + controllerPIEnable + INTEGER, + controllerCurrentMode + DisplayString, + frontChassisSlot + INTEGER, + controllerInstance + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.1 + controllerNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this controller entry." + ::= { controllerEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.2 + controllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the controller in this subsystem as represented in Storage Management. + Includes the controller type and instance. + For example: Perc3/QC 1." + ::= { controllerEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.3 + controllerVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's (re)seller's name." + ::= { controllerEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.4 + controllerType OBJECT-TYPE + SYNTAX INTEGER + { + scsi(1), + pv660F(2), + pv662F(3), + ide(4), + sata(5), + sas(6), + pciessd(9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of this controller: + 1: SCSI + 2: PV660F + 3: PV662F + 4: IDE (Integrated/Intelligent Drive Electronics) + 5: SATA (Serial Advanced Technology Attachment) + 6: SAS (Serial Attached SCSI) + 9: PCIe SSD" + ::= { controllerEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.5 + controllerState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the controller's subsystem + (which includes any devices connected to it.) + Possible states: + 0: Unknown + 1: Ready + 2: Failed + 3: Online + 4: Offline + 6: Degraded" + ::= { controllerEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.6 + controllerSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { controllerEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.7 + controllerRebuildRateInPercent OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The percent of the compute cycles dedicated to rebuilding + failed array disks. " + ::= { controllerEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.8 + controllerFWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current firmware version." + ::= { controllerEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.9 + controllerCacheSizeInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current amount of cache memory in megabytes. + If this size is 0, it is less than a megabyte." + ::= { controllerEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.10 + controllerCacheSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current amount of cache memory that is less than a megabyte. This combined with the + controllerCacheSizeInMB will be the total amount of memory." + ::= { controllerEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.11 + controllerPhysicalDeviceCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of physical devices on the controller channel including both disks and the controller." + ::= { controllerEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.12 + controllerLogicalDeviceCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of virtual disks on the controller." + ::= { controllerEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.13 + controllerPartnerStatus OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { controllerEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.14 + controllerHostPortCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.15 + controllerMemorySizeInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size of memory in megabytes on the controller. If this size is 0, it is less than a megabyte. This attribute is only supported on Adaptec controllers. " + ::= { controllerEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.16 + controllerMemorySizeInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size of memory on the controller that is less than a megabyte. This combined with the controllerMemorySizeInMB + will be the total size of the memory. This attribute is only supported on Adaptec controllers." + ::= { controllerEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.17 + controllerDriveChannelCount OBJECT-TYPE + SYNTAX INTEGER (1..4) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.18 + controllerFaultTolerant OBJECT-TYPE + SYNTAX INTEGER { yes(1) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 18 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.19 + controllerC0Port0WWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 19 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.20 + controllerC0Port0Name OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.21 + controllerC0Port0ID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 21 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.22 + controllerC0Target OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management. + " + ::= { controllerEntry 22 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.23 + controllerC0Channel OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 23 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.24 + controllerC0OSController OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 24 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.25 + controllerC0BatteryState OBJECT-TYPE + SYNTAX INTEGER + { + ok(1), + failed(2), + reconditioning(7), + high(9), + low(10), + charging(12), + missing(21) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management. " + ::= { controllerEntry 25 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.26 + controllerC1Port0WWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 26 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.27 + controllerC1Port0Name OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 27 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.28 + controllerC1Port0ID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 28 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.29 + controllerC1Target OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 29 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.30 + controllerC1Channel OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 30 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.31 + controllerC1OSController OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 31 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.32 + controllerC1BatteryState OBJECT-TYPE + SYNTAX INTEGER + { + ok(1), + failed(2), + reconditioning(7), + high(9), + low(10), + charging(12), + missing(21) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management. " + ::= { controllerEntry 32 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.33 + controllerNodeWWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 33 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.34 + controllerC0Port1WWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 34 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.35 + controllerC1Port1WWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 35 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.36 + controllerBatteryChargeCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 36 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.37 + controllerRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the controller state. + This is the combined status of the controller and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { controllerEntry 37 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.38 + controllerComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the controller itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { controllerEntry 38 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.39 + controllerNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this controller." + ::= { controllerEntry 39 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.40 + controllerAlarmState OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + not-applicable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "State, or setting for the controller's alarm. + Possible values: + 1: Enabled + 2: Disabled + 3: Not Applicable" + ::= { controllerEntry 40 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.41 + controllerDriverVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Currently installed driver version for this controller." + ::= { controllerEntry 41 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.42 + controllerPCISlot OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI slot number or embedded number for controllers on the motherboard. + " + ::= { controllerEntry 42 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.43 + controllerClusterMode OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + active(3), + notApplicable(99) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies if the controller is in cluster mode. + Possible values: + 1 : Enabled + 2 : Disabled + 3 : Active (enabled and active) + 99: Not Applicable + " + ::= { controllerEntry 43 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.44 + controllerMinFWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum firmware version for Storage Management to support the controller. + " + ::= { controllerEntry 44 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.45 + controllerMinDriverVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum driver version for Storage Management to support the controller. + " + ::= { controllerEntry 45 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.46 + controllerSCSIInitiatorID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI ID of the initiator." + ::= { controllerEntry 46 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.47 + controllerChannelCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of channels on the controller." + ::= { controllerEntry 47 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.48 + controllerReconstructRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate for reconstruct on the controller. + " + ::= { controllerEntry 48 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.49 + controllerPatrolReadRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate for patrol read on the controller. + " + ::= { controllerEntry 49 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.50 + controllerBGIRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate for background initialization on the controller. + " + ::= { controllerEntry 50 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.51 + controllerCheckConsistencyRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate for check consistency on the controller. + " + ::= { controllerEntry 51 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.52 + controllerPatrolReadMode OBJECT-TYPE + SYNTAX INTEGER + { + automatic(1), + manual(2), + disabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies the patrol read mode. + Possible values: + 1: Automatic (enabled) + 2: Manual (enabled) + 3: Disabled + " + ::= { controllerEntry 52 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.53 + controllerPatrolReadState OBJECT-TYPE + SYNTAX INTEGER + { + stopped(1), + ready(2), + active(4), + aborted(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the patrol read. + 1: Stopped - not running + 2: Ready - ready to start + 4: Active - is running + 8: Aborted - has aborted + " + ::= { controllerEntry 53 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.54 + controllerPatrolReadIterations OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times Patrol Read has been run on this controller." + ::= { controllerEntry 54 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.55 + controllerStorportDriverVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provide current Windows OS storport driver version. Not applicable for Linux." + ::= { controllerEntry 55 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.56 + controllerMinRequiredStorportVer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides minimum required storport driver version for Windows OS only. " + ::= { controllerEntry 56 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.57 + controllerEncryptionCapable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates Encryption capability of the controller. + Value: 1 - Capable, 99 - NotApplicable" + ::= { controllerEntry 57 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.58 + controllerEncryptionKeyPresent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates presence of Encryption Key for the controller. + Value: 1 - Yes, 0 - No, 99 - NotApplicable" + ::= { controllerEntry 58 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.59 + controllerPersistentHotSpare OBJECT-TYPE + SYNTAX INTEGER (0..1) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates Persistent Hot Spare capability of the controller + Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" + ::= { controllerEntry 59 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.60 + controllerSpinDownUnconfiguredDrives OBJECT-TYPE + SYNTAX INTEGER (0..1) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates controller capability to put unconfigured drives in power save mode. + Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" + ::= { controllerEntry 60 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.61 + controllerSpinDownHotSpareDrives OBJECT-TYPE + SYNTAX INTEGER (0..1) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates controller capability to put hot spare drives in power save mode. + Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" + ::= { controllerEntry 61 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.62 + controllerSpinDownTimeInterval OBJECT-TYPE + SYNTAX INTEGER (30..1440) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shows the duration in minutes after which, the unconfigured or hot spare drives will be spun down to power save mode. + Value: 30 to 1440 + Note: A value of 9999 indicates feature not available." + ::= { controllerEntry 62 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.63 + controllerEncryptionMode OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the current encryption mode of the controller. + Value: 0 - No Encryption, 1 - Local Key Management (LKM), 2 - Dell Key Management (DKM), 99 - Not Applicable + " + ::= { controllerEntry 63 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.64 + controllerCacheCade OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if the controller is CacheCade capable or not. + Value: 1 - Capable, 0 - Not Capable, 99 - Undetermined" + ::= { controllerEntry 64 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.65 + controllerSpinDownConfiguredDrives OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates controller capability to spin down configured physical disks. + Value: 0 - Disabled, 1 - Enabled, 99 - Undetermined + " + ::= { controllerEntry 65 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.66 + controllerAutomaticPowerSaving OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates controller capability for automatic power saving. + Value: 0 - Disabled, 1 - Enabled, 99 - Undetermined" + ::= { controllerEntry 66 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.67 + controllerConfiguredDrivesSpinUpTime OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates configured drives spin up start time. + Value: 1:00 AM to 12:59 PM, 9999 - Undetermined" + ::= { controllerEntry 67 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.68 + controllerConfiguredDrivesSpinUpTimeInterval OBJECT-TYPE + SYNTAX INTEGER (30..1440) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates configured drives spin up time interval in hours. This value is added with configured drives start time to arrive at time window in which configured drives are always spin up. + Value: 1 .. 24, 9999 - Undetermined" + ::= { controllerEntry 68 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.69 + controllerPreservedCache OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if preserved cache is present on the controller. + Values: 1- Yes, 0 - No, 99 - Not available / Not applicable" + ::= { controllerEntry 69 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.70 + controllerPIEnable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if T10 PI is enabled on a controller. + Value can be either 0 (T10 PI disabled) or 1 (T10 PI enabled)." + ::= { controllerEntry 70 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.71 + controllerCurrentMode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Shows the current controller mode." + ::= { controllerEntry 71 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.72 + frontChassisSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Shows the physical slot on the chassis for stash ." + ::= { controllerEntry 72 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.73 + controllerInstance OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Shows the current instance of the controller for stash ." + ::= { controllerEntry 73 } + +-- 1.3.6.1.4.1.674.10893.1.20.130.17 + tapeDriveTable OBJECT-TYPE + SYNTAX SEQUENCE OF TapeDriveEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of listed Tape Drives The number of entries is + related to number of Tape Drives discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 17 } + + +-- 1.3.6.1.4.1.674.10893.1.20.130.17.1 + tapeDriveEntry OBJECT-TYPE + SYNTAX TapeDriveEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Tape Library table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { tapeDriveNumber } + ::= { tapeDriveTable 1 } + + + TapeDriveEntry ::= + SEQUENCE { + tapeDriveNumber + INTEGER, + tapeDriveName + DisplayString, + tapeDriveVendor + DisplayString, + tapeDriveProductID + DisplayString, + tapeDriveNexusID + DisplayString, + tapeDriveBusType + INTEGER, + tapeDriveSASAddress + DisplayString, + tapeDriveMediaType + INTEGER + } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.1 + tapeDriveNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this tape drive entry." + ::= { tapeDriveEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.2 + tapeDriveName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the tape drive as represented in Storage Management." + ::= { tapeDriveEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.3 + tapeDriveVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The tape drive's manufacturer's name." + ::= { tapeDriveEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.4 + tapeDriveProductID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The model number of the tape drive" + ::= { tapeDriveEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.5 + tapeDriveNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this tape drive" + ::= { tapeDriveEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.6 + tapeDriveBusType OBJECT-TYPE + SYNTAX INTEGER { sas(8) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bus type of the tape drive. + Possible values: + 8. SAS" + ::= { tapeDriveEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.7 + tapeDriveSASAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The specified SAS address if this is a SAS tape drive. + " + ::= { tapeDriveEntry 7 } + + + + -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.8 + tapeDriveMediaType OBJECT-TYPE + SYNTAX INTEGER { tape(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Media type of the tape drive. + Possible Values: + 4:Tape" + ::= { tapeDriveEntry 8 } + +-- 1.3.6.1.4.1.674.10893.1.20.130.18 + nvmeAdapterTable OBJECT-TYPE + SYNTAX SEQUENCE OF NvmeAdapterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of listed NVME Adapter cards. The number of entries is + related to number of NVME Adapter cards discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 18 } + + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1 + nvmeAdapterEntry OBJECT-TYPE + SYNTAX NvmeAdapterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the NvmeAdapter table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { nvmeAdapterNumber } + ::= { nvmeAdapterTable 1 } + + NvmeAdapterEntry ::= + SEQUENCE { + nvmeAdapterNumber + INTEGER, + nvmeAdapterState + INTEGER, + nvmeAdapterControllerNum + INTEGER, + nvmeAdapterPCISlot + INTEGER, + nvmeAdapterDeviceName + DisplayString, + nvmeAdapterVendor + DisplayString, + nvmeAdapterProductID + DisplayString, + nvmeAdapterSerialNumber + DisplayString, + nvmeAdapterRevision + DisplayString, + nvmeAdapterDriverVersion + DisplayString, + nvmeAdapterPCIBusNo + INTEGER, + nvmeAdapterPCIDeviceNum + INTEGER, + nvmeAdapterPCIFuncNum + INTEGER, + nvmeAdapterNexusID + DisplayString, + nvmeAdapterBusProtocolType + INTEGER, + nvmeAdapterMediaType + INTEGER, + nvmeAdapterLengthInMegaBytes + INTEGER, + nvmeAdapterLengthOffsetBytes + INTEGER, + nvmeAdapterDeviceID + INTEGER, + nvmeAdapterModelNumber + DisplayString, + nvmeAdapterNegotiatedSpeed + INTEGER, + nvmeAdapterCapableSpeed + INTEGER, + nvmeAdapterRemainingRatedWrEnd + INTEGER, + nvmeAdapterFormFactor + INTEGER, + nvmeAdapterSupportedSpec + DisplayString, + nvmeAdapterMaxLinkWidth + INTEGER, + nvmeAdapterNegotiatedLinkWidth + INTEGER, + nvmeAdapterSubVendor + DisplayString + } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.1 + nvmeAdapterNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this NVME Adapter entry." + ::= { nvmeAdapterEntry 1 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.2 + nvmeAdapterState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of the NVMe Adapter." + ::= { nvmeAdapterEntry 2 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.3 + nvmeAdapterControllerNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCIeSSD subsystem Id to which the NVMe Adapter belongs to." + ::= { nvmeAdapterEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.4 + nvmeAdapterPCISlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI slot of the system where the adapter card is connected." + ::= { nvmeAdapterEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.5 + nvmeAdapterDeviceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The device name of the NVMe Adapter as it is represented in OMSA and also the operating system." + ::= { nvmeAdapterEntry 5 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.6 + nvmeAdapterVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "NVMe Adapter manufacturer." + ::= { nvmeAdapterEntry 6 } + +-- 1.3.6.1.4.1.674.10893.1.20.130.18.1.7 + nvmeAdapterProductID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product id or part number of the NVMe Adapter " + ::= { nvmeAdapterEntry 7 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.8 + nvmeAdapterSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Product serial number of the NVMe Adapter." + ::= { nvmeAdapterEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.9 + nvmeAdapterRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The NVMe Adapter revision." + ::= { nvmeAdapterEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.10 + nvmeAdapterDriverVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "NVMe Adapter driver version." + ::= { nvmeAdapterEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.11 + nvmeAdapterPCIBusNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI Bus number of the NVMe adapter." + ::= { nvmeAdapterEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.12 + nvmeAdapterPCIDeviceNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI device number of the NVMe Adapter." + ::= { nvmeAdapterEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.13 + nvmeAdapterPCIFuncNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI device number of the NVMe Adapter." + ::= { nvmeAdapterEntry 13 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.14 + nvmeAdapterNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Nexus ID of the NVMe Adapter." + ::= { nvmeAdapterEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.15 + nvmeAdapterBusProtocolType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Bus protocol for NVMe device, expected value: 9 (PCIeSSD)." + ::= { nvmeAdapterEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.16 + nvmeAdapterMediaType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "NVMe Adapter media type. Possible Values: 1:unknown - 2:hdd - 3:ssd" - ::= { arrayDiskEntry 35 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.36 - arrayDiskDellCertified OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if array disk is certified by Dell. - Value: 1 - Certified, 0 - Not Certified, 99 - Unknown" - ::= { arrayDiskEntry 36 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.37 - arrayDiskAltaVendorId OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "Provides vendor information for Alta interposer." - ::= { arrayDiskEntry 37 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.38 - arrayDiskAltaProductId OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "Provides product id for Alta interposer." - ::= { arrayDiskEntry 38 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.39 - arrayDiskAltaRevisionId OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "Provides revision id for Alta interposer." - ::= { arrayDiskEntry 39 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.40 - arrayDiskEncryptionCapable OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if physical disk is Encryption capable. - Value: 1 - Capable, 0 - Not Capable, 99 - Not Applicable" - ::= { arrayDiskEntry 40 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.41 - arrayDiskEncrypted OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if the physical disk has encryption enabled. - Value: 1 - Yes, 0 - No, 99 - Not Applicable" - ::= { arrayDiskEntry 41 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.42 - arrayDiskPowerState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates power state of a physical drive. - Value: 0 - Spun up, 1- Spun down, 255 - Transition, 99 - Not Applicable" - ::= { arrayDiskEntry 42 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.43 - arrayDiskDriveWriteCache OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates drive write cache capability for PCIe SSD devices. - Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined/Not Applicable" - ::= { arrayDiskEntry 43 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.44 - arrayDiskModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides PCIe SSD device model number." - ::= { arrayDiskEntry 44 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.45 - arrayDiskLifeRemaining OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides PCIe SSD device life remaining in percentage. - Value: 0..100, 999 - Undetermined/Not Applicable " - ::= { arrayDiskEntry 45 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.46 - arrayDiskDriverVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides PCIe SSD device driver version." - ::= { arrayDiskEntry 46 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.47 - arrayDiskDeviceLifeStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides PCIe SSD device life status. - Possible Values: - -1: Not Available / Not Applicable - 1: Drive Health Good - 2: Approaching Warranty Coverage Expiry - 3: Warranty Coverage Expired - 4: Approaching Read Only - 5: Read Only" - ::= { arrayDiskEntry 47 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.48 - arrayDiskReadOnly OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides PCIe SSD's Read Only attribute. - Possible Values: Yes, No, Not Applicable - " - ::= { arrayDiskEntry 48 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.49 - arrayDiskRemainingRatedWriteEndurance OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides PCIe SSD device Remaining Rated Write Endurance - Possible Values: 0-100% ,Not Available/Not Applicable - " - ::= { arrayDiskEntry 49 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.50 - arrayDiskSectorSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides the information regarding sector size of array disk. - Possible values are: 512 or 4096." - ::= { arrayDiskEntry 50 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.51 - arrayDiskPICapable OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides the information regarding T10 PI capability of Array disk. - Possible values are: 0 (T10 PI incapable) or 1 (T10 PI capable)." - ::= { arrayDiskEntry 51 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.52 - arrayDiskMaxLinkWidth OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides the information regarding Max Link Width of Array disk. - Possible values are: 0 - 8." - ::= { arrayDiskEntry 52 } - - -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.53 - arrayDiskNegotiatedLinkWidth OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides the information regarding Negtioated Link Width of Array disk. - Possible values are: 0 - 8." - ::= { arrayDiskEntry 53 } - - -- 1.3.6.1.4.1.674.10893.1.20.130.5 - arrayDiskEnclosureConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF ArrayDiskEnclosureConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of the connections between array disks, their enclosure, - and their associated controller. For each object in the table, its - object number corresponds to an instance number in the appropriate - MIB table for that object where all of the object properties can be found. - Note: Only array disks that are part of an enclosure will be listed - in this table. Backplanes are considered enclosures by - Storage Management." - ::= { physicalDevices 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.5.1 - arrayDiskEnclosureConnectionEntry OBJECT-TYPE - SYNTAX ArrayDiskEnclosureConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Array Disk Enclosure Connection table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { arrayDiskEnclosureConnectionNumber } - ::= { arrayDiskEnclosureConnectionTable 1 } - - - ArrayDiskEnclosureConnectionEntry ::= - SEQUENCE { - arrayDiskEnclosureConnectionNumber - INTEGER, - arrayDiskEnclosureConnectionArrayDiskName - DisplayString, - arrayDiskEnclosureConnectionArrayDiskNumber - INTEGER, - arrayDiskEnclosureConnectionEnclosureName - DisplayString, - arrayDiskEnclosureConnectionEnclosureNumber - INTEGER, - arrayDiskEnclosureConnectionControllerName - DisplayString, - arrayDiskEnclosureConnectionControllerNumber - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.1 - arrayDiskEnclosureConnectionNumber OBJECT-TYPE - SYNTAX INTEGER (1..1000000000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this array disk connection entry. - This table shows the array disk to enclosure relationship." - ::= { arrayDiskEnclosureConnectionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.2 - arrayDiskEnclosureConnectionArrayDiskName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the array disk in this connection as represented in Storage Management." - ::= { arrayDiskEnclosureConnectionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.3 - arrayDiskEnclosureConnectionArrayDiskNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the array disk in the arrayDiskTable - in this connection." - ::= { arrayDiskEnclosureConnectionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.4 - arrayDiskEnclosureConnectionEnclosureName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the enclosure as represented in Storage Management - to which this array disk belongs. - " - ::= { arrayDiskEnclosureConnectionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.5 - arrayDiskEnclosureConnectionEnclosureNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number in the enclosureTable of the enclosure - to which this array disk belongs." - ::= { arrayDiskEnclosureConnectionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.6 - arrayDiskEnclosureConnectionControllerName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the controller as represented in Storage Management - to which this array disk is connected." - ::= { arrayDiskEnclosureConnectionEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.7 - arrayDiskEnclosureConnectionControllerNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number in the controllerTable of the controller - to which this array disk is connected." - ::= { arrayDiskEnclosureConnectionEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.6 - arrayDiskChannelConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF ArrayDiskChannelConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of the connections between array disks, their channel, and - their associated controller. For each object in the table, its - object number corresponds to an instance number in the appropriate - MIB table for that object where all of the object properties can be - found. - Note: Only array disks that are NOT part of an enclosure will be - listed in this table. Backplanes are considered enclosures by - Storage Management." - ::= { physicalDevices 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.6.1 - arrayDiskChannelConnectionEntry OBJECT-TYPE - SYNTAX ArrayDiskChannelConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Array Disk Channel Connection table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { arrayDiskChannelConnectionNumber } - ::= { arrayDiskChannelConnectionTable 1 } - - - ArrayDiskChannelConnectionEntry ::= - SEQUENCE { - arrayDiskChannelConnectionNumber - INTEGER, - arrayDiskChannelConnectionArrayDiskName - DisplayString, - arrayDiskChannelConnectionArrayDiskNumber - INTEGER, - arrayDiskChannelConnectionChannelName - DisplayString, - arrayDiskChannelConnectionChannelNumber - INTEGER, - arrayDiskChannelConnectionControllerName - DisplayString, - arrayDiskChannelConnectionControllerNumber - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.1 - arrayDiskChannelConnectionNumber OBJECT-TYPE - SYNTAX INTEGER (1..1000000000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this array disk connection entry. - This table shows the array disk to SCSI channel relationship. - There is no enclosure service processor associated with these - array disks." - ::= { arrayDiskChannelConnectionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.2 - arrayDiskChannelConnectionArrayDiskName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the array disk in this connection - as represented in Storage Management." - ::= { arrayDiskChannelConnectionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.3 - arrayDiskChannelConnectionArrayDiskNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the array disk in the arrayDiskTable - in this connection." - ::= { arrayDiskChannelConnectionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.4 - arrayDiskChannelConnectionChannelName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the channel as represented in Storage Management - to which is array disk is connected." - ::= { arrayDiskChannelConnectionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.5 - arrayDiskChannelConnectionChannelNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the channel in the channelTable to - which this array disk is connected." - ::= { arrayDiskChannelConnectionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.6 - arrayDiskChannelConnectionControllerName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the controller as represented in Storage Management - to which this array disk is connected." - ::= { arrayDiskChannelConnectionEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.7 - arrayDiskChannelConnectionControllerNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number in the controllerTable of the controller - to which this array disk is connected." - ::= { arrayDiskChannelConnectionEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7 - fanTable OBJECT-TYPE - SYNTAX SEQUENCE OF FanEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Fans. The number of entries is - related to number of Fans discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1 - fanEntry OBJECT-TYPE - SYNTAX FanEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Fan table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { fanNumber } - ::= { fanTable 1 } - - - FanEntry ::= - SEQUENCE { - fanNumber - INTEGER, - fanName - DisplayString, - fanVendor - DisplayString, - fanState - INTEGER, - fanSeverity - INTEGER, - fanProbeUnit - DisplayString, - fanProbeMinWarning - DisplayString, - fanProbeMinCritical - DisplayString, - fanProbeMaxWarning - DisplayString, - fanProbeMaxCritical - DisplayString, - fanProbeCurrValue - DisplayString, - fan1PartNumber - DisplayString, - fan2PartNumber - DisplayString, - fanRollUpStatus - DellStatus, - fanComponentStatus - DellStatus, - fanNexusID - DisplayString, - fanRevision - DisplayString - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.1 - fanNumber OBJECT-TYPE - SYNTAX INTEGER (1..1000000000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this fan entry." - ::= { fanEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.2 - fanName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fan's name as represented in Storage Management." - ::= { fanEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.3 - fanVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fan's (re)seller's name." - ::= { fanEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.4 - fanState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - degraded(6), - removed(11), - missing(21) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of the fan. - Possible states: - 0: Unknown - 1: Ready - 2: Failed - 3: Online - 4: Offline - 6: Degraded - 21: Missing" - ::= { fanEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.5 - fanSeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { fanEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.6 - fanProbeUnit OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { fanEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.7 - fanProbeMinWarning OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This setting is not supported - by fans managed under Storage Management." - ::= { fanEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.8 - fanProbeMinCritical OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This setting is not supported - by fans managed under Storage Management." - ::= { fanEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.9 - fanProbeMaxWarning OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This setting is not supported - by fans managed under Storage Management." - ::= { fanEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.10 - fanProbeMaxCritical OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This setting is not supported - by fans managed under Storage Management." - ::= { fanEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.11 - fanProbeCurrValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current speed of the fan. - " - ::= { fanEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.12 - fan1PartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The part number of the fan in the enclosure." - ::= { fanEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.13 - fan2PartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This setting is not supported - by fans managed under Storage Management." - ::= { fanEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.14 - fanRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the fan state. - This is the combined status of the fan and its components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { fanEntry 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.15 - fanComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the fan itself without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { fanEntry 15 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.16 - fanNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this fan." - ::= { fanEntry 16 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.17 - fanRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The revision number of the fan in the enclosure." - ::= { fanEntry 17 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.8 - fanConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF FanConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of the connections between each fan on - the managed node and its enclosure. Each enclosure - number in the table corresponds to that enclosure instance - in the Enclosure Table." - ::= { physicalDevices 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.8.1 - fanConnectionEntry OBJECT-TYPE - SYNTAX FanConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Fan Connection table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { fanConnectionNumber } - ::= { fanConnectionTable 1 } - - - FanConnectionEntry ::= - SEQUENCE { - fanConnectionNumber - INTEGER, - fanConnectionFanName - DisplayString, - fanConnectionFanNumber - INTEGER, - fanConnectionEnclosureName - DisplayString, - fanConnectionEnclosureNumber - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.1 - fanConnectionNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this fan connection entry." - ::= { fanConnectionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.2 - fanConnectionFanName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the fan in this connection as represented in Storage Management." - ::= { fanConnectionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.3 - fanConnectionFanNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the fan in the fanTable in this connection." - ::= { fanConnectionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.4 - fanConnectionEnclosureName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the enclosure as represented in Storage Management - to which this fan belongs." - ::= { fanConnectionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.5 - fanConnectionEnclosureNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the enclosure in the enclosureTable - to which this fan belongs." - ::= { fanConnectionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9 - powerSupplyTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerSupplyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Power Supplies. The number of entries is - related to number of Power Supplies discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1 - powerSupplyEntry OBJECT-TYPE - SYNTAX PowerSupplyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Power Supply table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { powerSupplyNumber } - ::= { powerSupplyTable 1 } - - - PowerSupplyEntry ::= - SEQUENCE { - powerSupplyNumber - INTEGER, - powerSupplyName - DisplayString, - powerSupplyVendor - DisplayString, - powerSupplyState - INTEGER, - powerSupplySeverity - INTEGER, - powerSupply1PartNumber - DisplayString, - powerSupply2PartNumber - DisplayString, - powerSupplyRollUpStatus - DellStatus, - powerSupplyComponentStatus - DellStatus, - powerSupplyNexusID - DisplayString, - powerSupplyRevision - DisplayString - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.1 - powerSupplyNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this power supply entry." - ::= { powerSupplyEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.2 - powerSupplyName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power supply's name as represented in Storage Management." - ::= { powerSupplyEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.3 - powerSupplyVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power supply's (re)seller's name." - ::= { powerSupplyEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.4 - powerSupplyState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - notInstalled(5), - degraded(6), - removed(11), - missing(21) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of the power supply. - Possible states: - 0 : Unknown - 1 : Ready - 2 : Failed - 5 : Not Installed - 6 : Degraded - 11: Removed - 21: Missing" - ::= { powerSupplyEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.5 - powerSupplySeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { powerSupplyEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.6 - powerSupply1PartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The part number of the power supply of the enclosure." - ::= { powerSupplyEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.7 - powerSupply2PartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This setting is not supported - by power supplies managed under Storage Management." - ::= { powerSupplyEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.8 - powerSupplyRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the power supply state. - This is the combined status of the power supply and its - components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { powerSupplyEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.9 - powerSupplyComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the power supply itself without the - propegation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { powerSupplyEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.10 - powerSupplyNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this power supply." - ::= { powerSupplyEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.11 - powerSupplyRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The revision number of the power supply in the enclosure." - ::= { powerSupplyEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.10 - powerSupplyConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerSupplyConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of the connections between each power - supply on the managed node and its enclosure. Each - enclosure number in the table corresponds to that - enclosure instance in the Enclosure Table." - ::= { physicalDevices 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.10.1 - powerSupplyConnectionEntry OBJECT-TYPE - SYNTAX PowerSupplyConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Power Supply Connection table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { powerSupplyConnectionNumber } - ::= { powerSupplyConnectionTable 1 } - - - PowerSupplyConnectionEntry ::= - SEQUENCE { - powerSupplyConnectionNumber - INTEGER, - powerSupplyConnectionPowersupplyName - DisplayString, - powerSupplyConnectionPowersupplyNumber - INTEGER, - powerSupplyConnectionEnclosureName - DisplayString, - powerSupplyConnectionEnclosureNumber - INTEGER, - powerSupplyConnectionFirmwareVersion - DisplayString - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.1 - powerSupplyConnectionNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this power supply connection entry." - ::= { powerSupplyConnectionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.2 - powerSupplyConnectionPowersupplyName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the power supply in this connection - as represented in Storage Management." - ::= { powerSupplyConnectionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.3 - powerSupplyConnectionPowersupplyNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This instance number in the powersupplyTable - of the power supply in this connection." - ::= { powerSupplyConnectionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.4 - powerSupplyConnectionEnclosureName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the enclosure to which this power supply is - connected as represented in Storage Management." - ::= { powerSupplyConnectionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.5 - powerSupplyConnectionEnclosureNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the enclosure in the enclosureTable - to which this power supply is connected." - ::= { powerSupplyConnectionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.6 - powerSupplyConnectionFirmwareVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Displays power supply connection firmware version. - Note: Available above 1.04 firmware version" - ::= { powerSupplyConnectionEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11 - temperatureProbeTable OBJECT-TYPE - SYNTAX SEQUENCE OF TemperatureProbeEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Temperature Probes. The number of entries is - related to number of Temperature Probes discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1 - temperatureProbeEntry OBJECT-TYPE - SYNTAX TemperatureProbeEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Temperature Probe table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { temperatureProbeNumber } - ::= { temperatureProbeTable 1 } - - - TemperatureProbeEntry ::= - SEQUENCE { - temperatureProbeNumber - INTEGER, - temperatureProbeName - DisplayString, - temperatureProbeVendor - DisplayString, - temperatureProbeState - INTEGER, - temperatureProbeSeverity - INTEGER, - temperatureProbeUnit - DisplayString, - temperatureProbeMinWarning - INTEGER, - temperatureProbeMinCritical - INTEGER, - temperatureProbeMaxWarning - INTEGER, - temperatureProbeMaxCritical - INTEGER, - temperatureProbeCurValue - INTEGER, - temperatureProbeRollUpStatus - DellStatus, - temperatureProbeComponentStatus - DellStatus, - temperatureProbeNexusID - DisplayString - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.1 - temperatureProbeNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this temperature probe entry." - ::= { temperatureProbeEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.2 - temperatureProbeName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Name of this temperature probe as represented in Storage Management." - ::= { temperatureProbeEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.3 - temperatureProbeVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Temperature probe's (re)seller's name." - ::= { temperatureProbeEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.4 - temperatureProbeState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - offline(4), - degraded(6), - inactive(9), - missing(21) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of the temperature probe. - Possible states: - 0: Unknown - 1: Ready - 2: Failed (Minimum Failure Threshold Exceeded, - Maximum Failure Threshold Exceeded) - 4: Offline - 6: Degraded (Minimum Warning Threshold Exceeded, - Maximum Warning Threshold Exceeded) - 9: Inactive - 21: Missing" - ::= { temperatureProbeEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.5 - temperatureProbeSeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { temperatureProbeEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.6 - temperatureProbeUnit OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The units that will be used to display temperatures for this - temperature probe." - ::= { temperatureProbeEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.7 - temperatureProbeMinWarning OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum temperature that will force the probe into - a warning state." - ::= { temperatureProbeEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.8 - temperatureProbeMinCritical OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum temperature that will force the probe into - an error state." - ::= { temperatureProbeEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.9 - temperatureProbeMaxWarning OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum temperature that will force the probe into - a warning state." - ::= { temperatureProbeEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.10 - temperatureProbeMaxCritical OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum temperature that will force the probe into - an error state." - ::= { temperatureProbeEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.11 - temperatureProbeCurValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current temperature of this probe." - ::= { temperatureProbeEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.12 - temperatureProbeRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the temperature probe state. - This is the combined status of the temperature probe - and its components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { temperatureProbeEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.13 - temperatureProbeComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the temperature probe itself without the propagation - of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { temperatureProbeEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.14 - temperatureProbeNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this temperature probe." - ::= { temperatureProbeEntry 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.12 - temperatureConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF TemperatureConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of the connections between each - temperature probe on the managed node and its enclosure. - Each enclosure number in the table corresponds to that - enclosure instance in the Enclosure Table." - ::= { physicalDevices 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.12.1 - temperatureConnectionEntry OBJECT-TYPE - SYNTAX TemperatureConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Temperature Probe Connection table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { temperatureConnectionNumber } - ::= { temperatureConnectionTable 1 } - - - TemperatureConnectionEntry ::= - SEQUENCE { - temperatureConnectionNumber - INTEGER, - temperatureConnectionTemperatureName - DisplayString, - temperatureConnectionTemperatureNumber - INTEGER, - temperatureConnectionEnclosureName - DisplayString, - temperatureConnectionEnclosureNumber - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.1 - temperatureConnectionNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this temperature probe connection entry." - ::= { temperatureConnectionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.2 - temperatureConnectionTemperatureName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the temperature probe in this connection as - represented in Storage Management." - ::= { temperatureConnectionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.3 - temperatureConnectionTemperatureNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number in the temperatureTable of the temperature probe in this connection." - ::= { temperatureConnectionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.4 - temperatureConnectionEnclosureName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the enclosure as represented in Storage Management - to which this temperature probe belongs." - ::= { temperatureConnectionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.5 - temperatureConnectionEnclosureNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the enclosure in the enclosureTable - to which this temperature probe belongs. - " - ::= { temperatureConnectionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13 - enclosureManagementModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosureManagementModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Enclosure Management Modules. The number of - entries is related to number of Enclosure Management Modules - discovered in the system. The maximum number of entries - is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1 - enclosureManagementModuleEntry OBJECT-TYPE - SYNTAX EnclosureManagementModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Enclosure Management Module table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { enclosureManagementModuleNumber } - ::= { enclosureManagementModuleTable 1 } - - - EnclosureManagementModuleEntry ::= - SEQUENCE { - enclosureManagementModuleNumber - INTEGER, - enclosureManagementModuleName - DisplayString, - enclosureManagementModuleVendor - DisplayString, - enclosureManagementModuleState - INTEGER, - enclosureManagementModuleSeverity - INTEGER, - enclosureManagementModulePartNumber - DisplayString, - enclosureManagementModuleType - INTEGER, - enclosureManagementModuleFWVersion - DisplayString, - enclosureManagementModuleMaxSpeed - DisplayString, - enclosureManagementModuleRollUpStatus - DellStatus, - enclosureManagementModuleComponentStatus - DellStatus, - enclosureManagementModuleNexusID - DisplayString, - enclosureManagementModuleRevision - DisplayString - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.1 - enclosureManagementModuleNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this enclosure memory module entry." - ::= { enclosureManagementModuleEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.2 - enclosureManagementModuleName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Name of this enclosure memory module as represented in - Storage Management." - ::= { enclosureManagementModuleEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.3 - enclosureManagementModuleVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The management module's (re)seller's name." - ::= { enclosureManagementModuleEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.4 - enclosureManagementModuleState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - online(3), - offline(4), - notInstalled(5), - degraded(6), - missing(21) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of the enclosure management - module. - Possible states: - 0: Unknown - 1: Ready - 2: Failed - 3: Online - 4: Offline - 5: Not Installed - 6: Degraded - 21: Missing" - ::= { enclosureManagementModuleEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.5 - enclosureManagementModuleSeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { enclosureManagementModuleEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.6 - enclosureManagementModulePartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The part number of the enclosure memory module." - ::= { enclosureManagementModuleEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.7 - enclosureManagementModuleType OBJECT-TYPE - SYNTAX INTEGER - { - eMM(1), - terminationCard(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of the enclosure management module. - Possible values: - 0: Unknown - 1: EMM - 2: Termination Card" - ::= { enclosureManagementModuleEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.8 - enclosureManagementModuleFWVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware version of the enclosure memory module." - ::= { enclosureManagementModuleEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.9 - enclosureManagementModuleMaxSpeed OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum bus speed of the enclosure management module." - ::= { enclosureManagementModuleEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.10 - enclosureManagementModuleRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the enclosure management module state. - This is the combined status of the EMM and its components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { enclosureManagementModuleEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.11 - enclosureManagementModuleComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the enclosure management module itself - without the propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { enclosureManagementModuleEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.12 - enclosureManagementModuleNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this EMM." - ::= { enclosureManagementModuleEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.13 - enclosureManagementModuleRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The revision number of the enclosure management module." - ::= { enclosureManagementModuleEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.14 - enclosureManagementModuleConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosureManagementModuleConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of the connections between each enclosure management module - on the managed node and its enclosure. Each enclosure - number in the table corresponds to that enclosure instance - in the Enclosure Table." - ::= { physicalDevices 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.14.1 - enclosureManagementModuleConnectionEntry OBJECT-TYPE - SYNTAX EnclosureManagementModuleConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Enclosure Management Module Connection table . A row in this - table cannot be created or deleted by SNMP operations on columns of the table." - INDEX { enclosureManagementModuleConnectionNumber } - ::= { enclosureManagementModuleConnectionTable 1 } - - - EnclosureManagementModuleConnectionEntry ::= - SEQUENCE { - enclosureManagementModuleConnectionNumber - INTEGER, - enclosureManagementModuleConnectionEMMName - DisplayString, - enclosureManagementModuleConnectionEMMNumber - INTEGER, - enclosureManagementModuleConnectionEnclosureName - DisplayString, - enclosureManagementModuleConnectionEnclosureNumber - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.1 - enclosureManagementModuleConnectionNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this enclosure management module - connection entry." - ::= { enclosureManagementModuleConnectionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.2 - enclosureManagementModuleConnectionEMMName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the enclosure management module in this - connection as represented in Storage Management." - ::= { enclosureManagementModuleConnectionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.3 - enclosureManagementModuleConnectionEMMNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the enclosure management module in - the enclosureManagementModuleTable in this connection." - ::= { enclosureManagementModuleConnectionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.4 - enclosureManagementModuleConnectionEnclosureName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the enclosure as represented in Storage Management - to which this enclosure management module belongs." - ::= { enclosureManagementModuleConnectionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.5 - enclosureManagementModuleConnectionEnclosureNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the enclosure in the enclosureTable - to which this enclosure management module belongs." - ::= { enclosureManagementModuleConnectionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15 - batteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF BatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Batteries. The number of - entries is related to number of Batteries - discovered in the system. The maximum number of entries - is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 15 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1 - batteryEntry OBJECT-TYPE - SYNTAX BatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Battery table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { batteryNumber } - ::= { batteryTable 1 } - - - BatteryEntry ::= - SEQUENCE { - batteryNumber - INTEGER, - batteryName - DisplayString, - batteryVendor - DisplayString, - batteryState - INTEGER, - batteryRollUpStatus - DellStatus, - batteryComponentStatus - DellStatus, - batteryChargeCount - INTEGER, - batteryMaxChargeCount - INTEGER, - batteryNexusID - DisplayString, - batteryPredictedCapacity - INTEGER, - batteryNextLearnTime - INTEGER, - batteryLearnState - INTEGER, - batteryID - INTEGER, - batteryMaxLearnDelay - INTEGER, - batteryLearnMode - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.1 - batteryNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this battery entry." - ::= { batteryEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.2 - batteryName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery's name as represented in Storage Management." - ::= { batteryEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.3 - batteryVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery's (re)seller's name." - ::= { batteryEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.4 - batteryState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - degraded(6), - reconditioning(7), - high(9), - low(10), - charging(12), - missing(21), - learning(36) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Current state of battery. - Possible values: - 0: Unknown - 1: Ready - 2: Failed - 6: Degraded - 7: Reconditioning - 9: High - 10: Low Power - 12: Charging - 21: Missing - 36: Learning - " - ::= { batteryEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.5 - batteryRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the battery state. - This is the combined status of the battery and its components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { batteryEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.6 - batteryComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the battery itself without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { batteryEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.7 - batteryChargeCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of charges that have been applied to the battery." - ::= { batteryEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.8 - batteryMaxChargeCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of charges that can be applied to the battery." - ::= { batteryEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.9 - batteryNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this battery." - ::= { batteryEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.10 - batteryPredictedCapacity OBJECT-TYPE - SYNTAX INTEGER - { - failed(1), - ready(2), - unknown(4) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This property displays the battery's ability to be charged. - Possible values: - 1: Failed - The battery cannot be charged and needs to be replaced. - 2: Ready - The battery can be charged to full capacity. - 4: Unknown - The battery is completing a Learn cycle. The charge capacity of the battery cannot be determined until the Learn cycle is complete. - " - ::= { batteryEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.11 - batteryNextLearnTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Time next learn cycle must be executed (in hours.) - " - ::= { batteryEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.12 - batteryLearnState OBJECT-TYPE - SYNTAX INTEGER - { - failed(1), - active(2), - timedOut(4), - requested(8), - idle(16), - due(32) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Specifies the learn state activity of the battery. - Possible values: - 1 : Failed - 2 : Active - 4 : Timed out - 8 : Requested - 16: Idle - 32: Due" - ::= { batteryEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.13 - batteryID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Represents unique id for battery." - ::= { batteryEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.14 - batteryMaxLearnDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The maximum amount of time (in hours) that the battery learn cycle can be delayed." - ::= { batteryEntry 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.15 - batteryLearnMode OBJECT-TYPE - SYNTAX INTEGER - { - auto(1), - warn(2), - autowarn(4), - unknown(8) - } - ACCESS read-write - STATUS deprecated - DESCRIPTION - "Indicates current learn mode of the battery. - Possible values: - 1: Auto - 2: Warn - 4: Autowarn - 8: Unknown - " - ::= { batteryEntry 15 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.16 - batteryConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF BatteryConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of the connections between each - battery on the managed node and its controller. - Each controller number in the table corresponds to that - controller instance in the Controller Table." - ::= { physicalDevices 16 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.16.1 - batteryConnectionEntry OBJECT-TYPE - SYNTAX BatteryConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Battery Connection table . A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { batteryConnectionNumber } - ::= { batteryConnectionTable 1 } - - - BatteryConnectionEntry ::= - SEQUENCE { - batteryConnectionNumber - INTEGER, - batteryConnectionBatteryName - DisplayString, - batteryConnectionBatteryNumber - INTEGER, - batteryConnectionControllerName - DisplayString, - batteryConnectionControllerNumber - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.1 - batteryConnectionNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this battery connection entry." - ::= { batteryConnectionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.2 - batteryConnectionBatteryName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the battery in this connection as represented in Storage Management." - ::= { batteryConnectionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.3 - batteryConnectionBatteryNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number in the batteryTable of the battery in this connection." - ::= { batteryConnectionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.4 - batteryConnectionControllerName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the controller as represented in Storage Management - to which this battery belongs." - ::= { batteryConnectionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.5 - batteryConnectionControllerNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the controller in the controllerTable - to which this battery belongs." - ::= { batteryConnectionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1 - controllerTable OBJECT-TYPE - SYNTAX SEQUENCE OF ControllerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed RAID controllers. The number of entries - is related to number of RAID controllers discovered in the - system. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1 - controllerEntry OBJECT-TYPE - SYNTAX ControllerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the table of RAID controllers. A row in this table cannot - be created or deleted by SNMP operations on columns of the table." - INDEX { controllerNumber } - ::= { controllerTable 1 } - - - ControllerEntry ::= - SEQUENCE { - controllerNumber - INTEGER, - controllerName - DisplayString, - controllerVendor - DisplayString, - controllerType - INTEGER, - controllerState - INTEGER, - controllerSeverity - INTEGER, - controllerRebuildRateInPercent - INTEGER, - controllerFWVersion - DisplayString, - controllerCacheSizeInMB - INTEGER, - controllerCacheSizeInBytes - INTEGER, - controllerPhysicalDeviceCount - INTEGER, - controllerLogicalDeviceCount - INTEGER, - controllerPartnerStatus - DisplayString, - controllerHostPortCount - INTEGER, - controllerMemorySizeInMB - INTEGER, - controllerMemorySizeInBytes - INTEGER, - controllerDriveChannelCount - INTEGER, - controllerFaultTolerant - INTEGER, - controllerC0Port0WWN - DisplayString, - controllerC0Port0Name - DisplayString, - controllerC0Port0ID - INTEGER, - controllerC0Target - INTEGER, - controllerC0Channel - INTEGER, - controllerC0OSController - DisplayString, - controllerC0BatteryState - INTEGER, - controllerC1Port0WWN - DisplayString, - controllerC1Port0Name - DisplayString, - controllerC1Port0ID - INTEGER, - controllerC1Target - INTEGER, - controllerC1Channel - INTEGER, - controllerC1OSController - INTEGER, - controllerC1BatteryState - INTEGER, - controllerNodeWWN - DisplayString, - controllerC0Port1WWN - DisplayString, - controllerC1Port1WWN - DisplayString, - controllerBatteryChargeCount - INTEGER, - controllerRollUpStatus - DellStatus, - controllerComponentStatus - DellStatus, - controllerNexusID - DisplayString, - controllerAlarmState - INTEGER, - controllerDriverVersion - DisplayString, - controllerPCISlot - DisplayString, - controllerClusterMode - INTEGER, - controllerMinFWVersion - DisplayString, - controllerMinDriverVersion - DisplayString, - controllerSCSIInitiatorID - INTEGER, - controllerChannelCount - INTEGER, - controllerReconstructRate - INTEGER, - controllerPatrolReadRate - INTEGER, - controllerBGIRate - INTEGER, - controllerCheckConsistencyRate - INTEGER, - controllerPatrolReadMode - INTEGER, - controllerPatrolReadState - INTEGER, - controllerPatrolReadIterations - INTEGER, - controllerStorportDriverVersion - DisplayString, - controllerMinRequiredStorportVer - DisplayString, - controllerEncryptionCapable - INTEGER, - controllerEncryptionKeyPresent - INTEGER, - controllerPersistentHotSpare - INTEGER, - controllerSpinDownUnconfiguredDrives - INTEGER, - controllerSpinDownHotSpareDrives - INTEGER, - controllerSpinDownTimeInterval - INTEGER, - controllerEncryptionMode - INTEGER, - controllerCacheCade - INTEGER, - controllerSpinDownConfiguredDrives - INTEGER, - controllerAutomaticPowerSaving - INTEGER, - controllerConfiguredDrivesSpinUpTime - DisplayString, - controllerConfiguredDrivesSpinUpTimeInterval - INTEGER, - controllerPreservedCache - INTEGER, - controllerPIEnable - INTEGER, - controllerCurrentMode - DisplayString - } - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.1 - controllerNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this controller entry." - ::= { controllerEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.2 - controllerName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the controller in this subsystem as represented in Storage Management. - Includes the controller type and instance. - For example: Perc3/QC 1." - ::= { controllerEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.3 - controllerVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The controller's (re)seller's name." - ::= { controllerEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.4 - controllerType OBJECT-TYPE - SYNTAX INTEGER - { - scsi(1), - pv660F(2), - pv662F(3), - ide(4), - sata(5), - sas(6), - pciessd(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of this controller: - 1: SCSI - 2: PV660F - 3: PV662F - 4: IDE (Integrated/Intelligent Drive Electronics) - 5: SATA (Serial Advanced Technology Attachment) - 6: SAS (Serial Attached SCSI) - 9: PCIe SSD" - ::= { controllerEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.5 - controllerState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - online(3), - offline(4), - degraded(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of the controller's subsystem - (which includes any devices connected to it.) - Possible states: - 0: Unknown - 1: Ready - 2: Failed - 3: Online - 4: Offline - 6: Degraded" - ::= { controllerEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.6 - controllerSeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { controllerEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.7 - controllerRebuildRateInPercent OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percent of the compute cycles dedicated to rebuilding - failed array disks. " - ::= { controllerEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.8 - controllerFWVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The controller's current firmware version." - ::= { controllerEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.9 - controllerCacheSizeInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The controller's current amount of cache memory in megabytes. - If this size is 0, it is less than a megabyte." - ::= { controllerEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.10 - controllerCacheSizeInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The controller's current amount of cache memory that is less than a megabyte. This combined with the - controllerCacheSizeInMB will be the total amount of memory." - ::= { controllerEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.11 - controllerPhysicalDeviceCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of physical devices on the controller channel including both disks and the controller." - ::= { controllerEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.12 - controllerLogicalDeviceCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of virtual disks on the controller." - ::= { controllerEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.13 - controllerPartnerStatus OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management." - ::= { controllerEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.14 - controllerHostPortCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.15 - controllerMemorySizeInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Size of memory in megabytes on the controller. If this size is 0, it is less than a megabyte. This attribute is only supported on Adaptec controllers. " - ::= { controllerEntry 15 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.16 - controllerMemorySizeInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Size of memory on the controller that is less than a megabyte. This combined with the controllerMemorySizeInMB - will be the total size of the memory. This attribute is only supported on Adaptec controllers." - ::= { controllerEntry 16 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.17 - controllerDriveChannelCount OBJECT-TYPE - SYNTAX INTEGER (1..4) - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 17 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.18 - controllerFaultTolerant OBJECT-TYPE - SYNTAX INTEGER { yes(1) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 18 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.19 - controllerC0Port0WWN OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 19 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.20 - controllerC0Port0Name OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 20 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.21 - controllerC0Port0ID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 21 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.22 - controllerC0Target OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management. - " - ::= { controllerEntry 22 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.23 - controllerC0Channel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 23 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.24 - controllerC0OSController OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 24 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.25 - controllerC0BatteryState OBJECT-TYPE - SYNTAX INTEGER - { - ok(1), - failed(2), - reconditioning(7), - high(9), - low(10), - charging(12), - missing(21) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management. " - ::= { controllerEntry 25 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.26 - controllerC1Port0WWN OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 26 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.27 - controllerC1Port0Name OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 27 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.28 - controllerC1Port0ID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 28 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.29 - controllerC1Target OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 29 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.30 - controllerC1Channel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 30 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.31 - controllerC1OSController OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 31 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.32 - controllerC1BatteryState OBJECT-TYPE - SYNTAX INTEGER - { - ok(1), - failed(2), - reconditioning(7), - high(9), - low(10), - charging(12), - missing(21) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management. " - ::= { controllerEntry 32 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.33 - controllerNodeWWN OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 33 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.34 - controllerC0Port1WWN OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 34 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.35 - controllerC1Port1WWN OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 35 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.36 - controllerBatteryChargeCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. - Fibre channel is not supported in Storage Management." - ::= { controllerEntry 36 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.37 - controllerRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the controller state. - This is the combined status of the controller and its components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { controllerEntry 37 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.38 - controllerComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the controller itself without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { controllerEntry 38 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.39 - controllerNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this controller." - ::= { controllerEntry 39 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.40 - controllerAlarmState OBJECT-TYPE - SYNTAX INTEGER - { - enabled(1), - disabled(2), - not-applicable(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "State, or setting for the controller's alarm. - Possible values: - 1: Enabled - 2: Disabled - 3: Not Applicable" - ::= { controllerEntry 40 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.41 - controllerDriverVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Currently installed driver version for this controller." - ::= { controllerEntry 41 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.42 - controllerPCISlot OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The PCI slot number or embedded number for controllers on the motherboard. - " - ::= { controllerEntry 42 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.43 - controllerClusterMode OBJECT-TYPE - SYNTAX INTEGER - { - enabled(1), - disabled(2), - active(3), - notApplicable(99) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Identifies if the controller is in cluster mode. - Possible values: - 1 : Enabled - 2 : Disabled - 3 : Active (enabled and active) - 99: Not Applicable - " - ::= { controllerEntry 43 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.44 - controllerMinFWVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum firmware version for Storage Management to support the controller. - " - ::= { controllerEntry 44 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.45 - controllerMinDriverVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum driver version for Storage Management to support the controller. - " - ::= { controllerEntry 45 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.46 - controllerSCSIInitiatorID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The SCSI ID of the initiator." - ::= { controllerEntry 46 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.47 - controllerChannelCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of channels on the controller." - ::= { controllerEntry 47 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.48 - controllerReconstructRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The rate for reconstruct on the controller. - " - ::= { controllerEntry 48 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.49 - controllerPatrolReadRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The rate for patrol read on the controller. - " - ::= { controllerEntry 49 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.50 - controllerBGIRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The rate for background initialization on the controller. - " - ::= { controllerEntry 50 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.51 - controllerCheckConsistencyRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The rate for check consistency on the controller. - " - ::= { controllerEntry 51 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.52 - controllerPatrolReadMode OBJECT-TYPE - SYNTAX INTEGER - { - automatic(1), - manual(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Identifies the patrol read mode. - Possible values: - 1: Automatic (enabled) - 2: Manual (enabled) - 3: Disabled - " - ::= { controllerEntry 52 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.53 - controllerPatrolReadState OBJECT-TYPE - SYNTAX INTEGER - { - stopped(1), - ready(2), - active(4), - aborted(8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the patrol read. - 1: Stopped - not running - 2: Ready - ready to start - 4: Active - is running - 8: Aborted - has aborted - " - ::= { controllerEntry 53 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.54 - controllerPatrolReadIterations OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of times Patrol Read has been run on this controller." - ::= { controllerEntry 54 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.55 - controllerStorportDriverVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provide current Windows OS storport driver version. Not applicable for Linux." - ::= { controllerEntry 55 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.56 - controllerMinRequiredStorportVer OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides minimum required storport driver version for Windows OS only. " - ::= { controllerEntry 56 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.57 - controllerEncryptionCapable OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates Encryption capability of the controller. - Value: 1 - Capable, 99 - NotApplicable" - ::= { controllerEntry 57 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.58 - controllerEncryptionKeyPresent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates presence of Encryption Key for the controller. - Value: 1 - Yes, 0 - No, 99 - NotApplicable" - ::= { controllerEntry 58 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.59 - controllerPersistentHotSpare OBJECT-TYPE - SYNTAX INTEGER (0..1) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates Persistent Hot Spare capability of the controller - Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" - ::= { controllerEntry 59 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.60 - controllerSpinDownUnconfiguredDrives OBJECT-TYPE - SYNTAX INTEGER (0..1) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates controller capability to put unconfigured drives in power save mode. - Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" - ::= { controllerEntry 60 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.61 - controllerSpinDownHotSpareDrives OBJECT-TYPE - SYNTAX INTEGER (0..1) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates controller capability to put hot spare drives in power save mode. - Value: 1 - Enabled, 0 - Disabled, 99 - Undetermined / Not applicable" - ::= { controllerEntry 61 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.62 - controllerSpinDownTimeInterval OBJECT-TYPE - SYNTAX INTEGER (30..1440) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Shows the duration in minutes after which, the unconfigured or hot spare drives will be spun down to power save mode. - Value: 30 to 1440 - Note: A value of 9999 indicates feature not available." - ::= { controllerEntry 62 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.63 - controllerEncryptionMode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the current encryption mode of the controller. - Value: 0 - No Encryption, 1 - Local Key Management (LKM), 2 - Dell Key Management (DKM), 99 - Not Applicable - " - ::= { controllerEntry 63 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.64 - controllerCacheCade OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if the controller is CacheCade capable or not. - Value: 1 - Capable, 0 - Not Capable, 99 - Undetermined" - ::= { controllerEntry 64 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.65 - controllerSpinDownConfiguredDrives OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates controller capability to spin down configured physical disks. - Value: 0 - Disabled, 1 - Enabled, 99 - Undetermined - " - ::= { controllerEntry 65 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.66 - controllerAutomaticPowerSaving OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates controller capability for automatic power saving. - Value: 0 - Disabled, 1 - Enabled, 99 - Undetermined" - ::= { controllerEntry 66 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.67 - controllerConfiguredDrivesSpinUpTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates configured drives spin up start time. - Value: 1:00 AM to 12:59 PM, 9999 - Undetermined" - ::= { controllerEntry 67 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.68 - controllerConfiguredDrivesSpinUpTimeInterval OBJECT-TYPE - SYNTAX INTEGER (30..1440) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates configured drives spin up time interval in hours. This value is added with configured drives start time to arrive at time window in which configured drives are always spin up. - Value: 1 .. 24, 9999 - Undetermined" - ::= { controllerEntry 68 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.69 - controllerPreservedCache OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if preserved cache is present on the controller. - Values: 1- Yes, 0 - No, 99 - Not available / Not applicable" - ::= { controllerEntry 69 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.70 - controllerPIEnable OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if T10 PI is enabled on a controller. - Value can be either 0 (T10 PI disabled) or 1 (T10 PI enabled)." - ::= { controllerEntry 70 } - - - -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.71 - controllerCurrentMode OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the current controller mode." - ::= { controllerEntry 71 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.17 - -- 1.3.6.1.4.1.674.10893.1.20.130.17 - tapeDriveTable OBJECT-TYPE - SYNTAX SEQUENCE OF TapeDriveEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of listed Tape Drives The number of entries is - related to number of Tape Drives discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { physicalDevices 17 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.17.1 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1 - tapeDriveEntry OBJECT-TYPE - SYNTAX TapeDriveEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Tape Library table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { tapeDriveNumber } - ::= { tapeDriveTable 1 } - - - TapeDriveEntry ::= - SEQUENCE { - tapeDriveNumber - INTEGER, - tapeDriveName - DisplayString, - tapeDriveVendor - DisplayString, - tapeDriveProductID - DisplayString, - tapeDriveNexusID - DisplayString, - tapeDriveBusType - INTEGER, - tapeDriveSASAddress - DisplayString, - tapeDriveMediaType - INTEGER - } - --- 1.3.6.1.4.1.674.10893.1.20.130.17.1.1 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.1 - tapeDriveNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this tape drive entry." - ::= { tapeDriveEntry 1 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.2 --- 1.3.6.1.4.1.674.10893.1.20.130.17.1.2 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.2 - tapeDriveName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the tape drive as represented in Storage Management." - ::= { tapeDriveEntry 2 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.3 --- 1.3.6.1.4.1.674.10893.1.20.130.17.1.3 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.3 - tapeDriveVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The tape drive's manufacturer's name." - ::= { tapeDriveEntry 3 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.6 --- 1.3.6.1.4.1.674.10893.1.20.130.17.1.4 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.4 - tapeDriveProductID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The model number of the tape drive" - ::= { tapeDriveEntry 4 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.26 --- 1.3.6.1.4.1.674.10893.1.20.130.17.1.6 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.5 - tapeDriveNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this tape drive" - ::= { tapeDriveEntry 5 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.21 --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.21 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.6 - tapeDriveBusType OBJECT-TYPE - SYNTAX INTEGER { sas(8) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bus type of the tape drive. - Possible values: - 8. SAS" - ::= { tapeDriveEntry 6 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.28 --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.28 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.7 - tapeDriveSASAddress OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The specified SAS address if this is a SAS tape drive. - " - ::= { tapeDriveEntry 7 } - - --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.35 --- 1.3.6.1.4.1.674.10893.1.20.130.4.1.35 - -- 1.3.6.1.4.1.674.10893.1.20.130.17.1.8 - tapeDriveMediaType OBJECT-TYPE - SYNTAX INTEGER { tape(4) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Media type of the tape drive. - Possible Values: - 4:Tape" - ::= { tapeDriveEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140 - logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.3 - arrayDiskLogicalConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF ArrayDiskLogicalConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of the connections between array disks, the - virtual disk to which they belong, and their - associated logical disk. For each object in the table, - its object number corresponds to an instance number in - the appropriate MIB table for that object where all of - the object properties can be found. - - - " - ::= { logicalDevices 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.3.1 - arrayDiskLogicalConnectionEntry OBJECT-TYPE - SYNTAX ArrayDiskLogicalConnectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Array Disk Logical Connection table . A row in this table - cannot be created or deleted by SNMP operations on columns of the table." - INDEX { arrayDiskLogicalConnectionNumber } - ::= { arrayDiskLogicalConnectionTable 1 } - - - ArrayDiskLogicalConnectionEntry ::= - SEQUENCE { - arrayDiskLogicalConnectionNumber - INTEGER, - arrayDiskLogicalConnectionArrayDiskName - DisplayString, - arrayDiskLogicalConnectionArrayDiskNumber - INTEGER, - arrayDiskLogicalConnectionVirtualDiskName - DisplayString, - arrayDiskLogicalConnectionVirtualDiskNumber - INTEGER, - arrayDiskLogicalConnectionDiskName - DisplayString, - arrayDiskLogicalConnectionDiskNumber - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.1 - arrayDiskLogicalConnectionNumber OBJECT-TYPE - SYNTAX INTEGER (1..1000000000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this array disk logical connection entry." - ::= { arrayDiskLogicalConnectionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.2 - arrayDiskLogicalConnectionArrayDiskName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the array disk in this logical connection." - ::= { arrayDiskLogicalConnectionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.3 - arrayDiskLogicalConnectionArrayDiskNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the array disk in this logical connection." - ::= { arrayDiskLogicalConnectionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.4 - arrayDiskLogicalConnectionVirtualDiskName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the virtual disk to which this array disk belongs." - ::= { arrayDiskLogicalConnectionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.5 - arrayDiskLogicalConnectionVirtualDiskNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The instance number of the virtual disk to which this array disk - belongs." - ::= { arrayDiskLogicalConnectionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.6 - arrayDiskLogicalConnectionDiskName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the disk group to with this array disk belongs. - This property is currently not supported." - ::= { arrayDiskLogicalConnectionEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.7 - arrayDiskLogicalConnectionDiskNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This instance number of the disk group to with this array disk belongs. - This property is currently not supported." - ::= { arrayDiskLogicalConnectionEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1 - virtualDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF VirtualDiskEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Virtual Disks. The number of entries is related - to number of Virtual Disks discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { logicalDevices 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1 - virtualDiskEntry OBJECT-TYPE - SYNTAX VirtualDiskEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Virtual Disk table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { virtualDiskNumber } - ::= { virtualDiskTable 1 } - - - VirtualDiskEntry ::= - SEQUENCE { - virtualDiskNumber - INTEGER, - virtualDiskName - DisplayString, - virtualDiskDeviceName - DisplayString, - virtualDiskState - INTEGER, - virtualDiskSeverity - INTEGER, - virtualDiskLengthInMB - INTEGER, - virtualDiskLengthInBytes - INTEGER, - virtualDiskFreeSpaceInMB - INTEGER, - virtualDiskFreeSpaceInBytes - INTEGER, - virtualDiskWritePolicy - INTEGER, - virtualDiskReadPolicy - INTEGER, - virtualDiskCachePolicy - INTEGER, - virtualDiskLayout - INTEGER, - virtualDiskCurStripeSizeInMB - INTEGER, - virtualDiskCurStripeSizeInBytes - INTEGER, - virtualDiskChannel - INTEGER, - virtualDiskTargetID - INTEGER, - virtualDiskLunID - INTEGER, - virtualDiskRollUpStatus - DellStatus, - virtualDiskComponentStatus - DellStatus, - virtualDiskNexusID - DisplayString, - virtualDiskArrayDiskType - INTEGER, - virtualDiskBadBlocksDetected - INTEGER, - virtualDiskEncrypted - INTEGER, - virtualDiskIsCacheCade - INTEGER, - virtualDiskDiskCachePolicy - INTEGER, - virtualDiskAssociatedFluidCacheStatus - INTEGER, - virtualDiskPIEnable - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.1 - virtualDiskNumber OBJECT-TYPE - SYNTAX INTEGER (1..100000000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this virtual disk entry." - ::= { virtualDiskEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.2 - virtualDiskName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The virtual disk's label generated by Storage Management or entered - by the user." - ::= { virtualDiskEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.3 - virtualDiskDeviceName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device name used by this virtual disk's member disks." - ::= { virtualDiskEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.4 - virtualDiskState OBJECT-TYPE - SYNTAX INTEGER - { - ready(1), - failed(2), - online(3), - offline(4), - degraded(6), - verifying(7), - resynching(15), - regenerating(16), - failedRedundancy(18), - rebuilding(24), - formatting(26), - reconstructing(32), - initializing(35), - backgroundInit(36), - permanentlyDegraded(52) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current condition of this virtual disk - (which includes any member array disks.) - Possible states: - 0: Unknown - 1: Ready - The disk is accessible and has no known problems. - 2: Failed - Access has been lost to the data or is about to be lost. - 3: Online - 4: Offline - The disk is not accessible. The disk may be corrupted or intermittently unavailable. - 6: Degraded - The data on the virtual disk is no longer fault tolerant because one of the underlying disks is not online. - 15: Resynching - 16: Regenerating - 24: Rebuilding - 26: Formatting - 32: Reconstructing - 35: Initializing - 36: Background Initialization - 38: Resynching Paused - 52: Permanently Degraded - 54: Degraded Redundancy" - ::= { virtualDiskEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.5 - virtualDiskSeverity OBJECT-TYPE - SYNTAX INTEGER - { - warning(1), - error(2), - failure(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete for Storage Management. - It was replaced with RollUpStatus and ComponentStatus for each device." - ::= { virtualDiskEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.6 - virtualDiskLengthInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of this virtual disk in megabytes. If this size - is 0, it is smaller than a megabyte." - ::= { virtualDiskEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.7 - virtualDiskLengthInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The portion of the virtual disk in bytes that is smaller - than a megabyte. This size plus the virtualDiskLengthInMB - is the total size of the virtual disk." - ::= { virtualDiskEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.8 - virtualDiskFreeSpaceInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This property is not supported for virtual disks managed under Storage Management." - ::= { virtualDiskEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.9 - virtualDiskFreeSpaceInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This property is not supported for virtual disks managed under Storage Management." - ::= { virtualDiskEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.10 - virtualDiskWritePolicy OBJECT-TYPE - SYNTAX INTEGER - { - enabled(1), - disabled(2), - writeBack(3), - writeThrough(4), - enabledAlways(5), - enabledAlwaysSAS(6), - notApplicable(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether the controller's write cache will be used - when writing to a virtual disk. - Possible values: - 1: Enabled - Adaptec Write Cache Enabled Protected - 2: Disabled - Adaptec Write Cache Disabled - 3: LSI Write Back - 4: LSI Write Through - 5: Enabled Always - Adaptec only - 6: Enabled Always - SAS only - 9: Not Applicable" - ::= { virtualDiskEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.11 - virtualDiskReadPolicy OBJECT-TYPE - SYNTAX INTEGER - { - enabled(1), - disabled(2), - readAhead(3), - adaptiveReadAhead(4), - noReadAhead(5), - notApplicable(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether the controller's read cache will be used - when reading from a virtual disk. - Possible values: - 1: Enabled - Adaptec Read Cache Enabled - 2: Disabled - Adaptec Read Cache Disabled - 3: LSI Read Ahead - 4: LSI Adaptive Read Ahead - 5: LSI No Read Ahead - 9: Not Applicable" - ::= { virtualDiskEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.12 - virtualDiskCachePolicy OBJECT-TYPE - SYNTAX INTEGER - { - directIO(1), - cachedIO(2), - not-applicable(99) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether the controller's cache is used when - reading from or writing to a virtual disk. - Possible values: - 1: Direct I/O (LSI) - 2: Cached I/O (LSI) - 99: Not applicable" - ::= { virtualDiskEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.13 - virtualDiskLayout OBJECT-TYPE - SYNTAX INTEGER - { - concatenated(1), - raid-0(2), - raid-1(3), - raid-2(4), - raid-3(5), - raid-4(6), - raid-5(7), - raid-6(8), - raid-7(9), - raid-10(10), - raid-30(11), - raid-50(12), - addSpares(13), - deleteLogical(14), - transformLogical(15), - raid-0-plus-1(18), - concatRaid-1(19), - concatRaid-5(20), - noRaid(21), - volume(22), - raidMorph(23), - raid-60(24), - cacheCade(25) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The virtual disk's RAID type. - Currently supported types: - 1: Concatenated - 2: RAID-0 - 3: RAID-1 - 7: RAID-5 - 8: RAID-6 - 10: RAID-10 - 12: RAID-50 - 19: Concatenated RAID 1 - 24: RAID-60 - 25: CacheCade - " - ::= { virtualDiskEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.14 - virtualDiskCurStripeSizeInMB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The stripe size of this virtual disk in megabytes. If this - size is 0, it is either smaller than a megabyte or not applicable. - " - ::= { virtualDiskEntry 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.15 - virtualDiskCurStripeSizeInBytes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The portion of the stripe size in bytes that is smaller - than a megabyte. This size plus the virtualDiskCurStripeSizeInMB - is the total stripe size on the virtual disk. - If this size is 0, either the entire size is whole megabytes or it is not applicable." - ::= { virtualDiskEntry 15 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.16 - virtualDiskChannel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This property is not supported - by virtual disks managed under Storage Management." - ::= { virtualDiskEntry 16 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.17 - virtualDiskTargetID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unique ID for the virtual disk." - ::= { virtualDiskEntry 17 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.18 - virtualDiskLunID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "This entry is obsolete. This property is not supported - by virtual disks managed under Storage Management." - ::= { virtualDiskEntry 18 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.19 - virtualDiskRollUpStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the virtual disk state. - This is the combined status of the virtual disk and its - components. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { virtualDiskEntry 19 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.20 - virtualDiskComponentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the virtual disk itself without - the propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { virtualDiskEntry 20 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.21 - virtualDiskNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this virtual disk." - ::= { virtualDiskEntry 21 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.22 - virtualDiskArrayDiskType OBJECT-TYPE - SYNTAX INTEGER - { - sas(1), - sata(2), - scsi(3), - ide(4), - unknown(99) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Identifies the type of array (physical) disks used to create the virtual disk. - Possible values: - 1: SAS - 2: SATA - 3: SCSI - 4: IDE - 99: Unknown - " - ::= { virtualDiskEntry 22 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.23 - virtualDiskBadBlocksDetected OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if virtual disk has bad blocks. - Value: 0 - No, 1 - Yes, 2 - Not Applicable, 99 - Unknown" - ::= { virtualDiskEntry 23 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.24 - virtualDiskEncrypted OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if virtual disk is encrypted. - Value: 0 - No, 1 - Yes, 99 - Unknown." - ::= { virtualDiskEntry 24 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.25 - virtualDiskIsCacheCade OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if this virtual disk is configured as CacheCade. - Value: 1 - Yes, 0 - No, 99 - Undetermined" - ::= { virtualDiskEntry 25 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.26 - virtualDiskDiskCachePolicy OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates disk cache policy of the logical device. - Value: 1 - Enabled, 2 - Disabled, 99 - Undetermined" - ::= { virtualDiskEntry 26 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.27 - virtualDiskAssociatedFluidCacheStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the status of the associated fluid cache status" - ::= { virtualDiskEntry 27 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.28 - virtualDiskPIEnable OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if T10 PI is enabled on a virtual disk. - Possible values are: 0 (T10 PI disabled) or 1 (T10 PI enabled). - " - ::= { virtualDiskEntry 28 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.2 - virtualDiskPartitionTable OBJECT-TYPE - SYNTAX SEQUENCE OF VirtualDiskPartitionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed Virtual Disk Partitions. The number of entries is related - to number of partitions discovered in the system. The maximum number of - entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries." - ::= { logicalDevices 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.2.1 - virtualDiskPartitionEntry OBJECT-TYPE - SYNTAX VirtualDiskPartitionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Virtual Disk Partition table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table." - INDEX { virtualDiskPartitionNumber } - ::= { virtualDiskPartitionTable 1 } - - - VirtualDiskPartitionEntry ::= - SEQUENCE { - virtualDiskPartitionNumber - INTEGER, - virtualDiskPartitionDeviceName - OCTET STRING, - virtualDiskPartitionState - INTEGER, - virtualDiskPartitionSize - INTEGER, - virtualDiskPartitionFluidCacheStatus - OCTET STRING, - virtualDiskPartitionNexusID - DisplayString - } - - -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.1 - virtualDiskPartitionNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this partition entry" - ::= { virtualDiskPartitionEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.2 - virtualDiskPartitionDeviceName OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device name of the partition given by the operating system." - ::= { virtualDiskPartitionEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.3 - virtualDiskPartitionState OBJECT-TYPE - SYNTAX INTEGER - { - active(1), - no(2), - removing(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "State of the partition. This is mapped stated of the associate virtual disk. - 1: Active - Mapped cache disk is working fine - 2: No - Fluid caching is not enabled - 3: Removing - This is a transient stage duing the process of disabling the cache - 4: Failed - Mapped cache disk has failed." - ::= { virtualDiskPartitionEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.4 - virtualDiskPartitionSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Size of the Partition in GB." - ::= { virtualDiskPartitionEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.5 - virtualDiskPartitionFluidCacheStatus OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if the partition has associated fluidcache - " - ::= { virtualDiskPartitionEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.6 - virtualDiskPartitionNexusID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID for this partition. This comprises the controllerID, virtualDisk ID and hash mapped WWN number of this partition" - ::= { virtualDiskPartitionEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4 - fluidCacheTable OBJECT-TYPE - SYNTAX SEQUENCE OF FluidCacheEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of managed FluidCache. The number of entries is related to FluidCache discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all entries. - " - ::= { logicalDevices 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1 - fluidCacheEntry OBJECT-TYPE - SYNTAX FluidCacheEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry in the Fluid Cache table. - A row in this table cannot be created or deleted by SNMP operations on columns of the table. - " - INDEX { fluidCacheNumber } - ::= { fluidCacheTable 1 } - - - FluidCacheEntry ::= - SEQUENCE { - fluidCacheNumber - INTEGER, - fluidCacheName - OCTET STRING, - fluidCacheLicenseState - OCTET STRING, - fluidCacheLicenseValidity - INTEGER, - fluidCacheLicenseEntitlementID - OCTET STRING, - fluidCacheLicenseDuration - OCTET STRING, - fluidCacheLicenseCapacity - OCTET STRING, - fluidCacheLicenseRemaining - OCTET STRING, - fluidCacheLicenseType - OCTET STRING, - fluidCacheLicenseVendor - OCTET STRING, - fluidCacheLicenseProductId - OCTET STRING, - fluidCacheLicenseDateSold - OCTET STRING, - fluidCacheLicenseGeneration - OCTET STRING, - fluidCacheLicenseFeatureID - OCTET STRING, - fluidCacheLicenseFeatureDescription - OCTET STRING, - fluidCacheNexus - OCTET STRING - } - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.1 - fluidCacheNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of this fluid cache entry" - ::= { fluidCacheEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.2 - fluidCacheName OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the fluidcache in this subsystem as represented in Storage Management. " - ::= { fluidCacheEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.3 - fluidCacheLicenseState OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "License state of the associated fluid cache subsystem" - ::= { fluidCacheEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.4 - fluidCacheLicenseValidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This entry displays the number of days the fluid cache license is valid. It has to be read in parallel to license type. - Incase of site wide license, value '0' should be read as 'Not Applicable'" - ::= { fluidCacheEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.5 - fluidCacheLicenseEntitlementID OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indiactes the Entitlement Identifier for the license of the fluid cache subsystem" - ::= { fluidCacheEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.6 - fluidCacheLicenseDuration OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the duration of the the license validity" - ::= { fluidCacheEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.7 - fluidCacheLicenseCapacity OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the capacity of the license of fluidcache subsystem" - ::= { fluidCacheEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.8 - fluidCacheLicenseRemaining OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates the remaining days of the license validity" - ::= { fluidCacheEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.9 - fluidCacheLicenseType OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the type of the license of the fluidcache subsystem" - ::= { fluidCacheEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.10 - fluidCacheLicenseVendor OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the license vendor for the fluidcache subsystem" - ::= { fluidCacheEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.11 - fluidCacheLicenseProductId OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the product ID of the license of the fluidcache susbsytem" - ::= { fluidCacheEntry 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.12 - fluidCacheLicenseDateSold OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date on which the license for the fluidcache subsystem is sold" - ::= { fluidCacheEntry 12 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.13 - fluidCacheLicenseGeneration OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the generation of the license for the fluidcache subsystem" - ::= { fluidCacheEntry 13 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.14 - fluidCacheLicenseFeatureID OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the license feature ID of the fluidcache subsystem" - ::= { fluidCacheEntry 14 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.15 - fluidCacheLicenseFeatureDescription OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Provides the description of the license feature of fluidcache subsystem" - ::= { fluidCacheEntry 15 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.16 - fluidCacheNexus OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the unique ID of the fludicache component" - ::= { fluidCacheEntry 16 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5 - fluidCacheDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF FluidCacheDiskEntry - ACCESS not-accessible - STATUS mandatory - ::= { logicalDevices 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1 - fluidCacheDiskEntry OBJECT-TYPE - SYNTAX FluidCacheDiskEntry - ACCESS not-accessible - STATUS mandatory - INDEX { fluidCacheDiskNumber } - ::= { fluidCacheDiskTable 1 } - - - FluidCacheDiskEntry ::= - SEQUENCE { - fluidCacheDiskNumber - INTEGER, - fluidCacheDiskName - OCTET STRING, - fluidCacheDiskState - INTEGER, - fluidCacheDiskBackendDeviceType - INTEGER, - fluidCacheDiskBackendDeviceName - OCTET STRING, - fluidCacheDiskBackendDeviceSize - INTEGER, - fluidCacheDiskOperatingMode - INTEGER, - fluidCacheDiskConfiguredMode - INTEGER, - fluidCacheDiskNexus - OCTET STRING, - fluidCacheDiskStatus - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.1 - fluidCacheDiskNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of the fluidCacheDisk entry" - ::= { fluidCacheDiskEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.2 - fluidCacheDiskName OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Name of the Fluid Cache Disk Name as seen by storage management" - ::= { fluidCacheDiskEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.3 - fluidCacheDiskState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "State of the FluidCacheDisk entry - Valid values are - 2 - Active, otherwise Inactive - - " - ::= { fluidCacheDiskEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.4 - fluidCacheDiskBackendDeviceType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This displays the type of the backend device beneath the fluid cache disk. - Values are as below - 773 denotes VirtualDisk - 791 denotes Partition" - ::= { fluidCacheDiskEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.5 - fluidCacheDiskBackendDeviceName OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device name of the backend device as seen by the operating system" - ::= { fluidCacheDiskEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.6 - fluidCacheDiskBackendDeviceSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Size of the Backend device. Size is indicated in GB" - ::= { fluidCacheDiskEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.7 - fluidCacheDiskOperatingMode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Operating mode of the FluidCache. Values are - 0 - Writeback mode - 1 - Writethrough mode - 2 - PassThrough mode - " - ::= { fluidCacheDiskEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.8 - fluidCacheDiskConfiguredMode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Configured Mode of the FluidCache. The values are - 0 - Writeback mode - 1 - Writethrough mode - 2 - PassThrough mode - " - ::= { fluidCacheDiskEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.9 - fluidCacheDiskNexus OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Durable Unique ID of the fluidcache disk" - ::= { fluidCacheDiskEntry 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.10 - fluidCacheDiskStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the fluid cache disk state. - - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { fluidCacheDiskEntry 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6 - fluidCachePoolTable OBJECT-TYPE - SYNTAX SEQUENCE OF FluidCachePoolEntry - ACCESS not-accessible - STATUS mandatory - ::= { logicalDevices 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1 - fluidCachePoolEntry OBJECT-TYPE - SYNTAX FluidCachePoolEntry - ACCESS not-accessible - STATUS mandatory - INDEX { fluidCachePoolNumber } - ::= { fluidCachePoolTable 1 } - - - FluidCachePoolEntry ::= - SEQUENCE { - fluidCachePoolNumber - INTEGER, - fluidCachePoolStoreCount - INTEGER, - fluidCachePoolUUID - OCTET STRING, - fluidCachePoolLicenseState - DisplayString, - fluidCachePoolSize - INTEGER, - fluidCachePoolHighAvailabilityState - OCTET STRING, - fluidCachePoolNexus - OCTET STRING, - fluidCachePoolStatus - INTEGER - } - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.1 - fluidCachePoolNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Instance number of the fluid cachepool entry" - ::= { fluidCachePoolEntry 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.2 - fluidCachePoolStoreCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of flash devices that are part of the fluidcache pool" - ::= { fluidCachePoolEntry 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.3 - fluidCachePoolUUID OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "UUID of the fluidcache pool" - ::= { fluidCachePoolEntry 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.4 - fluidCachePoolLicenseState OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "State of the fluid cache license. - Possible values: Valid, Evaluation, Expired - " - ::= { fluidCachePoolEntry 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.5 - fluidCachePoolSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Size of the fluidcache pool in GiB" - ::= { fluidCachePoolEntry 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.6 - fluidCachePoolHighAvailabilityState OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if the fluidcache pool is operating in high availability mode." - ::= { fluidCachePoolEntry 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.7 - fluidCachePoolNexus OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Durable unique ID of the fluidcache pool entry" - ::= { fluidCachePoolEntry 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.8 - fluidCachePoolStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Severity of the fluid cache pool table state. - - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { fluidCachePoolEntry 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200 - storageManagementEvent OBJECT IDENTIFIER ::= { storageManagement 200 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.1 - messageIDEvent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0001 Storage Management alert (event) message number." - ::= { storageManagementEvent 1 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.2 - descriptionEvent OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0002 Storage Management event message text describing the alert." - ::= { storageManagementEvent 2 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.3 - locationEvent OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0003 Additional information identifying the location of the object causing the alert." - ::= { storageManagementEvent 3 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.4 - objectNameEvent OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0004 Name of the object as represented in Storage Management causing the alert." - ::= { storageManagementEvent 4 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.5 - objectOIDEvent OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0005 MIB OID of the object causing the alert." - ::= { storageManagementEvent 5 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.6 - objectNexusEvent OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0006 Durable, unique ID of the object causing the alert." - ::= { storageManagementEvent 6 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.7 - currentStatusEvent OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0007 Current status of object causing the alert, if applicable." - ::= { storageManagementEvent 7 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.8 - previousStatusEvent OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0008 Previous status of object causing the alert if applicable." - ::= { storageManagementEvent 8 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.9 - enhancedMessageIDEvent OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0001 Enhanced Storage Management Message ID." - ::= { storageManagementEvent 9 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.10 - systemFQDNEvent OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0008 System FQDN of object causing the alert if applicable." - ::= { storageManagementEvent 10 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.11 - serviceTagEvent OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0008 Service Tag of object causing the alert if applicable." - ::= { storageManagementEvent 11 } - - - -- 1.3.6.1.4.1.674.10893.1.20.200.12 - chassisServiceTagEvent OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "0200.0008 Chassis Service Tag of object causing the alert if applicable." - ::= { storageManagementEvent 12 } - - - --- --- Trap definitions --- - - alertStorageManagementInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION - "Storage Management Information - There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Storage Management information. %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 101 - alertStorageManagementNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION - "There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 102 - alertStorageManagementWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION - "Storage Management has detected a device independent warning condition. - There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent warning condition. %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 103 - alertStorageManagementFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION - "Storage Management has detected a device independent error condition. - There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent error condition. %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 104 - alertStorageManagementNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent } - DESCRIPTION - "Storage Management has detected a device independent non-recoverable condition. - There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent non-recoverable condition. %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 105 - alertControllerInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Controller information." ---#TYPE "Storage Management Event: Controller Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Controller information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 751 - alertControllerNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Controller has returned to normal." ---#TYPE "Storage Management Event: Controller Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Controller has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 752 - alertControllerWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Controller warning." ---#TYPE "Storage Management Event: Controller Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Controller warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 753 - alertControllerFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Controller failure." ---#TYPE "Storage Management Event: Controller Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Controller failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 754 - alertControllerNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Controller is non-recoverable." ---#TYPE "Storage Management Event: Controller Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Controller is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 755 - alertChannelInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Channel information." ---#TYPE "Storage Management Event: Channel Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Channel information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 801 - alertChannelNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Channel has returned to normal." ---#TYPE "Storage Management Event: Channel Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Channel has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 802 - alertChannelWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Channel warning." ---#TYPE "Storage Management Event: Channel Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Channel warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 803 - alertChannelFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Channel failure." ---#TYPE "Storage Management Event: Channel Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Channel failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 804 - alertChannelNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Channel is non-recoverable." ---#TYPE "Storage Management Event: Channel Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Channel is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 805 - alertEnclosureInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Enclosure information." ---#TYPE "Storage Management Event: Enclosure Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Enclosure information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 851 - alertEnclosureNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Enclosure has returned to normal." ---#TYPE "Storage Management Event: Enclosure Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Enclosure has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 852 - alertEnclosureWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Enclosure warning." ---#TYPE "Storage Management Event: Enclosure Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Enclosure warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 853 - alertEnclosureFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Enclosure failure." ---#TYPE "Storage Management Event: Enclosure Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Enclosure failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 854 - alertEnclosureNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Enclosure is non-recoverable." ---#TYPE "Storage Management Event: Enclosure Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Enclosure is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 855 - alertArrayDiskInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Array disk information." ---#TYPE "Storage Management Event: Array Disk Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Array disk information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 901 - alertArrayDiskNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Array disk has returned to normal." ---#TYPE "Storage Management Event: Array Disk Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Array disk has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 902 - alertArrayDiskWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Array disk warning." ---#TYPE "Storage Management Event: Array Disk Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Array disk warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 903 - alertArrayDiskFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Array disk failure." ---#TYPE "Storage Management Event: Array Disk Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Array disk failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 904 - alertArrayDiskNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Array disk is non-recoverable." ---#TYPE "Storage Management Event: Array Disk Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Array disk is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 905 - alertEMMInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "EMM information." ---#TYPE "Storage Management Event: EMM Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, EMM information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 951 - alertEMMNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "EMM has returned to normal." ---#TYPE "Storage Management Event: EMM Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, EMM has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 952 - alertEMMWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "EMM warning." ---#TYPE "Storage Management Event: EMM Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, EMM warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 953 - alertEMMFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "EMM failure." ---#TYPE "Storage Management Event: EMM Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, EMM failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 954 - alertEMMNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "EMM is non-recoverable." ---#TYPE "Storage Management Event: EMM Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, EMM is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 955 - alertPowerSupplyInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Power supply information." ---#TYPE "Storage Management Event: Power Supply Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Power supply information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1001 - alertPowerSupplyNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Power supply has returned to normal." ---#TYPE "Storage Management Event: Power Supply Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Power supply has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1002 - alertPowerSupplyWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Power supply warning." ---#TYPE "Storage Management Event: Power Supply Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Power supply warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1003 - alertPowerSupplyFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Power supply failure." ---#TYPE "Storage Management Event: Power Supply Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Power supply failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1004 - alertPowerSupplyNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Power supply is non-recoverable." ---#TYPE "Storage Management Event: Power Supply Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Power supply is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1005 - alertTemperatureProbeInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Temperature probe information." ---#TYPE "Storage Management Event: Temperature Probe Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Temperature probe information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1051 - alertTemperatureProbeNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Temperature probe has returned to normal." ---#TYPE "Storage Management Event: Temperature Probe Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Temperature probe has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1052 - alertTemperatureProbeWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Temperature probe warning." ---#TYPE "Storage Management Event: Temperature Probe Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Temperature probe warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1053 - alertTemperatureProbeFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Temperature probe failure." ---#TYPE "Storage Management Event: Temperature Probe Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Temperature probe failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1054 - alertTemperatureProbeNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Temperature probe is non-recoverable." ---#TYPE "Storage Management Event: Temperature Probe Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Temperature probe is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1055 - alertFanInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fan information." ---#TYPE "Storage Management Event: Fan Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fan information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1101 - alertFanNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fan has returned to normal." ---#TYPE "Storage Management Event: Fan Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fan has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1102 - alertFanWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fan warning." ---#TYPE "Storage Management Event: Fan Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Fan warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1103 - alertFanFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fan failure." ---#TYPE "Storage Management Event: Fan Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fan failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1104 - alertFanNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fan is non-recoverable." ---#TYPE "Storage Management Event: Fan Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fan is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1105 - alertBatteryInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Battery information." ---#TYPE "Storage Management Event: Battery Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Battery information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1151 - alertBatteryNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Battery has returned to normal." ---#TYPE "Storage Management Event: Battery Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Battery has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1152 - alertBatteryWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Battery warning." ---#TYPE "Storage Management Event: Battery Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Battery warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1153 - alertBatteryFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Battery failure." ---#TYPE "Storage Management Event: Battery Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Battery failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1154 - alertBatteryNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Battery is non-recoverable." ---#TYPE "Storage Management Event: Battery Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Battery is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1155 - alertVirtualDiskInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Virtual disk information." ---#TYPE "Storage Management Event: Virtual Disk Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Virtual disk information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1201 - alertVirtualDiskNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Virtual disk has returned to normal." ---#TYPE "Storage Management Event: Virtual Disk Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Virtual disk has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1202 - alertVirtualDiskWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Virtual disk warning." ---#TYPE "Storage Management Event: Virtual Disk Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Virtual disk warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1203 - alertVirtualDiskFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Virtual disk failure." ---#TYPE "Storage Management Event: Virtual Disk Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Virtual disk failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1204 - alertVirtualDiskNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Virtual disk is non-recoverable." ---#TYPE "Storage Management Event: Virtual Disk Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Virtual disk is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1205 - alertRedundancyNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Redundancy has returned to normal." ---#TYPE "Storage Management Event: Redundancy Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Redundancy has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1304 - alertRedundancyDegraded TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Redundancy has been degraded." ---#TYPE "Storage Management Event: Redundancy Degraded" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Redundancy has been degraded. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1305 - alertRedundancyLost TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Redundancy has been lost." ---#TYPE "Storage Management Event: Redundancy Lost" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Redundancy has been lost. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1306 - alertFluidCacheDiskInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache Disk Information" ---#TYPE "Storage Management Event: Fluid Cache Disk Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1401 - alertfluidCacheDiskWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache Disk warning." ---#TYPE "Storage Management Event: Fluid Cache Disk Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1403 - alertFluidCacheDisklFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache Disk failure." ---#TYPE "Storage Management Event: Fluid Cache Disk Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1404 - alertVirtualDiskPartitionInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Virtual Disk Partition Information" ---#TYPE "Storage Management Event: Virtual Disk Partition Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Virtual Disk Partition. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1501 - alertVirtualDiskPartitionWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Virtual Disk Partition warning." ---#TYPE "Storage Management Event: Virtual Disk Partition Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Virtual Disk Partition. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1503 - alertVirtualDiskPartitionFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Virtual Disk Partition failure." ---#TYPE "Storage Management Event: Virtual Disk Partition Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Virtual Disk Partition Failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1504 - alertFluidCacheInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache Information" ---#TYPE "Storage Management Event: Fluid Cache Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fluid Cache. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1601 - alertfluidCacheWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache warning." ---#TYPE "Storage Management Event: Fluid Cache Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Fluid Cache. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1603 - alertFluidCacheFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache failure." ---#TYPE "Storage Management Event: Fluid Cache Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1604 - alertFluidCachePoolInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache Pool Information" ---#TYPE "Storage Management Event: Fluid Cache Pool Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Pool. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 1701 - alertfluidCachePoolWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache Pool warning." ---#TYPE "Storage Management Event: Fluid Cache Pool Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Fluid Cache Pool. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 1703 - alertFluidCachePoolFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent } - DESCRIPTION - "Fluid Cache Pool failure." ---#TYPE "Storage Management Event: Fluid Cache Pool Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Pool Failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 1704 - alertEEMIStorageManagementInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, - chassisServiceTagEvent } - DESCRIPTION - "Storage Management Information - There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Storage Management information. %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 10100 - alertEEMIStorageManagementNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, - chassisServiceTagEvent } - DESCRIPTION - "There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 10200 - alertEEMIStorageManagementWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, - chassisServiceTagEvent } - DESCRIPTION - "Storage Management has detected a device independent warning condition. - There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent warning condition. %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 10300 - alertEEMIStorageManagementFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, - chassisServiceTagEvent } - DESCRIPTION - "Storage Management has detected a device independent error condition. - There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent error condition. %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 10400 - alertEEMIStorageManagementNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, - chassisServiceTagEvent } - DESCRIPTION - "Storage Management has detected a device independent non-recoverable condition. - There is no global status change associated with this trap." ---#TYPE "Storage Management Event: Storage Management Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent non-recoverable condition. %s" ---#ARGUMENTS { 0, 1 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 10500 - alertEEMIControllerInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Controller information." ---#TYPE "Storage Management Event: Controller Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Controller information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 75100 - alertEEMIControllerNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Controller has returned to normal." ---#TYPE "Storage Management Event: Controller Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Controller has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 75200 - alertEEMIControllerWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Controller warning." ---#TYPE "Storage Management Event: Controller Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Controller warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 75300 - alertEEMIControllerFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Controller failure." ---#TYPE "Storage Management Event: Controller Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Controller failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 75400 - alertEEMIControllerNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Controller is non-recoverable." ---#TYPE "Storage Management Event: Controller Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Controller is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 75500 - alertEEMIChannelInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Channel information." ---#TYPE "Storage Management Event: Channel Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Channel information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 80100 - alertEEMIChannelNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Channel has returned to normal." ---#TYPE "Storage Management Event: Channel Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Channel has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 80200 - alertEEMIChannelWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Channel warning." ---#TYPE "Storage Management Event: Channel Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Channel warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 80300 - alertEEMIChannelFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Channel failure." ---#TYPE "Storage Management Event: Channel Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Channel failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 80400 - alertEEMIChannelNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Channel is non-recoverable." ---#TYPE "Storage Management Event: Channel Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Channel is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 80500 - alertEEMIEnclosureInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Enclosure information." ---#TYPE "Storage Management Event: Enclosure Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Enclosure information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 85100 - alertEEMIEnclosureNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Enclosure has returned to normal." ---#TYPE "Storage Management Event: Enclosure Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Enclosure has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 85200 - alertEEMIEnclosureWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Enclosure warning." ---#TYPE "Storage Management Event: Enclosure Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Enclosure warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 85300 - alertEEMIEnclosureFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Enclosure failure." ---#TYPE "Storage Management Event: Enclosure Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Enclosure failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 85400 - alertEEMIEnclosureNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Enclosure is non-recoverable." ---#TYPE "Storage Management Event: Enclosure Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Enclosure is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 85500 - alertEEMIArrayDiskInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Array disk information." ---#TYPE "Storage Management Event: Array Disk Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Array disk information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 90100 - alertEEMIArrayDiskNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Array disk has returned to normal." ---#TYPE "Storage Management Event: Array Disk Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Array disk has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 90200 - alertEEMIArrayDiskWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Array disk warning." ---#TYPE "Storage Management Event: Array Disk Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Array disk warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 90300 - alertEEMIArrayDiskFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Array disk failure." ---#TYPE "Storage Management Event: Array Disk Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Array disk failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 90400 - alertEEMIArrayDiskNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Array disk is non-recoverable." ---#TYPE "Storage Management Event: Array Disk Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Array disk is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 90500 - alertEMMEMMInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "EMM information." ---#TYPE "Storage Management Event: EMM Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, EMM information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 95100 - alertEEMIEMMNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "EMM has returned to normal." ---#TYPE "Storage Management Event: EMM Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, EMM has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 95200 - alertEEMIEMMWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "EMM warning." ---#TYPE "Storage Management Event: EMM Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, EMM warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 95300 - alertEEMIEMMFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "EMM failure." ---#TYPE "Storage Management Event: EMM Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, EMM failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 95400 - alertEEMIEMMNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "EMM is non-recoverable." ---#TYPE "Storage Management Event: EMM Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, EMM is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 95500 - alertEEMIPowerSupplyInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Power supply information." ---#TYPE "Storage Management Event: Power Supply Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Power supply information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 100100 - alertEEMIPowerSupplyNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Power supply has returned to normal." ---#TYPE "Storage Management Event: Power Supply Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Power supply has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 100200 - alertEEMIPowerSupplyWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Power supply warning." ---#TYPE "Storage Management Event: Power Supply Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Power supply warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 100300 - alertEEMIPowerSupplyFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Power supply failure." ---#TYPE "Storage Management Event: Power Supply Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Power supply failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 100400 - alertEEMIPowerSupplyNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Power supply is non-recoverable." ---#TYPE "Storage Management Event: Power Supply Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Power supply is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 100500 - alertEEMITemperatureProbeInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Temperature probe information." ---#TYPE "Storage Management Event: Temperature Probe Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Temperature probe information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 105100 - alertEEMITemperatureProbeNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Temperature probe has returned to normal." ---#TYPE "Storage Management Event: Temperature Probe Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Temperature probe has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 105200 - alertEEMITemperatureProbeWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Temperature probe warning." ---#TYPE "Storage Management Event: Temperature Probe Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Temperature probe warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 105300 - alertEEMITemperatureProbeFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Temperature probe failure." ---#TYPE "Storage Management Event: Temperature Probe Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Temperature probe failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 105400 - alertEEMITemperatureProbeNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Temperature probe is non-recoverable." ---#TYPE "Storage Management Event: Temperature Probe Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Temperature probe is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 105500 - alertEEMIFanInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fan information." ---#TYPE "Storage Management Event: Fan Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fan information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 110100 - alertEEMIFanNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fan has returned to normal." ---#TYPE "Storage Management Event: Fan Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fan has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 110200 - alertEEMIFanWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fan warning." ---#TYPE "Storage Management Event: Fan Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Fan warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 110300 - alertEEMIFanFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fan failure." ---#TYPE "Storage Management Event: Fan Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fan failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 110400 - alertEEMIFanNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fan is non-recoverable." ---#TYPE "Storage Management Event: Fan Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fan is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 110500 - alertEEMIBatteryInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Battery information." ---#TYPE "Storage Management Event: Battery Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Battery information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 115100 - alertEEMIBatteryNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Battery has returned to normal." ---#TYPE "Storage Management Event: Battery Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Battery has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 115200 - alertEEMIBatteryWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Battery warning." ---#TYPE "Storage Management Event: Battery Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Battery warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 115300 - alertEEMIBatteryFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Battery failure." ---#TYPE "Storage Management Event: Battery Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Battery failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 115400 - alertEEMIBatteryNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Battery is non-recoverable." ---#TYPE "Storage Management Event: Battery Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Battery is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 115500 - alertEEMIVirtualDiskInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Virtual disk information." ---#TYPE "Storage Management Event: Virtual Disk Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Virtual disk information. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 120100 - alertEEMIVirtualDiskNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Virtual disk has returned to normal." ---#TYPE "Storage Management Event: Virtual Disk Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Virtual disk has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 120200 - alertEEMIVirtualDiskWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Virtual disk warning." ---#TYPE "Storage Management Event: Virtual Disk Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Virtual disk warning. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 120300 - alertEEMIVirtualDiskFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Virtual disk failure." ---#TYPE "Storage Management Event: Virtual Disk Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Virtual disk failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 120400 - alertEEMIVirtualDiskNonRecoverable TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Virtual disk is non-recoverable." ---#TYPE "Storage Management Event: Virtual Disk Non-recoverable" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Virtual disk is non-recoverable. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 120500 - alertEEMIRedundancyNormal TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Redundancy has returned to normal." ---#TYPE "Storage Management Event: Redundancy Normal" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Redundancy has returned to normal. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 130400 - alertEEMIRedundancyDegraded TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Redundancy has been degraded." ---#TYPE "Storage Management Event: Redundancy Degraded" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Redundancy has been degraded. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 130500 - alertEEMIRedundancyLost TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Redundancy has been lost." ---#TYPE "Storage Management Event: Redundancy Lost" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Redundancy has been lost. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 130600 - alertEEMIFluidCacheDiskInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache Disk Information" ---#TYPE "Storage Management Event: Fluid Cache Disk Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 140100 - alertEEMIfluidCacheDiskWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache Disk warning." ---#TYPE "Storage Management Event: Fluid Cache Disk Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 140300 - alertEEMIFluidCacheDisklFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache Disk failure." ---#TYPE "Storage Management Event: Fluid Cache Disk Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 140400 - alertEEMIVirtualDiskPartitionInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Virtual Disk Partition Information" ---#TYPE "Storage Management Event: Virtual Disk Partition Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Virtual Disk Partition. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 150100 - alertEEMIVirtualDiskPartitionWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Virtual Disk Partition warning." ---#TYPE "Storage Management Event: Virtual Disk Partition Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Virtual Disk Partition. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 150300 - alertEEMIVirtualDiskPartitionFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Virtual Disk Partition failure." ---#TYPE "Storage Management Event: Virtual Disk Partition Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Virtual Disk Partition Failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 150400 - alertEEMIFluidCacheInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache Information" ---#TYPE "Storage Management Event: Fluid Cache Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fluid Cache. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 160100 - alertEEMIfluidCacheWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache warning." ---#TYPE "Storage Management Event: Fluid Cache Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Fluid Cache. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 160300 - alertEEMIFluidCacheFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache failure." ---#TYPE "Storage Management Event: Fluid Cache Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 160400 - alertEEMIFluidCachePoolInformation TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache Pool Information" ---#TYPE "Storage Management Event: Fluid Cache Pool Information" ---#SEVERITY INFORMATIONAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Pool. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE OPERATIONAL ---#STATUS MANDATORY - ::= 170100 - alertEEMIfluidCachePoolWarning TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache Pool warning." ---#TYPE "Storage Management Event: Fluid Cache Pool Warning" ---#SEVERITY MINOR ---#SUMMARY "Alert message ID: %s, Fluid Cache Pool. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Status Events" ---#STATE DEGRADED ---#STATUS MANDATORY - ::= 170300 - alertEEMIFluidCachePoolFailure TRAP-TYPE - ENTERPRISE storageManagementEvent - VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, - objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, - serviceTagEvent, chassisServiceTagEvent } - DESCRIPTION - "Fluid Cache Pool failure." ---#TYPE "Storage Management Event: Fluid Cache Pool Failure" ---#SEVERITY CRITICAL ---#SUMMARY "Alert message ID: %s, Fluid Cache Pool Failure. %s, %s, %s" ---#ARGUMENTS { 0, 1, 2, 3 } ---#CATEGORY "Error Events" ---#STATE FAILED ---#STATUS MANDATORY - ::= 170400 - - END - --- --- dcstorag.mib --- + 2:ssd" + ::= { nvmeAdapterEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.17 + nvmeAdapterLengthInMegaBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size in megabytes of the NVMe Adapter." + ::= { nvmeAdapterEntry 17 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.18 + nvmeAdapterLengthOffsetBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "No of bytes after total number of megabytes have been subtracted from the total size of the NVMe Adapter." + ::= { nvmeAdapterEntry 18 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.19 + nvmeAdapterDeviceID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The device Id of the NVMe Adapter." + ::= { nvmeAdapterEntry 19 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.20 + nvmeAdapterModelNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Model number of the NVMe Adapter as per the manufacturer." + ::= { nvmeAdapterEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.21 + nvmeAdapterNegotiatedSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The negotiated speed of the NVMe adapter in GT/s." + ::= { nvmeAdapterEntry 21 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.22 + nvmeAdapterCapableSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum rated speed of the NVMe adapter in GT/s." + ::= { nvmeAdapterEntry 22 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.23 + nvmeAdapterRemainingRatedWrEnd OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The remaining percentage of writes on the NVME device" + ::= { nvmeAdapterEntry 23 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.24 + nvmeAdapterFormFactor OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The form factor of the NVMe Adapter. + Expected Value: 2 + means (Card)" + ::= { nvmeAdapterEntry 24 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.25 + nvmeAdapterSupportedSpec OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The NVMe specification supported by the device." + ::= { nvmeAdapterEntry 25 } + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.26 + nvmeAdapterMaxLinkWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum bus width of NVME Adapter" + ::= { nvmeAdapterEntry 26} + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.27 + nvmeAdapterNegotiatedLinkWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The negotiated bus width of NVME Adapter. " + ::= { nvmeAdapterEntry 27 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.18.1.28 + nvmeAdapterSubVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Sub vendor of the NVMe Adapter device." + ::= { nvmeAdapterEntry 28} + + + -- 1.3.6.1.4.1.674.10893.1.20.140 + logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3 + arrayDiskLogicalConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArrayDiskLogicalConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between array disks, the + virtual disk to which they belong, and their + associated logical disk. For each object in the table, + its object number corresponds to an instance number in + the appropriate MIB table for that object where all of + the object properties can be found. + + + " + ::= { logicalDevices 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1 + arrayDiskLogicalConnectionEntry OBJECT-TYPE + SYNTAX ArrayDiskLogicalConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Array Disk Logical Connection table . A row in this table + cannot be created or deleted by SNMP operations on columns of the table." + INDEX { arrayDiskLogicalConnectionNumber } + ::= { arrayDiskLogicalConnectionTable 1 } + + + ArrayDiskLogicalConnectionEntry ::= + SEQUENCE { + arrayDiskLogicalConnectionNumber + INTEGER, + arrayDiskLogicalConnectionArrayDiskName + DisplayString, + arrayDiskLogicalConnectionArrayDiskNumber + INTEGER, + arrayDiskLogicalConnectionVirtualDiskName + DisplayString, + arrayDiskLogicalConnectionVirtualDiskNumber + INTEGER, + arrayDiskLogicalConnectionDiskName + DisplayString, + arrayDiskLogicalConnectionDiskNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.1 + arrayDiskLogicalConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this array disk logical connection entry." + ::= { arrayDiskLogicalConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.2 + arrayDiskLogicalConnectionArrayDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the array disk in this logical connection." + ::= { arrayDiskLogicalConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.3 + arrayDiskLogicalConnectionArrayDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the array disk in this logical connection." + ::= { arrayDiskLogicalConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.4 + arrayDiskLogicalConnectionVirtualDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the virtual disk to which this array disk belongs." + ::= { arrayDiskLogicalConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.5 + arrayDiskLogicalConnectionVirtualDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the virtual disk to which this array disk + belongs." + ::= { arrayDiskLogicalConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.6 + arrayDiskLogicalConnectionDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the disk group to with this array disk belongs. + This property is currently not supported." + ::= { arrayDiskLogicalConnectionEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.7 + arrayDiskLogicalConnectionDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This instance number of the disk group to with this array disk belongs. + This property is currently not supported." + ::= { arrayDiskLogicalConnectionEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1 + virtualDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF VirtualDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Virtual Disks. The number of entries is related + to number of Virtual Disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { logicalDevices 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1 + virtualDiskEntry OBJECT-TYPE + SYNTAX VirtualDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Virtual Disk table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { virtualDiskNumber } + ::= { virtualDiskTable 1 } + + + VirtualDiskEntry ::= + SEQUENCE { + virtualDiskNumber + INTEGER, + virtualDiskName + DisplayString, + virtualDiskDeviceName + DisplayString, + virtualDiskState + INTEGER, + virtualDiskSeverity + INTEGER, + virtualDiskLengthInMB + INTEGER, + virtualDiskLengthInBytes + INTEGER, + virtualDiskFreeSpaceInMB + INTEGER, + virtualDiskFreeSpaceInBytes + INTEGER, + virtualDiskWritePolicy + INTEGER, + virtualDiskReadPolicy + INTEGER, + virtualDiskCachePolicy + INTEGER, + virtualDiskLayout + INTEGER, + virtualDiskCurStripeSizeInMB + INTEGER, + virtualDiskCurStripeSizeInBytes + INTEGER, + virtualDiskChannel + INTEGER, + virtualDiskTargetID + INTEGER, + virtualDiskLunID + INTEGER, + virtualDiskRollUpStatus + DellStatus, + virtualDiskComponentStatus + DellStatus, + virtualDiskNexusID + DisplayString, + virtualDiskArrayDiskType + INTEGER, + virtualDiskBadBlocksDetected + INTEGER, + virtualDiskEncrypted + INTEGER, + virtualDiskIsCacheCade + INTEGER, + virtualDiskDiskCachePolicy + INTEGER, + virtualDiskAssociatedFluidCacheStatus + INTEGER, + virtualDiskPIEnable + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.1 + virtualDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..100000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this virtual disk entry." + ::= { virtualDiskEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.2 + virtualDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The virtual disk's label generated by Storage Management or entered + by the user." + ::= { virtualDiskEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.3 + virtualDiskDeviceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Device name used by this virtual disk's member disks." + ::= { virtualDiskEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.4 + virtualDiskState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6), + verifying(7), + resynching(15), + regenerating(16), + failedRedundancy(18), + rebuilding(24), + formatting(26), + reconstructing(32), + initializing(35), + backgroundInit(36), + permanentlyDegraded(52) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of this virtual disk + (which includes any member array disks.) + Possible states: + 0: Unknown + 1: Ready - The disk is accessible and has no known problems. + 2: Failed - Access has been lost to the data or is about to be lost. + 3: Online + 4: Offline - The disk is not accessible. The disk may be corrupted or intermittently unavailable. + 6: Degraded - The data on the virtual disk is no longer fault tolerant because one of the underlying disks is not online. + 15: Resynching + 16: Regenerating + 24: Rebuilding + 26: Formatting + 32: Reconstructing + 35: Initializing + 36: Background Initialization + 38: Resynching Paused + 52: Permanently Degraded + 54: Degraded Redundancy" + ::= { virtualDiskEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.5 + virtualDiskSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { virtualDiskEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.6 + virtualDiskLengthInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of this virtual disk in megabytes. If this size + is 0, it is smaller than a megabyte." + ::= { virtualDiskEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.7 + virtualDiskLengthInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The portion of the virtual disk in bytes that is smaller + than a megabyte. This size plus the virtualDiskLengthInMB + is the total size of the virtual disk." + ::= { virtualDiskEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.8 + virtualDiskFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This property is not supported for virtual disks managed under Storage Management." + ::= { virtualDiskEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.9 + virtualDiskFreeSpaceInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This property is not supported for virtual disks managed under Storage Management." + ::= { virtualDiskEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.10 + virtualDiskWritePolicy OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + writeBack(3), + writeThrough(4), + enabledAlways(5), + enabledAlwaysSAS(6), + notApplicable(9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the controller's write cache will be used + when writing to a virtual disk. + Possible values: + 1: Enabled - Adaptec Write Cache Enabled Protected + 2: Disabled - Adaptec Write Cache Disabled + 3: LSI Write Back + 4: LSI Write Through + 5: Enabled Always - Adaptec only + 6: Enabled Always - SAS only + 9: Not Applicable" + ::= { virtualDiskEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.11 + virtualDiskReadPolicy OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + readAhead(3), + adaptiveReadAhead(4), + noReadAhead(5), + notApplicable(9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the controller's read cache will be used + when reading from a virtual disk. + Possible values: + 1: Enabled - Adaptec Read Cache Enabled + 2: Disabled - Adaptec Read Cache Disabled + 3: LSI Read Ahead + 4: LSI Adaptive Read Ahead + 5: LSI No Read Ahead + 9: Not Applicable" + ::= { virtualDiskEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.12 + virtualDiskCachePolicy OBJECT-TYPE + SYNTAX INTEGER + { + directIO(1), + cachedIO(2), + not-applicable(99) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the controller's cache is used when + reading from or writing to a virtual disk. + Possible values: + 1: Direct I/O (LSI) + 2: Cached I/O (LSI) + 99: Not applicable" + ::= { virtualDiskEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.13 + virtualDiskLayout OBJECT-TYPE + SYNTAX INTEGER + { + concatenated(1), + raid-0(2), + raid-1(3), + raid-2(4), + raid-3(5), + raid-4(6), + raid-5(7), + raid-6(8), + raid-7(9), + raid-10(10), + raid-30(11), + raid-50(12), + addSpares(13), + deleteLogical(14), + transformLogical(15), + raid-0-plus-1(18), + concatRaid-1(19), + concatRaid-5(20), + noRaid(21), + volume(22), + raidMorph(23), + raid-60(24), + cacheCade(25) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The virtual disk's RAID type. + Currently supported types: + 1: Concatenated + 2: RAID-0 + 3: RAID-1 + 7: RAID-5 + 8: RAID-6 + 10: RAID-10 + 12: RAID-50 + 19: Concatenated RAID 1 + 24: RAID-60 + 25: CacheCade + " + ::= { virtualDiskEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.14 + virtualDiskCurStripeSizeInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The stripe size of this virtual disk in megabytes. If this + size is 0, it is either smaller than a megabyte or not applicable. + " + ::= { virtualDiskEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.15 + virtualDiskCurStripeSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The portion of the stripe size in bytes that is smaller + than a megabyte. This size plus the virtualDiskCurStripeSizeInMB + is the total stripe size on the virtual disk. + If this size is 0, either the entire size is whole megabytes or it is not applicable." + ::= { virtualDiskEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.16 + virtualDiskChannel OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This property is not supported + by virtual disks managed under Storage Management." + ::= { virtualDiskEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.17 + virtualDiskTargetID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Unique ID for the virtual disk." + ::= { virtualDiskEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.18 + virtualDiskLunID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This property is not supported + by virtual disks managed under Storage Management." + ::= { virtualDiskEntry 18 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.19 + virtualDiskRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the virtual disk state. + This is the combined status of the virtual disk and its + components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { virtualDiskEntry 19 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.20 + virtualDiskComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the virtual disk itself without + the propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { virtualDiskEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.21 + virtualDiskNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this virtual disk." + ::= { virtualDiskEntry 21 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.22 + virtualDiskArrayDiskType OBJECT-TYPE + SYNTAX INTEGER + { + sas(1), + sata(2), + scsi(3), + ide(4), + unknown(99) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies the type of array (physical) disks used to create the virtual disk. + Possible values: + 1: SAS + 2: SATA + 3: SCSI + 4: IDE + 99: Unknown + " + ::= { virtualDiskEntry 22 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.23 + virtualDiskBadBlocksDetected OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if virtual disk has bad blocks. + Value: 0 - No, 1 - Yes, 2 - Not Applicable, 99 - Unknown" + ::= { virtualDiskEntry 23 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.24 + virtualDiskEncrypted OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if virtual disk is encrypted. + Value: 0 - No, 1 - Yes, 99 - Unknown." + ::= { virtualDiskEntry 24 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.25 + virtualDiskIsCacheCade OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if this virtual disk is configured as CacheCade. + Value: 1 - Yes, 0 - No, 99 - Undetermined" + ::= { virtualDiskEntry 25 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.26 + virtualDiskDiskCachePolicy OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates disk cache policy of the logical device. + Value: 1 - Enabled, 2 - Disabled, 99 - Undetermined" + ::= { virtualDiskEntry 26 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.27 + virtualDiskAssociatedFluidCacheStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the status of the associated fluid cache status" + ::= { virtualDiskEntry 27 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.28 + virtualDiskPIEnable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if T10 PI is enabled on a virtual disk. + Possible values are: 0 (T10 PI disabled) or 1 (T10 PI enabled). + " + ::= { virtualDiskEntry 28 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.2 + virtualDiskPartitionTable OBJECT-TYPE + SYNTAX SEQUENCE OF VirtualDiskPartitionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Virtual Disk Partitions. The number of entries is related + to number of partitions discovered in the system. The maximum number of + entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { logicalDevices 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1 + virtualDiskPartitionEntry OBJECT-TYPE + SYNTAX VirtualDiskPartitionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Virtual Disk Partition table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { virtualDiskPartitionNumber } + ::= { virtualDiskPartitionTable 1 } + + + VirtualDiskPartitionEntry ::= + SEQUENCE { + virtualDiskPartitionNumber + INTEGER, + virtualDiskPartitionDeviceName + OCTET STRING, + virtualDiskPartitionState + INTEGER, + virtualDiskPartitionSize + INTEGER, + virtualDiskPartitionFluidCacheStatus + OCTET STRING, + virtualDiskPartitionNexusID + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.1 + virtualDiskPartitionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this partition entry" + ::= { virtualDiskPartitionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.2 + virtualDiskPartitionDeviceName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Device name of the partition given by the operating system." + ::= { virtualDiskPartitionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.3 + virtualDiskPartitionState OBJECT-TYPE + SYNTAX INTEGER + { + active(1), + no(2), + removing(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "State of the partition. This is mapped stated of the associate virtual disk. + 1: Active - Mapped cache disk is working fine + 2: No - Fluid caching is not enabled + 3: Removing - This is a transient stage duing the process of disabling the cache + 4: Failed - Mapped cache disk has failed." + ::= { virtualDiskPartitionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.4 + virtualDiskPartitionSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size of the Partition in GB." + ::= { virtualDiskPartitionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.5 + virtualDiskPartitionFluidCacheStatus OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if the partition has associated fluidcache + " + ::= { virtualDiskPartitionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.2.1.6 + virtualDiskPartitionNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this partition. This comprises the controllerID, virtualDisk ID and hash mapped WWN number of this partition" + ::= { virtualDiskPartitionEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4 + fluidCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF FluidCacheEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed FluidCache. The number of entries is related to FluidCache discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries. + " + ::= { logicalDevices 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1 + fluidCacheEntry OBJECT-TYPE + SYNTAX FluidCacheEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Fluid Cache table. + A row in this table cannot be created or deleted by SNMP operations on columns of the table. + " + INDEX { fluidCacheNumber } + ::= { fluidCacheTable 1 } + + + FluidCacheEntry ::= + SEQUENCE { + fluidCacheNumber + INTEGER, + fluidCacheName + OCTET STRING, + fluidCacheLicenseState + OCTET STRING, + fluidCacheLicenseValidity + INTEGER, + fluidCacheLicenseEntitlementID + OCTET STRING, + fluidCacheLicenseDuration + OCTET STRING, + fluidCacheLicenseCapacity + OCTET STRING, + fluidCacheLicenseRemaining + OCTET STRING, + fluidCacheLicenseType + OCTET STRING, + fluidCacheLicenseVendor + OCTET STRING, + fluidCacheLicenseProductId + OCTET STRING, + fluidCacheLicenseDateSold + OCTET STRING, + fluidCacheLicenseGeneration + OCTET STRING, + fluidCacheLicenseFeatureID + OCTET STRING, + fluidCacheLicenseFeatureDescription + OCTET STRING, + fluidCacheNexus + OCTET STRING + } + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.1 + fluidCacheNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this fluid cache entry" + ::= { fluidCacheEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.2 + fluidCacheName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the fluidcache in this subsystem as represented in Storage Management. " + ::= { fluidCacheEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.3 + fluidCacheLicenseState OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "License state of the associated fluid cache subsystem" + ::= { fluidCacheEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.4 + fluidCacheLicenseValidity OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This entry displays the number of days the fluid cache license is valid. It has to be read in parallel to license type. + Incase of site wide license, value '0' should be read as 'Not Applicable'" + ::= { fluidCacheEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.5 + fluidCacheLicenseEntitlementID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indiactes the Entitlement Identifier for the license of the fluid cache subsystem" + ::= { fluidCacheEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.6 + fluidCacheLicenseDuration OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the duration of the the license validity" + ::= { fluidCacheEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.7 + fluidCacheLicenseCapacity OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the capacity of the license of fluidcache subsystem" + ::= { fluidCacheEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.8 + fluidCacheLicenseRemaining OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates the remaining days of the license validity" + ::= { fluidCacheEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.9 + fluidCacheLicenseType OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the type of the license of the fluidcache subsystem" + ::= { fluidCacheEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.10 + fluidCacheLicenseVendor OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the license vendor for the fluidcache subsystem" + ::= { fluidCacheEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.11 + fluidCacheLicenseProductId OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the product ID of the license of the fluidcache susbsytem" + ::= { fluidCacheEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.12 + fluidCacheLicenseDateSold OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the date on which the license for the fluidcache subsystem is sold" + ::= { fluidCacheEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.13 + fluidCacheLicenseGeneration OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the generation of the license for the fluidcache subsystem" + ::= { fluidCacheEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.14 + fluidCacheLicenseFeatureID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the license feature ID of the fluidcache subsystem" + ::= { fluidCacheEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.15 + fluidCacheLicenseFeatureDescription OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides the description of the license feature of fluidcache subsystem" + ::= { fluidCacheEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.4.1.16 + fluidCacheNexus OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the unique ID of the fludicache component" + ::= { fluidCacheEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5 + fluidCacheDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF FluidCacheDiskEntry + ACCESS not-accessible + STATUS mandatory + ::= { logicalDevices 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1 + fluidCacheDiskEntry OBJECT-TYPE + SYNTAX FluidCacheDiskEntry + ACCESS not-accessible + STATUS mandatory + INDEX { fluidCacheDiskNumber } + ::= { fluidCacheDiskTable 1 } + + + FluidCacheDiskEntry ::= + SEQUENCE { + fluidCacheDiskNumber + INTEGER, + fluidCacheDiskName + OCTET STRING, + fluidCacheDiskState + INTEGER, + fluidCacheDiskBackendDeviceType + INTEGER, + fluidCacheDiskBackendDeviceName + OCTET STRING, + fluidCacheDiskBackendDeviceSize + INTEGER, + fluidCacheDiskOperatingMode + INTEGER, + fluidCacheDiskConfiguredMode + INTEGER, + fluidCacheDiskNexus + OCTET STRING, + fluidCacheDiskStatus + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.1 + fluidCacheDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of the fluidCacheDisk entry" + ::= { fluidCacheDiskEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.2 + fluidCacheDiskName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of the Fluid Cache Disk Name as seen by storage management" + ::= { fluidCacheDiskEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.3 + fluidCacheDiskState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "State of the FluidCacheDisk entry + Valid values are + 2 - Active, otherwise Inactive + + " + ::= { fluidCacheDiskEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.4 + fluidCacheDiskBackendDeviceType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This displays the type of the backend device beneath the fluid cache disk. + Values are as below + 773 denotes VirtualDisk + 791 denotes Partition" + ::= { fluidCacheDiskEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.5 + fluidCacheDiskBackendDeviceName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Device name of the backend device as seen by the operating system" + ::= { fluidCacheDiskEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.6 + fluidCacheDiskBackendDeviceSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size of the Backend device. Size is indicated in GB" + ::= { fluidCacheDiskEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.7 + fluidCacheDiskOperatingMode OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Operating mode of the FluidCache. Values are + 0 - Writeback mode + 1 - Writethrough mode + 2 - PassThrough mode + " + ::= { fluidCacheDiskEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.8 + fluidCacheDiskConfiguredMode OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Configured Mode of the FluidCache. The values are + 0 - Writeback mode + 1 - Writethrough mode + 2 - PassThrough mode + " + ::= { fluidCacheDiskEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.9 + fluidCacheDiskNexus OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Durable Unique ID of the fluidcache disk" + ::= { fluidCacheDiskEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.5.1.10 + fluidCacheDiskStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the fluid cache disk state. + + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { fluidCacheDiskEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6 + fluidCachePoolTable OBJECT-TYPE + SYNTAX SEQUENCE OF FluidCachePoolEntry + ACCESS not-accessible + STATUS mandatory + ::= { logicalDevices 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1 + fluidCachePoolEntry OBJECT-TYPE + SYNTAX FluidCachePoolEntry + ACCESS not-accessible + STATUS mandatory + INDEX { fluidCachePoolNumber } + ::= { fluidCachePoolTable 1 } + + + FluidCachePoolEntry ::= + SEQUENCE { + fluidCachePoolNumber + INTEGER, + fluidCachePoolStoreCount + INTEGER, + fluidCachePoolUUID + OCTET STRING, + fluidCachePoolLicenseState + DisplayString, + fluidCachePoolSize + INTEGER, + fluidCachePoolHighAvailabilityState + OCTET STRING, + fluidCachePoolNexus + OCTET STRING, + fluidCachePoolStatus + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.1 + fluidCachePoolNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of the fluid cachepool entry" + ::= { fluidCachePoolEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.2 + fluidCachePoolStoreCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of flash devices that are part of the fluidcache pool" + ::= { fluidCachePoolEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.3 + fluidCachePoolUUID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "UUID of the fluidcache pool" + ::= { fluidCachePoolEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.4 + fluidCachePoolLicenseState OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "State of the fluid cache license. + Possible values: Valid, Evaluation, Expired + " + ::= { fluidCachePoolEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.5 + fluidCachePoolSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size of the fluidcache pool in GiB" + ::= { fluidCachePoolEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.6 + fluidCachePoolHighAvailabilityState OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if the fluidcache pool is operating in high availability mode." + ::= { fluidCachePoolEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.7 + fluidCachePoolNexus OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID of the fluidcache pool entry" + ::= { fluidCachePoolEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.6.1.8 + fluidCachePoolStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the fluid cache pool table state. + + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { fluidCachePoolEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200 + storageManagementEvent OBJECT IDENTIFIER ::= { storageManagement 200 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.1 + messageIDEvent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0001 Storage Management alert (event) message number." + ::= { storageManagementEvent 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.2 + descriptionEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0002 Storage Management event message text describing the alert." + ::= { storageManagementEvent 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.3 + locationEvent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0003 Additional information identifying the location of the object causing the alert." + ::= { storageManagementEvent 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.4 + objectNameEvent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0004 Name of the object as represented in Storage Management causing the alert." + ::= { storageManagementEvent 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.5 + objectOIDEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0005 MIB OID of the object causing the alert." + ::= { storageManagementEvent 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.6 + objectNexusEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0006 Durable, unique ID of the object causing the alert." + ::= { storageManagementEvent 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.7 + currentStatusEvent OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0007 Current status of object causing the alert, if applicable." + ::= { storageManagementEvent 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.8 + previousStatusEvent OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0008 Previous status of object causing the alert if applicable." + ::= { storageManagementEvent 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.9 + enhancedMessageIDEvent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0001 Enhanced Storage Management Message ID." + ::= { storageManagementEvent 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.10 + systemFQDNEvent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0008 System FQDN of object causing the alert if applicable." + ::= { storageManagementEvent 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.11 + serviceTagEvent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0008 Service Tag of object causing the alert if applicable." + ::= { storageManagementEvent 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.12 + chassisServiceTagEvent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0008 Chassis Service Tag of object causing the alert if applicable." + ::= { storageManagementEvent 12 } + + + +-- +-- Trap definitions +-- + + alertStorageManagementInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management Information + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Storage Management information. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 101 + alertStorageManagementNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 102 + alertStorageManagementWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management has detected a device independent warning condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent warning condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 103 + alertStorageManagementFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management has detected a device independent error condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent error condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 104 + alertStorageManagementNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management has detected a device independent non-recoverable condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent non-recoverable condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 105 + alertControllerInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller information." +--#TYPE "Storage Management Event: Controller Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Controller information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 751 + alertControllerNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller has returned to normal." +--#TYPE "Storage Management Event: Controller Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Controller has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 752 + alertControllerWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller warning." +--#TYPE "Storage Management Event: Controller Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Controller warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 753 + alertControllerFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller failure." +--#TYPE "Storage Management Event: Controller Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Controller failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 754 + alertControllerNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller is non-recoverable." +--#TYPE "Storage Management Event: Controller Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Controller is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 755 + alertChannelInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel information." +--#TYPE "Storage Management Event: Channel Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Channel information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 801 + alertChannelNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel has returned to normal." +--#TYPE "Storage Management Event: Channel Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Channel has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 802 + alertChannelWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel warning." +--#TYPE "Storage Management Event: Channel Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Channel warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 803 + alertChannelFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel failure." +--#TYPE "Storage Management Event: Channel Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Channel failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 804 + alertChannelNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel is non-recoverable." +--#TYPE "Storage Management Event: Channel Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Channel is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 805 + alertEnclosureInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure information." +--#TYPE "Storage Management Event: Enclosure Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Enclosure information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 851 + alertEnclosureNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure has returned to normal." +--#TYPE "Storage Management Event: Enclosure Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Enclosure has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 852 + alertEnclosureWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure warning." +--#TYPE "Storage Management Event: Enclosure Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Enclosure warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 853 + alertEnclosureFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure failure." +--#TYPE "Storage Management Event: Enclosure Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Enclosure failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 854 + alertEnclosureNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure is non-recoverable." +--#TYPE "Storage Management Event: Enclosure Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Enclosure is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 855 + alertArrayDiskInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk information." +--#TYPE "Storage Management Event: Array Disk Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Array disk information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 901 + alertArrayDiskNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk has returned to normal." +--#TYPE "Storage Management Event: Array Disk Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Array disk has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 902 + alertArrayDiskWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk warning." +--#TYPE "Storage Management Event: Array Disk Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Array disk warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 903 + alertArrayDiskFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk failure." +--#TYPE "Storage Management Event: Array Disk Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Array disk failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 904 + alertArrayDiskNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk is non-recoverable." +--#TYPE "Storage Management Event: Array Disk Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Array disk is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 905 + alertEMMInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM information." +--#TYPE "Storage Management Event: EMM Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, EMM information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 951 + alertEMMNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM has returned to normal." +--#TYPE "Storage Management Event: EMM Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, EMM has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 952 + alertEMMWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM warning." +--#TYPE "Storage Management Event: EMM Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, EMM warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 953 + alertEMMFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM failure." +--#TYPE "Storage Management Event: EMM Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, EMM failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 954 + alertEMMNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM is non-recoverable." +--#TYPE "Storage Management Event: EMM Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, EMM is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 955 + alertPowerSupplyInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply information." +--#TYPE "Storage Management Event: Power Supply Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Power supply information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1001 + alertPowerSupplyNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply has returned to normal." +--#TYPE "Storage Management Event: Power Supply Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Power supply has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1002 + alertPowerSupplyWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply warning." +--#TYPE "Storage Management Event: Power Supply Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Power supply warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1003 + alertPowerSupplyFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply failure." +--#TYPE "Storage Management Event: Power Supply Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Power supply failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1004 + alertPowerSupplyNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply is non-recoverable." +--#TYPE "Storage Management Event: Power Supply Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Power supply is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1005 + alertTemperatureProbeInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe information." +--#TYPE "Storage Management Event: Temperature Probe Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Temperature probe information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1051 + alertTemperatureProbeNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe has returned to normal." +--#TYPE "Storage Management Event: Temperature Probe Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Temperature probe has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1052 + alertTemperatureProbeWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe warning." +--#TYPE "Storage Management Event: Temperature Probe Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Temperature probe warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1053 + alertTemperatureProbeFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe failure." +--#TYPE "Storage Management Event: Temperature Probe Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Temperature probe failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1054 + alertTemperatureProbeNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe is non-recoverable." +--#TYPE "Storage Management Event: Temperature Probe Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Temperature probe is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1055 + alertFanInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan information." +--#TYPE "Storage Management Event: Fan Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fan information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1101 + alertFanNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan has returned to normal." +--#TYPE "Storage Management Event: Fan Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fan has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1102 + alertFanWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan warning." +--#TYPE "Storage Management Event: Fan Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fan warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1103 + alertFanFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan failure." +--#TYPE "Storage Management Event: Fan Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fan failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1104 + alertFanNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan is non-recoverable." +--#TYPE "Storage Management Event: Fan Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fan is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1105 + alertBatteryInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery information." +--#TYPE "Storage Management Event: Battery Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Battery information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1151 + alertBatteryNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery has returned to normal." +--#TYPE "Storage Management Event: Battery Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Battery has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1152 + alertBatteryWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery warning." +--#TYPE "Storage Management Event: Battery Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Battery warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1153 + alertBatteryFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery failure." +--#TYPE "Storage Management Event: Battery Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Battery failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1154 + alertBatteryNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery is non-recoverable." +--#TYPE "Storage Management Event: Battery Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Battery is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1155 + alertVirtualDiskInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk information." +--#TYPE "Storage Management Event: Virtual Disk Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Virtual disk information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1201 + alertVirtualDiskNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk has returned to normal." +--#TYPE "Storage Management Event: Virtual Disk Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Virtual disk has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1202 + alertVirtualDiskWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk warning." +--#TYPE "Storage Management Event: Virtual Disk Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Virtual disk warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1203 + alertVirtualDiskFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk failure." +--#TYPE "Storage Management Event: Virtual Disk Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Virtual disk failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1204 + alertVirtualDiskNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk is non-recoverable." +--#TYPE "Storage Management Event: Virtual Disk Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Virtual disk is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1205 + alertRedundancyNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Redundancy has returned to normal." +--#TYPE "Storage Management Event: Redundancy Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Redundancy has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1304 + alertRedundancyDegraded TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Redundancy has been degraded." +--#TYPE "Storage Management Event: Redundancy Degraded" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Redundancy has been degraded. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1305 + alertRedundancyLost TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Redundancy has been lost." +--#TYPE "Storage Management Event: Redundancy Lost" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Redundancy has been lost. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1306 + alertFluidCacheDiskInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache Disk Information" +--#TYPE "Storage Management Event: Fluid Cache Disk Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1401 + alertfluidCacheDiskWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache Disk warning." +--#TYPE "Storage Management Event: Fluid Cache Disk Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1403 + alertFluidCacheDisklFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache Disk failure." +--#TYPE "Storage Management Event: Fluid Cache Disk Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1404 + alertVirtualDiskPartitionInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual Disk Partition Information" +--#TYPE "Storage Management Event: Virtual Disk Partition Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Virtual Disk Partition. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1501 + alertVirtualDiskPartitionWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual Disk Partition warning." +--#TYPE "Storage Management Event: Virtual Disk Partition Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Virtual Disk Partition. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1503 + alertVirtualDiskPartitionFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual Disk Partition failure." +--#TYPE "Storage Management Event: Virtual Disk Partition Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Virtual Disk Partition Failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1504 + alertFluidCacheInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache Information" +--#TYPE "Storage Management Event: Fluid Cache Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fluid Cache. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1601 + alertfluidCacheWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache warning." +--#TYPE "Storage Management Event: Fluid Cache Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fluid Cache. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1603 + alertFluidCacheFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache failure." +--#TYPE "Storage Management Event: Fluid Cache Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1604 + alertFluidCachePoolInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache Pool Information" +--#TYPE "Storage Management Event: Fluid Cache Pool Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Pool. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1701 + alertfluidCachePoolWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache Pool warning." +--#TYPE "Storage Management Event: Fluid Cache Pool Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fluid Cache Pool. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1703 + alertFluidCachePoolFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fluid Cache Pool failure." +--#TYPE "Storage Management Event: Fluid Cache Pool Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Pool Failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1704 + alertEEMIStorageManagementInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + chassisServiceTagEvent } + DESCRIPTION + "Storage Management Information + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Storage Management information. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 10100 + alertEEMIStorageManagementNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + chassisServiceTagEvent } + DESCRIPTION + "There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 10200 + alertEEMIStorageManagementWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + chassisServiceTagEvent } + DESCRIPTION + "Storage Management has detected a device independent warning condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent warning condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 10300 + alertEEMIStorageManagementFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + chassisServiceTagEvent } + DESCRIPTION + "Storage Management has detected a device independent error condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent error condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 10400 + alertEEMIStorageManagementNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, enhancedMessageIDEvent, systemFQDNEvent, serviceTagEvent, + chassisServiceTagEvent } + DESCRIPTION + "Storage Management has detected a device independent non-recoverable condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent non-recoverable condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 10500 + alertEEMIControllerInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Controller information." +--#TYPE "Storage Management Event: Controller Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Controller information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 75100 + alertEEMIControllerNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Controller has returned to normal." +--#TYPE "Storage Management Event: Controller Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Controller has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 75200 + alertEEMIControllerWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Controller warning." +--#TYPE "Storage Management Event: Controller Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Controller warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 75300 + alertEEMIControllerFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Controller failure." +--#TYPE "Storage Management Event: Controller Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Controller failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 75400 + alertEEMIControllerNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Controller is non-recoverable." +--#TYPE "Storage Management Event: Controller Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Controller is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 75500 + alertEEMIChannelInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Channel information." +--#TYPE "Storage Management Event: Channel Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Channel information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 80100 + alertEEMIChannelNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Channel has returned to normal." +--#TYPE "Storage Management Event: Channel Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Channel has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 80200 + alertEEMIChannelWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Channel warning." +--#TYPE "Storage Management Event: Channel Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Channel warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 80300 + alertEEMIChannelFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Channel failure." +--#TYPE "Storage Management Event: Channel Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Channel failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 80400 + alertEEMIChannelNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Channel is non-recoverable." +--#TYPE "Storage Management Event: Channel Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Channel is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 80500 + alertEEMIEnclosureInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Enclosure information." +--#TYPE "Storage Management Event: Enclosure Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Enclosure information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 85100 + alertEEMIEnclosureNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Enclosure has returned to normal." +--#TYPE "Storage Management Event: Enclosure Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Enclosure has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 85200 + alertEEMIEnclosureWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Enclosure warning." +--#TYPE "Storage Management Event: Enclosure Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Enclosure warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 85300 + alertEEMIEnclosureFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Enclosure failure." +--#TYPE "Storage Management Event: Enclosure Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Enclosure failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 85400 + alertEEMIEnclosureNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Enclosure is non-recoverable." +--#TYPE "Storage Management Event: Enclosure Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Enclosure is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 85500 + alertEEMIArrayDiskInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Array disk information." +--#TYPE "Storage Management Event: Array Disk Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Array disk information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 90100 + alertEEMIArrayDiskNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Array disk has returned to normal." +--#TYPE "Storage Management Event: Array Disk Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Array disk has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 90200 + alertEEMIArrayDiskWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Array disk warning." +--#TYPE "Storage Management Event: Array Disk Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Array disk warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 90300 + alertEEMIArrayDiskFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Array disk failure." +--#TYPE "Storage Management Event: Array Disk Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Array disk failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 90400 + alertEEMIArrayDiskNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Array disk is non-recoverable." +--#TYPE "Storage Management Event: Array Disk Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Array disk is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 90500 + alertEMMEMMInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "EMM information." +--#TYPE "Storage Management Event: EMM Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, EMM information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 95100 + alertEEMIEMMNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "EMM has returned to normal." +--#TYPE "Storage Management Event: EMM Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, EMM has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 95200 + alertEEMIEMMWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "EMM warning." +--#TYPE "Storage Management Event: EMM Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, EMM warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 95300 + alertEEMIEMMFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "EMM failure." +--#TYPE "Storage Management Event: EMM Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, EMM failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 95400 + alertEEMIEMMNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "EMM is non-recoverable." +--#TYPE "Storage Management Event: EMM Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, EMM is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 95500 + alertEEMIPowerSupplyInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Power supply information." +--#TYPE "Storage Management Event: Power Supply Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Power supply information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 100100 + alertEEMIPowerSupplyNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Power supply has returned to normal." +--#TYPE "Storage Management Event: Power Supply Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Power supply has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 100200 + alertEEMIPowerSupplyWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Power supply warning." +--#TYPE "Storage Management Event: Power Supply Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Power supply warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 100300 + alertEEMIPowerSupplyFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Power supply failure." +--#TYPE "Storage Management Event: Power Supply Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Power supply failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 100400 + alertEEMIPowerSupplyNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Power supply is non-recoverable." +--#TYPE "Storage Management Event: Power Supply Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Power supply is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 100500 + alertEEMITemperatureProbeInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Temperature probe information." +--#TYPE "Storage Management Event: Temperature Probe Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Temperature probe information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 105100 + alertEEMITemperatureProbeNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Temperature probe has returned to normal." +--#TYPE "Storage Management Event: Temperature Probe Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Temperature probe has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 105200 + alertEEMITemperatureProbeWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Temperature probe warning." +--#TYPE "Storage Management Event: Temperature Probe Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Temperature probe warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 105300 + alertEEMITemperatureProbeFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Temperature probe failure." +--#TYPE "Storage Management Event: Temperature Probe Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Temperature probe failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 105400 + alertEEMITemperatureProbeNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Temperature probe is non-recoverable." +--#TYPE "Storage Management Event: Temperature Probe Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Temperature probe is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 105500 + alertEEMIFanInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fan information." +--#TYPE "Storage Management Event: Fan Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fan information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 110100 + alertEEMIFanNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fan has returned to normal." +--#TYPE "Storage Management Event: Fan Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fan has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 110200 + alertEEMIFanWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fan warning." +--#TYPE "Storage Management Event: Fan Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fan warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 110300 + alertEEMIFanFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fan failure." +--#TYPE "Storage Management Event: Fan Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fan failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 110400 + alertEEMIFanNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fan is non-recoverable." +--#TYPE "Storage Management Event: Fan Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fan is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 110500 + alertEEMIBatteryInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Battery information." +--#TYPE "Storage Management Event: Battery Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Battery information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 115100 + alertEEMIBatteryNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Battery has returned to normal." +--#TYPE "Storage Management Event: Battery Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Battery has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 115200 + alertEEMIBatteryWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Battery warning." +--#TYPE "Storage Management Event: Battery Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Battery warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 115300 + alertEEMIBatteryFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Battery failure." +--#TYPE "Storage Management Event: Battery Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Battery failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 115400 + alertEEMIBatteryNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Battery is non-recoverable." +--#TYPE "Storage Management Event: Battery Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Battery is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 115500 + alertEEMIVirtualDiskInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Virtual disk information." +--#TYPE "Storage Management Event: Virtual Disk Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Virtual disk information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 120100 + alertEEMIVirtualDiskNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Virtual disk has returned to normal." +--#TYPE "Storage Management Event: Virtual Disk Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Virtual disk has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 120200 + alertEEMIVirtualDiskWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Virtual disk warning." +--#TYPE "Storage Management Event: Virtual Disk Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Virtual disk warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 120300 + alertEEMIVirtualDiskFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Virtual disk failure." +--#TYPE "Storage Management Event: Virtual Disk Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Virtual disk failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 120400 + alertEEMIVirtualDiskNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Virtual disk is non-recoverable." +--#TYPE "Storage Management Event: Virtual Disk Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Virtual disk is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 120500 + alertEEMIRedundancyNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Redundancy has returned to normal." +--#TYPE "Storage Management Event: Redundancy Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Redundancy has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 130400 + alertEEMIRedundancyDegraded TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Redundancy has been degraded." +--#TYPE "Storage Management Event: Redundancy Degraded" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Redundancy has been degraded. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 130500 + alertEEMIRedundancyLost TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Redundancy has been lost." +--#TYPE "Storage Management Event: Redundancy Lost" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Redundancy has been lost. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 130600 + alertEEMIFluidCacheDiskInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache Disk Information" +--#TYPE "Storage Management Event: Fluid Cache Disk Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 140100 + alertEEMIfluidCacheDiskWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache Disk warning." +--#TYPE "Storage Management Event: Fluid Cache Disk Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 140300 + alertEEMIFluidCacheDisklFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache Disk failure." +--#TYPE "Storage Management Event: Fluid Cache Disk Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Disk. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 140400 + alertEEMIVirtualDiskPartitionInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Virtual Disk Partition Information" +--#TYPE "Storage Management Event: Virtual Disk Partition Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Virtual Disk Partition. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 150100 + alertEEMIVirtualDiskPartitionWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Virtual Disk Partition warning." +--#TYPE "Storage Management Event: Virtual Disk Partition Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Virtual Disk Partition. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 150300 + alertEEMIVirtualDiskPartitionFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Virtual Disk Partition failure." +--#TYPE "Storage Management Event: Virtual Disk Partition Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Virtual Disk Partition Failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 150400 + alertEEMIFluidCacheInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache Information" +--#TYPE "Storage Management Event: Fluid Cache Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fluid Cache. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 160100 + alertEEMIfluidCacheWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache warning." +--#TYPE "Storage Management Event: Fluid Cache Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fluid Cache. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 160300 + alertEEMIFluidCacheFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache failure." +--#TYPE "Storage Management Event: Fluid Cache Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 160400 + alertEEMIFluidCachePoolInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache Pool Information" +--#TYPE "Storage Management Event: Fluid Cache Pool Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Pool. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 170100 + alertEEMIfluidCachePoolWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache Pool warning." +--#TYPE "Storage Management Event: Fluid Cache Pool Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fluid Cache Pool. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 170300 + alertEEMIFluidCachePoolFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent, enhancedMessageIDEvent, systemFQDNEvent, + serviceTagEvent, chassisServiceTagEvent } + DESCRIPTION + "Fluid Cache Pool failure." +--#TYPE "Storage Management Event: Fluid Cache Pool Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fluid Cache Pool Failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 170400 + + END + +-- +-- dcstorag.mib +--