Huh? I do this all the time. I setup ethernet over USB and then connect 
to the phone with:

ADBHOST=192.168.0.202 adb kill-server
ADBHOST=192.168.0.202 adb command

I don't know what you mean that it isn't possible. I guess I'm doing the 
impossible, then. ;)

David Turner wrote:
> This is not currently possibe.
>
> First of all, you need to understand that there are 3 components to ADB:
>
> - the 'adbd' daemon that runs on the device
> - the 'adb server' that runs as a background process on the host 
> development machine
> - the 'adb client', which can be either the adb executable or DDMS, 
> which communicate with the server
>
> the 'adbd' daemon that runs on a real device only listens to the USB 
> communication channel, and it simply is not possible to make it listen 
> to an IP address. consequently, the 'adb server' must run on a host 
> machine that is connected to the device through USB
>
> I believe these limitations are here for security reasons. You 
> certainly don't want anyone on the network be able to access the adbd 
> daemon on your device by default.
>
> ADBHOST is a relic of ancient code that has been removed for security 
> reasons. Its handling is probably broken and will not work as you 
> expect it to, and the best it could do is connect an adb client 
> running on machine A to an adb server running on machine B; which is 
> not exactly what you're looking for (and if the latter interests you, 
> you probably should better use SSH port forwarding to do that securely).
>
> On Wed, Jan 21, 2009 at 6:35 AM, divya <pdiv...@gmail.com 
> <mailto:pdiv...@gmail.com>> wrote:
>
>
>     Hi,
>
>       I have succefully got the android up and running on OMAP 3430. But
>     now I want to use adb tool to push applications on to the device and
>     also for debugging.
>
>       I have assigned my OMAP 3430 board an IP. How can now connect to
>     the board using a windows machine(host).
>
>       After searching for this information I have got a way from a linux
>     machine using the below commands:
>
>       # Killall –a adb
>     # export ADBHOST=<target ip address>
>     # adb shell
>
>     Is this right for linux host? Do we have the same for a windows
>     machine?..
>
>     Any information is welcome....
>
>     Regards,
>     Divya
>
>
>
>
>
> >


--~--~---------~--~----~------------~-------~--~----~
unsubscribe: android-porting+unsubscr...@googlegroups.com
website: http://groups.google.com/group/android-porting
-~----------~----~----~----~------~----~------~--~---

Reply via email to