Advertisement
Guest User

Untitled

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