- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Bonding RED HAT ENTERPRISE LINUX 5.2
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
06-22-2009 01:53 PM
06-22-2009 01:53 PM
Bonding RED HAT ENTERPRISE LINUX 5.2
I am trying to configure a bond0 of two network card on a integrity machine rx3600 running red hat enterprise linux 5.2.
I have follow this procedure
# vi /etc/sysconfig/network-scripts/ifcfg-bond0 Append following lines to DEVICE=bond0
BOOTPROTO=static
ONBOOT=yes
IPADDR=10.1.1.145
NETMASK=255.255.255.0
GATEWAY=10.1.5.1
USERCTL=no
TASK 2: Modify eth0 and eth1 config files:
[root@linuxhost network-scripts]# more ifcfg-eth0
DEVICE=eth0
ONBOOT=no
MASTER=bond0
SLAVE=yes
USERCTL=no
[root@linuxhost network-scripts]# more ifcfg-eth1
DEVICE=eth1
ONBOOT=no
MASTER=bond0
SLAVE=yes
USERCTL=no
TASK 3: Load driver module:
I have modify the kernel modules configuration file so that it looks like the one below.
[root@linuxhost network-scripts]# more /etc/modprobe.conf
alias bond0 bonding
options bond0 mode=balance-alb miimon=100
TASK 4: Test configuration by modprobe and service network restart commands.
[root@linuxhost network-scripts]# modprobe bonding
[root@linuxhost network-scripts]# service network restart
But when the network service is restarted the bond0 never come up.
Question
Some special switch is required?
I am using a hub for test.
Regards
W.S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2009 02:34 PM
06-22-2009 02:34 PM
Re: Bonding RED HAT ENTERPRISE LINUX 5.2
ONBOOT=yes
For the physical interfaces and it's working.
My modprobe.conf:
alias bond0 bonding
options bond0 mode=1 miimon=100 max_bonds=2 primary=eth0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2009 05:08 PM
06-22-2009 05:08 PM
Re: Bonding RED HAT ENTERPRISE LINUX 5.2
I was trying with a Hub, so I think that is the reason cause was not working ,
I will modified the modprobe.conf file too.
Some other ideas are wellcome, some ideas about when the network service are restarted the bond0 does not come up?
Regards
W.S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2009 03:03 AM
06-23-2009 03:03 AM
Re: Bonding RED HAT ENTERPRISE LINUX 5.2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2009 07:13 AM
06-23-2009 07:13 AM
Re: Bonding RED HAT ENTERPRISE LINUX 5.2
Hub does not impact this. I've bonded RHEL 5.x systems on a hub.
What does /var/log/messages say when the service network restart command is issued?
Can you attempt a reboot?
This may have something to do with the rx system hardware being a little special.
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
06-23-2009 08:54 AM
06-23-2009 08:54 AM
Re: Bonding RED HAT ENTERPRISE LINUX 5.2
I would suggest trying the plain command-line stuff - iirc ifenslave - and then commandline ifconfig commands and see what comes of that and then work-out what the config files should say. Pity RHEL5.2 doesn't have some sysadmin tool to do that automagically - or does it?
However... a hub implies 10/100 speeds only, and not GbE. And the core interfaces on an rx3600 are GbE links, which suggests that if the goal is to see higher outbound throughput it would be "better" to simply replace the hub with a proper GbE switch (see http://www.hp.com/go/procurve for a slew of choices, among others) and not worry about bonding.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2009 06:04 AM
07-20-2009 06:04 AM
Re: Bonding RED HAT ENTERPRISE LINUX 5.2
The option entries in modprobe.conf file don't seem to work in RHEL 5.2. I had to move the options to ifcfg-bond0 file and it worked for me. Example:
BONDING_OPTS='miimon=100 mode=1 primary=eth0'
Beside setting ONBOOT=yes in ifcfg-eth0 and ifcfg-eth1, you might want to hard-code their respective MAC addresses in the file.
Cheers