diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-06 12:15:25 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-04-07 14:40:30 +0000 |
commit | fbaa707f72ac1a0214ca57c8768fefa4b818738b (patch) | |
tree | 1046cc126729244a7c74472454318c164516a89b /src/conf_mode | |
parent | 11b2c478b7652ff38b378c8495aa45c8453b09f2 (diff) | |
download | vyos-1x-fbaa707f72ac1a0214ca57c8768fefa4b818738b.tar.gz vyos-1x-fbaa707f72ac1a0214ca57c8768fefa4b818738b.zip |
ethernet: T5862: default MTU is not acceptable in some environments
There are cloud environments available where the maximum supported ethernet
MTU is e.g. 1450 bytes, thus we clamp this to the adapters maximum MTU value
or 1500 bytes - whatever is lower.
(cherry picked from commit 8296cc727066e739c178918a91cfc11d20d26fe1)
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/interfaces_ethernet.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/conf_mode/interfaces_ethernet.py b/src/conf_mode/interfaces_ethernet.py index 41efdb03c..6da7e6a69 100755 --- a/src/conf_mode/interfaces_ethernet.py +++ b/src/conf_mode/interfaces_ethernet.py @@ -152,6 +152,19 @@ def get_config(config=None): base = ['interfaces', 'ethernet'] ifname, ethernet = get_interface_dict(conf, base, with_pki=True) + # T5862 - default MTU is not acceptable in some environments + # There are cloud environments available where the maximum supported + # ethernet MTU is e.g. 1450 bytes, thus we clamp this to the adapters + # maximum MTU value or 1500 bytes - whatever is lower + if 'mtu' not in ethernet: + try: + ethernet['mtu'] = '1500' + max_mtu = EthernetIf(ifname).get_max_mtu() + if max_mtu < int(ethernet['mtu']): + ethernet['mtu'] = str(max_mtu) + except: + pass + if 'is_bond_member' in ethernet: update_bond_options(conf, ethernet) |