In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
今天就跟大家聊聊有关Ubuntu 中怎么设置静态DNS服务器,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
Ubuntu下设置DNS .
另参国内外Ubuntu DNS服务器地址列表以下是设置动态Ubuntu DNS的方法,重新登录后就会还原成ISP提供的Ubuntu DNS,但是方法简单:$ sudo vim /etc/resolv.conf显示的是苏州和无锡的两个Ubuntu DNS:
nameserver 61.177.7.1 nameserver 221.228.255.1改成: nameserver 208.67.222.222 nameserver 208.67.220.220
我填的是OpenDNS的Ubuntu DNS,随便输一个不存在的网址,如果弹出OpenDNS的提示,OK。也可以通过访问http://welcome.opendns.com/验证 Ubuntu设置静态DNS服务器:http://muzuiget.blog.ubuntu.org.cn/archives/ubuntusetstaticdns
linux下的dns设置详解转自http://www.pcworld.com.cn/how_to_use/1/2005/0712/1396.shtml
简介
Ubuntu DNS就是Domain Name System,它能够把形如www.21php.com这样的域名转换为211.152.50.35这样的IP地址;没有DNS,浏览21php.com 这个网站时,就必须用211.152.50.35这么难记的数字来访问。提供Ubuntu DNS服务的就是Ubuntu DNS服务器。Ubuntu DNS服务器可以分为三种,高速缓存服务器 (Cacheonly server)、主服务器(Primary Name server)、辅助服务器(Second Name Server)。
Ubuntu DNS的详细原理、工作流程、术语、概念,限于篇幅,这里就不说了。可以阅读专门的文章,如DNSHOWTO加以了解。
配置主Ubuntu DNS服务器
首先我们做以下假设:A服务器为21php.com的主域名服务器,其IP地址为11.0.0.1,B服务器为21php.com的辅助域名服务器,其IP地址为11.0.0.2;下面我们配置服务器11.0.0.1为21PHP.COM的主Ubuntu DNS服务器 Linux下的dns功能是通过bind软件实现的。bind软件安装后,会产生几个固有文件,分为两类,一类是配置文件在/etc目录下,一 类是dns记录文件在/var/named目录下。加上其他相关文件,共同设置Ubuntu DNS服务器。下面是所有和dns设置相关文件的列表与说明。
位于/etc目录下的有:hosts,host.conf,resolv.conf,named.boot,named.conf。
1、"hosts"文件,定义了主机名和ip地址的对应,其中也有将要运行dns这台电脑的ip地址和主机名。内容: 127.0.0.1 localhost.localdomain localhost
2、"host.conf"文件[Boban注:原来误写成hosts.conf],"order hosts bind"语句,指定了对主机名的解析顺序是先到hosts中查找,然后到dns服务器的记录里查找。"multi on"则是允许一个主机名对应多个ip地址。内容:
order hosts, bind multi on nospoof on
3、"resolv.conf"文件,"nameserver 10.0.0.211"指定了Ubuntu DNS服务器的地址。注意,这个文件对普通非dns服务器的电脑(非windows的系统;Windows系统是在"网络属 性"中设置这项的)来说,是必不可少的。你如果没有设置本机为dns服务器,你又要能够解析域名,就必须指定一个dns服务器的地址。你可以最多写上三个 地址,作为前一个失败时的候选Ubuntu DNS服务器。"domain zrs.com"指定默认的域。文件内容: domain 21php.com nameserver 11.0.0.1
4、"named.boot"文件是早期版本的bind软件使用的配置文件,现在新版本中已经让位于"named.conf"。named.conf是dns server配置的核心文件。下面我们一段一段的来解说。
# named.conf configuration for bind # Generated automatically by bindconf, alchemist et al. controls { inet 127.0.0.1 allow { localhost; } keys { rndckey; }; }; include "/etc/rndc.key";options { directory "/var/named/"; }; zone "." { type hint; file "named.ca"; }; zone "0.0.127.inaddr.arpa" { type master; file "0.0.127.inaddr.arpa.zone"; }; zone "localhost" { type master; file "localhost.zone"; }; zone "21php.com" { type master; notify yes; file "21php.com"; };
上文中#为注释符号, 其他各行含义如下: diretory /var/named 指定named从 /var/named 目录下读取Ubuntu DNS数据文件,这个目录用户可自行指定并创建,指定后所有的Ubuntu DNS数据文件都存放在此目录下;
zone "." { type hint; file "named.ca"; };
指定named从 named.ca 文件中获得Internet的顶层"根"服务器地址 。
zone "0.0.127.inaddr.arpa" { type master; file "0.0.127.inaddr.arpa.zone"; };
指定named作为127.0.0网段地址转换主服务器,named.local文件中包含了127.0.0.*形式的地址到域名的转换数据(127.0.0网段地址是局域网接口的内部 loopback地址);
zone "localhost" { type master; file "localhost.zone"; };
指定包含localhost的Ubuntu DNS文件数据存放在/var/named/localhost.zone中;
zone "21php.com" { type master; notify yes; file "21php.com.zone"; };
以上语句表明域21php.com的Ubuntu DNS数据存放在/var/named/目录下的21php.com.zone中; 我们可以用文本编辑器打开/var/named/21php.com.zone,其内容如下:
$TTL 86400 @ IN SOA @ root.localhost ( 2 ; serial 28800 ; refresh 7200 ; retry 604800 ; expire 86400 ; ttl )@ IN NS localhost www IN A 11.0.0.233 www2 IN A 11.0.0.23 forum IN A 11.0.0.10 @ IN MX 5 mail.21php.com.
该文件的前部分是相应的参数设置,此部分不需要改动,后面的部分就是具体的Ubuntu DNS数据;
www IN A 11.0.0.233 将www.21php.com 解析到地址11.0.0.233; www2 IN A 11.0.0.23 将www2.21php.com 解析到地址11.0.0.23; club IN A 11.0.0.10 将club.21php.com 解析到地址11.0.0.10;
配置辅助Ubuntu DNS服务器
配置服务器11.0.0.2为21php.com辅助dns服务器
辅助Ubuntu DNS服务器,可从主服务器中转移一整套域信息。区文件是从主服务器中转移出来的,并作为本地磁盘文件存储在辅助服务器中。在辅助服务器中有域信息的完整拷贝,所以也可以可以回答对该域的查询。这部分的配置内容如下:
zone "21php.com" IN {
type slave;
file "21php.com.zone";
masters { 11.0.0.1; };
可以看到,和主Ubuntu DNS服务器不同地方就是:"type"改为了"slave",然后指明了主Ubuntu DNS服务器的地址"masters { 11.0.0.1; };"。Ubuntu DNS服务启动时,就会自动连接11.0.0.1,读取21php.com域的信息,然后保存到本机的21php.com.zone文件里。
测试Ubuntu DNS服务器
改动过Ubuntu DNS的相应文件,用"ndc restart"命令重新启动服务,在redhat 7.1以上版本中使用命令:
/etc/rc.d/init.d/named restart 或者 /etc/rc.d/init.d/named reload使改动生效。
要测试Ubuntu DNS,可以找一台客户机,把它的Ubuntu DNS地址设成新建立的Ubuntu DNS服务器地址,然后试试上网,收信,下载等。也可以使用nslookup命 令:运行nslookup,输入要查询的主机名,看是否返回正确的ip地址,在redhat 7.1以上版本中推荐使用dig命令。
看完上述内容,你们对Ubuntu 中怎么设置静态DNS服务器有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注行业资讯频道,感谢大家的支持。
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.