我的 ubuntu18 托管在 Azure 云中。我尝试在 netplan 中设置桥接,但失败了。
原始 50-cloud-init.yaml
network:
ethernets:
eth0:
dhcp4: true
addresses:
- 10.0.20.6/24
dhcp6: false
match:
macaddress: 00:0d:3a:83:44:a1
version: 2
修改了50-cloud-init.yaml:
network:
ethernets:
eth0:
dhcp4: false
dhcp6: false
match:
macaddress: 00:0d:3a:83:44:a1
bridges:
br0:
interfaces: [eth0]
dhcp4: true
addresses:
- 10.0.20.6/24
version: 2
结果 - 我失去了网络,重启时我看到如下错误:
[ 134.947548] cloud-init[902]: 2020-05-19 04:33:09,786 - azure.py[ERROR]: Failed to read /var/lib/dhcp/dhclient.eth0.leases: [Errno 2] Nosuch file or directory: '/var/lib/dhcp/dhclient.eth0.leases'
答案1
试试这个。保持完全相同的间距、缩进,并且不使用制表符。
network:
version: 2
renderer: networkd
ethernets:
eth0:
match:
macaddress: 00:0d:3a:83:44:a1
bridges:
br0:
dhcp4: true
interfaces:
- eth0
macaddress: 00:0d:3a:83:44:a1
sudo netplan --debug generate
sudo netplan apply
reboot
答案2
感谢您引用日志中的错误消息;该问题已在其他地方报告过,但如果没有该日志消息,那么这是一个相当不透明的故障。
这看起来像是 cloud-init azure 数据源中的一个错误。已针对此问题打开了一个错误,网址为https://bugs.launchpad.net/cloud-init/+bug/1879737。