QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 2933|回复: 32

我的DNS配置文件,请大家帮忙看看,谢谢!

[复制链接]
发表于 2005-9-27 10:13:04 | 显示全部楼层 |阅读模式
我的主机名:server.com
系统:RedHat企业服务器4。0
IP:192.168.38.126
要解析的域为: example.com
下面贴出我的配置文件,请大家看看。

/etc/named.conf

named.conf

//
// named.conf for Red Hat caching-nameserver

//

options {
directory "/var/named";

//dump-file "/var/named/data/cache_dump.db";

statistics-file "/var/named/data/named_stats.txt";

/*

* If there is a firewall between you and nameservers you want

* to talk to, you might need to uncomment the query-source

* directive below. Previous versions of BIND always asked

* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.

*/

// query-source address * port 53;
};

//

// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};

zone "." IN {
type hint;
file "named.ca";
};

zone "localdomain" IN {

type master;

file "localdomain.zone";

allow-update { none; };
};

zone "localhost" IN {

type master;

file "localhost.zone";

allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {

type master;

file "named.local";

allow-update { none; };
};

zone "example.com" IN {

type master;

file "name2ip.conf";

allow-update { none; };
};

zone "38.168.192.in-addr.arpa" IN {

type master;

file "ip2name.conf";

allow-update { none; };
};

zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {

type master;

file "named.ip6.local";

allow-update { none; };
};

zone "255.in-addr.arpa" IN {

type master;

file "named.broadcast";

allow-update { none; };
};

zone "0.in-addr.arpa" IN {

type master;

file "named.zero";

allow-update { none; };
};

include "/etc/rndc.key";
 楼主| 发表于 2005-9-27 10:16:19 | 显示全部楼层
*********************************************************************

name2ip.conf


$TTL 86400
@ IN SOA server.com. root.server.com (


42 ; serial (d. adams)

3H ; refresh

15M ; retry

1W ; expiry

1D ) ; minimum


IN NS server.com.

IN A 192.168.38.1

localhost. IN A 127.0.0.1

www IN A 192.168.38.2

www1 IN A 192.168.38.3
回复

使用道具 举报

 楼主| 发表于 2005-9-27 10:17:54 | 显示全部楼层
*********************************************************************

resolv.conf


domain

nameserver 192.168.38.126

nameserver 202.101.115.55


*********************************************************************
hosts


# Do not remove the following line, or various programs
# that require network functionality will fail.

127.0.0.1 server.com server localhost.localdomain localhost

192.168.38.126 server.com
回复

使用道具 举报

发表于 2005-9-27 10:18:12 | 显示全部楼层
你的dns不好用吗?
回复

使用道具 举报

发表于 2005-9-27 10:21:30 | 显示全部楼层
你的NS服务器到底是192.168.38.126 还是192.168.38.1?
反向解析呢?
你到底要解析server.com还是 example.com ?
问题多多,首先你就没有搞清楚其意义。
回复

使用道具 举报

发表于 2005-9-27 10:24:17 | 显示全部楼层
zone "example.com" IN {

type master;

file "name2ip.conf";

IN NS server.com.

IN A 192.168.38.1
应该是错误
回复

使用道具 举报

 楼主| 发表于 2005-9-27 10:26:12 | 显示全部楼层
这样的,我的主机是server.com   IP  是192.168.38.126
我要解析的域名是: example.com   对应的IP是 192.168.38.1
我现在正向解析还不行,就没有弄反向解析的了!
请你看看!
谢谢!
回复

使用道具 举报

发表于 2005-9-27 10:31:23 | 显示全部楼层
name2ip.conf


$TTL 86400
@ IN SOA server.com. root.server.com (


42 ; serial (d. adams)

3H ; refresh

15M ; retry

1W ; expiry

1D ) ; minimum


IN NS server.com.

IN A 192.168.38.126

localhost. IN A 127.0.0.1

www IN A 192.168.38.2

www1 IN A 192.168.38.3
这样看看,不知道对不对..
回复

使用道具 举报

 楼主| 发表于 2005-9-27 10:41:36 | 显示全部楼层
好的,我试一试。
谢谢您!
回复

使用道具 举报

 楼主| 发表于 2005-9-27 10:57:09 | 显示全部楼层
我试了一下,还是那个问题。
显示:
#nslookup
>www.example.com
Server: 192.168.38.126
Address: 192.168.38.126#53

**server can't find  www.example.com SERVFALL
>

如果使用localhost就可以的。
#nslookup
>localhost
Server: 192.168.38.126
Address: 192.168.38.126#53

Name: localhost
Address: 127.0.0.1
我还能怎么办呢?
谢谢您!
回复

使用道具 举报

发表于 2005-9-27 11:03:39 | 显示全部楼层
www.example.com 没有解析出来
回复

使用道具 举报

发表于 2005-9-27 11:06:50 | 显示全部楼层
host www.example.com
什么反应?
把localhost那行删掉看看
回复

使用道具 举报

发表于 2005-9-27 11:09:50 | 显示全部楼层
1.首先简化你的/etc/named.conf,里面需要有类似这两个:
...
zone  "38.168.192.in-addr.arpa" {
        type master;
        file  "38.168.192.in-addr.arpa.zone";
};

zone  "example.com" {
        type master;
        file   "example.com.zone";
};
...
第一个是反向解析,就是从IP解析到域名。第二个是正向解析,就是从域名解析到IP。
回复

使用道具 举报

 楼主| 发表于 2005-9-27 11:10:37 | 显示全部楼层
host www.example.com
显示:
Host www.example.com not find:2(SERVFAIL).
回复

使用道具 举报

发表于 2005-9-27 11:13:13 | 显示全部楼层
楼上的楼上说的很对
建议你还是重新写你的配置文件
别用默认的改
那样很容易出错的
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-5 01:55 , Processed in 0.096220 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表