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.
Asked
Active
Viewed 1,319 times
12

Dan
- 1,101
- 1
- 9
- 30
1 Answers
10
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.

Dan
- 1,101
- 1
- 9
- 30
-
Confirmed here. I had a site on port 56004 which had the same problem you describe. Moving it to 5604 fixed the issue. – Paul Stephenson Feb 05 '15 at 12:26
-
I've filed https://bugs.chromium.org/p/chromium/issues/detail?id=688050 to request the expansion of range – AlfonsoML Feb 02 '17 at 17:56