Skip to content

Instantly share code, notes, and snippets.

@dunklesToast
Last active May 14, 2022 13:29
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dunklesToast/34592ca4864d5fa9c8d2328028ecde6a to your computer and use it in GitHub Desktop.
Save dunklesToast/34592ca4864d5fa9c8d2328028ecde6a to your computer and use it in GitHub Desktop.
Dell R710 Scripts for changing fan speed

Dell PowerEdge R710 Fan Control

start the script like this:

./setTo2160.sh idrac ip idrac user - you will be prompted for the password!

./resetToNormal.sh idrac ip idrac user you will be prompted for the password!

check this for more info about the commands
https://github.com/NoLooseEnds/Scripts/tree/master/R710-IPMI-TEMP

requires ipmitool which can be installed via apt

#!/bin/bash
echo "Please enter iDrac Password for User "$2
read -s pass
echo "Resetting to normal fan control..."
ipmitool -I lanplus -H $1 -U $2 -P $pass raw 0x30 0x30 0x01 0x01
#!/bin/bash
echo "Please enter password for iDrac User "$2
read -s pass
echo "Enabling manual fan speed..."
ipmitool -I lanplus -H $1 -U $2 -P $pass raw 0x30 0x30 0x01 0x00
echo "Setting to 2160RPM"
ipmitool -I lanplus -H $1 -U $2 -P $pass raw 0x30 0x30 0x02 0xff 0x09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment