Re: [gentoo-user] DDNS Problem

2006-03-15 Thread Alexander Kirillov
I am facing problems in configuring DDNS with dhcpd. When i'm rebooting 
linux machine, it is getting dynamically ip address from linux server 
but no dynamic dns updates are there. Also when i renew ip address of 
windows 2000 prof, it not getting ip address from linux dhcp server. 


You should explicitly allow updates in named.conf and
make some directories and zone files writable by bind.
Read relevant parts of BIND Administrator Reference Manual.
You may also want to add more logging options to named.conf
and there should be enough info in syslogs to troubleshoot
the problem you're having.

HTH

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] DDNS Problem

2006-03-15 Thread jarry
Hiren Dave [EMAIL PROTECTED] wrote:

 I am facing problems in configuring DDNS with dhcpd. When i'm rebooting
 linux machine, it is getting dynamically ip address from linux server but
 no dynamic dns updates are there.

I think you must allow dynamic updates by allow-update or update-policy
in bind's zone-files...

And one more thing: for every ip from your dyn-ip pool I would
set very short ttl/expire in your zone-files. Otherwise caching-clients
would get know too late, that there was a change in ip/dn assignment...

Jarry

-- 
Echte DSL-Flatrate dauerhaft für 0,- Euro*!
Feel free mit GMX DSL! http://www.gmx.net/de/go/dsl
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] DDNS Problem

2006-03-15 Thread Hiren Dave
Hi,

 I think you must allow dynamic updates by allow-update or update-policy in bind's zone-files...
Here is my named.conf file which may help you solving my problem

named.conf on server1.guru.com

# Configured by Hiren Dave on 07th March 2006options {directory /var/named;dump-file /var/named/data/cache_dump.db;statistics-file /var/named/data/named_stats.txt;
allow-transfer { 192.168.0.3; };allow-query { 192.168.0.0/24; localhost; };allow-recursion { 192.168.0.0/24
; localhost; };};
controls {inet 127.0.0.1 allow { localhost; } keys { rndckey; };};
logging {category dnssec{ security_log; };category update{ security_log; };category security{ security_log; };
channel security_log {file /var/named/dns-security.log versions 5 size 20m;print-time yes;print-category yes;print-severity yes;severity info;};};
//Root server hintszone . IN { type hint;file named.ca;};
zone localhost IN {type master;file localhost.zone;};
zone 0.0.127.in-addr.arpa IN {type master;file 127.0.0.zone;};
acl dhcp-server {192.168.0.2;};
acl dhcp-clients {192.168.0/24;};
zone guru.com IN {type master;file guru.com.zone;allow-query { any; };allow-update { dhcp-clients; };};
zone 0.168.192.in-addr.arpa IN {type master;file 0.168.192.zone;allow-query { any; };allow-update { dhcp-clients; };};
#include /etc/rndc.key;
##END#

Hiren Dave
On 3/15/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
Hiren Dave [EMAIL PROTECTED] wrote: I am facing problems in configuring DDNS with dhcpd. When i'm rebooting
 linux machine, it is getting dynamically ip address from linux server but no dynamic dns updates are there.I think you must allow dynamic updates by allow-update or update-policy
in bind's zone-files...And one more thing: for every ip from your dyn-ip pool I wouldset very short ttl/expire in your zone-files. Otherwise caching-clientswould get know too late, that there was a change in ip/dn assignment...
Jarry--Echte DSL-Flatrate dauerhaft für 0,- Euro*!Feel free mit GMX DSL! http://www.gmx.net/de/go/dsl--
gentoo-user@gentoo.org mailing list