dnsmasq配置dns
时间: 2024-06-17 16:06:12 浏览: 230
dnsmasq为某个域名配置单独的DNS.txt
dnsmasq是一款非常轻量级的DNS和DHCP服务器软件,常用于路由器等设备上。它可以作为本地DNS服务器提供域名解析服务,也可以作为DHCP服务器为网络中的设备分配IP地址。以下是一个简单的dnsmasq配置dns的示例:
1. 安装dnsmasq软件包
2. 编辑配置文件/etc/dnsmasq.conf,添加以下内容:
```
listen-address=127.0.0.1
bind-interfaces
cache-size=1000
no-negcache
server=8.8.8.8
server=8.8.4.4
```
其中,listen-address指定监听的IP地址,cache-size指定缓存大小,server指定使用的DNS服务器。
3. 启动dnsmasq服务,并将其设置为开机启动:
```
systemctl start dnsmasq
systemctl enable dnsmasq
```
这样,就可以在本地搭建一个DNS服务器了,可以通过修改客户端的DNS配置来使用该DNS服务器。
阅读全文