Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
tcpreplay -i eth1 --pktlen -p3200 -l10 Sample.pcap
その上で使用しているコマンドです。パケットを適切な速度で再生する必要がありますが、次のラウンドの前に約 20 秒の休憩を取る必要もあります。
シンプルで小さなシェルスクリプト:
#!/bin/bash i=0 while [ $i -lt 10 ]; do tcpreplay -i eth1 --pktlen -p 3200 Sample.pcap i=$(($i + 1)) sleep 20 done