Configure TCPIP Max Transfer Unit (MTU) size in Vista
5 July 2007 by Snakefoot | Comment » | Trackback OffThe default Max Transfer Unit (MTU) size for ethernet is 1500 bytes, if using a network with a different MTU size, then one should make sure to configure MTU in Windows to avoid packet fragmentation or connection loss.
Open an Elevated Command Prompt and run this command to view current MTU size of the available IPv4 sub-interfaces (Can also be done with IPv6):
Open an Elevated Command Prompt and run this command to view current MTU size of the available IPv4 sub-interfaces (Can also be done with IPv6):
To change the MTU size of sub-interface no. 1:netsh interface ipv4 show subinterfaces
Related Registry settings to Configure MTU size.netsh interface ipv4 set subinterface "1" mtu=1500 store=persistent
Updated: 1 December 2007
Comment by Phantom - 5 July 2008 @ 1:03 Reply
The show interfaces line reveals that the loopback is set to a much higher number, should that be changed to 1500 as well?