diff options
author | 2023-11-29 07:10:56 +0000 | |
---|---|---|
committer | 2023-11-29 07:10:56 +0000 | |
commit | f9c46249bf29f3468b73a6629146fc8104a06021 (patch) | |
tree | 464c7eb5e5145f0a262127fdf2647d97a59cf1b1 /cmds/dumpstate/dumpstate.cpp | |
parent | aa627355e44f15f22703515253adae994e6aafe6 (diff) | |
parent | cbf278a57c60ed43cb95259347eaf5137b715f9f (diff) |
Merge "Add network link statistics to bugreport" into main
Diffstat (limited to 'cmds/dumpstate/dumpstate.cpp')
-rw-r--r-- | cmds/dumpstate/dumpstate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp index dc27467f93..36d8cb61db 100644 --- a/cmds/dumpstate/dumpstate.cpp +++ b/cmds/dumpstate/dumpstate.cpp @@ -1236,7 +1236,7 @@ static void DumpPacketStats() { static void DumpIpAddrAndRules() { /* The following have a tendency to get wedged when wifi drivers/fw goes belly-up. */ - RunCommand("NETWORK INTERFACES", {"ip", "link"}); + RunCommand("NETWORK INTERFACES", {"ip", "-s", "link"}); RunCommand("IPv4 ADDRESSES", {"ip", "-4", "addr", "show"}); RunCommand("IPv6 ADDRESSES", {"ip", "-6", "addr", "show"}); RunCommand("IP RULES", {"ip", "rule", "show"}); |