[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

(Bind) Namensauflösung im lokalen Netzwerk



Hallo,

ich habe hier im lokalen Netzwerk einen bind9 zur Namensauflösung
laufen. Läuft eigentlich auch (fast) alles wie gewünscht, bis auf
sporadische Einwahlen zur Namensauflösung einiger lokalen Rechnernamen.

Im Netzwerk laufen Debian testing/unstable und Windows XP Rechner. Ein
Rechner mit Debian fungiert als Router/DNS/DHCP und verwaltet Mail und
News, ein weiterer als Fileserver für die Windowsrechner und ein
weiterer ist als Workstation eingerichtet. Über DHCP bekommen alle
Rechner feste IP- Adressen zugewiesen. Der dhcpd ist im grossen
eigentlich nur da, um virtuelle Rechner (VmWare und Virtual PC zu
Testzwecken) zu versorgen.

Nun wird alle 3-4 Stunden eine Namensauflösung für die 3 Rechner mit
Debian ausgelöst, von den Windowsrechner habe ich nichts in den Logs
(tcpdump von ppp0) gefunden. Aufgefallen ist mir das ganze erst vor
einigen Tagen und ich finde einfach nicht heraus wie ich das abstellen
kann. Google habe ich auch schon befragt, aber keinen Erfolg gehabt.

Für einen Lösungsweisenden Tipp wäre ich dankbar.

Anbei noch die Konfigurationsdateien vom bind:

##### named.conf #####
include "/etc/bind/named.conf.options";
zone "." {
	type hint;
	file "/etc/bind/db.root";
};
zone "localhost" {
	type master;
	file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
	type master;
	file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
	type master;
	file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
	type master;
	file "/etc/bind/db.255";
};
zone "com" { type delegation-only; };
zone "net" { type delegation-only; };
include "/etc/bind/named.conf.local";
############################################################

##### named.conf.options #####
options {
	directory "/var/cache/bind";
	random-device "/dev/random";
	allow-query {
		localhost;
		localnets;
	};
	allow-transfer {
		none;
	};
	listen-on {
		127.0.0.1;
		192.168.1.0/24;
	};
	dialup yes;
};
############################################################

##### named.conf.local #####
acl "dhcp-server" {
  localhost;
};
acl "localnet" {
  192.168.1.0/24;
};
zone "sole.local" {
  type master;
  file "/etc/bind/master/db.sole";
  allow-update {
    dhcp-server;
    key "rndc-key";
  };
};
zone "1.168.192.in-addr.arpa" {
  type master;
  file "/etc/bind/master/db.192.168.1";
};
include "/etc/bind/rndc.key";
############################################################

##### master/db.sole #####
$ORIGIN .
$TTL 259200	; 3 days
sole.local		IN SOA	dns.sole.local. root.sole.local. (
				2004092201 ; serial
				86400      ; refresh (1 day)
				3600       ; retry (1 hour)
				604800     ; expire (1 week)
				300        ; minimum (5 minutes)
				)
			NS	dns.sole.local.
			MX	10 192.168.1.9.sole.local.
			TXT	"Michel Sole Home"
$ORIGIN sole.local.
deimos			A	192.168.1.80
jupiter			A	192.168.1.20
mars			A	192.168.1.60
pluto			A	192.168.1.50
saturn			A	192.168.1.9
venus			A	192.168.1.30

und zusätzlich einige CNAME- Einträge

############################################################

##### master/db.192.168.1 #####
;
; primary reverse file for local 192.168.1 network
;
$TTL 3D
@	IN	SOA	dns.sole.local.  root.sole.local. (
				2004090401	; serial
				86400		; refresh (1d)
				900		; retry (15m)
				604800		; expire (1w)
				300		; negative cache ttl (5min)
				)
;
; $ORIGIN 1.168.192.in-addr.arpa.
;
	IN	NS	dns.sole.local.
9	IN	PTR	saturn.sole.local.
20	IN 	PTR	jupiter.sole.local.
30	IN 	PTR	venus.sole.local.
50	IN 	PTR	pluto.sole.local.
60	IN 	PTR	mars.sole.local.
80	IN 	PTR	deimos.sole.local.


Gruss und vielen Dank, Michel
-- 



Reply to: