]> git.ipfire.org Git - thirdparty/bird.git/commit
Basic VRF support
authorOndrej Zajicek (work) <santiago@crfreenet.org>
Wed, 6 Sep 2017 15:38:48 +0000 (17:38 +0200)
committerOndrej Zajicek (work) <santiago@crfreenet.org>
Wed, 6 Sep 2017 15:38:48 +0000 (17:38 +0200)
commit943478b00f585725c3e7406909ee867dcfac5f87
tree749b4b807d1da59d38e0c5ae2794ac52c8cd0507
parent98bb80a243b58c43453e9be69d19d0350286549c
Basic VRF support

Add basic VRF (virtual routing and forwarding) support. Protocols can be
associated with VRFs, such protocols will be restricted to interfaces
assigned to the VRF (as reported by Linux kernel) and will use sockets
bound to the VRF. E.g., different multihop BGP instances can use diffent
kernel routing tables to handle BGP TCP connections.

The VRF support is preliminary, currently there are several limitations:

- Recent Linux kernels (4.11) do not handle correctly sockets bound
to interaces that are part of VRF, so most protocols other than multihop
BGP do not work. This will be fixed by future kernel versions.

- Neighbor cache ignores VRFs. Breaks config with the same prefix on
local interfaces in different VRFs. Not much problem as single hop
protocols do not work anyways.

- Olock code ignores VRFs. Breaks config with multiple BGP peers with the
same IP address in different VRFs.

- Incoming BGP connections are not dispatched according to VRFs.
Breaks config with multiple BGP peers with the same IP address in
different VRFs. Perhaps we would need some kernel API to read VRF of
incoming connection? Or probably use multiple listening sockets in
int-new branch.

- We should handle master VRF interface up/down events and perhaps
disable associated protocols when VRF goes down. Or at least disable
associated interfaces.

- Also we should check if the master iface is really VRF iface and
not some other kind of master iface.

- BFD session request dispatch should be aware of VRFs.

- Perhaps kernel protocol should read default kernel table ID from VRF
iface so it is not necessary to configure it.

- Perhaps we should have per-VRF default table.
14 files changed:
doc/bird.sgml
lib/socket.h
nest/config.Y
nest/iface.c
nest/iface.h
nest/proto.c
nest/protocol.h
proto/babel/packets.c
proto/bgp/bgp.c
proto/ospf/iface.c
proto/radv/packets.c
proto/rip/packets.c
sysdep/linux/netlink.c
sysdep/unix/io.c