0

我正在尝试通过 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
  1. 为什么我只能在执行./adb tcpip 5555and 之后才能连接?
  2. 为什么我无法通过执行连接./adb connect 192.168.1.250:67
  3. o/p 处的这些消息是./adb tcpip什么意思?

    • 守护进程没有运行。现在在端口 5037 上启动它 *
    • 守护进程成功启动 *

      在 TCP 模式下重启端口:67

adb kill-server不需要。我可以:

adb tcpip 5555这给出:以 TCP 模式重新启动端口:5555

上面的消息是什么意思?

4

1 回答 1

2

根据我刚刚阅读的页面,服务器只能在编号为 5555 到 5585 的端口中启动。

“要记住的一件事是,您只能选择 [5555...5585] 范围内的端口号(原因是 ADB Server 仅适用于这些端口)。例如,您可以这样做:

adb tcpip 5555”(通过http://www.chentir.com/?p=1613

于 2013-11-19T19:14:55.370 回答