[QUOTE=techmom50;5030344]
Code:
Sep 25 13:02:46 tux dhcpd: uid lease 192.168.1.175 for client 68:b5:99:40:e8:0d is duplicate on 192.168.1.0/24
Sep 25 13:02:46 tux dhcpd: DHCPREQUEST for 192.168.1.112 from 68:b5:99:40:e8:0d via eth0
Sep 25 13:02:46 tux dhcpd: DHCPACK on 192.168.1.112 to 68:b5:99:40:e8:0d via eth0
Sep 25 13:02:46 tux dhcpd: Added new forward map from ColorLaserJet.pacificcabinets.com. to 192.168.1.112
Sep 25 13:02:46 tux dhcpd: Added reverse map from 112.1.168.192.1.168.192.in-addr.arpa. to ColorLaserJet.pacificcabinets.com.
Sep 25 13:02:53 tux dhcpd: DHCPREQUEST for 192.168.1.43 from bc:30:5b:e2:eb:6d via eth0
Sep 25 13:02:53 tux dhcpd: DHCPACK on 192.168.1.43 to bc:30:5b:e2:eb:6d via eth0
Sep 25 13:02:53 tux dhcpd: Added reverse map from 43.1.168.192.1.168.192.in-addr.arpa. to Coeus.PacificCabinets.com
[/code]
DHCPD.CONF
[Code]Modified 9/18/2013 to address some DDNS update issues
# dhcpd.conf created Sept. 9, 2013
# Address Pool
#192.168.1.1 192.168.1.25; # IP Addresses reserved for Switches, Routers & WiFi Devices (exclude from distribution)
#192.168.1.26 192.168.1.49; # IP Addresses reserved for Computers (exclude from distribution)
#192.168.1.50 192.168.1.65; # IP Addresses reserved for Servers (exclude from distribution)
#192.168.1.66. 192.168.1.109; # IP Addresses reserved for Computers (exclude from distribution)
#192.168.1.110 192.168.1.119; # IP Addresses reserved for Printers (exclude from distribution)
#192.168.1.120 192.168.1.219 # IP Addresses ranges for distribution
#192.168.1.220 192.168.1.230; # IP Addresses reserved for Telecom (exclude from distribution)
#192.168.1.236 192.168.249; # IP addresses reserved for Security (exclude from distribution)
#192.168.1.251 192.168.1.255; # IP Addresses reserverd for Servers (exclude from distribution)
#dynamic DNS updates
ddns-update-style interim;
#ddns-ttl 1800;
ddns-domainname "pacificcabinets.com.";
ddns-rev-domainname "1.168.192.in-addr.arpa.";
ddns-updates on;
authoritative;
default-lease-time 600;
max-lease-time 7200;
update-static-leases on;
allow unknown-clients;
allow bootp;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.120 192.168.1.219;
option netbios-name-servers 192.168.1.50;
option netbios-node-type 8;
#don't let clients modify their own A records
allow client-updates;
#options
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option domain-name "pacificcabinets.com";
option domain-name-servers 192.168.1.50;
option routers 192.168.1.52;
option ntp-servers 192.168.1.53;
update-conflict-detection false;
key "rndc-key" {
algorithm hmac-md5;
secret "secret";
};
zone PacificCabinets.com {
primary tux.pacificcabinets.com;
key "rndc-key";
}
zone 1.168.192.in-addr.arpa {
primary tux.pacificcabinets.com;
key "rndc-key";
}
zone 127.in-addr.arpa {
primary 127.0.0.1;
key "rndc-key";
}
}
host idontknow {
hardware ethernet xx:xx:xx:xx:xx:xx;
fixed-address 192.168.1.xxx;
}