Monitor Dell C6100 basic HW monitoring, how to?

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

Jesper

New Member
Oct 7, 2013
3
0
1
Sweden
I just installed a node in a C6100 with Windows Server that will be used in production, but the problem is that I don´t find an easy way to do basic HW monitoring of discs, raid and power supplies. I got the BMC up and working, but it doesn´t see the power supplies. The BMC basically only shows fan speed and an ambient temperature, not much else of interest. So first question should the BMC see the power supplies or not?

Then I got the LSI 2008 mezzanine SAS in the node and can´t see how I can easyli monitor the status of the raid sets and discs. I got LSIutils, but it´s not very useful, then I found poweredgec.com that has a few tools to manage a C6100, but it seems that I would need to have a unix machine somewhere to be able to use that.

So I will gladly take any suggestions on how to monitor the C6100 in a little easier fashion.

BR,
Jesper
 

vanfawx

Active Member
Jan 4, 2015
365
67
28
45
Vancouver, Canada
Most of what you want is available via ipmitool sdr - ipmitool is available on pretty much every platform. Here's the output from a 6100 running Linux:
Code:
# ipmitool sdr
FCB FAN1         | 6700 RPM          | ok
FCB FAN2         | 6700 RPM          | ok
FCB FAN3         | 6700 RPM          | ok
FCB FAN4         | 6700 RPM          | ok
PEF Action       | 0x00              | ok
WatchDog2        | 0x00              | ok
AC Pwr On        | 0x00              | ok
ACPI Pwr State   | 0x00              | ok
FCB Ambient1     | 23 degrees C      | ok
FCB Ambient2     | 0 degrees C       | ok
CPU1Status       | 0x00              | ok
CPU2Status       | 0x00              | ok
PS 12V           | 12.03 Volts       | ok
PS 5V            | 5.04 Volts        | ok
MLB TEMP 2       | 61 degrees C      | ok
MLB TEMP 3       | 53 degrees C      | ok
Processor 1 Temp | 39 degrees C      | ok
MLB TEMP 1       | 58 degrees C      | ok
Processor 2 Temp | 44 degrees C      | ok
STBY 3.3V        | 3.35 Volts        | ok
PS Current       | 13 Amps           | ok
SEL Fullness     | 0x00              | ok
PCI BUS          | 0x00              | ok
Memory           | 0x00              | ok
VCORE 1          | 1.03 Volts        | ok
VCORE 2          | 1.01 Volts        | ok
NM Capability    | 0x07              | ok
Security         | 0x00              | ok
PSU 1 AC Status  | 0x00              | ok
PSU 2 AC Status  | 0x00              | ok
PSU 1 Present    | 0x00              | ok
PSU 2 Present    | 0x00              | ok
Hope that helps!