How many A records can fit in a single DNS response?

后端 未结 2 1500
温柔的废话
温柔的废话 2021-01-27 04:45

What are the size limits on DNS responses? For instance how many \'A\' resource records can be present in a single DNS response? The DNS response should still be cache-able.

2条回答
  •  粉色の甜心
    2021-01-27 04:49

    The largest guaranteed supported DNS message size is 512 bytes.

    Of those, 12 are used up by the header (see §4.1.1 of RFC 1035).

    The Question Section appears next, but is of variable length - specifically it'll be:

    • the domain name (in wire format)
    • two bytes each for QTYPE and QCLASS

    Hence the longer your domain name is, the less room you have left over for answers.

    Assuming that label compression is used (§4.1.4), each A record will require:

    • two bytes for the compression pointer
    • two bytes each for TYPE and CLASS
    • four bytes for the TTL
    • two bytes for the RDLENGTH
    • four bytes for the A record data itself

    i.e. 16 bytes for each A record (§4.1.3).

    You should if possible also include your NS records in the Authority Section.

    Given all that, you might squeeze around 25 records into one response.

提交回复
热议问题