- 论坛徽章:
- 1
|
求助:日志老报no more recursive clients : quota reached
Limitting the Number of clients
Bind 9 gives you the ability to restrict the number of clients your
nameserver will serve concurrently. You can apply a limit to the number of
recursive clients ( resolvers plus name servers using your name server as a
forwarder) with the recurvsive-clients substatement:
options {
recursive-clients 10;
};
The default limit is 1000. If u find your nameserver refusing recursive
queries and logging as shown by the error you've posted, you may want to
increase the limit. Conversely, if you find your nameserver struggling to
keep up with the deluge of recursive queries, you could lower the limit.
You can also apply a limit to the number of TCP connections your name server
will process with the tcp-clients substatement. But TCP connections consume
considererable more resources than UDP because the host needs to track the
state of the TCP connection.
So just increase the recursive-clients substatement.
Is your nameserver a caching-nameserver?....if it is, maybe it is being used
by others as their DNS, thus making your nameserver reached it's maximum
limit. And is it for your local DNS only? |
|