centos 5.3 dns-server und windows 7

G

gnoovy

Eroberer
hi leutz,

1)
mir ist aufgefallen, dass windows 7 nur die forward-lookup-zone updated, nicht jedoch die reverse-lookup-zone. Bei einem Windows-XP-Client funktioniert jedoch beide Zonen-Updates.
Muss ich hier an Windows 7 noch etwas ändern?

Anbei mal meine Linux Konfigurationsdateien:

/etc/named.conf

Code:
options {
	directory "/etc";
	pid-file "/var/run/named/named.pid";
	recursion yes;
	allow-recursion {
		127.0.0.1;
		192.168.178.0/24;
		};
	forwarders {
		192.168.178.254;
		};
	query-source address 192.168.178.250 port 53;
        allow-query {
        127.0.0.1;
        192.168.178.0/24;
          };
	};

zone "." {
	type hint;
	file "/etc/db.cache";
	};

zone "linuxnet.local" {
	type master;
	file "/var/named/slaves/linuxnet.local.hosts";
	allow-update { 192.168.178/24; };
        };
zone "178.168.192.in-addr.arpa" {
	type master;
	file "/var/named/slaves/192.168.178.rev";
	allow-update { 192.168.178/24; };
        };


linuxnet.local.hosts

Code:
$ORIGIN .
$TTL 38400	; 10 hours 40 minutes
linuxnet.local		IN SOA	centos01.linuxnet.local. root.linuxnet.local. (
				1252861422 ; serial
				10800      ; refresh (3 hours)
				3600       ; retry (1 hour)
				604800     ; expire (1 week)
				38400      ; minimum (10 hours 40 minutes)
				)
			NS	centos01.linuxnet.local.
$ORIGIN linuxnet.local.
centos01		A	192.168.178.250
$TTL 1200	; 20 minutes
CLIENT1			A	192.168.178.201
client2			A	192.168.178.199

192.168.178.rev

Code:
$ORIGIN .
$TTL 38400	; 10 hours 40 minutes
178.168.192.in-addr.arpa IN SOA	centos01.linuxnet.local. root.linuxnet.local. (
				1252861564 ; serial
				10800      ; refresh (3 hours)
				3600       ; retry (1 hour)
				604800     ; expire (1 week)
				38400      ; minimum (10 hours 40 minutes)
				)
			NS	centos01.linuxnet.local.
$ORIGIN 178.168.192.in-addr.arpa.
$TTL 1200	; 20 minutes
199			PTR	client2.linuxnet.local.
$TTL 38400	; 10 hours 40 minutes
250			PTR	centos01.linuxnet.local.


2) Wieso kann named bei einem ddns-update die jnl-Dateien nur erstellen, wenn sich diese im slaves-Ordner befinden? Habe auf den Ordner /var/named der Gruppe named rekursiv Vollzugriff gegeben.
 
Zuletzt bearbeitet:

Ähnliche Themen

Samba 4.1.9 mit Bind 9.9.4

falsche DNS-Auflösung in Centos

falsche DNS-Auflösung in Centos

centos 5.3 dns-server findet sich selber nicht

Fedora Core9: Dynamische DNS-Updates über DHCP einrichten

Zurück
Oben