Added postscript confighfi to configure HFI interfaces
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8785 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
parent
7ee475037c
commit
0ce8e7cc6d
21
xCAT/postscripts/confighfi
Normal file
21
xCAT/postscripts/confighfi
Normal file
@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
for ((i=0;i<4;i++))
|
||||
do
|
||||
CLIENT_IP=`ping -c 3 $NODE-hf$i | grep "data" | sed 's/.* (\([0-9.]*\)).*/\1/' ||
|
||||
uniq 2>&1`
|
||||
|
||||
if [ -n $CLIENT_IP ]
|
||||
then
|
||||
echo "DEVICE=hf$i
|
||||
NM_CONTROLLED=yes
|
||||
IPADDR=$CLIENT_IP
|
||||
NETMASK=255.0.0.0
|
||||
ONBOOT=yes
|
||||
" >/etc/sysconfig/network-scripts/ifcfg-hf$i
|
||||
|
||||
ifup hf$i
|
||||
|
||||
sleep 1
|
||||
fi
|
||||
done
|
Loading…
Reference in New Issue
Block a user