On Wed, 2002-10-09 at 14:40, David Busby wrote:
> List,
>       I installed latest version of OpenSSH onto my RedHat 7.3 box and then 
> compiled, installed.  When I try to connect to the computer via SSH it 
> tells me that access is denied.  I know I'm typing in the correct 
> password.  I'm not to sure how OpenSSH handles my password.  There are 
> some options about authmd5 and other stuff.  How to I tell what type of 
> auth system my RH73 box is using so I can tell OpenSSH what to do?
> 

Probably not an auth thing from a pam.d standpoint anyway.

In debugging ssh issues I usually start by using ssh -v machinename

If that does not help you can run sshd in debug mode on the server using
as root,
 
service sshd stop  # stops the ssh server
sshd -d  # keeps the session open and printing to the screen

Then connect from the client and a lot of stuff spits out in the term
you ran sshd -d in.  should give you a clue.

don't forget to restart it
service sshd start


A couple of things to look at:

are you logging in as root?
in /etc/ssh/sshd_config  look for the line similar to 
PermitRootLogin yes and set accordingly

also in the same file are you allowing password authentication?
PasswordAuthentication yes

HTH
Bret

 



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to