通过脚本更改Supermicro系统上的BIOS设置


11

我发现Dell&HP具有可以远程或通过脚本/文件更改BIOS设置的程序。

有谁知道如何在Supermicro系统上完成此操作,还是有一个不依赖于供应商的系统?我浏览了Supermicro网站,却没有找到任何东西。谢谢。

Answers:


5

有两种选择。您可以在BIOS中设置远程访问,然后通过IPMI使用SOL控制台。您可以使用Expect脚本以这种方式修改设置。另一个是,某些选项可直接通过IPMI使用,因此您可以使用计算机本身上的IPMI接口来更改某些设置(查找ipmitool / OpenIPMI)。

有关SOL / IPMI的一些信息:

http://www.supermicro.com/products/accessories/addon/SIM.cfm

http://wiki.adamsweet.org/doku.php?id=ipmi_on_linux

SOL Expect脚本示例:

http://buttersideup.com/docs/howto/IPMI_on_Debian_files/solsession


这次真是万分感谢!我没有看到SOL / IPMI信息。我会尝试的!再次感谢!
ChriSxStyles

3

Supermicro使用AMI Aptio BIOS。

AMI提供了SCE实用程序(Linux的scelnx)来通过脚本更改BIOS设置。首先,您需要转储当前的BIOS设置以了解设置UUID:

scelnx /b /o /s /root/settings.lst

您可以直接在文件中更改所需的值(通过将*符号移动 到所需的值),然后通过下一个命令加载文件:

scelnx /b /i /s /root/settings.lst

或者,您可以仅使用必要的行来创建自己的文件(前三行包括空白行是必需的):

cat > /root/settings.lst << 'EOF'
// Script File
HIICrc32=

// Enable the Rank Margining Tool
Setup Question  = Rank Margin Tool
Token =B4A  // Do NOT change this line
Offset  =1127 
Width =01 
BIOS Default  =[02]Auto
Options =[02]Auto // Move "*" to the desired Option
         [00]Disabled
         *[01]Enabled

// Adjust the MRC Serial Debug Message level
Setup Question  = Serial Debug Message Level
Token =1C // Do NOT change this line
Offset  =2D4
Width =01 
BIOS Default  =[00]Disable
Options =[00]Disable // Move "*" to the desired Option
         [01]Minimum
         [02]Normal
         *[03]Maximum

// Confirm the Pattern Length value
Setup Question  = RMT Pattern Length
Token =B4B  // Do NOT change this line
Offset  =10ED
Width =04 
BIOS Default  =7FFF
Value =7FFF

// Turn on/off Per Bit Margin option
Setup Question  = Per Bit Margin
Token =B4D  // Do NOT change this line
Offset  =113A
Width =01 
BIOS Default  =[02]Auto
Options =[02]Auto // Move "*" to the desired Option
         [00]Disable
         *[01]Enable
EOF

对于其他平台,您可以在英特尔文档中找到配置实用程序的列表。#333845-003:https//www.intel.ru/content/dam/www/public/us/en/videos/guides/platform-trust-enabler-product-guide.pdf(第12页,4.0 OEM支持)矩阵)

现代平台也可以使用x-UEFI脚本配置:https : //firmware.intel.com/sites/default/files/STTS001%20-%20SZ16_STTS001_102m_ENGf.pdf http://www.uefi.org/confignamespace

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.