How To Install neutron-dhcp-agent on Ubuntu 20.04

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

Introduction

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

What is neutron-dhcp-agent

neutron-dhcp-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 DHCP agent.

Package: neutron-dhcp-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: 46 Depends: dnsmasq-base (>= 2.76), dnsmasq-utils (>= 2.76), neutron-metadata-agent (= 2:16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2), python3-neutron (= 2:16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2) Filename: pool/main/n/neutron/neutron-dhcp-agent_16.0.0~b3~git2020041516.5f42488a9a-0ubuntu2_all.deb Size: 5176 MD5sum: ca599d7710cc3cbc80a832db4731b8a3 SHA1: 5a766ce9627fc8d52af85de50713e385cd44bb05 SHA256: cfc1eb409f4359f9aff653587865a15595214ebadcb194b494d24d39ce4d20c8 Homepage: https://docs.openstack.org/neutron Description-en: Neutron is a virtual network service for Openstack - DHCP 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 DHCP agent.

There are three methods to install neutron-dhcp-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-dhcp-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-dhcp-agent using apt-get by running the following command:

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

Install neutron-dhcp-agent Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install neutron-dhcp-agent

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

sudo aptitude -y install neutron-dhcp-agent

How To Uninstall neutron-dhcp-agent on Ubuntu 20.04

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

sudo apt-get remove neutron-dhcp-agent

Uninstall neutron-dhcp-agent And Its Dependencies

To uninstall neutron-dhcp-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-dhcp-agent

Remove neutron-dhcp-agent Configurations and Data

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

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

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

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

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

References

Summary

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