summaryrefslogtreecommitdiff
path: root/src/conf_mode/interfaces-macsec.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-09-25 20:48:15 +0200
committerChristian Poessinger <christian@poessinger.com>2020-09-25 20:48:15 +0200
commit818a75c024e4b4c0403ccfe782fb55517f390bef (patch)
treec4e91ddc0429694d5c294c3651f7a647a432ef43 /src/conf_mode/interfaces-macsec.py
parent49a79954373eb3f70eddb444e855ed744a322e58 (diff)
downloadvyos-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-macsec.py')
-rwxr-xr-xsrc/conf_mode/interfaces-macsec.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/interfaces-macsec.py b/src/conf_mode/interfaces-macsec.py
index abf8b05c3..a224c540e 100755
--- a/src/conf_mode/interfaces-macsec.py
+++ b/src/conf_mode/interfaces-macsec.py
@@ -92,8 +92,8 @@ def verify(macsec):
# MACsec adds a 40 byte overhead (32 byte MACsec + 8 bytes VLAN 802.1ad
# and 802.1q) - we need to check the underlaying MTU if our configured
# MTU is at least 40 bytes less then the MTU of our physical interface.
- underlay_mtu = int(Interface(macsec['source_interface']).get_mtu())
- if underlay_mtu < (int(macsec['mtu']) + 40):
+ lower_mtu = Interface(macsec['source_interface']).get_mtu()
+ if lower_mtu < (int(macsec['mtu']) + 40):
raise ConfigError('MACsec overhead does not fit into underlaying device MTU,\n' \
f'{underlay_mtu} bytes is too small!')