-
dhcp help
Hey there I am setting trying to set up a dhcp server with CentOS 5.1 on a dell gx260. When I try to start the configuration I get this error message:
dhcpd failed. The error was: Starting dhcpd: [FAILED]
I also have installed the OS on a old hp desktop, and got the same results. I don't think it is a hardware issue. If anyone has any ideas that would be great. thanks
-
paste your dhcpd.conf & maybe someone can help you...
-
dhcpd.conf
could anyone post their file to use as a refrence? that would be great. My file is blank. I know it has a sample, but it has alot of other unrelated info in it for my network, do I need that info?
-
mine,
ddns-update-style none;
#DNS Provide by ISP
option domain-name-servers 202.188.0.133, 202.188.1.5;
default-lease-time 86400;
max-lease-time 604800;
authoritative;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.2 192.168.0.10;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.0.255;
option routers 192.168.0.2;
}
-
Thanks a lot, Got her up and running!
-
athlon_crazy,
thanks. worked for me.