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. More information: https://man.openbsd.org/ssh.
ssh {{username}}@{{remote_host}}
ssh -i {{path/to/key_file}} {{username}}@{{remote_host}}
10.0.0.1 and using a specific [p]ort (Note: 10.0.0.1 can be shortened to 10.1):ssh {{username}}@10.0.0.1 -p {{2222}}
ssh {{username}}@{{remote_host}} -t {{command}} {{command_arguments}}
localhost:1080):ssh -D {{1080}} {{username}}@{{remote_host}}
localhost:9999 to example.org:80) along with disabling pseudo-[T]ty allocation and executio[N] of remote commands:ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{username}}@{{remote_host}}
ssh -J {{username}}@{{jump_host}} {{username}}@{{remote_host}}
<Enter><~><.>