- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- NIC Bonding on Blade BL25
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2006 04:10 AM
08-01-2006 04:10 AM
NIC Bonding on Blade BL25
Bringing up interface bond0: /sbin/modprobe device bond0 does not seem to be present, delaying initialization.
The PSP has been installed and the nics are running BCM5700 drivers.
Here is the script I run to set up the bonding:
#!/bin/bash
cp /etc/modules.conf /etc/xx-modules.conf
echo "alias bond0 bonding" >> /etc/modules.conf
echo "options bond0 miimon=100 mode=4" >> /etc/modules.conf
cp /etc/modprobe.conf /etc/xx-modprobe.conf
echo "install bond0 /sbin/modprobe bonding -o bond0 miimon=100 mode=4" >> /etc/modprobe.conf
cd /etc/sysconfig/network-scripts
cp ifcfg-eth0 xx-ifcfg-eth0
echo "DEVICE=bond0" > ifcfg-bond0
echo "TYPE=ethernet" >> ifcfg-bond0
echo "BOOTPROTO=none" >> ifcfg-bond0
echo "ONBOOT=yes" >> ifcfg-bond0
echo "NETWORK=192.168.64.0" >> ifcfg-bond0
echo "IPADDR=192.168.64.230" >> ifcfg-bond0
echo "GATEWAY=192.168.64.1" >> ifcfg-bond0
echo "NETMASK=255.255.254.0" >> ifcfg-bond0
echo "USERCTL=no" >> ifcfg-bond0
echo "DEVICE=eth0" > ifcfg-eth0
echo "USERCTL=no" >> ifcfg-eth0
echo "ONBOOT=yes" >> ifcfg-eth0
echo "MASTER=bond0" >> ifcfg-eth0
echo "SLAVE=yes" >> ifcfg-eth0
echo "BOOTPROTO=none" >> ifcfg-eth0
echo "DEVICE=eth1" > ifcfg-eth1
echo "USERCTL=no" >> ifcfg-eth1
echo "ONBOOT=yes" >> ifcfg-eth1
echo "MASTER=bond0" >> ifcfg-eth1
echo "SLAVE=yes" >> ifcfg-eth1
echo "BOOTPROTO=none" >> ifcfg-eth1
echo "DEVICE=eth2" > ifcfg-eth2
echo "USERCTL=no" >> ifcfg-eth2
echo "ONBOOT=yes" >> ifcfg-eth2
echo "MASTER=bond0" >> ifcfg-eth2
echo "SLAVE=yes" >> ifcfg-eth2
echo "BOOTPROTO=none" >> ifcfg-eth2
echo "DEVICE=eth3" > ifcfg-eth3
echo "USERCTL=no" >> ifcfg-eth3
echo "ONBOOT=yes" >> ifcfg-eth3
echo "MASTER=bond0" >> ifcfg-eth3
echo "SLAVE=yes" >> ifcfg-eth3
echo "BOOTPROTO=none" >> ifcfg-eth3
service network restart
end
And here is an unbonding script I use when the bonding doesn't work...
#!/bin/bash
cd /etc/sysconfig/network-scripts
mv xx-ifcfg-eth0 ifcfg-eth0
rm -rf ifcfg-eth1
rm -rf ifcfg-eth2
rm -rf ifcfg-eth3
rm -rf ifcfg-bond0
cd /etc
mv xx-modules.conf modules.conf
mv xx-modprobe.conf modprobe.conf
service network restart
end
Thanks in advance for any help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2006 05:37 AM
08-01-2006 05:37 AM
Re: NIC Bonding on Blade BL25
Shalom,
Try the first bond attempt with an active-passive configuration.
Note the only NIC cards I've been able to bond active-active are Intel. Broadcom cards explode in such a configuration.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2006 06:23 AM
08-01-2006 06:23 AM
Re: NIC Bonding on Blade BL25
I have 8 blades in the enclosure. Two are BL25 and the rest are BL20. All of them came right up using the scripts I provided. The only one that is causing me grief is one of the two BL25's. Weird.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2006 07:08 AM
08-01-2006 07:08 AM
Re: NIC Bonding on Blade BL25
I also tried it with just two nics in the bonding team. Same result.
It seems like it's a modprobe issue. I'll have to do some more research.
Thanks again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2006 11:41 PM
08-01-2006 11:41 PM
Re: NIC Bonding on Blade BL25
cat /proc/net/bonding/bond0
or
cat /proc/net/bond0/info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2006 03:23 PM
08-13-2006 03:23 PM
Re: NIC Bonding on Blade BL25
You can hand debug the steps. do a modprobe -v to test the bonding module insert and then a bash -x /sbin/ifup.
I have found numeres typing errors this way
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2006 12:56 AM
09-28-2006 12:56 AM
Re: NIC Bonding on Blade BL25
alias eth0 bcm5700
alias eth1 bcm5700
alias eth2 bcm5700
alias eth3 bcm5700
alias scsi_hostadapter cciss
alias usb-controller ohci-hcd
alias net-pf-10 off
options bonding miimon=100 mode=1max_bonds=3
alias bond0 bonding
alias bond1 bonding