summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-09-15 14:46:44 +0200
committerChristian Poessinger <christian@poessinger.com>2019-09-20 21:28:53 +0200
commit9fe2bcb3666bc115e0d5f907b0097a874efa43ff (patch)
treeb7a7a43c908e60d457a6156268c9277177170b95 /python
parentf5784bd48a6600372696b6731d4300735e710dd3 (diff)
downloadvyos-1x-9fe2bcb3666bc115e0d5f907b0097a874efa43ff.tar.gz
vyos-1x-9fe2bcb3666bc115e0d5f907b0097a874efa43ff.zip
Python/ifconfig: T1557: vmxnet3/virtio_net do not support changing speed/duplex control
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ifconfig.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/python/vyos/ifconfig.py b/python/vyos/ifconfig.py
index 17cc7a2a7..e1c1e0246 100644
--- a/python/vyos/ifconfig.py
+++ b/python/vyos/ifconfig.py
@@ -1141,6 +1141,12 @@ class EthernetIf(VLANIf):
if duplex not in ['auto', 'full', 'half']:
raise ValueError("Value out of range (duplex)")
+ if self.get_driver_name() in ['vmxnet3', 'virtio_net']:
+ self._debug_msg('{} driver does not support changing speed/duplex settings!'
+ .format(self.get_driver_name()))
+ return
+
+
cmd = '/sbin/ethtool -s {}'.format(self._ifname)
if speed == 'auto' or duplex == 'auto':
cmd += ' autoneg on'