I am interested in sending Jumbo Frames, I have two issues:
1) I cannot seem to know, before actually trying (and getting an error), whether I can or not send Jumbo Frames. It appears it is only possible when a certain type of network adapters are present (i.e. Gigabit Network Card).
Is there a way to know the maximum allowed packet I can send via pcap without actually needing to send and fail?
2) I cannot find any documentation on how pcap handles such large packets - it seems that it works well up to 1536 (+-) from that point, even with the right equipment (i.e Gigabit card), traffic is shaky, and errors show relevant to pcap_sendpacket() function, and it failing to send the data (the error is a generic cannot send packet error, nothing related to big packet, or similar).
Has anyone tried to send such big packets using Pcap?
(My environment - if it matters, is Windows, but the code is cross-platform and I expect the same "issues" on Linux)