virt-manager bonding: o que é o tipo de portadora?

1

Estou tentando configurar duas interfaces Ethernet para ligação no virt-manager. Então eu vou "Adicionar Interface" = > Selecione "Bond" = > Configure o "modo de ligação". Isso abre uma janela chamada "Configuração de ligação", na qual eu configurei "Bond Mode" para 802.3ad e "Bond monitor mode" para miimon. Na parte inferior da janela aparece um campo "Tipo de operadora", onde você pode selecionar "netif" ou "ioctl".

Eu configurei a ligação antes, mas nunca vi essas configurações. O que essas configurações significam? E o que devo escolher em uma nova instalação do 16.04 Server?

Update: Talvez alguém deva dizer ao virt-manager que os timings em "MII settings" são realmente milissegundos e não segundos!

    
por OttoEisen 18.07.2016 / 14:15

1 resposta

0

Rede KVM não é coisa minha, realmente me incomoda. É por isso que eu tive que cavar um pouco mais e descobri que o "tipo de portadora" se traduz no parâmetro bond_use_carrier em /etc/network/interfaces . Cite de aqui :

use_carrier

Specifies whether or not miimon should use MII or ETHTOOL
ioctls vs. netif_carrier_ok() to determine the link
status. The MII or ETHTOOL ioctls are less efficient and
utilize a deprecated calling sequence within the kernel.  The
netif_carrier_ok() relies on the device driver to maintain its
state with netif_carrier_on/off; at this writing, most, but
not all, device drivers support this facility.

If bonding insists that the link is up when it should not be,
it may be that your network device driver does not support
netif_carrier_on/off.  The default state for netif_carrier is
"carrier on," so if a driver does not support netif_carrier,
it will appear as if the link is always up.  In this case,
setting use_carrier to 0 will cause bonding to revert to the
MII / ETHTOOL ioctl method to determine the link state.

A value of 1 enables the use of netif_carrier_ok(), a value of
0 will use the deprecated MII / ETHTOOL ioctls.  The default
value is 1.

Portanto, escolha "netif" e, em seguida, coloque o seu link offline. Se o seu sistema não reconhecer que o link está inativo, volte para "ioctl".

    
por OttoEisen 18.07.2016 / 15:51