带有 VLAN 和网桥的 netplan 网络配置

带有 VLAN 和网桥的 netplan 网络配置

我正在尝试将具有 VLAN 和网桥的网络配置从 Ubuntu 16.04 移动到 Ubuntu 18.04 (netplan)。我在这里读过一些类似的问题和答案,但仍然无法让它工作。这是 Ubuntu 16.04 中的当前配置:

auto lo
iface lo inet loopback

auto eno1
iface eno1 inet manual

auto eno1.104
iface eno1.104 inet manual
        pre-up /sbin/ifconfig eno1 up
        vlan-raw-device eno1

auto br104
iface br104 inet static
        bridge_ports eno1.104
        metric 0
        bridge_maxwait 0
        address 192.168.1.1
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.1.255
        gateway 192.168.1.254
        dns-nameservers 8.8.8.8 8.8.4.4

相关内容