The confighfi script used for P775 included in xcat 2.7.5 and previous releases has some lines out of order this causes the bonded hfi network not to work. In the confighfi script the
current config is:
bond-mld > m.out 2>&1 &
ip link set dev bond0 mtu 65536
ifdown bond0
ifup bond0
The correct config is:
ip link set dev bond0 mtu 65536
ifdown bond0
ifup bond0
bond-mld > m.out 2>&1 &
also a sleep must be added to the script within the following lines of code:
x=0
while [ $x -le $i ]; do
ip link set dev hf${x} down
sleep 2
echo +hf${x} > /sys/class/net/bond0/bonding/slaves
x=$((x+1))
done
Hua zhong,
Can you look at this P775 HFI xCAT bug ..
Since xCAT 2.7.6 is releasing. I have moved thi xCAT bug over to xCAT 2.7.7 for tracking purposes.
Fixed with revision 16677, 16678, 16681