when i type the command
service dhcpd start
Starting dhcpd: [FAILED]
I am using Centos 6.3
file /etc/dhcpd.conf
here is the contents of the file
ddns-update-style interim;
ignore client-updates;
subnet 10.0.0.0 netmask 255.255.255.0 {
option routers 10.0.0.1;
option domain-name-servers 10.0.0.1;
option subnet-mask 255.255.255.0;
option domain-name imaging.localhost.localdomain;
range 10.0.0.150 10.0.0.255;
default-lease-time 43200;
max-lease-time 86400;
#set name server to appear at # fixed address
host ns {
next-server imaging.localhost.localdomain;
hardware ethernet 00:09:3D;00:E9:06;
fixed-address 10.0.0.1;
}
}
I have no idea where this is coming from