Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ssh problem

Status
Not open for further replies.

dandan123

Technical User
Sep 9, 2005
505
US
I've installed ssh v 3 on one of my boxes and while I can ssh out sucessfully when I try to ssh in I get this message-

Received disconnect from xxx.xxx.xxx.xxx: 2: Too many authentication failures for root

and on the box itself I see this message -

sshd[878]: fatal: Write failed: Broken pipe

Any ideas what's wrong ?

Thanks.
 
Are you receiving this message "Too many authentication failures for root" after you attempt to login via SSH.

By default SSH doesn't allow remote access. You must make changes in the /etc/ssh/sshd_config
Code:
PasswordAuthentication yes

M. Brooks
 
Solaris version please.
if on Sol9 you can truss sshd, if on sol10 dtrace is your friend. Also doublecheck that your sshd_config is (sorry this is v2 option, I suspect it's still in v3 though)
Code:
EnablePamAuthentication yes
or you'll have other problems as well.
 
Thanks for all the responses. The problem was I didn't install power password and while installing ssh at one point it asked me if I would like to install some of the pp binaries instead of the ssh ones to which I said yes.

We use power password in addition to ssh.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top