I have a machine without SSHD and I want to open a bash shell on this machine from a remote machine (that I can fully control).
Since I have SSH on my limited machine, I configured a reverse proxy:
$ ssh -R 19999:localhost:22 remoteuser@remotemachine
Now I have a connection on port 19999 from my "fully control" machine to my "limited" machine. How would I open a shell with this setup?