Previous Topic

Next Topic

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 3 information. Read mode prevents modification of the iLO 3 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>