|
|
我在redhat9上配置好dns后,win2000的客户端无法解析dns,日志如下:
Nov 16 10:41:28 linux dhcpd: if IN A WIN2K-CLIENT.test.com domain doesn't exist add 10800 IN A WIN2K-CLIENT.test.com 192.168.37.160 add 10800 IN TXT WIN2K-CLIENT.test.com "31c710af9272e858776d2a5a4dd8a31487": not a zone.
redhat的ip:192.168.37.128
win2000的ip:192.168.37.160(通过redhat的dhcp获得),机器名为“win2k-client”
## 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";
zone "0.0.127.in-addr.arpa" {
type master;
file "0.0.127.in-addr.arpa.zone";
};
zone "37.168.192.in-addr.arpa" {
type master;
file "37.168.192.in-addr.arpa.zone";
};
zone "localhost" {
type master;
file "localhost.zone";
};
zone "test.com" {
type master;
file "test.com.zone";
};
$TTL 86400
@ IN SOA linux.test.com. root.localhost (
4 ; serial
28800 ; refresh
7200 ; retry
604800 ; expire
86400 ; ttk
)
@ IN NS linux.test.com.
128 IN PTR linux.
$TTL 86400
@ IN SOA linux.test.com. root.localhost (
5 ; serial
28800 ; refresh
7200 ; retry
604800 ; expire
86400 ; ttl
)
IN NS linux.test.com
linux IN A 192.168.37.128
|
|