一 DNS服务
Domain Name system,它是一个层级名称树解析网络主机和资源。
常用的解析命令:
host
dig
/etc/resolv.conf
host -v -t NS example.com
DNS记录:
TTL
class
PTR
A
cname
MX
TXT
二 DNS安装配置
-
caching nameservers
unbound : serveral packages are avaliable for configuring a caching nameserver
yum install -y unbound
systemctl start unbound.service
systemctl enable unbound.service
三 配置实例
-
智能主服务器
2. 转发服务器
3.
-
配置 caching nameservers
vi /etc/unbound/unbound.conf
interface: 0.0.0.0
access-control: 1.1.1.1/24 allow
forward-zone:
name: "."
forward-addr: 172.25.254.254
domain-insecure: example.com
firewall-cmd --premanent --add-service=dns
firewall-cmd --reload
unbound-control dump_cache
四 高可用
4.1 主从服务器
4.2 keepalived+bind
本文转自 woshiwei201 51CTO博客,原文链接:http://blog.51cto.com/chenwei/1841968