From 3189a06d75440a27f08e2dc9a72585feb5eb8ef1 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Fri, 27 Jun 2025 00:05:23 +0200 Subject: [PATCH] Change tcpdump flags to capture on any interface --- sbin/packet-capture.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/packet-capture.sh b/sbin/packet-capture.sh index af6eab1..1095965 100755 --- a/sbin/packet-capture.sh +++ b/sbin/packet-capture.sh @@ -39,4 +39,4 @@ fi echo "Logging to: $OUTPATH" echo "Expression: $EXPR" -tcpdump -n -s 0 -W 1000 -C 50 -w "$OUTPATH" "$EXPR" +tcpdump -i any -n -s 0 -W 1000 -C 50 -w "$OUTPATH" "$EXPR"