Guest User

Untitled

a guest
Mar 13th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. # This is the name of the WiFi interface we configured above
  2. interface=wlan0
  3.  
  4. # Use the nl80211 driver with the brcmfmac driver
  5. driver=nl80211
  6.  
  7. # This is the name of the network
  8. ssid=Pi3-AP
  9.  
  10. # Use the 2.4GHz band
  11. hw_mode=g
  12.  
  13. # Use channel 6
  14. channel=6
  15.  
  16. # Enable 802.11n
  17. ieee80211n=1
  18.  
  19. # Enable WMM
  20. wmm_enabled=1
  21.  
  22. # Enable 40MHz channels with 20ns guard interval
  23. ht_capab=[HT40][SHORT-GI-20][DSSS_CCK-40]
  24.  
  25. # Accept all MAC addresses
  26. macaddr_acl=0
  27.  
  28. # Use WPA authentication
  29. auth_algs=1
  30.  
  31. # Require clients to know the network name
  32. ignore_broadcast_ssid=0
  33.  
  34. # Use WPA2
  35. wpa=2
  36.  
  37. # Use a pre-shared key
  38. wpa_key_mgmt=WPA-PSK
  39.  
  40. # The network passphrase
  41. wpa_passphrase=raspberry
  42.  
  43. # Use AES, instead of TKIP
  44. rsn_pairwise=CCMP
Add Comment
Please, Sign In to add comment