HP 服务器上的 ILO 端口配置

hd0*_*d01 9 hp ilo hp-proliant

我有一台带有 ILO 端口的 HP 服务器。我如何配置它以从远程位置使用?服务器操作系统是 debian-squeez。

eww*_*ite 10

您可以使用 HP Online Configuration (hponcfg) 实用程序从正在运行的操作系统配置 ILO。

按照此处的详细说明下载适用于您的操作系统的 HP 软件包。您也可以借此机会为您的服务器安装所有代理。

但是,您需要的主要包是hponcfg实用程序。

apt-get install hponcfg
Run Code Online (Sandbox Code Playgroud)

下面是命令用法的说明。

# hponcfg -h

Firmware Revision = 1.94 Device type = iLO Driver name = hpilo
HPONCFG RILOE II/iLO setup and configuration utility
Version 3.1.0 (c) Hewlett-Packard Company, 2010


-h,  --help           Display this message
-?                    Display this message
-r,  --reset          Reset the RILOE II/iLO to factory default
-f,  --file           Get/Set RILOE II/iLO configuration from "filename" 
-i,  --input          Get/Set RILOE II/iLO configuration from the XML input
                      received through the standard input stream.
-w,  --writeconfig    Write the RILOE II/iLO configuration to "filename" 
-a,  --all            Capture complete iLO configuration to the file.
                      This should be used along with '-w' option
-l,  --log            Log replies to "filename" 
-v,  --xmlverbose     Display all the responses from RILOE II/iLO
-s,  --substitute     Substitute variables present in input config file
                      with values specified in "namevaluepairs" 
-g,  --get_hostinfo   Get the Host information
-m,  --minfwlevel     Minimum firmware level
Run Code Online (Sandbox Code Playgroud)

使用此工具,您将能够提供一个 XML 文件作为输入,其中包含 ILO 的一些基本参数,例如用户名、密码、IP 配置等。

在这种情况下,使用 获取 ILO 的当前配置可能更容易hponcfg -w ILO.xml,修改文件以包含您希望的 IP 和配置,然后使用hponcfg -f ILO.xml.


当然,如果您有远程手或可以物理访问服务器的人,则此手动过程也适用。


Dan*_*Dan 1

如果您使用 HP SmartStart 进行安装,则可能已将“HP Lights-Out Online Configuration Utility”安装到以下位置:

[程序文件]\HP\hponcfg\hponcfg_gui.exe

如果没有,那么您可以从这里下载:

http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareIndex.jsp?lang=en&cc=us&prodNameId=1135772&prodTypeId=18964&prodSeriesId=1146658&swLang=8&taskId=135&swEnvOID=1005

  • 我编辑了我的问题以提及操作系统类型。不管怎样,谢谢你。 (2认同)