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 configure the      -->
5<!--               Enclosure Bay Static IP in an rack enclosure.     -->
6<!--					                             -->
7<!-- NOTE:  You will need to replace the USER_LOGIN and PASSWORD     -->
8<!--        and other values inside the quotation marks with values  -->
9<!--        that are appropriate for your environment.               -->
10
11<!--        The server must be located in slot one of the encloser   -->
12<!--        for this script to be successful.                        -->
13
14<!--        Double check your values before executing this script.   -->
15<!--        Incorrect or mismatched network settings may cause you   -->
16<!--        to lose the ability to connect to your iLO or iLO 2      -->
17<!--        device.                                                  -->
18
19<!--        Use CPQLOCFG.EXE ver 2.26 or greater with this script.   -->
20
21<!--        This script was written for iLO 3 firmware version 1.00  -->
22<!--        release.                                                 -->
23
24<!--        See "HP Integrated Lights-Out Management Processor       -->
25<!--        Scripting and Command Line Resource Guide" for more      -->
26<!--        information on scripting and the syntax of the RIBCL     -->
27<!--        XML.                                                     -->
28
29<!--        Firmware support infomation for this script:             -->
30<!--            iLO 3 - All versions.                                -->
31<!--            iLO 2 - All versions.                                -->
32<!--              iLO - Version 1.55 or later.                       -->
33<!--         RILOE II - None.                                        -->
34
35<RIBCL VERSION="2.0">
36  <LOGIN USER_LOGIN="adminname" PASSWORD="password">
37    <RACK_INFO MODE="write">
38      <MOD_ENCLOSURE_IP_SETTINGS>
39        <BAY_ENABLE MASK="0xFFFF"/>
40        <IP_ADDRESS VALUE="16.100.222.111"/>
41        <SUBNET_MASK VALUE="255.255.252.0"/>
42        <GATEWAY_IP_ADDRESS VALUE="16.100.222.1"/>
43        <DOMAIN_NAME VALUE="sum.won.here.now"/>
44        <PRIM_DNS_SERVER VALUE="16.11.1.111"/>
45        <SEC_DNS_SERVER VALUE=""/>
46        <TER_DNS_SERVER VALUE=""/>
47        <PRIM_WINS_SERVER VALUE="16.22.2.222"/>
48        <SEC_WINS_SERVER VALUE=""/>
49        <STATIC_ROUTE_1 DEST="16.33.3.33" GATEWAY="16.100.11.11"/>
50        <STATIC_ROUTE_2 DEST="" GATEWAY=""/>
51        <STATIC_ROUTE_3 DEST="" GATEWAY=""/>
52      </MOD_ENCLOSURE_IP_SETTINGS>
53    </RACK_INFO>
54  </LOGIN>
55</RIBCL>
56