In this tutorial, How to configure OpenStack Networking. In previous, My post has How to install OpenStack all in one Centos 7. This example configures the FLAT type of provider networking. First, you have to configure basic settings Openstack Neutron Services refer here.
For example, Configure FLAT type for Node 2 network interfaces
- eth0: 10.0.2.15
- eth1: UP with no IP
Configure OpenStack Networking
Configure Neutron services
# add bridge
[root@DevopsRoles ~(keystone)]# ovs-vsctl add-br br-eth1
# add eth1 to the port of the bridge above
[root@DevopsRoles ~(keystone)]# ovs-vsctl add-port br-eth1 eth1
[root@DevopsRoles ~(keystone)]# vi /etc/neutron/plugins/ml2/ml2_conf.ini
# The content as below
# line 181: add
[ml2_type_flat]
flat_networks = physnet1
[root@DevopsRoles ~(keystone)]# vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# The content as below
# line 194: add
[ovs]
bridge_mappings = physnet1:br-eth1
[root@DevopsRoles ~(keystone)]# systemctl restart neutron-openvswitch-agent
Creating a Virtual network.
[root@DevopsRoles ~(keystone)]# projectID=$(openstack project list | grep service | awk '{print $2}')
# create network named [sharednet1]
[root@DevopsRoles ~(keystone)]# openstack network create --project $projectID \
--share --provider-network-type flat --provider-physical-network physnet1 sharednet1
# create subnet [10.0.2.0/24] in [sharednet1]
[root@DevopsRoles ~(keystone)]# openstack subnet create subnet1 --network sharednet1 \
--project $projectID --subnet-range 10.0.2.0/24 \
--allocation-pool start=10.0.2.200,end=10.0.2.254 \
--gateway 10.0.2.1 --dns-nameserver 10.0.2.10
# confirm settings
[root@DevopsRoles ~(keystone)]# openstack network list
[root@DevopsRoles ~(keystone)]# openstack subnet list
You have configured OpenStack Networking. Thank you for reading the DevopsRoles page!