- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ssh on 10.20
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
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
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
10-06-2000 07:17 AM
10-06-2000 07:17 AM
ssh on 10.20
I've been trying to compile ssh.com's versions of ssh on two HPUX systems. I would try Openssh, but the client needs ftp (sftp). I get the following error:
/usr/include/arpa/inet.h:68: sys/bitypes.h: No such file or directory
/usr/include/arpa/inet.h:72: sys/cdefs.h: No such file or directory
*** Error exit code 1
I appears I need a new inet.h, but maybe there's more? Where do I start?
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2000 10:17 AM
10-09-2000 10:17 AM
Re: ssh on 10.20
As it stands, it looks like it would take at least some porting effort on your part--but it seems really unlikely that they would distribute SSH without support for a mainstream Unix like HP-UX. Maybe double-check the Makefile for HP-UX-specific defines, and glance over the source documentation and maybe their Web site for special HP-UX build instructions.
I'm not sure what exactly you mean by the dependency on FTP, but OpenSSH is supposed to have been compiled and tested for HP-UX, and uses GNU autoconf, so the build process *should* be pretty painless--though I should mention that I haven't gotten around to building OpenSSH on our systems yet, so I don't have any actual first-hand experience.
OpenSSH does depend on OpenSSL ( http://www.openssl.org ), but there's a pre-built depot of OpenSSL 0.9.5a available at your nearest friendly neighborhood HP-UX Software and Porting Archive ( like http://hpux.cae.wisc.edu ). As long as 0.9.5a isn't seriously flawed, you wouldn't have to worry about that part, since someone's already done the work for you. Just set CFLAGS and LDFLAGS appropriately before running 'configure' on the OpenSSH source, like this:
CFLAGS="-I/opt/openssl/include" LDFLAGS="-L/opt/openssl/lib" ./configure --prefix=/opt/openssh <... and so on>
I'm not very well-versed as to what the significant differences/advantages are between the commercial and 'open' SSHes, but for what it's worth...
--Kevin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2000 10:43 AM
10-09-2000 10:43 AM
Re: ssh on 10.20
I would locate "find" bitypes.h and cdefs.h. If they are on your system, verify the directory they are in and edit the path of the makefile.in or your path statement to include this directory. Or edit inet.h to look into the "found in" directory.
Hope that helps
later,
D
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2000 10:57 AM
10-09-2000 10:57 AM
Re: ssh on 10.20
A good article for installing and configuring OpenSSH. Lists various web sites in which to obtain the necessary code and tools.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2000 12:04 PM
10-09-2000 12:04 PM
Re: ssh on 10.20
We don't have any 11.x boxes for comparison, but maybe those files *do* exist on 11.x systems... but then, a search in the HP Technical Knowledge Base doesn't turn up a single hit for either 'bitypes.h' or 'cdefs.h,' so that doesn't seem at all likely.
These files *do* exist on a Linux box: bitypes.h does nothing more than include
But anyway it's all speculation. I guess now I'm curious to the point that I should just go out and get the SSH.com distribution and see for myself.
--Kevin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2000 01:08 PM
10-09-2000 01:08 PM
Re: ssh on 10.20
never installed ssh either.
maybe some day
hope this helps
later,
D
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2000 01:25 PM
10-09-2000 01:25 PM
Re: ssh on 10.20
Hope this helps
later,
D
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2000 10:36 AM
11-17-2000 10:36 AM
Re: ssh on 10.20
Don't forget to copy or symlink the zlib includes and libs to /usr/include and /usr/lib, respectively. Once I did that, I was able to configure and build OpenSSH without trouble.
Actually, I had trouble using an older version of GCC, but once I got the latest, I no longer got compilation errors. I've only tried using ssh in and out so far, but everything did get built okay.
The only other thing to note is that there's a newer version of OpenSSL, 0.9.6, that hasn't been ported yet. AFAIK, 0.9.5a works fine. Good luck. =-)
-cheers, Craig S. Bell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2000 02:26 PM
11-17-2000 02:26 PM
Re: ssh on 10.20
After posting here, I did eventually get OpenSSH 2.2.0p1 to compile on a 10.20 workstation with some combination of the same tools you used (gcc version 2.95.2). Client and server pieces seem to work fine, but we haven't put it into wider use yet.
I think OpenSSL 0.9.5a was reported to have one minor vulnerability that was so obscure and improbable, I ended up putting it out of my mind. I was too impatient to wait for 0.9.6 to compile. =)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2000 02:49 PM
11-17-2000 02:49 PM
Re: ssh on 10.20
I just misunderstood what you meant about the client needing ftp--now it makes sense. OpenSSH has 'scp' (which they state 'replaces rcp and ftp'), but you probably already knew that.
I just started hearing (good things) about a new SSH-capable FTP client called 'hsftp' which uses SSH protocol version 1.x. I don't think it links against any external libraries (maybe the licenses are incompatible), so you couldn't upgrade this to SSH2 by linking OpenSSH 2.3.0, which just recently added support for SSH2.
Hsftp is GPLed, so source is available, but I didn't see any binaries for HP-UX around. But then I didn't look very hard either. The Web page states that it *has* been successfully compiled for HP-UX.
http://la-samhna.de/hsftp/