REW

What Is The MTU Of Ethernet?

Published Aug 29, 2025 4 min read
On this page

The standard Maximum Transmission Unit (MTU) for Ethernet is 1500 bytes, which represents the maximum size of the payload that can be transmitted in a single Ethernet frame. This value does not include the 18 bytes of the Ethernet header and Frame Check Sequence (FCS) trailer, making the total maximum frame size 1518 bytes. While 1500 bytes is the common standard for general networks, high-performance environments may use "jumbo frames" with significantly larger MTUs, often up to 9000 bytes.

Detailed explanation and analysis

Understanding MTU in the context of an Ethernet frame

To fully grasp the MTU, it's essential to understand the structure of an Ethernet frame. The total frame size includes the MTU (payload) plus the Layer 2 Ethernet header and trailer.

  • Ethernet Frame Components:
    • Header (14 bytes): Contains the destination and source MAC addresses and the EtherType field.
    • Payload (46 to 1500 bytes): This is the data from higher-level protocols, such as an IPv4 packet, and is the part that the MTU value refers to.
    • Frame Check Sequence (FCS) (4 bytes): A checksum used to detect corrupted data.
    • Total Standard Frame Size (1518 bytes): 14 bytes (header) + 1500 bytes (maximum payload/MTU) + 4 bytes (FCS).

MTU in different network scenarios

The MTU can vary depending on network configuration and specific use cases.

  • Standard Ethernet: A 1500-byte MTU is the default and most widely supported size across the internet, ensuring optimal compatibility and efficiency for general use.
  • Jumbo Frames: These are Ethernet frames with a payload larger than 1500 bytes, typically set to 9000 bytes or more.
    • Benefits: Used in high-performance computing, data centers, and storage area networks to increase throughput and reduce CPU overhead, as fewer, larger frames are needed to transfer the same amount of data.
    • Requirements: All devices on a network segment (switches, routers, and network cards) must support jumbo frames for them to work effectively. A mismatch can cause performance issues and fragmentation.
  • Tunneling and Encapsulation: When protocols like PPPoE (used for DSL) or VPNs are used, extra headers are added, which reduces the effective MTU for the payload.
    • PPPoE: Adds an 8-byte overhead, reducing the maximum payload from 1500 to 1492 bytes.
    • VPNs: Additional encryption overhead may require a lower MTU to prevent fragmentation.
  • VLAN Tagging (IEEE 802.1Q): A 4-byte VLAN tag increases the total frame size from 1518 bytes to 1522 bytes while keeping the MTU at 1500 bytes.

The importance of consistent MTU

For a data transfer to occur smoothly and without issue, the MTU should be consistent across the entire network path.

  • Fragmentation: If a packet is larger than the MTU of a device it crosses, the device may have to fragment the packet into smaller pieces. This adds processing overhead and can increase latency, harming network performance.
  • Path MTU Discovery (PMTUD): This process helps determine the smallest MTU along a network path to prevent fragmentation.
    • The sender transmits packets with the "Don't Fragment" flag set.
    • If a packet is too large, the receiving device sends an ICMP "Packet Too Big" message back to the sender.
    • The sender then resends smaller packets.
  • Black Hole MTU: This issue occurs when an intermediate device drops packets that are too large but fails to send an ICMP message back to the sender. This causes a "black hole" where data is lost without a clear reason, making troubleshooting difficult.

MTU vs. MSS: A clarification

MTU is often confused with Maximum Segment Size (MSS). While both relate to packet size, they operate at different layers of the OSI model.

Parameter MTU (Maximum Transmission Unit) MSS (Maximum Segment Size)
Layer Network Layer (Layer 3) Transport Layer (Layer 4)
Scope Maximum size of an entire IP packet, including the IP and TCP headers, that can be transmitted on a network medium without fragmentation. Maximum size of the data payload within a TCP segment, excluding the TCP and IP headers.
Calculation Determined by the physical network medium. Negotiated during the TCP three-way handshake and is typically the MTU minus the IP and TCP headers (e.g., 1500−20−20=14601500 minus 20 minus 20 equals 1460 1500−20−20=1460 bytes).
Fragmentation If a packet exceeds the MTU, it is fragmented into smaller packets at the network layer. Packets that exceed the negotiated MSS are dropped, not fragmented.
Enjoyed this article? Share it with a friend.