Server Management - Systems Insight Manager
1851549 Members
4445 Online
104060 Solutions
New Discussion

undocumented status for cpqFcaHostCntrlStatus

 
SOLVED
Go to solution
Köhne
Advisor

undocumented status for cpqFcaHostCntrlStatus

We got an SNMP trap from pone of our boxes with cpqFcaHostCntrlStatus set to 7.
Here is an excerpt from CPQFCA-MIB.mib MIB-file, which shows only 6 valid status:
cpqFcaHostCntlrStatus OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ok(2),
failed(3),
shutdown(4),
loopDegraded(5),
loopFailed(6)
}
What does this status mean?
2 REPLIES 2
May_11
Advisor
Solution

Re: undocumented status for cpqFcaHostCntrlStatus

7 means not Connected.

Here is the latest mib file shows:

cpqFcaHostCntlrStatus OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ok(2),
failed(3),
shutdown(4),
loopDegraded(5),
loopFailed(6),
notConnected(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Fibre Channel Host Controller Status.

The host controller can be in one of the following states:

Other (1)
The agent is unable to determine the status of the host
controller.

Ok (2)
Indicates that the host controller is in normal operation mode.

Failed (3)
Indicates that the host controller has failed and should be
replaced.

Shutdown (4)
Indicates that the host controller has been shutdown.

LoopDegraded (5)
Indicates that the fibre channel connection is degraded.

LoopFailed (6)
Indicates that the fibre channel connection is failed.

NotConnected (7)
Indicates that the fibre channel port is not connected or the
device to which it is connected is powered down."
::= { cpqFcaHostCntlrEntry 4 }
Köhne
Advisor

Re: undocumented status for cpqFcaHostCntrlStatus

Thanks,

just the piece of information I need.