()
| 1997 | typically don't support this -> fields stay None.""" |
| 1998 | d = {'speed': None, 'duplex': None, 'autoneg': None, 'link_detected': None} |
| 1999 | res = _run(['ethtool', iface], timeout=6) |
| 2000 | if res['rc'] != 0: |
| 2001 | return d |
| 2002 | out = res['out'] |
| 2003 | m = re.search(r'Speed:\s*(.+)', out) |
| 2004 | if m and 'Unknown' not in m.group(1): |
| 2005 | d['speed'] = m.group(1).strip() |
nothing calls this directly
no test coverage detected