diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-03-21 19:26:22 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-03-21 19:26:22 +0100 |
commit | 0e050cb357972eb83412da1d0edecff46fa515bd (patch) | |
tree | c50eb0d24d53ca08c12a1760fb3efa13a481d3a5 /data/templates/frr | |
parent | a9a020bac532c6432fafb8101a74bd58c08a8720 (diff) | |
download | vyos-1x-0e050cb357972eb83412da1d0edecff46fa515bd.tar.gz vyos-1x-0e050cb357972eb83412da1d0edecff46fa515bd.zip |
isis: T3417: drop artificial "domain" node identifying the IS-IS process name
As we and FRR do not support multiple FRR process instances, there is no need
to make this configurable for a user. We rather rely on a solid default "VyOS".
Diffstat (limited to 'data/templates/frr')
-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 da098abac..7f996b134 100644 --- a/data/templates/frr/isis.frr.tmpl +++ b/data/templates/frr/isis.frr.tmpl @@ -1,5 +1,5 @@ ! -router isis {{ domain }} {{ 'vrf ' + vrf if vrf is defined and vrf is not none }} +router isis VyOS {{ 'vrf ' + vrf if vrf is defined and vrf is not none }} net {{ net }} {% if dynamic_hostname is defined %} hostname dynamic @@ -134,7 +134,7 @@ router isis {{ domain }} {{ 'vrf ' + vrf if vrf is defined and vrf is not none } {% if interface is defined and interface is not none %} {% for iface, iface_config in interface.items() %} interface {{ iface }} {{ 'vrf ' + vrf if vrf is defined and vrf is not none }} - ip router isis {{ domain }} + ip router isis VyOS {% if iface_config.bfd is defined %} isis bfd {% endif %} |