From ae7982995ba5ed68a6b25f61f7e52203ef518b10 Mon Sep 17 00:00:00 2001 From: Chris Fiege Date: Fri, 18 Oct 2024 16:40:44 +0200 Subject: [PATCH] ffbs-collect-debug-info: Also run netstat This command collects statistics on on established and listening sockets. This helps debugging situations where it is not clear, if a process is still listening on it's socket or where a process may stopped reading from a socket. Signed-off-by: Chris Fiege --- ffbs-collect-debug-info/src/collect-debug-info | 1 + 1 file changed, 1 insertion(+) diff --git a/ffbs-collect-debug-info/src/collect-debug-info b/ffbs-collect-debug-info/src/collect-debug-info index 3282d48e..859ad1e6 100755 --- a/ffbs-collect-debug-info/src/collect-debug-info +++ b/ffbs-collect-debug-info/src/collect-debug-info @@ -14,6 +14,7 @@ run_command "ps w" run_command "ip addr" run_command "ip -4 route show" run_command "ip -6 route show" +run_command "netstat -atuwxeWnp" run_command "wg show" run_command "cat /tmp/gluon/wan-dnsmasq/resolv.conf" run_command "cat /tmp/state/network"