0376a5f55d
We should provide option to setup PXE in order to remove PXE setup from tripleo elements. Class ironic::pxe will setup tftpboot and httpboot and class ironic::pxe::common will take care of common dependancies between ironic, ironic inspector and pxe driver. Change-Id: I8b83eff694316755e4dd2dbcde7b569472893bc5
18 lines
637 B
Plaintext
18 lines
637 B
Plaintext
port=0
|
|
interface=<%= @dnsmasq_interface %>
|
|
bind-interfaces
|
|
dhcp-range=<%= @dnsmasq_ip_range %>,29
|
|
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_real %>/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 %>
|