I had to create a bond1 on the machine I built once the build process was done. If you ever run into that situation, here is a quick script to make it easier. Look it over. It's crude, but works for now. I may put some string validation in later.
# insert module info into /etc/modprobe.conf if it is not already there if [ -f /etc/modprobe.conf ] then if ! grep ${BOND} /etc/modprobe.conf then echo "install ${BOND} /sbin/modprobe bonding -o ${BOND} miimon=100 mode=active-backup primary=${SL1}" >> /etc/modprobe.conf fi fi
exit 0
bydave, Thursday, 15 October 2009 12:06, Comments(0)