From: Stefan Hanreich <s.hanreich@proxmox.com>
To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>,
Christoph Heiss <c.heiss@proxmox.com>
Subject: Re: [pve-devel] [PATCH proxmox{, -ve-rs} 00/11] sdn: add wireguard fabric configuration support
Date: Fri, 13 Feb 2026 11:14:06 +0100 [thread overview]
Message-ID: <56f3ac05-8215-46d8-9eb9-3c0fd475668e@proxmox.com> (raw)
In-Reply-To: <20260116153317.1146323-1-c.heiss@proxmox.com>
I've based my Wireguard Fabrics series on the ve-rs patches included
here, but they make some heavy modifications. Maybe it's better for me
to include them in my patch series and drop them from this one for now?
I've used the proxmox-wireguard crate in my series already, and it
worked quite well, bar some minor issues. I've included patches for most
of them in my series - or written a note in the review of this series.
Consider the proxmox parts:
Reviewed-by: Stefan Hanreich <s.hanreich@proxmox.com>
Tested-by: Stefan Hanreich <s.hanreich@proxmox.com>
On 1/16/26 4:33 PM, Christoph Heiss wrote:
> This series lays the groundwork with initial primitives and configuration
> support for adding WireGuard as a new SDN fabric to our stack in the
> future.
>
> Nothing of this code is actively used anywhere in the stack yet. I'm
> sending it early to a) make it more reviewable as a smaller series and
> b) potentially get in some prepratory work early.
>
> Stefan already has a working prototype for adding WireGuard as a new
> SDN fabric type, built on top of this.
>
> One of the bigger topics next up will be wiring up actual section config
> support for the fabric, which involves some challenges around proper
> key handling.
>
> Diffstat
> ========
>
> proxmox:
>
> Christoph Heiss (6):
> serde: implement ini serializer
> serde: add base64 module for byte arrays
> network-types: add ServiceEndpoint type as host/port tuple abstraction
> schema: provide integer schema for node ports
> schema: api-types: add ed25519 base64 encoded key schema
> wireguard: init configuration support crate
>
> Stefan Hanreich (2):
> wireguard: implement api for PublicKey
> wireguard: make per-peer preshared key optional
>
> Cargo.toml | 2 +
> proxmox-network-types/src/endpoint.rs | 154 +++++
> proxmox-network-types/src/lib.rs | 3 +-
> proxmox-schema/src/api_types.rs | 19 +-
> proxmox-serde/Cargo.toml | 2 +
> proxmox-serde/debian/control | 4 +
> proxmox-serde/src/ini.rs | 901 +++++++++++++++++++++++++
> proxmox-serde/src/lib.rs | 94 +++
> proxmox-wireguard/Cargo.toml | 27 +
> proxmox-wireguard/debian/changelog | 5 +
> proxmox-wireguard/debian/control | 67 ++
> proxmox-wireguard/debian/copyright | 18 +
> proxmox-wireguard/debian/debcargo.toml | 7 +
> proxmox-wireguard/src/lib.rs | 337 +++++++++
> 14 files changed, 1638 insertions(+), 2 deletions(-)
> create mode 100644 proxmox-network-types/src/endpoint.rs
> create mode 100644 proxmox-serde/src/ini.rs
> create mode 100644 proxmox-wireguard/Cargo.toml
> create mode 100644 proxmox-wireguard/debian/changelog
> create mode 100644 proxmox-wireguard/debian/control
> create mode 100644 proxmox-wireguard/debian/copyright
> create mode 100644 proxmox-wireguard/debian/debcargo.toml
> create mode 100644 proxmox-wireguard/src/lib.rs
>
> proxmox-ve-rs:
>
> Christoph Heiss (3):
> sdn-types: add wireguard-specific PersistentKeepalive api type
> ve-config: fabric: refactor fabric config entry impl using macro
> ve-config: sdn: fabrics: add wireguard section config types
>
> Cargo.toml | 1 +
> proxmox-sdn-types/src/lib.rs | 1 +
> proxmox-sdn-types/src/wireguard.rs | 43 ++++
> proxmox-ve-config/Cargo.toml | 2 +
> proxmox-ve-config/debian/control | 18 +-
> proxmox-ve-config/src/sdn/fabric/frr.rs | 1 +
> proxmox-ve-config/src/sdn/fabric/mod.rs | 199 +++++++++++++-----
> .../src/sdn/fabric/section_config/fabric.rs | 23 ++
> .../src/sdn/fabric/section_config/mod.rs | 19 ++
> .../src/sdn/fabric/section_config/node.rs | 33 ++-
> .../sdn/fabric/section_config/protocol/mod.rs | 1 +
> .../section_config/protocol/wireguard.rs | 162 ++++++++++++++
> 12 files changed, 442 insertions(+), 61 deletions(-)
> create mode 100644 proxmox-sdn-types/src/wireguard.rs
> create mode 100644 proxmox-ve-config/src/sdn/fabric/section_config/protocol/wireguard.rs
>
prev parent reply other threads:[~2026-02-13 10:13 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-16 15:33 Christoph Heiss
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox 01/11] serde: implement ini serializer Christoph Heiss
2026-02-11 16:36 ` Stefan Hanreich
2026-02-11 18:40 ` Christoph Heiss
2026-02-12 10:59 ` Stefan Hanreich
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox 02/11] serde: add base64 module for byte arrays Christoph Heiss
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox 03/11] network-types: add ServiceEndpoint type as host/port tuple abstraction Christoph Heiss
2026-02-13 10:11 ` Stefan Hanreich
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox 04/11] schema: provide integer schema for node ports Christoph Heiss
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox 05/11] schema: api-types: add ed25519 base64 encoded key schema Christoph Heiss
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox 06/11] wireguard: init configuration support crate Christoph Heiss
2026-02-13 10:13 ` Stefan Hanreich
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox 07/11] wireguard: implement api for PublicKey Christoph Heiss
2026-02-13 10:12 ` Stefan Hanreich
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox 08/11] wireguard: make per-peer preshared key optional Christoph Heiss
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox-ve-rs 09/11] sdn-types: add wireguard-specific PersistentKeepalive api type Christoph Heiss
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox-ve-rs 10/11] ve-config: fabric: refactor fabric config entry impl using macro Christoph Heiss
2026-01-16 15:33 ` [pve-devel] [PATCH proxmox-ve-rs 11/11] ve-config: sdn: fabrics: add wireguard section config types Christoph Heiss
2026-02-13 10:14 ` Stefan Hanreich [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56f3ac05-8215-46d8-9eb9-3c0fd475668e@proxmox.com \
--to=s.hanreich@proxmox.com \
--cc=c.heiss@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.