Is it possible to enable ssh password authentication for one user on a system and disable it for an other.

If you add

ChallengeResponseAuthentication no
PasswordAuthentication no
UsePAM no

to /etc/ssh/sshd_config you disable it for all users

Adding it to ~/.ssh/config doesn't seem to work

link|improve this question
feedback

migrated from stackoverflow.com Nov 12 '09 at 20:38

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 10 down vote accepted

Use a Match that matches all the users but the ones you want to be able to use password authentication and add the 'PasswordAuthentication no' in that Match block. Something like:

Match User someuser
PasswordAuthentication no

and so on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown