WPA using Raspberry Pi 3B+ default wifi. August 02, 2018 08:18PM |
Registered: 6 years ago Posts: 2 |
interface=wlan0 driver=n180211 ssid=PrivateBox channel=1 # Remove # to enable n wifi mode #ieee80211n #wmm_enabled=1 #ht_capab=[HT40+][SHORT-GI-40][DSSS_CCK40] #hw_mode=g # Put a # in front of the following line to allow # direct client 2 client connection ap_isolate=1 #macaddr_acl=0 # Uncomment the following lines to enable WPA #wpa=1 #auth_algs=1 #wpa_key_mgmt=WPA-PSK #wpa_pairwise=TKIP CCMP #rsn_pairwise=CCMP #wpa_passphrase=taco
Re: WPA using Raspberry Pi 3B+ default wifi. August 04, 2018 09:49PM |
Admin Registered: 12 years ago Posts: 311 |
#hw_mode=gwhich would cause the issue. So to enable the wifi network again, simply remove the #, so change to
hw_mode=g
wpa=1 auth_algs=1 wpa_key_mgmt=WPA-PSK wpa_pairwise=TKIP CCMP rsn_pairwise=CCMP wpa_passphrase=taco
Re: WPA using Raspberry Pi 3B+ default wifi. August 04, 2018 10:11PM |
Registered: 6 years ago Posts: 2 |