使用 bind 设置 DNS 服务器的方法
dns(domain name server,域名服务器)是进行域名(domain name)和与之相对应的ip地址 (ip address)转换的服务器。
域名系统domain name system,我们更通常称为 dns 的系统,可以将域名翻译或转换为与该域关联的 ip 地址。dns 是能够让你通过名称找到自己喜欢的网站而不是在浏览器中输入 ip 地址的原因。本指南将向你展示如何配置一个主 dns 系统以及客户端。
以下是本文示例中使用的系统细节:
dns01.fedora.local (192.168.1.160)- 主 dns 服务器 client.fedora.local (192.168.1.136)- 客户端
dns 服务器配置
使用 sudo 安装 bind 包:
$ sudo dnf install bind bind-utils -y
bind 包提供了 /etc/named.conf
配置文件,来供你配置 dns 服务器。
编辑 /etc/named.conf 文件:
sudo vi /etc/named.conf
查找以下行:
listen-on port 53 { 127.0.0.1; };
添加主 dns 服务器的 ip 地址,如下所示:
listen-on port 53 { 127.0.0.1; 192.168.1.160; };
查找以下行:
allow-query { localhost; };
添加本地网络范围。该示例系统使用的 ip 地址在 192.168.1.x 的范围内。指定如下:
allow-query { localhost; 192.168.1.0/24; };
指定转发和反向区域。区域文件zone file就是具有系统上 dns 信息(例如 ip 地址和主机名)的文本文件。转发区域文件forward zone file使得将主机名转换为 ip 地址成为可能。反向区域文件reverse zone file则相反。它允许远程系统将 ip 地址转换为主机名。
在 /etc/named.conf
文件的底部查找以下行:
include "/etc/named.rfc1912.zones";
在此处,你将在该行的正上方指定区域文件信息,如下所示:
zone "dns01.fedora.local" in { type master; file "forward.fedora.local"; allow-update { none; }; }; zone "1.168.192.in-addr.arpa" in { type master; file "reverse.fedora.local"; allow-update { none; }; };
forward.fedora.local 和 reverse.fedora.local
文件是要创建的区域文件的名称。它们可以是任意名字。
保存并退出。
创建区域文件
创建你在 /etc/named.conf
文件中指定的转发和反向区域文件:
$ sudo vi /var/named/forward.fedora.local
添加以下行:
$ttl 86400 @ in soa dns01.fedora.local. root.fedora.local. ( 2011071001 ;serial 3600 ;refresh 1800 ;retry 604800 ;expire 86400 ;minimum ttl ) @ in ns dns01.fedora.local. @ in a 192.168.1.160 dns01 in a 192.168.1.160 client in a 192.168.1.136
所有粗体(lctt 译注:本译文中无法呈现粗体)内容都特定于你的环境。保存文件并退出。接下来,编辑 reverse.fedora.local
文件:
$ sudo vi /var/named/reverse.fedora.local
添加以下行:
$ttl 86400 @ in soa dns01.fedora.local. root.fedora.local. ( 2011071001 ;serial 3600 ;refresh 1800 ;retry 604800 ;expire 86400 ;minimum ttl ) @ in ns dns01.fedora.local. @ in ptr fedora.local. dns01 in a 192.168.1.160 client in a 192.168.1.136 160 in ptr dns01.fedora.local. 136 in ptr client.fedora.local.
所有粗体(lctt 译注:本译文中无法呈现粗体)内容都特定于你的环境。保存文件并退出。
你还需要配置 selinux 并为配置文件添加正确的所有权。
sudo chgrp named -r /var/named sudo chown -v root:named /etc/named.conf sudo restorecon -rv /var/named sudo restorecon /etc/named.conf
配置防火墙:
sudo firewall-cmd --add-service=dns --perm sudo firewall-cmd --reload
检查配置是否存在语法错误
sudo named-checkconf /etc/named.conf
如果没有输出或返回错误,那么你的配置有效。
检查转发和反向区域文件。
$ sudo named-checkzone forward.fedora.local /var/named/forward.fedora.local $ sudo named-checkzone reverse.fedora.local /var/named/reverse.fedora.local
你应该看到 “ok” 的响应:
zone forward.fedora.local/in: loaded serial 2011071001 ok zone reverse.fedora.local/in: loaded serial 2011071001 ok
启用并启动 dns 服务
$ sudo systemctl enable named $ sudo systemctl start named
配置 resolv.conf 文件
编辑 /etc/resolv.conf
文件:
$ sudo vi /etc/resolv.conf
查找你当前的 nameserver 行。在示例系统上,使用调制解调器/路由器充当名称服务器,因此当前看起来像这样:
nameserver 192.168.1.1
这需要更改为主 dns 服务器的 ip 地址:
nameserver 192.168.1.160
保存更改并退出。
不幸的是需要注意一点。如果系统重启或网络重启,那么 networkmanager 会覆盖 /etc/resolv.conf
文件。这意味着你将丢失所做的所有更改。
为了防止这种情况发生,请将 /etc/resolv.conf
设为不可变:
$ sudo chattr +i /etc/resolv.conf
如果要重新设置,就需要允许其再次被覆盖:
$ sudo chattr -i /etc/resolv.conf
测试 dns 服务器
$ dig fedoramagazine.org ; <<>> dig 9.11.13-redhat-9.11.13-2.fc30 <<>> fedoramagazine.org ;; global options: +cmd ;; got answer: ;; ->>header<<- opcode: query, status: noerror, id: 8391 ;; flags: qr rd ra; query: 1, answer: 1, authority: 3, additional: 6 ;; opt pseudosection: ; edns: version: 0, flags:; udp: 4096 ; cookie: c7350d07f8efaa1286c670ab5e13482d600f82274871195a (good) ;; question section: ;fedoramagazine.org. in a ;; answer section: fedoramagazine.org. 50 in a 35.197.52.145 ;; authority section: fedoramagazine.org. 86150 in ns ns05.fedoraproject.org. fedoramagazine.org. 86150 in ns ns02.fedoraproject.org. fedoramagazine.org. 86150 in ns ns04.fedoraproject.org. ;; additional section: ns02.fedoraproject.org. 86150 in a 152.19.134.139 ns04.fedoraproject.org. 86150 in a 209.132.181.17 ns05.fedoraproject.org. 86150 in a 85.236.55.10 ns02.fedoraproject.org. 86150 in aaaa 2610:28:3090:3001:dead:beef:cafe:fed5 ns05.fedoraproject.org. 86150 in aaaa 2001:4178:2:1269:dead:beef:cafe:fed5 ;; query time: 830 msec ;; server: 192.168.1.160#53(192.168.1.160) ;; when: mon jan 06 08:46:05 cst 2020 ;; msg size rcvd: 266
需要检查几件事以验证 dns 服务器是否正常运行。显然,取得结果很重要,但这本身并不意味着 dns 服务器实际上正常工作。
顶部的 query、answer 和 authority 字段应显示为非零,如我们的示例所示:
;; flags: qr rd ra; query: 1, answer: 1, authority: 3, additional: 6
并且 server 字段应有你的 dns 服务器的 ip 地址:
;; server: 192.168.1.160#53(192.168.1.160)
如果这是你第一次运行 dig 命令,请注意完成查询要花费 830 毫秒的时间:
;; query time: 830 msec
如果再次运行它,查询将会更快:
$ dig fedoramagazine.org ;; query time: 0 msec ;; server: 192.168.1.160#53(192.168.1.160)
客户端配置
客户端配置将简单得多。
安装 bind 程序:
$ sudo dnf install bind-utils -y
编辑 /etc/resolv.conf
文件,并将主 dns 配置为唯一的名称服务器:
$ sudo vi /etc/resolv.conf
它看起来像这样:
nameserver 192.168.1.160
保存更改并退出。然后,使 /etc/resolv.conf 文件不可变,防止其被覆盖并变回默认设置:
$ sudo chattr +i /etc/resolv.conf
测试客户端
你应该获得与 dns 服务器相同的结果:
$ dig fedoramagazine.org ; <<>> dig 9.11.13-redhat-9.11.13-2.fc30 <<>> fedoramagazine.org ;; global options: +cmd ;; got answer: ;; ->>header<<- opcode: query, status: noerror, id: 8391 ;; flags: qr rd ra; query: 1, answer: 1, authority: 3, additional: 6 ;; opt pseudosection: ; edns: version: 0, flags:; udp: 4096 ; cookie: c7350d07f8efaa1286c670ab5e13482d600f82274871195a (good) ;; question section: ;fedoramagazine.org. in a ;; answer section: fedoramagazine.org. 50 in a 35.197.52.145 ;; authority section: fedoramagazine.org. 86150 in ns ns05.fedoraproject.org. fedoramagazine.org. 86150 in ns ns02.fedoraproject.org. fedoramagazine.org. 86150 in ns ns04.fedoraproject.org. ;; additional section: ns02.fedoraproject.org. 86150 in a 152.19.134.139 ns04.fedoraproject.org. 86150 in a 209.132.181.17 ns05.fedoraproject.org. 86150 in a 85.236.55.10 ns02.fedoraproject.org. 86150 in aaaa 2610:28:3090:3001:dead:beef:cafe:fed5 ns05.fedoraproject.org. 86150 in aaaa 2001:4178:2:1269:dead:beef:cafe:fed5 ;; query time: 1 msec ;; server: 192.168.1.160#53(192.168.1.160) ;; when: mon jan 06 08:46:05 cst 2020 ;; msg size rcvd: 266
确保 server 输出的是你 dns 服务器的 ip 地址。
你的 dns 服务器设置完成了,现在所有来自客户端的请求都会经过你的 dns 服务器了!
为什么要搭建一个简单的dns服务器?
(1)当外网dns崩溃,比如暴风门发生的那种情况,可以使用我们自己的dns应急
(2)为内网网站提供内线的ip地址解析,或者实现双线解析
(3)当你的isp限制了二级域名和高级管理特性,你需要自己搭建dns服务器来满足自己的需要
(4)避免dns劫持
(5)和别的解决方案集成
总结
到此这篇关于使用 bind 设置 dns 服务器的文章就介绍到这了,更多相关bind dns服务器内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
关于 python gevent 架框 作为 TCP服务器 的 代码问题 , 每个 socket 的 消息 接收 是否有使用 事件监听回调的方法呢?
-
使用VisualStudio开发php的图文设置方法
-
Apache服务器无法使用的解决方法
-
使用nginx搭建点播和直播流媒体服务器的方法步骤
-
QQ音乐怎么使用3D人声音效? QQ音乐3d立体环绕音乐的设置方法
-
win2003服务器使用WPS的COM组件的一些问题解决方法_PHP
-
server2008共享设置、服务器共享文件设置、服务器设置共享文件夹的方法详细介绍
-
Archlinux 设置IP地址、网关、DNS的方法
-
js批量设置样式的三种方法不推荐使用with_javascript技巧
-
火山如何设置摄像头? 火山允许使用摄像头的设置方法