Dell R620 R630 R720 R730 通过IPMI手动控制服务器风扇转速
事件分析
我们给R620服务器安装上了显卡以后,发现风扇满速16500的转速,肯定是不正常的。声音非常吵的情况下,我们想办法手动控制转速。
处理办法
1、借助DELL服务器自身的iDRAC和ipmitool
2、找一台同网络内的 Linux 系统,安装好 ipmitool 工具,并执行以下步骤:
2.1、切换到root用户进行测试IPMI的连接性:
ipmitool -I lanplus -H 192.168.101.73 -U root -P root raw
2.2、将风扇设置为手动调节转速
ipmitool -I lanplus -H 192.168.101.73 -U root -P root raw 0x30 0x30 0x01 0x00
2.3、手动设置风扇转速(最后一字节指示风扇转速的百分比的十六进制,如0x0a就是10% 系统默认最低是18%):
注:常用10% 0x0a;20% 0x14;30% 0x1e;50% 0x32;70% 0x46;90% 0x5a
ipmitool -I lanplus -H 192.168.101.73 -U root -P root raw 0x30 0x30 0x02 0xff 0x0a
2.4、恢复成自动控制转速
ipmitool -I lanplus -H 192.168.101.73 -U root -P root raw 0x30 0x30 0x01 0x01
版权声明:
作者:三炮不吃鱼
链接:https://www.keke.moe/archives/1828.html
文章版权归作者所有,未经允许请勿转载。
THE END