diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-09 23:19:52 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-09 23:19:52 +0100 |
commit | 1e70157b16e0b69fffaf8c274846fffb286b43c3 (patch) | |
tree | 614ed5474a4710f1155292076834649ad895c964 /data/templates/frr/isisd.frr.tmpl | |
parent | 006b17a319c540a2fb384b90c65294f5a607787c (diff) | |
download | vyos-1x-1e70157b16e0b69fffaf8c274846fffb286b43c3.tar.gz vyos-1x-1e70157b16e0b69fffaf8c274846fffb286b43c3.zip |
isis: T4058: add support for BFD profiles
Diffstat (limited to 'data/templates/frr/isisd.frr.tmpl')
-rw-r--r-- | data/templates/frr/isisd.frr.tmpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/templates/frr/isisd.frr.tmpl b/data/templates/frr/isisd.frr.tmpl index fc0799e02..b1e3f825b 100644 --- a/data/templates/frr/isisd.frr.tmpl +++ b/data/templates/frr/isisd.frr.tmpl @@ -6,6 +6,9 @@ interface {{ iface }} {{ 'vrf ' + vrf if vrf is defined and vrf is not none }} ipv6 router isis VyOS {% if iface_config.bfd is defined %} isis bfd +{% if iface_config.bfd.profile is defined and iface_config.bfd.profile is not none %} + isis bfd profile {{ iface_config.bfd.profile }} +{% endif %} {% endif %} {% if iface_config.network is defined and iface_config.network.point_to_point is defined %} isis network point-to-point |