Hello J'ai juste set up a DNS server for mon domain example.org avec 2 name servers ns1.example.org et ns2.example.org. J'ai attempted to set up a glue record for ns1 et ns2 at mon registrar.
It seems to work for now quand I do a dig example.org mais quand I do a whois example.org it lists ns1.example.org et ns2.example.org mais pas leur IP address qui should be set up as a glue record.
So Je suis wondering how do I check for le existence of a glue record? Do I do it avec whois? J'ai seen .com et .net whois records that have les deux le domain name as well as le IP address for le name servers, is .org different? Quel est le proper way to test this?
Thanks.
Comment tester un enregistrement de colle DNS ?
Re: Comment tester un enregistrement de colle DNS ?
Glue records seulement ever exist in le parent zone of a domain name.
Hence in le case of votre `example.org` domain name, premier find le `.org` name servers:
```
% dig +short org. NS
a0.org.afilias-nst.info.
a2.org.afilias-nst.info.
b0.org.afilias-nst.org.
b2.org.afilias-nst.org.
c0.org.afilias-nst.info.
d0.org.afilias-nst.org.
```
Then, for as beaucoup de of these as you feel like testing, explicitly ask those name servers for le `NS` records for votre domain:
```
% dig +norec @a0.org.afilias-nst.info. example.org. NS
```
Vous devriez get back le correct list of `NS` records in le "AUTHORITY SECTION". For tout name servers that have correctly configured glue you should see those glue `A` (and/or `AAAA`) records appear in le "ADDITONAL SECTION".
Hence in le case of votre `example.org` domain name, premier find le `.org` name servers:
```
% dig +short org. NS
a0.org.afilias-nst.info.
a2.org.afilias-nst.info.
b0.org.afilias-nst.org.
b2.org.afilias-nst.org.
c0.org.afilias-nst.info.
d0.org.afilias-nst.org.
```
Then, for as beaucoup de of these as you feel like testing, explicitly ask those name servers for le `NS` records for votre domain:
```
% dig +norec @a0.org.afilias-nst.info. example.org. NS
```
Vous devriez get back le correct list of `NS` records in le "AUTHORITY SECTION". For tout name servers that have correctly configured glue you should see those glue `A` (and/or `AAAA`) records appear in le "ADDITONAL SECTION".