Met RH71 werkte het automatisch updaten van de dns perfect, maar met debian 3.0 krijg ik het niet aan de praat
Het is vast iets heel doms
maar ik kom er niet uit... ik krijg de volgende fout in m'n log:
distro: debian 3.0r0
kernel: 2.4.18
named.conf
dhcpd.conf
Iemand een idee? Bij voorbaat dank.
code:
1
2
| Sep 18 08:26:56 server01 dhcpd: if glival.lan IN A rrset doesn't exist add glival.lan 500000 IN A 192.168.0.254: timed out. |
distro: debian 3.0r0
kernel: 2.4.18
named.conf
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| options {
directory "/var/cache/bind";
// blabla commentaar
auth-nxdomain no; # conform to RFC1035
};
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 "0.168.192.in-addr.arpa" {
type master;
file "/etc/bind/db.192.168.0";
allow-update { localhost; };
};
zone "lan" {
type master;
file "/etc/bind/db.lan";
allow-update { localhost; };
}; |
dhcpd.conf
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| ddns-update-style ad-hoc;
log-facility local7;
subnet 192.168.0.0 netmask 255.255.255.0 {
option domain-name "lan";
option domain-name-servers 192.168.0.1;
option subnet-mask 255.255.255.0;
default-lease-time 1000000;
max-lease-time 1000000;
range 192.168.0.20 192.168.0.254;
option broadcast-address 192.168.0.255;
option routers 192.168.0.1;
option domain-name "lan";
option domain-name-servers 192.168.0.1;
option subnet-mask 255.255.255.0;
ddns-updates on;
host glival {
hardware ethernet xx:xx:xx:xx:xx:xx;
fixed-address glival.lan;
}
} |
Iemand een idee? Bij voorbaat dank.