Debian 11 无法通过 Cloud-Init 设置 IPv6:“ens18/disable_ipv6:没有这样的文件或目录”

Debian 11 无法通过 Cloud-Init 设置 IPv6:“ens18/disable_ipv6:没有这样的文件或目录”

使用 Cloud-Init 在最新版本中设置静态 IPv4 和 IPv6 时Debian 11(通用)云镜像networking.service在启动时抛出以下错误:

Aug 16 14:28:29 debian ifup[540]: sysctl: cannot stat /proc/sys/net/ipv6/conf/ens18/disable_ipv6: No such file or directory

这似乎是正确的,因为没有ens18

$ ls /proc/sys/net/ipv6/conf/
all  default  eth0  lo

并且,启动映像后,仅设置静态 IPv4 地址:

$ ip addr show
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether 52:b3:31:24:72:f1 brd ff:ff:ff:ff:ff:ff
    altname enp0s18
    altname ens18
    inet 1.2.3.4/26 brd 1.2.3.1 scope global eth0
       valid_lft forever preferred_lft forever
    inet6 fe80::50b3:31ff:fe24:72f1/64 scope link 
       valid_lft forever preferred_lft forever

/etc/network/interfaces然而,该配置是由 Cloud-Init 正确生成的:

# This file is generated from information provided by the datasource.  Changes
# to it will not persist across an instance reboot.  To disable cloud-init's
# network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
auto lo
iface lo inet loopback
    dns-nameservers 1.1.1.1 1.0.0.1 2a0d:1234:100::100
    dns-search vie.alwyzon.net

auto eth0
iface eth0 inet static
    address 1.2.3.4/26
    gateway 1.2.3.1

# control-alias eth0
iface eth0 inet6 static
    address 2a00:1234:1234:fee1::1/48
    gateway 2a00:1234:1234::1

该接口已在 Debian 10 中命名ens18(以及其他平台:Ubuntu、CentOS、openSUSE 等),并且没有出现任何问题。 ( 的选择ens18可能与 Proxmox 有关;尽管我不太确定在哪里/谁做出了这个选择。)但是,这个eth0指向的别名ens18在 Debian 11 中似乎是新的。在 Debian 10 映像中,ens18只是直接使用,没有eth0别名已在任何地方显示。

知道如何使这些新的 Debian 11 Cloud-Init 映像与该ens18映像一起使用吗?

答案1

如果您正在使用ifupdown,安装ifupdown2而不是ifupdown解决这里的问题。

sudo apt-get update 
sudo apt-get install ifupdown2

答案2

Debian 开发人员现在似乎已经解决了这个问题:提交 1f67aed1

运行最新每日构建Debian 11 通用云镜像确实解决了这个问题。

相关内容