I have a binary file that I want to convert to a pcap file. I did a hexdump and then converted to a pcap using text2pcap. But there are multiple packets(custom protocol, custom dissector) in that binary file. How do I use hexdump to delineate different packets so that my pcap file has multiple packets?? Thanks! asked 13 Jun '11, 12:37 tut087 |
One Answer:
The different packets are tracked through their offset:
See the section in the User's Guide. answered 13 Jun '11, 13:50 Jaap ♦ |
Thanks. When I create ahexdump. offset of zero comes in the beginning only. So do I have to manually change it? Or is there a method to produce a zero offset after regular byte interval?