我正在尝试通过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模式端口重新启动
- daemon not running. starting it now on port 5037 \*
- daemon started successfully \* :67
不需要adb kill-server。我能做到:
adb tcpip 5555,它提供:在TCP模式下重新启动端口: 5555
以上信息是什么意思?
发布于 2013-11-19 19:14:55
根据一个页面,我刚刚读到的服务器只能在编号5555到5585的端口中启动。
“需要记住的一件事是,您只能在5555...5585范围内选择一个端口号。
adb tcpip 5555“(通过http://www.chentir.com/?p=1613)
https://stackoverflow.com/questions/18709711
复制相似问题