all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH pve-network 00/10] bgp/evpn improvements
@ 2022-02-11  9:33 Alexandre Derumier
  2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 01/10] zones: status : skip node if node don't have the zone Alexandre Derumier
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Alexandre Derumier @ 2022-02-11  9:33 UTC (permalink / raw)
  To: pve-devel

This patch series include a lot of new evpn features requested by user forum
and add some fixes/cleanup with new frr version

Alexandre Derumier (10):
  zones: status : skip node if node don't have the zone
  controllers: bgp: use loopback ip src for loopback network
  controllers: bgp: add bgp-multipath-as-path-relax option
  controllers: evpn : add min/max value to asn
  controllers: evpn/bgp : add exitnodes-primary && rework route-map
  controllers: evpn: add missing bgp router-id in vrf
  zones: evpn : add rt-import
  controllers: evpn : remove "no bgp ebgp-requires-policy"
  controllers: bgp : remove bgp network import-check
  controllers: evpn : remove ip forwarding, ipv6 forwarding and add frr
    version

 PVE/Network/SDN/Controllers/BgpPlugin.pm      | 23 ++++++-
 PVE/Network/SDN/Controllers/EvpnPlugin.pm     | 54 +++++++++++++++--
 PVE/Network/SDN/Zones.pm                      |  1 +
 PVE/Network/SDN/Zones/EvpnPlugin.pm           | 31 +++++++++-
 .../expected_controller_config                | 11 ++--
 .../expected_controller_config                | 11 ++--
 .../evpn/ebgp/expected_controller_config      | 13 ++--
 .../ebgp_loopback/expected_controller_config  | 19 ++++--
 .../evpn/exitnode/expected_controller_config  | 11 ++--
 .../expected_controller_config                | 11 ++--
 .../expected_controller_config                | 60 +++++++++++++++++++
 .../exitnode_primary/expected_sdn_interfaces  | 41 +++++++++++++
 test/zones/evpn/exitnode_primary/interfaces   |  7 +++
 test/zones/evpn/exitnode_primary/sdn_config   | 26 ++++++++
 .../exitnode_snat/expected_controller_config  | 11 ++--
 .../evpn/ipv4/expected_controller_config      | 11 ++--
 .../evpn/ipv4ipv6/expected_controller_config  | 11 ++--
 .../expected_controller_config                | 11 ++--
 .../evpn/ipv6/expected_controller_config      | 11 ++--
 .../expected_controller_config                | 46 ++++++++++++++
 .../multipath_relax/expected_sdn_interfaces   | 41 +++++++++++++
 test/zones/evpn/multipath_relax/interfaces    |  7 +++
 test/zones/evpn/multipath_relax/sdn_config    | 49 +++++++++++++++
 .../evpn/rt_import/expected_controller_config | 40 +++++++++++++
 .../evpn/rt_import/expected_sdn_interfaces    | 42 +++++++++++++
 test/zones/evpn/rt_import/interfaces          |  7 +++
 test/zones/evpn/rt_import/sdn_config          | 26 ++++++++
 27 files changed, 575 insertions(+), 57 deletions(-)
 create mode 100644 test/zones/evpn/exitnode_primary/expected_controller_config
 create mode 100644 test/zones/evpn/exitnode_primary/expected_sdn_interfaces
 create mode 100644 test/zones/evpn/exitnode_primary/interfaces
 create mode 100644 test/zones/evpn/exitnode_primary/sdn_config
 create mode 100644 test/zones/evpn/multipath_relax/expected_controller_config
 create mode 100644 test/zones/evpn/multipath_relax/expected_sdn_interfaces
 create mode 100644 test/zones/evpn/multipath_relax/interfaces
 create mode 100644 test/zones/evpn/multipath_relax/sdn_config
 create mode 100644 test/zones/evpn/rt_import/expected_controller_config
 create mode 100644 test/zones/evpn/rt_import/expected_sdn_interfaces
 create mode 100644 test/zones/evpn/rt_import/interfaces
 create mode 100644 test/zones/evpn/rt_import/sdn_config

-- 
2.30.2




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

end of thread, other threads:[~2022-02-14  7:12 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-11  9:33 [pve-devel] [PATCH pve-network 00/10] bgp/evpn improvements Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 01/10] zones: status : skip node if node don't have the zone Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 02/10] controllers: bgp: use loopback ip src for loopback network Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 03/10] controllers: bgp: add bgp-multipath-as-path-relax option Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 04/10] controllers: evpn : add min/max value to asn Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 05/10] controllers: evpn/bgp : add exitnodes-primary && rework route-map Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 06/10] controllers: evpn: add missing bgp router-id in vrf Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 07/10] zones: evpn : add rt-import Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 08/10] controllers: evpn : remove "no bgp ebgp-requires-policy" Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 09/10] controllers: bgp : remove bgp network import-check Alexandre Derumier
2022-02-11  9:33 ` [pve-devel] [PATCH pve-network 10/10] controllers: evpn : remove ip forwarding, ipv6 forwarding and add frr version Alexandre Derumier
2022-02-14  7:12 ` [pve-devel] applied-series: [PATCH pve-network 00/10] bgp/evpn improvements Thomas Lamprecht

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.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal