Debian 12 bookworm
Sponsored Link

OpenStack Zed : Neutron Network (VXLAN)2023/03/24

 
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
+-----------+-----------+  +-----------+-----------+  +-----------+-----------+
|   [ dlp.srv.world ]   |  | [ network.srv.world ] |  |  [ node01.srv.world ] |
|     (Control Node)    |  |     (Network Node)    |  |     (Compute Node)    |
|                       |  |                       |  |                       |
|  MariaDB    RabbitMQ  |  |  Neutron L2/L3 Agent  |  |        Libvirt        |
|  Memcached  Nginx     |  |   Neutron Metadata    |  |      Nova Compute     |
|  Keystone   httpd     |  |     Open vSwitch      |  |    Neutron L2 Agent   |
|  Glance     Nova API  |  |                       |  |      Open vSwitch     |
|  Neutron Server       |  |                       |  |                       |
|  Neutron Metadata     |  |                       |  |                       |
+-----------------------+  +-----------+-----------+  +-----------------------+
                                   eth1|(UP with no IP)

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

tenant_network_types =
vxlan
# add a line under [ml2_type_flat] section

[ml2_type_flat]
flat_networks = physnet1
# add a line under [ml2_type_vxlan] section

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

[2] Change settings on Network Node.
# add bridge

root@network:~#
ovs-vsctl add-br br-eth1

root@network:~#
ip link set br-eth1 up

root@network:~#
echo -e '\nauto br-eth1\niface br-eth1 inet manual' >> /etc/network/interfaces
# add [eth1] to the port of the bridge above
# replace the interface name [eth1] to your own environment

root@network:~#
ovs-vsctl add-port br-eth1 eth1
root@network:~#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# add a value to [tenant_network_type]

tenant_network_types =
vxlan
# add a line under [ml2_type_flat] section

[ml2_type_flat]
flat_networks = physnet1
# add a line under [ml2_type_vxlan] section

[ml2_type_vxlan]
vni_ranges = 1:1000
root@network:~#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# add a line under [agent] section

[agent]
tunnel_types = vxlan
prevent_arp_spoofing = True
# add a line under [ovs] section

[ovs]
local_ip = 10.0.0.50
bridge_mappings = physnet1:br-eth1
root@network:~#
vi /etc/neutron/dhcp_agent.ini
# line 68 : 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:~#
systemctl restart neutron-l3-agent neutron-dhcp-agent neutron-metadata-agent neutron-openvswitch-agent

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

tenant_network_types =
vxlan
# add a line under [ml2_type_flat] section

[ml2_type_flat]
flat_networks = physnet1
# add a line under [ml2_type_vxlan] section

[ml2_type_vxlan]
vni_ranges = 1:1000
root@node01:~#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# add a line under [agent] section

[agent]
tunnel_types = vxlan
prevent_arp_spoofing = True
# add a line under [ovs] section : specify IP address of this host

[ovs]
local_ip = 10.0.0.51
root@node01:~#
systemctl restart neutron-openvswitch-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              | 2023-06-28T05:17:21Z                 |
| description             |                                      |
| distributed             | False                                |
| enable_ndp_proxy        | None                                 |
| external_gateway_info   | null                                 |
| flavor_id               | None                                 |
| ha                      | False                                |
| id                      | 9986dcc9-1191-4f98-a7c8-0be5afd4d7f9 |
| name                    | router01                             |
| project_id              | 757625ae78404e38a8cfdd7c6d262860     |
| revision_number         | 1                                    |
| routes                  |                                      |
| status                  | ACTIVE                               |
| tags                    |                                      |
| tenant_id               | 757625ae78404e38a8cfdd7c6d262860     |
| updated_at              | 2023-06-28T05:17:21Z                 |
+-------------------------+--------------------------------------+
[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                | 2023-06-28T05:17:42Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | ae5fdb1f-efb9-412b-9053-b81106c90336 |
| 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                | 757625ae78404e38a8cfdd7c6d262860     |
| provider:network_type     | vxlan                                |
| provider:physical_network | None                                 |
| provider:segmentation_id  | 40                                   |
| qos_policy_id             | None                                 |
| revision_number           | 1                                    |
| router:external           | Internal                             |
| segments                  | None                                 |
| shared                    | False                                |
| status                    | ACTIVE                               |
| subnets                   |                                      |
| tags                      |                                      |
| updated_at                | 2023-06-28T05:17:42Z                 |
+---------------------------+--------------------------------------+

# 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           | 2023-06-28T05:18:08Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | True                                 |
| gateway_ip           | 192.168.100.1                        |
| host_routes          |                                      |
| id                   | b3234f3f-b3e3-41d2-b3a4-ca3d4ec55d24 |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | private-subnet                       |
| network_id           | ae5fdb1f-efb9-412b-9053-b81106c90336 |
| project_id           | 757625ae78404e38a8cfdd7c6d262860     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2023-06-28T05:18:08Z                 |
+----------------------+--------------------------------------+

# 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                | 2023-06-28T05:18:37Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | b9b8536b-0696-4a5b-af05-602587435c0a |
| 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                | 757625ae78404e38a8cfdd7c6d262860     |
| 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                | 2023-06-28T05:18:37Z                 |
+---------------------------+--------------------------------------+

# 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           | 2023-06-28T05:18:58Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | False                                |
| gateway_ip           | 10.0.0.1                             |
| host_routes          |                                      |
| id                   | 0129c597-e411-450e-a4f9-b387c68eddb3 |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | public-subnet                        |
| network_id           | b9b8536b-0696-4a5b-af05-602587435c0a |
| project_id           | 757625ae78404e38a8cfdd7c6d262860     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2023-06-28T05:18:58Z                 |
+----------------------+--------------------------------------+

# 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                            |
+--------------------------------------+-------------+--------------------------------------+
| 2d404daa-c24b-48f6-a4d8-9f9c21ca5897 | network     | b9b8536b-0696-4a5b-af05-602587435c0a |
+--------------------------------------+-------------+--------------------------------------+

# RBAC details
# all projects can access only to [access_as_external]

root@dlp ~(keystone)#
openstack network rbac show 2d404daa-c24b-48f6-a4d8-9f9c21ca5897

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| action            | access_as_external                   |
| id                | 2d404daa-c24b-48f6-a4d8-9f9c21ca5897 |
| object_id         | b9b8536b-0696-4a5b-af05-602587435c0a |
| object_type       | network                              |
| project_id        | 757625ae78404e38a8cfdd7c6d262860     |
| target_project_id | *                                    |
+-------------------+--------------------------------------+

# show network list

root@dlp ~(keystone)#
openstack network list

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| ae5fdb1f-efb9-412b-9053-b81106c90336 | private | b3234f3f-b3e3-41d2-b3a4-ca3d4ec55d24 |
| b9b8536b-0696-4a5b-af05-602587435c0a | public  | 0129c597-e411-450e-a4f9-b387c68eddb3 |
+--------------------------------------+---------+--------------------------------------+

# show project list

root@dlp ~(keystone)#
openstack project list

+----------------------------------+-----------+
| ID                               | Name      |
+----------------------------------+-----------+
| 1c2f5dc8c4f9494fbaaa4217c8e3585a | hiroshima |
| 757625ae78404e38a8cfdd7c6d262860 | admin     |
| d8b09d86ed7743039f92b2e542ea26c1 | service   |
+----------------------------------+-----------+

# 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                | f49116ef-475a-411d-a568-142462401cc4 |
| object_id         | ae5fdb1f-efb9-412b-9053-b81106c90336 |
| object_type       | network                              |
| project_id        | 757625ae78404e38a8cfdd7c6d262860     |
| target_project_id | 1c2f5dc8c4f9494fbaaa4217c8e3585a     |
+-------------------+--------------------------------------+
[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

debian@dlp ~(keystone)$
openstack flavor list

+----+-----------+------+------+-----------+-------+-----------+
| ID | Name      |  RAM | Disk | Ephemeral | VCPUs | Is Public |
+----+-----------+------+------+-----------+-------+-----------+
| 1  | m1.small  | 2048 |   10 |         0 |     1 | True      |
| 2  | m1.medium | 4096 |   10 |         0 |     2 | True      |
| 3  | m1.large  | 8192 |   10 |         0 |     4 | True      |
| 4  | m2.large  | 8192 |   10 |        10 |     4 | True      |
| 5  | m3.large  | 8192 |   20 |         0 |     4 | True      |
+----+-----------+------+------+-----------+-------+-----------+

# confirm available image list

debian@dlp ~(keystone)$
openstack image list

+--------------------------------------+----------+--------+
| ID                                   | Name     | Status |
+--------------------------------------+----------+--------+
| 3a660af6-3f41-4c0f-b2a8-55127dfc3c60 | Debian12 | active |
+--------------------------------------+----------+--------+

# confirm available network list

debian@dlp ~(keystone)$
openstack network list

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| ae5fdb1f-efb9-412b-9053-b81106c90336 | private | b3234f3f-b3e3-41d2-b3a4-ca3d4ec55d24 |
| b9b8536b-0696-4a5b-af05-602587435c0a | public  | 0129c597-e411-450e-a4f9-b387c68eddb3 |
+--------------------------------------+---------+--------------------------------------+

# create a security group for instances

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

+-----------------+-----------------------------------------------------------------------------+
| Field           | Value                                                                       |
+-----------------+-----------------------------------------------------------------------------+
| created_at      | 2023-06-28T04:47:25Z                                                        |
| description     | secgroup01                                                                  |
| id              | bd1040a7-caab-477e-a1bb-add49bb8f16a                                        |
| name            | secgroup01                                                                  |
| project_id      | 1c2f5dc8c4f9494fbaaa4217c8e3585a                                            |
| revision_number | 1                                                                           |
| rules           | created_at='2023-06-28T04:47:25Z', direction='egress', ethertype='IPv4',... |
|                 | created_at='2023-06-28T04:47:25Z', direction='egress', ethertype='IPv6',... |
| stateful        | True                                                                        |
| tags            | []                                                                          |
| updated_at      | 2023-06-28T04:47:25Z                                                        |
+-----------------+-----------------------------------------------------------------------------+

# create an SSH keypair for connecting to instances

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

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

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

+-------------+-------------------------------------------------+
| Field       | Value                                           |
+-------------+-------------------------------------------------+
| created_at  | None                                            |
| fingerprint | 7d:e7:1f:33:80:d7:85:02:43:a9:07:52:b5:cd:be:3d |
| id          | mykey                                           |
| is_deleted  | None                                            |
| name        | mykey                                           |
| type        | ssh                                             |
| user_id     | de51d5f0ee2c485885877d21f5b424e0                |
+-------------+-------------------------------------------------+

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

debian@dlp ~(keystone)$
openstack server create --flavor m1.medium --image Debian12 --security-group secgroup01 --nic net-id=$netID --key-name mykey Debian-12
debian@dlp ~(keystone)$
openstack server list

+--------------------------------------+-----------+--------+------------------------+----------+-----------+
| ID                                   | Name      | Status | Networks               | Image    | Flavor    |
+--------------------------------------+-----------+--------+------------------------+----------+-----------+
| c3a4a792-a7ac-41bd-8c93-7fd162016f22 | Debian-12 | ACTIVE | private=192.168.100.66 | Debian12 | m1.medium |
+--------------------------------------+-----------+--------+------------------------+----------+-----------+
[9] Assign floating IP address to the Instance above.
debian@dlp ~(keystone)$
openstack floating ip create public

+---------------------+--------------------------------------+
| Field               | Value                                |
+---------------------+--------------------------------------+
| created_at          | 2023-06-28T05:25:12Z                 |
| description         |                                      |
| dns_domain          | None                                 |
| dns_name            | None                                 |
| fixed_ip_address    | None                                 |
| floating_ip_address | 10.0.0.241                           |
| floating_network_id | b9b8536b-0696-4a5b-af05-602587435c0a |
| id                  | 9187bb70-90ed-4c7a-9215-ee7e4aaadbb1 |
| name                | 10.0.0.241                           |
| port_details        | None                                 |
| port_id             | None                                 |
| project_id          | 1c2f5dc8c4f9494fbaaa4217c8e3585a     |
| qos_policy_id       | None                                 |
| revision_number     | 0                                    |
| router_id           | None                                 |
| status              | DOWN                                 |
| subnet_id           | None                                 |
| tags                | []                                   |
| updated_at          | 2023-06-28T05:25:12Z                 |
+---------------------+--------------------------------------+

debian@dlp ~(keystone)$
openstack server add floating ip Debian-12 10.0.0.241
# confirm settings

debian@dlp ~(keystone)$
openstack floating ip show 10.0.0.234

+---------------------+---------------------------------------------------------------------------+
| Field               | Value                                                                     |
+---------------------+---------------------------------------------------------------------------+
| created_at          | 2023-06-28T05:25:12Z                                                      |
| description         |                                                                           |
| dns_domain          | None                                                                      |
| dns_name            | None                                                                      |
| fixed_ip_address    | 192.168.100.66                                                            |
| floating_ip_address | 10.0.0.241                                                                |
| floating_network_id | b9b8536b-0696-4a5b-af05-602587435c0a                                      |
| id                  | 9187bb70-90ed-4c7a-9215-ee7e4aaadbb1                                      |
| name                | 10.0.0.241                                                                |
| port_details        | admin_state_up='True', device_id='c3a4a792-a7ac-41bd-8c93-7fd162016f22... |
| port_id             | b1189c54-2fe8-4930-88dd-fa5cd43f74ba                                      |
| project_id          | 1c2f5dc8c4f9494fbaaa4217c8e3585a                                          |
| qos_policy_id       | None                                                                      |
| revision_number     | 2                                                                         |
| router_id           | 9986dcc9-1191-4f98-a7c8-0be5afd4d7f9                                      |
| status              | ACTIVE                                                                    |
| subnet_id           | None                                                                      |
| tags                | []                                                                        |
| updated_at          | 2023-06-28T05:25:49Z                                                      |
+---------------------+---------------------------------------------------------------------------+

debian@dlp ~(keystone)$
openstack server list

+--------------------------------------+-----------+--------+------------------------------------+----------+-----------+
| ID                                   | Name      | Status | Networks                           | Image    | Flavor    |
+--------------------------------------+-----------+--------+------------------------------------+----------+-----------+
| c3a4a792-a7ac-41bd-8c93-7fd162016f22 | Debian-12 | ACTIVE | private=10.0.0.241, 192.168.100.66 | Debian12 | m1.medium |
+--------------------------------------+-----------+--------+------------------------------------+----------+-----------+
[10] Configure security settings for the security group you created above to access with SSH and ICMP.
# permit ICMP

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

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| created_at              | 2023-06-28T04:50:12Z                 |
| description             |                                      |
| direction               | ingress                              |
| ether_type              | IPv4                                 |
| id                      | 3c94d258-49ad-4074-9674-f5ab2f857881 |
| name                    | None                                 |
| port_range_max          | None                                 |
| port_range_min          | None                                 |
| project_id              | 1c2f5dc8c4f9494fbaaa4217c8e3585a     |
| protocol                | icmp                                 |
| remote_address_group_id | None                                 |
| remote_group_id         | None                                 |
| remote_ip_prefix        | 0.0.0.0/0                            |
| revision_number         | 0                                    |
| security_group_id       | bd1040a7-caab-477e-a1bb-add49bb8f16a |
| tags                    | []                                   |
| updated_at              | 2023-06-28T04:50:12Z                 |
+-------------------------+--------------------------------------+

# permit SSH

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

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| created_at              | 2023-06-28T04:50:30Z                 |
| description             |                                      |
| direction               | ingress                              |
| ether_type              | IPv4                                 |
| id                      | 7dcb363a-130b-4c0a-a0b3-17e1ad4ab3c5 |
| name                    | None                                 |
| port_range_max          | 22                                   |
| port_range_min          | 22                                   |
| project_id              | 1c2f5dc8c4f9494fbaaa4217c8e3585a     |
| protocol                | tcp                                  |
| remote_address_group_id | None                                 |
| remote_group_id         | None                                 |
| remote_ip_prefix        | 0.0.0.0/0                            |
| revision_number         | 0                                    |
| security_group_id       | bd1040a7-caab-477e-a1bb-add49bb8f16a |
| tags                    | []                                   |
| updated_at              | 2023-06-28T04:50:30Z                 |
+-------------------------+--------------------------------------+

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

+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
| ID                                   | IP Protocol | Ethertype | IP Range  | Port Range | Direction | Remote Security Group | Remote Address Group |
+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
| 3c94d258-49ad-4074-9674-f5ab2f857881 | icmp        | IPv4      | 0.0.0.0/0 |            | ingress   | None                  | None                 |
| 3d38e938-713c-47c6-8a97-ada9d5a734c8 | None        | IPv4      | 0.0.0.0/0 |            | egress    | None                  | None                 |
| 7dcb363a-130b-4c0a-a0b3-17e1ad4ab3c5 | tcp         | IPv4      | 0.0.0.0/0 | 22:22      | ingress   | None                  | None                 |
| c11e0dd7-6758-4cf7-b3f2-11359b1a6dea | None        | IPv6      | ::/0      |            | egress    | None                  | None                 |
+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
[11] It's possible to login to the Instance to connect to the floating IP address with SSH like follows.
debian@dlp ~(keystone)$
openstack server list

+--------------------------------------+-----------+--------+------------------------------------+----------+-----------+
| ID                                   | Name      | Status | Networks                           | Image    | Flavor    |
+--------------------------------------+-----------+--------+------------------------------------+----------+-----------+
| c3a4a792-a7ac-41bd-8c93-7fd162016f22 | Debian-12 | ACTIVE | private=10.0.0.241, 192.168.100.66 | Debian12 | m1.medium |
+--------------------------------------+-----------+--------+------------------------------------+----------+-----------+

debian@dlp ~(keystone)$
ssh debian@10.0.0.241

The authenticity of host '10.0.0.241 (10.0.0.241)' can't be established.
ED25519 key fingerprint is SHA256:KVRQYaFG6fRclEEpjyPVgmR1pMU5eq3y9bDH6I+rf8k.
This key is not known by any other names.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '10.0.0.241' (ED25519) to the list of known hosts.
Linux debian-12 6.1.0-9-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.27-1 (2023-05-08) x86_64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
debian@debian-12:~$     # logined
Matched Content