====== 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. ([[https://en.wikipedia.org/wiki/Maximum_transmission_unit|source]]) Usually, for //Jumbo Frames// the maximum MTU size is 9000 bytes and the default is 1500 bytes. ===== Linux ====== ==== set MTU ==== ip link set eth0 mtu 9000 ==== set MTU permanently ==== === Fedora === MTU=9000 ==== check MTU ==== 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.