diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-25 12:19:33 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-25 12:19:33 +0100 |
commit | 4abca54698edb09b76e7d059dd35cdcef3512ec4 (patch) | |
tree | b7ed643cf492423078a69b065dcfc583e1390f4c /data/templates/frr | |
parent | 8449ee5f95ffbf1901202e04ee6e1216f54d8ff8 (diff) | |
download | vyos-1x-4abca54698edb09b76e7d059dd35cdcef3512ec4.tar.gz vyos-1x-4abca54698edb09b76e7d059dd35cdcef3512ec4.zip |
ospfv3: T4102: add support for NSSA area-type
Diffstat (limited to 'data/templates/frr')
-rw-r--r-- | data/templates/frr/ospf6d.frr.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/frr/ospf6d.frr.tmpl b/data/templates/frr/ospf6d.frr.tmpl index c366326bf..3576c4b22 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 }} + area {{ area_id }} {{ type }} {{ 'no-summary' if type_config.no_summary is defined }} {{ 'default-information-originate' if type_config.default_information_originate is defined }} {% endfor %} {% endif %} {% if area_config.range is defined and area_config.range is not none %} |