-
Notifications
You must be signed in to change notification settings - Fork 29.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support reverse tunnel #100222
Comments
Reverse tunnels are also super useful for forwarding API calls and redirects received by a web server in test scenarios etc. I often create an "empty" web server with just security stuff and an Apache reverse proxy and use a reverse tunnel to route traffic back to my dev machine to allow running of an integration test suite. Would be great to be able to set up and manage this reverse forwarding in VS Code 😀. My usual command is
for reverse tunnelling. |
Most of secure server requires : |
Hoping this can solve my problem of connecting GDB client in the remote workspace to GDB server running on my local machine. |
This could potentially resolve microsoft/WSL#5211 and microsoft/WSL#4619 |
Bumping this issue, we have a keen interest for this feature as we do Android development (adb) through remote servers. As I mentioned in microsoft/vscode-remote-release#7182
Is there an update on priority for this issue? |
Oh, so I'm non the only guy to try to use adbd on local ? |
context
I am trying to access adb in local machine from my remote server. To do that, I tried something like
ssh -R ${remote_port}:localhost:${local_port} remote_address
which opened a reverse port forwarding from my server and local machine so that I was able to access local attached devices in my remote server terminal.However, rather than using remote ssh tunnel everytime, I want to automate everything in vscode extension
Problem
It looks reverse port is a known issue. Wondering when that will be resolved? (https://code.visualstudio.com/api/advanced-topics/remote-extensions#known-issues)
I tried to use vscode.workspace.openTunnel
(https://raw.githubusercontent.com/microsoft/vscode/master/src/vs/vscode.proposed.d.ts)
api but it only supports a forward tunnel. Can we support reverse tunnel in this api?
The text was updated successfully, but these errors were encountered: