How To Install ovn-controller-vtep on Ubuntu 20.04

In this tutorial we learn how to install ovn-controller-vtep on Ubuntu 20.04. ovn-controller-vtep is OVN vtep controller OVN vtep controller

Introduction

In this tutorial we learn how to install ovn-controller-vtep on Ubuntu 20.04.

What is ovn-controller-vtep

ovn-controller-vtep is:

ovn-controller-vtep is the local controller daemon in OVN, the Open Virtual Network, for VTEP enabled physical switches. It connects up to the OVN Southbound database over the OVSDB protocol, and down to the VTEP database over the OVSDB protocol.

ovn-controller-vtep provides the ovn-controller-vtep binary for controlling vtep gateways.

Package: ovn-controller-vtep Architecture: amd64 Version: 20.03.0-0ubuntu1 Priority: extra Section: universe/net Source: ovn Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Open vSwitch developers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 2548 Depends: lsb-base, ovn-common (= 20.03.0-0ubuntu1), libc6 (>= 2.29), libcap-ng0 (>= 0.7.9), libssl1.1 (>= 1.1.0), libunbound8 (>= 1.8.0) Filename: pool/universe/o/ovn/ovn-controller-vtep_20.03.0-0ubuntu1_amd64.deb Size: 719664 MD5sum: 2315dce10a075fa2951155f23aeca0bd SHA1: 1f6289a757a2719fe291f013c6df392b686994b5 SHA256: 45a9b8fc7960329c9229538ab6f1fb2e3caec3baf9097ac3461740e87a9914ad Homepage: https://github.com/ovn-org/ovn Description-en: OVN vtep controller ovn-controller-vtep is the local controller daemon in OVN, the Open Virtual Network, for VTEP enabled physical switches. It connects up to the OVN Southbound database over the OVSDB protocol, and down to the VTEP database over the OVSDB protocol.

ovn-controller-vtep provides the ovn-controller-vtep binary for controlling vtep gateways.

There are three methods to install ovn-controller-vtep on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install ovn-controller-vtep Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install ovn-controller-vtep using apt-get by running the following command:

sudo apt-get -y install ovn-controller-vtep

Install ovn-controller-vtep Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ovn-controller-vtep using apt by running the following command:

sudo apt -y install ovn-controller-vtep

Install ovn-controller-vtep Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install ovn-controller-vtep using aptitude by running the following command:

sudo aptitude -y install ovn-controller-vtep

How To Uninstall ovn-controller-vtep on Ubuntu 20.04

To uninstall only the ovn-controller-vtep package we can use the following command:

sudo apt-get remove ovn-controller-vtep

Uninstall ovn-controller-vtep And Its Dependencies

To uninstall ovn-controller-vtep and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove ovn-controller-vtep

Remove ovn-controller-vtep Configurations and Data

To remove ovn-controller-vtep configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge ovn-controller-vtep

Remove ovn-controller-vtep configuration, data, and all of its dependencies

We can use the following command to remove ovn-controller-vtep configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ovn-controller-vtep

References

Summary

In this tutorial we learn how to install ovn-controller-vtep package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.