What does " no more TCP clients: quota reached" in bind log mean ?

Solution Unverified - Updated -

Environment

  • Red Hat Enterprise Linux 5.X

    • bind-9.3.6-*
    • bind97-*
  • Red Hat Enterprise Linux 6.x

    • bind-9.7
    • bind-9.8

Issue

  • What does bind log " no more TCP clients: quota reached" mean ?

I saw following message in bind log file.

<TIME_STAMP> client: warning: client <IP>#<PORT>: no more TCP clients: quota reached

What does this mean ?

Resolution

  • basically , this message means that 'max simultaneous client TCP connections' reached limit of bind DNS server.
  • To increase , or define tcp-clients in your named.conf file.

For example;

named.conf

options {
...(SNIP)...
      tcp-clients <NUMBER_OF_MAX_CLIENT>;
};

Root Cause

  • This message means that "max simultaneous client TCP connections" reached limit of bind DNS server.
    From Bind document (/usr/share/doc/bind-/arm/Bv9ARM):
    tcp-clients: The maximum number of simultaneous client TCP connections that the server will accept.
    The default is 100.

This solution is part of Red Hat’s fast-track publication program, providing a huge library of solutions that Red Hat engineers have created while supporting our customers. To give you the knowledge you need the instant it becomes available, these articles may be presented in a raw and unedited form.

Close

Welcome! Check out the Getting Started with Red Hat page for quick tours and guides for common tasks.