Jump to content

This is the support site for Andrews & Arnold Ltd, a UK Internet provider. Information on these pages is generally for our customers but may be useful to others, enjoy!

Changing Windows MTU: Difference between revisions

From AAISP Support Site
Content deleted Content added
AA-Andrew (talk | contribs)
AA-Andrew (talk | contribs)
mNo edit summary
Line 4: Line 4:


===1. Open Command Prompt as Administrator===
===1. Open Command Prompt as Administrator===
# Click start
# Click <SyntaxHighlight inline>start</SyntaxHighlight>
# Type <SyntaxHighlight inline>cmd</SyntaxHighlight>
# Type cmd
# On the Right hand side, click 'Run as administrator'
# On the Right hand side, click <SyntaxHighlight inline>'Run as administrator'</SyntaxHighlight>


<gallery widths=600 heights=300>
<gallery widths=600 heights=300>

Revision as of 09:33, 16 June 2023


Sometimes you may have a reason to change the MTU on your windows computer. Here is how.

1. Open Command Prompt as Administrator

  1. Click start
  2. Type cmd
  3. On the Right hand side, click 'Run as administrator'

2. Show the current MTU and the interface name

  1. Enter in the command: netsh interface ipv4 show subinterfaces
  2. Make a note of the existing MTU (probably 1500)
  3. Make a note of the interface name - eg Ethernet

3. Change the MTU for the interface

  1. Enter the command: netsh
  2. Then: interface

Then: ipv4 Then: set subinterface "Ethernet" mtu=1320 Then: exit

5. Check the MTU

  1. Run the first command to show the Interface details again: netsh interface ipv4 show subinterfaces
  2. It should now show 1320

6. Reverting back

  1. restarting the computer should change the MTU back to default
  2. Or, you can run the commands above, but set 1500 instead of 1320