记录一下戴尔服务器风扇控制;
1.需要安装ipmitool环境
以macos为例:
brew install ipmitool
2.需要在戴尔服务器管理页面启动远程访问
由于不同的戴尔服务器emc固件都不一样这里就省略。
3.通过指令将风扇改为手动模式
ipmitool -I lanplus -H xxx.xxx.xxx.xxx -U youraccount -P yourpassword raw 0x30 0x30 0x01 0x00
4.通过指令设置风扇转速百分比
ipmitool -I lanplus -H xxx.xxx.xxx.xxx -U youraccount -P yourpassword raw 0x30 0x30 0x02 0xff 0x0a
ipmitool -I lanplus -H xxx.xxx.xxx.xxx -U youraccount -P yourpassword raw 0x30 0x30 0x02 0xff 0x0f
末尾的0x0a和0x0f为风扇转速百分比的十六进制,分别为10和15,需要其他百分比的可修改为其他十六进制。
我使用的戴尔服务器固件使用此方式没有问题,但新固件好像禁用了这种调整方式。新固件可能不太适用此方法。