public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [PATCH docs/gui-tests/manager/network/proxmox{-ve-rs,-perl-rs} v2 00/11] Add IS-IS protocol to fabrics
@ 2026-02-19 15:25 Gabriel Goller
  2026-02-19 15:25 ` [PATCH proxmox-ve-rs v2 1/3] frr: add fabric properties to ISIS types and rename domain Gabriel Goller
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Gabriel Goller @ 2026-02-19 15:25 UTC (permalink / raw)
  To: pve-devel

As part of our effort to deprecate the existing controllers and transition
toward a fabric-based architecture, we are introducing an IS-IS fabric. To
centralize all routing protocols, we plan to consolidate them under the
"Fabrics" sidebar menu. Additionally, we aim to generate all routing protocol
configurations in a unified location using Rust.

Following the integration of OpenFabric and OSPF, the next logical step is to
migrate the IS-IS controller to the fabrics framework.

This patch series adds an IS-IS Fabric option to the "Fabrics" menu while
retaining the original IS-IS controller for backward compatibility. Since the
two do not interfere, we will include a warning recommending the use of the new
IS-IS Fabrics instead. The primary difference between the IS-IS Controller and
the IS-IS Fabric is that the Fabric does not automatically redistribute
connected routes into the Link State DB. This change is intentional, as we
intend to implement a more advanced redistribution and route-map mechanism in
the future, rather than relying on a simple checkbox. Users who need to
redistribute connected routes with the new IS-IS Fabrics can do so by manually
adding the appropriate FRR statement to the /etc/frr/frr.conf.local file.

This series relies on the template series:
https://lore.proxmox.com/pve-devel/20260203160246.353351-1-g.goller@proxmox.com/

Changelog:
v1: 
    * rebase ontop of template series

proxmox-ve-rs:

Gabriel Goller (3):
  frr: add fabric properties to ISIS types and rename domain
  ve-config: add IS-IS fabric config parsing and frr config generation
  ve-config: add integration tests for IS-IS fabrics

 proxmox-frr-templates/templates/isisd.jinja   |  23 +-
 proxmox-frr/src/ser/isis.rs                   |  33 ++-
 proxmox-frr/src/ser/mod.rs                    |  10 +
 proxmox-ve-config/src/sdn/fabric/frr.rs       | 240 ++++++++++++++++++
 proxmox-ve-config/src/sdn/fabric/mod.rs       | 130 ++++++++++
 .../src/sdn/fabric/section_config/fabric.rs   |  22 ++
 .../src/sdn/fabric/section_config/mod.rs      |  19 ++
 .../src/sdn/fabric/section_config/node.rs     |  21 ++
 .../fabric/section_config/protocol/isis.rs    | 151 +++++++++++
 .../sdn/fabric/section_config/protocol/mod.rs |   1 +
 .../tests/fabric/cfg/isis_default/fabrics.cfg |  18 ++
 .../fabric/cfg/isis_dualstack/fabrics.cfg     |  22 ++
 .../fabric/cfg/isis_ipv6_only/fabrics.cfg     |  18 ++
 proxmox-ve-config/tests/fabric/main.rs        |  63 +++++
 .../snapshots/fabric__isis_default_pve.snap   |  36 +++
 .../snapshots/fabric__isis_default_pve1.snap  |  35 +++
 .../snapshots/fabric__isis_dualstack_pve.snap |  48 ++++
 .../snapshots/fabric__isis_ipv6_only_pve.snap |  37 +++
 18 files changed, 921 insertions(+), 6 deletions(-)
 create mode 100644 proxmox-ve-config/src/sdn/fabric/section_config/protocol/isis.rs
 create mode 100644 proxmox-ve-config/tests/fabric/cfg/isis_default/fabrics.cfg
 create mode 100644 proxmox-ve-config/tests/fabric/cfg/isis_dualstack/fabrics.cfg
 create mode 100644 proxmox-ve-config/tests/fabric/cfg/isis_ipv6_only/fabrics.cfg
 create mode 100644 proxmox-ve-config/tests/fabric/snapshots/fabric__isis_default_pve.snap
 create mode 100644 proxmox-ve-config/tests/fabric/snapshots/fabric__isis_default_pve1.snap
 create mode 100644 proxmox-ve-config/tests/fabric/snapshots/fabric__isis_dualstack_pve.snap
 create mode 100644 proxmox-ve-config/tests/fabric/snapshots/fabric__isis_ipv6_only_pve.snap


proxmox-perl-rs:

Gabriel Goller (2):
  pve-rs: fabrics: add IS-IS protocol ifupdown config generation
  sdn: add IS-IS fabric status reporting

 pve-rs/src/bindings/sdn/fabrics.rs | 143 +++++++++++++++++++++++++++++
 pve-rs/src/sdn/status.rs           |  15 +++
 2 files changed, 158 insertions(+)


pve-network:

Gabriel Goller (2):
  fabrics: add IS-IS api types
  sdn: controllers: rename isis domain to fabric_id

 src/PVE/Network/SDN/Controllers/IsisPlugin.pm |  2 +-
 src/PVE/Network/SDN/Fabrics.pm                | 47 ++++++++++++++++---
 src/PVE/Network/SDN/Frr.pm                    |  1 +
 3 files changed, 43 insertions(+), 7 deletions(-)


pve-manager:

Gabriel Goller (2):
  fabrics: add IS-IS panels
  sdn: add warning about IS-IS controller deprecation

 www/manager6/Makefile                         |  3 +
 www/manager6/sdn/FabricsView.js               | 12 ++++
 www/manager6/sdn/controllers/IsisEdit.js      |  5 ++
 www/manager6/sdn/fabrics/NodeEdit.js          |  1 +
 www/manager6/sdn/fabrics/isis/FabricEdit.js   | 69 +++++++++++++++++++
 .../sdn/fabrics/isis/InterfacePanel.js        | 34 +++++++++
 www/manager6/sdn/fabrics/isis/NodeEdit.js     | 22 ++++++
 7 files changed, 146 insertions(+)
 create mode 100644 www/manager6/sdn/fabrics/isis/FabricEdit.js
 create mode 100644 www/manager6/sdn/fabrics/isis/InterfacePanel.js
 create mode 100644 www/manager6/sdn/fabrics/isis/NodeEdit.js


pve-docs:

Gabriel Goller (1):
  sdn: add section about IS-IS fabric

 pvesdn.adoc | 111 +++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 105 insertions(+), 6 deletions(-)


pve-gui-tests:

Gabriel Goller (1):
  fabrics: add screenshots for IS-IS fabric and nodes

 create_fabrics_screenshots | 43 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)


Summary over all repositories:
  32 files changed, 1416 insertions(+), 19 deletions(-)

-- 
Generated by git-murpp 0.8.0




^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2026-02-19 15:26 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-19 15:25 [PATCH docs/gui-tests/manager/network/proxmox{-ve-rs,-perl-rs} v2 00/11] Add IS-IS protocol to fabrics Gabriel Goller
2026-02-19 15:25 ` [PATCH proxmox-ve-rs v2 1/3] frr: add fabric properties to ISIS types and rename domain Gabriel Goller
2026-02-19 15:25 ` [PATCH proxmox-ve-rs v2 2/3] ve-config: add IS-IS fabric config parsing and frr config generation Gabriel Goller
2026-02-19 15:25 ` [PATCH proxmox-ve-rs v2 3/3] ve-config: add integration tests for IS-IS fabrics Gabriel Goller
2026-02-19 15:25 ` [PATCH proxmox-perl-rs v2 1/2] pve-rs: fabrics: add IS-IS protocol ifupdown config generation Gabriel Goller
2026-02-19 15:25 ` [PATCH proxmox-perl-rs v2 2/2] sdn: add IS-IS fabric status reporting Gabriel Goller
2026-02-19 15:25 ` [PATCH pve-network v2 1/2] fabrics: add IS-IS api types Gabriel Goller
2026-02-19 15:25 ` [PATCH pve-network v2 2/2] sdn: controllers: rename isis domain to fabric_id Gabriel Goller
2026-02-19 15:25 ` [PATCH pve-manager v2 1/2] fabrics: add IS-IS panels Gabriel Goller
2026-02-19 15:25 ` [PATCH pve-manager v2 2/2] sdn: add warning about IS-IS controller deprecation Gabriel Goller
2026-02-19 15:25 ` [PATCH pve-docs v2 1/1] sdn: add section about IS-IS fabric Gabriel Goller
2026-02-19 15:25 ` [PATCH pve-gui-tests v2 1/1] fabrics: add screenshots for IS-IS fabric and nodes Gabriel Goller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal