- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: SSH connection number problem
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
12-29-2006 05:14 AM
12-29-2006 05:14 AM
SSH connection number problem
Please help.
Ronald
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2006 08:10 PM
12-30-2006 08:10 PM
Re: SSH connection number problem
MaxStartups specifies the maximum number of concurrent connections to the SSH daemon. The default value might be 2.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2006 07:41 PM
12-31-2006 07:41 PM
Re: SSH connection number problem
This being an HP-UX system, there are kernel parameters that need to be checked.
dtvitan1:/# kctune | grep tel
nstrtel 60 Default
Someone may have lowered this figure, which is not dynamic and requires a system boot.
Check:
/var/adm/syslog/syslog.log
There may be an error message there that is helpful.
After changing ssh_config or sshd_config
/sbin/init.d/secsh stop
/sbin/init.d/secsh start
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2007 02:35 AM
01-03-2007 02:35 AM
Re: SSH connection number problem
I looked up the syslog.log, found the following messages:
Dec 29 14:27:11 webdev03 sshd[17507]: Accepted keyboard-interactive/pam for rtang from 10.97.2.92 port 1645 ssh2
Dec 29 14:27:29 webdev03 sshd[17532]: Accepted keyboard-interactive/pam for rtang from 10.97.2.92 port 1646 ssh2
Dec 29 14:29:04 webdev03 sshd[17554]: Accepted keyboard-interactive/pam for rtang from 10.97.2.92 port 1647 ssh2
Dec 29 14:29:04 webdev03 sshd[17562]: fatal: PAM: pam_open_session(): Can not make/remove entry for session
It is sounds the PAM dosen't allow the 3rd session, but I don't know how to config PAM.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2007 01:14 PM
01-03-2007 01:14 PM
Re: SSH connection number problem
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2007 08:09 AM
01-04-2007 08:09 AM
Re: SSH connection number problem
I looked up the /etc/default/security, the "
NUMBER_OF_LOGINS_ALLOWED" was set to 1, after I changed it to 0 (allow any times login), it is working fine.
But I still don't understand why i can have 2 connections before while the settings was (NUMBER_OF_LOGINS_ALLOWED=1).
Thank you all for help.