diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-04 20:10:25 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-04 20:10:25 +0200 |
commit | 195e1da6a518ee3a2cbc0e1d454317e3c05e3e6e (patch) | |
tree | c7282f91477952fd67dd442e25aee0c7a6b56f3d /src/conf_mode | |
parent | 61ab4673b786abd29bd861a91975189d4614d3b6 (diff) | |
download | vyos-1x-195e1da6a518ee3a2cbc0e1d454317e3c05e3e6e.tar.gz vyos-1x-195e1da6a518ee3a2cbc0e1d454317e3c05e3e6e.zip |
vxlan: T2172: remove group or remote check in verify()
This is a low level requirement for supporting l2vpn evpn.
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/interfaces-vxlan.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/conf_mode/interfaces-vxlan.py b/src/conf_mode/interfaces-vxlan.py index 3d2638c6f..1f9636729 100755 --- a/src/conf_mode/interfaces-vxlan.py +++ b/src/conf_mode/interfaces-vxlan.py @@ -160,9 +160,6 @@ def verify(vxlan): if not vxlan['link'] in interfaces(): raise ConfigError('VXLAN source interface does not exist') - if not (vxlan['group'] or vxlan['remote']): - raise ConfigError('Group or remote must be configured') - if not vxlan['vni']: raise ConfigError('Must configure VNI for VXLAN') |