Supermicro Update Manager (SUM)工具使用

1. 介绍

Supermicro Update Manager (SUM) 是 Supermicro 提供的一款服务器管理工具,主要用于管理和配置 Supermicro X10 及以后代主板的 BIOS/BMC 固件和设置。

 

2.远程管理

1)获取Product key IPMI LICENSE值

参考:https://blog.csdn.net/a478555/article/details/89449134

使用:

echo -n '0c:c4:7a:dd:3e:68' | xxd -r -p | openssl dgst -sha1 -mac HMAC -macopt hexkey:8544E3B47ECA58F9583043F8 | awk '{print $2}' | cut -c 1-24| awk '{print toupper($0)}' |sed 's/\(....\)/\1-/g; s/-$//'

2)使用

./sum -i <ip> -u <BMC user> -p <BMC password> -c ActivateProductKey --key <Product key>

例子:

./sum -i 192.168.206.250 -u ADMIN -p ADMIN -c ActivateProductKey --key 44C5-0982-AC76-8C8B-3AC7-3F30

 

3.biso修改(如线程,虚拟化等)

1)获取当前的biso配置

./sum -i <ip> -u <BMC user> -p <BMC password> -c GetCurrentBiosCfg --file <file name> --overwrite

例子:

./sum -i 192.168.206.250 -u ADMIN -p ADMIN -c GetCurrentBiosCfg --file biso.file --overwrite

2)修改biso配置(修改文件biso.file里面的东西)

./sum -i <ip> -u <BMC user> -p <BMC password> -c ChangeBiosCfg --file <file name> --reboot

例子:

./sum -i 192.168.206.240 -u ADMIN -p ADMIN -c ChangeBiosCfg --file biso.file --reboot

 

4.其他参考官方文档(工具下载)
https://www.supermicro.org.cn/zh_cn/solutions/management-software/supermicro-update-manager

 

 

 

5.其他工具(ipmitool)

1)使用 ipmitool的 lan 命令设置临时的 IP 配置

修改BMC的ip地址(这些命令将 BMC 的 LAN 接口设置为静态 IP 地址)

ipmitool lan set 1 ipsrc static
ipmitool lan set 1 ipaddr 192.168.1.100
ipmitool lan set 1 netmask 255.255.255.0
ipmitool lan set 1 defgw ipaddr none

保存更改并激活新的配置:

ipmitool lan save 1

ipmitool mc reset cold

检查

ipmitool lan print 1

 

2)查看用户列表

ipmitool user list 1

 

posted @ 2024-12-22 21:35  铿锵有力自信且坚定  阅读(370)  评论(0)    收藏  举报