ifupdown을 사용하여 브리지 장치를 찾을 수 없습니다

ifupdown을 사용하여 브리지 장치를 찾을 수 없습니다

저는 Void Linux를 사용하고 있습니다.

이것은 내 /etc/network/interfaces.d/br0파일입니다:

auto br0
iface br0 inet dhcp
    bridge_ports eth0
    bridge_stp off
        bridge_waitport 0
        bridge_fd 0

하지만 시작할 때 다음 오류가 발생합니다.

=> Bringing up the network
Internet Systems Consortium DHCP Client 4.4.2
Copyright 2004-2020 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Cannot find device "br0"
Failed to get interface index: No such device

If you think you have received this message due to a bug rather
than a configuration issue please read the section on submitting
bugs on either our web page at www.isc.org or in the README file
before submitting a bug. These pages explain the proper
process and the information we find helpful for debugging.

exiting.
ifup: failed to bring up br0

설치 한 것을 확인했습니다 bridge-utils. 여기서 문제가 무엇인지 모르겠습니다. 어떤 도움이라도 감사하겠습니다.

답변1

(이것은 실제로 답변이 아닌 "댓글"이지만 댓글 섹션에 맞지 않습니다.)

ifup"내부적으로" 생성되는 브리지 인터페이스는 없는 것 같습니다 .

나는 이것을 하기를 원한다:

ip link add name brLAN type bridge
ip link set brLAN up
ip link set eno1 master brLAN
ip link set eno1 up

브리지가 dhcp를 사용하는 경우:

dhclient brLAN

관련 정보