Channel bonding treats multiple physical connections to switch units as a single logical link.
1. Create /etc/sysconfig/network-scripts/ifcfg-bond0 file with following entries:
DEVICE=bond0 |
2. Create an ifcfg-ethn file for each interface in the bond.
l Our /etc/sysconfig/network-scripts/ifcfg-eth0 file
DEVICE=eth0 USERCTL=no ONBOOT=yes MASTER=bond0 SLAVE=yes BOOTPROTO=none |
2 Our /etc/sysconfig/network-scripts/ifcfg-eth1 file
DEVICE=eth1 USERCTL=no ONBOOT=yes MASTER=bond0 SLAVE=yes BOOTPROTO=none |
3. Add the following lines to /etc/modules.conf:
alias bond0 bonding |
4. restart networking
service network restart |