So after trying to figure out why tethering was messed up, I have figured some stuff out and wanted to get it out into the community.
First, the MTU is set to 1472 on the 3G side not the wifi side. I found this by going to SpeedGuide.net :: Broadband Tweaks, Tools and Info on both 3G and wifi. I have only checked with Sharp Ver7 using my new kernel so other ROMs may be different. That is why I started this thread, to get as much info as possible about all ROMs for the Triumph. Just click the link and report your findings and what ROM you are using.
Second, I found that the stock kernel has these lines in drivers/net/msm_rmnet.c and msm_rmnet_common.c :
instead of what it should be:
This is the setting for 3G not wifi and it seems to reduce the ping times significantly haven't seen a ping over 350ms on 3G so far with my new kernel. Though it has not increased speeds as far as I can tell.
Third, I have found some info on how to change MTU through terminal here, I just haven't tested it yet.
Hopefully we can get some more useful info in here, but for now let me know what you guys are seeing.
First, the MTU is set to 1472 on the 3G side not the wifi side. I found this by going to SpeedGuide.net :: Broadband Tweaks, Tools and Info on both 3G and wifi. I have only checked with Sharp Ver7 using my new kernel so other ROMs may be different. That is why I started this thread, to get as much info as possible about all ROMs for the Triumph. Just click the link and report your findings and what ROM you are using.
Second, I found that the stock kernel has these lines in drivers/net/msm_rmnet.c and msm_rmnet_common.c :
Code:
/* allow larger frames */
/* FXPCAYM-218: Start - Change frame size from 2000 to 1472 */
/* #define RMNET_DATA_LEN 2000 */
#define RMNET_DATA_LEN 1472
/* FXPCAYM-218: End */
Code:
/* allow larger frames */
#define RMNET_DATA_LEN 2000
Third, I have found some info on how to change MTU through terminal here, I just haven't tested it yet.
Hopefully we can get some more useful info in here, but for now let me know what you guys are seeing.