driver de ligação quebrado em centos6?

5

Eu tenho um servidor com instalação mínima do CentOS6 64bit (opção mínima do instalador). O driver de ligação não parece funcionar corretamente. A saída de / proc / net / bonding / bond0 é:

Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: None
MII Status: down
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0

Como você pode ver, não há interfaces listadas como salves. As opções do driver de ligação foram configuradas em /etc/modprobe.d/bonding.conf como:

alias bond0 bonding
options bond0 mode=1 primary=eth0 miimon=100

As interfaces eth0 e eth4 são configuradas como tal:

DEVICE="eth0"
MASTER="bond0"
SLAVE="yes"
HWADDR="78:2B:CB:56:ED:5D"
NM_CONTROLLED="no"
ONBOOT="yes"

DEVICE="eth4"
MASTER="bond0"
SLAVE="yes"
HWADDR="00:1B:21:C9:F7:38"
NM_CONTROLLED="no"
ONBOOT="yes"

e bond0 é configurado como tal:

DEVICE="bond0"
IPADDR="10.100.46.3"
NETMASK="255.255.254.0"
NM_CONTROLLED="no"
ONBOOT="yes"

E aqui está a saída de / var / log / messages:

Dec  9 08:20:55 app2 kernel: bonding: Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified, otherwise bonding will not detect link failures! see bonding.txt for details.
Dec  9 08:20:55 app2 kernel: ADDRCONF(NETDEV_UP): bond0: link is not ready
Dec  9 08:21:02 app2 kernel: ADDRCONF(NETDEV_UP): bond0: link is not ready

Alguém pode oferecer algumas dicas sobre por que o driver não está começando? Isso é um problema de dependências?

    
por Lukasz 09.12.2011 / 22:36

2 respostas

1

A atualização do sistema operacional com apenas sudo yum update corrigiu o problema. Não tenho certeza qual parte fez isso infelizmente.

    
por 18.01.2012 / 19:42
1

Seu log disse:

miimon or arp_interval and arp_ip_target module parameters must be specified

Tente adicionar linhas abaixo (você pode escolher suas opções favoritas) ao seu ifcfg-bond0:

BONDING_OPTS='miimon=1000 mode=6'
    
por 18.01.2012 / 19:05