From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <mira@nena.proxmox.com> Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id E4F606C55A for <pve-devel@lists.proxmox.com>; Mon, 29 Mar 2021 14:07:20 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id E304514E17 for <pve-devel@lists.proxmox.com>; Mon, 29 Mar 2021 14:07:20 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 2E09714E0D for <pve-devel@lists.proxmox.com>; Mon, 29 Mar 2021 14:07:20 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id EF2834594D for <pve-devel@lists.proxmox.com>; Mon, 29 Mar 2021 14:07:19 +0200 (CEST) From: Mira Limbeck <m.limbeck@proxmox.com> To: pve-devel@lists.proxmox.com Date: Mon, 29 Mar 2021 14:07:14 +0200 Message-Id: <20210329120716.9792-1-m.limbeck@proxmox.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.226 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods NO_DNS_FOR_FROM 0.379 Envelope sender has no MX or A DNS records RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Subject: [pve-devel] [PATCH qemu-server 1/2] fix #3314: IPv6 requires type 'static6' X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com> List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe> List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/> List-Post: <mailto:pve-devel@lists.proxmox.com> List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help> List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe> X-List-Received-Date: Mon, 29 Mar 2021 12:07:20 -0000 A fix was also provided in bugzilla by user wsapplegate: https://bugzilla.proxmox.com/show_bug.cgi?id=3314 Tested on Ubuntu 20.04, CentOS 8 and Debian 10. Signed-off-by: Mira Limbeck <m.limbeck@proxmox.com> --- anything else required regarding attribution? PVE/QemuServer/Cloudinit.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/QemuServer/Cloudinit.pm b/PVE/QemuServer/Cloudinit.pm index c464bf3..3224dd0 100644 --- a/PVE/QemuServer/Cloudinit.pm +++ b/PVE/QemuServer/Cloudinit.pm @@ -452,7 +452,7 @@ sub nocloud_network { # SLAAC is not supported by cloud-init, this fallback should work with an up-to-date netplan at least $content .= "${i}- type: dhcp6\n"; } else { - $content .= "${i}- type: static\n" + $content .= "${i}- type: static6\n" . "${i} address: '$ip'\n"; if (defined(my $gw = $ipconfig->{gw6})) { $content .= "${i} gateway: '$gw'\n"; -- 2.20.1