0

I'm tired idea how to install this package eapol_test, I read online how I can make install it, but it didn't work for many time so How can I Install the eapol_test in Ubuntu in a simple and concise way ? (My Ubuntu 20.04.3 )

1 Answers1

1

You can install it from universe repository for Ubuntu hirsute, impish and jammy:

sudo add-apt-repository universe
sudo apt update
sudo apt install eapoltest

You can build the package for all Ubuntu releases:

sudo apt install git libssl-dev devscripts pkg-config libnl-3-dev libnl-genl-3-dev
git clone --depth 1 --no-single-branch https://github.com/FreeRADIUS/freeradius-server.git
cd freeradius-server/scripts/ci/
./eapol_test-build.sh
cp ./eapol_test/eapol_test /usr/local/bin/
GAD3R
  • 63,407
  • 31
  • 131
  • 192