RHEL 5.x has an entropy-generation problem (held-over from kernel 2.4). Following directions from here has produced little-to-no results:

How to increase entropy pool on a 2.6 kernel RHEL/Fedora system without keyboard/mouse.

A good source of entropy is needed for random number generation. This affects services that go via SSL amongst other things. In 2.6 kernels the entropy sources of a system are keyboard, mouse and some IRQ interrupts. There are two random number sources on linux - /dev/random and /dev/urandom. /dev/random will block if there is nothing left in the entropy bit bucket. If your system does not have keyboard and mouse, you can use 'rngd' daemon to perform the task. You can see the entropy valu using following command.

    #cat /proc/sys/kernel/random/entropy_avail  

Now, start the 'rngd' daemon using following command and monitor the entropy on the system.

    #rngd -r /dev/urandom -o /dev/random -f -t 1
    #watch -n 1 cat /proc/sys/kernel/random/entropy_avail

What other fixes are available for this issue?


background

There is a known issue (on HP's side) with one component in the current version of Server Automation that takes a long time to startup due to a small entropy pool on RHEL 5. I'm trying to find a workaround until/unless it's fixed on the vendor's part.

link|improve this question

1  
Where does it say in your links that this affects 2.6 as well? – Mark Wagner Aug 22 '11 at 22:23
If you need lots of entropy, you could buy more. See also: vincentsanders.blogspot.com/2011/08/year-of-entropy.html – Zoredache Aug 22 '11 at 22:27
@embobo - in the quoted segment for what I have already tried (from vglug.info/…) – warren Aug 22 '11 at 22:41
1  
@warren, You really haven't made it clear what the problem is. Do you actually need more entropy for something, or are you just worried about this. So you ran those two commands, did anything change at all? Are you still not getting enough entropy? Or what. – Zoredache Aug 22 '11 at 22:48
1  
No, that doesn't make it very clear. I was hoping you would say something like while I am doing nnn the output of cat /proc/sys/kernel/random/entropy_avail tends to be at or near zero constantly, but when the system is idle it tends to be around ~140. Is it not refilling at all? Or is it just refilling to slowly for your needs. – Zoredache Aug 22 '11 at 23:10
show 3 more comments
feedback

2 Answers

up vote 1 down vote accepted

Change the t parameter to .1 or .001

link|improve this answer
feedback

I don't know how much entropy you need, but you could use the HTTP API on random.org to feed entropy into your system (try rand_add). Or you could use something like the Entropy Gathering Daemon.

link|improve this answer
1  
From a security point of view, using publicly observable (or even changeable) random sources is not a good idea. – PaĆ­lo Ebermann Aug 23 '11 at 21:25
You're right. If warren wanted to use the random.org API for business use, I would recommend using HTTPS and paying for the random.org service to establish trust through a financal and legal agreement. – Klox Aug 23 '11 at 21:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.