Ubuntu 20.04
Sponsored Link

OpenStack Victoria : Neutron Network (VXLAN)2020/10/19

 
Configure virtual networking by OpenStack Network Service (Neutron).
For example, configure VXLAN type of networking on here.
Before it, Configure basic settings on Control Node, Network Node, Compute Node.
Furthermore, this example is based on the environment that Network Node and Compute Node have 2 network interfaces.
And also [eth1] is up without IP Address, refer to here of [1] to up anonymous interface on Netplan.
------------+---------------------------+---------------------------+------------
            |                           |                           |
        eth0|10.0.0.30              eth0|10.0.0.50              eth0|10.0.0.51
+-----------+-----------+   +-----------+-----------+   +-----------+-----------+
|    [ Control Node ]   |   |    [ Network Node ]   |   |    [ Compute Node ]   |
|                       |   |                       |   |                       |
|  MariaDB    RabbitMQ  |   |        L2 Agent       |   |        Libvirt        |
|  Memcached  httpd     |   |        L3 Agent       |   |     Nova Compute      |
|  Keystone   Glance    |   |     Metadata Agent    |   |        L2 Agent       |
|  Nova API             |   |                       |   |                       |
|  Neutron Server       |   |                       |   |                       |
|  Metadata Agent       |   |                       |   |                       |
+-----------------------+   +-----------+-----------+   +-----------------------+
                                    eth1|(UP with no IP)

[1] Change settings on Control Node.
root@dlp ~(keystone)#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# line 155: add a value to [tenant_network_types]

tenant_network_types =
vxlan
# line 206: add

[ml2_type_flat]
flat_networks = physnet1
# line 259: add

[ml2_type_vxlan]
vni_ranges = 1:1000
root@dlp ~(keystone)#
systemctl restart neutron-server

[2] Change settings on Network Node.
root@network:~#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# line 155: add a value to [tenant_network_type]

tenant_network_types =
vxlan
# line 206: add

[ml2_type_flat]
flat_networks = physnet1
# line 259: add

[ml2_type_vxlan]
vni_ranges = 1:1000
root@network:~#
vi /etc/neutron/plugins/ml2/linuxbridge_agent.ini
# line 161: add

[agent]
prevent_arp_spoofing = True
# line 190: add

[linux_bridge]
physical_interface_mappings = physnet1:eth1
# line 257: uncomment and change

enable_vxlan =
true
root@network:~#
vi /etc/neutron/dhcp_agent.ini
# line 85: add

dnsmasq_config_file = /etc/neutron/dnsmasq-neutron.conf
root@network:~#
vi /etc/neutron/dnsmasq-neutron.conf
# create new

dhcp-option-force=26,1450
root@network:~#
for service in l3-agent dhcp-agent metadata-agent linuxbridge-agent; do
systemctl restart neutron-$service
done

[3] Change settings on Compute Node.
root@node01:~#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# line 155: add a value to [tenant_network_types]

tenant_network_types =
vxlan
# line 206: add

[ml2_type_flat]
flat_networks = physnet1
# line 259: add

[ml2_type_vxlan]
vni_ranges = 1:1000
root@node01:~#
vi /etc/neutron/plugins/ml2/linuxbridge_agent.ini
# line 161: add

[agent]
prevent_arp_spoofing = True
# line 257: uncomment and change

enable_vxlan =
true
root@node01:~#
systemctl restart neutron-linuxbridge-agent

[4] Create a Virtual router. It's OK to work on any node. (example below is on Control Node)
root@dlp ~(keystone)#
openstack router create router01

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| admin_state_up          | UP                                   |
| availability_zone_hints |                                      |
| availability_zones      |                                      |
| created_at              | 2020-10-19T06:59:49Z                 |
| description             |                                      |
| distributed             | False                                |
| external_gateway_info   | null                                 |
| flavor_id               | None                                 |
| ha                      | False                                |
| id                      | 5868b171-cc7c-47f4-8b3c-7e423d680835 |
| name                    | router01                             |
| project_id              | b573c9e160864f028fc2d681a929f5af     |
| revision_number         | 1                                    |
| routes                  |                                      |
| status                  | ACTIVE                               |
| tags                    |                                      |
| updated_at              | 2020-10-19T06:59:49Z                 |
+-------------------------+--------------------------------------+

[5] Create internal network and associate with the router above.
# create internal network

root@dlp ~(keystone)#
openstack network create private --provider-network-type vxlan

+---------------------------+--------------------------------------+
| Field                     | Value                                |
+---------------------------+--------------------------------------+
| admin_state_up            | UP                                   |
| availability_zone_hints   |                                      |
| availability_zones        |                                      |
| created_at                | 2020-10-19T07:04:34Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | 9f39959f-2f70-400c-aa80-5de54e92cf27 |
| ipv4_address_scope        | None                                 |
| ipv6_address_scope        | None                                 |
| is_default                | False                                |
| is_vlan_transparent       | None                                 |
| mtu                       | 1450                                 |
| name                      | private                              |
| port_security_enabled     | True                                 |
| project_id                | b573c9e160864f028fc2d681a929f5af     |
| provider:network_type     | vxlan                                |
| provider:physical_network | None                                 |
| provider:segmentation_id  | 1                                    |
| qos_policy_id             | None                                 |
| revision_number           | 1                                    |
| router:external           | Internal                             |
| segments                  | None                                 |
| shared                    | False                                |
| status                    | ACTIVE                               |
| subnets                   |                                      |
| tags                      |                                      |
| updated_at                | 2020-10-19T07:04:34Z                 |
+---------------------------+--------------------------------------+

# create subnet for internal network

root@dlp ~(keystone)#
openstack subnet create private-subnet --network private \
--subnet-range 192.168.100.0/24 --gateway 192.168.100.1 \
--dns-nameserver 10.0.0.10

+----------------------+--------------------------------------+
| Field                | Value                                |
+----------------------+--------------------------------------+
| allocation_pools     | 192.168.100.2-192.168.100.254        |
| cidr                 | 192.168.100.0/24                     |
| created_at           | 2020-10-19T07:05:02Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | True                                 |
| gateway_ip           | 192.168.100.1                        |
| host_routes          |                                      |
| id                   | e7e82cb2-29c0-4eea-a459-e212a2bc3650 |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | private-subnet                       |
| network_id           | 9f39959f-2f70-400c-aa80-5de54e92cf27 |
| prefix_length        | None                                 |
| project_id           | b573c9e160864f028fc2d681a929f5af     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2020-10-19T07:05:02Z                 |
+----------------------+--------------------------------------+

# set subnet to the router above

root@dlp ~(keystone)#
openstack router add subnet router01 private-subnet
[6] Create external network and associate with the router above.
# create external network

root@dlp ~(keystone)#
openstack network create \
--provider-physical-network physnet1 \
--provider-network-type flat --external public

+---------------------------+--------------------------------------+
| Field                     | Value                                |
+---------------------------+--------------------------------------+
| admin_state_up            | UP                                   |
| availability_zone_hints   |                                      |
| availability_zones        |                                      |
| created_at                | 2020-10-19T07:06:19Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | 5d7b1b73-602d-40e2-a82f-352991de37e0 |
| ipv4_address_scope        | None                                 |
| ipv6_address_scope        | None                                 |
| is_default                | False                                |
| is_vlan_transparent       | None                                 |
| mtu                       | 1500                                 |
| name                      | public                               |
| port_security_enabled     | True                                 |
| project_id                | b573c9e160864f028fc2d681a929f5af     |
| provider:network_type     | flat                                 |
| provider:physical_network | physnet1                             |
| provider:segmentation_id  | None                                 |
| qos_policy_id             | None                                 |
| revision_number           | 1                                    |
| router:external           | External                             |
| segments                  | None                                 |
| shared                    | False                                |
| status                    | ACTIVE                               |
| subnets                   |                                      |
| tags                      |                                      |
| updated_at                | 2020-10-19T07:06:19Z                 |
+---------------------------+--------------------------------------+

# create subnet for external network

root@dlp ~(keystone)#
openstack subnet create public-subnet \
--network public --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 --no-dhcp

+----------------------+--------------------------------------+
| Field                | Value                                |
+----------------------+--------------------------------------+
| allocation_pools     | 10.0.0.200-10.0.0.254                |
| cidr                 | 10.0.0.0/24                          |
| created_at           | 2020-10-19T07:07:06Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | False                                |
| gateway_ip           | 10.0.0.1                             |
| host_routes          |                                      |
| id                   | 7aa5fca7-efe4-4a30-b1f0-0653cc743a1c |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | public-subnet                        |
| network_id           | 5d7b1b73-602d-40e2-a82f-352991de37e0 |
| prefix_length        | None                                 |
| project_id           | b573c9e160864f028fc2d681a929f5af     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2020-10-19T07:07:06Z                 |
+----------------------+--------------------------------------+

# set gateway to the router above

root@dlp ~(keystone)#
openstack router set router01 --external-gateway public

[7] By default, it's possible to access for all projects to external network, but for internal network, only admin projects can access to it, so grant access permission for internal network to a project you'd like to let users in the project use.
# show network RBAC list

root@dlp ~(keystone)#
openstack network rbac list

+--------------------------------------+-------------+--------------------------------------+
| ID                                   | Object Type | Object ID                            |
+--------------------------------------+-------------+--------------------------------------+
| 8a0e9939-1973-43db-8173-b603d802927d | network     | 5d7b1b73-602d-40e2-a82f-352991de37e0 |
+--------------------------------------+-------------+--------------------------------------+

# RBAC details

# all projects can access only to [access_as_external]

root@dlp ~(keystone)#
openstack network rbac show 8a0e9939-1973-43db-8173-b603d802927d

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| action            | access_as_external                   |
| id                | 8a0e9939-1973-43db-8173-b603d802927d |
| name              | None                                 |
| object_id         | 5d7b1b73-602d-40e2-a82f-352991de37e0 |
| object_type       | network                              |
| project_id        | b573c9e160864f028fc2d681a929f5af     |
| target_project_id | *                                    |
+-------------------+--------------------------------------+

# show network list

root@dlp ~(keystone)#
openstack network list

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| 5d7b1b73-602d-40e2-a82f-352991de37e0 | public  | 7aa5fca7-efe4-4a30-b1f0-0653cc743a1c |
| 9f39959f-2f70-400c-aa80-5de54e92cf27 | private | e7e82cb2-29c0-4eea-a459-e212a2bc3650 |
+--------------------------------------+---------+--------------------------------------+

# show project list

root@dlp ~(keystone)#
openstack project list

+----------------------------------+-----------+
| ID                               | Name      |
+----------------------------------+-----------+
| 37197271a1954ddb90207a95d5f46488 | service   |
| 6c44eafd4f614985bf74b94f2aee82fb | hiroshima |
| b573c9e160864f028fc2d681a929f5af | admin     |
+----------------------------------+-----------+

# grant [access_as_shared] permission for [private] to [hiroshima] project

root@dlp ~(keystone)#
netID=$(openstack network list | grep private | awk '{ print $2 }')

root@dlp ~(keystone)#
prjID=$(openstack project list | grep hiroshima | awk '{ print $2 }')

root@dlp ~(keystone)#
openstack network rbac create --target-project $prjID --type network --action access_as_shared $netID

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| action            | access_as_shared                     |
| id                | 3ede536c-458f-469f-b8b8-fff32ca92145 |
| name              | None                                 |
| object_id         | 9f39959f-2f70-400c-aa80-5de54e92cf27 |
| object_type       | network                              |
| project_id        | b573c9e160864f028fc2d681a929f5af     |
| target_project_id | 6c44eafd4f614985bf74b94f2aee82fb     |
+-------------------+--------------------------------------+
[8] Login with a user who is in the project you granted access permission to internal network and Create and boot an instance.
# confirm available [flavor] list

ubuntu@dlp ~(keystone)$
openstack flavor list

+----+----------+------+------+-----------+-------+-----------+
| ID | Name     |  RAM | Disk | Ephemeral | VCPUs | Is Public |
+----+----------+------+------+-----------+-------+-----------+
| 0  | m1.small | 2048 |   10 |         0 |     1 | True      |
+----+----------+------+------+-----------+-------+-----------+

# confirm available image list

ubuntu@dlp ~(keystone)$
openstack image list

+--------------------------------------+------------+--------+
| ID                                   | Name       | Status |
+--------------------------------------+------------+--------+
| 7ba71e53-e270-4d2a-bbe9-0d642a6c019c | Ubuntu2004 | active |
+--------------------------------------+------------+--------+

# confirm available network list

ubuntu@dlp ~(keystone)$
openstack network list

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| 5d7b1b73-602d-40e2-a82f-352991de37e0 | public  | 7aa5fca7-efe4-4a30-b1f0-0653cc743a1c |
| 9f39959f-2f70-400c-aa80-5de54e92cf27 | private | e7e82cb2-29c0-4eea-a459-e212a2bc3650 |
+--------------------------------------+---------+--------------------------------------+

# create a security group for instances

ubuntu@dlp ~(keystone)$
openstack security group create secgroup01

+-----------------+--------------------------------------------------------------------------+
| Field           | Value                                                                    |
+-----------------+--------------------------------------------------------------------------+
| created_at      | 2020-10-19T07:18:35Z                                                     |
| description     | secgroup01                                                               |
| id              | f18770a0-d4e8-4768-93df-0ea0251e8742                                     |
| name            | secgroup01                                                               |
| project_id      | 6c44eafd4f614985bf74b94f2aee82fb                                         |
| revision_number | 1                                                                        |
| rules           | created_at='2020-10-19T07:18:35Z', direction='egress', ethertype='IPv4.. |
|                 | created_at='2020-10-19T07:18:35Z', direction='egress', ethertype='IPv6.. |
| stateful        | True                                                                     |
| tags            | []                                                                       |
| updated_at      | 2020-10-19T07:18:35Z                                                     |
+-----------------+--------------------------------------------------------------------------+

# create a SSH keypair for connecting to instances

ubuntu@dlp ~(keystone)$
ssh-keygen -q -N ""

Enter file in which to save the key (/home/ubuntu/.ssh/id_rsa):
# add public-key

ubuntu@dlp ~(keystone)$
openstack keypair create --public-key ~/.ssh/id_rsa.pub mykey

+-------------+-------------------------------------------------+
| Field       | Value                                           |
+-------------+-------------------------------------------------+
| fingerprint | f9:ee:20:5c:e9:c4:61:ba:70:38:f9:f0:3d:e4:9c:56 |
| name        | mykey                                           |
| user_id     | a13cfae0e5eb466fae71a636a6ffb6b4                |
+-------------+-------------------------------------------------+

ubuntu@dlp ~(keystone)$
netID=$(openstack network list | grep private | awk '{ print $2 }')

ubuntu@dlp ~(keystone)$
openstack server create --flavor m1.small --image Ubuntu2004 --security-group secgroup01 --nic net-id=$netID --key-name mykey Ubuntu_2004
ubuntu@dlp ~(keystone)$
openstack server list

+--------------------------------------+-------------+--------+-------------------------+------------+----------+
| ID                                   | Name        | Status | Networks                | Image      | Flavor   |
+--------------------------------------+-------------+--------+-------------------------+------------+----------+
| 10abf4e3-d5d9-4b57-a5a0-7cb767442dcc | Ubuntu_2004 | ACTIVE | private=192.168.100.188 | Ubuntu2004 | m1.small |
+--------------------------------------+-------------+--------+-------------------------+------------+----------+
[9] Assign floating IP address to the Instance above.
ubuntu@dlp ~(keystone)$
openstack floating ip create public

+---------------------+--------------------------------------+
| Field               | Value                                |
+---------------------+--------------------------------------+
| created_at          | 2020-10-19T07:29:54Z                 |
| description         |                                      |
| dns_domain          | None                                 |
| dns_name            | None                                 |
| fixed_ip_address    | None                                 |
| floating_ip_address | 10.0.0.236                           |
| floating_network_id | 5d7b1b73-602d-40e2-a82f-352991de37e0 |
| id                  | af8a1329-23e3-46ef-a464-c74d857cea4e |
| name                | 10.0.0.236                           |
| port_details        | None                                 |
| port_id             | None                                 |
| project_id          | 6c44eafd4f614985bf74b94f2aee82fb     |
| qos_policy_id       | None                                 |
| revision_number     | 0                                    |
| router_id           | None                                 |
| status              | DOWN                                 |
| subnet_id           | None                                 |
| tags                | []                                   |
| updated_at          | 2020-10-19T07:29:54Z                 |
+---------------------+--------------------------------------+

ubuntu@dlp ~(keystone)$
openstack server add floating ip Ubuntu_2004 10.0.0.236

# confirm settings

ubuntu@dlp ~(keystone)$
openstack floating ip show 10.0.0.236

+---------------------+------------------------------------------------------------------------+
| Field               | Value                                                                  |
+---------------------+------------------------------------------------------------------------+
| created_at          | 2020-10-19T07:29:54Z                                                   |
| description         |                                                                        |
| dns_domain          | None                                                                   |
| dns_name            | None                                                                   |
| fixed_ip_address    | 192.168.100.188                                                        |
| floating_ip_address | 10.0.0.236                                                             |
| floating_network_id | 5d7b1b73-602d-40e2-a82f-352991de37e0                                   |
| id                  | af8a1329-23e3-46ef-a464-c74d857cea4e                                   |
| name                | 10.0.0.236                                                             |
| port_details        | admin_state_up='True', device_id='10abf4e3-d5d9-4b57-a5a0-7cb7674..... |
| port_id             | 173295b3-053c-4d6c-82ff-c8527904c9b2                                   |
| project_id          | 6c44eafd4f614985bf74b94f2aee82fb                                       |
| qos_policy_id       | None                                                                   |
| revision_number     | 2                                                                      |
| router_id           | 5868b171-cc7c-47f4-8b3c-7e423d680835                                   |
| status              | ACTIVE                                                                 |
| subnet_id           | None                                                                   |
| tags                | []                                                                     |
| updated_at          | 2020-10-19T07:30:18Z                                                   |
+---------------------+------------------------------------------------------------------------+

ubuntu@dlp ~(keystone)$
openstack server list

+--------------------------------------+-------------+--------+-------------------------------------+------------+----------+
| ID                                   | Name        | Status | Networks                            | Image      | Flavor   |
+--------------------------------------+-------------+--------+-------------------------------------+------------+----------+
| 10abf4e3-d5d9-4b57-a5a0-7cb767442dcc | Ubuntu_2004 | ACTIVE | private=192.168.100.188, 10.0.0.236 | Ubuntu2004 | m1.small |
+--------------------------------------+-------------+--------+-------------------------------------+------------+----------+
[10] Configure security settings for the security group you created above to access with SSH and ICMP.
# permit ICMP

ubuntu@dlp ~(keystone)$
openstack security group rule create --protocol icmp --ingress secgroup01

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| created_at        | 2020-10-19T07:31:27Z                 |
| description       |                                      |
| direction         | ingress                              |
| ether_type        | IPv4                                 |
| id                | 9be43891-fae3-4839-ae59-15cc3e0e5a05 |
| name              | None                                 |
| port_range_max    | None                                 |
| port_range_min    | None                                 |
| project_id        | 6c44eafd4f614985bf74b94f2aee82fb     |
| protocol          | icmp                                 |
| remote_group_id   | None                                 |
| remote_ip_prefix  | 0.0.0.0/0                            |
| revision_number   | 0                                    |
| security_group_id | f18770a0-d4e8-4768-93df-0ea0251e8742 |
| tags              | []                                   |
| updated_at        | 2020-10-19T07:31:27Z                 |
+-------------------+--------------------------------------+

# permit SSH

ubuntu@dlp ~(keystone)$
openstack security group rule create --protocol tcp --dst-port 22:22 secgroup01

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| created_at        | 2020-10-19T07:31:42Z                 |
| description       |                                      |
| direction         | ingress                              |
| ether_type        | IPv4                                 |
| id                | efd266c2-bfa5-47b6-9f1c-fa8e1283e08e |
| name              | None                                 |
| port_range_max    | 22                                   |
| port_range_min    | 22                                   |
| project_id        | 6c44eafd4f614985bf74b94f2aee82fb     |
| protocol          | tcp                                  |
| remote_group_id   | None                                 |
| remote_ip_prefix  | 0.0.0.0/0                            |
| revision_number   | 0                                    |
| security_group_id | f18770a0-d4e8-4768-93df-0ea0251e8742 |
| tags              | []                                   |
| updated_at        | 2020-10-19T07:31:42Z                 |
+-------------------+--------------------------------------+

ubuntu@dlp ~(keystone)$
openstack security group rule list

+--------------------------------------+-------------+-----------+-----------+------------+--------------------------------------+--------------------------------------+
| ID                                   | IP Protocol | Ethertype | IP Range  | Port Range | Remote Security Group                | Security Group                       |
+--------------------------------------+-------------+-----------+-----------+------------+--------------------------------------+--------------------------------------+
| 111f5db4-3306-4bcd-8199-cda500faeca5 | None        | IPv4      | 0.0.0.0/0 |            | 751cc4fc-956c-4a91-85bf-3d00cf067107 | 751cc4fc-956c-4a91-85bf-3d00cf067107 |
| 52b3ecc0-eb11-4551-94ec-6a7c29ef334a | None        | IPv6      | ::/0      |            | None                                 | 751cc4fc-956c-4a91-85bf-3d00cf067107 |
| 5c1f0356-bf1e-4cc6-8d6f-c605da72bac6 | None        | IPv4      | 0.0.0.0/0 |            | None                                 | f18770a0-d4e8-4768-93df-0ea0251e8742 |
| 9be43891-fae3-4839-ae59-15cc3e0e5a05 | icmp        | IPv4      | 0.0.0.0/0 |            | None                                 | f18770a0-d4e8-4768-93df-0ea0251e8742 |
| a4e20c67-0c63-499f-959c-ea62112d2fc3 | None        | IPv4      | 0.0.0.0/0 |            | None                                 | 751cc4fc-956c-4a91-85bf-3d00cf067107 |
| a5c7f5d2-fafe-4a2e-bc2e-65160c707817 | None        | IPv6      | ::/0      |            | None                                 | f18770a0-d4e8-4768-93df-0ea0251e8742 |
| dce61042-ba3d-43bc-905f-df7ac9bd0dc3 | None        | IPv6      | ::/0      |            | 751cc4fc-956c-4a91-85bf-3d00cf067107 | 751cc4fc-956c-4a91-85bf-3d00cf067107 |
| efd266c2-bfa5-47b6-9f1c-fa8e1283e08e | tcp         | IPv4      | 0.0.0.0/0 | 22:22      | None                                 | f18770a0-d4e8-4768-93df-0ea0251e8742 |
+--------------------------------------+-------------+-----------+-----------+------------+--------------------------------------+--------------------------------------+
[11] It's possible to login to the Instance to connect to the floating IP address with SSH like follows.
ubuntu@dlp ~(keystone)$
openstack server list

+--------------------------------------+-------------+--------+-------------------------------------+------------+----------+
| ID                                   | Name        | Status | Networks                            | Image      | Flavor   |
+--------------------------------------+-------------+--------+-------------------------------------+------------+----------+
| 10abf4e3-d5d9-4b57-a5a0-7cb767442dcc | Ubuntu_2004 | ACTIVE | private=192.168.100.188, 10.0.0.236 | Ubuntu2004 | m1.small |
+--------------------------------------+-------------+--------+-------------------------------------+------------+----------+

ubuntu@dlp ~(keystone)$
ssh ubuntu@10.0.0.236

The authenticity of host '10.0.0.236 (10.0.0.236)' can't be established.
ECDSA key fingerprint is SHA256:N+YiDoBn7fXwcUXTo+7j9EH6RKRPS29yYkNGi2CXmfs.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '10.0.0.236' (ECDSA) to the list of known hosts.
Welcome to Ubuntu 20.04.1 LTS (GNU/Linux 5.4.0-51-generic x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage
Last login: Mon Oct 19 19:14:01 2020
ubuntu@ubuntu-2004:~$     # logined
Matched Content