T640服务器风扇声音大怎么办
原因分析
可能是没有在支持的兼容性列表
前期准备工作

需要在idrac开启lan上的ipmi

查看iDrac版本,必须在3.30.30.30及以下,之后的版本关闭了手动控制风扇转速的权限,如果版本过高,可以通过iDrac中的更新进行降级;降级过程版本跨度不要过大,否则降级不成功


linux端

以Centos7为例
首先安装ipmitool
yum -y install ipmitool
测试连接IPMI
ipmitool -I lanplus -H 10.10.10.1 -U root raw (idrac的ip和账户密码根据实际情况修改)

关闭自动调节风扇
ipmitool -I lanplus -U root -P calvin -H 10.10.10.1 raw 0x30 0x30 0x01 0x00
如果需要打开自动调节风扇
sudo ipmitool -I lanplus -U root -P calvin -H 10.10.10.1 raw 0x30 0x30 0x01 0x01
(最后面0x00 代表禁用手动调速 ; 0x01代表启用手动调速)
关闭自动调节风扇转速后,设置风扇转速百分比,最后一位0XF是16进制15%转速
ipmitool -I lanplus -U root -P calvin -H 10.10.10.1 raw 0x30 0x30 0x02 0xff 0xf
ipmi用户名:登录iDRAC的用户名,默认为 root
ipmi密码:登录iDRAC的密码,默认为 calvin,以实际自己设置为准。
服务器地址: iDRAC的服务器IP,不是系统或虚拟机的IP

Windows端

方式一
Windows电脑安装:Dell OpenManage BMC Utility
下载链接:
https://www.dell.com/support/home/zh-cn/drivers/driversdetails?driverid=w9nmr&oscode=wst14&productcode=poweredge-t640
安装之后打开安装目录,打开powershell(管理员)
使用以下ipmi命令调节风扇转速
① 设置为手动调节
.\ipmitool.exe -I lanplus -H 192.168.0.120 -U root -P calvin raw 0x30 0x30 0x01 0x00
② 设置转速百分比(30%)
.\ipmitool.exe -I lanplus -H 192.168.0.120 -U root -P calvin raw 0x30 0x30 0x02 0xff 0x1e
解释:
① -H 192.168.0.120 -U root -P root 分别是:iDrac卡IP地址、用户名、密码,根据实际情况修改;
② 第二条命令最后一个是转速(十六进制),可以自己修改,命令中设置的是30%,平时设置到20%就可以
自动风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x01 0x01
手动设置风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x01 0x00
10%风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x02 0xff 0xa
15%风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x02 0xff 0xf
20%风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x02 0xff 0x14
25%风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x02 0xff 0x19
30%风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x02 0xff 0x1e
35%风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x02 0xff 0x23
40%风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x02 0xff 0x28
50%风速
ipmitool -I lanplus -U root -P calvin -H 192.168.0.120 raw 0x30 0x30 0x02 0xff 0x32

方式二
下载https://github.com/cw1997/dell_fans_controller软件

参考资料
https://blog.csdn.net/diyiday/article/details/131039970
https://www.dell.com/support/kbdoc/zh-cn/000136288/idrac-%E5%A6%82-%E4%BD%95-%E9%80%9A%E8%BF%87-cli-%E8%AE%BE%E7%BD%AE-idrac-%E6%95%A3%E7%83%AD-%E5%9F%BA%E6%9C%AC-%E7%AE%97%E6%B3%95?lang=zh