Modify fans speed of Supermicro X9DRW-iF via IPMI
Taken from here https://blog.pcfe.net/hugo/posts/2018-08-14-epyc-ipmi-fans/
andrey.trok@AndreyPC /cygdrive/c/Users/andrey.trok/Downloads/ipmitool-master/ipmitool-master
$ for i in 1 2 3 4 5 6 A B; do ipmitool -H \
> 192.168.1.110 \
> -U andrey -P u*****d -I lanplus \
> sensor thresh FAN${i} lower 0 100 200; done
Locating sensor record 'FAN1'...
Setting sensor "FAN1" Lower Non-Recoverable threshold to 0.000
Setting sensor "FAN1" Lower Critical threshold to 100.000
Setting sensor "FAN1" Lower Non-Critical threshold to 200.000
Locating sensor record 'FAN2'...
Setting sensor "FAN2" Lower Non-Recoverable threshold to 0.000
Setting sensor "FAN2" Lower Critical threshold to 100.000
Setting sensor "FAN2" Lower Non-Critical threshold to 200.000
Locating sensor record 'FAN3'...
Setting sensor "FAN3" Lower Non-Recoverable threshold to 0.000
Setting sensor "FAN3" Lower Critical threshold to 100.000
Setting sensor "FAN3" Lower Non-Critical threshold to 200.000
Locating sensor record 'FAN4'...
Setting sensor "FAN4" Lower Non-Recoverable threshold to 0.000
Setting sensor "FAN4" Lower Critical threshold to 100.000
Setting sensor "FAN4" Lower Non-Critical threshold to 200.000
Locating sensor record 'FAN5'...
Sensor data record not found!
Locating sensor record 'FAN6'...
Sensor data record not found!
Locating sensor record 'FANA'...
Setting sensor "FANA" Lower Non-Recoverable threshold to 0.000
Setting sensor "FANA" Lower Critical threshold to 100.000
Setting sensor "FANA" Lower Non-Critical threshold to 200.000
Locating sensor record 'FANB'...
Setting sensor "FANB" Lower Non-Recoverable threshold to 0.000
Setting sensor "FANB" Lower Critical threshold to 100.000
Setting sensor "FANB" Lower Non-Critical threshold to 200.000
andrey.trok@AndreyPC /cygdrive/c/Users/andrey.trok/Downloads/ipmitool-master/ipmitool-master
$ for i in 1 2 3 4 5 6 A B; do ipmitool -H 192.168.1.110 -U andrey -P u******d -I lanplus sensor thresh FAN${i} upper 1200 1400 ^Cdon
e
andrey.trok@AndreyPC /cygdrive/c/Users/andrey.trok/Downloads/ipmitool-master/ipmitool-master
$ ipmitool -H 192.168.1.110 -U andrey -p uvuFPaud -I lan sensor list | grep ^FAN
Invalid parameter given or out of range for '-p'.
andrey.trok@AndreyPC /cygdrive/c/Users/andrey.trok/Downloads/ipmitool-master/ipmitool-master
$ ipmitool -H 192.168.1.110 -U andrey -P uvuFPaud -I lan sensor list | grep ^FAN
FAN1 | 450.000 | RPM | ok | 0.000 | 75.000 | 225.000 | 18825.000 | 18975.000 | 19125.000
FAN2 | 375.000 | RPM | ok | 0.000 | 75.000 | 225.000 | 18825.000 | 18975.000 | 19125.000
FAN3 | 600.000 | RPM | ok | 0.000 | 75.000 | 225.000 | 18825.000 | 18975.000 | 19125.000
FAN4 | 1650.000 | RPM | ok | 0.000 | 75.000 | 225.000 | 18825.000 | 18975.000 | 19125.000
FANA | na | RPM | na | 0.000 | 75.000 | 225.000 | 18825.000 | 18975.000 | 19125.000
FANB | na | RPM | na | 0.000 | 75.000 | 225.000 | 18825.000 | 18975.000 | 19125.000
andrey.trok@AndreyPC /cygdrive/c/Users/andrey.trok/Downloads/ipmitool-master/ipmitool-master
$ ipmitool -H 192.168.1.110 -U andrey -P u*****d -I lan sensor list | grep -i temp
CPU1 Temp | 50.000 | degrees C | ok | na | na | na | 85.000 | 88.000 | 90.000
CPU2 Temp | 50.000 | degrees C | ok | na | na | na | 85.000 | 88.000 | 90.000
System Temp | 36.000 | degrees C | ok | na | na | na | 80.000 | 85.000 | 90.000
Peripheral Temp | 42.000 | degrees C | ok | na | na | na | 80.000 | 85.000 | 90.000
PCH Temp | 46.000 | degrees C | ok | na | na | na | 90.000 | 95.000 | 100.000
Comments
Post a Comment