Operating System - HP-UX
1753679 Members
5661 Online
108799 Solutions
New Discussion юеВ

Re: step to install/enable ssh at hpux 11i

 
Suhaimi Jalal
Occasional Contributor

step to install/enable ssh at hpux 11i

Hi there
could`t find sshd running on the server. Tries to telnet localhost using port 22 also fail. required to connect from windows XP pc to the server using SSH port 22.How to enable or do we need to install ssh service server saperately.
7 REPLIES 7
Patrick Wallek
Honored Contributor

Re: step to install/enable ssh at hpux 11i

You probably need to install it.

# swlist -l product |grep -i secure

See if it returns anything concerning Secure Shell.

If not, you will need to download and install it. SSH is available here:

http://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=T1471AA
Suhaimi Jalal
Occasional Contributor

Re: step to install/enable ssh at hpux 11i

Hi Patrick

the link given was not workable. given a message "page cannot be displayed"
Suhaimi Jalal
Occasional Contributor

Re: step to install/enable ssh at hpux 11i

I tried the below command at my server,

# swlist -l product |grep -i secure

and hit:
/sbin/sh: swlist: not found.

FYI, my server OS is HP-UX B.11.11

I tried to follow instruction given by HP to download the HP Secure Shell product depot T1471AA, but encountered "We are unable to process your order"

pls advise.
Dennis Handly
Acclaimed Contributor

Re: step to install/enable ssh at hpux 11i

>but encountered "We are unable to process your order"

I had no problems with it just now.
Torsten.
Acclaimed Contributor

Re: step to install/enable ssh at hpux 11i

>> sbin/sh: swlist: not found

Are you root?

Try

# /usr/sbin/swlist

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Prashanth Waugh
Esteemed Contributor

Re: step to install/enable ssh at hpux 11i

Hello,

Assign the points to unix guru,till date you havent assigne the points to any one.Pls do it needful.

Regards
Prashant
For success, attitude is equally as important as ability
Suraj K Sankari
Honored Contributor

Re: step to install/enable ssh at hpux 11i

Hi,
1st check SSH is installed or not
$ /usr/sbin/swlist -l product |grep -i secure
Secure_Shell A.04.40.011 HP-UX Secure Shell

if its there then do
ps -aef | grep sshd
root 1182 1 0 Sep 14 ? 0:00 /opt/ssh/sbin/sshd

if sshd is not running then run it with
/opt/ssh/sbin/sshd

If SSH is not installed then download it from http://hpux.connect.org.uk/hppd/hpux/Networking/Admin/openssh-5.0p1/
or use your os package DVD to install

Suraj