6.0.2

Table Of Contents
Sample DHCP Configuration
To PXE boot the ESXi installer, the DHCP server must send the address of the TFTP server and a pointer to
the pxelinux.0 or gpxelinux.0 directory.
The DHCP server is used by the target machine to obtain an IP address. The DHCP server must be able to
determine whether the target machine is allowed to boot and the location of the PXELINUX binary (which
usually resides on a TFTP server). When the target machine rst boots, it broadcasts a packet across the
network requesting this information to boot itself. The DHCP server responds.
C Do not set up a new DHCP server if your network already has one. If multiple DHCP servers
respond to DHCP requests, machines can obtain incorrect or conicting IP addresses, or can fail to receive
the proper boot information. Talk to a network administrator before seing up a DHCP server. For support
on conguring DHCP, contact your DHCP server vendor.
Many DHCP servers can PXE boot hosts. If you are using a version of DHCP for Microsoft Windows, see the
DHCP server documentation to determine how to pass the next-server and filename arguments to the
target machine.
gPXE Example
This example shows how to congure a ISC DHCP version 3.0 server to enable gPXE.
allow booting;
allow bootp;
# gPXE options
option space gpxe;
option gpxe-encap-opts code 175 = encapsulate gpxe;
option gpxe.bus-id code 177 = string;
class "pxeclients" {
match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
next-server TFTP server address;
if not exists gpxe.bus-id {
filename "/gpxelinux.0";
}
}
subnet Network address netmask Subnet Mask {
range Starting IP Address Ending IP Address;
}
When a machine aempts to PXE boot, the DHCP server provides an IP address and the location of the
gpxelinux.0 binary le on the TFTP server. The IP address assigned is in the range dened in the subnet
section of the conguration le.
PXELINUX (without gPXE) Example
This example shows how to congure a ISC DHCP version 3.0 server to enable PXELINUX.
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
#
ddns-update-style ad-hoc;
allow booting;
allow bootp;
class "pxeclients" {
match if substring(option vendor-class-identifier, 0, 9) = "PXEClient";
vSphere Upgrade
148 VMware, Inc.