免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1883 | 回复: 6
打印 上一主题 下一主题

[DNS] Linux v9 上配DNS问题。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-12-12 11:41 |只看该作者 |倒序浏览
我在HP DL350 上配置linux v9.0 的DNS时遇到正向解析不能联接域名服务器的错误,请问有没有在linux v9.0配DNS的方法和文档,可以帮助一下,谢谢!

论坛徽章:
0
2 [报告]
发表于 2003-12-12 15:01 |只看该作者

Linux v9 上配DNS问题。

1、在安全中打开dns
-A RH-Lokkit-0-50-INPUT -p tcp -m tcp --dport 53 --syn -j ACCEPT
2、dns语法检查
named.conf  正解反解文件是否正确。

论坛徽章:
0
3 [报告]
发表于 2003-12-12 16:30 |只看该作者

Linux v9 上配DNS问题。

the setup of /etc/resolv.conf
domain linix.com
search  linix.com
nameserver 192.168.192.5

[root@linux named]# more linux.com.zone

$TTL 86400
@       IN      SOA     linux.com.  root.localhost (
                        5 ; serial
                        28800 ; refresh
                        7200 ; retry
                        604800 ; expire
                        86400 ; ttl
                        )

        IN      NS      linux.com.
        IN      NS      pop3.linux.com.
linux.com.      IN      NS      pop3.linux.com.
192.168.192.5   IN      MX      linux.com.

        IN      NS      192.168.192.5.

[root@linux named]# more linux.com.zone

$TTL 86400
@       IN      SOA     linux.com.  root.localhost (
                        5 ; serial
                        28800 ; refresh
                        7200 ; retry
                        604800 ; expire
                        86400 ; ttl
                        )

        IN      NS      linux.com.
        IN      NS      pop3.linux.com.
linux.com.      IN      NS      pop3.linux.com.
192.168.192.5   IN      MX      linux.com.

        IN      NS      192.168.192.5.



[root@linux named]# more 192.168.192.in-addr.arpa
$TTL    86400
@  IN  SOA pop3.linux.com. root.pop3.linux.com. (
                                      2003090901 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      604800     ; Expire
                                      86400 )    ; Minimum
@   IN  NS  pop3.linux.com.

5  IN  PTR pop3.linux.com.


[root@linux named]# more /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";







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


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



server 192.168.192.254 {
        bogus yes;
        };
[root@linux named]#

please give directions!!

论坛徽章:
0
4 [报告]
发表于 2003-12-12 16:38 |只看该作者

Linux v9 上配DNS问题。

the setup of /etc/resolv.conf
domain linix.com
search  linix.com
nameserver 192.168.192.5


     [root@linux named]# more linux.com.zone

$TTL 86400
@       IN      SOA     linux.com.  root.localhost (
                        5 ; serial
                        28800 ; refresh
                        7200 ; retry
                        604800 ; expire
                        86400 ; ttl
                        )

        IN      NS      linux.com.
        IN      NS      pop3.linux.com.
linux.com.      IN      NS      pop3.linux.com.
192.168.192.5   IN      MX      linux.com.

        IN      NS      192.168.192.5.

[root@linux named]# more 192.168.192.in-addr.arpa
$TTL    86400
@  IN  SOA linux.com.  root.linux.com. (
                                      2003090901 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      604800     ; Expire
                                      86400 )    ; Minimum
@   IN  NS  linux.com.
192.168.192.5   IN      PTR     linux.com.
             5  IN      PTR     linux.com.

[root@linux named]#


[root@linux named]# more /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";







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


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



server 192.168.192.254 {
        bogus yes;
        };
[root@linux named]# nslookup
Note:  nslookup is deprecated and may be removed from future releases.
Consider using the `dig' or `host' programs instead.  Run nslookup with
the `-sil[ent]' option to prevent this message from appearing.
>; linux.com
;; connection timed out; no servers could be reached
>;



please give directions!! tks !

论坛徽章:
0
5 [报告]
发表于 2003-12-12 16:39 |只看该作者

Linux v9 上配DNS问题。

the setup of /etc/resolv.conf
domain linix.com
search  linix.com
nameserver 192.168.192.5


     [root@linux named]# more linux.com.zone

$TTL 86400
@       IN      SOA     linux.com.  root.localhost (
                        5 ; serial
                        28800 ; refresh
                        7200 ; retry
                        604800 ; expire
                        86400 ; ttl
                        )

        IN      NS      linux.com.
        IN      NS      pop3.linux.com.
linux.com.      IN      NS      pop3.linux.com.
192.168.192.5   IN      MX      linux.com.

        IN      NS      192.168.192.5.

[root@linux named]# more 192.168.192.in-addr.arpa
$TTL    86400
@  IN  SOA linux.com.  root.linux.com. (
                                      2003090901 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      604800     ; Expire
                                      86400 )    ; Minimum
@   IN  NS  linux.com.
192.168.192.5   IN      PTR     linux.com.
             5  IN      PTR     linux.com.

[root@linux named]#


[root@linux named]# more /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";







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


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



server 192.168.192.254 {
        bogus yes;
        };

[root@linux named]# service named restart
     named  rndc: connect failed: connection refused

[root@linux named]# ]

[root@linux named]# nslookup
Note:  nslookup is deprecated and may be removed from future releases.
Consider using the `dig' or `host' programs instead.  Run nslookup with
the `-sil[ent]' option to prevent this message from appearing.
>; linux.com
;; connection timed out; no servers could be reached
>;



please give directions!! tks !

论坛徽章:
0
6 [报告]
发表于 2003-12-12 23:16 |只看该作者

Linux v9 上配DNS问题。

有空好好研究研究

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
7 [报告]
发表于 2003-12-13 01:46 |只看该作者

Linux v9 上配DNS问题。

1) firewall 有否放行 dns ?
2) /var/log/messages 說些啥?
3) 要不要試一試我的 script :
http://bbs.chinaunix.net/forum/16/20031206/217331.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP