2024-03-21 23:37:29 +00:00
|
|
|
import argparse
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
# Server IPMI details
|
|
|
|
IPMIHOST = "192.168.1.223"
|
|
|
|
IPMIUSER = "root"
|
2024-03-22 01:04:58 +00:00
|
|
|
IPMIPASS = "<password>"
|
2024-03-21 23:37:29 +00:00
|
|
|
|
|
|
|
def execute_ipmi_command(command):
|
2024-03-22 00:50:07 +00:00
|
|
|
full_command = f"ipmitool -I lanplus -H {IPMIHOST} -U {IPMIUSER} -P \"{IPMIPASS}\" {command}"
|
2024-03-22 01:04:58 +00:00
|
|
|
result = subprocess.run(full_command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
print(result.stdout.decode().strip())
|
2024-03-22 00:29:57 +00:00
|
|
|
if result.stderr:
|
2024-03-22 01:04:58 +00:00
|
|
|
print(result.stderr.decode().strip())
|
2024-03-21 23:37:29 +00:00
|
|
|
|
|
|
|
def power_on():
|
|
|
|
print("Powering on the server...")
|
|
|
|
execute_ipmi_command("chassis power on")
|
|
|
|
|
2024-03-22 00:50:07 +00:00
|
|
|
def power_off():
|
|
|
|
print("Powering off the server...")
|
|
|
|
execute_ipmi_command("chassis power off")
|
|
|
|
|
2024-03-21 23:37:29 +00:00
|
|
|
def set_fan_speed(speed):
|
|
|
|
print(f"Setting fan speed to {speed}%...")
|
2024-03-22 01:04:58 +00:00
|
|
|
fan_speed_value = int((speed * 255) / 100)
|
2024-03-21 23:37:29 +00:00
|
|
|
execute_ipmi_command(f"raw 0x30 0x30 0x02 0xff {hex(fan_speed_value)}")
|
|
|
|
|
2024-03-22 00:50:07 +00:00
|
|
|
def enable_dynamic_fan_control():
|
|
|
|
print("Enabling dynamic fan control...")
|
|
|
|
execute_ipmi_command("raw 0x30 0x30 0x01 0x01")
|
|
|
|
|
|
|
|
def disable_dynamic_fan_control():
|
|
|
|
print("Disabling dynamic fan control...")
|
|
|
|
execute_ipmi_command("raw 0x30 0x30 0x01 0x00")
|
2024-03-21 23:37:29 +00:00
|
|
|
|
|
|
|
# Argument Parsing
|
|
|
|
parser = argparse.ArgumentParser(description='Server Management Script')
|
|
|
|
parser.add_argument('-p', '--power', choices=['on', 'off'], help='Power on or off the server')
|
2024-03-22 01:04:58 +00:00
|
|
|
parser.add_argument('-f', '--fan', type=int, choices=range(0, 101), metavar="[0-100]", help='Set fan speed percentage')
|
2024-03-22 00:50:07 +00:00
|
|
|
parser.add_argument('-d', '--dynamic', choices=['on', 'off'], help='Toggle dynamic fan control')
|
2024-03-21 23:37:29 +00:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2024-03-22 01:04:58 +00:00
|
|
|
# Check for no action
|
|
|
|
if not any([args.power, args.fan, args.dynamic]):
|
|
|
|
parser.print_help()
|
|
|
|
exit()
|
|
|
|
|
2024-03-21 23:37:29 +00:00
|
|
|
# Execute based on arguments
|
|
|
|
if args.power == 'on':
|
|
|
|
power_on()
|
|
|
|
elif args.power == 'off':
|
2024-03-22 00:50:07 +00:00
|
|
|
power_off()
|
2024-03-22 01:04:58 +00:00
|
|
|
|
2024-03-21 23:37:29 +00:00
|
|
|
if args.fan is not None:
|
|
|
|
set_fan_speed(args.fan)
|
2024-03-22 01:04:58 +00:00
|
|
|
|
2024-03-22 00:50:07 +00:00
|
|
|
if args.dynamic == 'on':
|
|
|
|
enable_dynamic_fan_control()
|
|
|
|
elif args.dynamic == 'off':
|
|
|
|
disable_dynamic_fan_control()
|
|
|
|
|
|
|
|
if not (args.power or args.fan or args.dynamic):
|
|
|
|
parser.print_help()
|
|
|
|
else:
|
|
|
|
if args.power == 'on':
|
|
|
|
power_on()
|
|
|
|
elif args.power == 'off':
|
|
|
|
# Here, you can add a function to power off if desired
|
|
|
|
pass
|
|
|
|
if args.fan is not None:
|
2024-03-22 01:05:43 +00:00
|
|
|
set_fan_speed(args.fan)
|