LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   Unable to add forward map (https://www.linuxquestions.org/questions/linux-networking-3/unable-to-add-forward-map-337387/)

durwin 06-26-2005 03:20 PM

Unable to add forward map
 
I have looked and tried to match like subjects to my installation, but I have been unsuccessful. My FC3 installation worked perfect. Then I upgraded to FC4. Now I get the following message. The odd thing is, all the files are the same as when FC3 was installed (I backed them up and did a diff on them). Only idea I have is, default or configuration has changed between FC3 and FC4. DNS works, and DHCP, but I can't get DDNS to work. File attributes in /var/named/chroot/var/named and all directories leading up to them are same as in FC3

Thank you for your time,

Durwin

Jun 26 13:24:41 bayou dhcpd: DHCPDISCOVER from 00:50:da:23:28:c7 via eth0
Jun 26 13:24:42 bayou dhcpd: DHCPOFFER on 192.168.4.99 to 00:50:da:23:28:c7 (tweetie) via eth0
Jun 26 13:24:42 bayou dhcpd: Unable to add forward map from tweetie.acadia.land to 192.168.4.99: timed out
Jun 26 13:24:42 bayou dhcpd: DHCPREQUEST for 192.168.4.99 (192.168.4.100) from 00:50:da:23:28:c7 (tweetie) via eth0
Jun 26 13:24:42 bayou dhcpd: DHCPACK on 192.168.4.99 to 00:50:da:23:28:c7 (tweetie) via eth0


//
// named.conf for Red Hat caching-nameserver
//

options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
/*
* 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 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};

//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};

zone "." IN {
type hint;
file "named.ca";
};

zone "localdomain" IN {
type master;
file "localdomain.zone";
allow-update { none; };
};

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

zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};

zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {
type master;
file "named.ip6.local";
allow-update { none; };
};

zone "255.in-addr.arpa" IN {
type master;
file "named.broadcast";
allow-update { none; };
};

zone "0.in-addr.arpa" IN {
type master;
file "named.zero";
allow-update { none; };
};

zone "acadia.land" IN {
type master;
file "acadia.land";
notify no;
# allow-update { localhost; };
allow-update { localhost; 192.168.4/24; };
};

zone "4.168.192.in-addr.arpa" {
type master;
file "192.168.4";
notify no;
# allow-update { localhost; };
allow-update { localhost; 192.168.4/24; };
};


# dhcpd.conf
authoritative;

ddns-update-style interim;
ddns-updates on;
ddns-domainname "acadia.land";
update-static-leases on;
allow client-updates;

subnet 192.168.4.0 netmask 255.255.255.0 {
option routers 192.168.4.1;
option subnet-mask 255.255.255.0;

option domain-name "acadia.land";
option domain-name-servers 192.168.4.100,64.42.128.50,129.121.254.1;


option time-offset -25200; # Mountain Standard Time

range dynamic-bootp 192.168.4.2 192.168.4.99;
default-lease-time 172800;
max-lease-time 172800;
}


All times are GMT -5. The time now is 05:26 AM.