HOW TO CHANGE MTU SIZE IN WINDOWS 10
It often is observed that some websites dont perform optimally on some Broadband Connections . When nothing else works, It can be fixed by adjusting your MTU . Please see the below steps to change it .
- Open a command prompt as administrator. (Hit Windows start button, type CMD, right click on command prompt and run as administrator)
- type the command : netsh interface ipv4 show subinterfaces
- This should output your interfaces and current MTU size.
- Remember the interface name as you will need it to change the MTU size (For my example it is Ethernet).
- Type the following command and Substitute Ethernet for my interface name and a new MTU size of 1518.
- netsh interface ipv4 set subinterface “Ethernet” mtu=1518 store=persistent
- Done.