forgotten space

This commit is contained in:
Florz 2021-02-18 23:02:33 +01:00
parent c0cfdd5901
commit 57de47a01c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ This is all done in `/home/ssh-port-forwarding/.ssh/authorized_keys`.
First use the `ssh-keygen` command to create a private and public key pair on the client side. Don't type any password! Then use `cat ~/.ssh/id_rsa.pub` to display the content of your newly created public key. After that add a new line in the `authorized_keys` file on the server. Use the following line as an example. Your key starts at `AAAA...` and this all needs to be in a single line per key.
`restrict,command="",port-forwarding,permitlisten="localhost:22",permitopen="localhost:22" ssh-rsa AAAA...`
`restrict`: this restricts all current and future forwarding options
`restrict`: this restricts all current and future forwarding options
`command=""`: don't allow client to send a command, set an empty forced command instead
`port-forwarding`: allow port forwarding
`permitlisten="localhost:22"`: restrict client to access ssh port on server only (default for security reasons)