BMC » History » Version 6
Felix Barbeira, 07/12/2013 07:39 AM
Blank space removed.
1 | 1 | Sachar de Vries | h1. BMC |
---|---|---|---|
2 | |||
3 | h2. HP iLO 3 and higher support |
||
4 | |||
5 | To use foreman BMC support with ilo 3 and higher, the following iLO settings are required |
||
6 | * an ilo user with administrator rights. Just giving the user "Virtual Power and Reset" rights does not seem to be enough |
||
7 | * enable IPMI |
||
8 | 2 | Sachar de Vries | - Administration -> Access Settings -> Enable IPMI/DCMI over LAN on Port 623 |
9 | 1 | Sachar de Vries | |
10 | after this you can verify access by running ipmitool: |
||
11 | <pre> |
||
12 | ipmitool power status -H <iLO ip-address> -U <user> -I lanplus |
||
13 | Password: |
||
14 | Chassis Power is on |
||
15 | </pre> |
||
16 | 3 | Romain Vrignaud | |
17 | h2. Dell DRAC |
||
18 | |||
19 | To configure ipmi from commandline : |
||
20 | |||
21 | <pre> |
||
22 | # ipmitool lan set 1 ipaddr your_ip |
||
23 | # ipmitool lan set 1 netmask your_netmask |
||
24 | # ipmitool lan set 1 defgw ipaddr your_default_gw |
||
25 | # ipmitool lan set 1 access on |
||
26 | 4 | Romain Vrignaud | |
27 | # ipmitool user set name 3 foreman |
||
28 | # ipmitool user set password 3 your_password |
||
29 | 6 | Felix Barbeira | # ipmitool channel setaccess 1 3 callin=on ipmi=on link=on privilege=4 |
30 | 5 | Felix Barbeira | # ipmitool user enable 3 |
31 | 4 | Romain Vrignaud | |
32 | 3 | Romain Vrignaud | </pre> |