Não é possível definir uma ponte sobre a ligação no Debian

1

Eu tenho uma máquina Jessie do Debian 8 com duas interfaces (eth0 e eth1) conectadas no modo balance-rr (aka 0). Funciona sem problemas, mas quando tento configurar uma ponte, não funciona.

Meu / etc / network / interfaces

auto lo
iface lo inet loopback

# The primary network interface
auto bond0
iface bond0 inet static
    slaves eth0 eth1
    bond-mode 0
    bond-miimon 100
    bond_downdelay 200
    bond_updelay 200

auto br0
iface br0 inet static
        address 192.168.20.20
        netmask 255.255.255.0
        gateway 192.168.20.1
        dns-nameservers 8.8.8.8
    bridge_ports bond0
    bridge_maxwait 0
    bridge_fd 0
    bridge_stp off

Alguma pista? Obrigado.

    
por Martin 25.04.2015 / 21:32

2 respostas

1

Esta é a configuração de trabalho do meu servidor:

/ etc / network / interfaces :

auto lo
iface lo inet loopback

auto bond0
iface bond0 inet manual
    up ifconfig bond0 0.0.0.0 up
    slaves eth1 eth0
    bond-mode 0
    bond-miimon 100
    bond-lacp-rate 0

auto br0
iface br0 inet static
    address 192.168.162.235
    netmask 255.255.192.0
    gateway 192.168.150.254
    bridge_ports bond0 vnet0
    bridge_stp off # switch on with more system like this
    bridge_maxage 0
    bridge_ageing 0
    bridge_ageing 0

Além disso, você precisa instalar:

 apt-get install bridge-utils ifenslave

Remova qualquer configuração de módulo de ligação de /etc/modprobe.d /

    
por 20.05.2015 / 15:49
1

Ele estava funcionando bem para mim também com bond-mode 5 (lacp) e o comando ip sugerido em um dos comentários:

auto bond0
iface bond0 inet manual
    up ip link set up dev bond0
    slaves eth1 eth0
    bond-mode 4
    bond-miimon 100
    bond-lacp-rate 0

auto br0
iface br0 inet static
    address 192.168.162.235
    netmask 255.255.192.0
    gateway 192.168.150.254
    bridge_ports bond0
    bridge_stp off # switch on with more system like this
    bridge_maxage 0
    bridge_ageing 0

De qualquer forma, todo o crédito vai para Michal Sokolowski .

    
por 09.10.2017 / 09:54