diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-21 11:35:21 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-21 11:35:23 +0100 |
commit | 3cb84afe3a6b9f22a35e0a887f7ca350644d6c8a (patch) | |
tree | 15d57b133aab018e4d0bf81d2af0ac07f5b13ea7 /data | |
parent | b666f8ba97dc792aac90fad4c4c99e47caca7baf (diff) | |
download | vyos-1x-3cb84afe3a6b9f22a35e0a887f7ca350644d6c8a.tar.gz vyos-1x-3cb84afe3a6b9f22a35e0a887f7ca350644d6c8a.zip |
isis: T3417: move from cli tagNode to node
As there can only be one running IS-IS process (FRR limitation) there is no need
in having a tagNode here. This adds artifical restrictions/limitations when
moving on to support VRFs for IS-IS protocol.
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/frr/isis.frr.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/frr/isis.frr.tmpl b/data/templates/frr/isis.frr.tmpl index 4460ab3b5..d4500403c 100644 --- a/data/templates/frr/isis.frr.tmpl +++ b/data/templates/frr/isis.frr.tmpl @@ -1,5 +1,5 @@ ! -router isis {{ process }} +router isis {{ domain }} net {{ net }} {% if dynamic_hostname is defined %} hostname dynamic @@ -134,7 +134,7 @@ router isis {{ process }} {% if interface is defined and interface is not none %} {% for iface, iface_config in interface.items() %} interface {{ iface }} - ip router isis {{ process }} + ip router isis {{ domain }} {% if iface_config.bfd is defined %} isis bfd {% endif %} |