mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
added ssh command
This commit is contained in:
parent
f61de87eff
commit
72911b663a
1 changed files with 12 additions and 0 deletions
12
common/ssh.md
Normal file
12
common/ssh.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
SSH, or Secure Shell, is a protocol used to securely log onto remote systems.
|
||||
> a program used for logging or executing commands on a remote server.
|
||||
|
||||
- connecting to a remote server
|
||||
`ssh username@remote_host`
|
||||
|
||||
- connecting to a remote server with specific port
|
||||
`ssh username@remote_host` -P 2222
|
||||
|
||||
- ssh tunneling
|
||||
`ssh -D 9999 -C username@remote_host`
|
||||
~
|
Loading…
Add table
Reference in a new issue