From 1fc7e30fe43a87b95f2802fbd60985ece7dc01f3 Mon Sep 17 00:00:00 2001 From: Yuxiang Zhu Date: Thu, 12 Jan 2023 15:23:50 +0000 Subject: T4935: ospfv3: "not-advertise" and "advertise" conflict They can't be set at the same time. --- src/conf_mode/protocols_ospfv3.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/conf_mode') diff --git a/src/conf_mode/protocols_ospfv3.py b/src/conf_mode/protocols_ospfv3.py index ee4eaf59d..7cc36b58c 100755 --- a/src/conf_mode/protocols_ospfv3.py +++ b/src/conf_mode/protocols_ospfv3.py @@ -117,6 +117,9 @@ 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 range, range_config in area_config['range'].items(): + if {'not_advertise', 'advertise'} <= range_config.keys(): + raise ConfigError(f'"not-advertise" and "advertise" for "range {range}" cannot be both configured at the same time!') if 'interface' in ospfv3: for interface, interface_config in ospfv3['interface'].items(): -- cgit v1.2.3