What Is MTU? Understanding the Concept and Diagnosing Problems

Work through these steps in order.

  1. Understand what MTU means

    MTU (Maximum Transmission Unit) is the largest packet size, in bytes, that can be sent in a single network transmission. Standard wired Ethernet uses an MTU of 1500 bytes, and anything larger gets split into multiple fragments before it can be sent.

  2. PPPoE connections shrink MTU to 1492 bytes

    When an internet connection uses PPPoE, an 8-byte header gets added to every packet, which lowers the usable MTU from 1500 down to 1492 bytes. Most routers handle this automatically, but manually configured devices or certain VPN clients can end up with a mismatched value.

  3. Recognize the symptoms of an MTU problem

    If ordinary browsing and ping tests work fine but a VPN keeps dropping, a specific website never finishes loading, or large attachments hang, an MTU mismatch further along the network path may be silently dropping oversized packets -- a pattern often called an MTU black hole. Small packets like pings get through while larger ones don't.

  4. Find your real maximum size with a ping test

    On Windows, run a command in Command Prompt like ping -f -l 1472 followed by the target address, which forbids fragmentation with -f and sets a packet size with -l. Add 28 bytes (the IP and ICMP header) to the largest size that succeeds without error to get your actual maximum MTU -- on a PPPoE connection this usually lands around a 1464-byte payload (1464+28+8=1500).

  5. Adjust the MTU on your router or device

    In your router's admin page, look for an MTU field under the internet or WAN settings and enter 1492, or whatever value you confirmed through testing. Many routers work fine left on Automatic, but if problems persist, manually lowering the value is worth trying.

  6. Jumbo frames for NAS and server setups

    On an internal wired network that regularly moves large files to a NAS, raising the MTU up to 9000 bytes with jumbo frames can improve transfer efficiency. Every device along the path -- switches, network cards, and the NAS itself -- needs to support jumbo frames, since even one device that doesn't can cause more problems than it solves.

MTU adjustments live inside your router's WAN settings

Adjusting MTU ultimately means finding a field inside your router's internet (WAN) configuration menu. If you're not sure how to reach the admin page, check the router's manual or the setup screen's own guidance first.

If you're on IPv6, mismatches show up more clearly

In an IPv6 environment, devices along the path generally cannot fragment packets on the fly the way IPv4 allows, so an MTU mismatch tends to surface more noticeably.

Frequently Asked Questions

Does setting MTU higher make the internet faster?

No -- if anything, sending packets larger than a device along the path supports means they get silently dropped or fragmented more, which can slow things down. MTU isn't a value that speeds things up the larger it gets; it's a value that needs to precisely match the path it's traveling.

Does an average user really need to worry about MTU?

In most cases, the router and your provider's equipment handle the right value automatically, so there's nothing to think about. But if a VPN keeps disconnecting or one particular site refuses to load, it's worth checking using the method described here.