![]() |
Network Wizard for VHDL Test Benches
|
The PCAP library provides functions for reading network packets from PCAP files captured by tcpdump
, Wireshark
etc. These packets can then be used as stimuli in test benches. A collection of PCAP files can be found at for example PacketLife.
More details in nw_pcap_pkg
Include the libraries:
Define file name of PCAP file:
Now, assume we have a procedure called schedule_pkt()
that will send a packet across an interface to the DUT. Such procedures are readily available in verification frameworks like UVVM. The code below will schedule all the network packets in the PCAP file for transmission in the test bench:
The packets in PCAP files do not always contain all the information normally transmitted on a physical link. For example captured ethernet packets do not have preamble and often not the FCS. NetWiz can fix this for supported network protocols. Include ethernet library to fix captured ethernet packets:
Add preamble and FCS to packets before scheduling:
See further examples in the test bench nw_pcap_tb.vhd.