Library
Back to reading

What Is the Maximum Transmission Unit?

What Is the MTU?

Preview: Learn more about the Maximum Transmission Unit (MTU) and how it determines the largest packet that can be transmitted across a network.

The Maximum Transmission Unit (MTU) is the largest packet, or frame payload, that can be transmitted over a particular communication link without being fragmented. Every network technology has an MTU that defines the maximum amount of user data that can be carried in a single transmission. Selecting an appropriate MTU is important because it influences network efficiency, throughput, latency, and compatibility between interconnected networks.

When a device sends data across a network, the information is divided into packets before transmission. If a packet is larger than the MTU of the next communication link, it cannot be transmitted intact. Instead, it must either be fragmented into smaller packets or rejected, depending on the protocol being used. Fragmentation introduces additional processing, increases protocol overhead, and may reduce communication performance.

A useful analogy is shipping goods by truck. If a package is too large to fit into the available vehicle, it must either be divided into smaller packages or transported using a different vehicle. Similarly, network packets must fit within the MTU of every link they traverse.

The most familiar example is Ethernet, where the standard MTU is 1,500 bytes of payload. Other technologies use different values depending on their design. Some high-performance networks support jumbo frames, typically with MTUs of around 9,000 bytes, allowing larger amounts of data to be transmitted in each packet and reducing protocol overhead during high-speed data transfers.

If a packet exceeds the MTU of an intermediate network, different protocols respond in different ways. In IPv4, routers may fragment oversized packets into smaller fragments that are reassembled by the destination device. In IPv6, intermediate routers do not perform fragmentation; instead, the sending device must determine an appropriate packet size using a technique known as Path MTU Discovery (PMTUD).

Choosing the correct MTU involves balancing efficiency and reliability. Larger MTUs reduce protocol overhead because fewer packet headers are required to transmit a given amount of data. However, larger packets also require retransmission of more data if an error occurs. Smaller MTUs improve compatibility across heterogeneous networks but increase overhead because more packets are required to carry the same information.

MTU is particularly important in Virtual Private Networks (VPNs), tunnelling protocols, and Multiprotocol Label Switching (MPLS) networks. Additional protocol headers inserted by these technologies consume part of the available packet size, reducing the effective payload unless the MTU is adjusted accordingly. Incorrect MTU settings may cause fragmentation, reduced performance, or communication failures.

It is important to distinguish the Maximum Transmission Unit from the Maximum Segment Size (MSS). MTU refers to the maximum size of the entire network-layer packet that can be transmitted over a link, whereas MSS refers only to the maximum amount of application data carried within a TCP segment after protocol headers have been excluded.

Today, MTU is a fundamental parameter of virtually every data network. Ethernet, Wi-Fi, cellular networks, satellite communications, fibre-optic systems, and the Internet all rely on appropriate MTU values to achieve efficient and reliable data transfer. Correct MTU configuration helps maximise throughput while avoiding unnecessary fragmentation, making it an important consideration in the design and operation of modern communication networks.

Back to reading