openstack-ansible/doc/source/install-guide/configure-ironic-neutron.rst
Alexandra aa1f09f12a [DOCS] Adding Ironic configuration docs to Ansible
install guide

Change-Id: Ic8c5a2638049ab957bc7095071235f84d178fa3f
2016-04-21 10:48:12 +00:00

976 B

Home OpenStack-Ansible Installation Guide

Setup a Neutron network for use Ironic

In the general case, the Neutron network can be a simple flat network. However, in a complex case, this can be whatever you need and want. Ensure you adjust the deployment accordingly. The following is an example:

neutron net-create cleaning-net --shared \
                                --provider:network_type flat \
                                --provider:physical_network ironic-net

neutron subnet-create ironic-net 172.19.0.0/22 --name ironic-subnet
                                               --ip-version=4 \
                                               --allocation-pool start=172.19.1.100,end=172.19.1.200 \
                                               --enable-dhcp \
                                               --dns-nameservers list=true 8.8.4.4 8.8.8.8