HP iLO 3 Scripting and Command Line Guide

GET_ALL_USER_INFO runtime errors
The possible GET_ALL_USER_INFO error messages include:
User does not have correct privilege for action. ADMIN_PRIV required.
GET_ALL_USER_INFO return messages
A possible GET_ALL_USER_INFO return message is:
<GET_ALL_USER_INFO/>
<GET_USER
USER_NAME="Admin"
USER_LOGIN="Admin"
ADMIN_PRIV="Y"
CONFIG_RILO_PRIV="Y"
LOGIN_PRIV="Y"
REMOTE_CONS_PRIV="Y"
RESET_SERVER_PRIV="Y"
VIRTUAL_MEDIA_PRIV="Y"
/> ......
The same information will be repeated for all the users.
</GET_ALL_USER_INFO>
A possible unsuccessful request is:
<RESPONSE STATUS="0x0023" MESSAGE='User does NOT have correct
privilege for action.
ADMIN_PRIV required.'/>
RIB_INFO
The RIB_INFO command can only appear within a LOGIN command block. When the command
is parsed, it reads the iLO configuration information database into memory and prepares to edit
it. Only commands that are RIB_INFO type commands are valid inside the RIB_INFO command
block. The RIB_INFO command generates a response that indicates to the host application whether
the database was successfully read or not. If the database is open for writing by another application,
then this call fails.
RIB_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 information. Read mode prevents modification
of the iLO information.
For example:
<RIB_INFO MODE="write">
……… RIB_INFO commands ……
</RIB_INFO>
Clear iLO event log example:
<RIBCL VERSION="2.0">
<LOGIN USER_LOGIN="adminname" PASSWORD="password">
<RIB_INFO MODE="write">
<CLEAR_EVENTLOG/>
</RIB_INFO>
</LOGIN>
</RIBCL>
RIB_INFO 71