How to setup ssh tunnel to forward ssh?

Solution 1:

You are asking it to listen on your local port 22 and forward connections to a remote system's port 8090. You can't do that, because your local port 22 is already taken by your local SSH server.

I think what you are looking for is remote forwarding. Replacing -L 22:localhost:8090 with -R 8090:localhost:22 will tell the remote host to listen on port 8090 and forward requests to your SSH server.

If you are leaving the connection running so you can get in later from a remote site, then you are going to want to make sure the connection doesn't time-out due to inactivity by adding the relevant options (-o TCPKeepAlive=yes or -o ServerAliveInterval=30)

So you'll end up with something like:

ssh -N user@my_server -R 8090:localhost:22 -o ServerAliveInterval=30

Also, if one of the network hops between you and the server is down at any point, the connection will drop despite any KeepAlive options you specify, so you might want to add this command to inittab, or look into the daemontools package or your distro's equivalent , so that it always starts on boot and is restarted when it exits for some reason other then system shutdown (or you could run it from a shell script that loops infinitely, but init or daemontools are cleaner solutions).

Solution 2:

The reason you can't do this is because you're trying to forward port 22 on the local computer to port 8090 on the remote server and something is already running on port 22 on the local server. Mostly likely you have an SSH server running. You can fix this by changing the 22 to a different value. You can check to see if a port is free by running:

# netstat -lep --tcp

This lists all the listening sockets, so if the port isn't listed, then it's free.


Solution 3:

I'm using lsof -i :PortNumber command to check if port is free:

# lsof -i :2272

if port is free you will see nothing in output.