summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-03-13 19:38:48 +0100
committerGitHub <noreply@github.com>2023-03-13 19:38:48 +0100
commitc614e8cfd5c204d2568f25ffe7482f4feb2b9187 (patch)
tree2ca0c7c90cf1f2b30fcc4732be3ca0241efbe3a6
parent7d8db105fa7f5fe1ced53d27b570188b562fde38 (diff)
parent4351d6cebd29c3e3f43b4839e903077537dd200c (diff)
downloadvyos-1x-c614e8cfd5c204d2568f25ffe7482f4feb2b9187.tar.gz
vyos-1x-c614e8cfd5c204d2568f25ffe7482f4feb2b9187.zip
Merge pull request #1886 from sever-sever/T2516
T2516: Exclude veth interfaces from duplex and speed check
-rw-r--r--python/vyos/ethtool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/ethtool.py b/python/vyos/ethtool.py
index abf8de688..bc3402059 100644
--- a/python/vyos/ethtool.py
+++ b/python/vyos/ethtool.py
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 VyOS maintainers and contributors <maintainers@vyos.io>
+# Copyright 2021-2023 VyOS maintainers and contributors <maintainers@vyos.io>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -21,7 +21,7 @@ from vyos.util import popen
# These drivers do not support using ethtool to change the speed, duplex, or
# flow control settings
_drivers_without_speed_duplex_flow = ['vmxnet3', 'virtio_net', 'xen_netfront',
- 'iavf', 'ice', 'i40e', 'hv_netvsc']
+ 'iavf', 'ice', 'i40e', 'hv_netvsc', 'veth']
class Ethtool:
"""