1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

Instructions on how to use a specific private key

This commit is contained in:
Leonardo Borges 2014-02-28 23:12:10 +11:00
parent 1701905cfa
commit a76df6a009

View file

@ -7,6 +7,10 @@
`ssh {{username}}@{{remote_host}}`
- connecting to a remote server with a specific identity (private key)
`ssh -i {{/path/to/key_file}} {{username}}@{{remote_host}}`
- connecting to a remote server with specific port
`ssh {{username}}@{{remote_host}} -P {{2222}}`