diff options
author | qsn <sd@queasysnail.net> | 2017-05-10 14:19:27 +0200 |
---|---|---|
committer | Adam Stokes <battlemidget@users.noreply.github.com> | 2017-05-10 08:19:27 -0400 |
commit | e64e6407819926e305083ecc9f9c5372d97cd17a (patch) | |
tree | 2bf04cd598f7ed93e406a9b80880f73680b9d47d | |
parent | ad26d98086ba516a28ce9d3c166da70807cdeb97 (diff) | |
download | sos-e64e6407819926e305083ecc9f9c5372d97cd17a.tar.gz |
[networking] collect more link data (#988)
Collect macsec configuration, and detailed link information from
iproute.
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Signed-off-by: Adam Stokes <battlemidget@users.noreply.github.com>
-rw-r--r-- | sos/plugins/networking.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index 5a771062..9b184707 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -172,7 +172,7 @@ class Networking(Plugin): "ip -6 route show table all", "ip -4 rule", "ip -6 rule", - "ip -s link", + "ip -s -d link", "ip address", "ifenslave -a", "ip mroute show", @@ -181,6 +181,7 @@ class Networking(Plugin): "ip neigh show nud noarp", "biosdevname -d", "tc -s qdisc show", + "ip -s macsec show", "iptables -vnxL", "ip6tables -vnxL" ]) |