💾 Archived View for freeshell.de › tldr › ssh.gmi captured on 2023-09-28 at 16:56:36. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-04-28)

-=-=-=-=-=-=-

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.

More information.

ssh {username}@{remote_host}
ssh -i {path/to/key_file} {username}@{remote_host}
ssh {username}@{remote_host} -p {2222}
ssh {username}@{remote_host} -t {command} {command_arguments}
ssh -D {1080} {username}@{remote_host}
ssh -L {9999}:{example.org}:{80} -N -T {username}@{remote_host}
ssh -J {username}@{jump_host} {username}@{remote_host}
ssh -A {username}@{remote_host}
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY