diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2012-11-29 19:03:43 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-11-29 19:03:43 +0000 |
commit | 771a5c7cd45e3c94273ea0859c26f1fbc33e161a (patch) | |
tree | 0e5f6e3b7834e494dec34457e75ce9d0045c5332 | |
parent | b11e1db9fea4bbd86d5240f77747b7050af27edd (diff) | |
download | sos-771a5c7cd45e3c94273ea0859c26f1fbc33e161a.tar.gz |
Collect ipv6 neighbour table in network module
-rw-r--r-- | sos/plugins/networking.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index c27c0b82..7ff1d72e 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -72,6 +72,7 @@ class networking(Plugin, RedHatPlugin): self.collectExtOutput("/sbin/ifenslave -a") self.collectExtOutput("/sbin/ip mroute show") self.collectExtOutput("/sbin/ip maddr show") + self.collectExtOutput("/sbin/ip neigh show") if ipaddrOut: for eth in self.get_interface_name(ipaddrOut): self.collectExtOutput("/sbin/ethtool "+eth) |