📦安装IPMITOOL

Ubuntu

sudo apt update
sudo apt install ipmitool

Windows

去 Dell 官方下载安装包解压安装即可:https://www.dell.com/support/home/zh-cn/drivers/driversdetails?driverid=96ph4

Redhat/Centos

sudo yum update
sudo yum install OpenIPMI ipmitool

🚀转速调整

需要调整转速必须关闭自动调速,以下是关于风扇转速的调整指令,rootiDRAC 用户名,passwordiDRAC 密码。

  • 关闭自动调速
ipmitool –I lanplus -H 192.168.1.100 -U root -P password raw 0x30 0x30 0x01 0x00
  • 开启自动调速
ipmitool –I lanplus -H 192.168.1.100 -U root -P password raw 0x30 0x30 0x01 0x01
  • 设置为10%转速
ipmitool –I lanplus -H 192.168.1.100 -U root -P password raw 0x30 0x30 0x02 0xff 0x0a
  • 设置为15%转速
ipmitool –I lanplus -H 192.168.1.100 -U root -P password raw 0x30 0x30 0x02 0xff 0x0f
  • 设置为45%转速
ipmitool –I lanplus -H 192.168.1.100 -U root -P password raw 0x30 0x30 0x02 0xff 0x2d

最后的0x0a表示转速的百分比的十六进制0a表示10%0f表示15%,设置百分比只需要修改后面两位就行。
举例:
需要设置更高只需要将最后两位数转换为16进制即可,比如设置为 80% 的转速,只需要修改为 0x50 即可。
具体计算可以使用系统自带的计算器,切换至程序员即可,也可以自行百度进制转换。
686358e921fe0.webp