LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   DHCPD failed (https://www.linuxquestions.org/questions/linux-newbie-8/dhcpd-failed-693135/)

heygokul 12-26-2008 03:01 PM

DHCPD failed
 
I am using Cent OS, this is on a vmware workstation, i have disabled vmware DHCP, and NAT, its on host only networking. I have configured the dhcpd.conf file with the following, this server is not a server.
I am on static IP 192.168.1.3.


#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
#ddns-update-style interim;
ignore client-updates;

subnet 192.168.1.0 netmask 255.255.255.0 {

# --- default gateway
#option routers 192.168.0.1;
option subnet-mask 255.255.255.0;

#option nis-domain "domain.org";
#option domain-name "domain.org";
#option domain-name-servers 192.168.1.1;

#option time-offset -18000; # Eastern Standard Time
# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;

range dynamic-bootp 192.168.1.5 192.168.1.25;
default-lease-time 300;
max-lease-time 400;

# we want the nameserver to appear at a fixed address
#host ns {
# next-server marvin.redhat.com;
# hardware ethernet 12:34:56:78:AB:CD;
# fixed-address 207.175.42.254;
#}
}



Chkconfig shows dhcpd server is on for the current user level.

host.conf has the following
order hosts,bind

Any suggestions on how to proceed?

Tinkster 12-26-2008 10:10 PM

Checking the logs is always a good starting point.


All times are GMT -5. The time now is 02:35 PM.