Was bedeutet die Option dns-search in / etc / network / interfaces?


38

Kann mir jemand etwas über die dns-searchRichtlinie in der /etc/network/interfacesAkte erklären :

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

Ist es obligatorisch? Und wie kann ich es konfigurieren?


1
Ich persönlich habe dies auf meinem Server deaktiviert, weil ich IPv6 verwende. Als eine Adresse (z. B. hallo.com), zu der ich eine Verbindung herstellen wollte, IPv6 nicht unterstützte, versuchte das System, das Problem aufzulösen. Dies hello.com.example.comergab ein IPv6 von example.comas the Ergebnis (nicht IPv4-Adresse hello.comwie erwartet). Ich habe hier ausführlicher darüber geschrieben: daysleeper.cz/…
arrangiere den

Antworten:


32

dns-search bestimmt, welche Domain für DNS-Lookups angehängt wird.

Normalerweise geben Sie hier dieselbe Domain an, die von zurückgegeben wurde hostname -f.

Detaillierte Informationen finden Sie im folgenden Zitat von 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
Warum wird die Direktive dns-search in der Manpage für die Interface-Datei nicht erwähnt? ( Manpages.ubuntu.com/manpages/utopic/en/man5/interfaces.5.html )
odigity

4
@odigity, ich denke, es liegt daran, dass es eine an resolvconf übergebene Option ist und keine interne Funktion von ifup.
Tiago

Wie hängt das alles mit der in /etc/nsswitch.conf definierten Suchreihenfolge zusammen? Klingt wie mehrere Heilmittel für das gleiche Problem
David Walker
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.