I'm trying to send more than 2000 bytes of data using SharpPcap and PacketDotNet. But, the MTU (1500 bytes) is less than the size of the data. I tried to set MTU (to 5000) using https://support.zen.co.uk/kb/Knowledgebase/Changing-the-MTU-size-in-Windows-Vista-7-or-8, but still it is throwing error as follows :
SharpPcap.PcapException: Can't send packet: send error: PacketSendPacket failed
at SharpPcap.LibPcap.LibPcapLiveDevice.SendPacket(Byte[] p, Int32 size)
at SharpPcap.LibPcap.PcapDevice.SendPacket(Byte[] p)
at SharpPcap.LibPcap.PcapDevice.SendPacket(Packet p)
Can anyone help me out here...