public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Alexandre Derumier <aderumier@odiso.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH v3 pve-network 0/6] evpn && bgp improvements
Date: Wed, 21 Apr 2021 23:49:20 +0200	[thread overview]
Message-ID: <20210421214926.1789330-1-aderumier@odiso.com> (raw)

- fix broken evpn tests since last commit
  https://lists.proxmox.com/pipermail/pve-devel/2021-April/047521.html 

- add ebgp-multihop option
  (replace https://lists.proxmox.com/pipermail/pve-devel/2021-April/047547.html)


Changelog v2:

- move mac address option from vnet to evpn zone(this is only need for evpn anycast gateway)
- readd lost ip-forward,ip6-forward,arp-accept since subnet implementation
- fix ipv6 snat
- tests : add ipv6 and ipv4v6 tests
- tests: add an hetzner routed setup with mutiple /32 && a full /29

Changelog v3:
- increase controllerid max characters

*** BLURB HERE ***

Alexandre Derumier (6):
  tests: fix evpn vrf
  bgp: add ebgp_multihop option
  zones: evpn: move vnet mac option to evpn zone plugin
  zones: evpn: fix arp-accept && ip-forward + ipv6 snat
  zones: simple: fix ip-forward && ipv6 snat
  controllers: increase controllerid to 64 characters max

 PVE/Network/SDN/Controllers/BgpPlugin.pm      |  7 +++
 PVE/Network/SDN/Controllers/Plugin.pm         |  2 +-
 PVE/Network/SDN/VnetPlugin.pm                 |  6 ---
 PVE/Network/SDN/Zones/EvpnPlugin.pm           | 46 +++++++++++++------
 PVE/Network/SDN/Zones/SimplePlugin.pm         | 34 ++++++++++----
 .../evpn/ebgp/expected_controller_config      |  1 +
 test/zones/evpn/ebgp/expected_sdn_interfaces  |  3 ++
 test/zones/evpn/ebgp/sdn_config               |  2 +-
 .../ebgp_loopback/expected_sdn_interfaces     |  3 ++
 .../evpn/exitnode/expected_sdn_interfaces     |  3 ++
 .../exitnode_snat/expected_sdn_interfaces     | 26 +++++++++++
 test/zones/evpn/exitnode_snat/sdn_config      | 12 ++++-
 test/zones/evpn/ipv4/expected_sdn_interfaces  |  4 ++
 test/zones/evpn/ipv4/sdn_config               |  2 +-
 .../evpn/ipv4ipv6/expected_controller_config  | 31 +++++++++++++
 .../evpn/ipv4ipv6/expected_sdn_interfaces     | 44 ++++++++++++++++++
 test/zones/evpn/ipv4ipv6/interfaces           |  7 +++
 test/zones/evpn/ipv4ipv6/sdn_config           | 32 +++++++++++++
 .../evpn/ipv6/expected_controller_config      | 31 +++++++++++++
 test/zones/evpn/ipv6/expected_sdn_interfaces  | 42 +++++++++++++++++
 test/zones/evpn/ipv6/interfaces               |  7 +++
 test/zones/evpn/ipv6/sdn_config               | 27 +++++++++++
 .../simple/hetzner/expected_sdn_interfaces    | 19 ++++++++
 test/zones/simple/hetzner/interfaces          |  6 +++
 test/zones/simple/hetzner/sdn_config          | 34 ++++++++++++++
 .../zones/simple/ipv4/expected_sdn_interfaces |  1 +
 .../simple/ipv4snat/expected_sdn_interfaces   |  1 +
 .../simple/ipv4v6/expected_sdn_interfaces     | 11 +++++
 test/zones/simple/ipv4v6/interfaces           |  5 ++
 test/zones/simple/ipv4v6/sdn_config           | 27 +++++++++++
 .../simple/ipv6snat/expected_sdn_interfaces   | 13 ++++++
 test/zones/simple/ipv6snat/interfaces         |  7 +++
 test/zones/simple/ipv6snat/sdn_config         | 24 ++++++++++
 33 files changed, 488 insertions(+), 32 deletions(-)
 create mode 100644 test/zones/evpn/ipv4ipv6/expected_controller_config
 create mode 100644 test/zones/evpn/ipv4ipv6/expected_sdn_interfaces
 create mode 100644 test/zones/evpn/ipv4ipv6/interfaces
 create mode 100644 test/zones/evpn/ipv4ipv6/sdn_config
 create mode 100644 test/zones/evpn/ipv6/expected_controller_config
 create mode 100644 test/zones/evpn/ipv6/expected_sdn_interfaces
 create mode 100644 test/zones/evpn/ipv6/interfaces
 create mode 100644 test/zones/evpn/ipv6/sdn_config
 create mode 100644 test/zones/simple/hetzner/expected_sdn_interfaces
 create mode 100644 test/zones/simple/hetzner/interfaces
 create mode 100644 test/zones/simple/hetzner/sdn_config
 create mode 100644 test/zones/simple/ipv4v6/expected_sdn_interfaces
 create mode 100644 test/zones/simple/ipv4v6/interfaces
 create mode 100644 test/zones/simple/ipv4v6/sdn_config
 create mode 100644 test/zones/simple/ipv6snat/expected_sdn_interfaces
 create mode 100644 test/zones/simple/ipv6snat/interfaces
 create mode 100644 test/zones/simple/ipv6snat/sdn_config

-- 
2.20.1




             reply	other threads:[~2021-04-21 21:50 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-21 21:49 Alexandre Derumier [this message]
2021-04-21 21:49 ` [pve-devel] [PATCH v3 pve-network 1/6] tests: fix evpn vrf Alexandre Derumier
2021-04-21 21:49 ` [pve-devel] [PATCH v3 pve-network 2/6] bgp: add ebgp_multihop option Alexandre Derumier
2021-04-21 21:49 ` [pve-devel] [PATCH v3 pve-network 3/6] zones: evpn: move vnet mac option to evpn zone plugin Alexandre Derumier
2021-04-21 21:49 ` [pve-devel] [PATCH v3 pve-network 4/6] zones: evpn: fix arp-accept && ip-forward + ipv6 snat Alexandre Derumier
2021-04-21 21:49 ` [pve-devel] [PATCH v3 pve-network 5/6] zones: simple: fix ip-forward && " Alexandre Derumier
2021-04-21 21:49 ` [pve-devel] [PATCH v3 pve-network 6/6] controllers: increase controllerid to 64 characters max Alexandre Derumier
2021-04-22  8:06 ` [pve-devel] applied-series: [PATCH v3 pve-network 0/6] evpn && bgp improvements Thomas Lamprecht

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=20210421214926.1789330-1-aderumier@odiso.com \
    --to=aderumier@odiso.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
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal