A rising TCP share of DNS queries is one of the most informative early warning signals in BIND. TCP normally carries under 5% of query volume on a recursive resolver. When that ratio shifts upward, something has changed in the resolution path: responses are being truncated, EDNS negotiation is failing, zone transfers are spiking, or a firewall is interfering with DNS traffic.

The shift matters more than the absolute count. A jump from 2% to 15% TCP share tells you the resolution path is under stress, regardless of total query volume.

What this means

DNS uses UDP for the vast majority of queries. TCP is reserved for zone transfers (AXFR/IXFR), responses too large for UDP, and explicit client requests over TCP. When BIND receives a truncated UDP response (TC bit set), it retries over TCP per RFC 7766. This is correct protocol behavior, but it has operational consequences.

Every TCP query consumes more resources: a file descriptor, TCP buffer memory, and a slot in the tcp-clients limit. When TCP share spikes, file descriptor usage rises, tcp-clients slots fill, and if TCP port 53 is blocked anywhere in the path, queries hang until timeout, consuming slots and FDs for the full timeout duration.

Since BIND 9.18, the default EDNS UDP buffer size dropped from 4096 to 1232 bytes, following the DNS Flag Day 2020 recommendation to avoid IP fragmentation. Large responses, especially DNSSEC-signed zones with many records, now truncate at 1232 bytes instead of fragmenting at 4096. The truncation triggers TCP fallback. This is intentional and safer than fragmentation, but operators upgrading from BIND 9.16 or earlier will see more TCP traffic for the same workload.

flowchart TD
    A["TCP ratio above baseline"] --> B{"Zone transfers active?"}
    B -->|Yes| C["Expected during refresh\nStagger schedules if excessive"]
    B -->|No| D{"Truncated counter elevated?"}
    D -->|Yes| E{"DNSSEC-heavy traffic?"}
    E -->|Yes| F["Large signed responses\nexceeding EDNS buffer"]
    E -->|No| G["Firewall stripping\nEDNS or fragments"]
    D -->|No| H{"EDNS0Fail elevated?"}
    H -->|Yes| I["EDNS negotiation\nfailure with upstream"]
    H -->|No| J{"Connection flood pattern?"}
    J -->|Yes| K["TCP SYN flood\nor slow loris"]
    J -->|No| L["Check Mismatch counter\nfor spoofed responses"]

Common causes

CauseWhat it looks likeFirst thing to check
Large DNSSEC responsesTCP ratio rises gradually after BIND upgrade or DNSSEC enablement; Truncated elevatedTruncated counter in per-view resolver stats
Firewall strips EDNS or fragmentsTCP ratio spikes suddenly; EDNS0Fail elevated; queries for specific upstreams failEDNS0Fail in resolver stats; test with dig +bufsize=1232
Zone transfer burstTCP spike during refresh windows; correlates with transfer activityTransfer logs; SOA serial comparison between primary and secondary
TCP SYN flood or attackTCP connections spike without corresponding query increase; many SYN_RECV statesss -tan '( sport = :53 )'; source IP distribution
tcp-clients exhaustionTCP queries fail; FD usage near limit; transfers and fallback failrndc status; FD count vs limit
RRL-induced truncationRateSlipped non-zero; RRL is truncating responses, forcing TCP retryRateSlipped in NSStats

Quick checks

These commands assume the BIND statistics channel is configured on 127.0.0.1:8653. Adjust the host and port to match your statistics-channels block.

# Check current UDP/TCP query ratio from statistics channel
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); ns=d.get('nsstats',{}); \
  u=ns.get('QryUDP',0); t=ns.get('QryTCP',0); \
  print(f'UDP: {u} TCP: {t} TCP%: {t/(u+t+1)*100:.1f}%')"

# Check truncation rate from upstream (per-view resolver stats)
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); \
  [print(f'{v}: Truncated={vd.get(\"resolver\",{}).get(\"stats\",{}).get(\"Truncated\",\"N/A\")}') \
  for v,vd in d.get('views',{}).items()]"

# Check EDNS negotiation failures
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); \
  [print(f'{v}: EDNS0Fail={vd.get(\"resolver\",{}).get(\"stats\",{}).get(\"EDNS0Fail\",\"N/A\")}') \
  for v,vd in d.get('views',{}).items()]"

# Check RRL-induced truncation (RateSlipped forces TCP retry)
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); ns=d.get('nsstats',{}); \
  print('RateSlipped:', ns.get('RateSlipped',0), 'RateDropped:', ns.get('RateDropped',0))"

# Check TCP connection count and FD pressure
ss -tn state established '( sport = :53 )' | wc -l
ls /proc/$(pgrep -x named)/fd | wc -l
grep "Max open files" /proc/$(pgrep -x named)/limits

# Test whether a DNSSEC response triggers truncation at 1232-byte buffer
# Substitute a DNSSEC-signed zone with large RRsets for a realistic test
dig @127.0.0.1 example.com A +dnssec +bufsize=1232 | grep -E "flags|tc"

# Check socket statistics for TCP/UDP patterns
curl -s http://localhost:8653/json/v1/server | \
  python3 -c "import sys,json; d=json.load(sys.stdin); \
  [print(f'{k}: {v}') for k,v in sorted(d.get('sockstats',{}).items())]"

How to diagnose it

  1. Establish the baseline ratio. Sample QryUDP and QryTCP twice, 60 seconds apart, and compute the delta. Counters are cumulative since process start; only the rate of change matters. TCP share above 5% sustained is abnormal for most recursive resolvers.

  2. Rule out zone transfers. Authoritative servers with many secondaries produce legitimate TCP bursts during refresh windows. Check transfer logs and SOA serial consistency between primary and secondaries. If transfers correlate temporally with the TCP spike, this is expected.

  3. Check the truncation counter. The Truncated resolver stat tracks how often BIND received a truncated UDP response from upstream and retried over TCP. A spike here directly explains a TCP ratio increase. This is the strongest correlation signal.

  4. Check EDNS negotiation failures. The EDNS0Fail resolver stat tracks EDNS negotiation failures. Once BIND flags a server as EDNS-capable , it does not retry without EDNS. If the upstream strips EDNS and TCP is also blocked, queries produce SERVFAIL instead of graceful fallback.

  5. Check whether a firewall is stripping EDNS OPT records or blocking UDP fragments. Test directly: send a query with a specific EDNS buffer size and check whether the response preserves the OPT record. If the resolver works locally but fails for specific upstream domains, suspect a firewall between the resolver and those authoritative servers.

  6. Check tcp-clients and FD pressure. Elevated TCP ratio stresses the tcp-clients limit and file descriptor pool. Use rndc status to see current TCP client count against the limit. If tcp-clients is near its limit, legitimate TCP queries and zone transfers fail. Since the CVE-2018-5743 fixes , BIND counts listening TCP client structures in this total, so the count is never zero even with no active connections.

  7. Rule out attack traffic. A TCP SYN flood produces many connections without corresponding query volume. Use ss -tan '( sport = :53 )' to inspect connection states. A flood shows many SYN_RECV or ESTABLISHED connections from diverse or spoofed source IPs with minimal actual query completion.

Metrics and signals to monitor

SignalWhy it mattersWarning sign
QryUDP / QryTCP ratio (NSStats)Primary signal. TCP share above 5% sustained indicates truncation, transfers, or attack.Sudden shift from baseline
Truncated (resolver stat)Measures how often upstream responses exceeded UDP buffer, forcing TCP retry.Sustained non-zero rate correlating with QryTCP rise
EDNS0Fail (resolver stat)EDNS negotiation failures cause fallback to smaller buffers or TCP.Non-zero rate indicates broken EDNS path to upstream
RateSlipped (NSStats)RRL-induced truncation forces clients to retry over TCP.Non-zero indicates RRL is truncating responses
tcp-clients countConcurrent TCP connection limit. When exhausted, transfers and fallback queries fail.Approaching configured limit
File descriptor usageTCP connections consume FDs. Exhaustion causes silent query drops.Above 70% of Max open files limit
SockStats TCP countersSocket-level TCP open/close rates reveal connection storms.Abnormal accumulation or churn rate

Fixes

Large DNSSEC responses (expected behavior)

If the TCP ratio increase correlates with elevated Truncated counters and the resolver handles DNSSEC-signed domains, this is the expected consequence of the 1232-byte EDNS buffer default. DNSSEC signatures add substantial data to responses, and large signed zones routinely exceed 1232 bytes.

Do not disable DNSSEC validation to reduce TCP traffic. Instead:

  • Accept the TCP fallback as correct behavior. The 1232-byte default avoids IP fragmentation, which is unreliable and a security risk.
  • If your network path reliably supports larger UDP payloads without fragmentation (clean path MTU above 1232), you can raise edns-udp-size in named.conf. This trades TCP overhead for fragmentation risk and should be validated per upstream path.
  • Ensure TCP port 53 is open to all upstream authoritative servers. Blocked TCP makes truncation fatal instead of recoverable.

Firewall stripping EDNS or blocking TCP

If EDNS0Fail is elevated or queries for specific upstream domains fail intermittently, a firewall between your resolver and the authoritative server may be stripping EDNS OPT records, dropping UDP fragments, or blocking TCP port 53.

  • Test EDNS path: dig @127.0.0.1 <domain> +dnssec +bufsize=1232 and check whether the response preserves the OPT record.
  • Verify TCP port 53 is open outbound: dig @<upstream-ip> <domain> +tcp +time=2 +tries=1.
  • RFC 9210 documents that when authoritative servers block DNS over TCP, truncated-and-then-blocked queries consume resolver resources until timeout, directly causing tcp-clients pressure and FD exhaustion.

Zone transfer bursts

TCP spikes during zone refresh windows are normal for authoritative servers with many secondaries. If the burst is problematic:

  • Stagger zone transfer schedules across secondaries.
  • Use IXFR instead of AXFR where possible (smaller transfers, less TCP time).
  • Increase tcp-clients if legitimate transfer volume consumes available slots.
  • Check for NOTIFY storms that trigger simultaneous transfer requests from many secondaries.

tcp-clients limit

If tcp-clients is exhausted by legitimate traffic:

  • Increase the tcp-clients value in named.conf.
  • Ensure the file descriptor limit (Max open files) is also raised. TCP clients and FDs are linked resources; raising one without the other creates a new bottleneck.
  • Post-CVE-2018-5743, BIND counts listening TCP client structures in the tcp-clients total. Operators upgrading from older versions may need to increase the limit because the new counting includes listeners.

TCP-based attacks

If the TCP spike is from a SYN flood or connection exhaustion attack:

  • Apply RRL (rate-limit in named.conf) to throttle responses. Note that RateSlipped responses themselves cause TCP retries, so tune carefully.
  • Use firewall-level SYN cookies or connection rate limiting on port 53.
  • Restrict TCP access to known client ranges if the resolver does not need to accept TCP from all sources.

Prevention

  • Monitor the UDP/TCP ratio as a trend, not a threshold. A resolver at 3% TCP that jumps to 8% is more interesting than one stable at 7%.
  • Correlate truncation counters with TCP ratio. The Truncated resolver stat predicts QryTCP increases, giving a leading indicator before clients notice.
  • Keep TCP port 53 open end-to-end. The most common preventable cause of TCP-related failures is a firewall that allows UDP/53 but blocks TCP/53.
  • Verify FD limits are adequate. After any BIND upgrade or traffic growth, check that FD usage stays below 50% of the limit. The BIND files option is deprecated in 9.18 and removed in 9.20 ; FD limits are controlled by the OS (ulimit, systemd LimitNOFILE).
  • After upgrading from BIND 9.16 to 9.18+, expect more TCP traffic. The EDNS buffer default dropped from 4096 to 1232 bytes as part of DNS Flag Day 2020.

How Netdata helps

  • The BIND collector captures QryUDP and QryTCP from NSStats, making the ratio visible as a per-second trend rather than a point-in-time counter snapshot.
  • Netdata correlates TCP ratio with file descriptor usage from /proc/<pid>/fd, showing whether elevated TCP share is straining the FD pool.
  • The Truncated and EDNS0Fail resolver stats are collected per-view. When Truncated rises in lockstep with QryTCP, the root cause is large responses, not an attack.
  • RateSlipped and RateDropped from NSStats reveal whether RRL is actively truncating responses, distinguishing RRL-induced TCP from DNSSEC-induced TCP.
  • ML anomaly detection flags unusual shifts in the TCP ratio even when the absolute value remains low.