Categories
homelab

Disable Dell r720xd Cooling Response When GPU Is Added

I recently added a Nvidia GTX 970 to my Dell r720xd server. The first thing I noticed was the fans ramped up quite a bit and this system is usually very quiet.

Dell r720xd with Nvidia GTX 970
Dell r720xd with Nvidia GTX 970

Yes, I know I can use IPMI and easily set the fans at a fixed lower rpm. However, I’d rather leave it up to the OS to manage the fan speed, if possible.

It turns out that the server is designed to automatically adjust cooling when third party PCIe cards are added.

You can disable the cooling response logic with this command:

ipmitool -I lanplus -H IPADDRESS -U USERNAME -P PASSWORD raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x01 0x00 0x00

You can enable the cooling response logic with this command:

ipmitool -I lanplus -H IPADDRESS -U USERNAME -P PASSWORD raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0x00 0x00 

To determine the 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 looks like this:

16 05 00 00 00 05 00 01 00 00 (Disabled)
16 05 00 00 00 05 00 00 00 00 (Enabled)

A couple notes about this process. Make sure your card, GPU or otherwise, can handle the low airflow. Check temperatures after you disable the fan response. Second, your iDRAC firmware my need to be updated if the command does not work. My r720xd is on version 2.65.65.65 at the time of this post.

2 replies on “Disable Dell r720xd Cooling Response When GPU Is Added”

Hi
Thanks for sharing the info
I am going to buy an r730XD and I want to add also a GPU
from the specs I can Dell says the 730xd do not support GPU
do you know why they claim this since is possible to install it ?

Also please let me know are you using Esxi ? or Windows ?

Last question ))
is it possible to add 2 GPU in the 730xd ?

thanks

Yes, you can add a GPU to the r730XD, Dell will always have a list of “approved” cards and add-ons for their enterprise hardware. They have to support it.

To answer your other question, I’m running UNRAID on this server.

Leave a Reply

Your email address will not be published. Required fields are marked *