Como combinar múltiplas interfaces (Nic Bonding) de rede em uma só utilizando CentOS 6:
Dependendo de qual tipo de conexão você escolher, só será preciso fazer alterações no servidor, e não necessariamente no virtual switch. Abaixo, você verá como configurar um servidor.
Para combinar as interfaces eth0 e eth1 em só uma porta, faça o seguinte:
1)Adicione/Edite a configuração do arquivo em /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0IPADDR=192.168.122.12NETMASK=255.255.255.0GATEWAY=192.168.122.1NM_CONTROLLED=noBOOTPROTO=noneONBOOT=yesUSERCTL=no
2) Limpe o arquivo /etc/sysconfig/network-scripts/ifcfg-eth0 e adicione as seguintes informações:
DEVICE=eth0
USERCTL=no
ONBOOT=yes
NM_CONTROLLED=noMASTER=bond0SLAVE=yesBOOTPROTO=none
3) Limpe o arquivo /etc/sysconfig/network-scripts/ifcfg-eth1 e adicione as seguintes informações:
DEVICE=eth1
USERCTL=noONBOOT=yesNM_CONTROLLED=noMASTER=bond0SLAVE=yesBOOTPROTO=none
***Nota: SeNM_CONTROLLED
estiver definido como "Yes", será necessário mexer nas entradasHWADDR
nesta etapa. Isso para cada interface.
4) Crie a configuração de conexão no arquivo /etc/modprobe.d/bonding.conf e adicione:aliasbond0 bonding
4) Pronto! Agora, reinicie a rede com o comando:
service network restart
5) Verifique a conexão com os comandos:ifconfig
ecat /proc/net/bonding/bond0