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 DA3C499248 for ; Thu, 20 Apr 2023 23:37:03 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id AF4B62F836 for ; Thu, 20 Apr 2023 23:36:33 +0200 (CEST) Received: from bastionodiso.odiso.net (bastionodiso.odiso.net [IPv6:2a0a:1580:2000::2d]) (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 for ; Thu, 20 Apr 2023 23:36:32 +0200 (CEST) Received: from kvmformation3.odiso.net (formationkvm3.odiso.net [10.3.94.12]) by bastionodiso.odiso.net (Postfix) with ESMTP id E67158175; Thu, 20 Apr 2023 23:36:25 +0200 (CEST) Received: by kvmformation3.odiso.net (Postfix, from userid 0) id D1A76D16C5; Thu, 20 Apr 2023 23:36:25 +0200 (CEST) From: Alexandre Derumier To: pve-devel@lists.proxmox.com Date: Thu, 20 Apr 2023 23:36:16 +0200 Message-Id: <20230420213622.685809-1-aderumier@odiso.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.020 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy HEADER_FROM_DIFFERENT_DOMAINS 0.25 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 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 T_SCC_BODY_TEXT_LINE -0.01 - URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [vnets.pm, sdn.pm, qinqplugin.pm, evpnplugin.pm, bgpplugin.pm, vxlanplugin.pm] Subject: [pve-devel] [PATCH pve-network 0/6] sdn multiples 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: Thu, 20 Apr 2023 21:37:03 -0000 This is a resend of the 4 last patches for pve-network + 2 new patches Alexandre Derumier (6): fix #4657 : evpn: fix exit-node with multiple vrf fix #4425: vxlan|evpn: add vxlan-port option fix #4662 : frr: fix config generation ordering fix #4389 : evpn: exit nodes : null routes subnets from other zones fix #4683 : zones: qinq: fix vlan-protocol with bridge vlan aware network reload: fix UPID parsing PVE/API2/Network/SDN.pm | 3 +- PVE/Network/SDN/Controllers/BgpPlugin.pm | 2 +- PVE/Network/SDN/Controllers/EvpnPlugin.pm | 83 ++++++++++------ PVE/Network/SDN/Vnets.pm | 4 +- PVE/Network/SDN/Zones/EvpnPlugin.pm | 4 + PVE/Network/SDN/Zones/QinQPlugin.pm | 8 +- PVE/Network/SDN/Zones/VxlanPlugin.pm | 9 ++ .../ebgp_loopback/expected_controller_config | 3 +- .../evpn/exitnode/expected_controller_config | 1 + .../expected_controller_config | 4 +- .../exitnode_snat/expected_controller_config | 1 + .../expected_controller_config | 98 +++++++++++++++++++ .../exitnodenullroute/expected_sdn_interfaces | 81 +++++++++++++++ test/zones/evpn/exitnodenullroute/interfaces | 7 ++ test/zones/evpn/exitnodenullroute/sdn_config | 42 ++++++++ .../multiplezones/expected_controller_config | 49 ++++++++++ .../multiplezones/expected_sdn_interfaces | 81 +++++++++++++++ test/zones/evpn/multiplezones/interfaces | 7 ++ test/zones/evpn/multiplezones/sdn_config | 37 +++++++ .../evpn/vxlanport/expected_controller_config | 41 ++++++++ .../evpn/vxlanport/expected_sdn_interfaces | 44 +++++++++ test/zones/evpn/vxlanport/interfaces | 7 ++ test/zones/evpn/vxlanport/sdn_config | 26 +++++ .../expected_sdn_interfaces | 4 + .../vxlan/vxlanport/expected_sdn_interfaces | 16 +++ test/zones/vxlan/vxlanport/interfaces | 7 ++ test/zones/vxlan/vxlanport/sdn_config | 11 +++ 27 files changed, 640 insertions(+), 40 deletions(-) create mode 100644 test/zones/evpn/exitnodenullroute/expected_controller_config create mode 100644 test/zones/evpn/exitnodenullroute/expected_sdn_interfaces create mode 100644 test/zones/evpn/exitnodenullroute/interfaces create mode 100644 test/zones/evpn/exitnodenullroute/sdn_config create mode 100644 test/zones/evpn/multiplezones/expected_controller_config create mode 100644 test/zones/evpn/multiplezones/expected_sdn_interfaces create mode 100644 test/zones/evpn/multiplezones/interfaces create mode 100644 test/zones/evpn/multiplezones/sdn_config create mode 100644 test/zones/evpn/vxlanport/expected_controller_config create mode 100644 test/zones/evpn/vxlanport/expected_sdn_interfaces create mode 100644 test/zones/evpn/vxlanport/interfaces create mode 100644 test/zones/evpn/vxlanport/sdn_config create mode 100644 test/zones/vxlan/vxlanport/expected_sdn_interfaces create mode 100644 test/zones/vxlan/vxlanport/interfaces create mode 100644 test/zones/vxlan/vxlanport/sdn_config -- 2.30.2