Como os servidores de nomes filhos são resolvidos?

2

Ao especificar informações de DNS para um domínio (por exemplo, no painel de controle do registrador), é possível usar servidores de nomes que sejam subdomínios do domínio. Por exemplo, se eu tiver um domínio example.com, posso definir os servidores de nomes "ns1.example.com 1.1.1.1" e "ns2.example.com 1.1.1.2" (os endereços IP são obrigatórios). Qual é o processo de resolver o nome ns1.example.com?

    
por Eugene Yarmash 26.06.2013 / 14:22

2 respostas

5

Você está procurando registros de cola :

Name servers in delegations are identified by name, rather than by IP address. This means that a resolving name server must issue another DNS request to find out the IP address of the server to which it has been referred. If the name given in the delegation is a subdomain of the domain for which the delegation is being provided, there is a circular dependency. In this case the name server providing the delegation must also provide one or more IP addresses for the authoritative name server mentioned in the delegation. This information is called glue. The delegating name server provides this glue in the form of records in the additional section of the DNS response, and provides the delegation in the answer section of the response.

    
por 26.06.2013 / 14:24
1

No arquivo de zona por exemplo.com, você deve ter um registro de cola como:

ns1.example.com 604800 IN A 1.1.1.1
ns2.example.com 604800 IN A 1.1.1.2
    
por 26.06.2013 / 15:25