Advertisement
Guest User

Untitled

a guest
Mar 9th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. # Use this file to configure your wifi connection(s).
  2. #
  3. # Just uncomment the lines prefixed with a single # of the configuration
  4. # that matches your wifi setup and fill in SSID and passphrase.
  5. #
  6. # You can configure multiple wifi connections by adding more 'network'
  7. # blocks.
  8. #
  9. # See https://linux.die.net/man/5/wpa_supplicant.conf
  10. # (or 'man -s 5 wpa_supplicant.conf') for advanced options going beyond
  11. # the examples provided below (e.g. various WPA Enterprise setups).
  12. #
  13. # !!!!! HEADS-UP WINDOWS USERS !!!!!
  14. #
  15. # Do not use Wordpad for editing this file, it will mangle it and your
  16. # configuration won't work. Use a proper text editor instead.
  17. # Recommended: Notepad++, VSCode, Atom, SublimeText.
  18. #
  19. # !!!!! HEADS-UP MACOSX USERS !!!!!
  20. #
  21. # If you use Textedit to edit this file make sure to use "plain text format"
  22. # and "disable smart quotes" in "Textedit > Preferences", otherwise Textedit
  23. # will use none-compatible characters and your network configuration won't
  24. # work!
  25.  
  26. ## WPA/WPA2 secured
  27. network={
  28. ssid="<ssid here>"
  29. #psk="<real key here>"
  30. psk=<hashed value here>
  31. }
  32.  
  33. ## Open/unsecured
  34. #network={
  35. # ssid="put SSID here"
  36. # key_mgmt=NONE
  37. #}
  38.  
  39. ## WEP "secured"
  40. ##
  41. ## WEP can be cracked within minutes. If your network is still relying on this
  42. ## encryption scheme you should seriously consider to update your network ASAP.
  43. #network={
  44. # ssid="put SSID here"
  45. # key_mgmt=NONE
  46. # wep_key0="put password here"
  47. # wep_tx_keyidx=0
  48. #}
  49.  
  50. # Uncomment the country your Pi is in to activate Wifi in RaspberryPi 3 B+ and above
  51. # For full list see: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
  52. #country=GB # United Kingdom
  53. #country=CA # Canada
  54. #country=DE # Germany
  55. #country=FR # France
  56. #country=US # United States
  57. country=NL # Netherlands
  58. ### You should not have to change the lines below #####################
  59.  
  60. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
  61. update_config=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement