Linux DHCP Server

From FOG Project
Revision as of 19:05, 13 May 2010 by 207.63.160.253 (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

I already have an existing DHCP server can I use that instead of the one provided with FOG?

Yes, do the following on the FOG Server:

 service dhcpd stop
 chkconfig --level 345 dhcpd off

Existing DHCP server

You must add the following lines to your existing DHCP server:

 if substring (option vendor-class-identifier, 0, 9) = "PXEClient" {
   next-server x.x.x.x;
   filename "pxelinux.0";
 }