墨少离 - 个人小站,分享一些资源以及心得~ - iDRAC https://www.msl.la/tag/iDRAC/ DELL R730xd 安装PCIE SSD 后风扇转速增高的解决方案 https://www.msl.la/archives/123/ 2021-02-15T01:03:00+08:00 一、背景:如题,今天在730xd的服务器上测试新到的浦科特 M9P Plus PCIE接口的固态盘,开机后风扇狂转。CPU 主板温度都正常。(未被服务器认证的PCIE设备会导致风扇转得很快)后来在DELL社区找到了解决这个问题的方法 ,现搬砖如下。仅对原作者观点做补充说明和个人备忘。二、解决方法1. 安装IPMI toolsLinux:yum install OpenIPMI OpenIPMI-tools chkconfig ipmi on # << optional for the task service ipmi start # << optional for the taskWindows:下载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 003.关闭第三方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设备的风扇配置