I am attempting to debug an application on a Motorola Droid but I am having some difficulty connecting to the device via USB. My development server is a Windows 7 64bit VM running in HyperV and so I cannot connect directly via USB in the guest or from the host. I installed a couple of different USB over TCP solutions but the connection appears to have issues since the adb monitor reports "devicemonitor failed to start monitoring" repeatedly. I was wondering if there is a way to connect directly from the client on the development machine to the daemon on the device using the network instead of the usb connection or possibly other viable options?

link|improve this question

feedback

12 Answers

According to a post on xda-developers, you can enable ADB over WiFi from the device with the commands

setprop service.adb.tcp.port 5555
stop adbd
start adbd

And you can disable it and return ADB to listening on USB with

setprop service.adb.tcp.port -1
stop adbd
start adbd

If you have USB access already, it is even easier to switch to using WiFi. From a command line on the computer that has the device connected via USB, issue the commands

adb tcpip 5555
adb connect 192.168.0.101:5555

To tell the ADB daemon return to listening over USB

adb usb

There are also several apps on the Android Market that automate this process.

link|improve this answer
Do you need root access to do this? I seem to be able to run the commands using terminal, but it doesn't actually seem to work... – J J Jun 11 '11 at 4:28
3  
@ J J - Unfortunately, yes. Root required. – Kingsolmn Jun 11 '11 at 19:38
Also, check your firewall. I had to reconfigure my firewall. – Anonymous Oct 8 '11 at 1:55
4  
For the second solution (adb tcipip 5555 and adb connect ... there's no root necessary. – Ridcully Feb 22 at 6:58
feedback

this is really simple.

1st make sure you are rooted. download a terminal emulator from market. (there are lots that are free) make sure that your android is connected to your wifi and get the wifi ip address. open the terminal program and type:

su

setprop service.adb.tcp.port 5555

stop adbd

start adbd

now go to your computer (assuming that you are using windows) create a shortcut on the desktop for "cmd.exe" (without the quotations).

right click on the cmd shortcut and choose "Run as Administrator"

change to your android-sdk-windows\tools folder

type:

adb connect wifi.ip.address:5555 (example: adb connect 192.168.0.105:5555)

adb should now say that you are connected. note: if you are too fast to give the connect command it may fail. so try at least 2 times 5 seconds apart before you say this doesn't work.

link|improve this answer
feedback

As Brian said:

According to a post on xda-developers, you can enable ADB over WiFi from the device with the commands

setprop service.adb.tcp.port 5555 stop adbd start adbd And you can disable it and return ADB to listening on USB with

setprop service.adb.tcp.port -1

stop adbd

start adbd

If you have USB access already, it is even easier to switch to using WiFi. From a command line on the computer that has the device connected via USB, issue the commands

adb tcpip 5555

adb connect 192.168.0.101:5555

To tell the ADB daemon return to listening over USB

adb usb

There are also several apps on the Android Market that automate this process.

It worked, but if you have no USB cable you are not able to do this:

setprop service.adb.tcp.port 5555

stop adbd

start adbd

One solution is on the Market.

adbWireless, it will set your phone

link|improve this answer
feedback

I know this is old, but I wanted to add my 2 cents--

I needed to get both USB and TCPIP working for adb (don't ask) so I did the following (using directions others have posted from xda-developers)

Using adb shell:

su
#set the port number for adbd
setprop service.adb.tcp.port 5555

#run the adbd daemon *again* instead of doing stop/start, so there
#are 2 instances of adbd running.
adbd &

#set the port back to USB, so the next time adb is started it's
#on USB again.
setprop service.adb.tcp.port -1

exit
link|improve this answer
feedback

from adb --help

connect <host>:<port>         - connect to a device via TCP/IP

Thats a command line option by the way.

You should try connecting the phone to your wifi, and then get its IP from your router, its not going to work on the cell network

The port is 5554

link|improve this answer
I had tried that with 5555-5558 and now 5554 and it it does not work for some reason. Basically from a command line: adb kill-server adb connect 10.10.10.100:5554 with the result being * daemon not running. starting it now * * daemon started successfully * unable to connect to 10.10.10.100:5554 I can ping the ip of the device from the dev workstation. When the output states "daemon started successfully" shouldn't it be referring to the daemon on the device? Is it attempting to use the emulator possibly? How do I ensure/validate the daemon is running on the device? thanks – JDM Apr 9 '10 at 21:00
feedback
adb tcpip 5555

Weird, but this only works for me if I have the USB cable connected, then I can unplug the usb and go for it with everything else adb.

and the same when returning to usb,

adb usb

will only work if usb is connected.

It doesn't matter if I issue the

setprop service.adb.tcp.port 5555

or

setprop service.adb.tcp.port -1

then stop & start adbd, I still need the usb cable in or it doesn't work.

So, if my ADB over usb wasn't working, I bet I wouldn't be able to enable ADB over WiFi either.

link|improve this answer
feedback

You can also use ssh local port forwarding. But it still involves a usb cable. Connect your phone using USB to a computer (host) with an sshd running. On a remote(guest) pc start an ssh client capable of portforwarding/tunneling. example: plink -L 5037:localhost:5037

I use this construction to connect my device to a virtual machine. Eltima usb to ethernet wasn't stable enough (timeouts during debug)

SSH tunneling works for free and more reliable.

link|improve this answer
feedback

I do not know how to connect the device without any USB connection at all, but if you manage to connect it maybe at another computer you can switch the adbd to TCP mode by issuing

adb tcpip <port>

from a terminal and connect to your device over wifi from any PC on the network by:

adb connect <ip>:<port>

Maybe it is also possible to switch to TCP mode from a terminal on the device.

link|improve this answer
feedback

old thread i know. i did get this working. did not use any usb cable. app adb wireless. run it. that sets ip and port then in dos cd C:\Program Files\Android\android-sdk\platform-tools adb connect "192.168.2.22:8000 "enter" connected.

link|improve this answer
feedback

Use the adbwireless app to enable the phone, then use adb connect from the Windows machine to talk to it. The adbwireless app on the phone tells you how to connect to it, giving the IP address and everything.

The much less fun alternative is to connect via USB, tell the phone to use TCPIP via adb tcpip 5555, then disconnect USB, then use adb connect. This is much harder because this way you have to figure out the IP address of the phone yourself (adbwireless tells you the IP), you have to connect via USB, and you have to run adb tcpip (adbwireless takes care of that too).

So: install adbwireless on your phone. Use it. It is possible, I do it routinely on Linux and on Windows.

link|improve this answer
feedback

On my system it went like this:

On my Android device in my Linux shell, a simple "ifconfig" did not give me my IP address. I had to type:

ifconfig eth0

-or-

netcfg

to get my IP address. (I knew eth0 was configured because I saw it in my dmesg.) Then I did the :

setprop service.adb.tcp.port -1

stop adbd

start adbd

Then on my Win7 box (the one running Eclipse 3.7.1). I opened a command prompt to

\android-sdk\platform-tools>

without running as admin. Then I did a

adb connect 12.345.678.90

I never put a port. If I did a

adb tcpip 5555

it said it couldn't find the device then nothing appeared in my "adb devices" list. I.e. it only works if I DON'T do the tcpip command above.

I can do an "adb shell" and mess with my Android Device. But my Android Device does not appear in my Run->Run Configurations->Target tab right now. On the other hand, if I keep the Target Tab set to automatic. Then when I run my app via Run->Run it does run on my Android device even though my Android device is not even listed as one of my targets.

link|improve this answer
feedback
up vote -4 down vote accepted

I ended up getting the Eltima USB to Ethernet software working after finally giving up on the possibility of a direct to device connection over TCP. I have pretty much decided that it is not possible to connect to a device across the network only an emulator. If anyone finds out differently please update this post. thanks

link|improve this answer
at the time it was the only solution – JDM Mar 2 at 23:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.