summaryrefslogtreecommitdiff
path: root/data/templates/frr/bgpd.frr.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-12-12 10:06:17 +0100
committerChristian Poessinger <christian@poessinger.com>2021-12-12 10:13:43 +0100
commitee2c84b2f0cc13d71122bd2ee0640bb13aa8040e (patch)
treeeac90d5169842fef82cdd078dbf43f5a44542e92 /data/templates/frr/bgpd.frr.tmpl
parentede5ba7c1e9e5e2862f91d3082b50b71a1ffe920 (diff)
downloadvyos-1x-ee2c84b2f0cc13d71122bd2ee0640bb13aa8040e.tar.gz
vyos-1x-ee2c84b2f0cc13d71122bd2ee0640bb13aa8040e.zip
bgp: T4069: add "parameters fast-convergence" CLI option
Whenever BGP peer address becomes unreachable we must bring down the BGP session immediately. Currently only single-hop EBGP sessions are brought down immediately. IBGP and multi-hop EBGP sessions wait for hold-timer expiry to bring down the sessions. This new configuration option helps user to teardown BGP sessions immediately whenever peer becomes unreachable. This configuration is available at the bgp level. When enabled, configuration is applied to all the neighbors configured in that bgp instance.
Diffstat (limited to 'data/templates/frr/bgpd.frr.tmpl')
-rw-r--r--data/templates/frr/bgpd.frr.tmpl3
1 files changed, 3 insertions, 0 deletions
diff --git a/data/templates/frr/bgpd.frr.tmpl b/data/templates/frr/bgpd.frr.tmpl
index cae53d09c..351e4a7ed 100644
--- a/data/templates/frr/bgpd.frr.tmpl
+++ b/data/templates/frr/bgpd.frr.tmpl
@@ -510,6 +510,9 @@ router bgp {{ local_as }} {{ 'vrf ' ~ vrf if vrf is defined and vrf is not none
{% endfor %}
{% endif %}
{% endif %}
+{% if parameters.fast_convergence is defined %}
+ bgp fast-convergence
+{% endif %}
{% if parameters.graceful_restart is defined %}
bgp graceful-restart {{ 'stalepath-time ' ~ parameters.graceful_restart.stalepath_time if parameters.graceful_restart.stalepath_time is defined }}
{% endif %}