1. 在PC端运行iperf-2.0.4-win32\iperf.exe
2. 在MID端运行iperf
1) adb push iperf system/bin
2) adb shell chmod 777 system/bin/iperf
测试MID下行速率:
1) PC运行:
iperf -c x.x.x.x -i 1 -w 1M -t 60
其中x.x.x.x为MID的IP地址
2) MID运行:
system/bin/iperf -s
测试MID上行速率:
1) PC运行:
iperf -s
2) MID运行:
system/bin/iperf -c x.x.x.x -i 1 -w 1M -t 60
其中x.x.x.x为PC的IP地址
1