From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id CFABC1FF13F for ; Thu, 21 May 2026 15:09:10 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 33A0813D2F; Thu, 21 May 2026 15:09:09 +0200 (CEST) From: Stefan Hanreich To: pve-devel@lists.proxmox.com Subject: [PATCH pve-docs 1/1] sdn: fabrics: wireguard: update endpoint documentation Date: Thu, 21 May 2026 15:08:54 +0200 Message-ID: <20260521130857.373765-1-s.hanreich@proxmox.com> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1779368926829 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.601 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: 75VECYBHEHIJFEYKMVPJUPABE2HCKD52 X-Message-ID-Hash: 75VECYBHEHIJFEYKMVPJUPABE2HCKD52 X-MailFrom: s.hanreich@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: The split of the endpoint field into endpoint + port field has been reverted. Update the documentation to reflect this change as well. Since this has caused confusion while testing, add explicit examples on the expected values for internal / external nodes respectively. Signed-off-by: Stefan Hanreich --- pvesdn.adoc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pvesdn.adoc b/pvesdn.adoc index 8b72283..f584526 100644 --- a/pvesdn.adoc +++ b/pvesdn.adoc @@ -883,11 +883,12 @@ definitions that can be used across the whole cluster. .Internal Endpoint:: This is the IP or hostname that other Proxmox VE nodes should use for -connecting to this Proxmox VE node. This is used together with the endpoint port -when configuring this Proxmox VE node as a peer. - -Endpoint Port:: This is the UDP port that other Proxmox VE nodes should use for -connecting to this Proxmox VE node. If unset, it defaults to `51820`. +connecting to this Proxmox VE node (e.g. `192.0.2.1` / `2001:db8::1`). This is +used together with the 'Listen Port' configured on the separate interfaces for +constructing the actual endpoint. For instance, if a node has the IP `192.0.2.1` +as an 'Endpoint' and an interface `wg0` with 'Listen Port' `51820` configured, +then other nodes will use `192.0.2.1:51820` as endpoint for connecting to this +node. Allowed IPs:: A comma-separated list of CIDRs (for example `198.51.100.0/24`, or `0.0.0.0/0` to tunnel all IPv4 traffic). When selecting this node as a peer @@ -901,11 +902,10 @@ Name:: The name of the external node. Public Key:: The public key used by the external node. -Endpoint:: The IP or hostname that other nodes use to connect to this external -peer. - -Endpoint Port:: The UDP port that other nodes use to connect to this external -peer. If unset, it defaults to `51820`. +Endpoint:: The IP or hostname together with the port that other nodes use to +connect to this external peer (e.g. `192.0.2.1:51820`). If an endpoint uses an +IPv6 address, then the address needs to be enclosed in square brackets (e.g. +`[2001:db8::1]:51820`). Allowed IPs:: A comma-separated list of CIDRs (for example `198.51.100.0/24`, or `0.0.0.0/0` to tunnel all IPv4 traffic). When selecting this node as a peer -- 2.47.3