Linux - NetworkingThis forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I have just installed DHCPD v3.0.1rc11 on my mandrake 9.2 server, but I can't get it to work. When I click start server, the only information I get is:
Starting dhcpd: [FAILED]
I have no idea where to start to solve this problem, if anyone can help, it would be much appreciated. This is the contents of my dhcpd.conf file. (ethernet hardware address has been deleted)
# Home
subnet 192.168.0.0 netmask 255.255.255.0 {
# Bob
host fuzzified {
hardware ethernet **:**:**:**:**:**;
fixed-address 192.168.0.3;
}
range 192.168.0.1 192.168.0.255;
}
Take a look in the log file to what the error message was. /var/log/messages
You could also try to run the dchpd program as a foreground process with debugging to see what's happening.
Try dhcpd -f
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.