Advertisement
Guest User

Untitled

a guest
Mar 24th, 2015
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. pi@raspberrypi:~$ sudo cat /etc/wpa_supplicant/wpa_supplicant.conf
  2. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
  3. update_config=1
  4.  
  5. network={
  6. ssid="myssid"
  7. psk="mypassword"
  8.  
  9. # Protocol type can be: RSN (for WP2) and WPA (for WPA1)
  10. proto=RSN
  11.  
  12. # Key management type can be: WPA-PSK or WPA-EAP (Pre-Shared or Enterprise)
  13. key_mgmt=WPA-PSK
  14.  
  15. # Pairwise can be CCMP or TKIP (for WPA2 or WPA1)
  16. pairwise=CCMP
  17.  
  18. #Authorization option should be OPEN for both WPA1/WPA2 (in less commonly used are SHARED and LEAP)
  19. auth_alg=OPEN
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement