OpenStack Yoga : Neutron Network (Geneve)2022/04/12 |
Configure virtual networking by OpenStack Network Service (Neutron).
For example, configure Geneve 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 and Compute Node have 2 network interfaces.
And also [eth1] is up without IP Address, refer to here of [1] to up anonymous interface on Netplan. ------------+---------------------------+---------------------------+------------ | | | 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 | | Neutron Server | | Nova Compute | | Keystone Glance | | OVN-Northd | | Open vSwitch | | Nova API | | | | OVN Metadata Agent | | | | | | OVN-Controller | +-----------------------+ +-----------+-----------+ +-----------+-----------+ eth1|(UP with no IP) eth1|(UP with no IP) |
[1] | Configure bridge mappings on both Network Node and Compute Node. |
# add bridge (any name you like for [br-eth1]) root@network:~# ovs-vsctl add-br br-eth1
# add a port to the bridge # replace [eth1] to your own environment root@network:~# ovs-vsctl add-port br-eth1 eth1
# map [physnet1] to the bridge (any name you like for [physnet1]) root@network:~# ovs-vsctl set open . external-ids:ovn-bridge-mappings=physnet1:br-eth1 |
[2] | 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-04-12T02:25:14Z | | description | | | external_gateway_info | null | | flavor_id | None | | id | 7862bf83-9de8-409b-924d-30229a7776c0 | | name | router01 | | project_id | ddb7c08ba73a48eea040270d13a7b0cf | | revision_number | 0 | | routes | | | status | ACTIVE | | tags | | | updated_at | 2022-04-12T02:25:14Z | +-------------------------+--------------------------------------+ |
[3] | Create internal network and associate with the router above. |
# create internal network root@dlp ~(keystone)# openstack network create private --provider-network-type geneve +---------------------------+--------------------------------------+ | Field | Value | +---------------------------+--------------------------------------+ | admin_state_up | UP | | availability_zone_hints | | | availability_zones | | | created_at | 2022-04-12T02:25:29Z | | description | | | dns_domain | None | | id | b19c6ee5-26f7-4a98-8a8c-58a2e7637610 | | ipv4_address_scope | None | | ipv6_address_scope | None | | is_default | False | | is_vlan_transparent | None | | mtu | 1442 | | name | private | | port_security_enabled | True | | project_id | ddb7c08ba73a48eea040270d13a7b0cf | | provider:network_type | geneve | | provider:physical_network | None | | provider:segmentation_id | 6255 | | qos_policy_id | None | | revision_number | 1 | | router:external | Internal | | segments | None | | shared | False | | status | ACTIVE | | subnets | | | tags | | | updated_at | 2022-04-12T02:25:29Z | +---------------------------+--------------------------------------+ # 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-04-12T02:25:58Z | | description | | | dns_nameservers | 10.0.0.10 | | dns_publish_fixed_ip | None | | enable_dhcp | True | | gateway_ip | 192.168.100.1 | | host_routes | | | id | 5d1edead-636e-4622-942a-bfd2347908e3 | | ip_version | 4 | | ipv6_address_mode | None | | ipv6_ra_mode | None | | name | private-subnet | | network_id | b19c6ee5-26f7-4a98-8a8c-58a2e7637610 | | project_id | ddb7c08ba73a48eea040270d13a7b0cf | | revision_number | 0 | | segment_id | None | | service_types | | | subnetpool_id | None | | tags | | | updated_at | 2022-04-12T02:25:58Z | +----------------------+--------------------------------------+ # set internal network to the router above root@dlp ~(keystone)# openstack router add subnet router01 private-subnet
|
[4] | 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-04-12T02:26:30Z | | description | | | dns_domain | None | | id | 8fd7472d-9182-4a17-aa35-984fb7fb059d | | 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 | ddb7c08ba73a48eea040270d13a7b0cf | | 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-04-12T02:26:30Z | +---------------------------+--------------------------------------+ # 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-04-12T02:26:48Z | | description | | | dns_nameservers | 10.0.0.10 | | dns_publish_fixed_ip | None | | enable_dhcp | False | | gateway_ip | 10.0.0.1 | | host_routes | | | id | 99f81758-a8a8-4a25-8c20-a8c52f374815 | | ip_version | 4 | | ipv6_address_mode | None | | ipv6_ra_mode | None | | name | public-subnet | | network_id | 8fd7472d-9182-4a17-aa35-984fb7fb059d | | project_id | ddb7c08ba73a48eea040270d13a7b0cf | | revision_number | 0 | | segment_id | None | | service_types | | | subnetpool_id | None | | tags | | | updated_at | 2022-04-12T02:26:48Z | +----------------------+--------------------------------------+ # set gateway to the router above root@dlp ~(keystone)# openstack router set router01 --external-gateway public |
[5] | By default, it's possible to access for all projects to external network only, but 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 | +--------------------------------------+-------------+--------------------------------------+ | 6f9d0ea4-7670-47e2-987b-47e914aa6824 | network | 8fd7472d-9182-4a17-aa35-984fb7fb059d | +--------------------------------------+-------------+--------------------------------------+ # RBAC details # all projects can access only to [access_as_external] root@dlp ~(keystone)# openstack network rbac show 6f9d0ea4-7670-47e2-987b-47e914aa6824 +-------------------+--------------------------------------+ | Field | Value | +-------------------+--------------------------------------+ | action | access_as_external | | id | 6f9d0ea4-7670-47e2-987b-47e914aa6824 | | name | None | | object_id | 8fd7472d-9182-4a17-aa35-984fb7fb059d | | object_type | network | | project_id | ddb7c08ba73a48eea040270d13a7b0cf | | target_project_id | * | +-------------------+--------------------------------------+ # show network list root@dlp ~(keystone)# openstack network list +--------------------------------------+---------+--------------------------------------+ | ID | Name | Subnets | +--------------------------------------+---------+--------------------------------------+ | 8fd7472d-9182-4a17-aa35-984fb7fb059d | public | 99f81758-a8a8-4a25-8c20-a8c52f374815 | | b19c6ee5-26f7-4a98-8a8c-58a2e7637610 | private | 5d1edead-636e-4622-942a-bfd2347908e3 | +--------------------------------------+---------+--------------------------------------+ # show project list root@dlp ~(keystone)# openstack project list +----------------------------------+-----------+ | ID | Name | +----------------------------------+-----------+ | c043fb355eff47e69642adfcd7a55620 | service | | d3434f55aa5541cfab5f13916da0697d | hiroshima | | ddb7c08ba73a48eea040270d13a7b0cf | 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 | 98141138-fdc3-4bf2-8ae5-aefbfb7a29e1 | | name | None | | object_id | b19c6ee5-26f7-4a98-8a8c-58a2e7637610 | | object_type | network | | project_id | ddb7c08ba73a48eea040270d13a7b0cf | | target_project_id | d3434f55aa5541cfab5f13916da0697d | +-------------------+--------------------------------------+ |
[6] | Login with a user who is in the project you granted access permission to internal network and Create and boot an instance. |
# confirm available [flavor] list ubuntu@dlp ~(keystone)$ openstack flavor list +----+----------+------+------+-----------+-------+-----------+ | ID | Name | RAM | Disk | Ephemeral | VCPUs | Is Public | +----+----------+------+------+-----------+-------+-----------+ | 0 | m1.small | 2048 | 10 | 0 | 1 | True | +----+----------+------+------+-----------+-------+-----------+ # confirm available image list ubuntu@dlp ~(keystone)$ openstack image list +--------------------------------------+------------+--------+ | ID | Name | Status | +--------------------------------------+------------+--------+ | 53f6415a-1f98-485f-be0b-3f80edf523df | Ubuntu2004 | active | +--------------------------------------+------------+--------+ # confirm available network list ubuntu@dlp ~(keystone)$ openstack network list +--------------------------------------+---------+--------------------------------------+ | ID | Name | Subnets | +--------------------------------------+---------+--------------------------------------+ | 8fd7472d-9182-4a17-aa35-984fb7fb059d | public | 99f81758-a8a8-4a25-8c20-a8c52f374815 | | b19c6ee5-26f7-4a98-8a8c-58a2e7637610 | private | 5d1edead-636e-4622-942a-bfd2347908e3 | +--------------------------------------+---------+--------------------------------------+ # create a security group for instances ubuntu@dlp ~(keystone)$ openstack security group create secgroup01 +-----------------+-----------------------------------------------------------------------------+ | Field | Value | +-----------------+-----------------------------------------------------------------------------+ | created_at | 2022-04-12T02:30:03Z | | description | secgroup01 | | id | ce206948-825f-49ce-8388-3f96de3f78ab | | name | secgroup01 | | project_id | d3434f55aa5541cfab5f13916da0697d | | revision_number | 1 | | rules | created_at='2022-04-12T02:30:03Z', direction='egress', ethertype='IPv4',... | | | created_at='2022-04-12T02:30:03Z', direction='egress', ethertype='IPv6',... | | stateful | True | | tags | [] | | updated_at | 2022-04-12T02:30:03Z | +-----------------+-----------------------------------------------------------------------------+ # create a SSH keypair for connecting to instances ubuntu@dlp ~(keystone)$ ssh-keygen -q -N "" Enter file in which to save the key (/home/ubuntu/.ssh/id_rsa): # add public-key ubuntu@dlp ~(keystone)$ openstack keypair create --public-key ~/.ssh/id_rsa.pub mykey +-------------+-------------------------------------------------+ | Field | Value | +-------------+-------------------------------------------------+ | created_at | None | | fingerprint | 0c:ce:b1:8b:91:d1:a5:91:d3:6e:20:a1:7b:3d:59:90 | | id | mykey | | is_deleted | None | | name | mykey | | type | ssh | | user_id | 95f196a1851c4b93b016871f7d5ded82 | +-------------+-------------------------------------------------+ubuntu@dlp ~(keystone)$ netID=$(openstack network list | grep private | awk '{ print $2 }')
ubuntu@dlp ~(keystone)$
ubuntu@dlp ~(keystone)$ openstack server create --flavor m1.small --image Ubuntu2004 --security-group secgroup01 --nic net-id=$netID --key-name mykey Ubuntu-2004
openstack server list +--------------------------------------+-------------+--------+-------------------------+------------+----------+ | ID | Name | Status | Networks | Image | Flavor | +--------------------------------------+-------------+--------+-------------------------+------------+----------+ | 90aff00b-7f8f-4d4c-8929-85c4dbe555df | Ubuntu-2004 | ACTIVE | private=192.168.100.134 | Ubuntu2004 | m1.small | +--------------------------------------+-------------+--------+-------------------------+------------+----------+ |
[7] | Assign floating IP address to the Instance above. |
ubuntu@dlp ~(keystone)$ openstack floating ip create public +---------------------+--------------------------------------+ | Field | Value | +---------------------+--------------------------------------+ | created_at | 2022-04-12T02:32:05Z | | description | | | dns_domain | | | dns_name | | | fixed_ip_address | None | | floating_ip_address | 10.0.0.242 | | floating_network_id | 8fd7472d-9182-4a17-aa35-984fb7fb059d | | id | f4165d2b-9f39-4d5a-96df-bfed50f29f90 | | name | 10.0.0.242 | | port_details | None | | port_id | None | | project_id | d3434f55aa5541cfab5f13916da0697d | | qos_policy_id | None | | revision_number | 0 | | router_id | None | | status | DOWN | | subnet_id | None | | tags | [] | | updated_at | 2022-04-12T02:32:05Z | +---------------------+--------------------------------------+
ubuntu@dlp ~(keystone)$
openstack server add floating ip Ubuntu-2004 10.0.0.242
# confirm settings ubuntu@dlp ~(keystone)$ openstack floating ip show 10.0.0.242 +---------------------+---------------------------------------------------------------------------+ | Field | Value | +---------------------+---------------------------------------------------------------------------+ | created_at | 2022-04-12T02:32:05Z | | description | | | dns_domain | | | dns_name | | | fixed_ip_address | 192.168.100.134 | | floating_ip_address | 10.0.0.242 | | floating_network_id | 8fd7472d-9182-4a17-aa35-984fb7fb059d | | id | f4165d2b-9f39-4d5a-96df-bfed50f29f90 | | name | 10.0.0.242 | | port_details | admin_state_up='True', device_id='90aff00b-7f8f-4d4c-8929-85c4dbe555df... | | port_id | 80b3e7f0-9c6f-40fc-a6d3-815748fb7d6a | | project_id | d3434f55aa5541cfab5f13916da0697d | | qos_policy_id | None | | revision_number | 2 | | router_id | 7862bf83-9de8-409b-924d-30229a7776c0 | | status | ACTIVE | | subnet_id | None | | tags | [] | | updated_at | 2022-04-12T02:32:24Z | +---------------------+---------------------------------------------------------------------------+ubuntu@dlp ~(keystone)$ openstack server list +--------------------------------------+-------------+--------+-------------------------------------+------------+----------+ | ID | Name | Status | Networks | Image | Flavor | +--------------------------------------+-------------+--------+-------------------------------------+------------+----------+ | 90aff00b-7f8f-4d4c-8929-85c4dbe555df | Ubuntu-2004 | ACTIVE | private=10.0.0.242, 192.168.100.134 | Ubuntu2004 | m1.small | +--------------------------------------+-------------+--------+-------------------------------------+------------+----------+ |
[8] | Configure security settings for the security group you created above to access with SSH and ICMP. |
# permit ICMP ubuntu@dlp ~(keystone)$ openstack security group rule create --protocol icmp --ingress secgroup01 +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | created_at | 2022-04-12T02:33:23Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | 4fb23763-e657-4ba0-b81e-b6ff718e0eb7 | | name | None | | port_range_max | None | | port_range_min | None | | project_id | d3434f55aa5541cfab5f13916da0697d | | 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 | ce206948-825f-49ce-8388-3f96de3f78ab | | tags | [] | | tenant_id | d3434f55aa5541cfab5f13916da0697d | | updated_at | 2022-04-12T02:33:23Z | +-------------------------+--------------------------------------+ # permit SSH ubuntu@dlp ~(keystone)$ openstack security group rule create --protocol tcp --dst-port 22:22 secgroup01 +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | created_at | 2022-04-12T02:33:37Z | | description | | | direction | ingress | | ether_type | IPv4 | | id | bb7a97d2-5c67-4eb1-88de-d22731d9b305 | | name | None | | port_range_max | 22 | | port_range_min | 22 | | project_id | d3434f55aa5541cfab5f13916da0697d | | 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 | ce206948-825f-49ce-8388-3f96de3f78ab | | tags | [] | | tenant_id | d3434f55aa5541cfab5f13916da0697d | | updated_at | 2022-04-12T02:33:37Z | +-------------------------+--------------------------------------+ubuntu@dlp ~(keystone)$ openstack security group rule list secgroup01 +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ | ID | IP Protocol | Ethertype | IP Range | Port Range | Direction | Remote Security Group | Remote Address Group | +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ | 4fb23763-e657-4ba0-b81e-b6ff718e0eb7 | icmp | IPv4 | 0.0.0.0/0 | | ingress | None | None | | 6e61f080-cfe7-442e-9a83-97f4e18a4998 | None | IPv4 | 0.0.0.0/0 | | egress | None | None | | bb7a97d2-5c67-4eb1-88de-d22731d9b305 | tcp | IPv4 | 0.0.0.0/0 | 22:22 | ingress | None | None | | c33dc0de-729b-4fcb-8c93-06e5c0ca6e3a | None | IPv6 | ::/0 | | egress | None | None | +--------------------------------------+-------------+-----------+-----------+------------+-----------+-----------------------+----------------------+ |
[9] | It's possible to login to the Instance to connect to the floating IP address with SSH like follows. |
ubuntu@dlp ~(keystone)$ openstack server list +--------------------------------------+-------------+--------+-------------------------------------+------------+----------+ | ID | Name | Status | Networks | Image | Flavor | +--------------------------------------+-------------+--------+-------------------------------------+------------+----------+ | 90aff00b-7f8f-4d4c-8929-85c4dbe555df | Ubuntu-2004 | ACTIVE | private=10.0.0.242, 192.168.100.134 | Ubuntu2004 | m1.small | +--------------------------------------+-------------+--------+-------------------------------------+------------+----------+ubuntu@dlp ~(keystone)$ ssh ubuntu@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:5bbtk+cvmYOihx1AqZ/uZoaOH2GBA/aMtOjcPgvNvVc. 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. Welcome to Ubuntu 20.04.4 LTS (GNU/Linux 5.4.0-105-generic x86_64) ..... ..... To run a command as administrator (user "root"), use "sudo <command>". See "man sudo_root" for details. ubuntu@ubuntu-2004:~$ # logined |
Sponsored Link |