标签:dnsmasq
内网DNS系统
功能:解析内网域名和DNS-Cache
软件:dnsmasq
一.安装
yum -y install dnsmasq
二.服务器配置
1.vi /etc/resolv.conf 使本地查询域名时使用dnsmasq服务器
nameserver 127.0.0.1
2.vi /etc/dnsmasq.conf
resolv-file=/etc/dnsmasq.resolvconf 指定上层读取的DNS服务器文件
no-hosts 指定不读取系统默认的/etc/hosts文件
addn-hosts=/etc/dnsmasq_hosts 指定一个dnsmasq读取的hosts文件
strict-order 严格按照resolv-file参数指定的文件下的服务器设定顺序读取
3.vi /etc/resolv.dnsmaq.conf 指定上层服务器
nameserver 202.106.46.151
4.touch /etc/dnsmasq_hosts 创建一个dnsmasq读取的hosts文件
三.客户端配置:
vi /etc/resolv.conf
nameserver 192.168.7.163
search lqhs.com
三.启动
/etc/init.d/dnsmasq start
chkconfig --level 235 dnsmasq on
标签:dnsmasq
原文地址:http://daedalus.blog.51cto.com/39310/1615286