- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Seeing PRNG from /opt/ssh/libexec/ssh-rand-hel...
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
04-10-2003 03:20 PM
04-10-2003 03:20 PM
I installed prng v 0.9.26, zlib v 1.1.4, openssl v 0.9.6 and hp's T1471AA ssh package. I created the prng seed and manually ran it with "prngd -c /usr/local/bin/prngd.conf /var/run/egd-pool".
The installation package and instructions were user on more than 10 stations and this was the only one I had problems with. I checked the DNS and it seems fine. Is there something else I should try to get it working.
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2003 05:38 AM
04-11-2003 05:38 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2003 05:52 AM
04-11-2003 05:52 AM
Re: Seeing PRNG from /opt/ssh/libexec/ssh-rand-helper
number generator (PRNG). The quality of the encryption is dependent on the quality of the random numbers generated by the PRNG. The commands
run to seed the PRNG each have a "rating" of how random the bits they
produce are (it's the last item on each line of that file). If you just start removing lines, it may not be able to generate enough bits to seed the PNRG and ssh will then refuse to run.
The commands that are being run are listed in
/opt/ssh/etc/ssh_prng_cmds.
If you wish to remove things from the list of commands, that is where to do so.
Windows doesn't run these commands because some of these commands don't
exist in windows. In current release of HP-UX Secure Shell (A.3.50),it uses /dev/random (might have a different name) where the OS provides random numbers directly. SSH can use it and be made much faster.
Berlene
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2003 08:02 AM
04-11-2003 08:02 AM
Re: Seeing PRNG from /opt/ssh/libexec/ssh-rand-helper
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=KRNG11I
Unfortunately this does not exist for earlier HP-UX releases.
http://www.newfdawg.com/SSHpart5.htm
has some additional information that might be useful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2003 01:42 PM
04-14-2003 01:42 PM
Re: Seeing PRNG from /opt/ssh/libexec/ssh-rand-helper
I ran every command on the ssh_prng_cmds file manually, and I almost fell out of my chair when I saw the service start in less than 2 seconds. Thank you very much.