Ubuntu

如何在 Ubuntu 12.04 中設置 dns 搜尋域?

  • August 7, 2012

/etc/resolv.conf是從 的內容動態生成的/etc/network/interfaces,在我的系統上包含這樣的一行:

dns-servers 8.8.8.8

如何在此配置中包含預設搜尋域?如果重要的話,我正在執行一個純 Ubuntu 伺服器配置,沒有安裝 X 伺服器。

由於您似乎正在使用 resolvconf,因此您需要dns-search在網路介面文件中使用該選項

#/etc/network/interfaces 
# The primary network interface
auto eth0
iface eth0 inet static
   address 10.2.37.4
   netmask 255.255.254.0
   gateway 10.2.37.1
   dns-nameservers 10.2.51.4 10.2.52.4
   dns-search example.org

引用自:https://serverfault.com/questions/414879