want to manually control your fan speeds to limit noise?

super simple. here’s how.

pre-req: go into idrac > network > scroll down > enable ipmi > save

if you’re a windows guy, grab this: https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=m63f3, then follow commands below

if you’re a linux guy, install this: sudo apt install ipmitool

then:

ipmitool -I lanplus -H YOUR_IDRAC_IP -U root -P calvin raw 0x30 0x30 0x01 0x00
ipmitool -I lanplus -H YOUR_IDRAC_IP -U root -P calvin raw 0x30 0x30 0x02 0xFF VALUE

replace YOUR_IDRAC_IP with, well, your iDrac IP and VALUE with the hexadecimal below. from 0% to 100% fan speed. i leave mine at 50% and it temps remain stable even when running llms on my p40.

the first commands installs ipmitool. the second sets the fans to be manually controlled. the third command sets the fan speed in terms of a % between 0 and 100. so if you wanted to do the same, you would just do:

ipmitool -I lanplus -H <ip> -U root -P calvin raw 0x30 0x30 0x02 0xFF 0x32

and lastly here’s an easy chart in increments of 10 converted to hex:

Fan Speed %Hexadecimal Value
00x00
100x0A
200x14
300x1E
400x28
500x32
600x3C
700x46
800x50
900x5A
1000x64