如果没记错的话.r720 可以最大控制在 3600 转,和一开始的 13000 转还是差别巨大,2 硬盘整机 80w 不到。
https://www.reddit.com/r/homelab/comments/t9pa13/dell_poweredge_fan_control_with_ipmitool/https://dl.dell.com/FOLDER05173262M/1/OM-BMC-Dell-Web-WIN-9.2.0-3142_A00.exe?uid=d14b252a-1009-41b6-8064-ecf153920ba4&fn=OM-BMC-Dell-Web-WIN-9.2.0-3142_A00.exeDell PowerEdge fan control with ipmitool - individual fan speeds
I couldn't find any info about this here or elsewhere on the internet, but I was playing around with ipmitool today and figured out how to control PowerEdge fans individually (at least on my T630).
The command to turn on manual control is:
ipmitool -I lanplus -H $IP -U $USER -P $PASS raw 0x30 0x30 0x01 0x00
and to turn it off is:
ipmitool -I lanplus -H $IP -U $USER -P $PASS raw 0x30 0x30 0x01 0x01
Controlling all fans at once can be done with:
ipmitool -I lanplus -H $IP -U $USER -P $PASS raw 0x30 0x30 0x02 0xff 0x##
where ## is 00 to 64, which is mapped to 0% to 100%.
All the above info is available all over the place, but it turns out the same command can be used to target individual fans too:
ipmitool -I lanplus -H $IP -U $USER -P $PASS raw 0x30 0x30 0x02 0x?? 0x##
Where ?? is a zero indexed fan number and ## is as above. Fan 1 is 0x00, fan 2 is 0x01, etc. If you use a an incorrect number it will throw an error on ipmitool and not cause any damage.
I needed this because my computer has different fan zones, and I wanted the CPU zone to have a lower RPM than the PCIe zones, and now I can. Much quieter.
I hope this is useful!
==ssh
racadm get system.thermalsettings
racadm set system.thermalsettings.FanSpeedOffset 255
racadm set system.thermalsettings.ThermalProfile 2
racadm set system.thermalsettings.ThirdPartyPCIFanResponse 0
racadm get system.thermalsettings
[Key=system.Embedded.1#ThermalSettings.1]
AirExhaustTemp=70
FanSpeedOffset=Off
ThermalProfile=Minimum Power
ThirdPartyPCIFanResponse=Disabled
cd /d D:\dell\bmc
ipmitool -I lanplus -H 192.168.0.120 -U root -P
[email protected] raw 0x30 0x30 0x01 0x00
ipmitool -I lanplus -H 192.168.0.120 -U root -P
[email protected] raw 0x30 0x30 0x02 0x00 0x15
ipmitool -I lanplus -H 192.168.0.120 -U root -P
[email protected] raw 0x30 0x30 0x02 0x01 0x14
ipmitool -I lanplus -H 192.168.0.120 -U root -P
[email protected] raw 0x30 0x30 0x02 0x02 0x15
ipmitool -I lanplus -H 192.168.0.120 -U root -P
[email protected] raw 0x30 0x30 0x02 0x03 0x14
ipmitool -I lanplus -H 192.168.0.120 -U root -P
[email protected] raw 0x30 0x30 0x02 0x04 0x0a
ipmitool -I lanplus -H 192.168.0.120 -U root -P
[email protected] raw 0x30 0x30 0x02 0x05 0x0a