I need to send a sequence of packets from min to max ethernet size to verify hardware. Would be best to use scapy since that's the tool of choice for existing tests.
Is there a way to have scapy to send a sequence of packets of incrementing length?
Using the [x,y] form for length seems to only change header field values, not data length.
pak=(Ether()/IP(len=[100,101])
It is possible to create a large pcap file with all the required packets and read from that, but I was hoping for something more lightweight.