[Plugin] IPMI for unRAID 6.1+


Recommended Posts

35 minutes ago, Elmojo said:

I wish I had scripts to share. I read a bunch about some that were supposed to enable semi-automatic control based on temps, but I never got them working.  I'm just using a fixed speed setting, set through IPMI manually.  It's worked okay so far, but is obviously not ideal, since it doesn't account for load or environmental fluctuations.  I also can only see a few sensor outputs.  I'm hoping that you'll have time at some point to mesh in the Dell-specific code to this plugin, so we can do slick things with it. :)

https://sites.google.com/site/learningatdell/ipmi

https://github.com/jdmallen/dell-ipmi-fan-control-monitor

https://www.barryodonovan.com/2007/04/11/dell-ipmi

https://thatremindsme.woodwose.net/computing/2010/08/06/IPMI-and-Serial-over-LAN-on-Dell-PowerEdge-Servers.html

https://blog.hessindustria.com/quiet-fans-on-dell-poweredge-servers-via-ipmi/

 

Edited by SimonF
  • Like 1
Link to comment
On 3/3/2023 at 6:38 AM, SimonF said:

Here is another to add to the list.

 

https://github.com/White-Raven/PowerEdge-shutup

 

This script makes a genuine effort at automatic control and uses input from multiple sensors.

I have been using it on a Dell R520 for a few months now.

 

I would love to see integration of this or better scripts into the IPMI Tool plugin.

Edited by Flute777
  • Like 2
Link to comment
4 hours ago, Flute777 said:

Here is another to add to the list.

 

https://github.com/White-Raven/PowerEdge-shutup

 

This script makes a genuine effort at automatic control and uses input from multiple sensors.

I have been using it on a Dell R520 for a few months now.

 

I would love to see integration of this or better scripts into the IPMI Tool plugin.

Thanks looks like there is ipmi commands in their repo also.

  • Like 2
Link to comment

A few I know of, the flag for third-party cooling response is an important one on the Dells, as this flag is only set through ipmitool and cannot be set in the ipmi ui (iDRAC) or bios.

Disabling this flag stops the system raising minimum fan speed by +60% when you add third party cards like non-server GPUs.

 

To set value to Low FAN speed offset run command:
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xCE 0x00 0x09 0x07 0x00 0x00 0x00 0x07 0x00 0x02 0x02 0x02 0x00 0x00

To set value to high FAN speed offset run command:
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xCE 0x00 0x09 0x07 0x00 0x00 0x00 0x07 0x00 0x02 0x02 0x02 0x01 0x00

Set Third-Party PCIe Card Default Cooling Response Logic To Disabled
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x01 0x00 0x00 

Set Third-Party PCIe Card Default Cooling Response Logic To Enabled
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0x00 0x00 

Get Third-Party PCIe Card Default Cooling Response Logic Status
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xce 0x01 0x16 0x05 0x00 0x00 0x00 
The response data is:
16 05 00 00 00 05 00 01 00 00 (Disabled)
16 05 00 00 00 05 00 00 00 00 (Enabled)

 

Referenced for 13th gen Dell servers, but I believe it is applicable to other models.
https://www.dell.com/support/kbdoc/en-au/000135682/how-to-disable-the-third-party-pcie-card-default-cooling-response-on-poweredge-13g-servers

 

Also note IPMI is disabled by default, and you have to got into iDRAC settings to enable it.

Edited by tjb_altf4
  • Like 3
Link to comment
On 3/4/2023 at 11:05 AM, tjb_altf4 said:

A few I know of, the flag for third-party cooling response is an important one on the Dells, as this flag is only set through ipmitool and cannot be set in the ipmi ui (iDRAC) or bios.

Disabling this flag stops the system raising minimum fan speed by +60% when you add third party cards like non-server GPUs.

 

To set value to Low FAN speed offset run command:
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xCE 0x00 0x09 0x07 0x00 0x00 0x00 0x07 0x00 0x02 0x02 0x02 0x00 0x00

To set value to high FAN speed offset run command:
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xCE 0x00 0x09 0x07 0x00 0x00 0x00 0x07 0x00 0x02 0x02 0x02 0x01 0x00

Set Third-Party PCIe Card Default Cooling Response Logic To Disabled
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x01 0x00 0x00 

Set Third-Party PCIe Card Default Cooling Response Logic To Enabled
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0x00 0x00 

Get Third-Party PCIe Card Default Cooling Response Logic Status
ipmitool -I lanplus -H <IPADDRESS> -U <USERNAME> -P <PASSWORD> raw 0x30 0xce 0x01 0x16 0x05 0x00 0x00 0x00 
The response data is:
16 05 00 00 00 05 00 01 00 00 (Disabled)
16 05 00 00 00 05 00 00 00 00 (Enabled)

 

Referenced for 13th gen Dell servers, but I believe it is applicable to other models.
https://www.dell.com/support/kbdoc/en-au/000135682/how-to-disable-the-third-party-pcie-card-default-cooling-response-on-poweredge-13g-servers

 

Also note IPMI is disabled by default, and you have to got into iDRAC settings to enable it.

These are the current configured options for Dell.

 

    $board_json = [ 'Dell' =>

            [ 'raw'    => '00 30 30 02 FF',

              'auto'   => '00 30 30 01 01',

              'manual' => '00 30 30 01 00',

              'full'   => '00 30 30 02 FF 64',

              'fans'   => [

                'FAN1234' => '00',

              ]

 

So will need to look into it.

Link to comment

You can also set the fan to specific values like this... 

20%    ipmitool raw 0x30 0x30 0x02 0xff 0x14   
19%    ipmitool raw 0x30 0x30 0x02 0xff 0x13
18%    ipmitool raw 0x30 0x30 0x02 0xff 0x12   
17%    ipmitool raw 0x30 0x30 0x02 0xff 0x11
16%    ipmitool raw 0x30 0x30 0x02 0xff 0x10    
15%    ipmitool raw 0x30 0x30 0x02 0xff 0xF       
14%    ipmitool raw 0x30 0x30 0x02 0xff 0xE    
13%    ipmitool raw 0x30 0x30 0x02 0xff 0xD    
12%    ipmitool raw 0x30 0x30 0x02 0xff 0xC
11%    ipmitool raw 0x30 0x30 0x02 0xff 0xB    
10%    ipmitool raw 0x30 0x30 0x02 0xff 0xA    
8%    ipmitool raw 0x30 0x30 0x02 0xff 0x8

etc...

Maybe those could be integrated into the plugin somehow? :)

Link to comment
3 hours ago, Elmojo said:

You can also set the fan to specific values like this... 

20%    ipmitool raw 0x30 0x30 0x02 0xff 0x14   
19%    ipmitool raw 0x30 0x30 0x02 0xff 0x13
18%    ipmitool raw 0x30 0x30 0x02 0xff 0x12   
17%    ipmitool raw 0x30 0x30 0x02 0xff 0x11
16%    ipmitool raw 0x30 0x30 0x02 0xff 0x10    
15%    ipmitool raw 0x30 0x30 0x02 0xff 0xF       
14%    ipmitool raw 0x30 0x30 0x02 0xff 0xE    
13%    ipmitool raw 0x30 0x30 0x02 0xff 0xD    
12%    ipmitool raw 0x30 0x30 0x02 0xff 0xC
11%    ipmitool raw 0x30 0x30 0x02 0xff 0xB    
10%    ipmitool raw 0x30 0x30 0x02 0xff 0xA    
8%    ipmitool raw 0x30 0x30 0x02 0xff 0x8

etc...

Maybe those could be integrated into the plugin somehow? :)

Could you paste the output of 

/usr/sbin/ipmi-sensors --output-sensor-thresholds --comma-separated-output --output-sensor-state --no-header-output --interpret-oem-data --always-prefix 

 

if you need to do over the network add -h "192.168.1.240" -u "ADMIN" -p "ADMIN" and change values as needed.

Link to comment

I must be doing something wrong.  When I paste the following in terminal, I get "/usr/sbin/ipmi-sensors: connection timeout"

 

/usr/sbin/ipmi-sensors --output-sensor-thresholds --comma-separated-output --output-sensor-state --no-header-output --interpret-oem-data --always-prefix -h "myLANIP" -u "myusername" -p "mypassword"

 

EDIT:  Okay, I think I have it.  I was assuming I had to do it over the network.  I tried it without the IP stuff, and I got this....

localhost: 1,SEL,Event Logging Disabled,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 2,Intrusion,Physical Security,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 12,Fan1,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 13,Fan2,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 14,Fan3,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 15,Fan4,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 16,Fan5,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 17,Fan6,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 18,Inlet Temp,Temperature,Nominal,21.00,C,N/A,-7.00,3.00,42.00,47.00,N/A,'OK'
localhost: 19,CPU Usage,Other Units Based Sensor,Nominal,5.00,%,N/A,N/A,N/A,101.00,N/A,N/A,'OK'
localhost: 20,IO Usage,Other Units Based Sensor,Nominal,0.00,%,N/A,N/A,N/A,101.00,N/A,N/A,'OK'
localhost: 21,MEM Usage,Other Units Based Sensor,Nominal,0.00,%,N/A,N/A,N/A,101.00,N/A,N/A,'OK'
localhost: 22,SYS Usage,Other Units Based Sensor,Nominal,6.00,%,N/A,N/A,N/A,101.00,N/A,N/A,'OK'
localhost: 23,OS Watchdog,Watchdog 2,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 24,VCORE PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 25,VCORE PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 26,3.3V PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 27,5V AUX PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 28,USB Cable Pres,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 29,VGA Cable Pres,Entity Presence,Critical,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Absent'
localhost: 30,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 31,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 32,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 33,M23 VPP PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 34,M23 VPP PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 35,2.5V AUX PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 36,1.5V AUX PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 37,FIVR PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 38,FIVR PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 39,1.05V PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 40,M23 VDDQ PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 41,M23 VTT PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 42,5V SWITCH PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 43,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 44,PCH Heatsink,Entity Presence,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 45,DIMM PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 46,VCCIO PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 47,M01 VDDQ PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 48,M01 VDDQ PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 49,M23 VTT PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 50,M01 VTT PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 51,LCD Cable Pres,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 52,M01 VPP PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 53,M01 VPP PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 54,M23 VDDQ PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 55,Presence,Entity Presence,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 56,Presence,Entity Presence,Critical,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Absent'
localhost: 57,Status,Processor,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Processor Presence detected'
localhost: 58,Status,Processor,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Processor Presence detected'
localhost: 59,Fan Redundancy,Fan,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Fully Redundant'
localhost: 62,Riser Config Err,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 63,1.5V PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 64,PS2 PG Fail,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 65,PS1 PG Fail,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 66,BP0 5V PG,Voltage,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 67,BP1 5V PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 68,BP2 5V PG,Voltage,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 69,M01 VTT PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 70,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 71,PCIe Slot1,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 72,PCIe Slot2,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 73,PCIe Slot3,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 74,PCIe Slot4,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 75,PCIe Slot5,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 76,PCIe Slot6,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 77,PCIe Slot7,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 78,A ,Memory,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Presence detected'
localhost: 79,B ,Memory,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Presence detected'
localhost: 82,vFlash,Module/Board,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 83,CMOS Battery,Battery,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 84,ROMB Battery,Battery,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 85,ROMB Battery,Battery,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 86,Presence,Entity Presence,Critical,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Absent'
localhost: 87,BP0 Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 88,PIB Cable Pres,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 89,Current 1,Current,Nominal,0.80,A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 90,Current 2,Current,Nominal,1.00,A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 91,Voltage 1,Voltage,Nominal,124.00,V,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 92,Voltage 2,Voltage,Nominal,124.00,V,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 93,PS Redundancy,Power Supply,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Fully Redundant'
localhost: 94,Status,Power Supply,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Presence detected'
localhost: 95,Status,Power Supply,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Presence detected'
localhost: 96,Pwr Consumption,Current,Nominal,204.00,W,N/A,N/A,N/A,1224.00,1343.00,N/A,'OK'
localhost: 97,Power Optimized,OEM Reserved,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Good'
localhost: 98,SD1,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 99,SD2,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 100,Redundancy,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 101,ECC Corr Err,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 102,ECC Uncorr Err,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 103,I/O Channel Chk,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 104,PCI Parity Err,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 105,PCI System Err,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 106,SBE Log Disabled,Event Logging Disabled,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 107,Logging Disabled,Event Logging Disabled,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 108,CPU Protocol Err,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 109,CPU Bus PERR,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 110,CPU Init Err,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 111,CPU Machine Chk,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 112,Memory Spared,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 113,Memory Mirrored,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 114,Memory RAID,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 115,Memory Added,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 116,Memory Removed,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 117,Memory Cfg Err,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 118,Mem Redun Gain,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 119,PCIE Fatal Err,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 120,Chipset Err,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 121,Fatal PCIeErr,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 122,FatalPCIeSSDErr,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 123,Err Reg Pointer,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 124,Mem ECC Warning,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 125,Mem CRC Err,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 126,USB Over-current,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 127,POST Err,System Firmware Progress,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 128,Hdwr version err,Version Change,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 129,Chassis Mismatch,Version Change,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 130,Mem Overtemp,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 131,Mem Fatal SB CRC,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 132,Mem Fatal NB CRC,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 133,iDPT Online,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 134,OS Watchdog Time,Watchdog 1,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 135,Non Fatal PCI Er,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 136,Interconnect Err,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 137,CPU TDP,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 138,Link Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 139,Link Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 140,NonFatal PCIe Er,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 141,NonFatalSSD Er,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 142,CPUMachineCheck,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 143,Fatal IO Error,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 144,Interconnect Er,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 145,QPIRC Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 146,QPIRC Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 147,MRC Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 148,MRC Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 149,Link Error,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 150,MSR Info Log,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 151,Additional Info,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 152,TXT Status,OS Critical Stop,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 153,Drive 0,Drive Slot,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Drive Presence'
localhost: 154,Drive 15,Drive Slot,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 155,Drive 30,Drive Slot,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 156,Cable PCIe A,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 157,Cable PCIe B,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 158,Cable PCIe C,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 159,Cable PCIe D,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 160,Cable SAS A0,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 161,Intrusion Cable,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 162,Cable SAS B0,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 163,Cable SAS A1,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 164,Cable SAS B1,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 165,Power Cable,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 166,Signal Cable,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 167,Power Cable,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 168,Signal Cable,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 170,Presence,Entity Presence,Critical,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Absent'
localhost: 171,Cable SAS A2,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 172,Cable SAS A2,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 173,Cable SAS B2,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 174,Cable SAS B2,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 175,Cable SAS B1,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 176,Cable SAS A0,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 177,Cable SAS A1,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 178,Cable SAS B0,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 179,Power Cable,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 180,Signal Cable,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 181,Dedicated NIC,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 182,Temp,Temperature,Nominal,36.00,C,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 183,Temp,Temperature,Nominal,33.00,C,N/A,N/A,N/A,N/A,N/A,N/A,'OK'

 

Edited by Elmojo
added output
Link to comment
1 hour ago, Elmojo said:

I must be doing something wrong.  When I paste the following in terminal, I get "/usr/sbin/ipmi-sensors: connection timeout"

 

/usr/sbin/ipmi-sensors --output-sensor-thresholds --comma-separated-output --output-sensor-state --no-header-output --interpret-oem-data --always-prefix -h "myLANIP" -u "myusername" -p "mypassword"

 

EDIT:  Okay, I think I have it.  I was assuming I had to do it over the network.  I tried it without the IP stuff, and I got this....

localhost: 1,SEL,Event Logging Disabled,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 2,Intrusion,Physical Security,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 12,Fan1,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 13,Fan2,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 14,Fan3,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 15,Fan4,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 16,Fan5,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 17,Fan6,Fan,Nominal,2280.00,RPM,N/A,240.00,360.00,N/A,N/A,N/A,'OK'
localhost: 18,Inlet Temp,Temperature,Nominal,21.00,C,N/A,-7.00,3.00,42.00,47.00,N/A,'OK'
localhost: 19,CPU Usage,Other Units Based Sensor,Nominal,5.00,%,N/A,N/A,N/A,101.00,N/A,N/A,'OK'
localhost: 20,IO Usage,Other Units Based Sensor,Nominal,0.00,%,N/A,N/A,N/A,101.00,N/A,N/A,'OK'
localhost: 21,MEM Usage,Other Units Based Sensor,Nominal,0.00,%,N/A,N/A,N/A,101.00,N/A,N/A,'OK'
localhost: 22,SYS Usage,Other Units Based Sensor,Nominal,6.00,%,N/A,N/A,N/A,101.00,N/A,N/A,'OK'
localhost: 23,OS Watchdog,Watchdog 2,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 24,VCORE PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 25,VCORE PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 26,3.3V PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 27,5V AUX PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 28,USB Cable Pres,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 29,VGA Cable Pres,Entity Presence,Critical,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Absent'
localhost: 30,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 31,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 32,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 33,M23 VPP PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 34,M23 VPP PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 35,2.5V AUX PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 36,1.5V AUX PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 37,FIVR PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 38,FIVR PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 39,1.05V PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 40,M23 VDDQ PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 41,M23 VTT PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 42,5V SWITCH PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 43,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 44,PCH Heatsink,Entity Presence,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 45,DIMM PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 46,VCCIO PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 47,M01 VDDQ PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 48,M01 VDDQ PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 49,M23 VTT PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 50,M01 VTT PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 51,LCD Cable Pres,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 52,M01 VPP PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 53,M01 VPP PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 54,M23 VDDQ PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 55,Presence,Entity Presence,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 56,Presence,Entity Presence,Critical,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Absent'
localhost: 57,Status,Processor,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Processor Presence detected'
localhost: 58,Status,Processor,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Processor Presence detected'
localhost: 59,Fan Redundancy,Fan,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Fully Redundant'
localhost: 62,Riser Config Err,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 63,1.5V PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 64,PS2 PG Fail,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 65,PS1 PG Fail,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 66,BP0 5V PG,Voltage,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 67,BP1 5V PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 68,BP2 5V PG,Voltage,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 69,M01 VTT PG,Voltage,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'State Deasserted'
localhost: 70,Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 71,PCIe Slot1,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 72,PCIe Slot2,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 73,PCIe Slot3,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 74,PCIe Slot4,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 75,PCIe Slot5,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 76,PCIe Slot6,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 77,PCIe Slot7,Critical Interrupt,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 78,A ,Memory,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Presence detected'
localhost: 79,B ,Memory,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Presence detected'
localhost: 82,vFlash,Module/Board,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 83,CMOS Battery,Battery,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 84,ROMB Battery,Battery,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 85,ROMB Battery,Battery,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 86,Presence,Entity Presence,Critical,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Absent'
localhost: 87,BP0 Presence,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 88,PIB Cable Pres,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 89,Current 1,Current,Nominal,0.80,A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 90,Current 2,Current,Nominal,1.00,A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 91,Voltage 1,Voltage,Nominal,124.00,V,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 92,Voltage 2,Voltage,Nominal,124.00,V,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 93,PS Redundancy,Power Supply,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Fully Redundant'
localhost: 94,Status,Power Supply,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Presence detected'
localhost: 95,Status,Power Supply,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Presence detected'
localhost: 96,Pwr Consumption,Current,Nominal,204.00,W,N/A,N/A,N/A,1224.00,1343.00,N/A,'OK'
localhost: 97,Power Optimized,OEM Reserved,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Good'
localhost: 98,SD1,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 99,SD2,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 100,Redundancy,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 101,ECC Corr Err,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 102,ECC Uncorr Err,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 103,I/O Channel Chk,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 104,PCI Parity Err,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 105,PCI System Err,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 106,SBE Log Disabled,Event Logging Disabled,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 107,Logging Disabled,Event Logging Disabled,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 108,CPU Protocol Err,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 109,CPU Bus PERR,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 110,CPU Init Err,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 111,CPU Machine Chk,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 112,Memory Spared,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 113,Memory Mirrored,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 114,Memory RAID,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 115,Memory Added,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 116,Memory Removed,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 117,Memory Cfg Err,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 118,Mem Redun Gain,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 119,PCIE Fatal Err,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 120,Chipset Err,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 121,Fatal PCIeErr,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 122,FatalPCIeSSDErr,Critical Interrupt,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 123,Err Reg Pointer,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 124,Mem ECC Warning,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 125,Mem CRC Err,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 126,USB Over-current,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 127,POST Err,System Firmware Progress,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 128,Hdwr version err,Version Change,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 129,Chassis Mismatch,Version Change,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 130,Mem Overtemp,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 131,Mem Fatal SB CRC,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 132,Mem Fatal NB CRC,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 133,iDPT Online,Memory,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 134,OS Watchdog Time,Watchdog 1,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 135,Non Fatal PCI Er,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 136,Interconnect Err,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 137,CPU TDP,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 138,Link Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 139,Link Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 140,NonFatal PCIe Er,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 141,NonFatalSSD Er,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 142,CPUMachineCheck,Processor,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 143,Fatal IO Error,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 144,Interconnect Er,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 145,QPIRC Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 146,QPIRC Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 147,MRC Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 148,MRC Warning,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 149,Link Error,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 150,MSR Info Log,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 151,Additional Info,OEM Reserved,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 152,TXT Status,OS Critical Stop,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 153,Drive 0,Drive Slot,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Drive Presence'
localhost: 154,Drive 15,Drive Slot,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 155,Drive 30,Drive Slot,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 156,Cable PCIe A,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 157,Cable PCIe B,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 158,Cable PCIe C,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 159,Cable PCIe D,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 160,Cable SAS A0,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 161,Intrusion Cable,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 162,Cable SAS B0,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 163,Cable SAS A1,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 164,Cable SAS B1,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 165,Power Cable,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 166,Signal Cable,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 167,Power Cable,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 168,Signal Cable,Cable/Interconnect,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Cable/Interconnect is connected'
localhost: 170,Presence,Entity Presence,Critical,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Absent'
localhost: 171,Cable SAS A2,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 172,Cable SAS A2,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 173,Cable SAS B2,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 174,Cable SAS B2,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 175,Cable SAS B1,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 176,Cable SAS A0,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 177,Cable SAS A1,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 178,Cable SAS B0,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 179,Power Cable,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 180,Signal Cable,Cable/Interconnect,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A
localhost: 181,Dedicated NIC,Entity Presence,Nominal,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,'Entity Present'
localhost: 182,Temp,Temperature,Nominal,36.00,C,N/A,N/A,N/A,N/A,N/A,N/A,'OK'
localhost: 183,Temp,Temperature,Nominal,33.00,C,N/A,N/A,N/A,N/A,N/A,N/A,'OK'

 

Thanks are you able to provide a screen print of you fan control page?

  • Like 1
Link to comment
5 hours ago, SimonF said:

Thanks are you able to provide a screen print of you fan control page?

I have a fan control page?! lol

EDIT: Oh, wait, you mean this one!  When I try to activate the tab, I get a JSON error, then after I clear that, the following pages...

 

cap001.jpg

cap002.jpg

cap003.jpg

Edited by Elmojo
I'm dumb...
Link to comment
5 hours ago, Elmojo said:

I have a fan control page?! lol

EDIT: Oh, wait, you mean this one!  When I try to activate the tab, I get a JSON error, then after I clear that, the following pages...

 

cap001.jpg

cap002.jpg

cap003.jpg

How did you clear the JSON error did you  run ipmi2json?

Link to comment
25 minutes ago, SimonF said:

Are you able to post json

I don't think I have one at all.  I mean, that's what the message is warning about, right?

My understanding is that with Dell machines, the JSON file is never created, because the "auto configure" process isn't able to run on these machines.  Perhaps I'm missing the whole point, but that's how it was explained to me way back when I originally installed it.

Link to comment
21 minutes ago, Elmojo said:

I don't think I have one at all.  I mean, that's what the message is warning about, right?

My understanding is that with Dell machines, the JSON file is never created, because the "auto configure" process isn't able to run on these machines.  Perhaps I'm missing the whole point, but that's how it was explained to me way back when I originally installed it.

Sorry I was looking at ASRock yesterday forgot yours is dell.

Link to comment
3 hours ago, Elmojo said:

Roger that.  Please let me know if I can do anything else to help, however unlikely. :)

What output do you get from 

 dmidecode -t 2 | grep 'Manufacturer' | awk -F 'r:' '{print $2}' | awk  '{print $1}'

 

I am trying to use your data, does you sensors look similar to this?

 

image.thumb.png.ee285c46759624bf200675d783f5c977.png

Edited by SimonF
Link to comment

For Dell users it looks lke support has been removed from iDrac > 3.30.30.30. for controlling fans.

 

Anyone know of a way to get firmware level of iDrac?

 

On Dell you can process each fan or all together. Would fan control need to support individual or all at the same time.

 

fans are label 1-6 from data I have seen so far are any of these the CPU? How can you tell.

Link to comment

Well, when I log into my iDRAC, I can pull all sorts of info. (see example screens, below)

My current firmware version is 2.83.83.83

Under the Fans tab, it doesn't say which one is the CPU, because there isn't one.  There are 6 chassis fans, 4 in the front and 2 in the rear that all run together. They make sort of a wind tunnel effect that blows across the CPUs and cools them, along with other components.  I think you can control them as one, no need to vary them individually.

 

iDRAC.jpg

Fans.jpg

Link to comment
50 minutes ago, Elmojo said:

Well, when I log into my iDRAC, I can pull all sorts of info. (see example screens, below)

My current firmware version is 2.83.83.83

Under the Fans tab, it doesn't say which one is the CPU, because there isn't one.  There are 6 chassis fans, 4 in the front and 2 in the rear that all run together. They make sort of a wind tunnel effect that blows across the CPUs and cools them, along with other components.  I think you can control them as one, no need to vary them individually.

 

iDRAC.jpg

Fans.jpg

Are you able try commands from spxlabs to see if it changes?

https://www.spxlabs.com/blog/2019/3/16/silence-your-dell-poweredge-server

 

Link to comment
7 hours ago, SimonF said:

On Dell you can process each fan or all together. Would fan control need to support individual or all at the same time.

 

fans are label 1-6 from data I have seen so far are any of these the CPU? How can you tell.

Pic is worth a thousand words :) Numbers for a R730 poweredge show here, same layout for R720.
It would be optimal to control as one group, but optionally controlling them in 2 groups (123 and 456) would be useful for people only running one CPU
image.thumb.png.fe09a3653c885bc35df75e4238365dd0.png

  • Like 1
Link to comment
1 hour ago, tjb_altf4 said:

Pic is worth a thousand words :) Numbers for a R730 poweredge show here, same layout for R720.
It would be optimal to control as one group, but optionally controlling them in 2 groups (123 and 456) would be useful for people only running one CPU
 

That may be true for the R-series servers, but the T-series (Tower) servers are nothing like that.  As I noted above, my T630 has 4 fans in the front and 2 in the rear, all connected to a single plastic shroud that forms a tunnel, blowing across both CPUs equally. There's no need to control the fans separately on this type of system, since it would only reduce the cooling by some of the fans and create an imbalance.

Like this: Dell-PowerEdge-T630-open-shroud.jpg

Edited by Elmojo
  • Like 1
Link to comment
2 hours ago, Elmojo said:

That may be true for the R-series servers, but the T-series (Tower) servers are nothing like that. 

Yep you are correct, but I wanted to make sure the R7 series (2U) was accounted for also.

I did make sure to call out the models I was describing, I'm sure the server 1U and 4U variants differ also.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.