1832891 Members
2506 Online
110048 Solutions
New Discussion

Re: SSH

 
SOLVED
Go to solution
Guillermo Gonzalez_1
Occasional Contributor

SSH

Hi, I have an HP9000 D390 running HP-UX 10.20, I want to install ssh, does anybody know if I can and where I can find it?

Thanks
Guillermo
3 REPLIES 3
Sridhar Bhaskarla
Honored Contributor

Re: SSH

Hi Guillermo,

Because 10.20 OS is out of support now, you may not be able to find ready-to-install depots especially the latest ones. We compile ssh here for all the versions of HP by getting the code from openssh.org site. You will need to compile openssl and zlib (and tcp_wrappers optionally) prior to compiling openssh.

You can try searching for openssh and 10.20 in the forums. I had seen couple of threads with sites having 10.20 depots, not the latest ones though.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
Sunil Sharma_1
Honored Contributor

Re: SSH

Hi,

See this thread for more info
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=181952

http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.1p1/

Sunil
*** Dream as if you'll live forever. Live as if you'll die today ***
Michael Selvesteen_2
Trusted Contributor
Solution

Re: SSH

As HP doesn't release it's HP Secure Shell for HP-UX 10.20, a simple way is to compile openSSH by yourself. It is pretty simple.

Following is a simple outline,

1. Download OpenSSH from

http://www.openssh.org/portable.htm

Current version is 3.91

2. Download OpenSSL from

http://www.openssl.org/source/

3. Download zlib from

http://www.gzip.org/zlib/

Refer following link if you face any problem

http://www.openssl.org/support/faq.html

Compiling zlib is straight forward and if you like to have tcp_wrappers you can download and compile.

4. After all the dependencies are compiled,
issue the following (similar to previous compilation) commands under OpenSSH directory
a. ./configure ( refer README, and Install files for more information)
b. make
c. make install

If still have problems during your compilation of any of the sources post it.

Yet another option is to install commerical SSH (www.ssh.com )

ALL the Best.