admin:network:mtu

Maximum Transmission Unit (MTU)

The MTU is the size of the largest protocol data unit (PDU) that can be communicated in a single network layer transaction. (source)

Usually, for Jumbo Frames the maximum MTU size is 9000 bytes and the default is 1500 bytes.

ip link set eth0 mtu 9000

Fedora

ping -M do -s 8972 [destination IP]

There is an overhead of 8 bytes for ICMP headers and 20 bytes for Ethernet header, so the MTU is 28 bytes larger than the figure you establish through the method above. So to test for MTU of 9000, you actually need to set your ping packet size to 9000-28 = 8972.

  • Last modified: 2019-12-20 14:21