LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   DHCPd errors in syslog (https://www.linuxquestions.org/questions/linux-networking-3/dhcpd-errors-in-syslog-182136/)

APEX 05-16-2004 02:51 PM

DHCPd errors in syslog
 
Hi, I am getting this error in my syslog file every 10 minutes...

dhcpd: if IN A GATEWAY.domain.com rrset doesn't exist add 600 IN A GATEWAY.domain.com 10.0.0.3: timed out

Here is my dhcpd.conf file...

Code:

default-lease-time 1200;
max-lease-time 9200;
ddns-update-style ad-hoc;
option subnet-mask 255.0.0.0;
option broadcast-address 10.0.0.255;
option routers 10.0.0.1;
option domain-name-servers 10.0.0.1;
option domain-name "domain.com";
subnet 10.0.0.0 netmask 255.0.0.0 {
range 10.0.0.2 10.0.0.4;
}

Here is my named.conf file...

Code:

options {
        directory "/var/named";
};

logging {
        category lame-servers { null; };
};

zone "." {
        type hint;
        file "caching/root.hints";
};

zone "localhost" IN {
        type master;
        file "caching/localhost";
        allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {
        type master;
        file "caching/127.0.0";
        allow-update { none; };
};

zone "domain.com" IN {
        type master;
        file "primary/domain.com";
        allow-update { none; };
};


zone "57.28.65.in-addr.arpa" IN {
        type master;
        file "primary/65.28.45";
        allow-update { none; };
};

Any ideas why I am getting this error in syslog??


All times are GMT -5. The time now is 09:50 PM.