【发布时间】:2013-09-13 14:52:14
【问题描述】:
我正在尝试通过 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 上的这些消息是什么意思?- 守护程序未运行。现在在端口 5037 上启动它 *
-
守护进程启动成功 *
在 TCP 模式下重启端口:67
adb kill-server 不需要。我能做到:
adb tcpip 5555 给出:以 TCP 模式重新启动端口:5555
上面的信息是什么意思?
【问题讨论】: