1<!--         RIBCL Sample Script for HP Lights-Out Products          -->
2<!--Copyright (c) 2003,2010 Hewlett-Packard Development Company, L.P.-->
3
4<!-- Description:  This is a sample XML script to update the         -->
5<!--               firmware of following devices:                    -->
6<!--                 Integrated Lights-Out 3 (iLO 3)                 -->
7<!--                 Integrated Lights-Out 2 (iLO 2)                 -->
8<!--                 Integrated Lights-Out (iLO)                     -->
9<!--                 Remote Insight Lights-Out Edition II (RILOE II) -->
10
11<!-- NOTE:  You will need to replace the USER_LOGIN and PASSWORD     -->
12<!--        values with values that are appropriate for your         -->
13<!--        environment and you will need to change the value of the -->
14<!--        IMAGE_LOCATION to point to the new binary firmware image -->
15<!--        you wish to use for the firmware update.                 -->
16<!--        The Unit ID light flashes when the server is engaged in  -->
17
18<!--        an activity that can not or should not be interrupted    -->
19<!--        (such as updating iLO firmware or an active Remote       -->
20<!--        Console session).  The Unit ID light should flash while  -->
21<!--        this script is updating the firmware.                    -->
22<!--        The Lights-Out device will automatically reset itself to -->
23<!--        have the new firmware take effect at the end of the      -->
24<!--        firmware flash.                                          -->
25
26<!--        Use CPQLOCFG.EXE ver 2.26 or greater with this script.   -->
27
28<!--        This script was written for iLO 3 firmware version 1.00  -->
29<!--        release.                                                 -->
30
31<!--        See "HP Integrated Lights-Out Management Processor       -->
32<!--        Scripting and Command Line Resource Guide" for more      -->
33<!--        information on scripting and the syntax of the RIBCL     -->
34<!--        XML.                                                     -->
35
36<!--        Firmware support infomation for this script:             -->
37<!--            iLO 3 - All versions.                                -->
38<!--            iLO 2 - All versions.                                -->
39<!--              iLO - All versions.                                -->
40<!--         RILOE II - All versions.                                -->
41
42<RIBCL VERSION="2.0">
43  <LOGIN USER_LOGIN="adminname" PASSWORD="password">
44    <RIB_INFO MODE="write">
45      <!--    Firmware support information for next tag:             -->
46      <!--    iLO 3 - All versions. For servers with TPM enabled.    -->
47      <!--    iLO 2 - 1.70 and later. For servers with TPM enabled.  -->
48      <!--      iLO - None                                           -->
49      <!-- Riloe II - None                                           -->
50      <TPM_ENABLED VALUE="Yes"/>
51      <UPDATE_RIB_FIRMWARE IMAGE_LOCATION="C:\firmware.bin"/>
52    </RIB_INFO>
53  </LOGIN>
54</RIBCL>
55