f124883d39
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1468 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
52 lines
1.5 KiB
Plaintext
Executable File
52 lines
1.5 KiB
Plaintext
Executable File
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
modprobe ipmi_si
|
|
modprobe ipmi_devintf
|
|
while ! getipmi
|
|
do
|
|
echo "Retrying retrieval of IPMI settings from server"
|
|
done
|
|
BMCIP=`grep bmcip /tmp/ipmi.data |awk -F\> '{print $2}'|awk -F\< '{print $1}'`
|
|
BMCGW=`grep gateway /tmp/ipmi.data |awk -F\> '{print $2}'|awk -F\< '{print $1}'`
|
|
BMCNM=`grep netmask /tmp/ipmi.data |awk -F\> '{print $2}'|awk -F\< '{print $1}'`
|
|
BMCUS=`grep username /tmp/ipmi.data |awk -F\> '{print $2}'|awk -F\< '{print $1}'`
|
|
BMCPW=`grep password /tmp/ipmi.data |awk -F\> '{print $2}'|awk -F\< '{print $1}'`
|
|
ipmitool lan set 1 ipsrc static
|
|
ipmitool lan set 1 ipaddr $BMCIP
|
|
ipmitool lan set 1 netmask $BMCNM
|
|
if [ ! -z "$BMCGW" ]; then
|
|
ipmitool lan set 1 defgw ipaddr $BMCGW
|
|
fi
|
|
ipmitool user disable 1
|
|
ipmitool user disable 3
|
|
ipmitool user disable 4
|
|
ipmitool user enable 2
|
|
ipmitool user priv 2 4 1
|
|
ipmitool user set name 2 $BMCUS
|
|
ipmitool user set password 2 $BMCPW
|
|
echo "Set up following user table: "
|
|
ipmitool user list 1
|
|
|
|
|
|
echo "Enabling Channel 1: "
|
|
ipmitool raw 0x6 0x40 0x1 0x42 0x44
|
|
ipmitool raw 0x6 0x40 0x1 0x82 0x84
|
|
|
|
echo "Enabling ARP responses: "
|
|
ipmitool lan set 1 arp respond on
|
|
|
|
echo "Enabling IPMI v 1.5 MD5 LAN access:"
|
|
ipmitool lan set 1 auth admin md5
|
|
|
|
echo "Enabling IPMI v 2.0 LAN access:"
|
|
ipmitool lan set 1 cipher_privs uaaaXXXXXXXXXXX
|
|
|
|
echo "Enabling SOL for channel 1"
|
|
ipmitool raw 0xc 0x21 0x1 0x1 0x1
|
|
|
|
echo "Enabling SOL for user 2"
|
|
ipmitool raw 6 0x4c 1 2 2 0 0 0
|
|
|
|
echo "Lighting Identify Light"
|
|
ipmitool raw 0 4 0xff
|
|
|