우분투 netplan arp-ip-target 문제

우분투 netplan arp-ip-target 문제

Netplan 버전을 실행하는 ubuntu 20.04가 있고 옵션을 사용하여 본드를 구성 0.102-0ubuntu1~20.04.2하려고 합니다.active-backuparp-ip-target

  bonds:
        bond0:
          dhcp4: no
          interfaces:
            - eno49
            - eno50
          parameters:
            mode: active-backup
            arp-ip-targets: [ 10.64.0.1 ]
            arp-interval: 3000

이것이 나의 채권 산출물입니다

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

Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: eno49
MII Status: up
MII Polling Interval (ms): 0
Up Delay (ms): 0
Down Delay (ms): 0
Peer Notification Delay (ms): 0
ARP Polling Interval (ms): 3000
ARP IP target/s (n.n.n.n form): 10.64.0.1

Slave Interface: eno50
MII Status: down
Speed: 10000 Mbps
Duplex: full
Link Failure Count: 1
Permanent HW addr: 5c:b9:01:9d:ac:ad
Slave queue ID: 0

Slave Interface: eno49
MII Status: up
Speed: 10000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 5c:b9:01:9d:ac:ac
Slave queue ID: 0

테스트하기 위해 본딩 장애 조치를 확인하기 위해 업스트림 스위치 포트를 비활성화했지만 제대로 작동하지 않는 것 같습니다. 문제를 해결하려면 또 어떻게 해야 합니까?

답변1

추가하기 arp_validate: all만 하면 됩니다! !

parameters:
  mode: active-backup
  arp-ip-targets: [ 10.64.0.1 ]
  arp-interval: 3000
  arp-validate: all

관련 정보