In my project, I should send some packages (with errors) to test receiver. I will send packages with errors as a sender, then my receiver send me package back that "This package is wrong"
So I want to create;
- Ethernet packages larger than 1500 bytes
- Ethernet packages smaller than 64 bytes
- Wrong CRC value
When I try these situations, I only achieve sending package smaller than 64 bytes. (PcapDotnet was able to do this)
How can I send ethernet packages larger than 1500 bytes?
How can I set CRC with wrong value?
Thanks in advance.