Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions rad_eap_test
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down