关于dns的问题?

发布于 2022-10-02 18:21:19 字数 80 浏览 12 评论 0

请问一下,一个局域网,需要一个dns服务器,我现在想在linux9。0下建立一个dns服务器,我想问一下是不是在系统下把dns服务启动了就能够作解析了?多谢帮忙

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

三生一梦 2022-10-09 18:21:19

…………,默认不能,你要配置一下!贴子有N多。

风苍溪 2022-10-09 18:21:19

好像只要配置正向解析功能就行了?是不是这样?我一直在看dns的帖子,到现在还是一头雾水,哪位DX帮帮忙呀!或者给个链接之类的,我没找到呀

千と千尋 2022-10-09 18:21:19

一般你只要用正向解析就行了,反向的用的不多。主有有两个文件
vi /etc/named.conf

## named.conf - configuration for bind
#
# Generated automatically by redhat-config-bind, alchemist et al.
# Any changes not supported by redhat-config-bind should be put
# in /etc/named.custom
#
controls {
        inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};

include "/etc/named.custom";

include "/etc/rndc.key";

options {
        directory "/usr/local/named/";
};

zone  "0.0.127.in-addr.arpa" {
        type master;
        file  "0.0.127.in-addr.arpa.zone";
};

zone  "localhost" {
        type master;
        file  "localhost.zone";
};

zone  "xxxx2.com.cn" {
        type master;
        file  "xxxx2.com.cn.zone";
};

zone  "xxxxx1.com.cn" {
        type master;
        file  "xxxxx1.com.cn.zone";
};

第二个文件 

vi xxxxx2.com.cn.zone

$TTL 86400
@       IN      SOA     dns.xxxxx2.com.cn. root.localhost.  (
                                      2003070707 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      3600000    ; Expire
                                      86400 )    ; Minimum
        IN      NS      dns.doiyes.com.cn.
dns     IN      A       202.108.66.43
www     IN      A       202.108.66.43
ftp     IN      A       202.108.66.43
ftp1    IN      CNAME   ftp.doiyes.com.cn.
mail    IN      A       202.108.66.43
mail    IN      MX      10 mail.doiyes.com.cn.
@       IN      MX      10 mail
@       IN      A       202.108.66.43

-------------------------------------------------------------------------------------------------

vi 0.0.127.in-addr.arpa.zone

$TTL 86400
@       IN      SOA     localhost.      root.localhost (
                        1 ; serial
                        28800 ; refresh
                        7200 ; retry
                        604800 ; expire
                        86400 ; ttk
                        )

@       IN      NS      localhost.

1       IN      PTR     localhost.

------------------------------------------------------------------------------------------------
vi xxxx1.com.cn.zone

$TTL 86400
@       IN      SOA     xxxx1.com.cn. root.localhost.  (
                                      2003070707 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      3600000    ; Expire
                                      86400 )    ; Minimum
        IN      NS      dns.doiyes.com.cn.
dns     IN      A       202.108.66.43
www     IN      A       202.108.66.41
bbs     IN      A       202.108.66.41
unipet  IN      A       202.108.66.41
viewsonic        IN      A       202.108.66.41
clud    IN      A       202.108.66.41
news    IN      A       202.108.66.41
ftp     IN      A       202.108.66.42
ftp1    IN      CNAME   ftp.strongwell.com.cn.
mail    IN      A       202.108.66.43
mail    IN      MX      10 mail.strongwell.com.cn.
pop     IN      A       202.108.66.43
smtp    IN      A       202.108.66.43
@       IN      MX      10 mail
@       IN      A       202.108.66.43

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文