Skip to content

Instantly share code, notes, and snippets.

@andrewfraley
Created April 22, 2023 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewfraley/16f99f0dabc712d434d165a01c16aa05 to your computer and use it in GitHub Desktop.
Save andrewfraley/16f99f0dabc712d434d165a01c16aa05 to your computer and use it in GitHub Desktop.

Enable / Disable additional 3rd party cooling on the Dell r630 - by default a 3rd party pcie card will ramp up the fans

apt install ipmitool

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment