United States (change)
Shortcuts: Downloads Fedora Red Hat Network
Account Links: Cart Your Account Logout
alias bond0 bonding
options bond0 mode=0 miimon=100
alias bond1 bonding
options bond1 -o bonding1 mode=0 miimon=200
|
alias bond0 bonding
options bond0 mode=0 arp_interval=100 arp_ip_target=10.10.10.1,10.10.10.2
alias bond1 bonding
options bond1 -o bonding1 mode=0 arp_interval=200 arp_ip_target=20.20.20.1,20.20.20.2
In this example bond0 will send arp requests for 10.10.10.1 and 10.10.10.2 every 100 milli-seconds. Bond1 will send ARP requests for 20.20.20.1 and 20.20.20.2 every 200 milli-seconds. If an interface does not receive an ARP response for a period of time it will be marked as down. This means that the arp_ip_target addresses must be selected such that the responses will be distributed over all of the interfaces.
After changes are made to the /etc/modules.conf (in Red Hat Enterprise Linux 3) or /etc/modprobe.conf (in Red Hat Enterprise Linux 4) file the bonding modules must be removed from the kernel and reloaded with the new options. To do this run the following commands:
service network stop rmmod bonding rmmod bonding1 service network start