- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ssh on HP-UX
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
07-26-2002 10:43 AM
07-26-2002 10:43 AM
I downloaded the tar file from openssh.
I tried to run the configure program to compile the ssh server. I get the error message that zlib is not on my machine.
Where can I get this library? All refrences to this library are for hp-lx? I would like it in HP-UX?
Can I put the zlib on my HP-UX 11.0 machine?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2002 10:45 AM
07-26-2002 10:45 AM
Re: ssh on HP-UX
T1471AA - HP-UX SECURE SHELL
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA
Cheryl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2002 10:56 AM
07-26-2002 10:56 AM
Re: ssh on HP-UX
I will give it try.
When I try to download the depot the website gets an error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2002 11:15 AM
07-26-2002 11:15 AM
SolutionTake a look at following url..
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x49737bb04b5cd611abdb0090277a778c,00.html
http://www.atomicgears.com/papers/osshhpux.html
You can get ssh3.4 from HP porting center.
http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/openssh-3.4p1/
Thanks.
Prashant Deshpande.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2002 09:40 PM
07-28-2002 09:40 PM
Re: ssh on HP-UX
It is a bit more trouble to build a GNU compiler environment, but very worthwhile. This is particularly true if, like me, you are working in a multi-platform environment and need to keep all versions at exactly the same level.
As for downloading Zlib (a compression-utilities library), you can do this from the HP Depots and then compile the code from OpenSSH. Just make sure that you download the GNU-C compiler, as the K&R compiler that builds the HP-UX kernels can yield strange results if used to compile GNU code.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2002 10:49 PM
07-28-2002 10:49 PM
Re: ssh on HP-UX
http://www.gzip.org/zlib/
To those who asked, why build a SSH from sources instead of installing a precompiled binary.
With security sensitive software such as OpenSSH it is always wise to build it from the sources (even if it takes some time).
First because you should get the latest (this also refers to zlib, there was an exploit recently reported) releases.
These open source softwares are constantly patched as soon as new exploits are reported.
I have the impression that the response latency to discovered exploits is much shorter with open source software than with proprietary.
Second, only by building from sources have you got the ultimate control of what features to en/disable (run configure --help after having extracted the archives)
To build OpenSSH from sources you require these (if my memory serves me correctly):
ANSI C compiler (e.g. gcc)
Perl 5
zlib
OpenSSL (get it from http://www.openssl.org/)
OpenSSH (http://www.openssh.org/)
I know it is cumbersome and takes some time but it works (I did it with gcc), and is worthwhile
Good Luck
Ralph
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 09:22 AM
07-29-2002 09:22 AM
Re: ssh on HP-UX
However, I am getting an odd error when starting sshd.
The error is
Privilege separation user sshd does not exist
I have Openssh running on my Linux machines and did not have to setup a sshd user?
Any ideas?