CentOS 7
Sponsored Link

OpenStack Rocky : Configure Networking2018/08/31

 
Configure Networking for Virtual Machine Instances.
Configure basic settings first for Neutron Services like All in One Settings like here or Neutron Nodes like here.
For example, configure FLAT type of provider networking on here.
The Node has 2 network interfaces like follows.
        eth0|10.0.0.30 
+-----------+-----------+
|    [ Control Node ]   |
|                       |
|  MariaDB    RabbitMQ  |
|  Memcached  httpd     |
|  Keystone   Glance    |
|   Nova API,Compute    |
|    Neutron Server     |
|  L2,L3,Metadata Agent |
+-----------+-----------+
        eth1|(UP with no IP)

[1] Configure Neutron services.
# add bridge

[root@dlp ~(keystone)]#
ovs-vsctl add-br br-eth1

# add eth1 to the port of the bridge above

[root@dlp ~(keystone)]#
ovs-vsctl add-port br-eth1 eth1

[root@dlp ~(keystone)]#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# line 181: add

[ml2_type_flat]
flat_networks = physnet1
[root@dlp ~(keystone)]#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# line 194: add

[ovs]
bridge_mappings = physnet1:br-eth1
[root@dlp ~(keystone)]#
systemctl restart neutron-openvswitch-agent

[2] Create virtual network.
[root@dlp ~(keystone)]#
projectID=$(openstack project list | grep service | awk '{print $2}')
# create network named [sharednet1]

[root@dlp ~(keystone)]#
openstack network create --project $projectID \
--share --provider-network-type flat --provider-physical-network physnet1 sharednet1

+---------------------------+--------------------------------------+
| Field                     | Value                                |
+---------------------------+--------------------------------------+
| admin_state_up            | UP                                   |
| availability_zone_hints   |                                      |
| availability_zones        |                                      |
| created_at                | 2018-08-31T03:39:02Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | eaaf7e9b-a448-4827-b07c-e0c75dd2410c |
| ipv4_address_scope        | None                                 |
| ipv6_address_scope        | None                                 |
| is_default                | False                                |
| is_vlan_transparent       | None                                 |
| mtu                       | 1500                                 |
| name                      | sharednet1                           |
| port_security_enabled     | True                                 |
| project_id                | ece4ac6c7e764a979e36ba0b2faf848e     |
| provider:network_type     | flat                                 |
| provider:physical_network | physnet1                             |
| provider:segmentation_id  | None                                 |
| qos_policy_id             | None                                 |
| revision_number           | 0                                    |
| router:external           | Internal                             |
| segments                  | None                                 |
| shared                    | True                                 |
| status                    | ACTIVE                               |
| subnets                   |                                      |
| tags                      |                                      |
| updated_at                | 2018-08-31T03:39:02Z                 |
+---------------------------+--------------------------------------+

# create subnet [10.0.0.0/24] in [sharednet1]

[root@dlp ~(keystone)]#
openstack subnet create subnet1 --network sharednet1 \
--project $projectID --subnet-range 10.0.0.0/24 \
--allocation-pool start=10.0.0.200,end=10.0.0.254 \
--gateway 10.0.0.1 --dns-nameserver 10.0.0.10

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| allocation_pools  | 10.0.0.200-10.0.0.254                |
| cidr              | 10.0.0.0/24                          |
| created_at        | 2018-08-31T03:39:32Z                 |
| description       |                                      |
| dns_nameservers   | 10.0.0.10                            |
| enable_dhcp       | True                                 |
| gateway_ip        | 10.0.0.1                             |
| host_routes       |                                      |
| id                | d3e3dca6-218a-405a-b115-70d5a257620e |
| ip_version        | 4                                    |
| ipv6_address_mode | None                                 |
| ipv6_ra_mode      | None                                 |
| name              | subnet1                              |
| network_id        | eaaf7e9b-a448-4827-b07c-e0c75dd2410c |
| project_id        | ece4ac6c7e764a979e36ba0b2faf848e     |
| revision_number   | 0                                    |
| segment_id        | None                                 |
| service_types     |                                      |
| subnetpool_id     | None                                 |
| tags              |                                      |
| updated_at        | 2018-08-31T03:39:32Z                 |
+-------------------+--------------------------------------+

# confirm settings

[root@dlp ~(keystone)]#
openstack network list

+--------------------------------------+------------+--------------------------------------+
| ID                                   | Name       | Subnets                              |
+--------------------------------------+------------+--------------------------------------+
| eaaf7e9b-a448-4827-b07c-e0c75dd2410c | sharednet1 | d3e3dca6-218a-405a-b115-70d5a257620e |
+--------------------------------------+------------+--------------------------------------+

[root@dlp ~(keystone)]#
openstack subnet list

+--------------------------------------+---------+--------------------------------------+-------------+
| ID                                   | Name    | Network                              | Subnet      |
+--------------------------------------+---------+--------------------------------------+-------------+
| d3e3dca6-218a-405a-b115-70d5a257620e | subnet1 | eaaf7e9b-a448-4827-b07c-e0c75dd2410c | 10.0.0.0/24 |
+--------------------------------------+---------+--------------------------------------+-------------+
Matched Content