diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-13 15:54:27 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-13 15:55:00 +0100 |
commit | dd039ae58e170af891a31ece50868b3abc27ce2d (patch) | |
tree | 565afc01091d9f1835cbac3e8902f3eaa0450ab0 /data | |
parent | 2f24ecbdfc8667288e998742cc91877b36d4915c (diff) | |
download | vyos-1x-dd039ae58e170af891a31ece50868b3abc27ce2d.tar.gz vyos-1x-dd039ae58e170af891a31ece50868b3abc27ce2d.zip |
bgp: T2174: bugfix FRR template generation
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/frr/bgp.frr.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/frr/bgp.frr.tmpl b/data/templates/frr/bgp.frr.tmpl index a1ff368e9..af04ee1ce 100644 --- a/data/templates/frr/bgp.frr.tmpl +++ b/data/templates/frr/bgp.frr.tmpl @@ -24,7 +24,7 @@ neighbor {{ neighbor }} description {{ config.description }} {% endif %} {% if config.disable_capability_negotiation is defined %} - neighbor {{ neighbor }} disable-capability-negotiation + neighbor {{ neighbor }} dont-capability-negotiate {% endif %} {% if config.ebgp_multihop is defined and config.ebgp_multihop is not none %} neighbor {{ neighbor }} ebgp-multihop {{ config.ebgp_multihop }} |