Created
April 1, 2020 10:02
-
-
Save corgan2222/f60c3752b9ce1ffd6c5e76e1d0717542 to your computer and use it in GitHub Desktop.
IPMI commands for Dell PowerEdge R210 II running pfsense freeBSD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Dell PowerEdge R210 II | |
#pfsense freeBSD | |
kldload ipmi | |
ipmitool | |
ipmitool sensor | |
ipmitool sensor get "FAN 1 RPM" | |
#set threshold | |
ipmitool sensor thresh "FAN 1 RPM" lcr 500 | |
#remote | |
ipmitool -I lanplus -H xxx.xxx.xxx.xxx -U xxxx -P xxxxx sensor | |
ipmitool -I lanplus -H xxx.xxx.xxx.xxx -U xxxx -P xxxxxsensor thresh "FAN 1 RPM" lcr 500 | |
#set fanspeed @ 2000rpm | |
ipmitool raw 0x30 0x30 0x01 0x00 | |
ipmitool raw 0x30 0x30 0x02 0xff 0x22 | |
#delete log | |
ipmitool sel clear | |
#sdr | |
ipmitool sdr get "FAN 1 RPM" | |
ipmitool sdr get "FAN 2 RPM" | |
ipmitool sdr get "FAN 3 RPM" | |
ipmitool sensor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment