MTU - Maximum transmission unit (MTU) is the maximum amount of data that can be transmitted by the protocol in one iteration. The default for Windows OS is 1500 bytes. You can change this setting as follows:
Display the current value: netsh interface ipv4 show subinterfaces
Set up new value:
netsh interface ipv4 set subinterface "Ethernet" mtu=1400 store=persistent
where "Ethernet" - the name of the network interface.
The settings are applied immediately, no reboot required. You can use ping to check. With MTU=1400, the "ping 192.168.0.1 -l 1372 -f" command should work,
but "ping 192.168.0.1 -l 1373 -f" does not.
No comments:
Post a Comment