From fe592a7a8d4bfc7a1b2ebf6dbde1664c4758f6e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Sieb=C3=B6rger?= Date: Fri, 3 Mar 2023 16:10:53 +0200 Subject: [PATCH 1/2] Remove TKIP and WEP as wpa_supplicant no longer supports them by default. --- rad_eap_test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rad_eap_test b/rad_eap_test index d92ad83..ba8a37d 100755 --- a/rad_eap_test +++ b/rad_eap_test @@ -576,8 +576,8 @@ function generate_config() if [[ "$EAP" = "PEAP" || "$EAP" = "TTLS" ]] then - echo " pairwise=CCMP TKIP" >> $CONF - echo " group=CCMP TKIP WEP104 WEP40" >> $CONF + echo " pairwise=CCMP" >> $CONF + echo " group=CCMP" >> $CONF echo " phase2=\"auth=$PHASE2\"" >> $CONF fi From 4080b7bb7b68decd0e1a6bed9459816cad3d99fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Sieb=C3=B6rger?= Date: Fri, 3 Mar 2023 16:12:52 +0200 Subject: [PATCH 2/2] Update to wpa_supplicant version 2.10. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e8aa77e..f9b445c 100644 --- a/README.md +++ b/README.md @@ -39,9 +39,9 @@ To compile eapol_test do the following: ``` apt-get install libnl-genl-3-dev libdbus-1-dev libssl-dev pkg-config gcc make -wget http://w1.fi/releases/wpa_supplicant-2.8.tar.gz -tar xvzf wpa_supplicant-2.8.tar.gz -cd wpa_supplicant-2.8/wpa_supplicant +wget http://w1.fi/releases/wpa_supplicant-2.10.tar.gz +tar xvzf wpa_supplicant-2.10.tar.gz +cd wpa_supplicant-2.10/wpa_supplicant cp defconfig .config sed -i 's/^#CONFIG_EAPOL_TEST=y/CONFIG_EAPOL_TEST=y/' .config echo -e "# IPv6 support for eapol test\nCONFIG_IPV6=y" >> .config