Dell R620 R630 R720 R730 通过IPMI手动控制服务器风扇转速

Dell Server Ipmi Fan Offset

Posted by BlueFat on Thursday, March 23, 2023

测试IPMI的连接性:

ipmitool -I lanplus -H 192.168.1.149 -U root -P root raw

将风扇设置为手动调节转速

ipmitool -I lanplus -H 192.168.1.149 -U root -P root-passwd raw 0x30 0x30 0x01 0x00

手动设置风扇转速(最后一字节指示风扇转速的百分比的十六进制,如0x0a就是10% 系统默认最低是18%): 注:常用10% 0x0a、 20% 0x14、30% 0x1e、50% 0x32、70% 0x46、90% 0x5a

ipmitool -I lanplus -H 192.168.1.149 -U root -P root-passwd raw 0x30 0x30 0x02 0xff 0x0a

恢复成自动控制转速

ipmitool -I lanplus -H 192.168.1.149 -U root -P root-passwd raw 0x30 0x30 0x01 0x01