一、背景:
如题,今天在730xd的服务器上测试新到的浦科特 M9P Plus PCIE接口的固态盘,开机后风扇狂转。CPU 主板温度都正常。(未被服务器认证的PCIE设备会导致风扇转得很快)
后来在DELL社区找到了解决这个问题的方法 ,现搬砖如下。仅对原作者观点做补充说明和个人备忘。
二、解决方法
1. 安装IPMI tools
Linux:
yum install OpenIPMI OpenIPMI-tools
chkconfig ipmi on # << optional for the task
service ipmi start # << optional for the task
Windows:
下载IPMI TOOLS
本站分流:https://pan.moyann.com/s/QdSR
链接:https://pan.xunlei.com/s/VMTWRr8361gFQ6pJTQnBiERTA1
提取码:rwe6
当然不放心可以下载DELL官方的:
Dell EMC iDRAC Tools for Microsoft Windows Server(R), v9.4.0, v9.4.0")
2.查询系统默认针对第三方PCIE设备的风扇配置
ipmitool raw 0x30 0xce 0x01 0x16 0x05 0x00 0x00 0x00
# response like below means Disabled
16 05 00 00 00 05 00 01 00 00
# response like below means Enabled
16 05 00 00 00 05 00 00 00 00
3.关闭第三方PCIe卡的响应:
ipmitool raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x01 0x00 0x00
4. 打开第三方PCIe卡的响应:
ipmitool raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0x00 0x00
Windows:
cd C:\Program Files\Dell\SysMgt\bmc
ipmitool.exe –I lanplus -H <iDRAC’s IP> -U root -P calvin raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x01 0x00 0x00 \\ 关闭第三方PCIe卡的响应
ipmitool.exe –I lanplus -H <iDRAC’s IP> -U root -P calvin raw 0x30 0xce 0x00 0x16 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0x00 0x00 \\打开第三方PCIe卡的响应
ipmitool.exe –I lanplus -H <iDRAC’s IP> -U root -P calvin raw 0x30 0xce 0x01 0x16 0x05 0x00 0x00 0x00 \\ 查询系统默认针对第三方PCIE设备的风扇配置