From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 E8B2C62CA9 for ; Sun, 23 Aug 2020 13:48:24 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id E004E16569 for ; Sun, 23 Aug 2020 13:47:54 +0200 (CEST) Received: from howl.hachimitsu.nl (D9641AC2.static.ziggozakelijk.nl [217.100.26.194]) by firstgate.proxmox.com (Proxmox) with ESMTP id 5572B16547 for ; Sun, 23 Aug 2020 13:47:53 +0200 (CEST) Received: by howl.hachimitsu.nl (Postfix, from userid 1000) id 1937760984; Sun, 23 Aug 2020 13:38:22 +0200 (CEST) From: Stephan Leemburg To: pve-devel@lists.proxmox.com Cc: Stephan Leemburg Date: Sun, 23 Aug 2020 13:38:02 +0200 Message-Id: <20200823113802.95198-2-stephan.leemburg@it-functions.nl> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200823113802.95198-1-stephan.leemburg@it-functions.nl> References: <20200823113802.95198-1-stephan.leemburg@it-functions.nl> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 2 AWL -0.250 Adjusted score from AWL reputation of From: address HEADER_FROM_DIFFERENT_DOMAINS 0.249 From and EnvelopeFrom 2nd level mail domains are different 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 KAM_NUMSUBJECT 0.5 Subject ends in numbers excluding current years KHOP_HELO_FCRDNS 0.399 Relay HELO differs from its IP's reverse DNS NO_DNS_FOR_FROM 0.379 Envelope sender has no MX or A DNS records 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 X-Mailman-Approved-At: Mon, 24 Aug 2020 10:12:10 +0200 Subject: [pve-devel] [Bump maximum number of container net interfaces from 10 to 32 1/1] Bump maximum number of container net interfaces from 10 to 32 X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Aug 2020 11:48:25 -0000 Signed-off-by: Stephan Leemburg --- src/PVE/LXC/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/LXC/Config.pm b/src/PVE/LXC/Config.pm index 5bf12d5..044e2e1 100644 --- a/src/PVE/LXC/Config.pm +++ b/src/PVE/LXC/Config.pm @@ -712,7 +712,7 @@ our $netconf_desc = { }; PVE::JSONSchema::register_format('pve-lxc-network', $netconf_desc); -my $MAX_LXC_NETWORKS = 10; +my $MAX_LXC_NETWORKS = 32; for (my $i = 0; $i < $MAX_LXC_NETWORKS; $i++) { $confdesc->{"net$i"} = { optional => 1, -- 2.25.1