iLO 2 Scripting and Command Line Guide
MOD_BLADE_RACK runtime errors
The possible MOD_BLADE_RACK error messages include:
• Rack information is open for read-only access. Write access is
required for this operation.
• Rack Name too long.
• Enclosure Name too long.
• Bay Name too long.
• User does not have correct privilege for action. CONFIG_ILO_PRIV
required.
SERVER_INFO
The SERVER_INFO command can only appear within a LOGIN command block. Only commands
that are SERVER_INFO type commands are valid inside the SERVER_INFO command block.
SERVER_INFO requires the MODE parameter with a value of read or write. MODE is a specific
string parameter with a maximum length of 10 characters that specifies what you intend to do with
the information.
Write mode enables both reading and writing of iLO 2 information. Read mode prevents
modification of the iLO 2 information.
Example:
<SERVER_INFO MODE="read">
……… SERVER_INFO commands ………
</SERVER_INFO>
Reset server example:
<RIBCL VERSION="2.0">
<LOGIN USER_LOGIN="adminname" PASSWORD="password">
<SERVER_INFO MODE="write">
<RESET_SERVER/>
</SERVER_INFO>
</LOGIN>
</RIBCL>
Set host power example:
<RIBCL VERSION="2.0">
<LOGIN USER_LOGIN="adminname" PASSWORD="password">
<SERVER_INFO MODE="write">
<!-- Modify the HOST_POWER attribute to toggle power on the host server -->
<!-- HOST_POWER="No" (Turns host server power off) -->
<!-- A graceful shutdown will be attempted for ACPI-aware -->
<!-- operating systems configured to support graceful shutdown. -->
<!-- HOST_POWER="Yes" (Turns host server power on) -->
<SET_HOST_POWER HOST_POWER="No"/>
</SERVER_INFO>
</LOGIN>
</RIBCL>
SERVER_INFO 131










