Previously the network-type option on OSPF interfaces was set to either
point-to-point or broadcast, depending on if an ip address was configured on
the interface. This is not enough, as some users want to have a switched
network (e.g. switch) between their nodes, which calls for the
point-to-multipoint network type.
In order to uphold backwards-compatibility, make network-type an `Option`,
where `None` will be the "automatic" network-type selection we had before.
┌──────────┐ ┌──────────────┐ ┌───────────────────┐ ┌───┐
│None(auto)│ │Point-to-Point│ │Point-to-Multipoint│ │...│
└────┬─────┘ └──────────────┘ └───────────────────┘ └───┘
│
▼
┌─────────────────┐
│Is there an ip │
│on the interface?│
└──┬────────────┬─┘
│no │yes
▼ ▼
┌──────────────┐ ┌────────────────────────┐
│Point-to-Point│ │No FRR network statement│
└──────────────┘ └───────────┬────────────┘
│
▼
┌────────────────────────────┐
│FRR selects either Broadcast│
│Point-to-Point or Loopback │
│(internal network-type) │
└────────────────────────────┘
This series relies on the template series:
https://lore.proxmox.com/pve-devel/[email protected]/
proxmox-ve-rs:
Gabriel Goller (2):
cargo: bump proxmox-network-types
fabrics: ospf: expose network-type interface property
Cargo.toml | 2 +-
proxmox-frr/debian/control | 4 +--
proxmox-frr/src/ser/ospf.rs | 27 +---------------
proxmox-sdn-types/debian/control | 3 +-
proxmox-sdn-types/src/lib.rs | 1 +
proxmox-sdn-types/src/ospf.rs | 32 +++++++++++++++++++
proxmox-ve-config/debian/control | 8 ++---
proxmox-ve-config/src/sdn/fabric/frr.rs | 13 +++++---
.../fabric/section_config/protocol/ospf.rs | 6 ++++
9 files changed, 57 insertions(+), 39 deletions(-)
create mode 100644 proxmox-sdn-types/src/ospf.rs
pve-network:
Gabriel Goller (1):
fabrics: add ospf network_type property to interfaces
src/PVE/Network/SDN/Fabrics.pm | 11 +++++++++++
1 file changed, 11 insertions(+)
pve-manager:
Gabriel Goller (1):
fabrics: ospf: add network-type property in interface panel
.../sdn/fabrics/ospf/InterfacePanel.js | 49 +++++++++++++++++++
1 file changed, 49 insertions(+)
Summary over all repositories:
11 files changed, 117 insertions(+), 39 deletions(-)
--
Generated by git-murpp 0.8.0