LINUX.ORG.RU
ФорумAdmin

bind9+dhcp3-server


0

0

Доброго времени суток.

Настроил сабжевую связку, dhcpd выдает адреса, bind ресольвит имена. Но файлы зон не обновляются, bind пишет в лог вот что:

09-Oct-2007 16:37:03.287 update: info: client 192.168.0.200#2390: updating zone '****.ru/IN': update unsuccessful: ****.****.ru/A: 'RRset exists (value dependent)' prerequisite not satisfied (NXRRSET)

Подскажите в чем проблема?

Если надо могу выложить конфиги.

Вот конфиги:

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";
};
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.logging";



named.conf.options:

options {
        directory "/etc/bind";
        pid-file "/var/run/bind/run/named.pid";
        forwarders {
            212.188.4.10;
            195.34.32.116;
        };
        listen-on {
            192.168.0.251;
            127.0.0.1;
        };
};



named.conf.local:

 key DHCP_UPDATER {
            algorithm hmac-md5;
            secret "*****************==";
            };

    zone "****.ru" {
            type master;
            file "/etc/bind/db.****.ru";
            allow-update { key DHCP_UPDATER; };
            notify no;
            };
    zone "0.168.192.in-addr.arpa" {
            type master;
            file "/etc/bind/db.****.ru.rev";
            allow-update { key DHCP_UPDATER; };
            };

named.conf.logging:

logging {
        channel update_debug {
            file "/var/log/named-update.log";
            print-category yes;
            print-severity yes;
            print-time yes;
            };
        channel security_info {
            file "/var/log/named-auth.log";
            print-category yes;
            print-severity yes;
            print-time yes;
            };
        category update { update_debug; };
        category security { security_info; };
};

Morphine
() автор топика
Ответ на: комментарий от Morphine

dhcpd.conf:

option domain-name "****.ru";
option domain-name-servers ns.****.ru;
default-lease-time 720000;
max-lease-time 720000;
min-lease-time 720000;
authoritative;
ddns-update-style ad-hoc;

key DHCP_UPDATER {
        algorithm nmac-md5;
        secret "************==";
};
zone ****.ru. {
        primary 127.0.0.1;
        key DHCP_UPDATER;
}
zone 0.168.192.in-addr-arpa. {
        primary 127.0.0.1;
        key DHCP_UPDATER;
}
log-facility local7;

subnet 192.168.0.0 netmask 255.255.255.0 {
        range 192.168.0.50 192.168.0.99;
        range 192.168.0.150 192.168.0.200;
        option routers 192.168.0.4;
        option subnet-mask 255.255.255.0;
#       option netbios-name-servers 192.168.0.251;
#       option netbios-dd-server 192.168.0.251;
#       option  netbios-node-type 8;
        option broadcast-address 192.168.0.255;
#       option ntp-server 192.168.0.251;
}

Morphine
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.