User Tools

Site Tools


networking:mtu_test

This is an old revision of the document!


Testing MTU, Jumbo Frames and Packet Fragmentation

Linux

The following command example tests for Jumbo Frames capability, which is usually an MTU (max transmission unit) of 9000 bytes.

We use '8972' because that plus the overhead equals 9000 (as seen in the output of the ping command).

At the Linux CLI:

ping -M do -c 1 -s 8972 <hostname or IP>
  • -M do (don't fragment)
  • -c 1 (send one packet)
  • -s 8972 (send 8972 byte packet, plus overhead)

Windows

ping -f -l 8792 <hostname or IP>

MTU Discovery

These are tools which will figure out the MTU across the path between the host and the target:

  • For Windows
    • mturoute
  • For *nix
    • tracepath
    • traceroute –mtu
networking/mtu_test.1362966133.txt.gz · Last modified: 2013/03/10 19:42 by gcooper