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

おすすめ記事