To copy a key to a remote host on a non-standard port with non-standard ssh key

This commit is contained in:
Matthieu Keller 2013-08-28 14:06:26 +02:00
parent 437f191bf7
commit e963af111c

View File

@ -3,3 +3,6 @@ ssh-copy-id username@host
# To copy a key to a remote host on a non-standard port: # To copy a key to a remote host on a non-standard port:
ssh-copy-id username@host -p 2222 ssh-copy-id username@host -p 2222
# To copy a key to a remote host on a non-standard port with non-standard ssh key:
ssh-copy-id ~/.ssh/otherkey "username@host -p 2222"