天啊,为什么要这样玩我,救我就帮我吧!!!!

天啊,为什么要这样玩我,救我就帮我吧!!!!

我这样配置一个子域,到底错在哪了

named.conf
options {
        directory "/var/named";
};

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

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 "jjtest.com" IN {
        type master;
        file "jjtest.com";
};


在jjtest.com文件
$TTL        86400
@       IN      SOA     jjtest.com. root.jjtest.com.  (
                                      1997022700 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      3600000    ; Expire
test     IN    A        192.168.10.6
www      IN    A   202.99.105.8

为什么jjtest.com能解析,而test.jjtest.com和www.jjtest.com不能解析
      
在jjtest.com文件
$TTL 86400
@ IN SOA jjtest.com. root.jjtest.com. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
             )
@  IN  NS  jjtest.com.
test IN A 192.168.10.6
www IN A 202.99.105.8
还有错误的话,可以在/var/log/messages里看看错误信息.