OpenStack Bobcat : Neutron ネットワークを構成する (FLAT)2023/10/24 |
OpenStack Network Service(Neutron)による仮想ネットワークの構成です。
例として、FLAT タイプのプロバイダーネットワークを構成します。
事前に以下のように Control ノード、 Network ノード、 Compute ノードの 各 Neutron サービスノードを構築済みであることが前提です。
また、当例では Network ノードと Compute ノードが 2 つのネットワークインターフェースを持っているものとします。
------------+--------------------------+--------------------------+------------ | | | 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) eth1|(UP with no IP) |
[1] | Network ノード および Compute ノードの両方で以下のように設定します。 |
# ブリッジ追加 [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 # 最終行に追記
[ml2_type_flat]
flat_networks = physnet1
[root@network ~]#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini # 最終行に追記
[ovs]
bridge_mappings = physnet1:br-eth1 systemctl restart neutron-openvswitch-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 | 2023-10-24T05:59:52Z | | description | | | dns_domain | None | | id | af7301c5-72cf-429e-beef-ea39c0c8714c | | 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 | 5d97881520b34e6bbf1f15e778c82fe4 | | 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 | | | tenant_id | 5d97881520b34e6bbf1f15e778c82fe4 | | updated_at | 2023-10-24T05:59:52Z | +---------------------------+--------------------------------------+ # [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 | 2023-10-24T06:00:20Z | | description | | | dns_nameservers | 10.0.0.10 | | dns_publish_fixed_ip | None | | enable_dhcp | True | | gateway_ip | 10.0.0.1 | | host_routes | | | id | 0b55d50e-93ee-4b5f-8c3e-ad1c8f39ecdd | | ip_version | 4 | | ipv6_address_mode | None | | ipv6_ra_mode | None | | name | subnet1 | | network_id | af7301c5-72cf-429e-beef-ea39c0c8714c | | project_id | 5d97881520b34e6bbf1f15e778c82fe4 | | revision_number | 0 | | segment_id | None | | service_types | | | subnetpool_id | None | | tags | | | updated_at | 2023-10-24T06:00:20Z | +----------------------+--------------------------------------+ # 設定確認 [root@dlp ~(keystone)]# openstack network list +--------------------------------------+------------+--------------------------------------+ | ID | Name | Subnets | +--------------------------------------+------------+--------------------------------------+ | af7301c5-72cf-429e-beef-ea39c0c8714c | sharednet1 | 0b55d50e-93ee-4b5f-8c3e-ad1c8f39ecdd | +--------------------------------------+------------+--------------------------------------+ |
[3] | Openstack システムを利用可能な任意のユーザーでログインし、作成したネットワークでインスタンスを作成/起動します。 |
# 利用可能な [flavor] 確認 [cent@dlp ~(keystone)]$ openstack flavor list +----+-----------+------+------+-----------+-------+-----------+ | ID | Name | RAM | Disk | Ephemeral | VCPUs | Is Public | +----+-----------+------+------+-----------+-------+-----------+ | 1 | m1.small | 2048 | 10 | 0 | 1 | True | | 2 | m1.medium | 4096 | 10 | 0 | 2 | True | | 3 | m1.large | 8192 | 10 | 0 | 4 | True | | 4 | m2.large | 8192 | 10 | 10 | 4 | True | | 5 | m3.large | 8192 | 50 | 0 | 4 | True | +----+-----------+------+------+-----------+-------+-----------+ # 利用可能なイメージ確認 [cent@dlp ~(keystone)]$ openstack image list +--------------------------------------+----------------+--------+ | ID | Name | Status | +--------------------------------------+----------------+--------+ | bcbaa323-2438-4f5e-9473-49f633bb8f9b | CentOS-Stream9 | active | +--------------------------------------+----------------+--------+ # 利用可能なネットワーク確認 [cent@dlp ~(keystone)]$ openstack network list +--------------------------------------+------------+--------------------------------------+ | ID | Name | Subnets | +--------------------------------------+------------+--------------------------------------+ | af7301c5-72cf-429e-beef-ea39c0c8714c | sharednet1 | 0b55d50e-93ee-4b5f-8c3e-ad1c8f39ecdd | +--------------------------------------+------------+--------------------------------------+ # インスタンス用のセキュリティグループを作成 [cent@dlp ~(keystone)]$ openstack security group create secgroup01 +-----------------+----------------------------------------------------------------------------+ | Field | Value | +-----------------+----------------------------------------------------------------------------+ | created_at | 2023-10-24T06:01:52Z | | description | secgroup01 | | id | 2fece9fc-ab36-430c-818e-c9c19404c02c | | name | secgroup01 | | project_id | f4598dfd3b8a47149234b6892d18d5a4 | | revision_number | 1 | | rules | created_at='2023-10-24T06:01:52Z', direction='egress', ethertype='IPv6'... | | | created_at='2023-10-24T06:01:52Z', direction='egress', ethertype='IPv4'... | | shared | False | | stateful | True | | tags | [] | | updated_at | 2023-10-24T06:01:52Z | +-----------------+----------------------------------------------------------------------------+ # インスタンス接続用の 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 | +-------------+-------------------------------------------------+ | created_at | None | | fingerprint | ae:d2:da:33:67:de:c7:1d:a5:bd:97:b2:31:de:be:0d | | id | mykey | | is_deleted | None | | name | mykey | | type | ssh | | user_id | d70a5f7908de4cd9aa8e189b725244a9 | +-------------+-------------------------------------------------+[cent@dlp ~(keystone)]$ netID=$(openstack network list | grep sharednet1 | awk '{ print $2 }')
[cent@dlp ~(keystone)]$
[cent@dlp ~(keystone)]$ openstack server create --flavor m1.medium --image CentOS-Stream9 --security-group secgroup01 --nic net-id=$netID --key-name mykey CentOS-St9
openstack server list +--------------------------------------+------------+--------+-----------------------+----------------+-----------+ | ID | Name | Status | Networks | Image | Flavor | +--------------------------------------+------------+--------+-----------------------+----------------+-----------+ | aa9e2242-3a3b-4221-ad6c-696ca7054792 | CentOS-St9 | ACTIVE | sharednet1=10.0.0.234 | CentOS-Stream9 | m1.medium | +--------------------------------------+------------+--------+-----------------------+----------------+-----------+ |
[4] | 起動した仮想マシンインスタンスに SSH 接続できるように、先に作成したセキュリティグループにポート許可の設定を追加します。 |
# ICMP 許可 [cent@dlp ~(keystone)]$ openstack security group rule create --protocol icmp --ingress secgroup01 +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | created_at | 2023-10-24T06:05:30Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | 1d7f2882-a65c-4fa9-b642-df039d313b91 | | name | None | | normalized_cidr | 0.0.0.0/0 | | port_range_max | None | | port_range_min | None | | project_id | f4598dfd3b8a47149234b6892d18d5a4 | | 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 | 2fece9fc-ab36-430c-818e-c9c19404c02c | | tags | [] | | updated_at | 2023-10-24T06:05:30Z | +-------------------------+--------------------------------------+ # SSH 許可 [cent@dlp ~(keystone)]$ openstack security group rule create --protocol tcp --dst-port 22:22 secgroup01 +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | created_at | 2023-10-24T06:05:48Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | 0f593e44-0200-41a2-9cc7-cd084225eaaf | | name | None | | normalized_cidr | 0.0.0.0/0 | | port_range_max | 22 | | port_range_min | 22 | | project_id | f4598dfd3b8a47149234b6892d18d5a4 | | 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 | 2fece9fc-ab36-430c-818e-c9c19404c02c | | tags | [] | | updated_at | 2023-10-24T06:05:48Z | +-------------------------+--------------------------------------+[cent@dlp ~(keystone)]$ openstack security group rule list secgroup01 +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ | ID | IP Protocol | Ethertype | IP Range | Port Range | Direction | Remote Security Group | Remote Address Group | +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ | 0f593e44-0200-41a2-9cc7-cd084225eaaf | tcp | IPv4 | 0.0.0.0/0 | 22:22 | ingress | None | None | | 1d7f2882-a65c-4fa9-b642-df039d313b91 | icmp | IPv4 | 0.0.0.0/0 | | ingress | None | None | | 1e13fbf6-d297-4a18-a595-59bacbc6355e | None | IPv6 | ::/0 | | egress | None | None | | a48fa185-3668-4245-81e9-39a4e1fbc7ef | None | IPv4 | 0.0.0.0/0 | | egress | None | None | +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ |
[5] | インスタンスにログインします。 |
[cent@dlp ~(keystone)]$ ssh centos@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:0KjIT8O0Bgy2RZSLo7rW0nwdLX3COmLs9gZ5BModKEw. 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. [centos@centos-st9 ~]$ # ログインできた |
Sponsored Link |