summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-08-20 05:51:14 +0200
committerGitHub <noreply@github.com>2020-08-20 05:51:14 +0200
commitc7707363bd9b44f9dd9bf460247f350a05b3f5fb (patch)
tree6943a158c98a11d86ec6a026b4b0dd725bbe57d3 /data
parent509f347d0858e37de9fdeaa1a7aeeb6888fb4b7b (diff)
parent93c3a4a4f05014914dd2e9353ddd676e20bced1a (diff)
downloadvyos-1x-c7707363bd9b44f9dd9bf460247f350a05b3f5fb.tar.gz
vyos-1x-c7707363bd9b44f9dd9bf460247f350a05b3f5fb.zip
Merge pull request #531 from sever-sever/T915-timers
mpls-ldp: T915: Add discovery hello timers
Diffstat (limited to 'data')
-rw-r--r--data/templates/frr/ldpd.frr.tmpl12
1 files changed, 12 insertions, 0 deletions
diff --git a/data/templates/frr/ldpd.frr.tmpl b/data/templates/frr/ldpd.frr.tmpl
index bbff88ae5..dbaa917e8 100644
--- a/data/templates/frr/ldpd.frr.tmpl
+++ b/data/templates/frr/ldpd.frr.tmpl
@@ -21,6 +21,18 @@ no discovery transport-address {{ old_ldp.d_transp_ipv4 }}
{% if ldp.d_transp_ipv4 -%}
discovery transport-address {{ ldp.d_transp_ipv4 }}
{% endif -%}
+{% if old_ldp.hello_holdtime -%}
+no discovery hello holdtime {{ old_ldp.hello_holdtime }}
+{% endif -%}
+{% if ldp.hello_holdtime -%}
+discovery hello holdtime {{ ldp.hello_holdtime }}
+{% endif -%}
+{% if old_ldp.hello_interval -%}
+no discovery hello interval {{ old_ldp.hello_interval }}
+{% endif -%}
+{% if ldp.hello_interval -%}
+discovery hello interval {{ ldp.hello_interval }}
+{% endif -%}
{% for interface in old_ldp.interfaces -%}
no interface {{interface}}
{% endfor -%}