changed subtitle

This commit is contained in:
Florian Schlegel 2022-04-14 20:03:02 +02:00
parent f7b3889b7f
commit 447abc4d3f
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# ssh-port-forwarding
(use plain openssh to do remote port forwarding)
(how to use plain openssh to do remote port forwarding)
There are many good reasons to do secure port forwarding through ssh. For example if you own two servers in different datacenters and you want to connect them to a single service which is less restricted when accessed locally (e.g. port 25 for SMTP) or you want to forward a service from a system behind a firewall (e.g. a web service on your home Server).
Traditionally you would use autossh to manage permanent ssh connections. However through many hours of testing this has prooven unreliable in many ways. When connecting multiple times to the same server autossh by default uses the same ports for monitoring, which leads to the termination of at least one connection. There also were inexplicable cases when sshd remained running on the server, while the client was actually disconnected and could not restore the connection due to the broken process on the server.