我正在尝试通过tcpip连接我的Android设备,这是我迄今为止的经验:
$ ./adb tcpip
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
restarting in TCP mode port: 67
$ ./adb connect 192.168.1.250:67
unable to connect to 192.168.1.250:67:67
$ ./adb connect 192.168.1.250
unable to connect to 192.168.1.250:5555
然后我做了:
$ ./adb kill-server
然后:
$ ./adb tcpip 5555
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
$ ./adb connect 192.168.1.250
connected to 192.168.1.250:5555
./adb tcpip 5555
和?./adb connect 192.168.1.250:67
这些消息在./adb tcpip
的o / p是什么意思?
守护程序成功启动*
在TCP模式下重启:67
adb kill-server
不需要。我能做到:
adb tcpip 5555
给出:在TCP模式端口重启:5555
上述消息是什么意思?
答案 0 :(得分:2)
根据我刚刚阅读的页面,服务器只能从编号为5555到5585的端口开始。
“要记住的一件事是,您只能选择[5555 ... 5585]范围内的端口号(原因是ADB服务器只适用于这些端口)。例如,您可以这样做:< / p>
adb tcpip 5555
“(通过http://www.chentir.com/?p=1613)