How do I force SSH to use password instead of key? The ssh command will attempt all ssh keys before asking for a password as one can see when using the -v flag Anyway, after playing enough with SSH, I figured that you can also set up a such configuration to be specific to an ssh host
How do I change the allowed host key algorithms for SSH? What is interesting there is the line: Skipping ssh-dss key root ssh id_dsa - not in PubkeyAcceptedKeyTypes This variable sounds like what I am looking for, but it is not defined within the sshd_config
How to avoid being asked Enter passphrase for key when Im doing SSH . . . Remote SSH login password would be enough in this case I can speculate that this prevents adding your public key (which is paired with encrypted private key) without knowing encryption password for corresponding private key (without owner of the keys) for better security, but it is still just a public key
ssh - How to tell git which private key to use? - Super User ssh has the -i option to tell which private key file to use when authenticating: -i identity_file Selects a file from which the identity (private key) for RSA or DSA authentication is read The default is ~ ssh identity for protocol version 1, and ~ ssh id_rsa and ~ ssh id_dsa for protocol version 2 Identity files may also be specified on a per-host basis in the configuration file It is
What is a SSH key fingerprint and how is it generated? The fingerprint is based on the host's public key, usually based on the etc ssh ssh_host_rsa_key pub file Generally it's for easy identification verification of the host you are connecting to