欢迎来到天天文库
浏览记录
ID:36223976
大小:63.50 KB
页数:16页
时间:2019-05-07
《linux搭建dns服务_计算机软件及应用_it计算机_专业资料》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Linux下搭建DNS服务器和配置文件(named.conf)祥解· 2011/11/17· DNS, linux, 服务器· 服务器搭建与应用· 评论·· 13,428配置之前先了解一下bind DNS服务器软件:BIND是一种开源的DNS(DomainNameSystem)协议的实现,包含对域名的查询和响应所需的所有软件。它是互联网上最广泛使用的一种DNS服务器,对于类UNIX系统来说,已经成为事实上的标准。为了构架DNS服务器来解析域名或ip地址,我们得安装BIND和caching-nameserver。为了TCP和UDP53数据包能通过,我们也有必要配置路由器。安装BIND软件包1、
2、安装# yum -yinstallbindcaching-nameserver2、配置下面的例子是以公网IP(172.16.0.80/29),局域网IP(192.168.0.0/24),域名(linuxde.net)作说明。在配置你自己的服务器时,请使用你自己的IP和域名。#vim/etc/named.confoptions{directory"/var/named";#queryrangeallow-query{localhost;192.168.0.0/24;};#transferrangeallow-transfer{localhost;192.168.0.0/24;};#recurs
3、ionrangeallow-recursion{localhost;192.168.0.0/24;};};controls{inet127.0.0.1allow{localhost;}keys{rndckey;};};#hereisthesectionforinternalinformationsvimew"internal"{match-clients{localhost;192.168.0.0/24;};zone"."IN{typehint;file"named.ca";};#setzonesforinternalzone"linuxde.net"IN{typemaster;file"l
4、inuxde.net.lan";allow-update{none;};};#setzonesforinternalzone"0.168.192.in-addr.arpa"IN{typemaster;file"0.168.192.db";allow-update{none;};};zone"localdomain"IN{typemaster;file"localdomain.zone";allow-update{none;};};zone"localhost"IN{typemaster;file"localhost.zone";allow-update{none;};};zone"0.0.1
5、27.in-addr.arpa"IN{typemaster;file"named.local";allow-update{none;};};zone"255.in-addr.arpa"IN{typemaster;file"named.broadcast";allow-update{none;};};zone"0.in-addr.arpa"IN{typemaster;file"named.zero";allow-update{none;};};};vimew"external"{match-clients{any;};zone"."IN{typehint;file"named.ca";};#s
6、etzonesforexternalzone"linuxde.net"IN{typemaster;file"linuxde.net.wan";allow-update{none;};};#setzonesforexternal*notezone"80.0.16.172.in-addr.arpa"IN{typemaster;file"80.0.16.172.db";allow-update{none;};};};include"/etc/rndc.key";#*note:ForHowtowriteforreverseresolvimng,Writenetworkaddressreversely
7、likebelow.thecasefor192.168.0.0/24networkaddress?192.168.0.0rangeofnetwork?192.168.0.0-192.168.0.255howtowrite?0.168.192.in-addr.arpacaseof172.16.0.80/29networkaddress?172.16.0.80rangeofnetwork?172.16.0.80-
此文档下载收益归作者所有