Created
October 1, 2014 14:59
-
-
Save inh3/64cfa3ca576b06d15789 to your computer and use it in GitHub Desktop.
MTU Optimization on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# check MTU size with ping | |
ping 196.30.66.46 -t -f -l 1472 | |
# view adapters | |
netsh interface ipv4 show subinterfaces | |
# set MTU size | |
netsh interface ipv4 set subinterface "Ethernet" mtu=1492 store=persistent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment