Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

18 Answers

Manual Process

From Your Device, if it is Rooted

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

From a Computer, if You Have USB Access Already

It is even easier to switch to using WiFi, if you already have USB access. 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

Be sure to replace 192.168.0.101 with the IP address that is actually assigned to your device.

To tell the ADB daemon return to listening over USB

adb usb

Apps to Automate the Process

There are also several apps on Google Play that automate this process, a quick search suggests adbWireless, WiFi ADB and ADB WiFi. All of these require root access, but adbWireless requires fewer permissions.

share|improve this answer
1  
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
4  
@ 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
26  
For the second solution (adb tcipip 5555 and adb connect ... there's no root necessary. – Ridcully Feb 22 '12 at 6:58
1  
there are small free apps on the market that launch adb into tcpip mode. – John Jul 13 '12 at 21:55
show 4 more comments

This is really simple.

First 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.

share|improve this answer
2  
This answer was better for me because it explained that which part should be performed on the device and which on the computer. – Eduardo Jul 14 '12 at 17:14

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
share|improve this answer
+1; I like this solution. – Mike Aug 2 '12 at 0:47

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 works.You just need to access the android shell and type those commands...

One other (easier) solution is on the Market: adbWireless, it will automatically set your phone.

Root is required! for both...

share|improve this answer
1  
...but only if the phone is rooted. – android.weasel Oct 27 '12 at 17:41

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

share|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
you should first adb tcpip port as the default is debugging over usb. After the latter you can connect connect host:port and it should work – Aiden Strydom Mar 13 at 10:27

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.

share|improve this answer

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.

share|improve this answer
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.

share|improve this answer

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.

share|improve this answer

To switch between TCP and USB modes with just one command, you can add this to /init.rc:

on property:service.adb.tcp.port=*
    restart adbd

on property:service.adb.tcp.enable=1
    setprop service.adb.tcp.port 5555

on property:service.adb.tcp.enable=0
    setprop service.adb.tcp.port -1

And now you can use property service.adb.tcp.enable to enable or disable listening on port 5555. Run netstat to check whether it's listening. As you can see it will also trigger if you do wish to change service.adb.tcp.port manually.

share|improve this answer
Additionally...to what? – Poldie Jul 16 '12 at 19:28
you're right, I should rephrase it :) – errordeveloper Jul 16 '12 at 21:49

To connect your tablet using TCP port

make sure your system and device is connected to same network

1.open console cmd.exe

2.type adb tcpip 5555

3.go to system->dovelopment option->usb debugging unchek it for TCPIP connection

4.type adb connect 192.168.1.2 this is your device ipaddress

5.connected to 192.168.1.2

if you get message error: device not found

connect a usb device to system then follow same procedure

share|improve this answer

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.

share|improve this answer

I find the other answers confusing. Far simpler to use adbWireless:

http://ppareit.github.com/AdbConnect/

Simply install an app on your phone to toggle debugging over wifi, install an eclipse plug-in and you're done.

share|improve this answer
What eclipse plug-in are you referring to? Edit: Nevermind. Found it by following the link in your answer. – ArtOfWarfare Oct 5 '12 at 15:13

Assume you saved adb path into your windows environment path

  1. Activate debug mode in android
  2. Connect to pc via usb
  3. Open command prompt (With Admin Right) type: adb tcpip 5555
  4. Disconnect your tablet or smartphone from pc
  5. Open command prompt type: adb connect IPADDRESS (IPADDRESS is the DHCP/IP address of your tablet or smartphone, which you can find by Wi-Fi -> current connected network)

Now in command prompt you should see the result like: connected to xxx.xxx.xxx.xxx:5555

share|improve this answer

I put together a batch file for automatic enabling and connecting ADB via TCP, to a device connected via USB. With it you don't have to put in the IP manually.

@echo off
setlocal

REM Use a default env variable to find adb if possible
if NOT "%AndroidSDK%" == "" set PATH=%PATH%;%AndroidSDK%\platform-tools

REM If off is first parameter then we turn off the tcp connection.
if "%1%" == "off" goto off

REM Set vars
set port=%1
set int=%2
if "%port%" == "" set port=5557
if "%int%" == "" set int=wlan0

REM Enable TCP
adb -d wait-for-device tcpip %port%

REM Get IP Address from device
set shellCmd="ip addr show %int% | grep 'inet [0-9]{1,3}(\.[0-9]{1,3}){3}' -oE | grep '[0-9]{1,3}(\.[0-9]{1,3}){3}' -oE"
for /f %%i in ('adb wait-for-device shell %shellCmd%') do set IP=%%i

REM Connect ADB to device
adb connect %IP%:%port%

goto end

:fail
echo adbWifi [port] [interface]
echo adbWifi off
goto end

:off
adb wait-for-device usb

:end
share|improve this answer

I wrote an app to assist with this, first install the app on your Android device from here

Ensure your phone and pc is connected to the same network, open the app, click ADB over TCP, select TCP, type a port and click set. Then using cmd (Command Prompt) on Windows, cd to your directory containing the adb exe. Once there, type: 'adb connect :' and you're ready to go.

share|improve this answer

I did get this working. Didn't use any usb cable.

  • app adb wireless.
  • Run it. That will set ip and port; Then in dos

    cd C:\Program Files\Android\android-sdk\platform-tools adb connect "192.168.2.22:8000 "enter"
    

Connected.

share|improve this answer
up vote -7 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

share|improve this answer
at the time it was the only solution – JDM Mar 2 '12 at 23:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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