Dear all,
I am trying to configure dhcp server in linux 5.4 version on VMWare. DHCP is already installed in my machine but I am not able to start the service.whenever I give service dhcpd start/restart, it gives message: starting FAILED My configuration file is like this:
[root@chaitu etc]# /etc/init.d/dhcpd start
Starting dhcpd: [FAILED]
[root@chaitu etc]# vi dhcpd.conf
ddns-update-style interim;
ignore client-updates;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.201 192.168.1.220;
# --- default gateway
option routers 192.168.1.1;
option subnet-mask 255.255.255.0;
option nis-domain "domain.org";
option domain-name "test.com";
option domain-name-servers 202.65.156.10;
option ipforwarding off;
default-lease-time 21600;
max-lease-time 43200;
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;
# we want the nameserver to appear at a fixed address
host ns {
next-server chaitu;
hardware ethernet 00:0C:29:EF

D:EA;
fixed-address 192.168.205.129;
}
}
I have searched the configuration in google. But as given in some of the sites, I have configured as above. I am confused where I am wrong in this fiile. Please help me out....................