Debian 10(Buster)에서 인터페이스를 바인딩할 때 오류가 발생합니다.
이것이 나의 채권 할당이다
auto bond0
iface bond0 inet manual
address xxx.xxx.xxx.xxx
netmask xxx.xxx.xxx.xxx
bond-mode balance-rr
bond-miimon 100
bond-slaves enp9s0 enp10s0
bond-downdelay 200
bond-updelay 200
인터페이스 구성 방법은 다음과 같습니다.
allow-hotplug
iface enp9s0 inet manual
bond-master bond0
bond-mode balance-rr
allow-hotplug
iface enp10s0 inet manual
bond-master bond0
bond-mode balance-rr
이것은 dmesg의 출력입니다.
[2416927.202898] IPv6: ADDRCONF(NETDEV_UP): bond0: link is not ready
[2416929.492175] r8169 0000:09:00.0 enp9s0: Link is Up - 1Gbps/Full - flow control rx/tx
[2416929.539426] r8169 0000:0a:00.0 enp10s0: Link is Up - 1Gbps/Full - flow control rx/tx
[2416929.593686] bond0: link status up for interface enp9s0, enabling it in 0 ms
[2416929.593689] bond0: link status up for interface enp10s0, enabling it in 200 ms
[2416929.593733] bond0: link status definitely up for interface enp9s0, 1000 Mbps full duplex
[2416929.593740] bond0: first active interface up!
[2416929.593742] bond0: invalid new link 3 on slave enp10s0
[2416929.594770] IPv6: ADDRCONF(NETDEV_CHANGE): bond0: link becomes ready
어떤 제안이 있으십니까?
답변1
Palo Alto 방화벽에 두 개의 Debian 10 시스템이 있고 둘 다 이 바인딩을 갖습니다."슬레이브의 새 링크 3이 유효하지 않습니다."오류가 있지만 채권을 사용할 때마다 잘 작동합니다. (즉, 이 오류는 나에게 치명적이지 않습니다.)
Palo 방화벽에 없는 다른 컴퓨터가 있는데 이 오류가 발생하지 않습니다.
나에게 있어서 이 오류는 네트워크 카드가 네트워크 카드 팀(Palo Firewall 추가 기능 상자)에 반환될 때 발생합니다.
이 게시물이 어떤 의미인지 궁금해서 찾았습니다. 하지만 와, 인터넷에는 귀하의 오류에 대한 정보가 거의 없습니다. 따라서 이 오류로 인해 적어도 한 사람이 웹 서핑을 중단할 수는 없다는 사실을 아는 데 도움이 되기를 바랍니다. 인터넷이므로 이 오류와 관련 없는 다른 문제가 발생할 수 있습니다.
$ sudo dmesg | grep bond0
[ 95.382892] bonding: bond0 is being created...
[ 95.432520] bond0: Enslaving eno1 as a backup interface with an up link
[ 95.465622] bond0: Enslaving eno2 as a backup interface with an up link
[ 95.498994] bond0: Enslaving eno3 as a backup interface with an up link
[ 95.508300] bond0: Warning: No 802.3ad response from the link partner for any adapters in the bond
[ 95.508354] bond0: link status definitely up for interface eno1, 1000 Mbps full duplex
[ 95.508359] bond0: first active interface up!
[ 95.529105] bond0: Enslaving eno4 as a backup interface with an up link
[ 95.716442] bond0: link status definitely up for interface eno2, 1000 Mbps full duplex
[ 95.716477] bond0: link status definitely up for interface eno3, 1000 Mbps full duplex
[ 95.820358] bond0: link status definitely up for interface eno4, 1000 Mbps full duplex
[339713.580713] bond0: link status definitely down for interface eno1, disabling it
[339713.580724] bond0: first active interface up!
[339717.976553] bond0: link status up for interface eno1, enabling it in 200 ms
[339717.976558] bond0: invalid new link 3 on slave eno1
[339718.188596] bond0: link status definitely up for interface eno1, 1000 Mbps full duplex
[425443.657516] bond0: link status definitely down for interface eno2, disabling it
[425443.657525] bond0: first active interface up!
[425450.177244] bond0: link status up for interface eno2, enabling it in 200 ms
[425450.177254] bond0: invalid new link 3 on slave eno2
[425450.385317] bond0: link status definitely up for interface eno2, 1000 Mbps full duplex
답변2
이것은 데비안 10에서 작동합니다.
# 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
# onboard network interface I217
auto eno1
iface eno1 inet manual
# onboard network interface I210
auto eno2
iface eno2 inet manual
#bond inteface
auto bond0
iface bond0 inet manual
bond_slaves eno1 eno2
bond_mode 4
mtu 9000
# bridge interface
auto br0
iface br0 inet static
bridge_ports bond0
bridge_fd 0
bridge_waitport 20
bridge_stp on
address 10.10.10.20
netmask 255.255.255.0
network 10.10.10.0
broadcast 10.10.10.255
gateway 10.10.10.254