Skip to content

Commit

Permalink
T2516: Exclude veth interfaces from duplex and speed check
Browse files Browse the repository at this point in the history
Exclude interfaces with 'veth' driver from duplex and speed check
  • Loading branch information
sever-sever committed Mar 13, 2023
1 parent 7d8db10 commit 4351d6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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
Expand All @@ -21,7 +21,7 @@
# 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:
"""
Expand Down

0 comments on commit 4351d6c

Please sign in to comment.