Linux Sysadmin Blog

HP ILO Remote Managment Online Configuration PART 1

- | Comments

Many mainstream oem server iron manufacturers (dell, supermicro, sun, ibm) offer remote management options. HP’s variant is called iLO or Integrated Lights Out and is standard on 3oo/500/Blade line of servers. Newer generation (G5 and up) servers come with iLO 2 which offers hardware video acceleration and network encryption.  Normally iLO is setup before booting the server as ip address/user assignments need to accommodated. This can be done remotely as well with minimal pain. This guide assumes the server is HP dl360 G5 running rhel5 /centos 5 64 and you have root access to the server.  This guide would apply to other HP servers that support iLO / iLO2.

  1. Download and install latest (8.2.0-236) iLO kernel module.
1
2
rpm -ivh hp-ilo-8.2.0-236.rhel5.x86_64.rpm
service hp-ilo start

check that the module loaded properly

1
2
3
[root@server ~]$ lsmod
Module                  Size  Used by
hpilo                  43280  0
  1. Download and install latest (1.70 B) iLO firmware.
1
[root@server ~]$ sh CP010302.scexe
1
2
3
4
FLASH_iLO2 v1.10 for Linux (Jan 12 2009)
Copyright 2009 Hewlett-Packard Development Company, L.P.
Firmware image: ilo2_170.bin
Current iLO 2 firmware version  1.29; Serial number ILOUSM1234567
1
2
3
4
5
6
7
8
9
10
11
12
Component XML file: CP010302.xml
CP010302.xml reports firmware version 1.70
This operation will update the firmware on the
iLO 2 in this server with version 1.70.
Continue (y/N)?y
Current firmware is 1.29 (Feb 28 2007 17:09:41)
Firmware image is 0x270000 bytes
Committing to flash part...
******** DO NOT INTERRUPT! ********
Flashing completed!
Attempting to reset device.
Succeeded.
  1. Download and install latest (8.2.0-285) hp-OpenIPMI device driver.
1
rpm -ivh 8.2.0-285.rhel5.x86_64.rpm
  1. Download and install latest (1.9.0-3) HP Lights-Out Online Configuration utility.
1
rpm -ivh hponcfg-1.9.0-3.noarch.rpm
  1. Optional Download latest (2.10) SmartStart Scripting Toolkit to your pc.

The hponcfg utility allows configuration of iLO embedded server. All configuration is passed to iLO in XML format. Refer to SmartStart Scripting Toolkit for command reference.

In part 2 a sample configuration file will be prepared to provide access to iLO from outside even if the management port is not connected to the network.

Comments