求救:关于dns?

求救:关于dns?

配置dns后,用nslookup命令出现如下提示:
Note :nslookup is deprecated and mag be remored from future releases.
     lonsider using the 'dig' or 'host' programs instead. Run nslookup
  with the '-sil[ent]' option to prevent this message from   appearing.
>rui.test.com
server:192.168.168.139
Address:192.168.168.139#53
**server can't find rui.test.com.   :SERVFAIL
>192.168.168.139
server:192.168.168.139
address:192.168.168.139#53
**server can't 139.168.168.192.in-addr.arpa. :SERVFAIL


有请高手帮忙,不胜感激.小弟等着急用.
      
由于你解析的地址不属于你所指向DNS服务器所建立的DNS域内,所以会出现这种错误信息,你可以配置你的DNS服务器的上一次DNS,/etc/resolv.conf      
我的/etc/resolv.conf 为domain test.com
                       search test.com
                       nameserver 192.168.168.139
请问那里错 了?帮帮我      
这文件没有问题.请把其他的文件贴出来,看看      
/etc/named.conf

// generated by named-bootconf.pl

options {
        directory "/var/named";
        /*
         * 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 "db.cache";
};

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; };
};

include "/etc/rndc.key";

zone "test.linux.com" {
      type master;
      file "test.linux.com.hosts";
};

zone "168.168.192.in-addr.arpa" {
      type master;
      file "test.linux.com.ip";
};

/etc/hosts

# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1       localhost.localdomain   localhost
192.168.168.119 test2000
192.168.168.139 rui.test.linux.com
[root@rui root]# cat /etc/named.boot
diretory /var/named
primary test.linux.com  /var/named/test.linux.com.hosts
primary 0.0.127.IN-ADDR.ARPA /var/named/named.local
primary 168.168.192.IN-ADDR.ARPA /var/named/test.linux.com.ip
cache /var/named/db.cache
[root@rui root]# cat /etc/resolv.conf
domain test.linux.com
search test.linux.com
nameserver 192.168.168.139
[root@rui root]# cat /var/named/test.linux.com.hosts
@       IN      SOA     rui.test.linux.com. root.rui.test.linux.com. (
                        20020415
                        28800
                        14400
                        3600000
                        86400 )

www.test.linux.com.     IN      CNAME   rui.test.linux.com.
ftp.test.linux.com.     IN      CNAME   rui.test.linux.com.
rui.test.linux.com      IN      A       192.168.168.139
test.linux.com. IN      NS      rui.test.linux.com.
[root@rui root]# cat /var/named/test.linux.com.ip
@        IN       SOA       rui.test.linux.com.    root.rui.test.linux.com.
(                           20020408
                            28800
                            14400
                            3600000
                            86400  )
test.linux.com.         IN       NS        rui.test.linux.com.
139     IN      PTR     rui.test.linux.com.

/var/named/named.local

@        IN       SOA       rui.test.linux.com.    root.rui.test.linux.com.
(                           20020408
                            28800
                            14400
                            3600000
                            86400  )
test.linux.com  IN       NS        rui.test.linux.com.
1               IN      PTR     localhost      
不懂 这是大型网络么?      
这个文件需要修改吗,
我的就没有修改,
直接就是
$TTL    86400
@       IN      SOA     localhost. root.localhost.  (
                                      1997022700 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      3600000    ; Expire
                                      86400 )    ; Minimum
              IN      NS      localhost.

1       IN      PTR     localhost.      
不知是不是  网卡没装好 刚刚从网吧回来那里的机器认出两个网卡
因此胡乱回应169.238.9.134

删掉重装OK
:w