Created attachment 328860 [details] edited sosplugin 'networking.py' Description of problem: It would be better if the sosreport collects information on the ethernet driver like version, firmware and businfo along with the network/driver statistics for the device. An inclusion of the commands 'ethtool -i' and 'ethtool -S' for the ethernet devices on the machine will not change the sosreport size considerably and also does not need any major changes in the networking plugin for sos. The edited networking.py plugin will have the following changes : <snip> # diff -Naur /usr/lib/python2.4/site-packages/sos/plugins/networking.py /usr/lib/python2.4/site-packages/sos/plugins/networking.py.ORIG --- /usr/lib/python2.4/site-packages/sos/plugins/networking.py 2009-01-13 16:49:57.000000000 +0530 +++ /usr/lib/python2.4/site-packages/sos/plugins/networking.py.ORIG 2007-08-14 22:31:29.000000000 +0530 @@ -73,8 +73,6 @@ if ifconfigFile: for eth in self.get_interface_name(ifconfigFile): self.collectExtOutput("/sbin/ethtool "+eth) - self.collectExtOutput("/sbin/ethtool -i "+eth) - self.collectExtOutput("/sbin/ethtool -S "+eth) if self.isOptionEnabled("traceroute"): self.collectExtOutput("/bin/traceroute -n rhn.redhat.com") </snip>
*** This bug has been marked as a duplicate of bug 469820 ***