You should check your dhcpd.conf file, a standard install would have a file no longer than 30 - 35 lines, so I would say your file is corrupted or some template process was done in a wrong way (?)
I extracted this, hope you find it usefull
subnet 192.168.1.0 netmask 255.255.255.0
{
option broadcast-address 192.168.1.255;
deny bootp;
option domain-name "domain.ext";
option domain-name-servers 192.168.1.1;
default-lease-time 86400;
max-lease-time 604800;
option netbios-dd-server 192.168.1.1;
option netbios-name-servers 192.168.1.1;
option netbios-node-type 8;
option subnet-mask 255.255.255.0;
range 192.168.1.65 192.168.1.250;
option routers 192.168.1.1;
}
This is a standard file,with the default setting of a fresh install (domain.ext should be your domain and extension)
Alejandro