由 lanmaster 在 07-18-2003 11:05 发表:
DNS 在起动的时候出现如下提示,是何意
[root@QCY named]# service named restart
停运 named:rndc: connect failed: connection refused
由 lanmaster 在 07-18-2003 11:22 发表:
下面是我DNS的配置文件
named.conf
master.com.zone
0.168.192.in-addr.arpa.zone
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 "/var/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 "master.com" {
type master;
file "/var/named/master.com.zone";
};
zone "0.168.192.in-addr.arpa" {
type master;
file /var/named/0.168.192.in-addr.arpa.zone";
};
master.com.zone 文件配置如下:
$TTL 86400
@ IN SOA master.com. root.localhost (
2 ; serial
28800 ; refresh
7200 ; retry
604800 ; expire
86400 ; ttl
)
@ IN NS ns.master.com.
www IN A 192.168.0.6
0.168.192.in-addr.arpa.zone 文件配置如下:
$TTL 86400
@ IN SOA master.com. root.localhost (
1 ; serial
28800 ; refresh
7200 ; retry
604800 ; expire
86400 ; ttk
)
@ IN NS ns.master.com.
6 IN PTR www.master.com.
大家帮我看一下.我的DNS动去不了是不是跟以下的文件配置有关.请大家帮助指正里内的错误.
成长中的菜鸟!
E-Mail:qcy_[email protected]
QQ :7118899
由 Snoopy 在 07-18-2003 14:10 发表:
是不是用redhat9.0?如果是先kill named再启动看看
或是你看看cat /var/log/message |grep named
And then in the evening light, when the bars of freedom fall
I watch the two of you in the shadows on the wall
How in the darkness steals some of the choices from my hand
Then will I begin to under
由 lanmaster 在 07-18-2003 15:57 发表:
我用的系统是RH8。0
各位老兄帮帮忙吧。
成长中的菜鸟!
E-Mail:qcy_[email protected]
QQ :7118899
由 lanmaster 在 07-18-2003 16:17 发表:
我在启动的日志文件里看到了这个.
Jul 18 16:00:28 QCY named[570]: zone 0.168.192.in-addr.arpa/IN: sending notifies (serial 1)
Jul 18 16:00:28 QCY named[570]: zone master.com/IN: sending notifies (serial 3)
问题这 是什么意思.
成长中的菜鸟!
E-Mail:qcy_[email protected]
QQ :7118899
由 Glue 在 07-18-2003 18:39 发表:
你是不是忘记include rndckey;
-_-
由 Snoopy 在 07-18-2003 19:13 发表:
include rndckey??它上面不是有吗?
And then in the evening light, when the bars of freedom fall
I watch the two of you in the shadows on the wall
How in the darkness steals some of the choices from my hand
Then will I begin to under
由 lanmaster 在 07-20-2003 13:32 发表:
大家快帮我解决一下吧.我已经弄了好几天了,都是这样.
一样的配置文件,一会能启动.一会又启动失败.
成长中的菜鸟!
E-Mail:qcy_[email protected]
QQ :7118899
由 Snoopy 在 07-20-2003 13:44 发表:
> quote:
>
> * * *
>
> 最初由 lanmaster 发表
>
> **我在启动的日志文件里看到了这个.
>
> Jul 18 16:00:28 QCY named[570]: zone 0.168.192.in-addr.arpa/IN: sending notifies (serial 1)
>
> Jul 18 16:00:28 QCY named[570]: zone master.com/IN: sending notifies (serial 3)
>
>
>
> 问题这 是什么意思. **
>
> * * *
上面这两句显示的到底是什么意思呢?
And then in the evening light, when the bars of freedom fall
I watch the two of you in the shadows on the wall
How in the darkness steals some of the choices from my hand
Then will I begin to under
由 lanmaster 在 07-20-2003 14:12 发表:
我想问一下.DNS配置完成之后需不需要重新起动机器才能好使.
成长中的菜鸟!
E-Mail:qcy_[email protected]
QQ :7118899
由 Snoop