Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save corgan2222/f60c3752b9ce1ffd6c5e76e1d0717542 to your computer and use it in GitHub Desktop.
Save corgan2222/f60c3752b9ce1ffd6c5e76e1d0717542 to your computer and use it in GitHub Desktop.
IPMI commands for Dell PowerEdge R210 II running pfsense freeBSD
#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