From 45b6905896f63b1e4deb37e6ef22daf5e261a6ce Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 24 Jul 2018 11:42:03 +0200 Subject: wireshark-remote: Use tcpdump Signed-off-by: Florian Pritz --- wireshark-remote | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'wireshark-remote') diff --git a/wireshark-remote b/wireshark-remote index a7116b7..756771b 100755 --- a/wireshark-remote +++ b/wireshark-remote @@ -2,8 +2,15 @@ host="$1" iface="$2" +shift 2 + +if (($#>0)); then + filter="and ($*)" +fi #wireshark -k -i <(ssh "$host" tshark -i "$iface" -w - not tcp port 22) #wireshark -k -i <(ssh "$host" dumpcap -q -i "$iface" -w /dev/stdout 'not\ tcp\ port\ 22') -wireshark-gtk -k -i <(ssh "$host" dumpcap -q -P -i "$iface" -w - -f 'not\ port\ 22') #wireshark -k -i <(ssh "$host" /home/flo/capture.sh "$iface") + +#wireshark-gtk -k -i <(ssh "$host" dumpcap -q -P -i "$iface" -w - -f 'not\ port\ 22') +wireshark-gtk -k -i <(ssh "$host" tcpdump -i "$iface" -w - "'not port 22 $filter'") -- cgit v1.2.3-24-g4f1b