diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-12 10:11:49 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-12 11:09:20 +0100 |
commit | 6fab523565015fd4da5d7295bad684cb969e5d12 (patch) | |
tree | a557473e1cb3d6643c7de90edacc7dabd99003f4 /interface-definitions/include/bgp | |
parent | aca9d98c818407b8009bb861ec0f5a817a9a5637 (diff) | |
download | vyos-1x-6fab523565015fd4da5d7295bad684cb969e5d12.tar.gz vyos-1x-6fab523565015fd4da5d7295bad684cb969e5d12.zip |
bgp: T4069: add "parameters suppress-fib-pending" CLI option
This command is applicable at the global level and at an individual bgp level.
If applied at the global level all bgp instances will wait for fib installation
before announcing routes and there is no way to turn it off for a particular
BGP vrf.
Diffstat (limited to 'interface-definitions/include/bgp')
-rw-r--r-- | interface-definitions/include/bgp/protocol-common-config.xml.i | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/interface-definitions/include/bgp/protocol-common-config.xml.i b/interface-definitions/include/bgp/protocol-common-config.xml.i index 2b2d6fa82..8214d0779 100644 --- a/interface-definitions/include/bgp/protocol-common-config.xml.i +++ b/interface-definitions/include/bgp/protocol-common-config.xml.i @@ -1442,6 +1442,12 @@ <valueless/> </properties> </leafNode> + <leafNode name="suppress-fib-pending"> + <properties> + <help>Advertise only routes that are programmed in kernel to peers</help> + <valueless/> + </properties> + </leafNode> #include <include/router-id.xml.i> </children> </node> @@ -1491,4 +1497,4 @@ #include <include/bgp/timers-keepalive.xml.i> </children> </node> -<!-- include end -->
\ No newline at end of file +<!-- include end --> |