summaryrefslogtreecommitdiff
path: root/cmds/dumpstate/dumpstate.cpp
diff options
context:
space:
mode:
author Ray Chen <rayljchen@google.com> 2023-11-29 07:10:56 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-11-29 07:10:56 +0000
commitf9c46249bf29f3468b73a6629146fc8104a06021 (patch)
tree464c7eb5e5145f0a262127fdf2647d97a59cf1b1 /cmds/dumpstate/dumpstate.cpp
parentaa627355e44f15f22703515253adae994e6aafe6 (diff)
parentcbf278a57c60ed43cb95259347eaf5137b715f9f (diff)
Merge "Add network link statistics to bugreport" into main
Diffstat (limited to 'cmds/dumpstate/dumpstate.cpp')
-rw-r--r--cmds/dumpstate/dumpstate.cpp2
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"});