Dns-search seçeneği / etc / network / interfaces öğesinde ne anlama gelir?


38

Herhangi biri bana dosyadaki dns-searchdirektif hakkında açıklama yapabilir /etc/network/interfaces:

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

Zorunlu mu? Ve nasıl yapılandırabilirim?


1
Bunu sunucumda kişisel olarak devre dışı bıraktım, çünkü IPv6 kullandım ve bir adres (fe hello.com) IPv6'yı desteklemiyordu, sistem hello.com.example.combunun yerine çözmeyi denedi example.comve sonuç ( hello.combeklendiği gibi IPv4 adresi değil ). Bu konuda daha ayrıntılı olarak burada yazdım: daysleeper.cz/…
düzenleme

Yanıtlar:


32

dns-search dns aramaları için hangi etki alanının ekleneceğini belirler.

Normalde burada döndürdüğünüz alanın aynısını belirtirsiniz hostname -f.

Ayrıntılı bilgi için aşağıdaki alıntılara bakın 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
Dns-search yönergesi, arayüzler dosyasının kılavuz sayfasında neden belirtilmiyor? ( Manpages.ubuntu.com/manpages/utopic/en/man5/interfaces.5.html )
odigity

4
@odigity, bunun bir çözüm olduğunu, ifup'in içsel bir özelliği olmadığını düşünüyorum.
Tiago

Tüm bunlar /etc/nsswitch.conf? Te tanımlandığı şekilde arama sırasına göre nasıl bir araya gelir? Aynı problem için çoklu tedaviler gibi geliyor
David Walker
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.