named issues
I'm not convinced its related but thought I would assk and see I made a kernel upgrade on six servers to 2.6.14 all of them had 2.4.31 previously now that was the only changes I had made to these systems in the past month or so. Here recently DNS stops, no indication no errors, nothing in logs it just quits. Rebooting the system helps however it doesnt last. When I had asked a friend about it he gave me this
 I made a kernel upgrade on six servers to 2.6.14 all of them had 2.4.31 previously now that was the only changes I had made to these systems in the past month or so. Here recently DNS stops, no indication no errors, nothing in logs it just quits. Rebooting the system helps however it doesnt last. When I had asked a friend about it he gave me this 
     This is occuring due to the maximum allowed concurrent dns requests being reached. You can raise the limit by adding the following to your named.conf configuration:
    
 
    
options {
tcp-clients 3500;
recursive-clients 3500;
};
 
   
 
  options {
tcp-clients 3500;
recursive-clients 3500;
};
The three that are having problems have CentOS 4.0 with latest cpanel release build, other three, one has Fedora other two are CentOS 4.0
Would appreciate any advice

