From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 002D91FF14C for ; Fri, 15 May 2026 13:07:33 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 7E1AD91A4; Fri, 15 May 2026 13:07:29 +0200 (CEST) From: Hannes Laimer To: pve-devel@lists.proxmox.com Subject: [PATCH network v2 0/4] sdn: evpn: IPv6 underlay support Date: Fri, 15 May 2026 13:06:44 +0200 Message-ID: <20260515110648.217493-1-h.laimer@proxmox.com> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1778843206913 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.084 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 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 Message-ID-Hash: 25TTVRP57UOQJUKO36FKZ4KUGGWEA6HX X-Message-ID-Hash: 25TTVRP57UOQJUKO36FKZ4KUGGWEA6HX X-MailFrom: h.laimer@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: After we bumped frr this will work now, so rebased it and sent it again. Adds IPv6 underlay support for EVPN: IPv6-capable underlays can be selected and IPv6 peers configured. On a dual-stack underlay the EVPN session picks IPv6. I mostly tested this on top of the bgp-fabric series[2], but it does not depend on the changes in the that series. v2: - dropped two patches that have already been applied - rebased on top of current master [v1] https://lore.proxmox.com/pve-devel/20260122135151.292794-1-h.laimer@proxmox.com/ [2] https://lore.proxmox.com/pve-devel/20260515102500.216264-1-h.laimer@proxmox.com/ pve-network: Hannes Laimer (4): sdn: evpn: prepare IPv6 underlay support sdn: evpn: keep router-id valid on IPv6 underlay sdn: stabilize peer IP ordering when generating sdn config sdn: evpn: add tests covering ipv6 underlays src/PVE/Network/SDN/Controllers/EvpnPlugin.pm | 68 ++++++++++++--- src/PVE/Network/SDN/Zones/EvpnPlugin.pm | 18 ++-- src/PVE/Network/SDN/Zones/VxlanPlugin.pm | 2 +- .../expected_controller_config | 63 ++++++++++++++ .../expected_sdn_interfaces | 58 +++++++++++++ .../exitnode_local_routing_ipv6/interfaces | 7 ++ .../exitnode_local_routing_ipv6/sdn_config | 27 ++++++ .../expected_controller_config | 85 +++++++++++++++++++ .../expected_sdn_interfaces | 64 ++++++++++++++ .../evpn/openfabric_fabric_ipv6/interfaces | 6 ++ .../evpn/openfabric_fabric_ipv6/sdn_config | 83 ++++++++++++++++++ .../expected_controller_config | 74 ++++++++++++++++ .../expected_sdn_interfaces | 58 +++++++++++++ .../openfabric_fabric_ipv6_only/interfaces | 6 ++ .../openfabric_fabric_ipv6_only/sdn_config | 79 +++++++++++++++++ 15 files changed, 679 insertions(+), 19 deletions(-) create mode 100644 src/test/zones/evpn/exitnode_local_routing_ipv6/expected_controller_config create mode 100644 src/test/zones/evpn/exitnode_local_routing_ipv6/expected_sdn_interfaces create mode 100644 src/test/zones/evpn/exitnode_local_routing_ipv6/interfaces create mode 100644 src/test/zones/evpn/exitnode_local_routing_ipv6/sdn_config create mode 100644 src/test/zones/evpn/openfabric_fabric_ipv6/expected_controller_config create mode 100644 src/test/zones/evpn/openfabric_fabric_ipv6/expected_sdn_interfaces create mode 100644 src/test/zones/evpn/openfabric_fabric_ipv6/interfaces create mode 100644 src/test/zones/evpn/openfabric_fabric_ipv6/sdn_config create mode 100644 src/test/zones/evpn/openfabric_fabric_ipv6_only/expected_controller_config create mode 100644 src/test/zones/evpn/openfabric_fabric_ipv6_only/expected_sdn_interfaces create mode 100644 src/test/zones/evpn/openfabric_fabric_ipv6_only/interfaces create mode 100644 src/test/zones/evpn/openfabric_fabric_ipv6_only/sdn_config Summary over all repositories: 15 files changed, 679 insertions(+), 19 deletions(-) -- Generated by murpp 0.11.0