Cosa significa l'opzione dns-search in / etc / network / interfaces?


38

Qualcuno può spiegarmi la dns-searchdirettiva in /etc/network/interfacesarchivio:

iface eth0 inet static
    address 192.168.3.3
    netmask 255.255.255.0
    gateway 192.168.3.1
    dns-search example.com
    dns-nameservers 192.168.3.45 192.168.8.10

È obbligatorio? E come posso configurarlo?


1
L'ho disabilitato personalmente sul mio server, perché utilizzo IPv6 e quando un indirizzo (fe hello.com) a cui stavo cercando di connettermi non supportava IPv6, il sistema ha tentato hello.com.example.cominvece di risolversi e ha prodotto un IPv6 example.comcome risultato (non l'indirizzo IPv4 di hello.comcome previsto). Ne ho scritto più dettagliatamente qui: daysleeper.cz/…
organizza il

Risposte:


33

dns-search determina quale dominio viene aggiunto per le ricerche DNS.

Normalmente qui specifichi lo stesso dominio restituito da hostname -f.

Per informazioni dettagliate consultare la seguente citazione da man resolv.conf:

   search Search list for host-name lookup.
          The  search  list  is  normally  determined from the local domain name; by default, it contains only the local domain
          name.  This may be changed by listing the desired domain search path following the search keyword with spaces or tabs
          separating  the  names.  Resolver queries having fewer than ndots dots (default is 1) in them will be attempted using
          each component of the search path in turn until a match is found.  For environments with multiple  subdomains  please
          read options ndots:n below to avoid man-in-the-middle attacks and unnecessary traffic for the root-dns-servers.  Note
          that this process may be slow and will generate a lot of network traffic if the servers for the  listed  domains  are
          not local, and that queries will time out if no server is available for one of the domains.

          The search list is currently limited to six domains with a total of 256 characters.

2
Perché la direttiva dns-search non è menzionata nella pagina man per il file interfaces? ( Manpages.ubuntu.com/manpages/utopic/en/man5/interfaces.5.html )
odigity

4
@odigity, penso sia perché è un'opzione passata a resolvconf e non una funzionalità interna di ifup.
Tiago,

In che modo tutto ciò si blocca insieme all'ordine di ricerca come definito in /etc/nsswitch.conf ?? Sembra più cure per lo stesso problema
David Walker,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.