Networking Forums

Networking Forums > Computer Networking > Linux Networking > dhcp ddns not working for fixed-address?

Reply
Thread Tools Display Modes

dhcp ddns not working for fixed-address?

 
 
Thomas Jachmann
Guest
Posts: n/a

 
      08-22-2003, 03:43 PM
I have one subnet containing one host with a fixed address and two address
pools for dynamic assignment (see my dhcpd.conf below). Everything works,
the clients get their IPs, DHCP registers the IPs with DNS, the fixed
address host gets the address I assigned to it. But DHCP doesn't register
the IP for that host, but only for the clients that get dynamically chosen
IPs. Is this default behaviour? Can I change this? Is anything wrong with my
setup?

Regards,
Thomas

This is my dhcpd.conf:

ddns-update-style interim;
ddns-domainname <domain name>;
ignore client-updates;
update-optimization false;

option domain-name <domain name>;
option domain-name-servers <dns ip>;
option ntp-servers <ntp ip>;

# one week
default-lease-time 604800;
# four weeks
max-lease-time 2419200;

authoritative;

class "servers" {
match if <condition>;
}

subnet 10.10.0.0 netmask 255.255.0.0 {
option subnet-mask 255.255.0.0;
option routers <router ip>;

# servers with fixed ip addresses
host <fixed ip host> {
hardware ethernet <mac address>;
fixed-address 10.10.5.100;
}

# dynamic server pool
pool {
range 10.10.5.200 10.10.5.240;
allow members of "servers";
}

# workstation pool
pool {
range 10.10.100.100 10.10.100.199;
deny members of "servers";
}
}

key dhcp {
algorithm HMAC-MD5;
secret <secret>;
};

zone MINDMATTERS. {
primary <dns ip>;
key dhcp;
}

zone 100.10.10.in-addr.arpa. {
primary <dns ip>;
key dhcp;
}

zone 5.10.10.in-addr.arpa. {
primary <dns ip>;
key dhcp;
}


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Webmin, DHCP+DNS (DDNS) Dungeon Dave Linux Networking 2 04-27-2009 10:06 AM
DDNS Update Over-writes DHCP Registered address? Cliff Windows Networking 0 09-22-2008 10:08 AM
DHCP, DNS, DDNS Question Richard Perry Windows Networking 3 05-23-2006 06:05 AM
ISC dhcp & bind9 ddns problem Cousin Scuzzy Linux Networking 0 03-06-2006 11:02 PM
ICS not working correctly - DHCP address not provided paulfoel Wireless Internet 0 03-08-2005 03:24 PM



1 2 3 4 5 6 7 8 9 10 11