CentOS Stream 8
Sponsored Link

OpenStack Victoria : Neutron ネットワークを構成する (VXLAN)2021/03/23

 
OpenStack Network Service(Neutron)による仮想ネットワークの構成です。
例として、VXLAN タイプのネットワークを構成します。
事前に以下のように Control ノードNetwork ノードCompute ノードの 各 Neutron サービスノードを構築済みであることが前提です。
また、当例では Network ノードが 2つのネットワークインターフェースを持っているものとします。
------------+---------------------------+---------------------------+------------
            |                           |                           |
        eth0|10.0.0.30              eth0|10.0.0.50              eth0|10.0.0.51
+-----------+-----------+   +-----------+-----------+   +-----------+-----------+
|    [ Control Node ]   |   |    [ Network Node ]   |   |    [ Compute Node ]   |
|                       |   |                       |   |                       |
|  MariaDB    RabbitMQ  |   |      Open vSwitch     |   |        Libvirt        |
|  Memcached  httpd     |   |        L2 Agent       |   |     Nova Compute      |
|  Keystone   Glance    |   |        L3 Agent       |   |      Open vSwitch     |
|  Nova API             |   |     Metadata Agent    |   |        L2 Agent       |
|  Neutron Server       |   |                       |   |                       |
|  Metadata Agent       |   |                       |   |                       |
+-----------------------+   +-----------+-----------+   +-----------------------+
                                    eth1|(UP with no IP)

[1] Control ノードで以下のように設定変更します。
[root@dlp ~(keystone)]#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# 最終行付近:[tenant_network_types] に値を追記

[ml2]
type_drivers = flat,vlan,gre,vxlan
tenant_network_types =
vxlan
# 最終行に追記

[ml2_type_flat]
flat_networks = physnet1

[ml2_type_vxlan]
vni_ranges = 1:1000

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

[2] Network ノードで以下のように設定変更します。
# ブリッジ追加

[root@network ~]#
ovs-vsctl add-br br-eth1
# 追加したブリッジのポートに [eth1] を追加

# [eth1] は環境によって異なるため自身の名称に置き換え

[root@network ~]#
ovs-vsctl add-port br-eth1 eth1

[root@network ~]#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# 最終行付近 : [tenant_network_types] に値を追記

[ml2]
type_drivers = flat,vlan,gre,vxlan
tenant_network_types =
vxlan
# 最終行に追記

[ml2_type_flat]
flat_networks = physnet1

[ml2_type_vxlan]
vni_ranges = 1:1000

[root@network ~]#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# 最終行に追記

[agent]
tunnel_types = vxlan
prevent_arp_spoofing = True

[ovs]
# [local_ip] には当ノードのローカル IP アドレスを指定
local_ip = 10.0.0.50
bridge_mappings = physnet1:br-eth1

[root@network ~]#
for service in dhcp-agent l3-agent metadata-agent openvswitch-agent; do
systemctl restart neutron-$service
done
# Firewalld 稼働中の場合は VXLAN ポート許可

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

[root@network ~]#
firewall-cmd --reload

[3] Compute ノードで以下のように設定変更します。
[root@node01 ~]#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# 最終行付近 : [tenant_network_types] に値を追記

[ml2]
type_drivers = flat,vlan,gre,vxlan
tenant_network_types =
vxlan
# 最終行に追記

[ml2_type_flat]
flat_networks = physnet1

[ml2_type_vxlan]
vni_ranges = 1:1000

[root@node01 ~]#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# 最終行に追記

[agent]
tunnel_types = vxlan
prevent_arp_spoofing = True

[ovs]
# [local_ip] には当ノードのローカル IP アドレスを指定
local_ip = 10.0.0.51

[root@node01 ~]#
systemctl restart neutron-openvswitch-agent
# Firewalld 稼働中の場合は VXLAN ポート許可

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

[root@node01 ~]#
firewall-cmd --reload

[4] 仮想ルーターを作成します。作業場所はどこでもよいですが、当例では Control ノード上で作業します。
# 仮想ルーター作成

[root@dlp ~(keystone)]#
openstack router create router01

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| admin_state_up          | UP                                   |
| availability_zone_hints |                                      |
| availability_zones      |                                      |
| created_at              | 2021-03-24T00:05:57Z                 |
| description             |                                      |
| distributed             | False                                |
| external_gateway_info   | null                                 |
| flavor_id               | None                                 |
| ha                      | False                                |
| id                      | dd0a67e0-42e0-4d93-a42f-cf345d0fea79 |
| name                    | router01                             |
| project_id              | b9bf51c6436a4c5aa7a2df05688afb49     |
| revision_number         | 1                                    |
| routes                  |                                      |
| status                  | ACTIVE                               |
| tags                    |                                      |
| updated_at              | 2021-03-24T00:05:57Z                 |
+-------------------------+--------------------------------------+
[5] 内部用のネットワークを作成し、仮想ルーターに関連付けます。
# 内部用ネットワーク作成

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

+---------------------------+--------------------------------------+
| Field                     | Value                                |
+---------------------------+--------------------------------------+
| admin_state_up            | UP                                   |
| availability_zone_hints   |                                      |
| availability_zones        |                                      |
| created_at                | 2021-03-24T00:06:12Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | a14137f4-154d-474d-9734-9075c933b753 |
| 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                | b9bf51c6436a4c5aa7a2df05688afb49     |
| 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                | 2021-03-24T00:06:12Z                 |
+---------------------------+--------------------------------------+

# 内部用ネットワークにサブネット作成

[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           | 2021-03-24T00:06:33Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | True                                 |
| gateway_ip           | 192.168.100.1                        |
| host_routes          |                                      |
| id                   | 1cd73488-e8d0-400e-b2ae-f4dd81a0c8de |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | private-subnet                       |
| network_id           | a14137f4-154d-474d-9734-9075c933b753 |
| prefix_length        | None                                 |
| project_id           | b9bf51c6436a4c5aa7a2df05688afb49     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2021-03-24T00:06:33Z                 |
+----------------------+--------------------------------------+

# 仮想ルーターに内部ネットワークを設定

[root@dlp ~(keystone)]#
openstack router add subnet router01 private-subnet
[6] 外部接続用のネットワークを作成し、仮想ルーターに関連付けます。
# 外部用ネットワーク作成

[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                | 2021-03-24T00:08:13Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | 1a9cb99b-35e6-42ec-a2ea-c3e411128893 |
| 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                | b9bf51c6436a4c5aa7a2df05688afb49     |
| 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                | 2021-03-24T00:08:13Z                 |
+---------------------------+--------------------------------------+

# 外部用ネットワークにサブネット作成

[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           | 2021-03-24T00:08:34Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | False                                |
| gateway_ip           | 10.0.0.1                             |
| host_routes          |                                      |
| id                   | be766543-fc5f-43d4-b274-39d31d2d5836 |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | public-subnet                        |
| network_id           | 1a9cb99b-35e6-42ec-a2ea-c3e411128893 |
| prefix_length        | None                                 |
| project_id           | b9bf51c6436a4c5aa7a2df05688afb49     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2021-03-24T00:08:34Z                 |
+----------------------+--------------------------------------+

# 仮想ルーターにゲートウェイを設定

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

[7] 作成したネットワークは、外部用はデフォルトで全プロジェクトがアクセス可能ですが、内部用はデフォルトでは [admin] プロジェクトのみがアクセス可能なため、内部ネットワークを利用させたいプロジェクトにアクセス権限を付与しておきます。
# ネットワーク RBAC リスト表示

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

+--------------------------------------+-------------+--------------------------------------+
| ID                                   | Object Type | Object ID                            |
+--------------------------------------+-------------+--------------------------------------+
| e10d9514-48af-473d-83c9-f214108c4ec3 | network     | 1a9cb99b-35e6-42ec-a2ea-c3e411128893 |
+--------------------------------------+-------------+--------------------------------------+

# RBAC の詳細

# [access_as_external] のみ全プロジェクトがアクセス可能な状態

[root@dlp ~(keystone)]#
openstack network rbac show e10d9514-48af-473d-83c9-f214108c4ec3

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| action            | access_as_external                   |
| id                | e10d9514-48af-473d-83c9-f214108c4ec3 |
| name              | None                                 |
| object_id         | 1a9cb99b-35e6-42ec-a2ea-c3e411128893 |
| object_type       | network                              |
| project_id        | b9bf51c6436a4c5aa7a2df05688afb49     |
| target_project_id | *                                    |
+-------------------+--------------------------------------+

# 作成済みネットワーク一覧

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

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| 1a9cb99b-35e6-42ec-a2ea-c3e411128893 | public  | be766543-fc5f-43d4-b274-39d31d2d5836 |
| a14137f4-154d-474d-9734-9075c933b753 | private | 1cd73488-e8d0-400e-b2ae-f4dd81a0c8de |
+--------------------------------------+---------+--------------------------------------+

# 作成済みプロジェクト一覧

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

+----------------------------------+-----------+
| ID                               | Name      |
+----------------------------------+-----------+
| affa3a6446154e37adfd233c437bacc1 | service   |
| b9bf51c6436a4c5aa7a2df05688afb49 | admin     |
| f1f04d774d2141fb9acabd28d0e00c33 | hiroshima |
+----------------------------------+-----------+

# [private] への [access_as_shared] アクセス権を [hiroshima] プロジェクトに付与

[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                | f4a9347d-3878-41a2-b85b-52a6aa1421df |
| name              | None                                 |
| object_id         | a14137f4-154d-474d-9734-9075c933b753 |
| object_type       | network                              |
| project_id        | b9bf51c6436a4c5aa7a2df05688afb49     |
| target_project_id | f1f04d774d2141fb9acabd28d0e00c33     |
+-------------------+--------------------------------------+
[8] 内部ネットワークへのアクセス権を付与したプロジェクトに所属する任意のユーザーでログインし、 作成した内部ネットワークをインスタンスに紐付けてインスタンスを作成/起動します。
# 利用可能な [flavor] 確認

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

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

# 利用可能なイメージ確認

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

+--------------------------------------+-----------------+--------+
| ID                                   | Name            | Status |
+--------------------------------------+-----------------+--------+
| 4d7293af-be5b-471b-9507-2a32f1955b11 | CentOS-Stream-8 | active |
+--------------------------------------+-----------------+--------+

# 利用可能なネットワーク確認

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

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| 1a9cb99b-35e6-42ec-a2ea-c3e411128893 | public  | be766543-fc5f-43d4-b274-39d31d2d5836 |
| a14137f4-154d-474d-9734-9075c933b753 | private | 1cd73488-e8d0-400e-b2ae-f4dd81a0c8de |
+--------------------------------------+---------+--------------------------------------+

# インスタンス用のセキュリティグループを作成

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

+-----------------+------------------------------------------------------------------------+
| Field           | Value                                                                  |
+-----------------+------------------------------------------------------------------------+
| created_at      | 2021-03-24T00:19:43Z                                                   |
| description     | secgroup01                                                             |
| id              | 69f2c73f-becf-49af-9085-d58e3692d8fc                                   |
| name            | secgroup01                                                             |
| project_id      | f1f04d774d2141fb9acabd28d0e00c33                                       |
| revision_number | 1                                                                      |
| rules           | created_at='2021-03-24T00:19:43Z', direction='egress', ethertype=..... |
|                 | created_at='2021-03-24T00:19:43Z', direction='egress', ethertype=..... |
| stateful        | True                                                                   |
| tags            | []                                                                     |
| updated_at      | 2021-03-24T00:19:43Z                                                   |
+-----------------+------------------------------------------------------------------------+

# インスタンス接続用の SSH キーペア作成

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

Enter file in which to save the key (/home/cent/.ssh/id_rsa):
# 公開鍵登録

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

+-------------+-------------------------------------------------+
| Field       | Value                                           |
+-------------+-------------------------------------------------+
| fingerprint | 55:d4:fe:3c:10:64:1a:21:1d:c8:90:68:94:d3:bf:85 |
| name        | mykey                                           |
| user_id     | e08c35de3b6746bd9518c97f7068a71e                |
+-------------+-------------------------------------------------+

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

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

+--------------------------------------+-------------+--------+------------------------+-----------------+----------+
| ID                                   | Name        | Status | Networks               | Image           | Flavor   |
+--------------------------------------+-------------+--------+------------------------+-----------------+----------+
| 9050a5b1-ff9c-49ad-bb9b-51ead3862114 | CentOS-St-8 | ACTIVE | private=192.168.100.54 | CentOS-Stream-8 | m1.small |
+--------------------------------------+-------------+--------+------------------------+-----------------+----------+
[9] 作成した仮想マシンインスタンスにフローティング IP を割り当てます。
[cent@dlp ~(keystone)]$
openstack floating ip create public

+---------------------+--------------------------------------+
| Field               | Value                                |
+---------------------+--------------------------------------+
| created_at          | 2021-03-24T00:22:56Z                 |
| description         |                                      |
| dns_domain          | None                                 |
| dns_name            | None                                 |
| fixed_ip_address    | None                                 |
| floating_ip_address | 10.0.0.242                           |
| floating_network_id | 1a9cb99b-35e6-42ec-a2ea-c3e411128893 |
| id                  | b567d7de-6acb-4fc1-ab6d-42e55c1c92d3 |
| name                | 10.0.0.242                           |
| port_details        | None                                 |
| port_id             | None                                 |
| project_id          | f1f04d774d2141fb9acabd28d0e00c33     |
| qos_policy_id       | None                                 |
| revision_number     | 0                                    |
| router_id           | None                                 |
| status              | DOWN                                 |
| subnet_id           | None                                 |
| tags                | []                                   |
| updated_at          | 2021-03-24T00:22:56Z                 |
+---------------------+--------------------------------------+

[cent@dlp ~(keystone)]$
openstack server add floating ip CentOS-St-8 10.0.0.242
# 設定確認

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

+---------------------+-------------------------------------------------------------------------+
| Field               | Value                                                                   |
+---------------------+-------------------------------------------------------------------------+
| created_at          | 2021-03-24T00:22:56Z                                                    |
| description         |                                                                         |
| dns_domain          | None                                                                    |
| dns_name            | None                                                                    |
| fixed_ip_address    | 192.168.100.54                                                          |
| floating_ip_address | 10.0.0.242                                                              |
| floating_network_id | 1a9cb99b-35e6-42ec-a2ea-c3e411128893                                    |
| id                  | b567d7de-6acb-4fc1-ab6d-42e55c1c92d3                                    |
| name                | 10.0.0.242                                                              |
| port_details        | admin_state_up='True', device_id='9050a5b1-ff9c-49ad-bb9b-51ead386211...|
| port_id             | a7048742-ea93-48fa-95b3-b4d53e97bdfc                                    |
| project_id          | f1f04d774d2141fb9acabd28d0e00c33                                        |
| qos_policy_id       | None                                                                    |
| revision_number     | 2                                                                       |
| router_id           | dd0a67e0-42e0-4d93-a42f-cf345d0fea79                                    |
| status              | ACTIVE                                                                  |
| subnet_id           | None                                                                    |
| tags                | []                                                                      |
| updated_at          | 2021-03-24T00:23:33Z                                                    |
+---------------------+-------------------------------------------------------------------------+

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

+--------------------------------------+-------------+--------+------------------------------------+-----------------+----------+
| ID                                   | Name        | Status | Networks                           | Image           | Flavor   |
+--------------------------------------+-------------+--------+------------------------------------+-----------------+----------+
| 9050a5b1-ff9c-49ad-bb9b-51ead3862114 | CentOS-St-8 | ACTIVE | private=192.168.100.54, 10.0.0.242 | CentOS-Stream-8 | m1.small |
+--------------------------------------+-------------+--------+------------------------------------+-----------------+----------+
[10] 起動した仮想マシンインスタンスに SSH 接続できるように、先に作成したセキュリティグループにポート許可の設定を追加します。
# ICMP 許可

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

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| created_at        | 2021-03-24T00:26:14Z                 |
| description       |                                      |
| direction         | ingress                              |
| ether_type        | IPv4                                 |
| id                | f118cd01-6c5e-457f-85b8-e9e94724da8d |
| name              | None                                 |
| port_range_max    | None                                 |
| port_range_min    | None                                 |
| project_id        | f1f04d774d2141fb9acabd28d0e00c33     |
| protocol          | icmp                                 |
| remote_group_id   | None                                 |
| remote_ip_prefix  | 0.0.0.0/0                            |
| revision_number   | 0                                    |
| security_group_id | 69f2c73f-becf-49af-9085-d58e3692d8fc |
| tags              | []                                   |
| updated_at        | 2021-03-24T00:26:14Z                 |
+-------------------+--------------------------------------+

# SSH 許可

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

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| created_at        | 2021-03-24T00:26:33Z                 |
| description       |                                      |
| direction         | ingress                              |
| ether_type        | IPv4                                 |
| id                | 758b17b0-eabe-44d4-bd74-733ef1190035 |
| name              | None                                 |
| port_range_max    | 22                                   |
| port_range_min    | 22                                   |
| project_id        | f1f04d774d2141fb9acabd28d0e00c33     |
| protocol          | tcp                                  |
| remote_group_id   | None                                 |
| remote_ip_prefix  | 0.0.0.0/0                            |
| revision_number   | 0                                    |
| security_group_id | 69f2c73f-becf-49af-9085-d58e3692d8fc |
| tags              | []                                   |
| updated_at        | 2021-03-24T00:26:33Z                 |
+-------------------+--------------------------------------+

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

+--------------------------------------+-------------+-----------+-----------+------------+-----------------------+
| ID                                   | IP Protocol | Ethertype | IP Range  | Port Range | Remote Security Group |
+--------------------------------------+-------------+-----------+-----------+------------+-----------------------+
| 758b17b0-eabe-44d4-bd74-733ef1190035 | tcp         | IPv4      | 0.0.0.0/0 | 22:22      | None                  |
| a3913fd1-4697-4670-b05f-4a27f76e478e | None        | IPv6      | ::/0      |            | None                  |
| a6a4cbc9-03e4-4958-9bec-0b46a9eeb5e4 | None        | IPv4      | 0.0.0.0/0 |            | None                  |
| f118cd01-6c5e-457f-85b8-e9e94724da8d | icmp        | IPv4      | 0.0.0.0/0 |            | None                  |
+--------------------------------------+-------------+-----------+-----------+------------+-----------------------+
[11] 仮想マシンインスタンスに割りあてられたフローティング IP 宛てに SSH 接続することで、インスタンスに SSH ログインできます。
[cent@dlp ~(keystone)]$
openstack server list

+--------------------------------------+-------------+--------+------------------------------------+-----------------+----------+
| ID                                   | Name        | Status | Networks                           | Image           | Flavor   |
+--------------------------------------+-------------+--------+------------------------------------+-----------------+----------+
| 9050a5b1-ff9c-49ad-bb9b-51ead3862114 | CentOS-St-8 | ACTIVE | private=192.168.100.54, 10.0.0.242 | CentOS-Stream-8 | m1.small |
+--------------------------------------+-------------+--------+------------------------------------+-----------------+----------+

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

The authenticity of host '10.0.0.242 (10.0.0.242)' can't be established.
ECDSA key fingerprint is SHA256:wKst7+OoS9oy+bXfZo78+0MY2OBCtc+ebI6JNV9waZo.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '10.0.0.242' (ECDSA) to the list of known hosts.
Activate the web console with: systemctl enable --now cockpit.socket

[centos@centos-st-8 ~]$     # ログインできた
関連コンテンツ