OpenVIM installation (Release One)
Infrastructure
In order to run openvim in normal mode (see bellow the available modes) and deploy dataplane VNFs, an appropriate infrastructure is required. Below a reference architecture for an openvim-based DC deployment.
Openvim needs to be accesible from Resource Orchestrator (openmano). Openvim needs:
- To make its API accesible from Resource Orchestrator (openmano). That's the purpose of the VIM mgmt network in the figure.
- To be connected to all compute servers through a network, the DC infrastructure network in the figure.
- To offer management IP addresses to VNFs for VNF configuration from CM (Juju server). That's the purpose of the Telco/VNF management network.
Compute nodes, besides being connected to the DC infrastructure network, must also be connected to two additional networks:
- Telco/VNF management network, used by Configuration Manager (Juju Server) to configure the VNFs
- Inter-DC network, optionally required to interconnect this datacenter to other datacenters (e.g. in MWC'16 demo, to interconnect the two sites).
VMs will be connected to these two networks at deployment time if requested by openmano.
VM creation (openvim server)
- Requirements:
- 1 vCPU (2 recommended)
- 4 GB RAM (4 GB are required to run OpenDaylight controller; if the ODL controller runs outside the VM, 2 GB RAM are enough)
- 40 GB disk
- 3 network interfaces to:
- OSM network (to interact with RO)
- DC intfrastructure network (to interact with the compute servers and switches)
- Telco/VNF management network (to provide IP addresses via DHCP to the VNFs)
- Base image: ubuntu-16.04-server-amd64
Installation
Openvim (v1.0.4) is installed using a script:
wget -O install-openvim.sh "https://osm.etsi.org/gitweb/?p=osm/openvim.git;a=blob_plain;f=scripts/install-openvim.sh;hb=f30a67727909de9df4cc5ea6c213a8795c349aef" chmod +x install-openvim.sh sudo ./install-openvim.sh [-u <database-admin-user>] [-p <database-admin-password>] #NOTE: you can provide optionally the admin user (normally 'root') and password of the database.
On Ubuntu 16.04 it will install openvim as a service on /opt/openvim
Openflow controller
For normal or OF only openvim modes you will need a openflow controller. The following openflow controllers are supported:
Floodlight version 0.90
You can install e.g. floodlight-0.90. The script openvim/scripts/install-floodlight.sh makes this installation for you. And the script service-floodlight can be used to start/stop it in a screen with logs.
$ sudo openvim/scripts/install-floodlight.sh $ service-floodlight start
ONOS
NOTE: This tutorial assumes you are developing ONOS in DevelVM and deploying it on DeployVM (which is the one in which OpenVIM runs)
System requirements
- 2GB or more RAM (I personally recommend at least 4GB)
- 2 or more processors
- Ubuntu 14.04 LTS or 16.04 LTS (Checked with both distros)
Software requirements
Maven
Install Maven 3.3.9 on your Apps directory
$ cd ~ $ mkdir Apps $ wget http://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz $ tar -zxvf apache-maven-3.3.9-bin.tar.gz -C ./Apps/
NOTE: Although ONOS has been migrated to Buck, maven was used in earlier releases.
Karaf
Install Karaf 3.0.5 on your Apps directory
$ cd ~ $ wget http://archive.apache.org/dist/karaf/3.0.5/apache-karaf-3.0.5.tar.gz $ tar -zxvf apache-karaf-3.0.5.tar.gz -C ./Apps/
Java 8
Install Java 8
$ sudo apt-get install software-properties-common -y $ sudo add-apt-repository ppa:webupd8team/java -y $ sudo apt-get update $ sudo apt-get install oracle-java8-installer oracle-java8-set-default -y
Set your JAVA_HOME
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
Verify it with the following command
$ env | grep JAVA_HOME
JAVA_HOME=/usr/lib/jvm/java-8-oracle
Download latest ONOS
$ git clone https://gerrit.onosproject.org/onos $ cd onos $ git checkout master
Edit onos/tools/dev/bash_profile and set the correct path for ONOS_ROOT, MAVEN and KARAF_ROOT
# Please note that I am using my absolute paths here, yours may be different export ONOS_ROOT=${ONOS_ROOT:-~/onos} export MAVEN=${MAVEN:-~/Apps/apache-maven-3.3.9} export KARAF_ROOT=${KARAF_ROOT:-~/Apps/apache-karaf-$KARAF_VERSION}
Edit ~/.bashrc and add the following line at the end:
#Please note that I am specifying here the absolute path of the bash_profile file in my machine, it may be different in yours . ~/onos/tools/dev/bash_profile
Reload .bashrc or log out and log in again to apply the changes
. ~/.bashrc
Build and deploy ONOS
If you are using an stable release below 1.7, please use maven, otherwise, use Buck. Depending on which tool you use to build ONOS, the deployment procedure is also different.
Build with maven
$ mci # Alias for mvn clean install $ op
Build with Buck
NOTE: ONOS currently uses a modified version of Buck, which has been packaged with ONOS. Please use this version until our changes have been upstreamed and released as part of an official Buck release.
$ sudo apt-get install zip unzip $ cd $ONOS_ROOT $ tools/build/onos-buck build onos --show-output Updating Buck... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 43.8M 100 43.8M 0 0 172k 0 0:04:20 0:04:20 --:--:-- 230k Archive: cache/buck-v2016.11.12.01.zip inflating: buck extracting: .buck_version creating: plugins/ inflating: plugins/onos.jar inflating: plugins/yang.jar Successfully updated Buck in /home/alaitz/Code/onos/bin/buck to buck-v2016.11.12.01.zip Not using buckd because watchman isn't installed. [-] PROCESSING BUCK FILES...FINISHED 3.1s [100%] 🐳 New buck daemon [+] DOWNLOADING... (0.00 B/S, TOTAL: 0.00 B, 0 Artifacts) [+] BUILDING...1m47.9s [99%] (720/721 JOBS, 720 UPDATED, 720 [99.9%] CACHE MISS) |=> IDLE |=> IDLE |=> IDLE |=> //tools/package:onos-package... 9.9s (checking local cache) |=> IDLE |=> IDLE |=> IDLE |=> IDLE The outputs are: //tools/package:onos-package buck-out/gen/tools/package/onos-package/onos.tar.gz
Sources:
- Onos with Maven: https://wiki.onosproject.org/display/ONOS/Installing+and+Running+ONOS
- Onos with Buck: https://wiki.onosproject.org/display/ONOS/Developer+Guide
Run ONOS
$ cd $ONOS_ROOT $ tools/build/onos-buck run onos-local -- clean debug
OpenDayLight
TBC
DHCP server
For the management network a DHCP server is needed. Install the package dhcp3-server. This package will install the actual DHCP server based on isc-dhcp-server package.
Ubuntu 14.04: sudo apt-get install dhcp3-server Ubuntu 16.04: sudo apt install isc-dhcp-server
Configure it editing file /etc/default/isc-dhcp-server to enable DHCP server in the appropriate interface, the one attached to Telco/VNF management network (e.g. eth1).
$ sudo vi /etc/default/isc-dhcp-server INTERFACES="eth1"
Edit file /etc/dhcp/dhcpd.conf to specify the subnet, netmask and range of IP addresses to be offered by the server.
$ sudo vi /etc/dhcp/dhcpd.conf ddns-update-style none; default-lease-time 86400; max-lease-time 86400; log-facility local7; option subnet-mask 255.255.0.0; option broadcast-address 10.210.255.255; subnet 10.210.0.0 netmask 255.255.0.0 { range 10.210.1.2 10.210.1.254; }
Restart the service:
sudo service isc-dhcp-server restart
Configuration
- Go to openvim folder (/opt/openvim) and edit openvimd.cfg. Note: by default it runs in mode: test where no real hosts neither openflow controller are needed. You can uses other modes:
mode | Computes hosts | Openflow controller | Observations |
---|---|---|---|
test | fake | X | No real deployment. Just for API test |
normal | needed | needed | Normal behaviour |
host only | needed | X | No PT/SRIOV connections |
develop | needed | X | Force to cloud type deployment without EPA |
OF only | fake | needed | To test openflow controller without needed of compute hosts |
Service must be restarted
sudo service openvim restart
NOTE: the following steps (ONLY if openvim runs in test mode) are done automatically by script:
/opt/openvim/scripts/initopenvim.sh --insert-bashrc --force
- Let's configure the openvim CLI client. Needed if you have changed the /opt/openvim/openvimd.cfg file (WARNING not the ./openvim/openvimd.cfg)
openvim config # show openvim related variables #To change variables run export OPENVIM_HOST=<http_host of openvimd.cfg> export OPENVIM_PORT=<http_port of openvimd.cfg> export OPENVIM_ADMIN_PORT=<http_admin_port of openvimd.cfg> #You can insert at .bashrc for authomatic loading at login: echo "export OPENVIM_HOST=<...>" >> /{HOME}/.bashrc ...
Adding compute nodes
- Let's attach compute nodes
In test mode we need to provide fake compute nodes with all the necessary information:
openvim host-add /opt/openvim/test/hosts/host-example0.yaml openvim host-add /opt/openvim/test/hosts/host-example1.yaml openvim host-add /opt/openvim/test/hosts/host-example2.yaml openvim host-add /opt/openvim/test/hosts/host-example3.yaml openvim host-list #-v,-vv,-vvv for verbosity levels
In normal or host only mode, the process is a bit more complex. First, you need to configure appropriately the host following these guidelines. The current process is manual, although we are working on an automated process. For the moment, follow these instructions:
#copy /opt/openvim/scripts/host-add.sh and run at compute host for gather all the information ./host_add.sh <user> <ip_name> >> host.yaml
#NOTE: If the host contains interfaces connected to the openflow switch for dataplane, # the switch port where the interfaces are connected must be provided manually, # otherwise these interfaces cannot be used. Follow one of two methods: # 1) Fill openvim/database_utils/of_ports_pci_correspondence.sql ... # ... and load with mysql -uvim -p vim_db < openvim/database_utils/of_ports_pci_correspondence.sql # 2) or add manually this information at generated host.yaml with a 'switch_port: <whatever>' # ... entry at 'host-data':'numas': 'interfaces'
# copy this generated file host.yaml to the openvim server, and add the compute host with the command: openvim host-add host.yaml
# copy openvim ssh key to the compute node. If openvim user didn't have a ssh key generate it using ssh-keygen ssh-copy-id <compute node user>@<IP address of the compute node>
Note: It must be noted that Openvim has been tested with servers based on Xeon E5 Intel processors with Ivy Bridge architecture. No tests have been carried out with Intel Core i3, i5 and i7 families, so there are no guarantees that the integration will be seamless.
Adding external networks
- Let's list the external networks:
openvim net-list
- Let's create some external networks in openvim. These networks are public and can be used by any VNF. It must be noticed that these networks must be pre-provisioned in the compute nodes in order to be effectively used by the VNFs. The pre-provision will be skipped since we are in test mode. Four networks will be created:
- default -> default NAT network provided by libvirt. By creating this network, VMs will be able to connect to default network in the same host where they are deployed.
- macvtap:em1 -> macvtap network associated to interface "em1". By creating this network, we allow VMs to connect to a macvtap interface of physical interface "em1" in the same host where they are deployed. If the interface naming scheme is different, use the appropriate name instead of "em1".
- bridge_net -> bridged network intended for VM-to-VM communication. The pre-provision of a Linux bridge in a compute node is described in this link. By creating this network, VMs will be able to connect to the Linux bridge "virbrMan1" in the same host where they are deployed. In that way, two VMs connected to "virbrMan1", no matter the host, will be able to talk each other.
- data_net -> external data network intended for VM-to-VM communication. By creating this network, VMs will be able to connect to a network element connected behind a physical port in the external switch.
In order to create external networks, use 'openvim net-create', specifying a file with the network information. Now we will create the 4 networks:
openvim net-create /opt/openvim/test/networks/net-example0.yaml openvim net-create /opt/openvim/test/networks/net-example1.yaml openvim net-create /opt/openvim/test/networks/net-example2.yaml openvim net-create /opt/openvim/test/networks/net-example3.yaml
- Let's list the external networks:
openvim net-list 2c386a58-e2b5-11e4-a3c9-52540032c4fa data_net 35671f9e-e2b4-11e4-a3c9-52540032c4fa default 79769aa2-e2b4-11e4-a3c9-52540032c4fa macvtap:em1 8f597eb6-e2b4-11e4-a3c9-52540032c4fa bridge_net
You can build your own networks using the template 'templates/network.yaml'. Alternatively, you can use 'openvim net-create' without a file and answer the questions:
openvim net-create
You can delete a network, e.g. "macvtap:em1", using the command:
openvim net-delete macvtap:em1
Creating a new tenant
- Now let's create a new tenant "admin":
$ openvim tenant-create --name admin --description admin <uuid> admin Created
- Take the uuid of the tenant and update the environment variables used by openvim client:
export OPENVIM_TENANT=<obtained uuid> #echo "export OPENVIM_TENANT=<obtained uuid>" >> /home/${USER}/.bashrc openvim config #show openvim env variables