求助 Dns 反向解析问题

求助 Dns 反向解析问题

求助 DNS 反向解析问题
这是/etc/named.conf 中的设置

zone "mydns.com" IN {
        type master;
        file "mydns.zone";
        allow-update { none; };
};

zone "1.168.192.in-addr.arpa" IN {
        type master;
        file "named.mydns";
        allow-update { none; };
};


这是 named.mydns 中的设置

$TTL    86400
@       IN      SOA     mydns.com.  root.localhost.  (
                                      1997022700 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      3600000    ; Expire
                                      86400 )    ; Minimum
      IN      NS linux.mydns.com
1 ptr linux

其中正向解析正确
但反向的提示为什么不是linux.mydns.com而是linux.1.168.192.in-addr.arpa.

[root@localhost named]# nslookup 192.168.1.1
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.
Server:         192.168.1.1
Address:        192.168.1.1#53

1.1.168.192.in-addr.arpa        name = linux.1.168.192.in-addr.arpa.

是不是必须使用
1 ptr linux.mydns.com.
//这样才可以,难道1 ptr linux这样的设置不能得到正确的结果吗!      
把1 ptr linux 去掉看看      
我的意思是为什么这样的结果不能得到linux.mydns.com 而 1 PRT linux.mydns.com.

不是拿不拿掉的问题