Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 05:55 AM
04-13-2005 05:55 AM
sshd
When executing ssh -V we get a response of OpenSSH_3.8.1p1, OpenSSL 0.9.7d, when testing sshd we telnet (hostname) 22 the response we get is SSH-2.0-OpenSSH_3.6p1. We have searched the system for any and all sshd executables and only fine one under /usr/local/sbin/sshd, the init script also points to this exe. Anyway, this is causing the system not to disable a user account with multiple login attempts (trusted).
Is there a way to find out why we are getting two different outputs vers for sshd?
Thanks
S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 06:00 AM
04-13-2005 06:00 AM
Re: sshd
type ssh
what ssh
type sshd
what sshd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 06:20 AM
04-13-2005 06:20 AM
Re: sshd
This is rare
Then there is the - more likely - possibility that there are more than one sshd available, and the system starts one you don't expect
when you're connected, use lsof to see what files the sshd process has open
Or find sshd system wide
Or remove all (open)ssh/(open)ssl packages you can find and install the most recent version available
FWIW openssh-4.0p1 is MUCH faster than openssh-3.9.x
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 06:34 AM
04-13-2005 06:34 AM
Re: sshd
Besides RAC's ideas also try
ps -ef | grep sshd
then check that the running sshd is indeed the same one that is being started up in the rcX.d script. If it's not then use /sbin/init.d/sshd2 stop & /sbin/init.d/sshd2 start (use the appropriate script name of course) to bounce it. It may be that someone manually started the wrong one.
If that checks out then run
swlist | grep -i ssh
to verify the proper version is installed - then run
swlist -l fileset -a state | grep -i ssh
and verify that the filesets are *all* in a configured state. May be that the "RUN" fileset didn't install correctly or all the way.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2005 07:07 AM
04-13-2005 07:07 AM
Re: sshd
Check the /etc/rc.config.d/sshd file.
To which directory is it pointing?
Good luck
Darrel