ตัวเลือก dns-search หมายถึงอะไรใน / 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 ที่ไม่ได้กล่าวถึงในหน้า man สำหรับไฟล์อินเตอร์เฟส? ( manpages.ubuntu.com/manpages/utopic/en/man5/interfaces.5.html )
odigity

4
@ ดิดิตีฉันคิดว่าเป็นเพราะเป็นตัวเลือกที่ส่งผ่านไปยัง resolvconf ไม่ใช่ฟีเจอร์ภายในของ ifup
Tiago

ทั้งหมดนี้เกี่ยวข้องกับลำดับการค้นหาอย่างไรตามที่กำหนดไว้ใน /etc/nsswitch.conf เสียงเหมือนการรักษาหลายอย่างสำหรับปัญหาเดียวกัน
David Walker
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.