Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android USB Debugging Port Forward Error

I am having a problem with the android remote debug port forwarding. I need to get ports in the 44300-44399 range forward because visual studio debugging only allows SSL on those ports, but I can never get those ports to forward even though the documentation says it should work on any port from 1024-65535. Anyone encountered this or know how I can figure out why the port isn't forwarded? I know the connection is there since other ports work ok.enter image description here

like image 824
Dan Avatar asked Nov 10 '14 04:11

Dan


People also ask

How do I disable USB debugging on Android?

Go to Settings. Tap System > Developer options. Go to USB debugging and flip the switch to turn it off.

Should USB Debugging be on or off?

Trustwave recommends that mobile devices should not be set to USB Debugging mode. When a device is in USB Debugging mode, a computer connected to the device can read all data, run commands, and install or remove apps. The security of the device settings and data could be compromised.

Is node tree debugging the same as USB debugging?

Is Node Tree Debugging the Same as USB Debugging? In addition to USB Debugging, Android offers a similarly named option called Node Tree Debugging.


1 Answers

I found this in the Chromium source. Apparently only 1024-10000 is allowed despite the docs in chrome saying otherwise. Checking to see if they are open to expanding the allowed range to the full spectrum.

like image 194
Dan Avatar answered Sep 27 '22 19:09

Dan