diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-11 18:53:11 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-12 21:16:19 +0200 |
commit | 46391367806834f0f8e60f0894da6b91711d51bc (patch) | |
tree | fce1b217af39542f239c4692371d85555dff57fa /data/templates/frr/isis.frr.tmpl | |
parent | b720ba2244e70ee730bcb7e2418f4a86e6a7f114 (diff) | |
download | vyos-1x-46391367806834f0f8e60f0894da6b91711d51bc.tar.gz vyos-1x-46391367806834f0f8e60f0894da6b91711d51bc.zip |
isis: T3328: route-map to zebra/kernel can not be removed
Removing the Zebra/Linux Kernel route-map added by "set protocols isis route-map"
was not removed once applied. This was because the removal must happen within
the zebra daemon and not isisd.
Diffstat (limited to 'data/templates/frr/isis.frr.tmpl')
-rw-r--r-- | data/templates/frr/isis.frr.tmpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/data/templates/frr/isis.frr.tmpl b/data/templates/frr/isis.frr.tmpl index 7f996b134..c8e11399e 100644 --- a/data/templates/frr/isis.frr.tmpl +++ b/data/templates/frr/isis.frr.tmpl @@ -173,3 +173,8 @@ interface {{ iface }} {{ 'vrf ' + vrf if vrf is defined and vrf is not none }} {% endif %} {% endfor %} {% endif %} +! +{% if route_map is defined and route_map is not none %} +ip protocol isis route-map {{ route_map }} +{% endif %} +! |