Here are instructions to check and increase the MTU (Maximum Transmission Unit) on Windows, macOS, and Linux
Terminal shows your maximum system MTU, not the actual MTU. To check your actual MTU go to https://www.speedguide.net/analyzer.php.
To check if your MTU is sufficient for our service, insert the following command into your OS terminal:
Windows:
ping boosteroid.com -f -l 1462Linux
ping -M do -s 1462 boosteroid.comMacOS:
ping -D -s 1462 boosteroid.com
Windows
Check maximum system MTU
Open Command Prompt (
Win + R, typecmd, press Enter).Run the following command:
netsh interface ipv4 show subinterfaces
Change MTU
First, identify the interface name (e.g., "Wi-Fi" or "Ethernet").
Use the following command to set a new MTU (e.g., 1500):
netsh interface ipv4 set subinterface "Wi-Fi" mtu=1500 store=persistentReplace
"Wi-Fi"with your actual interface name.Verify the change:
netsh interface ipv4 show subinterfaces
macOS
Check maximum system MTU
Open Terminal.
Run:
networksetup -getMTU en0 Replace en0 with your actual interface (use ifconfig to list interfaces).
To set a new MTU (e.g., 1500), run:
networksetup -setMTU en0 1500Linux
Check maximum system MTU
Run:
ip link show <interface_name>or:
ifconfig <interface_name>Replace <interface_name> with the name of the network interface you want to check (e.g., eth0, enp0s3, wlan0).
Temporarily Change MTU
To set a new MTU (e.g., 1500) for eth0:
sudo ip link set dev eth0 mtu 1500Make It Persistent
Debian/Ubuntu (edit
/etc/netplan/*.yamlor/etc/network/interfaces)
Example using Netplan:ethernets: eth0: mtu: 1500Red Hat/Fedora (edit
/etc/sysconfig/network-scripts/ifcfg-eth0)
Add:MTU=1500
How to change MTU on a router
Changing the MTU on a router depends on its manufacturer, model, and firmware. Below are general instructions and links to documentation for popular brands.
General Steps (Most Routers)
Open your web browser and go to your router's IP address, usually:
http://192.168.0.1or
http://192.168.1.1
Log in to the router (the default is often
admin/adminoradmin/password).Navigate to the section usually labeled:
Network Settings
WAN Settings
Advanced Settings
Look for a field called MTU, MTU Size, or Maximum Transmission Unit.
Enter your desired MTU value (e.g.,
1500or1492for PPPoE).Save or Apply the settings.
Reboot the router if necessary.
Tips
The default MTU is usually 1500.
For PPPoE, set MTU to 1492.
To find the optimal MTU, use:
Windows:
ping boosteroid.com -f -l 1472Linux
ping -M do -s 1472 boosteroid.com(Add or subtract values until you find the highest size that doesn’t fragment.)
MacOS:
ping -D -s 1462 boosteroid.com
If these steps do not help you, we advise you to contact your ISP