summaryrefslogtreecommitdiff
path: root/data/templates/frr/vrf-vni.frr.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-08-13 21:11:58 +0200
committerChristian Poessinger <christian@poessinger.com>2021-08-13 21:33:09 +0200
commitda94e0a736874d9a6420ec1aa754efcec684b390 (patch)
treed06d7939a2fa58b84e65b4b856f6180bccdf2452 /data/templates/frr/vrf-vni.frr.tmpl
parent595ab70a5d50ef1f9e166959affd96ea1ee8c8c8 (diff)
downloadvyos-1x-da94e0a736874d9a6420ec1aa754efcec684b390.tar.gz
vyos-1x-da94e0a736874d9a6420ec1aa754efcec684b390.zip
vrf: T3734: T3728: vni must be configured with a higher priority then bgpd
When removing bgp (vrf) instances the assigned VRF vni must be deleted from FRR prior the removal of the bgp settings (T3734). This is now done by moving the CLI command "set vrf name red vni 1000" to a dedicated Python script with a priority higher then bgp.
Diffstat (limited to 'data/templates/frr/vrf-vni.frr.tmpl')
-rw-r--r--data/templates/frr/vrf-vni.frr.tmpl7
1 files changed, 7 insertions, 0 deletions
diff --git a/data/templates/frr/vrf-vni.frr.tmpl b/data/templates/frr/vrf-vni.frr.tmpl
new file mode 100644
index 000000000..51d4ede1b
--- /dev/null
+++ b/data/templates/frr/vrf-vni.frr.tmpl
@@ -0,0 +1,7 @@
+{% if vrf is defined and vrf is not none %}
+vrf {{ vrf }}
+{% if vni is defined and vni is not none %}
+ vni {{ vni }}
+{% endif %}
+ exit-vrf
+{% endif %}