Що означає опція пошуку dns у / etc / network / interfaces?


38

Хтось може мені пояснити про dns-searchдирективу у /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

Це обов’язково? І як це можна налаштувати?


1
Я особисто відключив це на своєму сервері, тому що я використовую IPv6, і коли адреса (fe hello.com) я намагався підключитися до не підтримує IPv6, система намагалася вирішити hello.com.example.comзамість цього, і це дало IPv6 example.comяк результат (не IPv4 адреса, hello.comяк очікувалося). Я написав про це більш докладно тут: daysleeper.cz/…
влаштовуйте

Відповіді:


32

dns-search визначає, який домен додається для пошуку dns.

Зазвичай ви вкажете тут той самий домен, як і повернутий hostname -f.

Детальну інформацію див. У наступній цитаті 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 на довідковій сторінці файлу інтерфейсів? ( manpages.ubuntu.com/manpages/utopic/en/man5/interfaces.5.html )
немилість

4
@odigity, я думаю, що це тому, що це варіант, переданий до Resolvconf, а не внутрішня особливість ifup.
Тіаго

Як це все поєднується з порядком пошуку, визначеним у /etc/nsswitch.conf ?? Звучить, як багаторазове лікування однієї і тієї ж проблеми
Девід Уокер
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.