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) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 7C8236E6F1 for ; Tue, 24 Aug 2021 14:27:29 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 68F862D2CD for ; Tue, 24 Aug 2021 14:26:59 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 7E3322D2BC for ; Tue, 24 Aug 2021 14:26:53 +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 4E78343827; Tue, 24 Aug 2021 14:26:53 +0200 (CEST) Message-ID: <5a0e6e07-c1e5-3819-7920-d0bbf8d4c7c2@proxmox.com> Date: Tue, 24 Aug 2021 14:26:51 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.0 Content-Language: en-GB To: Proxmox VE development discussion , Alexandre Derumier References: <20210823132218.3558949-1-aderumier@odiso.com> From: Thomas Lamprecht In-Reply-To: <20210823132218.3558949-1-aderumier@odiso.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.359 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [sdn.pm, evpnplugin.pm, controllers.pm, faucetplugin.pm, vnetplugin.pm] Subject: [pve-devel] applied-series: Re: [PATCH pve-network 0/5] evpn improvments + fixes 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: Tue, 24 Aug 2021 12:27:29 -0000 On 23/08/2021 15:22, Alexandre Derumier wrote: > This patches serie add new user requested features and fixes. > > > Alexandre Derumier (5): > evpn : add "ip route del vrf vrf_myzone unreachable default metric > 4278198272" on exit node > evpn : add advertise-subnets option > evpn: add exitnodes-local-routing > vnet : alias : check pattern > get_local_vnets: add permissions on /sdn/vnets/* > > PVE/Network/SDN.pm | 2 +- > PVE/Network/SDN/Controllers.pm | 2 +- > PVE/Network/SDN/Controllers/EvpnPlugin.pm | 56 ++++++++++++++++--- > PVE/Network/SDN/Controllers/FaucetPlugin.pm | 2 +- > PVE/Network/SDN/VnetPlugin.pm | 2 + > PVE/Network/SDN/Zones/EvpnPlugin.pm | 46 +++++++++++++-- > .../expected_controller_config | 44 +++++++++++++++ > .../advertise_subnets/expected_sdn_interfaces | 42 ++++++++++++++ > test/zones/evpn/advertise_subnets/interfaces | 7 +++ > test/zones/evpn/advertise_subnets/sdn_config | 26 +++++++++ > .../evpn/exitnode/expected_sdn_interfaces | 2 +- > .../expected_controller_config | 37 ++++++++++++ > .../expected_sdn_interfaces | 56 +++++++++++++++++++ > .../evpn/exitnode_local_routing/interfaces | 7 +++ > .../evpn/exitnode_local_routing/sdn_config | 27 +++++++++ > .../exitnode_snat/expected_sdn_interfaces | 2 +- > 16 files changed, 343 insertions(+), 17 deletions(-) > create mode 100644 test/zones/evpn/advertise_subnets/expected_controller_config > create mode 100644 test/zones/evpn/advertise_subnets/expected_sdn_interfaces > create mode 100644 test/zones/evpn/advertise_subnets/interfaces > create mode 100644 test/zones/evpn/advertise_subnets/sdn_config > create mode 100644 test/zones/evpn/exitnode_local_routing/expected_controller_config > create mode 100644 test/zones/evpn/exitnode_local_routing/expected_sdn_interfaces > create mode 100644 test/zones/evpn/exitnode_local_routing/interfaces > create mode 100644 test/zones/evpn/exitnode_local_routing/sdn_config > applied series, thanks!