How To Install arpon on Debian 11

In this tutorial we learn how to install arpon on Debian 11. arpon is Versatile ARP defense daemon

Introduction

In this tutorial we learn how to install arpon on Debian 11.

What is arpon

arpon is:

ArpON can defend a host against some ARP attacks such as ARP spoofing, ARP cache poisoning and ARP poison routing. Attackers can use these techniques to redirect traffic in local networks and execute Man in the Middle (MITM) attacks.

ArpON runs as a daemon in user space. When enabled on an interface, it disables some aspects of Address Resolution Protocol (ARP) handling by the Linux kernel and instead handles ARP messages itself and maintains the ARP neighbor cache. It has three modes of operation to support different ways of assigning IPv4 addresses in the local network: statically, dynamically using DHCP or a combination of both.

There are three methods to install arpon on Debian 11. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install arpon Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install arpon

Install arpon Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install arpon using apt by running the following command:

sudo apt -y install arpon

Install arpon 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install arpon using aptitude by running the following command:

sudo aptitude -y install arpon

How To Uninstall arpon on Debian 11

To uninstall only the arpon package we can use the following command:

sudo apt-get remove arpon

Uninstall arpon And Its Dependencies

To uninstall arpon and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove arpon

Remove arpon Configurations and Data

To remove arpon configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge arpon

Remove arpon configuration, data, and all of its dependencies

We can use the following command to remove arpon configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge arpon

Dependencies

arpon have the following dependencies:

References

Summary

In this tutorial we learn how to install arpon package on Debian 11 using different package management tools: apt, apt-get and aptitude.