diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-05 19:46:28 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-03-05 19:46:28 +0100 |
commit | 5de6cd0247d77b2a679d7e1071e1f48a3e7c7a9d (patch) | |
tree | c7d1519aea5d29f2be6199ae41ef0799ee93daca /src/conf_mode/vrf.py | |
parent | d161cbbe201061a0926889f598c2a43d3c65e052 (diff) | |
download | vyos-1x-5de6cd0247d77b2a679d7e1071e1f48a3e7c7a9d.tar.gz vyos-1x-5de6cd0247d77b2a679d7e1071e1f48a3e7c7a9d.zip |
vrf: T31: table id is mandatory
Diffstat (limited to 'src/conf_mode/vrf.py')
-rwxr-xr-x | src/conf_mode/vrf.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py index dd4b337e6..565db23d5 100755 --- a/src/conf_mode/vrf.py +++ b/src/conf_mode/vrf.py @@ -146,10 +146,14 @@ def verify(vrf_config): if len(vrf['members']) > 0: raise ConfigError('VRF "{}" can not be deleted as it has active members'.format(vrf['name'])) - # routing table id can't be changed - OS restriction for vrf in vrf_config['vrf_add']: + # table id is mandatory + if not vrf['table']: + raise ConfigError('VRF "{}": table id is mandatory'.format(vrf['name'])) + + # routing table id can't be changed - OS restriction if vrf['table_mod']: - raise ConfigError('VRF routing table id modification is not possible') + raise ConfigError('VRF "{}": modification of table id is not possible'.format(vrf['name'])) # add test to see if routing table already exists or not? |