Correct DHCP configuration examples

The intermediate chain loader URL, for our TFTP configuration
requires a leading / to match the file in order to serve up the
user's request.

Added leading "/" to the configuration examples.

Change-Id: I8bec59400f013b2912f836b3619bea2e078f564c
Closes-Bug: #1524505
This commit is contained in:
Julia Kreger 2015-12-09 16:10:54 -05:00
parent 5dec04a8d0
commit ac6a4be65d
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ depending on the environment configuration.
dnsmasq::
dhcp-match=set:ipxe,175 # iPXE sends a 175 option.
dhcp-boot=tag:!ipxe,undionly.kpxe,<TFTP Server Hostname>,<TFTP Server IP Address>
dhcp-boot=tag:!ipxe,/undionly.kpxe,<TFTP Server Hostname>,<TFTP Server IP Address>
dhcp-boot=http://<Bifrost Host IP Address>:8080/boot.ipxe
Internet Systems Consortium DHCPd::
@ -35,7 +35,7 @@ Internet Systems Consortium DHCPd::
if exists user-class and option user-class = "iPXE" {
filename "http://<Bifrost Host IP Address>:8080/boot.ipxe";
} else {
filename "undionly.kpxe";
filename "/undionly.kpxe";
next-server <TFTP Server IP Address>;
}