diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-09-25 20:48:15 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-09-25 20:48:15 +0200 |
commit | 818a75c024e4b4c0403ccfe782fb55517f390bef (patch) | |
tree | c4e91ddc0429694d5c294c3651f7a647a432ef43 /src/conf_mode/interfaces-vxlan.py | |
parent | 49a79954373eb3f70eddb444e855ed744a322e58 (diff) | |
download | vyos-1x-818a75c024e4b4c0403ccfe782fb55517f390bef.tar.gz vyos-1x-818a75c024e4b4c0403ccfe782fb55517f390bef.zip |
ifconfig: T2653: get_mtu() should return int() for easier comparison
Diffstat (limited to 'src/conf_mode/interfaces-vxlan.py')
-rwxr-xr-x | src/conf_mode/interfaces-vxlan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/interfaces-vxlan.py b/src/conf_mode/interfaces-vxlan.py index a00c58608..850ea28d7 100755 --- a/src/conf_mode/interfaces-vxlan.py +++ b/src/conf_mode/interfaces-vxlan.py @@ -72,8 +72,8 @@ def verify(vxlan): if 'source_interface' in vxlan: # VXLAN adds a 50 byte overhead - we need to check the underlaying MTU # if our configured MTU is at least 50 bytes less - underlay_mtu = int(Interface(vxlan['source_interface']).get_mtu()) - if underlay_mtu < (int(vxlan['mtu']) + 50): + lower_mtu = Interface(vxlan['source_interface']).get_mtu() + if lower_mtu < (int(vxlan['mtu']) + 50): raise ConfigError('VXLAN has a 50 byte overhead, underlaying device ' \ f'MTU is to small ({underlay_mtu} bytes)') |