【Templates】 重放pcap捕捉的udp流 -- 02 October 2013
问题情景
使用wireshark捕获了含有某UDP流的抓包数据。现在需要:
- 分离出此UDP流
- 在新网络中的节点间重放
从而分析UDP流的状况
步骤
分离UDP流
在wireshark中输入合适的过滤器,例如”udp.src_port==
改写MAC地址
将源MAC地址改为XX:XX:XX:XX:XX:XX,目标MAC地址改为NN:NN:NN:NN:NN:NN
tcprewrite --enet-dmac=NN:NN:NN:NN:NN:NN --enet-smac=XX:XX:XX:XX:XX:XX --infile=stage1.pcap --outfile=stage2.pcap
改写IP地址
首先要生成cache文件,tcpprep主要用来分离服务端和客户端的流,但此处纯粹是为了后面命令的必要性:
tcpprep -p -i stage2.pcap -o tmp.cache
然后改写IP地址:
tcprewrite --endpoints=<dest_ip>:<src_ip> --cachefile=tmp.cache --infile=stage2.pcap --outfile=stage3.pcap
重放UDP流
tcpreplay --intf1=<interface> stage3.pcap
这里
blog comments powered by Disqus