1. 程式人生 > >tcpreply工具的安裝及使用

tcpreply工具的安裝及使用

網絡 發包工具

  • CentOS 安裝tcpreplay

    yum install epel-release
    yum install tcpreplay
  • 使用tcpreply
    為要發送的a.pcap包創建緩存a.cache
    tcpprep -a client -i a.pcap -o a.cache

    回放報文a.pcap

    tcpreplay -p 2 -l 600 -c a.cache -i eth6 -I eth6 a.pcap

    -p 每秒發送包數
    -l 要發送的總包數
    a.cache 是存放緩存的麽?
    -i 指定Client to server/RX/primary traffic output interface
    -I 指定Server to client/TX/secondary traffic output interface

    a.pcap文件是要回放的報文

  • tcpreply工具的安裝及使用