1. Use a ferramenta yast para configurar a primeira placa de rede. Neste momento, um arquivo de configuração será gerado em /etc/sysconfig/network (por exemplo: ifcfg-eth-xx:xx:xx:xx:xx:xx)
2.cp /etc/sysconfig/network/ifcfg-eth-xx:xx:xx:xx:xx:xx /etc/sysconfig/network/ifcfg-bond0
3. Edite o arquivo ifcfg-bond0:
Adicione as seguintes linhas:
BONDING_SLAVE_0='eth0'
BONDING_SLAVE_1='eth1'
BONDING_MASTER=sim
BONDING_MODULE_OPTS=
O arquivo ifcfg-bond0 modificado é o seguinte:
BOOTPROTO='estático'
TRANSMISSÃO='192.168.23.255'
IPADDR='192.168.23.6'
MTU=''
MÁSCARA DE REDE='255.255.255.0'
REDE='192.168.23.0'
REMOTE_IPADDR=''
STARTMODE='inicialização'
UNIQUE='WMHV.+EMLITqy0YF'
BONDING_MASTER=sim
BONDING_SLAVE_0='eth0'
BONDING_SLAVE_1='eth1'
BONDING_MODULE_OPTS='miimon=100 mode=1 use_carrier=0' - Nota: mode=1 é a placa de rede principal e de backup, mode=0 é o compartilhamento de carga.
4. Exclua o arquivo de configuração da placa de rede vinculada em /etc/sysconfig/network (como: ifcfg-eth-xx:xx:xx:xx:xx:xx)
5. Use rcnetwork restart para reiniciar o serviço
6. Use o comando ifconfig -a para verificar se existe um endereço IP em bond0, mas não há endereços IP em eth0 e eth1.
A maneira mais fácil:
a. Não configure nenhuma placa de rede, portanto não haverá arquivos semelhantes a ifcfg-eth-xx:xx:xx:xx:xx:xx no diretório /etc/sysconfig/network, portanto não há necessidade de excluí-los. .
b. No diretório /etc/sysconfig/network, crie um novo arquivo ifcfg-bond0 com o seguinte conteúdo:
BOOTPROTO='estático'
TRANSMISSÃO='192.168.23.255'
IPADDR='192.168.23.6'
MTU=''
MÁSCARA DE REDE='255.255.255.0'
REDE='192.168.23.0'
REMOTE_IPADDR=''
STARTMODE='inicialização'
UNIQUE='WMHV.+EMLITqy0YF'
BONDING_MASTER=sim
BONDING_SLAVE_0='eth0'
BONDING_SLAVE_1='eth1'
c. Use o comando rcnetwork restart para reiniciar o serviço.
d. Use ifconfig -a para verificar os resultados da configuração de ajuda e tudo ficará bem.
Se houver duas outras placas de rede para ajudar a determinar, copie ifcfg-bind0 para ifcfg-bond0, altere as informações de IP e da porta de rede e reinicie o serviço, tudo ficará bem.