How To Install neutron-linuxbridge-agent on Ubuntu 20.04

In this tutorial we learn how to install neutron-linuxbridge-agent on Ubuntu 20.04. neutron-linuxbridge-agent is Neutron is a virtual network service for Openstack - linuxbridge agent Neutron is a virtual network service for Openstack - linuxbridge agent

Introduction

In this tutorial we learn how to install neutron-linuxbridge-agent on Ubuntu 20.04.

What is neutron-linuxbridge-agent

neutron-linuxbridge-agent is:

Neutron is a virtual network service for Openstack, and a part of Netstack. Just like OpenStack Nova provides an API to dynamically request and configure virtual servers, Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (e.g., virtual NICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities (e.g., QoS, ACLs, network monitoring, etc.)

This package provides the linuxbridge plugin agent.

Package: neutron-linuxbridge-agent Architecture: all Version: 2:16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2 Priority: optional Section: net Source: neutron Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Chuck Short [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 58 Depends: bridge-utils, conntrack, ebtables, python3-neutron (= 2:16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2) Breaks: neutron-plugin-linuxbirdge-agent (« 2:8.0.0~b2-0ubuntu5~), neutron-plugin-ml2 (« 2:8.0.0~b2-0ubuntu5~) Replaces: neutron-plugin-linuxbridge-agent (« 2:8.0.0~b2-0ubuntu5~), neutron-plugin-ml2 (« 2:8.0.0~b2-0ubuntu5~) Filename: pool/main/n/neutron/neutron-linuxbridge-agent_16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2_all.deb Size: 5564 MD5sum: 47cbfa19415d4c340d09b8e3a4df2d96 SHA1: a3717d8366fafcf5c7e51a26a7ce52d7ad122045 SHA256: c60389c5425ae883f31e988ae4e2927b0611f88bfa73956363f6043b873e47d4 Homepage: https://docs.openstack.org/neutron Description-en: Neutron is a virtual network service for Openstack - linuxbridge agent Neutron is a virtual network service for Openstack, and a part of Netstack. Just like OpenStack Nova provides an API to dynamically request and configure virtual servers, Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (e.g., virtual NICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities (e.g., QoS, ACLs, network monitoring, etc.)

This package provides the linuxbridge plugin agent.

There are three methods to install neutron-linuxbridge-agent 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 neutron-linuxbridge-agent Using apt-get

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

sudo apt-get update

After updating apt database, We can install neutron-linuxbridge-agent using apt-get by running the following command:

sudo apt-get -y install neutron-linuxbridge-agent

Install neutron-linuxbridge-agent Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install neutron-linuxbridge-agent using apt by running the following command:

sudo apt -y install neutron-linuxbridge-agent

Install neutron-linuxbridge-agent 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 neutron-linuxbridge-agent using aptitude by running the following command:

sudo aptitude -y install neutron-linuxbridge-agent

How To Uninstall neutron-linuxbridge-agent on Ubuntu 20.04

To uninstall only the neutron-linuxbridge-agent package we can use the following command:

sudo apt-get remove neutron-linuxbridge-agent

Uninstall neutron-linuxbridge-agent And Its Dependencies

To uninstall neutron-linuxbridge-agent and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove neutron-linuxbridge-agent

Remove neutron-linuxbridge-agent Configurations and Data

To remove neutron-linuxbridge-agent configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge neutron-linuxbridge-agent

Remove neutron-linuxbridge-agent configuration, data, and all of its dependencies

We can use the following command to remove neutron-linuxbridge-agent configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge neutron-linuxbridge-agent

References

Summary

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