Knowledge Base

Browse our knowledge base for free solutions to common problems

Enable Path MTU Discovery (MTU Probing) on Linux

Created On: 14 September 2022
Written by: Ben

RFC4821 proposes a mechanism to detect ICMP black holes and tries to adjust the path MTU in a smart way rather than performing DF set pings etc.

On Linux implementation of this mechanism is pretty straightforward and on recent distributions it comes built into the OS by default.

Enable TCP MTU Probing

First check to see if probing is already enabled. To do this run:

cat /proc/sys/net/ipv4/tcp_mtu_probing

Value:

  • 0 = Disabled
  • 1 = Enabled

If on your machine it's disabled (value 0) or the file does not exist you can enable it by running the following:

echo 1 > /proc/sys/net/ipv4/tcp_mtu_probing

Set a Base MSS Size

First check the current Base MSS Size with:

cat /proc/sys/net/ipv4/tcp_base_mss

If the value is anything other than 1024 then run the following:

echo 1024 > /proc/sys/net/ipv4/tcp_base_mss

This setting increases the starting MSS used in MTU discovery from default 512 bytes to 1024 as suggested by RFC4821.

All set! MTU probing should now be enabled and the optimal MTU value should be automatically used by the OS.

ICTU LTD is a company registered England and Wales (Company No. 09344913) 15 Queen Square, Leeds, West Yorkshire, England, LS2 8AJ
Copyright © 2024 ICTU LTD, All Rights Reserved.
exit