summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-12-26 10:13:36 +0100
committerChristian Poessinger <christian@poessinger.com>2021-12-26 10:13:36 +0100
commit604949b97cfff0fc91580d195739648f9bc12e50 (patch)
treefd0ed2d0611c70a8df3d904a1532696aae137a55 /data
parentde28cb2036af6e7786ff54f1732d3a33439442e8 (diff)
downloadvyos-1x-604949b97cfff0fc91580d195739648f9bc12e50.tar.gz
vyos-1x-604949b97cfff0fc91580d195739648f9bc12e50.zip
ospfv3: T4102: nssa area support both no-summary and default-originate
Diffstat (limited to 'data')
-rw-r--r--data/templates/frr/ospf6d.frr.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/frr/ospf6d.frr.tmpl b/data/templates/frr/ospf6d.frr.tmpl
index 3576c4b22..2e8f3da92 100644
--- a/data/templates/frr/ospf6d.frr.tmpl
+++ b/data/templates/frr/ospf6d.frr.tmpl
@@ -54,7 +54,7 @@ router ospf6 {{ 'vrf ' + vrf if vrf is defined and vrf is not none }}
{% for area_id, area_config in area.items() %}
{% if area_config.area_type is defined and area_config.area_type is not none %}
{% for type, type_config in area_config.area_type.items() %}
- area {{ area_id }} {{ type }} {{ 'no-summary' if type_config.no_summary is defined }} {{ 'default-information-originate' if type_config.default_information_originate is defined }}
+ area {{ area_id }} {{ type }} {{ 'default-information-originate' if type_config.default_information_originate is defined }} {{ 'no-summary' if type_config.no_summary is defined }}
{% endfor %}
{% endif %}
{% if area_config.range is defined and area_config.range is not none %}