CentOS Stream 9
Sponsored Link

OpenStack Yoga : Neutron Network (VXLAN)2022/06/09

 
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 has 2 network interfaces.
------------+-----------------------------+-----------------------------+------------
            |                             |                             |
        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  httpd     |     |   Neutron Metadata    |     |      Nova Compute     |
|  Keystone   Glance    |     |     Open vSwitch      |     |    Neutron L2 Agent   |
|  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]

[ml2]
type_drivers = flat,vlan,gre,vxlan
tenant_network_types =
vxlan
# add to the end

[ml2_type_flat]
flat_networks = physnet1

[ml2_type_vxlan]
vni_ranges = 1:1000

[root@dlp ~(keystone)]#
systemctl restart neutron-server

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

[root@network ~]#
ovs-vsctl add-br br-eth1
# 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_types]

[ml2]
type_drivers = flat,vlan,gre,vxlan
tenant_network_types =
vxlan
# add to the end

[ml2_type_flat]
flat_networks = physnet1

[ml2_type_vxlan]
vni_ranges = 1:1000

[root@network ~]#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# add to the end

[agent]
tunnel_types = vxlan
prevent_arp_spoofing = True

[ovs]
# specify IP address of this host for [local_ip]
local_ip = 10.0.0.50
bridge_mappings = physnet1:br-eth1

[root@network ~]#
systemctl restart neutron-dhcp-agent neutron-l3-agent neutron-metadata-agent neutron-openvswitch-agent
# if Firewalld is running, allow VXLAN port

[root@network ~]#
firewall-cmd --add-port=4789/udp

[root@network ~]#
firewall-cmd --runtime-to-permanent

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

[ml2]
type_drivers = flat,vlan,gre,vxlan
tenant_network_types =
vxlan
# add to the end

[ml2_type_flat]
flat_networks = physnet1

[ml2_type_vxlan]
vni_ranges = 1:1000

[root@node01 ~]#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# add to the end

[agent]
tunnel_types = vxlan
prevent_arp_spoofing = True

[ovs]
# specify IP address of this host for [local_ip]
local_ip = 10.0.0.51

[root@node01 ~]#
systemctl restart neutron-openvswitch-agent
# if Firewalld is running, allow VXLAN port

[root@node01 ~]#
firewall-cmd --add-port=4789/udp

[root@node01 ~]#
firewall-cmd --runtime-to-permanent

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

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| admin_state_up          | UP                                   |
| availability_zone_hints |                                      |
| availability_zones      |                                      |
| created_at              | 2022-06-09T05:46:22Z                 |
| description             |                                      |
| distributed             | False                                |
| external_gateway_info   | null                                 |
| flavor_id               | None                                 |
| ha                      | False                                |
| id                      | 7d0e1d86-8f43-4167-b646-306cddf3cce7 |
| name                    | router01                             |
| project_id              | 9c8b7457e8db4cbc995a767706804b70     |
| revision_number         | 1                                    |
| routes                  |                                      |
| status                  | ACTIVE                               |
| tags                    |                                      |
| updated_at              | 2022-06-09T05:46:22Z                 |
+-------------------------+--------------------------------------+
[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                | 2022-06-09T05:46:42Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | 7b7f51d4-d7ee-489e-a994-9be9ef7643ba |
| 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                | 9c8b7457e8db4cbc995a767706804b70     |
| provider:network_type     | vxlan                                |
| provider:physical_network | None                                 |
| provider:segmentation_id  | 425                                  |
| qos_policy_id             | None                                 |
| revision_number           | 1                                    |
| router:external           | Internal                             |
| segments                  | None                                 |
| shared                    | False                                |
| status                    | ACTIVE                               |
| subnets                   |                                      |
| tags                      |                                      |
| updated_at                | 2022-06-09T05:46:42Z                 |
+---------------------------+--------------------------------------+

# create subnet in the 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           | 2022-06-09T05:47:13Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | True                                 |
| gateway_ip           | 192.168.100.1                        |
| host_routes          |                                      |
| id                   | 3a78aa78-4837-4fca-9501-281098623c2a |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | private-subnet                       |
| network_id           | 7b7f51d4-d7ee-489e-a994-9be9ef7643ba |
| project_id           | 9c8b7457e8db4cbc995a767706804b70     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2022-06-09T05:47:13Z                 |
+----------------------+--------------------------------------+

# set internal network 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                | 2022-06-09T05:47:48Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | a9f536d5-9564-44d8-9549-c57016cc4d56 |
| 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                | 9c8b7457e8db4cbc995a767706804b70     |
| 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                | 2022-06-09T05:47:48Z                 |
+---------------------------+--------------------------------------+

# create subnet in the 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           | 2022-06-09T05:48:14Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | False                                |
| gateway_ip           | 10.0.0.1                             |
| host_routes          |                                      |
| id                   | 094d3151-1776-413d-85f1-6ede4fd7c7f9 |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | public-subnet                        |
| network_id           | a9f536d5-9564-44d8-9549-c57016cc4d56 |
| project_id           | 9c8b7457e8db4cbc995a767706804b70     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2022-06-09T05:48:14Z                 |
+----------------------+--------------------------------------+

# 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, however, for internal network, only admin projects can access to it, so grant access permission of 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                            |
+--------------------------------------+-------------+--------------------------------------+
| 4f5523bf-9206-45e1-94d6-cb60faed5095 | network     | a9f536d5-9564-44d8-9549-c57016cc4d56 |
+--------------------------------------+-------------+--------------------------------------+

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

[root@dlp ~(keystone)]#
openstack network rbac show 4f5523bf-9206-45e1-94d6-cb60faed5095

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| action            | access_as_external                   |
| id                | 4f5523bf-9206-45e1-94d6-cb60faed5095 |
| name              | None                                 |
| object_id         | a9f536d5-9564-44d8-9549-c57016cc4d56 |
| object_type       | network                              |
| project_id        | 9c8b7457e8db4cbc995a767706804b70     |
| target_project_id | *                                    |
+-------------------+--------------------------------------+

# show network list

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

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| 7b7f51d4-d7ee-489e-a994-9be9ef7643ba | private | 3a78aa78-4837-4fca-9501-281098623c2a |
| a9f536d5-9564-44d8-9549-c57016cc4d56 | public  | 094d3151-1776-413d-85f1-6ede4fd7c7f9 |
+--------------------------------------+---------+--------------------------------------+

# show project list

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

+----------------------------------+-----------+
| ID                               | Name      |
+----------------------------------+-----------+
| 0f2625947bf0433a9519ba8a29434bdf | service   |
| 911e5ff7686741c782d6acc6d7155db1 | hiroshima |
| 9c8b7457e8db4cbc995a767706804b70 | 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                | c36dc88d-039d-4887-9050-37f4871bac20 |
| name              | None                                 |
| object_id         | 7b7f51d4-d7ee-489e-a994-9be9ef7643ba |
| object_type       | network                              |
| project_id        | 9c8b7457e8db4cbc995a767706804b70     |
| target_project_id | 911e5ff7686741c782d6acc6d7155db1     |
+-------------------+--------------------------------------+
[8] Login with a user who is in the project you granted access permission to internal network and Create and boot an instance.
# show available [flavor] list

[cent@dlp ~(keystone)]$
openstack flavor list

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

# show available image list

[cent@dlp ~(keystone)]$
openstack image list

+--------------------------------------+----------------+--------+
| ID                                   | Name           | Status |
+--------------------------------------+----------------+--------+
| 1044ab46-c42b-4cf6-ab1f-aaeb011fb3b9 | CentOS-Stream9 | active |
+--------------------------------------+----------------+--------+

# show available network list

[cent@dlp ~(keystone)]$
openstack network list

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| 7b7f51d4-d7ee-489e-a994-9be9ef7643ba | private | 3a78aa78-4837-4fca-9501-281098623c2a |
| a9f536d5-9564-44d8-9549-c57016cc4d56 | public  | 094d3151-1776-413d-85f1-6ede4fd7c7f9 |
+--------------------------------------+---------+--------------------------------------+

# create a security group for instances

[cent@dlp ~(keystone)]$
openstack security group create secgroup01

+-----------------+---------------------------------------------------------------------------+
| Field           | Value                                                                     |
+-----------------+---------------------------------------------------------------------------+
| created_at      | 2022-06-09T05:20:22Z                                                      |
| description     | secgroup01                                                                |
| id              | d1c70f18-9f03-4488-a068-f0141ccbe0a2                                      |
| name            | secgroup01                                                                |
| project_id      | 911e5ff7686741c782d6acc6d7155db1                                          |
| revision_number | 1                                                                         |
| rules           | created_at='2022-06-09T05:20:22Z', direction='egress', ethertype='IPv6... |
|                 | created_at='2022-06-09T05:20:22Z', direction='egress', ethertype='IPv4... |
| stateful        | True                                                                      |
| tags            | []                                                                        |
| updated_at      | 2022-06-09T05:20:22Z                                                      |
+-----------------+---------------------------------------------------------------------------+

# create an SSH keypair for connecting to instances

[cent@dlp ~(keystone)]$
ssh-keygen -q -N ""

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

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

+-------------+-------------------------------------------------+
| Field       | Value                                           |
+-------------+-------------------------------------------------+
| created_at  | None                                            |
| fingerprint | 15:10:d2:c1:39:e8:87:ef:35:6d:69:3c:f3:0a:4c:7d |
| id          | mykey                                           |
| is_deleted  | None                                            |
| name        | mykey                                           |
| type        | ssh                                             |
| user_id     | 1ff4591a7f8140fcad38fd9f606a66a6                |
+-------------+-------------------------------------------------+

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

[cent@dlp ~(keystone)]$
openstack server create --flavor m1.small --image CentOS-Stream9 --security-group secgroup01 --nic net-id=$netID --key-name mykey CentOS-St9
[cent@dlp ~(keystone)]$
openstack server list

+--------------------------------------+------------+--------+-----------------------+----------------+----------+
| ID                                   | Name       | Status | Networks              | Image          | Flavor   |
+--------------------------------------+------------+--------+-----------------------+----------------+----------+
| e80baac5-59b5-4ed9-8ec1-3c0f6f8d3567 | CentOS-St9 | ACTIVE | private=192.168.100.7 | CentOS-Stream9 | m1.small |
+--------------------------------------+------------+--------+-----------------------+----------------+----------+
[9] Assign floating IP address to the Instance above.
[cent@dlp ~(keystone)]$
openstack floating ip create public

+---------------------+--------------------------------------+
| Field               | Value                                |
+---------------------+--------------------------------------+
| created_at          | 2022-06-09T05:57:05Z                 |
| description         |                                      |
| dns_domain          | None                                 |
| dns_name            | None                                 |
| fixed_ip_address    | None                                 |
| floating_ip_address | 10.0.0.221                           |
| floating_network_id | a9f536d5-9564-44d8-9549-c57016cc4d56 |
| id                  | b486809d-4152-4060-ab2c-4f12fc8e74b9 |
| name                | 10.0.0.221                           |
| port_details        | None                                 |
| port_id             | None                                 |
| project_id          | 911e5ff7686741c782d6acc6d7155db1     |
| qos_policy_id       | None                                 |
| revision_number     | 0                                    |
| router_id           | None                                 |
| status              | DOWN                                 |
| subnet_id           | None                                 |
| tags                | []                                   |
| updated_at          | 2022-06-09T05:57:05Z                 |
+---------------------+--------------------------------------+

[cent@dlp ~(keystone)]$
openstack server add floating ip CentOS-St9 10.0.0.221
# confirm settings

[cent@dlp ~(keystone)]$
openstack floating ip show 10.0.0.221

+---------------------+--------------------------------------------------------------------------+
| Field               | Value                                                                    |
+---------------------+--------------------------------------------------------------------------+
| created_at          | 2022-06-09T05:57:05Z                                                     |
| description         |                                                                          |
| dns_domain          | None                                                                     |
| dns_name            | None                                                                     |
| fixed_ip_address    | 192.168.100.7                                                            |
| floating_ip_address | 10.0.0.221                                                               |
| floating_network_id | a9f536d5-9564-44d8-9549-c57016cc4d56                                     |
| id                  | b486809d-4152-4060-ab2c-4f12fc8e74b9                                     |
| name                | 10.0.0.221                                                               |
| port_details        | admin_state_up='True', device_id='e80baac5-59b5-4ed9-8ec1-3c0f6f8d356... |
| port_id             | d657df87-aa26-4ff5-a994-c1e6a3bc16fc                                     |
| project_id          | 911e5ff7686741c782d6acc6d7155db1                                         |
| qos_policy_id       | None                                                                     |
| revision_number     | 2                                                                        |
| router_id           | 7d0e1d86-8f43-4167-b646-306cddf3cce7                                     |
| status              | ACTIVE                                                                   |
| subnet_id           | None                                                                     |
| tags                | []                                                                       |
| updated_at          | 2022-06-09T05:57:39Z                                                     |
+---------------------+--------------------------------------------------------------------------+

[cent@dlp ~(keystone)]$
openstack server list

+--------------------------------------+------------+--------+-----------------------------------+----------------+----------+
| ID                                   | Name       | Status | Networks                          | Image          | Flavor   |
+--------------------------------------+------------+--------+-----------------------------------+----------------+----------+
| e80baac5-59b5-4ed9-8ec1-3c0f6f8d3567 | CentOS-St9 | ACTIVE | private=10.0.0.221, 192.168.100.7 | CentOS-Stream9 | m1.small |
+--------------------------------------+------------+--------+-----------------------------------+----------------+----------+
[10] Configure security settings for the security group you created above to access with SSH and ICMP.
# permit ICMP

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

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| created_at              | 2022-06-09T05:24:36Z                 |
| description             |                                      |
| direction               | ingress                              |
| ether_type              | IPv4                                 |
| id                      | d2027564-c653-42ff-b5cb-4b8df2515b8d |
| name                    | None                                 |
| port_range_max          | None                                 |
| port_range_min          | None                                 |
| project_id              | 911e5ff7686741c782d6acc6d7155db1     |
| 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       | d1c70f18-9f03-4488-a068-f0141ccbe0a2 |
| tags                    | []                                   |
| tenant_id               | 911e5ff7686741c782d6acc6d7155db1     |
| updated_at              | 2022-06-09T05:24:36Z                 |
+-------------------------+--------------------------------------+

# permit SSH

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

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| created_at              | 2022-06-09T05:24:51Z                 |
| description             |                                      |
| direction               | ingress                              |
| ether_type              | IPv4                                 |
| id                      | d0bdbab6-a1f7-48fe-92e6-30675bbb6467 |
| name                    | None                                 |
| port_range_max          | 22                                   |
| port_range_min          | 22                                   |
| project_id              | 911e5ff7686741c782d6acc6d7155db1     |
| 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       | d1c70f18-9f03-4488-a068-f0141ccbe0a2 |
| tags                    | []                                   |
| tenant_id               | 911e5ff7686741c782d6acc6d7155db1     |
| updated_at              | 2022-06-09T05:24:51Z                 |
+-------------------------+--------------------------------------+

[cent@dlp ~(keystone)]$
openstack security group rule list secgroup01

+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
| ID                                   | IP Protocol | Ethertype | IP Range  | Port Range | Direction | Remote Security Group | Remote Address Group |
+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
| 439d5a6a-878c-46cd-acfd-1e7aaeae5719 | None        | IPv6      | ::/0      |            | egress    | None                  | None                 |
| 4c2ef761-1f56-4e5a-a77d-377b59d6ac11 | None        | IPv4      | 0.0.0.0/0 |            | egress    | None                  | None                 |
| d0bdbab6-a1f7-48fe-92e6-30675bbb6467 | tcp         | IPv4      | 0.0.0.0/0 | 22:22      | ingress   | None                  | None                 |
| d2027564-c653-42ff-b5cb-4b8df2515b8d | icmp        | IPv4      | 0.0.0.0/0 |            | ingress   | None                  | None                 |
+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
[11] It's possible to login to the Instance to connect to the floating IP address with SSH like follows.
[cent@dlp ~(keystone)]$
openstack server list

+--------------------------------------+------------+--------+-----------------------------------+----------------+----------+
| ID                                   | Name       | Status | Networks                          | Image          | Flavor   |
+--------------------------------------+------------+--------+-----------------------------------+----------------+----------+
| e80baac5-59b5-4ed9-8ec1-3c0f6f8d3567 | CentOS-St9 | ACTIVE | private=10.0.0.221, 192.168.100.7 | CentOS-Stream9 | m1.small |
+--------------------------------------+------------+--------+-----------------------------------+----------------+----------+

[cent@dlp ~(keystone)]$
ssh centos@10.0.0.221

The authenticity of host '10.0.0.221 (10.0.0.221)' can't be established.
ED25519 key fingerprint is SHA256:edmnr+uVNmmO8izMAqkuB4QorB3bpoohZnCKK6aAtmM.
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.221' (ED25519) to the list of known hosts.
[centos@centos-st9 ~]$     # logined
Matched Content