How To Install onesixtyone on Kali Linux
Introduction
In this tutorial we learn how to install onesixtyone on Kali Linux.
What is onesixtyone
onesixtyone is:
onesixtyone is a simple SNMP scanner which sends SNMP requests for the sysDescr value asynchronously with user-adjustable sending times and then logs the responses which gives the description of the software running on the device.
Running onesixtyone on a class B network (switched 100Mbs with 1Gbs backbone) with -w 10 gives a performance of 3 seconds per class C, with no dropped packets, and all 65536 IP addresses were scanned in less than 13 minutes.
There are three methods to install onesixtyone on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install onesixtyone Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install onesixtyone using apt-get by running the following command:
sudo apt-get -y install onesixtyoneInstall onesixtyone Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install onesixtyone using apt by running the following command:
sudo apt -y install onesixtyoneInstall onesixtyone Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install onesixtyone using aptitude by running the following command:
sudo aptitude -y install onesixtyoneHow To Uninstall onesixtyone on Kali Linux
To uninstall only the onesixtyone package we can use the following command:
sudo apt-get remove onesixtyoneUninstall onesixtyone And Its Dependencies
To uninstall onesixtyone and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove onesixtyoneRemove onesixtyone Configurations and Data
To remove onesixtyone configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge onesixtyoneRemove onesixtyone configuration, data, and all of its dependencies
We can use the following command to remove onesixtyone configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge onesixtyoneDependencies
onesixtyone have the following dependencies:
References
Summary
In this tutorial we learn how to install onesixtyone package on Kali Linux using different package management tools: apt, apt-get and aptitude.