Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set Jumbo Packet and Receive/Transmit Buffers for advanced network adapter properties in Windows?

I am trying to set some advanced properties for Network adapter e.g. Jumbo Packet, Receive/Transmit Buffers. I tried with Win32_NetworkAdapter, Win32_NetworkConnection, Win32_NetworkAdapterConfiguration WMI classes. None of them can do that.

Can anyone help me?

like image 790
Liton Avatar asked Feb 08 '12 11:02

Liton


1 Answers

"Jumbo Packet" support just means a big MTU (typically 9000 bytes). Maybe the SetMTU method of the Win32_NetworkAdapterConfiguration class, or the SetIFEntry() function (see the dwMtu field).

The size of the transmit and receive buffers is set at the socket level, independent of the network interface. Look for an interface to setsockopt() with the SO_RCVBUF and SO_SNDBUF options.

like image 93
Seth Noble Avatar answered Oct 01 '22 01:10

Seth Noble