Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

34.4. dnsmasq.hosts

dnsmasq 預設會讀取 /etc/hosts 如果你不想讓它解析/etc/hosts檔案,可以自己定義一個檔案。

# vim /etc/dnsmasq.conf
no-hosts
addn-hosts=/etc/dnsmasq.hosts
		
echo "172.16.0.1 test.example.com" > /etc/dnsmasq.hosts
		

重新起動

/etc/init.d/dnsmasq restart
		

查看日誌

cat /var/log/message

Sep 15 18:17:24 J10-51-MemCache dnsmasq[13799]: read /etc/hosts - 2 addresses
Sep 15 18:17:24 J10-51-MemCache dnsmasq[13799]: read /etc/dnsmasq.hosts - 40 addresses
		

使用nslookup測試

nslookup test.example.com 172.16.3.51
		
[提示]提示

註釋no-hosts選項,可以實現 /etc/hosts 與 /etc/dnsmasq.hosts 共用