HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SSH 2.0.13 on HP-UX 11
Operating System - HP-UX
1833723
Members
3452
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
03-28-2000 11:41 PM
03-28-2000 11:41 PM
SSH 2.0.13 on HP-UX 11
I was wondering if anyone has been able to compile SSH 2.0.13 for HP-UX 11.0?
I recently upgraded one of our servers from HP-UX 10.20 to 11.0 and as the last
step of that upgrade I have been trying to secure the server. My goal is to
only have SSH open on the server (something that worked perfectly under 10.20).
At first I tried to compile it with gcc 2.0.95 which I downloaded as binaries
from the Software Porting and Archive Centre For HP-UX. When that did not work
I compiled gcc myself, but I still could not compile SSH 2.0.13. Then as a last
resort I tried to compile SSH with HP's own C/ANSI C compiler.
Without posting error messages and such in this forum (I will if anyone wants
me to though) I need to know if anyone has managed to get this to work at all?
Am I just a lousy compiler or is this really impossible?
Any input you might have will be appreciated.
Regards, Fredrik.
I recently upgraded one of our servers from HP-UX 10.20 to 11.0 and as the last
step of that upgrade I have been trying to secure the server. My goal is to
only have SSH open on the server (something that worked perfectly under 10.20).
At first I tried to compile it with gcc 2.0.95 which I downloaded as binaries
from the Software Porting and Archive Centre For HP-UX. When that did not work
I compiled gcc myself, but I still could not compile SSH 2.0.13. Then as a last
resort I tried to compile SSH with HP's own C/ANSI C compiler.
Without posting error messages and such in this forum (I will if anyone wants
me to though) I need to know if anyone has managed to get this to work at all?
Am I just a lousy compiler or is this really impossible?
Any input you might have will be appreciated.
Regards, Fredrik.
- Tags:
- ssh
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2000 05:37 AM
03-30-2000 05:37 AM
Re: SSH 2.0.13 on HP-UX 11
frederick,
i have recently installed ssh 2.0.13 on an hp-ux 11.0 environment. the real
trick to making it work is to be sure you have all the proper gcc utilities
installed and all recommended hp-ux patches.
for the systems i installed i used gcc 2.95.2, binutils 2.9.1, bison 1.28 and
flex 2.5.4. note there is a specific order that you need to install the
utilities in so that everything installs properly.
i believe it was bison, flex, binutils then gcc. look at the output from your
configure and make commands that will tell you for sure.
also i needed to install a number of hp-ux 11.0 patches.
they included PHKL 18543, 19537, 19403 and 20629, PHCO_15465, PHSS_17156,
17534, 17566, 18012, 19256, 19963 and 20715.
once you have completed all that it installs and functions well.
hope this helps, good luck.
regards,
bill
i have recently installed ssh 2.0.13 on an hp-ux 11.0 environment. the real
trick to making it work is to be sure you have all the proper gcc utilities
installed and all recommended hp-ux patches.
for the systems i installed i used gcc 2.95.2, binutils 2.9.1, bison 1.28 and
flex 2.5.4. note there is a specific order that you need to install the
utilities in so that everything installs properly.
i believe it was bison, flex, binutils then gcc. look at the output from your
configure and make commands that will tell you for sure.
also i needed to install a number of hp-ux 11.0 patches.
they included PHKL 18543, 19537, 19403 and 20629, PHCO_15465, PHSS_17156,
17534, 17566, 18012, 19256, 19963 and 20715.
once you have completed all that it installs and functions well.
hope this helps, good luck.
regards,
bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2000 09:38 PM
03-30-2000 09:38 PM
Re: SSH 2.0.13 on HP-UX 11
Thank you for the advice, but I actually managed to compile it with HP C/ANSI C
a couple of hours ago after failing to do so for about a week.
As far as I can tell the error was in /usr/include/rpcsvc/nis.h. In lines
210-213 it says:
struct nis_oid {
u_long ctime;
u_long mtime;
};
What happened everytime I ran make was that everything worked fine until the
compiler came to sshunixuser.c and started complaining about this part of nis.h
and then stop. It took some time to find any info at all about this but after a
while (i.e. a week) I found some documentation that I found on the web (I've
looked but I can't find the URL right now) that said that ctime was deprecated
under HP-UX 11.0 and that you should use strftime instead. After I had changed
ctime to strftime on row 211 in nis.h SSH 2.0.13 compiled just fine.
// Fredrik
a couple of hours ago after failing to do so for about a week.
As far as I can tell the error was in /usr/include/rpcsvc/nis.h. In lines
210-213 it says:
struct nis_oid {
u_long ctime;
u_long mtime;
};
What happened everytime I ran make was that everything worked fine until the
compiler came to sshunixuser.c and started complaining about this part of nis.h
and then stop. It took some time to find any info at all about this but after a
while (i.e. a week) I found some documentation that I found on the web (I've
looked but I can't find the URL right now) that said that ctime was deprecated
under HP-UX 11.0 and that you should use strftime instead. After I had changed
ctime to strftime on row 211 in nis.h SSH 2.0.13 compiled just fine.
// Fredrik
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP