Co oznacza opcja wyszukiwania dns w / etc / network / interfaces?


38

Czy ktoś może mi wyjaśnić dns-searchw /etc/network/interfacespliku dyrektywy :

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

Czy to jest obowiązkowe? Jak mogę to skonfigurować?


1
Osobiście wyłączyłem to na moim serwerze, ponieważ używam IPv6, a kiedy adres (fe hello.com), z którym próbowałem się połączyć, nie obsługiwał IPv6, system hello.com.example.comzamiast tego próbował rozwiązać, co dało IPv6 example.comjako wynik (nie adres IPv4 zgodny z hello.comoczekiwaniami). Pisałem o tym bardziej szczegółowo tutaj: daysleeper.cz/…
umów się na

Odpowiedzi:


32

dns-search określa, która domena jest dołączana do wyszukiwania DNS.

Zwykle określasz tutaj tę samą domenę, którą zwrócił hostname -f.

Aby uzyskać szczegółowe informacje, zobacz następujący cytat z 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
Dlaczego dyrektywa dns-search nie jest wymieniona na stronie podręcznika użytkownika dla pliku interfejsów? ( manpages.ubuntu.com/manpages/utopic/en/man5/interfaces.5.html )
odigity

4
@odigity, myślę, że dzieje się tak, ponieważ jest to opcja przekazana do resolvconf, a nie wewnętrzna funkcja ifup.
Tiago

Jak to wszystko się łączy z kolejnością wyszukiwania zdefiniowaną w /etc/nsswitch.conf? Brzmi jak wielokrotne lekarstwa na ten sam problem
David Walker,
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.