folgendes Problem, irgendwie klappt bei mir kein dynamisches DNS Update:
hier meine configs:
dhcpd.conf:
Code: Alles auswählen
authoritative;
ddns-updates on;
ddns-update-style interim;
ddns-domainname "u11.local";
DHCPD_INTERFACE = "eth0";
update-static-leases true;
server-identifier antihero.u11.local;
default-lease-time 48000;
max-lease-time 48000;
option domain-name"u11.local";
option domain-name-servers 192.168.3.11;
option routers 192.168.3.11;
option subnet-mask 255.255.255.0;
option netbios-name-servers 192.168.3.11;
option netbios-node-type 8;
key u11.local {
algorithm HMAC-MD5;
secret xxx;
}
zone u11.local. {
primary 127.0.0.1;
key u11.local;
}
zone 3.168.192.in-addr.arpa {
primary 127.0.0.1;
key u11.local;
}
# The other subnet that shares this physical network
subnet 192.168.3.0 netmask 255.255.255.0 {
range 192.168.3.120 192.168.3.200;
}
group {
use-host-decl-names on ;
}
host host1 {
hardware ethernet 00:0B:6A:F6:2D:CF;
allow booting;
fixed-address 192.168.3.1;
}
host host2 {
hardware ethernet 00:0e:a6:3d:7b:38;
allow booting;
fixed-address 192.168.3.116;
}
Code: Alles auswählen
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";
};
key u11.local {
algorithm HMAC-MD5;
secret xxx;
};
zone "u11.local" {
type master;
file "db.u11.local";
zone "3.168.192.in-addr.arpa" {
type master;
file "db.192.168.3";
allow-update { key u11.local;};
notify yes;
};
include "/etc/bind/named.conf.local";
Code: Alles auswählen
options {
directory "/etc/bind";
// If there is a firewall between you and nameservers you want
// to talk to, you might need to uncomment the query-source
// directive below. Previous versions of BIND always asked
// questions using port 53, but BIND 8.1 and later use an unprivileged
// port by default.
// query-source address * port 53;
listen-on port 53 {192.168.3.11;};
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
// forwarders {
// 194.97.173.124;
// };
listen-on-v6 { none; };
auth-nxdomain no; # conform to RFC1035
};
der key ist natürlich nicht xxx ...
named und dhcpd starten auch ohne Probleme, nur:
Code: Alles auswählen
dhcpd: Unable to add forward map from host2.u11.local to 192.168.3.116: connection refused
irgendwelche ideen?
ich sehe langsam den wald vor lauter bäumen nichtmehr.
Danke im Vorraus[/code]