diff options
author | Christian Breunig <christian@breunig.cc> | 2023-06-29 16:31:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 16:31:40 +0200 |
commit | d61e6b5e0da8a3844c57d5eff64963b954bf0ada (patch) | |
tree | fe4c6c05cea4c67feb689c4fcf1b6356eb3fa698 /python/vyos/ethtool.py | |
parent | 508a6b32f7a7edc8c6a8c4f2fa1bd98ced909680 (diff) | |
parent | 1d94ff123d546244d89b36deeeb092f0772c60fe (diff) | |
download | vyos-1x-d61e6b5e0da8a3844c57d5eff64963b954bf0ada.tar.gz vyos-1x-d61e6b5e0da8a3844c57d5eff64963b954bf0ada.zip |
Merge pull request #2059 from sever-sever/T1797-vpp
T1797: Add initial vpp configuration
Diffstat (limited to 'python/vyos/ethtool.py')
-rw-r--r-- | python/vyos/ethtool.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/vyos/ethtool.py b/python/vyos/ethtool.py index 68234089c..9b7da89fa 100644 --- a/python/vyos/ethtool.py +++ b/python/vyos/ethtool.py @@ -21,7 +21,8 @@ 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', 'veth', 'ixgbevf'] + 'iavf', 'ice', 'i40e', 'hv_netvsc', 'veth', 'ixgbevf', + 'tun'] class Ethtool: """ |