Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
linux:ilo [2015/11/11 09:25]
vondra [Setup LO100]
linux:ilo [2015/11/11 09:35]
vondra [Setup network]
Line 24: Line 24:
 LO100 is poor man's iLo that can be found in HP DL1xx - it is derived from IBM BCM LO100 is poor man's iLo that can be found in HP DL1xx - it is derived from IBM BCM
  
-following commands should work on all machines equipped either with LO100 or iLO 3 or higher+following commands should work on all machines equipped either with LO100 or iLO 3 and higher ​(maybe other management consoles - e.g. Dell, IBM, Sun)
 ==== Install ipmitool ==== ==== Install ipmitool ====
 the ipmitool utility allows you to change iLo settings without rebooting the server the ipmitool utility allows you to change iLo settings without rebooting the server
Line 49: Line 49:
 </​code>​ </​code>​
  
 +==== Setup network ====
 +  - find out the lan channel<​code bash>
 +for i in `seq 1 14`; do ipmitool lan print $i 2>/​dev/​null | grep -q ^Set && echo Channel $i; done</​code>​let the output be <code bash>​Channel 2</​code>​
 +  - show network configuration<​code bash>
 +ipmitool lan print 2</​code>​
 +  - setup static ip adress<​code>​
 +ipmitool lan set 2 ipsrc static
 +ipmitool lan set 2 ipaddr 10.0.255.x
 +ipmitool lan set 2 netmask 255.255.255.0
 +ipmitool lan set 2 defgw ipaddr 10.0.255.1</​code>​
 +  - do a cold reset<​code bash>
 +ipmitool mc reset cold</​code>​
 
linux/ilo.txt · Last modified: 2015/11/11 09:40 by vondra