* [PATCH] vxlan: use preferred address family when neither group or remote is specified
@ 2017-03-09 20:05 Vincent Bernat
2017-03-20 17:18 ` Stephen Hemminger
0 siblings, 1 reply; 2+ messages in thread
From: Vincent Bernat @ 2017-03-09 20:05 UTC (permalink / raw)
To: shemminger, netdev; +Cc: Vincent Bernat
When neither group or remote is specified (or if they are specified with
the any address), nothing is sent to the kernel. In this case, the
kernel defaults to IPv4. This makes impossible to use IPv6 with
unspecified unicast remote ("bridge fdb add" will return
EAFNOTSUPPORT).
If the user specifies a preferred address family (eg, "ip -6 link add"),
then send either IFLA_VXLAN_GROUP or IFLA_VXLAN_GROUP6 to enforce the
use of the appropriate family.
Signed-off-by: Vincent Bernat <vincent@bernat.im>
---
ip/iplink_vxlan.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/ip/iplink_vxlan.c b/ip/iplink_vxlan.c
index 6d02bb47b2f0..fef7d3af4990 100644
--- a/ip/iplink_vxlan.c
+++ b/ip/iplink_vxlan.c
@@ -286,10 +286,14 @@ static int vxlan_parse_opt(struct link_util *lu, int argc, char **argv,
addattr_l(n, 1024, IFLA_VXLAN_GROUP, &gaddr, 4);
else if (daddr)
addattr_l(n, 1024, IFLA_VXLAN_GROUP, &daddr, 4);
- if (!IN6_IS_ADDR_UNSPECIFIED(&gaddr6))
+ else if (!IN6_IS_ADDR_UNSPECIFIED(&gaddr6))
addattr_l(n, 1024, IFLA_VXLAN_GROUP6, &gaddr6, sizeof(struct in6_addr));
else if (!IN6_IS_ADDR_UNSPECIFIED(&daddr6))
addattr_l(n, 1024, IFLA_VXLAN_GROUP6, &daddr6, sizeof(struct in6_addr));
+ else if (preferred_family == AF_INET)
+ addattr_l(n, 1024, IFLA_VXLAN_GROUP, &daddr, 4);
+ else if (preferred_family == AF_INET6)
+ addattr_l(n, 1024, IFLA_VXLAN_GROUP6, &daddr6, sizeof(struct in6_addr));
if (saddr)
addattr_l(n, 1024, IFLA_VXLAN_LOCAL, &saddr, 4);
--
2.11.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] vxlan: use preferred address family when neither group or remote is specified
2017-03-09 20:05 [PATCH] vxlan: use preferred address family when neither group or remote is specified Vincent Bernat
@ 2017-03-20 17:18 ` Stephen Hemminger
0 siblings, 0 replies; 2+ messages in thread
From: Stephen Hemminger @ 2017-03-20 17:18 UTC (permalink / raw)
To: Vincent Bernat; +Cc: shemminger, netdev
On Thu, 9 Mar 2017 21:05:42 +0100
Vincent Bernat <vincent@bernat.im> wrote:
> When neither group or remote is specified (or if they are specified with
> the any address), nothing is sent to the kernel. In this case, the
> kernel defaults to IPv4. This makes impossible to use IPv6 with
> unspecified unicast remote ("bridge fdb add" will return
> EAFNOTSUPPORT).
>
> If the user specifies a preferred address family (eg, "ip -6 link add"),
> then send either IFLA_VXLAN_GROUP or IFLA_VXLAN_GROUP6 to enforce the
> use of the appropriate family.
>
> Signed-off-by: Vincent Bernat <vincent@bernat.im>
Makes sense. Applied
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-03-20 17:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-09 20:05 [PATCH] vxlan: use preferred address family when neither group or remote is specified Vincent Bernat
2017-03-20 17:18 ` Stephen Hemminger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).