diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-12-10 21:15:18 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-12-10 21:15:18 +0100 |
commit | 544e73ff26bb0b9d282159e4a734ad531213d816 (patch) | |
tree | b8ac31c99f93df1a6be72b85c91d552eb4698035 /src/conf_mode/interfaces-vxlan.py | |
parent | eb29d8d5a0bc536364b4024ec6c336451b58ba49 (diff) | |
download | vyos-1x-544e73ff26bb0b9d282159e4a734ad531213d816.tar.gz vyos-1x-544e73ff26bb0b9d282159e4a734ad531213d816.zip |
vxlan: T3700: can not specify both "external" and "VNI"
Diffstat (limited to 'src/conf_mode/interfaces-vxlan.py')
-rwxr-xr-x | src/conf_mode/interfaces-vxlan.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/conf_mode/interfaces-vxlan.py b/src/conf_mode/interfaces-vxlan.py index b197d08a6..95d982f38 100755 --- a/src/conf_mode/interfaces-vxlan.py +++ b/src/conf_mode/interfaces-vxlan.py @@ -81,6 +81,9 @@ def verify(vxlan): raise ConfigError( 'Must either configure VXLAN "vni" or use "external" CLI option!') + if {'external', 'vni'} <= set(vxlan): + raise ConfigError('Can not specify both "external" and "VNI"!') + if {'external', 'other_tunnels'} <= set(vxlan): other_tunnels = ', '.join(vxlan['other_tunnels']) raise ConfigError(f'Only one VXLAN tunnel is supported when "external" '\ |