Apps Create virtual USB tether to ADB over WAN with no initial USB connection

Deblobman

Lurker
Just like the title, I just need to be able to connect to a adb server on a computer on another network, without the initial USB tether to start the server. Thanks!
 
D

Deleted User

Guest
It will work to any subnet which is routable from your current local subnet.
 
D

Deleted User

Guest
So on your computer, did you do the following, as described in the SO question?

When connected via USB: adb tcpip 5555. Disconnect USB, view phone IP from Settings > About Phone > Status. Now adb connect 192.168.x.x
 

Deblobman

Lurker
Thread starter
So on your computer, did you do the following, as described in the SO question?

When connected via USB: adb tcpip 5555. Disconnect USB, view phone IP from Settings > About Phone > Status. Now adb connect 192.168.x.x
Thats the problem. I need to get away from the initial USB. I need to have a server pc on a different network, and fake a usb connection from a phone on another network. I cannot have the initial USB connection to create the initial connection.
 

bayk

Newbie
Even if your device on the different network, you should be fine with 'adb tcpip 5555'
This command set the target device to listen for a TCP/IP connection on port 5555. You don't have to run it from the PC that you are using to connect to the device.
Seems like it is the the only options if your device non rooted.
 
Top