Pairwise wifi option

This commit is contained in:
Bob Mottram 2014-12-25 17:56:36 +00:00
parent a4f11fb0cc
commit 98a6d083c2
1 changed files with 5 additions and 1 deletions

View File

@ -7208,7 +7208,11 @@ function enable_wifi_hotspot {
echo '## Set cipher suites (encryption algorithms) ##' >> /etc/hostapd/hostapd.conf
echo '## TKIP = Temporal Key Integrity Protocol' >> /etc/hostapd/hostapd.conf
echo '## CCMP = AES in Counter mode with CBC-MAC' >> /etc/hostapd/hostapd.conf
echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
if [ ! $WIFI_PASSWORD ]; then
echo 'wpa_pairwise=NONE' >> /etc/hostapd/hostapd.conf
else
echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
fi
echo '#rsn_pairwise=CCMP' >> /etc/hostapd/hostapd.conf
echo '#' >> /etc/hostapd/hostapd.conf
echo '## Shared Key Authentication ##' >> /etc/hostapd/hostapd.conf