Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 1.43 KB

ssh.md

File metadata and controls

19 lines (10 loc) · 1.43 KB

ssh

Secure Shell is a protocol used to securely log onto remote systems.

It can be used for logging or executing commands on a remote server.

Basic Usage

Connect to a remote server:

ssh username@remote_host

Connect to a remote server with a specific identity (private key):

ssh -i path/to/key_file username@remote_host

Connect to a remote server using a specific port:

ssh username@remote_host -p 2222