From: Hannes Laimer <h.laimer@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH pve-network v4 4/7] sdn: fabrics: register bgp as a fabric protocol type
Date: Tue, 12 May 2026 16:13:02 +0200 [thread overview]
Message-ID: <20260512141305.199664-5-h.laimer@proxmox.com> (raw)
In-Reply-To: <20260512141305.199664-1-h.laimer@proxmox.com>
Add 'bgp' to the pve-sdn-fabric-protocol enum so it can be selected
when creating or updating fabric configurations via the API.
Signed-off-by: Hannes Laimer <h.laimer@proxmox.com>
---
src/PVE/Network/SDN/Fabrics.pm | 62 +++++++++++++++++++++++++++++++-
src/PVE/Network/SDN/RouteMaps.pm | 15 ++++++++
2 files changed, 76 insertions(+), 1 deletion(-)
diff --git a/src/PVE/Network/SDN/Fabrics.pm b/src/PVE/Network/SDN/Fabrics.pm
index 09273de..29a7cad 100644
--- a/src/PVE/Network/SDN/Fabrics.pm
+++ b/src/PVE/Network/SDN/Fabrics.pm
@@ -51,7 +51,7 @@ PVE::JSONSchema::register_standard_option(
{
description => "Type of configuration entry in an SDN Fabric section config",
type => 'string',
- enum => ['openfabric', 'ospf', 'wireguard'],
+ enum => ['openfabric', 'ospf', 'wireguard', 'bgp'],
},
);
@@ -251,6 +251,21 @@ sub node_properties {
description => 'WireGuard network interface',
optional => 1,
},
+ {
+ 'instance-types' => ['bgp'],
+ items => {
+ type => 'string',
+ format => {
+ name => {
+ type => 'string',
+ format => 'pve-iface',
+ description => 'Name of the network interface',
+ },
+ },
+ },
+ description => 'BGP network interface',
+ optional => 1,
+ },
],
},
public_key => {
@@ -332,6 +347,15 @@ sub node_properties {
type => 'array',
'type-property' => 'protocol',
oneOf => [
+ {
+ type => 'array',
+ 'instance-types' => ['bgp'],
+ items => {
+ type => 'string',
+ enum => ['interfaces', 'ip', 'ip6'],
+ },
+ optional => 1,
+ },
{
type => 'array',
'instance-types' => ['openfabric', 'ospf'],
@@ -444,12 +468,39 @@ sub fabric_properties {
'The protocol from which to redistribute routes from.',
enum => [
'bgp',
+ 'connected',
+ 'kernel',
+ 'static',
+ ],
+ },
+ },
+ },
+ optional => 1,
+ },
+ {
+ type => 'array',
+ 'instance-types' => ['bgp'],
+ items => {
+ type => 'string',
+ format => {
+ source => {
+ type => 'string',
+ description =>
+ 'The protocol from which to redistribute routes from.',
+ enum => [
'connected',
'kernel',
'ospf',
'static',
],
},
+ 'route-map' => {
+ type => 'string',
+ format => 'pve-sdn-route-map-id',
+ description =>
+ 'Route map to filter or transform redistributed routes from this source.',
+ optional => 1,
+ },
},
},
optional => 1,
@@ -473,6 +524,15 @@ sub fabric_properties {
},
optional => 1,
},
+ {
+ type => 'array',
+ 'instance-types' => ['bgp'],
+ items => {
+ type => 'string',
+ enum => ['redistribute', 'route_filter', 'route_map_in', 'route_map_out'],
+ },
+ optional => 1,
+ },
{
type => 'array',
'instance-types' => ['ospf'],
diff --git a/src/PVE/Network/SDN/RouteMaps.pm b/src/PVE/Network/SDN/RouteMaps.pm
index 5560f18..cd16f5e 100644
--- a/src/PVE/Network/SDN/RouteMaps.pm
+++ b/src/PVE/Network/SDN/RouteMaps.pm
@@ -125,6 +125,21 @@ sub check_references {
if $controller->{'route-map-out'} eq $route_map_id;
}
}
+
+ my $fabrics = PVE::Network::SDN::Fabrics::config()->list_fabrics();
+ for my $fabric_id (keys $fabrics->%*) {
+ my $fabric = $fabrics->{$fabric_id};
+
+ if ($fabric->{route_map_in}) {
+ die "route map $route_map_id still referenced by fabric $fabric_id"
+ if $fabric->{route_map_in} eq $route_map_id;
+ }
+
+ if ($fabric->{route_map_out}) {
+ die "route map $route_map_id still referenced by fabric $fabric_id"
+ if $fabric->{route_map_out} eq $route_map_id;
+ }
+ }
}
sub route_map_properties {
--
2.47.3
next prev parent reply other threads:[~2026-05-12 14:14 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-12 14:12 [PATCH docs/manager/network/proxmox{-ve-rs,-perl-rs} v4 0/7] sdn: add BGP fabric Hannes Laimer
2026-05-12 14:12 ` [PATCH proxmox-ve-rs v4 1/7] sdn: fabric: add BGP protocol support Hannes Laimer
2026-05-13 12:29 ` Stefan Hanreich
2026-05-13 13:00 ` Hannes Laimer
2026-05-12 14:13 ` [PATCH proxmox-perl-rs v4 2/7] sdn: fabrics: add BGP config generation Hannes Laimer
2026-05-12 14:13 ` [PATCH proxmox-perl-rs v4 3/7] sdn: fabrics: add BGP status endpoints Hannes Laimer
2026-05-13 12:33 ` Stefan Hanreich
2026-05-13 13:02 ` Hannes Laimer
2026-05-12 14:13 ` Hannes Laimer [this message]
2026-05-12 14:13 ` [PATCH pve-network v4 5/7] test: evpn: add integration test for EVPN over BGP fabric Hannes Laimer
2026-05-12 14:13 ` [PATCH pve-manager v4 6/7] ui: sdn: add BGP fabric support Hannes Laimer
2026-05-13 12:38 ` Stefan Hanreich
2026-05-12 14:13 ` [PATCH pve-docs v4 7/7] sdn: add bgp fabric section Hannes Laimer
2026-05-13 12:39 ` [PATCH docs/manager/network/proxmox{-ve-rs,-perl-rs} v4 0/7] sdn: add BGP fabric Stefan Hanreich
2026-05-13 18:43 ` superseded: " Hannes Laimer
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=20260512141305.199664-5-h.laimer@proxmox.com \
--to=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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox