So BT is now starting to roll our full fibre to thge premises in a few areas.
Which raises the age old question of MTU size? Obviously, which is a shame in my opinion BT have stuck with PPPoE as its connection, rather than move to a simple DHCP model, for their network authentication mechanism for their new service.
I was presuming (or hoping) that the full 1500 MTU was now supported without having to use Mini-Jumbo frames?
Does anyone know what the optimal setting is please? I am moving to a Ubiquiti UDM Pro very soon, and wanted to understand if the standard Ethernet MTU is natively supported? I cannot test on my existing Asus AX11000 unfortunetly as it nails the packets at 1492.
But what is the optimal MSS / MTU Settings ?
All the best
Gary
FTTP is still a PPPOE service with the same MTU etc.
You can actually get baby jumbo frames working pretty reliably on the UDM Pro, if you set the parent interface to 1508 MTU and the PPP interface to 1500 both in config and on interface!
$ cat 90-pppoe-1508.sh
#!/bin/sh
PPP_IFACE=ppp0
WAN_IFACE=$(cat /etc/ppp/peers/$PPP_IFACE | grep "plugin rp-pppoe.so" | cut -d " " -f 3)
echo "Updating $PPP_IFACE config for 1500 MTU/MRU..."
sed -i 's/1492/1500/g' /etc/ppp/peers/$PPP_IFACE
echo "Setting $PPP_IFACE MTU to 1500..."
ifconfig $PPP_IFACE mtu 1500
echo "Setting $WAN_IFACE MTU to 1508..."
ifconfig $WAN_IFACE mtu 1508