Crie o arquivo /etc/modprobe.d/bonding.conf com o seguinte conteúdo:
alias bond0 bonding
options bond0 mode=active-backup miimon=100 downdelay=200 updelay=200
2. Configurando as placas de rede;
Crie o arquivo /etc/sysconfig/network-scripts/ifcfg-bond0 com o seguinte conteúdo:
DEVICE=bond0
IPADDR=172.20.0.100
NETMASK=255.255.254.0
GATEWAY=172.20.0.1
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
NM_CONTROLLED=no
Edite o arquivo /etc/sysconfig/network-scripts/ifcfg-eth0 e eth1 e deixe com o seguinte conteúdo, caso o eth0 para eth1 no arquivo ifcfg-eth1:
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond0
SLAVE=yes
NM_CONTROLLED=no
Reinicie o serviço network e execute o comando ifconfig -a:
bond0 Link encap:Ethernet Endereço de HW 00:21:5E:93:0F:98
inet end.: 172.20.0.100 Bcast:172.20.1.255 Masc:255.255.254.0
endereço inet6: fe80::221:5eff:fe93:f98/64 Escopo:Link
UP BROADCASTRUNNING MASTER MULTICAST MTU:1500 Métrica:1
RX packets:79237 errors:0 dropped:0 overruns:0 frame:0
TX packets:32303 errors:0 dropped:0 overruns:0 carrier:0
colisões:0 txqueuelen:0
RX bytes:7270862 (6.9 MiB) TX bytes:3288225 (3.1 MiB)
eth0 Link encap:Ethernet Endereço de HW 00:21:5E:93:0F:98
UP BROADCASTRUNNING SLAVE MULTICAST MTU:1500 Métrica:1
RX packets:54915 errors:0 dropped:0 overruns:0 frame:0
TX packets:31423 errors:0 dropped:0 overruns:0 carrier:0
colisões:0 txqueuelen:1000
RX bytes:5023299 (4.7 MiB) TX bytes:3194454 (3.0 MiB)
eth1 Link encap:Ethernet Endereço de HW 00:21:5E:93:0F:98
UP BROADCASTRUNNING SLAVE MULTICAST MTU:1500 Métrica:1
RX packets:24322 errors:0 dropped:0 overruns:0 frame:0
TX packets:880 errors:0 dropped:0 overruns:0 carrier:0
colisões:0 txqueuelen:1000
RX bytes:2247563 (2.1 MiB) TX bytes:93771 (91.5 KiB)
Também é possível consultar o arquivo /proc/net/bonding/bond0 para maiores informações sobre o bonding.