Dnsmasq 安装配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dnsmasq 安装配置相关的知识,希望对你有一定的参考价值。

Dnsmasq  官网 http://www.thekelleys.org.uk/dnsmasq/doc.html

Unbuntu 安装 Dnsmasq 参见 https://help.ubuntu.com/community/Dnsmasq

一.  介绍

  DNSmasq 提供两种服务,每种服务可以单独运行:

  1. DNS 服务
  2. DHCP 服务

  本地 DNS 缓存可以加速网络访问,因为用户的浏览器不需要对先前查询过域名再次向 DNS服务器查询。

  DNCP 允许用户的电脑为同一个无线或有限环境中的其他计算机分配 IP 地址。

二. 安装

$ sudo apt-get install dnsmasq 

三. 配置

dnsmasq 配置文件地址

$ /etc/dnsmasq.conf

本地 DNS 缓存设置

修改

#listen-address=

listen-address=127.0.0.1

接下来修改 /etc/resolv.conf,确保新设置的 DNS 服务器 127.0.0.1 出现在 DNS 服务器列表的顶端。无论何时用户的电脑需要解析一个域名,它会首先请求 dnsmasq (其跑在 127.0.0.1) 

$ cat  /etc/resolv.conf
search yourisp.com
nameserver 127.0.0.1
nameserver 192.168.0.1
nameserver 205.171.3.25
nameserver 205.171.3.26

 修改后配置后重启服务生效

$ sudo /etc/init.d/dnsmasq restart

 

以上是关于Dnsmasq 安装配置的主要内容,如果未能解决你的问题,请参考以下文章

dnsmasq轻量级DNS安装配置

centos7配置dnsmasq

局域网配置dnsmasq

CentOS 7 安装 dnsmasq 服务 实现内网DNS

树莓派安装DNSMASQ服务

dnsmasq安装配置