NIC Teaming sob o Ubuntu 16.04 - Só é possível pingar servidores DNS e nada mais

0

Eu tenho uma configuração de vínculo atualmente na configuração de backup ativo. O que estou tentando fazer é configurar essas duas NICs em uma configuração que utilizará a maior parte da largura de banda que ambas as NICs podem fornecer.

Seria este o modo 3 (transmissão)?

Minha configuração atual é assim:

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
#eth0:0
iface eth0 inet manual
bond-master bond0
bond-primary eth0

# The secondary network interface
auto eth1
iface eth1 inet manual
bond-master bond0

# Bonding eth0 & eth1 to create bond0 NIC
auto bond0
iface bond0 inet static
address 192.168.1.200
gateway 192.168.1.254
netmask 255.255.255.0
bond-mode active-backup
bond-miimon 100
bond-slaves none

Quando eu verifico o status, vejo:

mlavender@~$ cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)

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

Slave Interface: eth0
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 9c:5c:8e:4f:1b:87
Slave queue ID: 0

Como eu configuraria isso para que as duas NICs sejam usadas ao mesmo tempo para que eu possa transmitir efetivamente mais de 1 GB?

Informações adicionais

Eu tenho um switch ProSafe da Netgear GS724T. Eu tenho duas portas configuradas em um LAG e está habilitado. Suporta - agregação de link estático e / ou dinâmico IEEE 802.3ad

Pelo que eu posso dizer, eu posso pingar os hosts definidos como servidores DNS. Gateway local e ambos os servidores DNS do Google. Eu não posso pingar mais nada. Também é claro que executar o apt-get update falha por causa dos problemas de resolução de nomes.

Alguma idéia?

UPDATE

Triagem de corrida em andamento

tracepath 8.8.8.8

mlavender@~$ tracepath 8.8.8.8
 1?: [LOCALHOST]                                         pmtu 1500
 1:  192.168.1.254                                         0.831ms
 1:  192.168.1.254                                         0.914ms
 2:  xxx.xxx.x.xxx                                       168.148ms
 3:  71.149.77.116                                         5.205ms
 4:  75.8.128.144                                          4.537ms
 5:  12.83.68.145                                          6.995ms
 6:  12.122.85.197                                        10.035ms asymm  7
 7:  no reply
 8:  no reply
 9:  no reply
10:  no reply

Eu posso fazer ping nos servidores DNS do Google. Eu posso pingar qualquer coisa na LAN. Arquivo atualizado de interfaces:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet manual
bond-master bond0
bond-master eth0

# The secondary network interface
auto eth1
iface eth1 inet manual
bond-master bond0

# Bonding eth0 & eth1 to create bond0 NIC
auto bond0
iface bond0 inet static
address 192.168.1.200
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.254
bond-mode 802.3ad
bond-miimon 100
bond-slaves none

Eu também entrei no switch e, em vez de ter o tipo LAG configurado como estático, mudei para o LACP.

    
por Martin 16.06.2017 / 16:26

1 resposta

0

Por fim, a correção para isso foi editar meu arquivo resolv.conf. Depois que fiz isso, reiniciei o servidor e voila! Magia!

Obrigado por toda a ajuda sobre isso. Para qualquer um que precise, você obterá dois NICs juntos em um LAG funcional. Certifique-se também de configurar o LACP.

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet manual
bond-master bond0

# The secondary network interface
auto eth1
iface eth1 inet manual
bond-master bond0

# Bonding eth0 & eth1 to create bond0 NIC
auto bond0
iface bond0 inet static
address 10.0.0.90
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
gateway 10.0.0.250
dns-nameserver 10.0.0.250 8.8.8.8 8.8.4.4
bond-mode 4
bond-miimon 100
bond-slaves all
    
por Martin 18.06.2017 / 01:46