So after discovering I can increase internet speed by tweaking the MTU, it appears I have a MTU of only 96 bytes. Any idea why that is?
ping -c 3 -M do -s 68 google.com
PING google.com (172.217.169.46) 68(96) bytes of data.
76 bytes from lhr48s08-in-f14.1e100.net (172.217.169.46): icmp_seq=1 ttl=119 time=20.2 ms
76 bytes from lhr48s08-in-f14.1e100.net (172.217.169.46): icmp_seq=2 ttl=119 time=21.7 ms
76 bytes from lhr48s08-in-f14.1e100.net (172.217.169.46): icmp_seq=3 ttl=119 time=19.7 ms
--- google.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2003ms
rtt min/avg/max/mdev = 19.742/20.546/21.664/0.815 ms
Lets increase that by a single byte:
ping -c 3 -M do -s 69 google.com
PING google.com (172.217.169.46) 69(97) bytes of data.
--- google.com ping statistics ---
3 packets transmitted, 0 received, 100% packet loss, time 2002ms
Running on Ubuntu 20.04.3 LTS