I have computer with Ubuntu behind router that I can't configure. However I want to have ssh access to that computer. I think it is possible with ssh tunneling, but I don't know how to do it. I have another server to which I would like to setup tunneling. How to do it? Or maybe you have some other idea how to solve this problem?
I tried:
ssh -N user@my_server -L 22/localhost/8090
but it says:
bind: Address already in use
channel_setup_fwd_listener: cannot listen to port: 22
Could not request local forwarding.
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:
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).
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:
This lists all the listening sockets, so if the port isn't listed, then it's free.
I'm using lsof -i :PortNumber command to check if port is free:
if port is free you will see nothing in output.
I've had the same problem, and I ran
I found that
sshd
was working in the background, so I terminated the process, I only want tossh
into another machine, not in my machine