DHCP에 대한 바인딩 구성

DHCP에 대한 바인딩 구성

2개의 이더넷 인터페이스를 사용하여 활성-수동 모드에서 본딩을 사용하려고 합니다. 시스템이 항상 하나 이상의 케이블이 연결된 네트워크에 연결되기를 원합니다. DHCP 서버를 통해 시스템을 사용할 수 있어야 합니다.

현재 인터넷에서 유효한 답변을 찾지 못해 이제 여러분에게 질문합니다 :)

핑크홍보

답변1

~에서커널 문서, 이 구성은 과거에 나에게 효과적이었습니다(/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

답변2

다음을 시도해 보세요.

$/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  

작동하는지 알려주세요.

관련 정보