A: First, make sure you generated the key using
ssh-keygen1, not
ssh-keygen2. SSH1 and SSH2 keys
aren't compatible.
Next, make sure you transferred the key file using an appropriate
file-transfer program. If you used FTP, confirm that the private key
file was transferred in binary mode, or the copy will contain
garbage. The public key file should be transferred in ASCII mode.
Q: I generated an SSH1 key and tried using it with SSH2, but it
didn't work. (Or vice versa.)
A: This is normal. SSH1 and SSH2 keys aren't compatible.
Q: I specified a key manually, using -i or IdentityFile, but it never
gets used!
A: Are you running an agent? If so, -i and
IdentityFile don't have any
effect. The first applicable key in the agent takes precedence.
Q: Each time I run ssh-keygen, it overwrites my default identity file.
A: Tell ssh-keygen to write its output to a
different file. For ssh-keygen in SSH1 and
OpenSSH, use the -f option. For
ssh-keygen2, specify the filename as the last
argument on the command line; no option is needed.
Q: Can I change the passphrase for a key without regenerating the key?
A: Yes. For ssh-keygen in SSH1 and OpenSSH, use the
-N option, and for
ssh-keygen2, use the -p
option.
Q: How do I generate a host key?
A: Generate a key with an empty passphrase and install it in the correct
location:
# SSH1, OpenSSH
$ ssh-keygen -N '' -b 1024 -f /etc/ssh_host_key
# SSH2 only
$ ssh-keygen2 -P -b 1024 /etc/ssh2/hostkey
Q: Generating a key takes a long time.
A: Yes it may, depending on the speed of your CPU and the number of bits
you have requested. DSA keys tend to take longer than RSA keys.
Q: How many bits should I make my keys?
A: We recommend at least 1024 bits for strong security.
Q: What does oOo.oOo.oOo.oOo mean, as printed by ssh-keygen2?
A: The manpage calls it a "progress
indicator." We think it's an ASCII
representation of a sine wave. Or the sound of a chattering gorilla.
You can hide it with the -q flag.
Q: My ssh-agent isn't terminating after I log out.
You might have a typographical error in one of these files. Check the
spelling of options, and remember to separate SSH1
authorized_keys options with commas, not
whitespace. For example: