For appliances running on 3.5 code, the ipmitool can be found on the following path:
/tmp/vspexblue/bin/ipmitool
For appliances with code 3.0 and bellow, install the ipmitool which is provided as an attachment to this KB. The .zip file contains the tool and instructions on how to install it.
Set static for the BMC IP configuration:
ipmitool lan set 1 ipsrc static
***If 3.5 or later:
/tmp/vspexblue/bin/ipmitool lan set 1 ipsrc static
OR
If you have added the ipmi tool to the node:
/bin/ipmitool/ipmitool lan set 1 ipsrc static )
Set the IP, mask, and gateway for the BMC.
ipmitool lan set 1 ipaddr 192.168.10.101
ipmitool lan set 1 netmask 255.255.255.0
ipmitool lan set 1 defgw ipaddr 192.168.10.1
***If 3.5 or later precede each command with:
/tmp/vspexblue/bin/
OR
If you have added the ipmi tool to the node precede each command with:
/bin/ipmitool/ )
Change the root password to password (last argument is the password that you want to use)
ipmitool user set password 2 admin
***If 3.5 or later:
/tmp/vspexblue/bin/ipmitool user set password 2 admin
OR
If you have added the ipmi tool to the node:
/bin/ipmitool/ipmitool user set password 2 admin
Print the IP configuration for BMC.
ipmitool lan print 1
***If 3.5 or later:
/tmp/vspexblue/bin/ipmitool lan print 1
OR
If you have added the ipmi tool to the node:
/bin/ipmitool/ipmitool lan print 1
Print the user list for BMC.
ipmitool user list 1
***If 3.5 or later:
/tmp/vspexblue/bin/ipmitool user list 1
OR
If you have added the ipmi tool to the node:
/bin/ipmitool/ipmitool user list 1
It is also possible to setup VLAN on the BMC ports using ipmitool:
Set the VLAN for the BMC to use VLAN 100 (as an example)
ipmitool lan set 1 vlan id 100
***If 3.5 or later:
/tmp/vspexblue/bin/ipmitool lan set 1 vlan id 100
OR
If you have added the ipmi tool to the node:
/bin/ipmitool/ipmitool lan set 1 vlan id 100
Disable the VLAN for the BMC.
ipmitool lan set 1 vlan id off
***If 3.5 or later:
/tmp/vspexblue/bin/ipmitool lan set 1 vlan id off
OR
If you have added the ipmi tool to the node:
/bin/ipmitool/ipmitool lan set 1 vlan id off