1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#!/bin/bash
# RESTful Interface Tool Sample Script for HPE iLO Products #
# Copyright 2014, 2020 Hewlett Packard Enterprise Development LP #
# Description: This is a sample bash script to set the power #
# alert threshold for Integrated Lights-Out(iLO). #
# The Trigger TYPE are: #
# "Disabled" #
# "PeakPowerConsumption" : Represents the 1/2-seconds #
# average power reading during the sample #
# "AveragePowerConsumption" : Represents the mean power #
# reading during the sample #
# NOTE: You will need to replace the USER_LOGIN and PASSWORD #
# and other values inside the quotation marks with values #
# that are appropriate for your environment. #
# Firmware support information for this script: #
# iLO 5 - All versions #
runLocal(){
ilorest select Power. -u USER_LOGIN -p PASSWORD
ilorest set Oem/Hpe/SNMPPowerThresholdAlert/Trigger=PeakPowerConsumption
ilorest set Oem/Hpe/SNMPPowerThresholdAlert/ThresholdWatts=200
ilorest set Oem/Hpe/SNMPPowerThresholdAlert/DurationInMin=35
ilorest commit
ilorest logout
}
runRemote(){
ilorest select Power. --url=$1 --user $2 --password $3
ilorest set Oem/Hpe/SNMPPowerThresholdAlert/Trigger=PeakPowerConsumption
ilorest set Oem/Hpe/SNMPPowerThresholdAlert/ThresholdWatts=200
ilorest set Oem/Hpe/SNMPPowerThresholdAlert/DurationInMin=35
ilorest commit
ilorest logout
}
error(){
echo "Usage:"
echo "remote: Set_Pwreg_Alert_Threshold.sh ^<iLO url^> ^<iLO username^> ^<iLO password^>"
echo "local: Set_Pwreg_Alert_Threshold.sh"
}
if [ "$#" -eq "3" ]
then
runRemote "$1" "$2" "$3"
elif [ "$#" -eq "0" ]
then
runLocal
else
error
fi
|