- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Bonding on linux.....again!
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
07-08-2004 09:16 PM
07-08-2004 09:16 PM
Bonding on linux.....again!
I have set all the configuration files as stated in bonding.txt, but when I run network restart I get the error 'bonding device bond0 does not exist'
Any ideas?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2004 09:35 PM
07-08-2004 09:35 PM
Re: Bonding on linux.....again!
Review the link below and let me know if that helps
http://www.icare.hp.com.cn/TechCenter_StaticArticle/17853/18309.txt
regards
Mobeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2004 09:55 PM
07-08-2004 09:55 PM
Re: Bonding on linux.....again!
I have followed the instructions fully? From reading pther posts it seems there might be a conflict between the kernal and the driver. Is there a way to delete the hp driver and rely on the bonding that red hat provides? If so, how?
Thanks for your help
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 12:23 PM
07-11-2004 12:23 PM
Re: Bonding on linux.....again!
It seems that the bonding driver is not automatically loaded (modprobe, insmod), therefore the network start script fails on bond0 device.
Check your syslog file to see what happens during bonding driver loading step.
Another tip : make sure that you use HP bonding driver with HP bcm5700 driver.
You can also try Red Hat's "tg3" driver with Red Hat bonding driver.
However, you cannot mix.
Last thing : after making changes in /etc/modules.conf, type "depmod -a".
Good luck,
Kodjo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2004 01:24 PM
07-11-2004 01:24 PM
Re: Bonding on linux.....again!
i.e.
pre-install eth0 modprobe bond
? or alias eth0 as the bonding driver which pre-install's bcm5700..
just some thoughts.. never actually used it myself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2004 04:24 AM
07-12-2004 04:24 AM
Re: Bonding on linux.....again!
This first file is the bond0 file in /etc/sysconfig/network-scripts.
# Broadcom Corporation|NetXtreme BCM5703 Gigabit Ethernet
DEVICE=bond0
BOOTPROTO=none
HWADDR=00:0E:7F:22:D5:81
IPADDR=208.166.214.13
NETMASK=255.255.255.224
NETWORK=208.166.214.0
ONBOOT=yes
TYPE=Ethernet
USERCTL=no
Next is the ifcfg-eth0 file located in the same directory.
# Broadcom Corporation|NetXtreme BCM5703 Gigabit Ethernet
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes
Finally, the ifcfg-eth1 file.
# Broadcom Corporation|NetXtreme BCM5703 Gigabit Ethernet
DEVICE=eth1
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes
Hope this helps..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2004 09:28 AM
07-12-2004 09:28 AM
Re: Bonding on linux.....again!
Chris