我运行 Ubuntu 18.04 云映像并尝试通过 cloud-init 配置网络。出于某种原因,当我尝试分配静态 IP 并回退到使用 DHCP 时,它忽略了我的网络。我不知道为什么,也不知道如何调试它。有谁知道我做错了什么或者我应该如何进一步解决这个问题:
这是我config.yaml
用来生成我的config.img
:
#cloud-config
network:
version: 2
ethernets:
ens2:
dhcp4: false
dhcp6: false
addresses: [10.0.0.40/24]
gateway4: 10.0.0.1
password: secret # for the 'ubuntu' user in case we can't SSH in
chpasswd: { expire: false }
ssh_pwauth: true
users:
- default
- name: brennan
ssh_import_id: gh:brennancheung
sudo: ALL=(ALL) NOPASSWD:ALL
hostname: vm
runcmd:
- [ sh, -xc, "echo Here is the network config for your instance" ]
- [ ip, a ]
final_message: "Cloud init is done. Woohoo!"
配置中的其他所有内容似乎都在工作,就好像它甚至没有看到该network
部分一样。
我附上.img
ascdrom
来阅读cloud-init
. 你可以在这里看到我是如何运行它的:https ://github.com/brennancheung/playbooks/blob/master/cloud-init-lab/Makefile
注意:一旦我登录到该框,我可以用上面/etc/netplan
的network
部分替换配置并重新应用它,网络就可以正常使用静态 IP。所以我认为我没有遗漏任何明显的错误。这让我相信它与 cloud-init 网络模块有关,而不是与netplan
它本身有关。