diff options
-rw-r--r-- | sos/plugins/networking.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index 6a03e375..aef9d195 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -171,7 +171,13 @@ class Networking(Plugin): "ethtool -T " + eth, "ethtool -a " + eth, "ethtool -c " + eth, - "ethtool -g " + eth + "ethtool -g " + eth, + "ethtool -e " + eth, + "ethtool -P " + eth, + "ethtool -l " + eth, + "ethtool --phy-statistics " + eth, + "ethtool --show-priv-flags " + eth, + "ethtool --show-eee " + eth ]) # Collect information about bridges (some data already collected via |