From: Ondrej Zajicek (work) Date: Tue, 28 Jan 2020 17:07:25 +0000 (+0100) Subject: BFD: Option to specify which class of BFD sessions are accepted X-Git-Tag: v2.0.8~101 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7f9adafc109d576d5249c25ef284606dbac4adfa;p=thirdparty%2Fbird.git BFD: Option to specify which class of BFD sessions are accepted Allows to configure IPv4/IPv6-only or direct/multihop-only BFD protocol instances. --- diff --git a/doc/bird.sgml b/doc/bird.sgml index 8548c9c6f..b965da878 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -1955,6 +1955,7 @@ milliseconds. protocol bfd [<name>] { + accept [ipv4|ipv6] [direct|multihop]; interface <interface pattern> { interval <time>; min rx interval <time>; @@ -1989,6 +1990,14 @@ protocol bfd [<name>] { + + A BFD protocol instance accepts (by default) all BFD session requests + (with regard to VRF restrictions, see above). This option controls + whether IPv4 / IPv6 and direct / multihop session requests are accepted + (and which listening sockets are opened). It can be used, for example, + to configure separate BFD protocol instances for IPv4 and for IPv6 + sessions. +