>>>Joe Schmoe wrote:
> 
> I have machines CLIENT and SERVER.
> 
> On SERVER, I set the following options in
> /etc/ssh/sshd_config :
> 
> RhostsAuthentication      no
> RhostsRSAAuthentication   yes
> 
> Then I copied the host public key from /etc/ssh on
> CLIENT to /etc/ssh/ssh_known_hosts on SERVER - so now
> the SERVER has the CLIENTs public key.
> 
> Finally, I added the hostname of CLIENT to
> /etc/hosts.equiv on SERVER.  Then I HUPped sshd on
> SERVER.
> 
> So now I go to CLIENT and run:
> 
> ssh [EMAIL PROTECTED]
> 
> and it asks me for a password!!
> 

You have to disable PAM authentication:

--- sshd.conf: ---
...
# Change to no to disable PAM authentication
ChallengeResponseAuthentication no
...

_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to