Find the answer to your Linux question:
Results 1 to 2 of 2
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 ...
  1. #1
    Just Joined!
    Join Date
    Dec 2008
    Posts
    3

    Smile 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?

  2. #2
    Just Joined!
    Join Date
    Nov 2009
    Posts
    1

    Smile Re: DHCPD failed

    Quote Originally Posted by heygokul View Post
    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
    If you haven't already figured out, there is a missing ";" after ignore client-updates. A good practice is to check /var/log/messages for more information on failure.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...