Skip to content
This repository was archived by the owner on Sep 30, 2021. It is now read-only.
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
7 changes: 6 additions & 1 deletion create_ap
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,9 @@ NEW_MACADDR=
DAEMONIZE=0
NO_HAVEGED=0
USE_PSK=0
MITIGATE_KRACK=1
IEEE80211W_LEVEL=0
WPA_CIPHER=TKIP CCMP

HOSTAPD_DEBUG_ARGS=
REDIRECT_TO_LOCALHOST=0
Expand Down Expand Up @@ -1657,8 +1660,10 @@ if [[ -n "$PASSPHRASE" ]]; then
wpa=${WPA_VERSION}
wpa_${WPA_KEY_TYPE}=${PASSPHRASE}
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
wpa_pairwise=${WPA_CIPHER}
rsn_pairwise=CCMP
wpa_disable_eapol_key_retries=${MITIGATE_KRACK}
ieee80211w=${IEEE80211W_LEVEL}
EOF
fi

Expand Down
3 changes: 3 additions & 0 deletions create_ap.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ INTERNET_IFACE=eth0
SSID=MyAccessPoint
PASSPHRASE=12345678
USE_PSK=0
MITIGATE_KRACK=1
IEEE80211W_LEVEL=0
WPA_CIPHER=TKIP CCMP