with ARP replies
sudo ./acp 192.168.0.1 192.168.0.15
or with ARP request
sudo ./acp -q 192.168.0.1 192.168.0.15
gcc
autoconf
automake
libtool
m4
libpcap
You can usually install these through you distributions package manager.
sudo apt-get install gcc autoconf automake libtool m4 libpcap-dev
sudo pacman -S gcc autoconf automake libtool m4 libpcap
To build the project run the following commands in the project root:
./autogen.sh
then
./configure
After the makefiles have been generated, build the project by running:
make
At this point you can run acp
directly from the src
directory, but if you wish to install it so that you can run it from anywhere run:
sudo make install
The install can be undone by running:
sudo make uninstall