- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: SSH enabled?
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
11-01-2004 05:23 AM
11-01-2004 05:23 AM
SSH enabled?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2004 05:40 AM
11-01-2004 05:40 AM
Re: SSH enabled?
You can do this on HP-UX
tail -f /var/adm/syslog/syslog.log
Attempt a connect.
Also, review attached document.
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
11-01-2004 05:44 AM
11-01-2004 05:44 AM
Re: SSH enabled?
Check the server to see if the SSH daemon is running:
ps -ef | grep sshd
Should have an entry that looks like:
root 844 1 0 Oct 17 ? 0:00 /opt/ssh/sbin/sshd
You're daemon *may* be in another location, but the point remains that without the daemon running the server will not respond to client connection requests.
If it's not running then you need to determine why. Check that there's a startup entry in /sbin/rc2.d - something like K700sshd2 and that in /etc/rc.config.d there's an sshd file that contains something like SSHD2=1 to enable startup.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 02:30 AM
11-02-2004 02:30 AM
Re: SSH enabled?
The sshd daemon should start automatically after the installation.
On one of my systems this is the process:
root 7959 1 0 Jun 30 ? 0:00 /opt/ssh/sbin/sshd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 02:37 AM
11-02-2004 02:37 AM
Re: SSH enabled?
The startup script on 11.0 for ssh is
/sbin/rc2.d/S393secsh
The config file is:
/etc/rc.config.d/sshd
In this file, check that SSHD_START=1
I hope my posts help you out a bit.
- Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 02:40 AM
11-02-2004 02:40 AM
Re: SSH enabled?
While using putty, ensure that you are using the correct port (22) to connect to the HP box. Make sure this port is open and not being used by another process - you can use lsof on the HP box to see. If the HP system does not resolve from Windows, use the IP address of the HP box in your putty config.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 02:43 AM
11-02-2004 02:43 AM
Re: SSH enabled?
It is possible the ssh is allowing only limited access from outside. Check your sshd_config file and see if the allowhosts is set. If it is commented out that means any one can ssh to this server. But if there is a subnet/domain/host entry in allowhosts, it means only those subnets/domain/hosts can ssh to this server.
Can you ssh to this server from some other workstation / host.
Hope this helps.
Regds