用Wireshark抓取远程计算机的tcpdump流量

参考:https://bytefreaks.net/applications/how-to-process-tcpdump-live-data-stream-from-a-remote-machine-on-a-local-wireshark

主要命令

mkfifo /tmp/board;
wireshark -k -i /tmp/board &
ssh [email protected] "tcpdump -s 0 -U -n -w - -i lo not port 22" > /tmp/board;

后续再深入研究。

你可能感兴趣的:(用Wireshark抓取远程计算机的tcpdump流量)