File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
doc/source/reference/bare-metal Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ Enable Ironic in ``/etc/kolla/globals.yml``:
17
17
18
18
enable_ironic : " yes"
19
19
20
- In the same file, define a network interface as the default NIC for dnsmasq,
21
- a range of IP addresses that will be available for use by Ironic inspector,
22
- as well as a network to be used for the Ironic cleaning network:
20
+ In the same file, define a network interface as the default NIC for dnsmasq and
21
+ a range of IP addresses that will be available for use by Ironic inspector.
22
+ The optional netmask of the network should be provided in case when DHCP-relay
23
+ is used. Finally, define a network to be used for the Ironic cleaning network:
23
24
24
25
.. code-block :: yaml
25
26
26
27
ironic_dnsmasq_interface : " eth1"
27
- ironic_dnsmasq_dhcp_range : " 192.168.5.100,192.168.5.110"
28
+ ironic_dnsmasq_dhcp_range : " 192.168.5.100,192.168.5.110,255.255.255.0 "
28
29
ironic_cleaning_network : " public1"
29
30
30
31
In the same file, optionally a default gateway to be used for the Ironic
Original file line number Diff line number Diff line change 592
592
# ############################
593
593
# dnsmasq bind interface for Ironic Inspector, by default is network_interface
594
594
# ironic_dnsmasq_interface: "{{ network_interface }}"
595
- # The following value must be set when enabling ironic,
596
- # the value format is "192.168.0.10,192.168.0.100" .
595
+ # The following value must be set when enabling ironic, the value format is
596
+ # "192.168.0.10,192.168.0.100,255.255.255.0" the last being an optional netmask .
597
597
# ironic_dnsmasq_dhcp_range:
598
598
# PXE bootloader file for Ironic Inspector, relative to /tftpboot.
599
599
# ironic_dnsmasq_boot_file: "pxelinux.0"
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ enable_aodh: "yes"
95
95
96
96
{% if scenario == "ironic" %}
97
97
enable_ironic: "yes"
98
- ironic_dnsmasq_dhcp_range: "10.42.0.2,10.42.0.254"
98
+ ironic_dnsmasq_dhcp_range: "10.42.0.2,10.42.0.254,255.255.255.0 "
99
99
{% endif %}
100
100
101
101
{% if scenario == "masakari" %}
You can’t perform that action at this time.
0 commit comments