Unix and Linux Discussions Tagged with ssh |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
10,238 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
74,711 |
Shell Programming and Scripting |
|
|
|
1 |
5,592 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,849 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
22,996 |
Shell Programming and Scripting |
|
|
|
10 |
23,660 |
Windows & DOS: Issues & Discussions |
|
|
|
5 |
16,614 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
3,270 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
10,207 |
Shell Programming and Scripting |
|
|
|
10 |
10,247 |
Shell Programming and Scripting |
|
|
|
4 |
3,628 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
8,054 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
20,910 |
Shell Programming and Scripting |
|
|
|
3 |
4,525 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
14,051 |
Cybersecurity |
|
|
|
8 |
10,934 |
Shell Programming and Scripting |
|
|
|
5 |
19,721 |
AIX |
|
|
|
5 |
6,561 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
16,721 |
Linux |
|
|
|
6 |
7,376 |
Shell Programming and Scripting |
|
|
|
8 |
13,008 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
39,565 |
Solaris |
|
|
|
0 |
6,047 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,642 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
7,078 |
Solaris |
|
|
|
10 |
16,101 |
Red Hat |
|
|
|
5 |
6,102 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,900 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,351 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,841 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
9,422 |
Shell Programming and Scripting |
|
|
|
2 |
5,091 |
Shell Programming and Scripting |
|
|
|
8 |
4,718 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,995 |
AIX |
|
|
|
2 |
2,665 |
UNIX for Beginners Questions & Answers |
|
|
|
17 |
17,318 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
3,545 |
Shell Programming and Scripting |
|
|
|
8 |
7,080 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
8,046 |
Cybersecurity |
|
|
|
1 |
7,172 |
Shell Programming and Scripting |
SSH-COPY-ID(1) General Commands Manual SSH-COPY-ID(1)
NAME
ssh-copy-id - install your public key in a remote machine's authorized_keys
SYNOPSIS
ssh-copy-id [-i [identity_file]] [user@]machine
DESCRIPTION
ssh-copy-id is a script that uses ssh to log into a remote machine and append the indicated identity file to that machine's ~/.ssh/autho-
rized_keys file.
If the -i option is given then the identity file (defaults to ~/.ssh/id_rsa.pub) is used, regardless of whether there are any keys in your
ssh-agent. Otherwise, if this:
ssh-add -L
provides any output, it uses that in preference to the identity file.
If the -i option is used, or the ssh-add produced no output, then it uses the contents of the identity file. Once it has one or more fin-
gerprints (by whatever means) it uses ssh to append them to ~/.ssh/authorized_keys on the remote machine (creating the file, and directory,
if necessary.)
NOTES
This program does not modify the permissions of any pre-existing files or directories. Therefore, if the remote sshd has StrictModes set in
its configuration, then the user's home, ~/.ssh folder, and ~/.ssh/authorized_keys file may need to have group writability disabled manu-
ally, e.g. via
chmod go-w ~ ~/.ssh ~/.ssh/authorized_keys
on the remote machine.
SEE ALSO
ssh(1), ssh-agent(1), sshd(8)
OpenSSH 14 November 1999 SSH-COPY-ID(1)