缓存域名服务器通常架设在公司的局域网内,主要目的是提高域名解析的速度,减少对互联网的出口流量。

缓存域名服务器的应用环境:

image.png



操作环境:

192.168.80.181 上一级dns服务器  NAT模式

192.168.80.182 缓存域名服务器  NAT模式

192.168.80.183 客户端



先安装ntp时间同步(两台同样操作)

yum install ntp -y

ntpdate time1.aliyum.com  //同步网络时间

date

image.png

image.png


--

如果想把某台服务器作为时间服务器,给别人同步。 192.168.80.181

需要修改配置文件:

vi /etc/ntp.conf

image.png


systemctl start ntpd

systemctl enable ntpd

 

让另一台服务器,来同步时间服务器的时间  192.168.80.182

       ntpdate 192.168.80.181

image.png

---


192.168.80.181 上一级dns服务器 

yum install bind -y

vi /etc/named.conf

image.png

vi /etc/named.rfc1912.zones

image.png

 cd /var/named/

cp -p named.localhost hello.com.zone

vi hello.com.zone

image.png

 image.png


192.168.80.182  缓存域名服务器

yum install bind -y

vi /etc/named.conf

image.png

image.png

systemctl restart named



192.168..80.183 客户端

systemctl stop firewalld

setenforce 0

vi /etc/resolv.conf

image.png

yum install bind-utils -y     //解析工具

nslookup www.hello.com

image.png