Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What, exactly, does ssh-copy-id do?

Tags:

ssh

ssh-keys

What does the ssh-copy-id command do, exactly? I've used it numerous times and it works great. However, when I try to manually cut and paste my .pub keyfile to my remote authorized_keys, it doesn't work.

I've compared the contents of my authorized_keys file where I've cut and pasted the .pub into it vs subsequently using ssh-copy-id and I'm not seeing any differences between the two, including whitespace.

Is there anything that ssh-copy-id does beyond copying the public key into authorized_keys?

like image 529
DanHeidel Avatar asked Mar 27 '14 22:03

DanHeidel


People also ask

What port does SSH-copy-ID use?

My OpenSSH server listening on TCP port number 2222.

What is a SSH ID?

An identity key is a private key that is used in SSH for granting access to servers. They are a kind of SSH key, used for public key authentication. In OpenSSH, new identity keys can be created using the ssh-keygen tool. The tool generates both a private key and a public key.

Does SSH-copy-ID work on Windows?

At the moment, Windows 10's implementation of the OpenSSH client does not have the ssh-copy-id command available. However, a PowerShell one-line command can mimic the ssh-copy-id command and allow you to copy an SSH public key generated by the ssh-keygen command to a remote Linux device for passwordless login.


2 Answers

This little one liner script works on sh, bash, and zsh. I use it every time there is no ssh-copy-id, for example when I'm on older version of OSX.

cat ~/.ssh/id_rsa.pub | ssh <user>@<hostname> 'cat >> ~/.ssh/authorized_keys' 

How it works

I am sending the public keay to the Unix standard output (STDOUT) using the cat command. I then connect the STDOUT of cat to the standard input (STDIN) of the ssh.

The ssh executes the cat command on the server. Remember that the we have our key in the STDIN now? This key gets passed from ssh to the cat command executed on a server. The >> operator redirects the STDOUT of the cat to the end of the ~/.ssh/authorized_keys file. This way the key from public keys is appended to the authorized_keys on the server.

IMO It's better than manual copying and pasting: in this case you know exactly what content will end up in the file

like image 53
ganqqwerty Avatar answered Oct 02 '22 07:10

ganqqwerty


I usually copy-paste keys into authorized_keys as you describe (I forget about ssh-copy-id), so it can work. Note thatchmod 600 ~/.ssh/authorized_keys is required if you're creating the file.

ssh-copy-id is a shell script so you can open it in a text editor to see what it does, this looks like the relevant bit:

printf '%s\n' "$NEW_IDS" | ssh "$@" "     umask 077 ;     mkdir -p .ssh && cat >> .ssh/authorized_keys || exit 1 ;     if type restorecon >/dev/null 2>&1 ; then restorecon -F .ssh .ssh/authorized_keys ; fi" 

restorecon in the last line restores default SELinux security contexts. I haven't had to run that, but it might be necessary in your case.

like image 33
Jackson Pauls Avatar answered Oct 02 '22 07:10

Jackson Pauls