Difference between revisions of "ssh"
Jump to navigation
Jump to search
(→Links) |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | ==About== | ||
{{seed}} | {{seed}} | ||
− | == | + | ===Processes=== |
− | + | New keys are generated with [[ssh-keygen]]. [[ssh]] interacts with keys via [[ssh-agent]], which needs to have keys registered with it using [[ssh-add]] before it can use them. | |
+ | ==Related== | ||
+ | * [[keyed login]]: enable logging in from a specific remote client with no password (useful for scripts) | ||
+ | * [[ssh-add]]: manages keys for the [[ssh-agent]] | ||
+ | * [[ssh-agent]]: background process used by [[ssh]] | ||
+ | * [[ssh-keygen]]: creates new keys | ||
+ | * [[sshfs]]: a filesystem for mounting remote folders via ssh | ||
+ | ==How-to== | ||
+ | To break a dead connection and get back to a local prompt, try <code>[ENTER]~.</code> or (in MATE Terminal, at least) <code>Terminal->Reset</code>. | ||
+ | ==Links== | ||
+ | ===Reference=== | ||
+ | * {{wikipedia|Secure Shell}} | ||
+ | ===How-to=== | ||
+ | * [https://help.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent Generating a new SSH key and adding it to the ssh-agent] (see also [[ssh-keygen]], [[ssh-agent]]) | ||
+ | * [https://help.github.com/en/github/authenticating-to-github/checking-for-existing-ssh-keys Checking for existing SSH keys]: note that a key may ''exist'' without [[ssh]] being able to use it; keys must be registered through [[ssh-add]] so that they can be used. | ||
+ | * '''2015-10-05''' [https://bjornjohansen.no/ssh-timeout SSH timeout prevention – keep SSH sessions alive] |
Latest revision as of 20:18, 16 February 2020
About
This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!
|
Processes
New keys are generated with ssh-keygen. ssh interacts with keys via ssh-agent, which needs to have keys registered with it using ssh-add before it can use them.
Related
- keyed login: enable logging in from a specific remote client with no password (useful for scripts)
- ssh-add: manages keys for the ssh-agent
- ssh-agent: background process used by ssh
- ssh-keygen: creates new keys
- sshfs: a filesystem for mounting remote folders via ssh
How-to
To break a dead connection and get back to a local prompt, try [ENTER]~.
or (in MATE Terminal, at least) Terminal->Reset
.
Links
Reference
How-to
- Generating a new SSH key and adding it to the ssh-agent (see also ssh-keygen, ssh-agent)
- Checking for existing SSH keys: note that a key may exist without ssh being able to use it; keys must be registered through ssh-add so that they can be used.
- 2015-10-05 SSH timeout prevention – keep SSH sessions alive