diff options
-rw-r--r-- | sos/plugins/networking.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index 4f1f02f6..0497902e 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -77,5 +77,8 @@ class networking(Plugin, RedHatPlugin): self.collectExtOutput("/sbin/ethtool -i "+eth) self.collectExtOutput("/sbin/ethtool -k "+eth) self.collectExtOutput("/sbin/ethtool -S "+eth) + self.collectExtOutput("/sbin/ethtool -a "+eth) + self.collectExtOutput("/sbin/ethtool -c "+eth) + self.collectExtOutput("/sbin/ethtool -g "+eth) if self.getOption("traceroute"): self.collectExtOutput("/bin/traceroute -n rhn.redhat.com") |