Por que todos os domínios *.localhost.yarf.nl são resolvidos para `127.0.0.1`?

Por que todos os domínios *.localhost.yarf.nl são resolvidos para `127.0.0.1`?

Descobri algo engraçado hoje: todos os domínios *.localhost.yarf.nlresolvem para 127.0.0.1.

  • O que é isso?
  • Onde isso está documentado?
  • Não consigo encontrar referências a isso...

Aqui estão alguns exemplos:

» dig aaa.localhost.yarf.nl

; <<>> DiG 9.11.3-1ubuntu1.5-Ubuntu <<>> aaa.localhost.yarf.nl
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 18392
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;aaa.localhost.yarf.nl.         IN      A

;; ANSWER SECTION:
aaa.localhost.yarf.nl.  3244    IN      A       127.0.0.1

;; Query time: 0 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Thu Mar 21 07:26:40 CET 2019
;; MSG SIZE  rcvd: 66

E:

» dig whatisthis.localhost.yarf.nl

; <<>> DiG 9.11.3-1ubuntu1.5-Ubuntu <<>> whatisthis.localhost.yarf.nl
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 27196
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;whatisthis.localhost.yarf.nl.  IN      A

;; ANSWER SECTION:
whatisthis.localhost.yarf.nl. 3600 IN   A       127.0.0.1

;; Query time: 55 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Thu Mar 21 07:26:52 CET 2019
;; MSG SIZE  rcvd: 73

Mas:

» dig whatisthis.yarf.nl

; <<>> DiG 9.11.3-1ubuntu1.5-Ubuntu <<>> whatisthis.yarf.nl
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 24959
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;whatisthis.yarf.nl.            IN      A

;; AUTHORITY SECTION:
yarf.nl.                300     IN      SOA     ns091.auroradns.eu. admin.auroradns.eu. 2019011601 86400 7200 604800 300

;; Query time: 38 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Thu Mar 21 07:26:59 CET 2019
;; MSG SIZE  rcvd: 107

E:

» dig yarf.nl

; <<>> DiG 9.11.3-1ubuntu1.5-Ubuntu <<>> yarf.nl
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 13207
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;yarf.nl.                       IN      A

;; ANSWER SECTION:
yarf.nl.                3600    IN      A       5.157.81.33

;; Query time: 33 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Thu Mar 21 07:27:06 CET 2019
;; MSG SIZE  rcvd: 52

Responder1

Por que resolve para 127.0.0.1?

É um nome de domínio cujo proprietário adicionou um Aregistro (endereço) 127.0.0.1como valor/destino. É literalmente tão simples quanto isso.

NAME                   TTL    TYPE    VALUE
--------------------   ---    ----    ---------
*.localhost.yarf.nl.   1h     A       127.0.0.1

Por que funciona comqualquersubdomínio?

É umregistro curinga. Se você adicionar um subdomínio chamado *, isso será considerado um "curinga" e o servidor responderá com os mesmos dados para qualquer nome (a menos que seja substituído por entradas mais específicas).

informação relacionada