您好,登錄后才能下訂單哦!
這篇文章主要介紹Linux下如何使用DNSmasq建本地DNS服務(wù)器,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
DNSmasq是一個(gè)小巧且方便地用于配置DNS和DHCP的工具,適用于小型網(wǎng)絡(luò),它提供了DNS功能和可選擇的DHCP功能。它服務(wù)那些只在本地適用的域名,這些域名是不會(huì)在全球的DNS服務(wù)器中出現(xiàn)的。
安裝并啟動(dòng)Dnsmasq
yum install -y dnsmasq service dnsmasq start
1、Dnsmasq的配置文件路徑為:/etc/dnsmasq.conf
# ll -d /etc/dnsmasq.conf-rw-r--r-- 1 root root 21237 Feb 23 00:17 /etc/dnsmasq.conf
2、編輯/etc/dnsmasq.conf
resolv-file=/etc/resolv.dnsmasq.conf //dnsmasq 會(huì)從這個(gè)文件中尋找上游dns服務(wù)器 strict-order //去掉前面的#addn-hosts=/etc/dnsmasq.hosts //在這個(gè)目里面添加記錄 listen-address=127.0.0.1,192.168.1.123 //監(jiān)聽(tīng)地址
3、修改/etc/resolv.conf
echo 'nameserver 127.0.0.1' > /etc/resolv.conf
4、創(chuàng)建resolv.dnsmasq.conf文件并添加上游dns服務(wù)器的地址
touch /etc/resolv.dnsmasq.confecho 'nameserver 119.29.29.29' > /etc/resolv.dnsmasq.conf
5、創(chuàng)建dnsmasq.hosts文件
cp /etc/hosts /etc/dnsmasq.hostsecho 'addn-hosts=/etc/dnsmasq.hosts' >> /etc/dnsmasq.conf
提示:resolv.dnsmasq.conf中設(shè)置的是真正的Nameserver,可以用電信、聯(lián)通等公共的DNS。
1、設(shè)置Dnsmasq開(kāi)機(jī)啟動(dòng)并啟動(dòng)Dnsmasq服務(wù):
chkconfig dnsmasq on /etc/init.d/dnsmasq restart
2、netstat -tunlp|grep 53 查看Dnsmasq是否正常啟動(dòng):
# netstat -tlunp|grep 53tcp 0 0 0.0.0.0:53 0.0.0.0:* LISTEN 2491/dnsmasq tcp 0 0 :::53 :::* LISTEN 2491/dnsmasq udp 0 0 0.0.0.0:53 0.0.0.0:* 2491/dnsmasq udp 0 0 :::53 :::* 2491/dnsmasq
3、dig www.freehao123.com,第一次是沒(méi)有緩存,所以時(shí)間是200多
4、第二次再次測(cè)試,因?yàn)橐呀?jīng)有了緩存,所以查詢時(shí)間已經(jīng)變成了0.
以上是“Linux下如何使用DNSmasq建本地DNS服務(wù)器”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。