问题描述
我的手机与将数据发送到网络有问题。我想,我必须要改变它的MTU大小,使其工作。
My phone is having problem with sending data to the network. I think I have to change its MTU size to make it work.
推荐答案
要改变你需要获取手机Root权限MTU设置。在foruns搜索如何做到这一点。之后,你需要安装一个终端模拟器和检查什么是您的网络接口运行命令:
To change MTU settings you need a to root your phone. Search in foruns how to do it.After that your need to install a terminal emulator and check what is your network interfaceRun the command:
netcfg
和看IP地址什么是你想要的装置(为wlan0,tiwlan0等)
and look at the IP address what is your desired device (wlan0, tiwlan0, etc)
然后使用此命令
ifconfig $DEVICE mtu $MTU_VALUE
和替代$设备与设备名称和$ MTU_VALUE所需的MTU值
and substitute $DEVICE with device name and the desired MTU value in $MTU_VALUE
您也可以看到,在该文件中的值:
You can also see the value at this file:
cat /sys/class/net/$DEVICE/mtu
这篇关于有没有办法改变的android手机的MTU大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!