How To Install python3-neutron-dynamic-routing on Ubuntu 20.04

In this tutorial we learn how to install python3-neutron-dynamic-routing on Ubuntu 20.04. python3-neutron-dynamic-routing is OpenStack Neutron Dynamic Routing - Python 3 library OpenStack Neutron Dynamic Routing - Python 3 library

Introduction

In this tutorial we learn how to install python3-neutron-dynamic-routing on Ubuntu 20.04.

What is python3-neutron-dynamic-routing

python3-neutron-dynamic-routing is:

Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (such as vNICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities, including QoS, ACLs, and network monitoring.

Neutron dynamic routing enables advertisement of self-service (private) network prefixes to physical network devices that support dynamic routing protocols such as routers, thus removing the conventional dependency on static routes.

It advertises three classes of routes:

  • Host routes for floating IP addresses hosted on non-DVR routers, the nexthop is the centralized router.
  • Host routes for floating IP addresses hosted on DVR routers, the nexthop is the appropriate compute node.
  • Prefix routes for directly routable tenant networks with address scopes, the nexthop is the centralized router, the same for DVR and CVR.

Neutron dynamic routing consists of service plug-in and agent. The service plug-in implements the Networking service extension and the agent manages dynamic routing protocol peering sessions. The plug-in communicates with the agent through RPC.

This package provides the Python 3 library.

Package: python3-neutron-dynamic-routing Architecture: all Version: 2:16.0.0~b3~git2020041013.045811b-0ubuntu1 Priority: extra Section: universe/python Source: neutron-dynamic-routing Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 487 Depends: python3-alembic (>= 0.8.10), python3-eventlet (>= 0.18.2), python3-httplib2 (>= 0.9.1), python3-netaddr (>= 0.7.18), python3-neutron (>= 2:16.0.0~), python3-neutron-lib (>= 1.26.0), python3-os-ken (>= 0.3.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.db (>= 4.27.0), python3-oslo.log (>= 3.36.0), python3-oslo.messaging (>= 5.29.0), python3-oslo.serialization (>= 2.18.0), python3-oslo.service (>= 1.24.0), python3-oslo.utils (>= 3.33.0), python3-pbr (>= 2.0.0), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.2.0), python3:any Filename: pool/universe/n/neutron-dynamic-routing/python3-neutron-dynamic-routing_16.0.0~b3~git2020041013.045811b-0ubuntu1_all.deb Size: 52972 MD5sum: c09f265e5d5643b66691f5781fb5f55e SHA1: 23c1fa7e89f4f0c64ea851ce61f08eb8781ad9bd SHA256: 22913bac3d1d9f252d38bc5e205cfd21790d81b273d5805d625e2ab66f291d0a Homepage: https://github.com/openstack/neutron-dynamic-routing Description-en: OpenStack Neutron Dynamic Routing - Python 3 library Neutron provides an API to dynamically request and configure virtual networks. These networks connect “interfaces” from other OpenStack services (such as vNICs from Nova VMs). The Neutron API supports extensions to provide advanced network capabilities, including QoS, ACLs, and network monitoring.

Neutron dynamic routing enables advertisement of self-service (private) network prefixes to physical network devices that support dynamic routing protocols such as routers, thus removing the conventional dependency on static routes.

It advertises three classes of routes:

  • Host routes for floating IP addresses hosted on non-DVR routers, the nexthop is the centralized router.
  • Host routes for floating IP addresses hosted on DVR routers, the nexthop is the appropriate compute node.
  • Prefix routes for directly routable tenant networks with address scopes, the nexthop is the centralized router, the same for DVR and CVR.

Neutron dynamic routing consists of service plug-in and agent. The service plug-in implements the Networking service extension and the agent manages dynamic routing protocol peering sessions. The plug-in communicates with the agent through RPC.

This package provides the Python 3 library.

There are three methods to install python3-neutron-dynamic-routing 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 python3-neutron-dynamic-routing Using apt-get

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

sudo apt-get update

After updating apt database, We can install python3-neutron-dynamic-routing using apt-get by running the following command:

sudo apt-get -y install python3-neutron-dynamic-routing

Install python3-neutron-dynamic-routing Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-neutron-dynamic-routing using apt by running the following command:

sudo apt -y install python3-neutron-dynamic-routing

Install python3-neutron-dynamic-routing 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 python3-neutron-dynamic-routing using aptitude by running the following command:

sudo aptitude -y install python3-neutron-dynamic-routing

How To Uninstall python3-neutron-dynamic-routing on Ubuntu 20.04

To uninstall only the python3-neutron-dynamic-routing package we can use the following command:

sudo apt-get remove python3-neutron-dynamic-routing

Uninstall python3-neutron-dynamic-routing And Its Dependencies

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

sudo apt-get -y autoremove python3-neutron-dynamic-routing

Remove python3-neutron-dynamic-routing Configurations and Data

To remove python3-neutron-dynamic-routing configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge python3-neutron-dynamic-routing

Remove python3-neutron-dynamic-routing configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python3-neutron-dynamic-routing

References

Summary

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