3504d16098
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2264 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
73 lines
1.8 KiB
Plaintext
Executable File
73 lines
1.8 KiB
Plaintext
Executable File
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
#
|
|
# Raw commands to set BMCs to defaults
|
|
# dx320
|
|
# 0x2e 0x10 0x4d 0x4f 0x00 0xff
|
|
#
|
|
# dx340
|
|
# 0x30 0x13 0xff 0x00 0x00 0x00
|
|
#
|
|
# dx360/x3450
|
|
# 0x30 0x02 0x43 0x4c 0x52 0xaa
|
|
# 0x08 0x00 0x49 0x4e 0x54 0x45 0x4c
|
|
# 0x08 0x04
|
|
#
|
|
allowcred.awk &
|
|
CREDPID=$!
|
|
modprobe ipmi_si
|
|
modprobe ipmi_devintf
|
|
while ! getipmi
|
|
do
|
|
echo "Retrying retrieval of IPMI settings from server"
|
|
done
|
|
kill $CREDPID
|
|
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
|
|
|
|
allowcred.awk &
|
|
CREDPID=$!
|
|
frume.awk
|
|
kill $CREDPID
|
|
|
|
echo "Lighting Identify Light"
|
|
ipmitool raw 0 4 0xff
|
|
|