Fedora Core 2 2.6.5-1.358 kernel

 

After running mkdhcpserver and generating a file that looks like the following:

I get error messages when I try and start DHCPD that complain about the options.

 

Any help would be appreciated.

  --marc

 

 

Sep  8 11:59:59 emsp dhcpd: /etc/dhcpd.conf line 28: unknown option dhcp.option-140

Sep  8 11:59:59 emsp dhcpd:   option option-140 192.

Sep  8 11:59:59 emsp dhcpd:          ^

Sep  8 11:59:59 emsp dhcpd: /etc/dhcpd.conf line 28: unknown option dhcp.option-140 Sep  8 11:59:59 emsp dhcpd: /etc/dhcpd.conf line 43: unknown option dhcp.option-144

Sep  8 11:59:59 emsp dhcpd:   option option-144 n;

Sep  8 11:59:59 emsp dhcpd:

Sep  8 11:59:59 emsp dhcpd:   option option-140 192.

Sep  8 11:59:59 emsp dhcpd:          ^

Sep  8 11:59:59 emsp dhcpd:          ^

Sep  8 11:59:59 emsp dhcpd: /etc/dhcpd.conf line 43: unknown option dhcp.option-144 Sep  8 11:59:59 emsp dhcpd: Configuration file errors encountered -- exiting Sep  8 11:59:59 emsp dhcpd:

Sep  8 11:59:59 emsp dhcpd:   option option-144 n;

Sep  8 11:59:59 emsp dhcpd:          ^

Sep  8 11:59:59 emsp dhcpd: Configuration file errors encountered -- exiting Sep  8 11:59:59 emsp dhcpd:

 

 

 

 

 

 

/etc/dhcpd.conf follows

---------------------------------------------------------------------------------------------------------------

# set lease time to infinite (-1)

default-lease-time -1;

 

# Uncomment one of the two following lines.  The first, if you need to # boot i386 clients, or the second for booting ia64 clients.

filename "pxelinux.bin";   # i386

#filename "elilo.efi";   # ia64

 

subnet 192.168.20.0 netmask 255.255.255.0 {

  range  192.168.20.2 192.168.20.20;

  option domain-name "secure.net";

  option domain-name-servers 192.168.1.1;

  option routers 192.168.20.1;

  # option-140 specifies the IP address of your SystemImager image server

  option option-140 192.168.20.1;

  # option-142 specifies the URL address of your ssh download

  # This should be in the format of "http://192.168.20.1/systemimager/boot/".

  #option option-142 "http://192.168.20.1/systemimager/boot/";

  # option-143 specifies the Flamethrower directory port.

  # The default is "9000".

  #option option-143 "9000";

  #

  # option-144 tells your autoinstallclient to spool the image into a tmpfs

  # prior to laying it down on disk.  It is not certain that this is always

  # a good thing to do.  And if you're feeling gutsy and want to try it, be

  # sure that your (memory + swap) is at least twice the size of your image

  # or your image transfer will fail when the tmpfs filesystem gets full!!!

  # If unsure, say "no".

  #

  option option-144 n;

 

  # next-server is your network boot server

  #next-server ;

 

  # log-servers

  #option log-servers ;

  # option-141 is the port number your log server uses

  #option-141 "";

}

 

Reply via email to