Configurar ligação com DHCP

1

Estou tentando usar a ligação no modo ativo-passivo, com duas interfaces ethernet. Eu gostaria que o sistema estivesse sempre conectado à rede, enquanto houver pelo menos um cabo conectado. Eu devo ser capaz de usar este sistema com um servidor DHCP.

Por enquanto, não encontrei nenhuma resposta funcional na internet, então agora estou perguntando a vocês:)

PinkPR

    
por PinkPR 29.11.2016 / 09:53

2 respostas

2

A partir da documentação do kernel , esta configuração funcionou para mim no passado (/ etc / network / interfaces):

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

# The loopback network interface
auto lo
iface lo inet loopback

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

# Define secondary network interface
auto eth1
iface eth1 inet manual
    # delay ifup to allow eth0 to come up first in the bond
    pre-up sleep 2
    bond-master bond0
    bond-primary eth0 eth1

# Define master bond interface with link local address.
auto bond0
iface bond0 inet dhcp
    bond-slaves none
    bond-mode active-backup
    bond-miimon 100
    
por 29.11.2016 / 12:13
0

Você deve tentar isto:

$/etc/modprobe.d/somefile

alias bond0 bonding   
options bonding mode=1 arp_interval=1000 

$/etc/network/interfaces 

auto bond0  
iface bond0 inet manual  
   up ifconfig bond0 up    
   up ifenslave bond0 eth0 eth1  
   up dhclient3 -e IF_METRIC=100 -pf /var/run/dhclient.bond0.pid -lf /var/lib/dhcp3/dhclient.bond0.leases bond0  
   down ifenslave -d bond0 eth0 eth1  

Deixe-me saber se funciona.

    
por 29.11.2016 / 10:30