diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-04 07:28:26 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-04 07:37:55 +0100 |
commit | 9ad20a63b3f5557ea03e8778f29a173bb5f56cef (patch) | |
tree | 7d2b549193e7743076f62015267f887fdd3de60e /interface-definitions/include | |
parent | 63cadf52a4b8d8aa31a868c4b19e44a9eff12d37 (diff) | |
download | vyos-1x-9ad20a63b3f5557ea03e8778f29a173bb5f56cef.tar.gz vyos-1x-9ad20a63b3f5557ea03e8778f29a173bb5f56cef.zip |
bfd: T4043: add support for passive mode
Mark session as passive: a passive session will not attempt to start the
connection and will wait for control packets from peer before it begins
replying.
This feature is useful when you have a router that acts as the central node of
a star network and you want to avoid sending BFD control packets you don't
need to. The default is active-mode
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/bfd-common.xml.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/interface-definitions/include/bfd-common.xml.i b/interface-definitions/include/bfd-common.xml.i index 6021576f6..8379784f7 100644 --- a/interface-definitions/include/bfd-common.xml.i +++ b/interface-definitions/include/bfd-common.xml.i @@ -63,6 +63,12 @@ </leafNode> </children> </node> +<leafNode name="passive"> + <properties> + <help>Do not attempt to start sessions</help> + <valueless/> + </properties> +</leafNode> <leafNode name="shutdown"> <properties> <help>Disable this peer</help> |