我想使用iperf发送一些数据包,并在客户端接收相同的数据包(这可能经历了不同的OSI层处理)。我想检查发送的包和收到的包是一样的。
进行比较吗?
或者还有其他更好的方法来做这件事?
发布于 2013-11-13 07:25:29
您可以使用Wireshark执行捕获,选择每个流的数据包并导出到文本文件(每个流一个):
File -> Export -> as "Plain Text" file:
- Check "Selected packet only"
- Check "Packet summary line"
- Check "Packet details: All expanded"
然后将diff with regular text tools执行为gnu diff、WinMerge或gvimdiff。
发布于 2011-11-07 03:26:06
注:我不知道自己做这样一个有用的工具,此外,这是在Wireshark愿望照明。
资料来源:http://www.wireshark.org/docs/wsug_html_chunked/ChStatCompareCaptureFiles.html
https://stackoverflow.com/questions/7586585
复制相似问题