gpt4 book ai didi

linux - Tcpdump 命令 - Linux - Unix

转载 作者:太空宇宙 更新时间:2023-11-04 05:40:39 25 4
gpt4 key购买 nike

我正在使用 tcpdump 命令捕获网络接口(interface) eth0 上的流量

tcpdump -Xvv -n -i eth0 -c 300 > captureFile.txt

在 shell 中出现下一条消息

tcpdump:监听 eth0,链路类型 EN10MB(以太网),捕获大小 96 字节捕获 300 个数据包过滤器收到 302 个数据包内核丢弃了 0 个数据包

如何在命令行中不显示消息???

最佳答案

在命令行末尾添加2>/dev/null:

tcpdump -Xvv -n -i eth0 -c 300 > captureFile.txt 2>/dev/null

Tcpdump 将消息写入标准错误,并且 > 重定向仅适用于标准输出。

如果您希望消息出现在 captureFile.txt 中,请使用:

tcpdump -Xvv -n -i eth0 -c 300 > captureFile.txt 2>&1

有关重定向的更多信息,请参阅 http://www.tldp.org/LDP/abs/html/io-redirection.html

关于linux - Tcpdump 命令 - Linux - Unix,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14324925/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com