OpenStack Yoga : Neutron ネットワークを構成 (FLAT)2022/04/30 |
OpenStack Network Service(Neutron)による仮想ネットワークの構成です。
例として、FLAT タイプのネットワークを構成します。
事前に以下のように Control ノード、 Network ノード、 Compute ノードの 各 Neutron サービスノードを構築済みであることが前提です。
また、当例では Network ノードと Compute ノードが 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 httpd | | Neutron Metadata | | Nova Compute | | Keystone Glance | | | | Neutron L2 Agent | | Nova API | | | | | | Neutron Server | | | | | | Neutron Metadata | | | | | +-----------------------+ +----------+------------+ +----------+------------+ eth1|(UP with no IP) eth1|(UP with no IP) |
[1] | Network ノード および Compute ノードの両方で以下のように設定します。 |
root@network:~#
vi /etc/neutron/plugins/ml2/ml2_conf.ini # 206行目 : 追記 [ml2_type_flat]
flat_networks = physnet1
root@network:~#
vi /etc/neutron/plugins/ml2/linuxbridge_agent.ini # 190行目 : 追記 [linux_bridge]
physical_interface_mappings = physnet1:eth1
systemctl restart neutron-linuxbridge-agent |
[2] | ネットワークを作成します。作業場所はどこでもよいですが、当例では Control ノード上で作業します。 |
root@dlp ~(keystone)#
projectID=$(openstack project list | grep service | awk '{print $2}') # [sharednet1] という名称のネットワークを作成 root@dlp ~(keystone)# openstack network create --project $projectID \ --share --provider-network-type flat --provider-physical-network physnet1 sharednet1 +---------------------------+--------------------------------------+ | Field | Value | +---------------------------+--------------------------------------+ | admin_state_up | UP | | availability_zone_hints | | | availability_zones | | | created_at | 2022-04-29T14:40:25Z | | description | | | dns_domain | None | | id | b13854cb-7976-424b-91b0-00b900d49253 | | ipv4_address_scope | None | | ipv6_address_scope | None | | is_default | False | | is_vlan_transparent | None | | mtu | 1500 | | name | sharednet1 | | port_security_enabled | True | | project_id | c1c4d9a5313f43bd9f6f555e2d34ab28 | | provider:network_type | flat | | provider:physical_network | physnet1 | | provider:segmentation_id | None | | qos_policy_id | None | | revision_number | 1 | | router:external | Internal | | segments | None | | shared | True | | status | ACTIVE | | subnets | | | tags | | | updated_at | 2022-04-29T14:40:26Z | +---------------------------+--------------------------------------+ # [sharednet1] に [10.0.0.0/24] のサブネットを作成 root@dlp ~(keystone)# openstack subnet create subnet1 --network sharednet1 \ --project $projectID --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 +----------------------+--------------------------------------+ | Field | Value | +----------------------+--------------------------------------+ | allocation_pools | 10.0.0.200-10.0.0.254 | | cidr | 10.0.0.0/24 | | created_at | 2022-04-29T14:40:49Z | | description | | | dns_nameservers | 10.0.0.10 | | dns_publish_fixed_ip | None | | enable_dhcp | True | | gateway_ip | 10.0.0.1 | | host_routes | | | id | 193a66da-70bf-4ab5-9358-f95266cfd814 | | ip_version | 4 | | ipv6_address_mode | None | | ipv6_ra_mode | None | | name | subnet1 | | network_id | b13854cb-7976-424b-91b0-00b900d49253 | | project_id | c1c4d9a5313f43bd9f6f555e2d34ab28 | | revision_number | 0 | | segment_id | None | | service_types | | | subnetpool_id | None | | tags | | | updated_at | 2022-04-29T14:40:49Z | +----------------------+--------------------------------------+ # 設定確認 root@dlp ~(keystone)# openstack network list +--------------------------------------+------------+--------------------------------------+ | ID | Name | Subnets | +--------------------------------------+------------+--------------------------------------+ | b13854cb-7976-424b-91b0-00b900d49253 | sharednet1 | 193a66da-70bf-4ab5-9358-f95266cfd814 | +--------------------------------------+------------+--------------------------------------+ |
[3] | 任意のユーザーでログインし、作成したネットワークをインスタンスに関連付けてインスタンスを作成/起動します。 |
# 利用可能な [flavor] 確認 ubuntu@dlp ~(keystone)$ openstack flavor list +----+----------+------+------+-----------+-------+-----------+ | ID | Name | RAM | Disk | Ephemeral | VCPUs | Is Public | +----+----------+------+------+-----------+-------+-----------+ | 0 | m1.small | 2048 | 10 | 0 | 1 | True | +----+----------+------+------+-----------+-------+-----------+ # 利用可能なイメージ確認 ubuntu@dlp ~(keystone)$ openstack image list +--------------------------------------+------------+--------+ | ID | Name | Status | +--------------------------------------+------------+--------+ | 70f856cc-6f3a-4cc3-b576-53f829a6d714 | Ubuntu2204 | active | +--------------------------------------+------------+--------+ # 利用可能なネットワーク確認 ubuntu@dlp ~(keystone)$ openstack network list +--------------------------------------+------------+--------------------------------------+ | ID | Name | Subnets | +--------------------------------------+------------+--------------------------------------+ | b13854cb-7976-424b-91b0-00b900d49253 | sharednet1 | 193a66da-70bf-4ab5-9358-f95266cfd814 | +--------------------------------------+------------+--------------------------------------+ # インスタンス用のセキュリティグループを作成 ubuntu@dlp ~(keystone)$ openstack security group create secgroup01 +-----------------+---------------------------------------------------------------------------+ | Field | Value | +-----------------+---------------------------------------------------------------------------+ | created_at | 2022-04-29T14:43:04Z | | description | secgroup01 | | id | 9a16b7b2-8c5f-403c-a3f1-ada02681b127 | | name | secgroup01 | | project_id | 66102fdb888d4556a59dcff8b631ffdf | | revision_number | 1 | | rules | created_at='2022-04-29T14:43:04Z', direction='egress', ethertype='IPv4... | | | created_at='2022-04-29T14:43:04Z', direction='egress', ethertype='IPv6... | | stateful | True | | tags | [] | | updated_at | 2022-04-29T14:43:04Z | +-----------------+---------------------------------------------------------------------------+ # インスタンス接続用の 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 | 70:04:de:9b:30:8a:e8:4d:d5:9e:8d:91:94:c8:d7:6c | | id | mykey | | is_deleted | None | | name | mykey | | type | ssh | | user_id | 74a373164921492ca35d32fea0fd2d86 | +-------------+-------------------------------------------------+ubuntu@dlp ~(keystone)$ netID=$(openstack network list | grep sharednet1 | awk '{ print $2 }')
ubuntu@dlp ~(keystone)$
ubuntu@dlp ~(keystone)$ openstack server create --flavor m1.small --image Ubuntu2204 --security-group secgroup01 --nic net-id=$netID --key-name mykey Ubuntu-2204
openstack server list +--------------------------------------+-------------+--------+-----------------------+------------+----------+ | ID | Name | Status | Networks | Image | Flavor | +--------------------------------------+-------------+--------+-----------------------+------------+----------+ | 7e02e72f-6485-4a1a-ae1d-edc2e745a495 | Ubuntu-2204 | ACTIVE | sharednet1=10.0.0.219 | Ubuntu2204 | m1.small | +--------------------------------------+-------------+--------+-----------------------+------------+----------+ |
[4] | 起動した仮想マシンインスタンスに SSH 接続できるように、先に作成したセキュリティグループにポート許可の設定を追加します。 |
# ICMP 許可 ubuntu@dlp ~(keystone)$ openstack security group rule create --protocol icmp --ingress secgroup01 +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | created_at | 2022-04-29T14:46:37Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | b81c6759-d682-4001-b44b-3311ad3ed0a8 | | name | None | | port_range_max | None | | port_range_min | None | | project_id | 66102fdb888d4556a59dcff8b631ffdf | | 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 | 9a16b7b2-8c5f-403c-a3f1-ada02681b127 | | tags | [] | | tenant_id | 66102fdb888d4556a59dcff8b631ffdf | | updated_at | 2022-04-29T14:46:37Z | +-------------------------+--------------------------------------+ # SSH 許可 ubuntu@dlp ~(keystone)$ openstack security group rule create --protocol tcp --dst-port 22:22 secgroup01 +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | created_at | 2022-04-29T14:46:53Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | b9789baa-2a8e-4cf8-9fd3-5293c2746d99 | | name | None | | port_range_max | 22 | | port_range_min | 22 | | project_id | 66102fdb888d4556a59dcff8b631ffdf | | 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 | 9a16b7b2-8c5f-403c-a3f1-ada02681b127 | | tags | [] | | tenant_id | 66102fdb888d4556a59dcff8b631ffdf | | updated_at | 2022-04-29T14:46:53Z | +-------------------------+--------------------------------------+ubuntu@dlp ~(keystone)$ openstack security group rule list secgroup01 +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ | ID | IP Protocol | Ethertype | IP Range | Port Range | Direction | Remote Security Group | Remote Address Group | +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ | 4889aefb-629f-4b58-bd7b-d57d48a4126b | None | IPv4 | 0.0.0.0/0 | | egress | None | None | | b7a804ad-9f78-48d0-9a79-b7798934d49a | None | IPv6 | ::/0 | | egress | None | None | | b81c6759-d682-4001-b44b-3311ad3ed0a8 | icmp | IPv4 | 0.0.0.0/0 | | ingress | None | None | | b9789baa-2a8e-4cf8-9fd3-5293c2746d99 | tcp | IPv4 | 0.0.0.0/0 | 22:22 | ingress | None | None | +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ |
[5] | インスタンスにログインします。 |
ubuntu@dlp ~(keystone)$ ssh ubuntu@10.0.0.219 The authenticity of host '10.0.0.219 (10.0.0.219)' can't be established. ED25519 key fingerprint is SHA256:+Y2gd3ozUykBMcQt2ldRTVCMAYf136bMETy5aSvKFUI. 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.219' (ED25519) to the list of known hosts. Welcome to Ubuntu 22.04 LTS (GNU/Linux 5.15.0-25-generic x86_64) ..... ..... To run a command as administrator (user "root"), use "sudo <command>". See "man sudo_root" for details. ubuntu@ubuntu-2204:~$ # ログインできた |
Sponsored Link |