Configuration

HP 伺服器的無人值守 BIOS 配置 (DL160SE G6)

  • April 1, 2011

我們正在部署大量伺服器 (DL160SE G6),我需要找到一種方法來配置它們的 BIOS 設置,而無需通過每個伺服器的 RBSU - 這將花費太長時間。

我正在考慮在可啟動 CD 或類似的東西上製作一些東西 - 如果可能的話……

我一直在環顧四周,據我了解,使用 SmartStart Scripting Toolkit 可以做到這一點。

我閱讀了它附帶的 PDF,我看到了諸如 RBSURESET 之類的工具,它可以重置 BIOS 設置和 SETBOOTORDER,它使您能夠設置設備啟動的順序。但我沒有看到任何工具來更改其他設置BIOS,例如“高級 BIOS 設置”中的設置

如果有人能告訴我如何去做、從哪裡開始、最佳實踐或任何教程的連結,我將不勝感激。

您應該能夠使用conrepSmartStart Scripting Toolkit 中提供的 HP 實用程序來完成此操作。如果您正在查看高級 BIOS 設置,您是否嘗試更改系統的低延遲選項集?這是 HP 白皮書的連結,詳細介紹了特定低延遲應用程序的設置。涵蓋了一些高級 BIOS 選項:

http://h10032.www1.hp.com/ctg/Manual/c01804533.pdf

conrep 的想法是您可以手動配置單個系統,然後將其設置擷取到可用於其他系統部署的文件中。語法範例:

To configure BIOS low-latency options using the conrep utility in SSSTK: 
1.  Change the current directory to the SSSTK/utilities directory:
cd SSSTK/utilities
2.  To disable Processor Power and Utilization Monitoring, verify that the conrep.dat file contains the
following markup:
<Conrep> <PowerMonitoring>0x10</PowerMonitoring> </Conrep>
3.  To disable Memory Pre-Failure Notification, verify that the conrep.dat file contains the following markup:
<Conrep> <DisableMemoryPrefailureNotification>1</DisableMemoryPrefailureNotificat ion> </Conrep>
4.  Enter the following commands: ./conrep -l -fconrep.dat reboot

引用自:https://serverfault.com/questions/254350