Monat: Januar 2016

OpenStack Liberty Neutron Deployment (Part 6 start a VM in the tenant defined network)

Now it is time to start a VM. Up to now, no DHCP server is running for the tenant’s network n1. # # first we need the ID of the image to be used # glance image-list +————————————–+———————–+————-+——————+———–+——–+ | ID | Name | Disk Format | Container Format | Size | Status | +————————————–+———————–+————-+——————+———–+——–+ | […]

Updated: 16/01/2021 — 13:41

OpenStack Liberty Neutron Deployment (Part 5 Add Router and Net/Subnet)

Create a router and set a gateway Now it’s time to create a router and set a gateway. # # create a router neutron router-create r1 # # attach the router to floating pool 1 # # list the external networks # neutron net-external-list +————————————–+———————+—————————————————–+ | id | name | subnets | +————————————–+———————+—————————————————–+ | f79385f6-e878-4450-9ed9-e906f6985149 […]

Updated: 17/01/2021 — 13:17

OpenStack Liberty Neutron Deployment (Part 4 Network Setup)

After the successful deployment of the Operating system and the Openstack software, the external networks and the shared flat networks must be allocated by the Openstack admin. Allocate the floating pools (external networks) The neutron commands to create the two external networks for floating pools are: # run with admin credentials # # „vlannet“ is […]

Updated: 17/01/2021 — 13:17

OpenStack Liberty Neutron Deployment (Part 3 Neutron Config)

When a distributed setup of Neutron is used, many Neutron configuration files must be synchronized to all nodes running neutron components. Linux network namespaces must be enabled. neutron.conf The base configuration file on the Control node contains many options. Some of these (not all!) are shown below in this deployment: # # does not contain […]

Updated: 17/01/2021 — 14:35

OpenStack Liberty Neutron Deployment (Part 2 Network Infrastructure)

The physical network A cloud needs an „physical“ network using real „switching routers“ to transport data between the physical nodes. The physical network has the following layout: Each floating pool is implemented using one vlan on the physical network infrastructure. Each flat network requires also one vlan on the physical network. VXLAN requires also one […]

Updated: 17/01/2021 — 14:48