通过TCPIP连接Android设备

时间:2013-09-10 02:09:38

标签: android tcp ip adb

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

    • 守护程序未运行。现在在端口5037 *
    • 上启动它
    • 守护程序成功启动*

      在TCP模式下重启:67

  6. adb kill-server不需要。我能做到:

    adb tcpip 5555给出:在TCP模式端口重启:5555

    上述消息是什么意思?

1 个答案:

答案 0 :(得分:2)

根据我刚刚阅读的页面,服务器只能从编号为5555到5585的端口开始。

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

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