Dell R730XD
风扇噪音大问题
- https://steemit.com/cn/@ety001/ipmitool-dell-r730xd
- https://vswitchzero.com/ipmitool-vib/
- https://songxwn.com/ESXi8_IPMI/
- https://blog.vimc.cc/2020/10/18/在ESXi上手动控制服务器风扇/
通过 ipmitool
调整风扇转速
一、下载并传递到esxi主机系统
bash
unzip -x ipmitool-esxi-vib-1.8.11-2.zip
# 必须放到/tmp目录下面
cp ipmitool-1.8.11-2.x86_64.vib /tmp/ipmitool-1.8.11-2.x86_64.vib
二、执行安装
bash
# 设置允许社区版支持
esxcli software acceptance set --level=CommunitySupported
# 必须放到/tmp目录下面
esxcli software vib install -v /tmp/ipmitool-1.8.11-2.x86_64.vib
# 建立链接
ln -s /opt/ipmitool/ipmitool /bin/ipmitool
三、调整风扇速度
bash
# 允许手动调整风扇速度
ipmitool raw 0x30 0x30 0x01 0x00
# 调整风扇速度为10%
ipmitool raw 0x30 0x30 0x02 0xff 0x1a
# 设置为自动风扇速度
ipmitool raw 0x30 0x30 0x01 0x01
操作记录
bash
[root@netdisk-host:~] esxcli software acceptance set --level=CommunitySupported
Host acceptance level changed to 'CommunitySupported'.
[root@netdisk-host:~]
[root@netdisk-host:~] esxcli software vib install -v /tmp/ipmitool-1.8.11-2.x86_64.vib
Installation Result
Message: WARNING: Only live system was updated, the change is not persistent.
Reboot Required: false
VIBs Installed: ipmitool_bootbank_ipmitool_1.8.11-2
VIBs Removed:
VIBs Skipped:
[root@netdisk-host:~] /opt/ipmitool/ipmitool
No command provided!
Commands:
raw Send a RAW IPMI request and print response
i2c Send an I2C Master Write-Read command and print response
spd Print SPD info from remote I2C device
lan Configure LAN Channels
chassis Get chassis status and set power state
power Shortcut to chassis power commands
event Send pre-defined events to MC
mc Management Controller status and global enables
sdr Print Sensor Data Repository entries and readings
sensor Print detailed sensor information
fru Print built-in FRU and scan SDR for FRU locators
gendev Read/Write Device associated with Generic Device locators sdr
sel Print System Event Log (SEL)
pef Configure Platform Event Filtering (PEF)
sol Configure and connect IPMIv2.0 Serial-over-LAN
tsol Configure and connect with Tyan IPMIv1.5 Serial-over-LAN
isol Configure IPMIv1.5 Serial-over-LAN
user Configure Management Controller users
channel Configure Management Controller channels
session Print session information
sunoem OEM Commands for Sun servers
kontronoem OEM Commands for Kontron devices
picmg Run a PICMG/ATCA extended cmd
fwum Update IPMC using Kontron OEM Firmware Update Manager
firewall Configure Firmware Firewall
exec Run list of commands from file
set Set runtime variable for shell and exec
hpm Update HPM components using PICMG HPM.1 file
ekanalyzer run FRU-Ekeying analyzer using FRU files
[root@netdisk-host:~]