From: "DERUMIER, Alexandre via pve-devel" <pve-devel@lists.proxmox.com>
To: "andrew@apalrd.net" <andrew@apalrd.net>
Cc: "DERUMIER, Alexandre" <alexandre.derumier@groupe-cyllene.com>,
"pve-devel@lists.proxmox.com" <pve-devel@lists.proxmox.com>
Subject: Re: [pve-devel] [PATCH ifupdown2 1/1] Correctly handle IPv6 addresses in vxlan
Date: Wed, 9 Oct 2024 15:37:55 +0000 [thread overview]
Message-ID: <mailman.246.1728488319.332.pve-devel@lists.proxmox.com> (raw)
In-Reply-To: <20241008040109.322473-2-andrew@apalrd.net>
[-- Attachment #1: Type: message/rfc822, Size: 19952 bytes --]
From: "DERUMIER, Alexandre" <alexandre.derumier@groupe-cyllene.com>
To: "andrew@apalrd.net" <andrew@apalrd.net>
Cc: "pve-devel@lists.proxmox.com" <pve-devel@lists.proxmox.com>
Subject: Re: [PATCH ifupdown2 1/1] Correctly handle IPv6 addresses in vxlan
Date: Wed, 9 Oct 2024 15:37:55 +0000
Message-ID: <9045eca45de7aa50fd817fb9221cfa04c524ff19.camel@groupe-cyllene.com>
Try to look at ifupdown2 github, their are 2 old pull request about
this (never merged/ never completed)
https://github.com/CumulusNetworks/ifupdown2/pull/172
"
For this we would need a new attribute vxlan-local-tunnelip6, we don't
want to reuse the same attribute for ipv6.
We are using netlink to configure vxlans, so it's important to use a
different attribute to set the proper netlink attribute (I don't want
to have things like if IPAddress(value).version == 6: set
Link.IFLA_VXLAN_LOCAL
"
https://github.com/CumulusNetworks/ifupdown2/pull/182
so, at minimum, this need to use a different "vxlan-local-tunnelip6"
attribute for ipv6
-------- Message initial --------
De: apalrd <andrew@apalrd.net>
À: pve-devel@lists.proxmox.com
Cc: apalrd <andrew@apalrd.net>
Objet: [PATCH ifupdown2 1/1] Correctly handle IPv6 addresses in vxlan
Date: 08/10/2024 06:01:09
---
ifupdown2/addons/vxlan.py | 26 ++++++++++++++++----------
1 file changed, 16 insertions(+), 10 deletions(-)
diff --git a/ifupdown2/addons/vxlan.py b/ifupdown2/addons/vxlan.py
index 084aec9..4aa8e50 100644
--- a/ifupdown2/addons/vxlan.py
+++ b/ifupdown2/addons/vxlan.py
@@ -51,7 +51,7 @@ class vxlan(Vxlan, moduleBase):
},
"vxlan-local-tunnelip": {
"help": "vxlan local tunnel ip",
- "validvals": ["<ipv4>"],
+ "validvals": ["<ipv4>,<ipv6>"],
"example": ["vxlan-local-tunnelip 172.16.20.103"]
},
"vxlan-svcnodeip": {
@@ -66,7 +66,7 @@ class vxlan(Vxlan, moduleBase):
},
"vxlan-remoteip": {
"help": "vxlan remote ip",
- "validvals": ["<ipv4>"],
+ "validvals": ["<ipv4>,<ipv6>"],
"example": ["vxlan-remoteip 172.16.22.127"],
"multiline": True
},
@@ -521,7 +521,7 @@ class vxlan(Vxlan, moduleBase):
local = self._vxlan_local_tunnelip
if link_exists:
- cached_ifla_vxlan_local =
cached_vxlan_ifla_info_data.get(Link.IFLA_VXLAN_LOCAL)
+ cached_ifla_vxlan_local =
cached_vxlan_ifla_info_data.get(Link.IFLA_VXLAN_LOCAL) or
cached_vxlan_ifla_info_data.get(Link.IFLA_VXLAN_LOCAL6)
# on ifreload do not overwrite anycast_ip to individual ip
# if clagd has modified
@@ -547,7 +547,7 @@ class vxlan(Vxlan, moduleBase):
if local:
try:
- local = ipnetwork.IPv4Address(local)
+ local = ipnetwork.IPAddress(local)
if local.initialized_with_prefixlen:
self.logger.warning("%s: vxlan-local-tunnelip %s:
netmask ignored" % (ifname, local))
@@ -559,13 +559,19 @@ class vxlan(Vxlan, moduleBase):
if local:
if local != cached_ifla_vxlan_local:
self.logger.info("%s: set vxlan-local-tunnelip %s" %
(ifname, local))
- user_request_vxlan_info_data[Link.IFLA_VXLAN_LOCAL] =
local
+ if local.version == 6:
+
user_request_vxlan_info_data[Link.IFLA_VXLAN_LOCAL6] = local
+ else:
+
user_request_vxlan_info_data[Link.IFLA_VXLAN_LOCAL] = local
# if both local-ip and anycast-ip are identical the
function prints a warning
self.syntax_check_localip_anycastip_equal(ifname,
local, self._clagd_vxlan_anycast_ip)
elif cached_ifla_vxlan_local:
self.logger.info("%s: removing vxlan-local-tunnelip (cache
%s)" % (ifname, cached_ifla_vxlan_local))
- user_request_vxlan_info_data[Link.IFLA_VXLAN_LOCAL] = None
+ if cached_ifla_vxlan_local.version == 6:
+ user_request_vxlan_info_data[Link.IFLA_VXLAN_LOCAL6] =
None
+ else:
+ user_request_vxlan_info_data[Link.IFLA_VXLAN_LOCAL] =
None
return local
@@ -1236,7 +1242,7 @@ class vxlan(Vxlan, moduleBase):
if remoteips:
try:
for remoteip in remoteips:
- ipnetwork.IPv4Address(remoteip)
+ ipnetwork.IPAddress(remoteip)
except Exception as e:
self.log_error('%s: vxlan-remoteip: %s' %
(ifaceobj.name, str(e)))
@@ -1244,7 +1250,7 @@ class vxlan(Vxlan, moduleBase):
# purge any removed remote ip
old_remoteips = self.get_old_remote_ips(ifaceobj.name)
- if vxlan_purge_remotes or remoteips or (remoteips !=
old_remoteips):
+ if vxlan_purge_remotes or (isinstance(remoteips,list) and
remoteips != old_remoteips):
# figure out the diff for remotes and do the bridge fdb
updates
# only if provisioned by user and not by an vxlan external
# controller.
@@ -1281,8 +1287,8 @@ class vxlan(Vxlan, moduleBase):
"00:00:00:00:00:00",
None, True, addr
)
- except Exception:
- pass
+ except Exception as e:
+ self.log_error('%s: vxlan-remoteip<add>: %s' %
(ifaceobj.name, str(e)))
self.vxlan_remote_ip_map(ifaceobj, vxlan_mcast_grp_map)
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
next prev parent reply other threads:[~2024-10-09 15:38 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20241008040109.322473-1-andrew@apalrd.net>
2024-10-08 4:01 ` apalrd via pve-devel
2025-01-23 9:26 ` Stefan Hanreich
2025-03-31 4:45 ` Andrew via pve-devel
[not found] ` <DE78AE8B-31EE-447A-962D-719F3C924700@apalrd.net>
2025-03-31 7:22 ` Stefan Hanreich
2025-03-31 14:38 ` Andrew via pve-devel
[not found] ` <20241008040109.322473-2-andrew@apalrd.net>
2024-10-09 15:37 ` DERUMIER, Alexandre via pve-devel [this message]
[not found] ` <9045eca45de7aa50fd817fb9221cfa04c524ff19.camel@groupe-cyllene.com>
2024-10-09 16:55 ` Andrew via pve-devel
[not found] ` <17214981-4406-4100-AFF6-9F70E12E421B@apalrd.net>
2024-10-09 21:05 ` DERUMIER, Alexandre via pve-devel
[not found] ` <99349e23b9a957cdf81d5bf2fa8c6af9f6b24ad0.camel@groupe-cyllene.com>
2024-11-25 10:25 ` Stefan Hanreich
2024-11-25 15:09 ` Andrew via pve-devel
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=mailman.246.1728488319.332.pve-devel@lists.proxmox.com \
--to=pve-devel@lists.proxmox.com \
--cc=alexandre.derumier@groupe-cyllene.com \
--cc=andrew@apalrd.net \
/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 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