0

Currently I have a docker image running Alpine Linux inside a private network. I have root access to that docker image.

On the same private network, there is a database instance. Only systems on the same network can access the database ( Ex: The aforementioned docker image )

Right now, to debug things inside the DB, I had to SSH to the docker image then run command line tools from inside that docker image. That is quite complicated

Is there a way for me to connect to that Database, using development tools inside my local PC, instead ? I am not sure if the term for this is port-forward or proxying

2
  • This doesn't make much sense to me. Why are you using SSH to access the docker image then in turn accessing the database on the private network? Is your "local PC" not on that network? Commented Mar 15, 2021 at 8:14
  • The conection to docker is over remote channel. The docker image and databases are in a private network, remotely ( Like AWS VPC )
    – qkhanhpro
    Commented Mar 15, 2021 at 8:16

1 Answer 1

3

I assume you connect like this:

ssh user@docker

You need -L:

ssh -L port1:server:port2 user@docker

where server:port2 is the address and the port of the database as seen from the docker container (this address will be resolved there).

Your local ssh will listen locally on the TCP port port1. You choose the port.

Now connect from the local computer to localhost:port1 (or 127.0.0.1:port1) and the connection will reach server:port2 from docker. The server machine will see it coming from docker. This is called "local port forwarding".

This way a local tool can reach the remote database. The tool needs to connect to localhost:port1.

Notes:

  • This only works for TCP, not UDP.
  • Other machines in your local network will not be able to use your local computer as a relay to reach the database. This is probably how you want it. If not then check this question: Can I use SSH to serve a tunneled resource on a local network?
  • Use ssh -N … to establish a tunnel without executing a remote command.
  • Use autossh to automate this.
  • Ports with numbers below 1024 are privileged. As a regular user you cannot bind to such port. Choose port1 accordingly.
  • The setting AllowTcpForwarding in sshd_config on the SSH server (docker in your case) can be used to disallow port forwarding. The default is to allow, so it will probably work out of the box.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .