Introduction Through various packet capture tools, we can capture various network packets such as tcp, udp, and usb for testing or monitoring purposes. Sometimes, however, we feel the need to reuse these captured packet data for testing. This article is about this need. What is the goal? If the goal of Part 1 is to reuse the captured sent packets, the goal of Part 2 is to reuse the captured received packets to verify that the response to the test packets has the expected value. How to reuse received packets. If the engineer's prediction is not wrong, the test message will be sent and then the corresponding message packet will be received. The problem is that it is not easy to see all of these response message data. To solve this problem, we create the expected message packets from the captured packets and compare them with the received message packets during the test. What do we need? - It should be easy to check and edit on the GUI to utilize the captured dat...