summaryrefslogtreecommitdiff
path: root/src
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 /src
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 'src')
-rwxr-xr-xsrc/conf_mode/protocols_ospfv3.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/conf_mode/protocols_ospfv3.py b/src/conf_mode/protocols_ospfv3.py
index c338c98b3..94455a458 100755
--- a/src/conf_mode/protocols_ospfv3.py
+++ b/src/conf_mode/protocols_ospfv3.py
@@ -88,10 +88,6 @@ def verify(ospfv3):
if 'area_type' in area_config:
if len(area_config['area_type']) > 1:
raise ConfigError(f'Can only configure one area-type for OSPFv3 area "{area}"!')
- for area_type, area_type_config in area_config['area_type'].items():
- if {'default_information_originate', 'no_summary'} <= set(area_type_config):
- raise ConfigError(f'Can either set "default-information-originate" '\
- f'or "no-summary", but not both!')
if 'interface' in ospfv3:
for interface, interface_config in ospfv3['interface'].items():