Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.83 KB | None | 0 0
  1. # Inventorious headless setup
  2.  
  3. network={
  4.   ssid="firstnet"
  5.   psk="pass"
  6. }
  7.  
  8.  
  9. ## WPA/WPA2 secured
  10. network={
  11.   ssid="othernet"
  12.   psk="pass"
  13. }
  14.  
  15. #uber
  16. network={
  17.   ssid="homewifi"
  18.   psk="pass"
  19. }
  20.  
  21. # Fallback for home network secured place
  22. network={
  23.   ssid="Guest-2.4GHz"
  24.   psk="jigabits"
  25. }
  26.  
  27. ## Open/unsecured
  28. #network={
  29. #  ssid="put SSID here"
  30. #  key_mgmt=NONE
  31. #}
  32.  
  33. # Uncomment the country your Pi is in to activate Wifi in RaspberryPi 3 B+ and above
  34. # For full list see: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
  35. #country=GB # United Kingdom
  36. #country=CA # Canada
  37. #country=DE # Germany
  38. #country=FR # France
  39. country=US # United States
  40. #country=AU # United States
  41.  
  42. ### You should not have to change the lines below #####################
  43.  
  44. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
  45. update_config=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement