This page provides technical information about the VPP based VNFs in the vCPE use case for ONAP R1-R3.
Table of Contents |
---|
The information builds upon , and updates in some areas, the legacy information documented here: ONAP vCPE VNF Installation Guide v1.docxtoc.
For information on preparing the VNF images in previous releases, refer to Preparing the vCPE VPP VNF Images for Amsterdam and Beijing.
The VPP based VNFs to be covered are:
- vBRG
- vBNG
- vG-MUX
- vGW
Preparing the vCPE VPP VNF Images for Casablanca
The VNFs are instantiated by a heat template and environment file which starts with a plain Ubuntu 16.04 image and then proceeds to build the VPP code and, in several cases, the Honeycomb agent code for the VNF.
The compilation of these components is time consuming (30+ minutes) and occasionally unsuccessful. So, the plan is to create snapshot images for each VNF with the time consuming VPP and Honeycomb code pre-built.
Building a pre-built VNF Image
Using the vG-MUX as an example, the following steps are used to create a vG-MUX image which can then be used as the image for instantiating a vG-MUX VNF.
...
- Comment out the last line of base_vcpe_vgmux.yaml (i.e. do not invoke v_gmux_install.sh via the yaml)
...
- openstack stack create -t base_vcpe_vgmux.yaml -e base_vcpe_vgmux.env vGMUX
...
- sudo su -
- cd /opt
...
For building and deploying VNF images in the Casablanca release, there are two sets of heat templates, environment files, and scripts:
To create a VNF image, use the build_vcpe_xxx.yaml and build_vcpe_xxx.env files, which invoke the v_xxx_build.sh script.
To instantiate a VNF using a pre-built image, use the base_vcpe_xxx.yaml and build_vcpe_xxx.env files, which invoke the v_xxx_install.sh script.
Building a pre-built VNF Image
Using the vG-MUX as an example, the following steps are used to create a vG-MUX image which can then be used as the image for instantiating a vG-MUX VNF.
- The build .yaml file and the associated build .env file are used to invoke the VM which will build the image. The build .yaml will invoke the build script “v_gmux_build.sh”
- This will build vpp and honeycomb code, it may take 30-40 minutes
- Clean up some files not required for the final image (this will save several gigabytes):
- rm -fr /opt/vpp /opt/hc2vpp /opt/demo
- Reboot
- Log into the VM as the 'ubuntu' user and check that build script has finished executing
- cat /opt/script_status.txt
- If the script has executed completely and successfully, the output will be “Execution of vG-MUX build script completed”.
- If the script has failed to execute successfully, the output will specify the reason for its failure. For more information, query the contents of the systemd journal using the ‘journalctl’ command. See also: Debugging and troubleshooting.
- Clean up some files not required for the final image (this will save several gigabytes):
sudo su -
rm -fr /opt/vpp /opt/hc2vpp /opt/demo /opt/script_status.txt
- Save an image of the VNF
openstack server image create --name vgmux-base-ubuntu-16-04 <VM Name or ID>
- "vgmux-base-ubuntu-16-04" will be the name of the new vG-MUX image
Edit the file "/opt/config/compile_state.txt" and change the contents of the file to "done"
Note: In the case of the vbrg emulator, the file /opt/config/compile_state.txt is created by
the base_vcpe_vbrg.yaml file. The compile state (done, auto or build) can be passed into
the vbrg env file before the VNF is created.
Instantiate a VNF based on the pre-built Image
Change the base .env file to use the VNF image created using the process described above.
For example - replace "ubuntu-16-04-cloud-amd64" with "vgmux-base-ubuntu-16-04" in "base_vcpe_vgmux.env"
- Ensure the .yaml file does not have the install script commented out
- For example, ensure "v_gmux_install.sh" is not commented out in "base_vcpe_vgmux.yaml"
- Create a 'stack'
- openstack stack create -t base_vcpe_vgmux.yaml -e base_vcpe_vgmux.env vGMUX
- Note, remove the "vGMUX" stack that was created during the "Building a VNF Image" stage
- Using the image created above, the install script will perform some configuration steps and complete much more quickly since the VPP and Honeycomb code has already been compiled.
Pre-built VNF images available
Prebuilt images in the ONAP-vCPE, Integration and Integraiont-SB01 Projects (as of 11/13/2017):
...
vbng-base-ubuntu-16-04
...
- base .yaml file does not have the install script commented out.
- For example, ensure "v_gmux_install.sh" is not commented out in "base_vcpe_vgmux.yaml".
- Create a 'stack'
openstack stack create -t base_vcpe_vgmux.yaml -e base_vcpe_vgmux.env vGMUX
- Note, remove the "vGMUX" stack that was created during the "Building a VNF Image" stage.
- Using the image created above, the install script will perform some configuration steps and complete much more quickly since the VPP and Honeycomb code has already been compiled.
Pre-built VNF images available
Prebuilt images in the ONAP-vCPE Project (as of 08/15/18):
VNF | ONAP-vCPE Image Name | Checksum |
vBRG | vbrg-casa-base-ubuntu-16-04 | |
vBNG | vbng-casa-base-ubuntu-16-04 | |
vG-MUX | vgmux-casa-base-ubuntu-16-04 | |
vGW | vgw-casa-base-ubuntu-16-04 |
Compatibility with Amsterdam and Beijing Releases
The VNF heat templates and environment files for the Casablanca release provide backwards compatibility with previous releases. The build heat template will create the compile_state.txt file containing a status of ‘done’.
In the Amsterdam and Beijing releases, after building the VNF image, the process required manually changing the content of compile_state.txt to ‘done’ before saving the image of the VNF. The pre-built VNF images of the Casablanca release can be used with heat templates and environment files of previous releases.
Debugging and troubleshooting
To see the full output of the build script:
journalctl
- To check that the build script is running:
ps aux | grep v_xxx_build.sh
- To check that vpp and honeycomb are running:
systemctl status vpp.service
systemctl status honeycomb.service
Note that the vpp service should be ‘inactive’ after the completion of the build script, and it should be ‘running’ on all machines after the completion of the install script.
The honeycomb service should be running on the vBRG, vG-MUX, and vGW after the completion of the install script.
This can also be confirmed by running ‘cat /var/log/honeycomb.log’:
- To check status on vGW of dhcp server:
systemctl status isc-dhcp-server
- To check whether a package is installed using dpkg:
dpkg -s [package name]
- For example: dpkg -s vpp
VNF Specific Usage Information
...
Info | ||
---|---|---|
| ||
vppctl ip route add 10.3.0.0/24 via 10.1.0.10 GigabitEthernet0/4/0 |
· To check whether a package is installed using dpkg:
o dpkg -s [package name]
o For example: dpkg -s vpp