美文网首页
用Wireshark抓取远程计算机的tcpdump流量

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

作者: 黑山老雕 | 来源:发表于2020-07-29 14:57 被阅读0次

    参考: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 root@10.7.6.5 "tcpdump -s 0 -U -n -w - -i lo not port 22" > /tmp/board;
    

    后续再深入研究。

    相关文章

      网友评论

          本文标题:用Wireshark抓取远程计算机的tcpdump流量

          本文链接:https://www.haomeiwen.com/subject/oewhrktx.html