Ubuntu 22.04
Sponsored Link

OpenStack Antelope : Neutron ネットワークを構成 (VXLAN)2023/03/24

 
OpenStack Network Service(Neutron)による仮想ネットワークの構成です。
例として、VXLAN タイプのネットワークを構成します。
事前に以下のように Control ノードNetwork ノードCompute ノードの 各 Neutron サービスノードを構築済みであることが前提です。
また、当例では Network ノードが 2 つのネットワークインターフェースを持っているものとします。
また、下例で eth1 の方は IP なしでインターフェースを UP しています。
* IP なしでのインターフェース UP の設定はこちらの [1] を参照
------------+--------------------------+--------------------------+------------
            |                          |                          |
        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] Control ノードで以下のように設定変更します。
root@dlp ~(keystone)#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# 155行目 : [tenant_network_types] に値を追記

tenant_network_types =
vxlan
# 213行目 : 追記

[ml2_type_flat]
flat_networks = physnet1
# 269行目 : 追記

[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
# 155行目 : [tenant_network_types] に値を追記

tenant_network_types =
vxlan
# 213行目 : 追記

[ml2_type_flat]
flat_networks = physnet1
# 269行目 : 追記

[ml2_type_vxlan]
vni_ranges = 1:1000
root@network:~#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# 161行目 : 追記

[agent]
tunnel_types = vxlan
prevent_arp_spoofing = True
# 265行目 : 追記

[ovs]
local_ip = 10.0.0.50
bridge_mappings = physnet1:br-eth1
root@network:~#
vi /etc/neutron/dhcp_agent.ini
# 85行目 : 追記

dnsmasq_config_file = /etc/neutron/dnsmasq-neutron.conf
root@network:~#
vi /etc/neutron/dnsmasq-neutron.conf
# 新規作成

dhcp-option-force=26,1450
root@network:~#
systemctl restart neutron-l3-agent neutron-dhcp-agent neutron-metadata-agent neutron-openvswitch-agent

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

tenant_network_types =
vxlan
# 213行目 : 追記

[ml2_type_flat]
flat_networks = physnet1
# 269行目 : 追記

[ml2_type_vxlan]
vni_ranges = 1:1000
root@node01:~#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini
# 161行目 : 追記

[agent]
tunnel_types = vxlan
prevent_arp_spoofing = True
# 265行目 : 当ノードのローカル IP アドレスを追記

[ovs]
local_ip = 10.0.0.51
root@node01:~#
systemctl restart neutron-openvswitch-agent

[4] 仮想ルーターを作成します。作業場所はどこでもよいですが、当例では Control ノード上で作業します。
root@dlp ~(keystone)#
openstack router create router01

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| admin_state_up          | UP                                   |
| availability_zone_hints |                                      |
| availability_zones      |                                      |
| created_at              | 2023-03-24T07:22:13Z                 |
| description             |                                      |
| distributed             | False                                |
| enable_ndp_proxy        | None                                 |
| external_gateway_info   | null                                 |
| flavor_id               | None                                 |
| ha                      | False                                |
| id                      | 05491d89-c488-4a8a-8f20-d6aea818a149 |
| name                    | router01                             |
| project_id              | cac657ec003e4c95aaaa30bc0321895f     |
| revision_number         | 1                                    |
| routes                  |                                      |
| status                  | ACTIVE                               |
| tags                    |                                      |
| tenant_id               | cac657ec003e4c95aaaa30bc0321895f     |
| updated_at              | 2023-03-24T07:22:13Z                 |
+-------------------------+--------------------------------------+
[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                | 2023-03-24T07:22:37Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | cd2dbb7c-feb0-4ab9-ad17-b72ed7dd9d69 |
| 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                | cac657ec003e4c95aaaa30bc0321895f     |
| provider:network_type     | vxlan                                |
| provider:physical_network | None                                 |
| provider:segmentation_id  | 638                                  |
| qos_policy_id             | None                                 |
| revision_number           | 1                                    |
| router:external           | Internal                             |
| segments                  | None                                 |
| shared                    | False                                |
| status                    | ACTIVE                               |
| subnets                   |                                      |
| tags                      |                                      |
| tenant_id                 | cac657ec003e4c95aaaa30bc0321895f     |
| updated_at                | 2023-03-24T07:22:37Z                 |
+---------------------------+--------------------------------------+

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

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-03-24T07:23:05Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | True                                 |
| gateway_ip           | 192.168.100.1                        |
| host_routes          |                                      |
| id                   | 7a82a7db-70fb-447e-a217-bf9c11982d5e |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | private-subnet                       |
| network_id           | cd2dbb7c-feb0-4ab9-ad17-b72ed7dd9d69 |
| project_id           | cac657ec003e4c95aaaa30bc0321895f     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2023-03-24T07:23:05Z                 |
+----------------------+--------------------------------------+

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

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                | 2023-03-24T07:23:49Z                 |
| description               |                                      |
| dns_domain                | None                                 |
| id                        | 719ebeb4-9e2e-46be-91bb-647a13d52c77 |
| 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                | cac657ec003e4c95aaaa30bc0321895f     |
| 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                      |                                      |
| tenant_id                 | cac657ec003e4c95aaaa30bc0321895f     |
| updated_at                | 2023-03-24T07:23:49Z                 |
+---------------------------+--------------------------------------+

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

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-03-24T07:24:42Z                 |
| description          |                                      |
| dns_nameservers      | 10.0.0.10                            |
| dns_publish_fixed_ip | None                                 |
| enable_dhcp          | False                                |
| gateway_ip           | 10.0.0.1                             |
| host_routes          |                                      |
| id                   | 43d9a202-f6cf-426b-8127-d8237bf33e9f |
| ip_version           | 4                                    |
| ipv6_address_mode    | None                                 |
| ipv6_ra_mode         | None                                 |
| name                 | public-subnet                        |
| network_id           | 719ebeb4-9e2e-46be-91bb-647a13d52c77 |
| project_id           | cac657ec003e4c95aaaa30bc0321895f     |
| revision_number      | 0                                    |
| segment_id           | None                                 |
| service_types        |                                      |
| subnetpool_id        | None                                 |
| tags                 |                                      |
| updated_at           | 2023-03-24T07:24:42Z                 |
+----------------------+--------------------------------------+

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

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                            |
+--------------------------------------+-------------+--------------------------------------+
| b3975537-4341-420c-86de-ddab81d8b916 | network     | 719ebeb4-9e2e-46be-91bb-647a13d52c77 |
+--------------------------------------+-------------+--------------------------------------+

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

root@dlp ~(keystone)#
openstack network rbac show b3975537-4341-420c-86de-ddab81d8b916

+-------------------+--------------------------------------+
| Field             | Value                                |
+-------------------+--------------------------------------+
| action            | access_as_external                   |
| id                | b3975537-4341-420c-86de-ddab81d8b916 |
| object_id         | 719ebeb4-9e2e-46be-91bb-647a13d52c77 |
| object_type       | network                              |
| project_id        | cac657ec003e4c95aaaa30bc0321895f     |
| target_project_id | *                                    |
+-------------------+--------------------------------------+

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

root@dlp ~(keystone)#
openstack network list

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| 719ebeb4-9e2e-46be-91bb-647a13d52c77 | public  | 43d9a202-f6cf-426b-8127-d8237bf33e9f |
| cd2dbb7c-feb0-4ab9-ad17-b72ed7dd9d69 | private | 7a82a7db-70fb-447e-a217-bf9c11982d5e |
+--------------------------------------+---------+--------------------------------------+

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

root@dlp ~(keystone)#
openstack project list

+----------------------------------+-----------+
| ID                               | Name      |
+----------------------------------+-----------+
| cac657ec003e4c95aaaa30bc0321895f | admin     |
| d3dd87fb1a034f7883539a6a4f83781f | service   |
| e294bd7c00314facacdb46c36fb54ee9 | 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                | f06e0437-a18a-4b9c-a742-ff8b58463c5b |
| object_id         | cd2dbb7c-feb0-4ab9-ad17-b72ed7dd9d69 |
| object_type       | network                              |
| project_id        | cac657ec003e4c95aaaa30bc0321895f     |
| target_project_id | e294bd7c00314facacdb46c36fb54ee9     |
+-------------------+--------------------------------------+
[8] 内部ネットワークへのアクセス権を付与したプロジェクトに所属する任意のユーザーでログインし、 作成した内部ネットワークをインスタンスに紐付けてインスタンスを作成・起動します。
# 利用可能な [flavor] 確認

ubuntu@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 |   20 |        10 |     4 | True      |
+----+-----------+------+------+-----------+-------+-----------+

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

ubuntu@dlp ~(keystone)$
openstack image list

+--------------------------------------+------------+--------+
| ID                                   | Name       | Status |
+--------------------------------------+------------+--------+
| 00ea6e97-0e97-4cb4-8ac4-2409c28f0289 | Ubuntu2204 | active |
+--------------------------------------+------------+--------+

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

ubuntu@dlp ~(keystone)$
openstack network list

+--------------------------------------+---------+--------------------------------------+
| ID                                   | Name    | Subnets                              |
+--------------------------------------+---------+--------------------------------------+
| 719ebeb4-9e2e-46be-91bb-647a13d52c77 | public  | 43d9a202-f6cf-426b-8127-d8237bf33e9f |
| cd2dbb7c-feb0-4ab9-ad17-b72ed7dd9d69 | private | 7a82a7db-70fb-447e-a217-bf9c11982d5e |
+--------------------------------------+---------+--------------------------------------+

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

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

+-----------------+--------------------------------------------------------------------------+
| Field           | Value                                                                    |
+-----------------+--------------------------------------------------------------------------+
| created_at      | 2023-03-24T06:46:35Z                                                     |
| description     | secgroup01                                                               |
| id              | 7937b835-932e-4abf-9d01-dfe0557b3f22                                     |
| name            | secgroup01                                                               |
| project_id      | e294bd7c00314facacdb46c36fb54ee9                                         |
| revision_number | 1                                                                        |
| rules           | created_at='2023-03-24T06:46:35Z', direction='egress', ethertype='IPv6.. |
|                 | created_at='2023-03-24T06:46:35Z', direction='egress', ethertype='IPv4.. |
| shared          | False                                                                    |
| stateful        | True                                                                     |
| tags            | []                                                                       |
| updated_at      | 2023-03-24T06:46:35Z                                                     |
+-----------------+--------------------------------------------------------------------------+

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

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

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

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

+-------------+-------------------------------------------------+
| Field       | Value                                           |
+-------------+-------------------------------------------------+
| created_at  | None                                            |
| fingerprint | c4:67:ed:0c:ea:71:c3:71:bc:7a:d4:3b:d2:91:64:86 |
| id          | mykey                                           |
| is_deleted  | None                                            |
| name        | mykey                                           |
| type        | ssh                                             |
| user_id     | 85236576a97e492791abe70c217c8898                |
+-------------+-------------------------------------------------+

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

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

+--------------------------------------+-------------+--------+------------------------+------------+-----------+
| ID                                   | Name        | Status | Networks               | Image      | Flavor    |
+--------------------------------------+-------------+--------+------------------------+------------+-----------+
| 3cfce028-ba37-4981-b496-b29f8179c4f9 | Ubuntu-2204 | ACTIVE | private=192.168.100.83 | Ubuntu2204 | m1.medium |
+--------------------------------------+-------------+--------+------------------------+------------+-----------+
[9] 作成した仮想マシンインスタンスにフローティング IP を割り当てます。
ubuntu@dlp ~(keystone)$
openstack floating ip create public

+---------------------+--------------------------------------+
| Field               | Value                                |
+---------------------+--------------------------------------+
| created_at          | 2023-03-24T07:32:19Z                 |
| description         |                                      |
| dns_domain          | None                                 |
| dns_name            | None                                 |
| fixed_ip_address    | None                                 |
| floating_ip_address | 10.0.0.234                           |
| floating_network_id | 719ebeb4-9e2e-46be-91bb-647a13d52c77 |
| id                  | db848161-351a-447f-8ed9-f6e36732f22c |
| name                | 10.0.0.234                           |
| port_details        | None                                 |
| port_id             | None                                 |
| project_id          | e294bd7c00314facacdb46c36fb54ee9     |
| qos_policy_id       | None                                 |
| revision_number     | 0                                    |
| router_id           | None                                 |
| status              | DOWN                                 |
| subnet_id           | None                                 |
| tags                | []                                   |
| updated_at          | 2023-03-24T07:32:19Z                 |
+---------------------+--------------------------------------+

ubuntu@dlp ~(keystone)$
openstack server add floating ip Ubuntu-2204 10.0.0.234
# 設定確認

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

+---------------------+--------------------------------------------------------------------------+
| Field               | Value                                                                    |
+---------------------+--------------------------------------------------------------------------+
| created_at          | 2023-03-24T07:32:19Z                                                     |
| description         |                                                                          |
| dns_domain          | None                                                                     |
| dns_name            | None                                                                     |
| fixed_ip_address    | 192.168.100.83                                                           |
| floating_ip_address | 10.0.0.234                                                               |
| floating_network_id | 719ebeb4-9e2e-46be-91bb-647a13d52c77                                     |
| id                  | db848161-351a-447f-8ed9-f6e36732f22c                                     |
| name                | 10.0.0.234                                                               |
| port_details        | admin_state_up='True', device_id='3cfce028-ba37-4981-b496-b29f8179c4f... |
| port_id             | 04d8bd46-fbf9-483c-bb88-9ef0f19164aa                                     |
| project_id          | e294bd7c00314facacdb46c36fb54ee9                                         |
| qos_policy_id       | None                                                                     |
| revision_number     | 2                                                                        |
| router_id           | 05491d89-c488-4a8a-8f20-d6aea818a149                                     |
| status              | ACTIVE                                                                   |
| subnet_id           | None                                                                     |
| tags                | []                                                                       |
| updated_at          | 2023-03-24T07:32:45Z                                                     |
+---------------------+--------------------------------------------------------------------------+

ubuntu@dlp ~(keystone)$
openstack server list

+--------------------------------------+-------------+--------+------------------------------------+------------+-----------+
| ID                                   | Name        | Status | Networks                           | Image      | Flavor    |
+--------------------------------------+-------------+--------+------------------------------------+------------+-----------+
| 3cfce028-ba37-4981-b496-b29f8179c4f9 | Ubuntu-2204 | ACTIVE | private=10.0.0.234, 192.168.100.83 | Ubuntu2204 | m1.medium |
+--------------------------------------+-------------+--------+------------------------------------+------------+-----------+
[10] 起動した仮想マシンインスタンスに SSH 接続できるように、先に作成したセキュリティグループにポート許可の設定を追加します。
# ICMP 許可

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

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| created_at              | 2023-03-24T06:55:31Z                 |
| description             |                                      |
| direction               | ingress                              |
| ether_type              | IPv4                                 |
| id                      | 3a1761b4-fa3c-4609-9893-11cb8cc96961 |
| name                    | None                                 |
| normalized_cidr         | 0.0.0.0/0                            |
| port_range_max          | None                                 |
| port_range_min          | None                                 |
| project_id              | e294bd7c00314facacdb46c36fb54ee9     |
| 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       | 7937b835-932e-4abf-9d01-dfe0557b3f22 |
| tags                    | []                                   |
| updated_at              | 2023-03-24T06:55:31Z                 |
+-------------------------+--------------------------------------+

# SSH 許可

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

+-------------------------+--------------------------------------+
| Field                   | Value                                |
+-------------------------+--------------------------------------+
| created_at              | 2023-03-24T06:55:52Z                 |
| description             |                                      |
| direction               | ingress                              |
| ether_type              | IPv4                                 |
| id                      | 79c309c1-73b8-4f33-97e0-fbc30e53a384 |
| name                    | None                                 |
| normalized_cidr         | 0.0.0.0/0                            |
| port_range_max          | 22                                   |
| port_range_min          | 22                                   |
| project_id              | e294bd7c00314facacdb46c36fb54ee9     |
| 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       | 7937b835-932e-4abf-9d01-dfe0557b3f22 |
| tags                    | []                                   |
| updated_at              | 2023-03-24T06:55:52Z                 |
+-------------------------+--------------------------------------+

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

+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
| ID                                   | IP Protocol | Ethertype | IP Range  | Port Range | Direction | Remote Security Group | Remote Address Group |
+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
| 3a1761b4-fa3c-4609-9893-11cb8cc96961 | icmp        | IPv4      | 0.0.0.0/0 |            | ingress   | None                  | None                 |
| 79c309c1-73b8-4f33-97e0-fbc30e53a384 | tcp         | IPv4      | 0.0.0.0/0 | 22:22      | ingress   | None                  | None                 |
| 8a7b28d0-9473-4410-9a37-7a34902b17c5 | None        | IPv6      | ::/0      |            | egress    | None                  | None                 |
| 9c3ebc01-127e-45c6-9672-6040bd5248fc | None        | IPv4      | 0.0.0.0/0 |            | egress    | None                  | None                 |
+--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+
[11] 仮想マシンインスタンスに割りあてられたフローティング IP 宛てに SSH 接続することで、インスタンスに SSH ログインできます。
ubuntu@dlp ~(keystone)$
openstack server list

+--------------------------------------+-------------+--------+------------------------------------+------------+-----------+
| ID                                   | Name        | Status | Networks                           | Image      | Flavor    |
+--------------------------------------+-------------+--------+------------------------------------+------------+-----------+
| 3cfce028-ba37-4981-b496-b29f8179c4f9 | Ubuntu-2204 | ACTIVE | private=10.0.0.234, 192.168.100.83 | Ubuntu2204 | m1.medium |
+--------------------------------------+-------------+--------+------------------------------------+------------+-----------+

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

The authenticity of host '10.0.0.234 (10.0.0.234)' can't be established.
ED25519 key fingerprint is SHA256:LGqrpvymYK8ir+mNwRDohnbqmL+V+kq2afLI6rKk/4M.
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.234' (ED25519) to the list of known hosts.
Welcome to Ubuntu 22.04.2 LTS (GNU/Linux 5.15.0-67-generic x86_64)

.....
.....

To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.

ubuntu@ubuntu-2204:~$     # ログインできた
関連コンテンツ