To change the MTU settings, you will need root for your phone. Search in foruns how to do this. After that, you need to install the terminal emulator and check what your network interface is. Run the command:
netcfg
and look at the IP address, what is your device (wlan0, tiwlan0, etc.)
then use this command
ifconfig $DEVICE mtu $MTU_VALUE
and replace $ DEVICE with the device name and the desired MTU value in $ MTU_VALUE
You can also see the value in this file:
cat /sys/class/net/$DEVICE/mtu
source share