¿Por qué todos los dominios *.localhost.yarf.nl se resuelven en `127.0.0.1`?

¿Por qué todos los dominios *.localhost.yarf.nl se resuelven en `127.0.0.1`?

Hoy descubrí algo curioso: todos los dominios *.localhost.yarf.nlse resuelven en 127.0.0.1.

  • ¿Qué es esto?
  • ¿Dónde está esto documentado?
  • No encuentro referencias al respecto...

Aquí algunos ejemplos:

» 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

Y:

» 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

Pero:

» 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

Y:

» 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

Respuesta1

¿Por qué se resuelve en 127.0.0.1?

Es un nombre de dominio cuyo propietario ha agregado un Aregistro (dirección) 127.0.0.1como valor/destino. Es literalmente tan simple como eso.

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

¿Por qué funciona concualquiersubdominio?

Es unregistro comodín. Si agrega un subdominio llamado *, se considera un "comodín" y el servidor responderá con los mismos datos para cualquier nombre (a menos que se anule con entradas más específicas).

información relacionada