This is configured via the ironic_dnsmasq_default_gateway variable, and is not set by default. Change-Id: I4deea65876d0852ba2b48a8cf9bad94f4df2a18d
24 lines
891 B
Django/Jinja
24 lines
891 B
Django/Jinja
port=0
|
|
interface={{ api_interface }}
|
|
dhcp-range={{ ironic_dnsmasq_dhcp_range }}
|
|
{% if ironic_dnsmasq_default_gateway is not none %}
|
|
dhcp-option=3,{{ ironic_dnsmasq_default_gateway }}
|
|
{% endif %}
|
|
dhcp-option=option:tftp-server,{{ api_interface_address }}
|
|
dhcp-option=option:server-ip-address,{{ api_interface_address }}
|
|
bind-interfaces
|
|
dhcp-sequential-ip
|
|
dhcp-option=210,/tftpboot/
|
|
{% if enable_ironic_ipxe | bool %}
|
|
dhcp-match=ipxe,175
|
|
dhcp-match=set:efi,option:client-arch,7
|
|
dhcp-match=set:efi,option:client-arch,9
|
|
# Client is already running iPXE; move to next stage of chainloading
|
|
dhcp-option=tag:ipxe,option:bootfile-name,{{ ironic_ipxe_url }}/inspector.ipxe
|
|
# Client is PXE booting over EFI without iPXE ROM,
|
|
# send EFI version of iPXE chainloader
|
|
dhcp-option=tag:efi,tag:!ipxe,option:bootfile-name,ipxe.efi
|
|
{% endif %}
|
|
dhcp-option=option:bootfile-name,{{ ironic_dnsmasq_boot_file }}
|
|
|