]> git.puffer.fish Git - mirror/frr.git/commit
zebra: importation of bgp evpn rt5 from vni with other netns
authorPhilippe Guibert <philippe.guibert@6wind.com>
Thu, 26 Sep 2019 16:49:59 +0000 (18:49 +0200)
committerAnuradha Karuppiah <anuradhak@cumulusnetworks.com>
Tue, 18 Aug 2020 16:25:06 +0000 (09:25 -0700)
commit07509878e37b7f6ce75e4168e450cee3b36f24e9
treee22fc9a77bf37d4b442b52d87b3b11ab15e03f0b
parentf088c4e77db8d31d9d1c5f8f027acc84cde0b28d
zebra: importation of bgp evpn rt5 from vni with other netns

With vrf-lite mechanisms, it is possible to create layer 3 vnis by
creating a bridge interface in default vr, by creating a vxlan interface
that is attached to that bridge interface, then by moving the vxlan
interface to the wished vrf.
With vrf-netns mechanism, it is slightly different since bridged
interfaces can not be separated in different network namespaces. To make
it work, the setup consists in :
- creating a vxlan interface on default vrf.
- move the vxlan interface to the wished vrf ( with an other netns)
- create a bridge interface in the wished vrf
- attach the vxlan interface to that bridged interface

from that point, if BGP is enabled to advertise vnis in default vrf,
then vxlan interfaces are discovered appropriately in other vrfs,
provided that the link interface still resides in the vrf where l2vpn is
advertised.
to import ipv4 entries from a separate vrf, into the l2vpn, the
configuration of vni in the dedicated vrf + the advertisement of ipv4
entries in bgp vrf will import the entries in the bgp l2vpn.

the modification consists in parsing the vxlan interfaces in all network
namespaces, where the link resides in the same network namespace as the
bgp core instance where bgp l2vpn is enabled.

Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
lib/netns_linux.c
lib/netns_other.c
lib/ns.h
zebra/zebra_ns.c
zebra/zebra_ns.h
zebra/zebra_vxlan.c