270b0cb7c7
We currently allow changing the HTTP port for Ironic iPXE support, but we don't allow the same for ironic-inspector. This patch fixes it. Change-Id: I62effb9d0196474a3768ef7e80528f730df8a543 Closes-Bug: #1602976
20 lines
664 B
Plaintext
20 lines
664 B
Plaintext
port=0
|
|
interface=<%= @dnsmasq_interface %>
|
|
bind-interfaces
|
|
dhcp-range=<%= @dnsmasq_ip_range %>,29
|
|
enable-tftp
|
|
tftp-root=/tftpboot
|
|
dhcp-sequential-ip
|
|
dhcp-match=ipxe,175
|
|
<% if @enable_uefi -%>
|
|
dhcp-match=set:efi,option:client-arch,7
|
|
<% end -%>
|
|
# Client is running iPXE; move to next stage of chainloading
|
|
dhcp-boot=tag:ipxe,http://<%= @dnsmasq_local_ip %>:<%= @http_port %>/inspector.ipxe
|
|
<% if @enable_uefi -%>
|
|
# Client is running PXE over EFI; send EFI version of iPXE chainloader
|
|
dhcp-boot=tag:efi,ipxe.efi
|
|
# Client is running PXE over BIOS; send BIOS version of iPXE chainloader
|
|
<% end -%>
|
|
dhcp-boot=undionly.kpxe,localhost.localdomain,<%= @dnsmasq_local_ip %>
|