From: Gabriel Goller <g.goller@proxmox.com>
To: Hannes Laimer <h.laimer@proxmox.com>
Cc: pve-devel@lists.proxmox.com
Subject: Re: [PATCH pve-network] sdn: controller: prevent invalid router-id generation from zero mac
Date: Wed, 18 Feb 2026 10:54:22 +0100 [thread overview]
Message-ID: <3stymqcvqw3kryvopo7adntrpnwxpnijrhehag6ggalnkie2yl@ksc45ja7t6qk> (raw)
In-Reply-To: <20260213063844.2486-1-h.laimer@proxmox.com>
On 13.02.2026 07:38, Hannes Laimer wrote:
> When a standard loopback interface is used, the retrieved MAC is
> typically 00:00:00:00:00:00. This causes the router-id generation logic
> to produce "0.0.0.0", which is an invalid BGP ID.
>
> Explicitly check for a zero MAC address and fail with a descriptive
> error.
>
> Signed-off-by: Hannes Laimer <h.laimer@proxmox.com>
> ---
LGTM!
Consider:
Reviewed-by: Gabriel Goller <g.goller@proxmox.com>
> src/PVE/Network/SDN/Controllers/Plugin.pm | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/src/PVE/Network/SDN/Controllers/Plugin.pm b/src/PVE/Network/SDN/Controllers/Plugin.pm
> index d70e518..54d6402 100644
> --- a/src/PVE/Network/SDN/Controllers/Plugin.pm
> +++ b/src/PVE/Network/SDN/Controllers/Plugin.pm
> @@ -118,6 +118,11 @@ sub get_router_id {
>
> die "can't autofind a router-id value from ip or mac" if !$mac;
>
> + if ($mac eq '00:00:00:00:00:00') {
> + die "Interface $iface has a zero MAC address. Cannot derive a BGP router-id. "
> + . "Please use a dummy interface or assign an IPv4 address to $iface.\n";
> + }
> +
> my @mac_bytes = split(':', $mac);
> return
> hex($mac_bytes[2]) . "."
> --
> 2.47.3
prev parent reply other threads:[~2026-02-18 9:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-13 6:38 Hannes Laimer
2026-02-18 9:54 ` Gabriel Goller [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=3stymqcvqw3kryvopo7adntrpnwxpnijrhehag6ggalnkie2yl@ksc45ja7t6qk \
--to=g.goller@proxmox.com \
--cc=h.laimer@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.