diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-23 12:57:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 12:57:38 +0100 |
commit | 4c2d4519277bc4cbe964a37160b93c31cdc77309 (patch) | |
tree | 62e3ec2eebe3d7b909e7bdd3151fbbbe42e723a7 /data | |
parent | 20106f2e827ecfa9dc347d102fe809c736d17a48 (diff) | |
parent | 1f07dcbddfcfdbb9079936ec479c5633934dd547 (diff) | |
download | vyos-1x-4c2d4519277bc4cbe964a37160b93c31cdc77309.tar.gz vyos-1x-4c2d4519277bc4cbe964a37160b93c31cdc77309.zip |
Merge pull request #2884 from c-po/bfd-T5967
bfd: T5967: add minimum-ttl option
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/frr/bfdd.frr.j2 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/templates/frr/bfdd.frr.j2 b/data/templates/frr/bfdd.frr.j2 index c4adeb402..f3303e401 100644 --- a/data/templates/frr/bfdd.frr.j2 +++ b/data/templates/frr/bfdd.frr.j2 @@ -13,6 +13,9 @@ bfd {% if profile_config.echo_mode is vyos_defined %} echo-mode {% endif %} +{% if profile_config.minimum_ttl is vyos_defined %} + minimum-ttl {{ profile_config.minimum_ttl }} +{% endif %} {% if profile_config.passive is vyos_defined %} passive-mode {% endif %} @@ -38,6 +41,9 @@ bfd {% if peer_config.echo_mode is vyos_defined %} echo-mode {% endif %} +{% if peer_config.minimum_ttl is vyos_defined %} + minimum-ttl {{ peer_config.minimum_ttl }} +{% endif %} {% if peer_config.passive is vyos_defined %} passive-mode {% endif %} |