Domanda

I have a public/private key pair for ssh connections to a server S, but now, even if do a ssh to another device that does't need any key authentication, I always have the message:

> ssh user@192.168.0.10
Enter passphrase for key '/home/user/.ssh/id_dsa': 
user@192.168.0.10's password:

Usually I hit enter in the first question (leaving it blank) and I type the user's password in the second question.

But as I want to write some scripts to automatize some things, the "Enter passphrase for key '/home/user/.ssh/id_dsa': " message bothers me.

Why it appears for every connection request? Can I do something so it won't ask me that for every connection? Just with the server S?

Thanks

È stato utile?

Soluzione 2

Based on this ServerFault answer:

ssh -o PubkeyAuthentication=no host.example.org

To avoid typing it every single time, you can add something like this to ~/.ssh/config

Host host.example.org
PubkeyAuthentication no

Altri suggerimenti

Assuming you're using Linux ssh-agent to store your keys so you don't have to keep typing it.

Using ssh-agent to manage your keys

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top