How To Install isc-dhcp-client-ddns on Ubuntu 20.04

In this tutorial we learn how to install isc-dhcp-client-ddns on Ubuntu 20.04. isc-dhcp-client-ddns is Dynamic DNS (DDNS) enabled DHCP client Dynamic DNS (DDNS) enabled DHCP client

Introduction

In this tutorial we learn how to install isc-dhcp-client-ddns on Ubuntu 20.04.

What is isc-dhcp-client-ddns

isc-dhcp-client-ddns is:

This a Dynamic DNS enabled version of the DHCP client.

Dynamic Host Configuration Protocol (DHCP) is a protocol like BOOTP (actually dhcpd includes much of the functionality of bootpd). It gives client machines “leases” for IP addresses and can automatically set their network configuration. If your machine depends on DHCP (especially likely if it’s a workstation on a large network, or a laptop, or attached to a cable modem), keep this or another DHCP client installed.

Extra documentation can be found in the package isc-dhcp-common.

Package: isc-dhcp-client-ddns Architecture: amd64 Version: 4.4.1-2.1ubuntu5 Priority: optional Section: universe/net Source: isc-dhcp Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian ISC DHCP Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 668 Depends: libc6 (>= 2.15), libdns-export1109, libirs-export161, libisc-export1105, isc-dhcp-client (= 4.4.1-2.1ubuntu5) Enhances: isc-dhcp-client Filename: pool/universe/i/isc-dhcp/isc-dhcp-client-ddns_4.4.1-2.1ubuntu5_amd64.deb Size: 207200 MD5sum: 7420b1d6f627e913c35bfeb1a67ab863 SHA1: 91e2375a7addc493d70544b294170af639f37d69 SHA256: 29db112368122f0697871698769b797024ad32d6eba6c2c4cdaf7dba3c52909b Homepage: http://www.isc.org Description-en: Dynamic DNS (DDNS) enabled DHCP client This a Dynamic DNS enabled version of the DHCP client.

Dynamic Host Configuration Protocol (DHCP) is a protocol like BOOTP (actually dhcpd includes much of the functionality of bootpd). It gives client machines “leases” for IP addresses and can automatically set their network configuration. If your machine depends on DHCP (especially likely if it’s a workstation on a large network, or a laptop, or attached to a cable modem), keep this or another DHCP client installed.

Extra documentation can be found in the package isc-dhcp-common.

There are three methods to install isc-dhcp-client-ddns 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 isc-dhcp-client-ddns Using apt-get

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

sudo apt-get update

After updating apt database, We can install isc-dhcp-client-ddns using apt-get by running the following command:

sudo apt-get -y install isc-dhcp-client-ddns

Install isc-dhcp-client-ddns Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install isc-dhcp-client-ddns using apt by running the following command:

sudo apt -y install isc-dhcp-client-ddns

Install isc-dhcp-client-ddns 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 isc-dhcp-client-ddns using aptitude by running the following command:

sudo aptitude -y install isc-dhcp-client-ddns

How To Uninstall isc-dhcp-client-ddns on Ubuntu 20.04

To uninstall only the isc-dhcp-client-ddns package we can use the following command:

sudo apt-get remove isc-dhcp-client-ddns

Uninstall isc-dhcp-client-ddns And Its Dependencies

To uninstall isc-dhcp-client-ddns and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove isc-dhcp-client-ddns

Remove isc-dhcp-client-ddns Configurations and Data

To remove isc-dhcp-client-ddns configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge isc-dhcp-client-ddns

Remove isc-dhcp-client-ddns configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge isc-dhcp-client-ddns

References

Summary

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