我正在尝试使用 Netplan 创建桥梁。
我复制了导游。
但它给了我一个错误:
root@ubuntu:~# netplan generate
Error in network definition //etc/netplan/01-netcfg.yaml line 9 column 10: br0: interface eth0 is not defined
答案1
要将eth0
接口引用为桥接器中的接口,您还必须在 yaml 中声明该物理接口,即使您没有其他配置可附加到它。即:
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: false
bridges:
br0:
dhcp4: yes
interfaces:
- eth0
应更新 netplan.io 示例以反映这一点。