diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2011-08-12 09:30:00 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2011-08-12 09:30:00 +0100 |
commit | 2e5a16b9fb2ea70dbb199da0a2bcf0e57ea6eb35 (patch) | |
tree | da48988e0d9ac0c5dbf08a05f684d95a2bf68ba3 | |
parent | 269755465e04cde009cf3512749035d2ab5f88f5 (diff) | |
download | sos-2e5a16b9fb2ea70dbb199da0a2bcf0e57ea6eb35.tar.gz |
Add ethtool pause, coalesce and ring (-a, -c, -g) options to network pluginsos-2.2-9.el6
Resolves: bz726427
-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 cc619550..de598705 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -72,6 +72,9 @@ class networking(sos.plugintools.PluginBase): 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") |