Guest User

Untitled

a guest
Oct 22nd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. This command will add your network parameters to the configuration file of `wpa_supplicant`
  2. ```shell
  3. sudo -s
  4. wpa_passphrase YOUR_SSID YOUR_PASSWORD >> /etc/wpa_supplicant/wpa_supplicant.conf
  5. ```
  6. If the SSID of the network is hidden additional step need to be done:
  7. ```
  8. sudo vim /etc/wpa_supplicant/wpa_supplicant.conf
  9. ```
  10. Update what you just added `scan_ssid=1` in your network parameters, such as from
  11. ```
  12. network={
  13. ssid="YOUR_SSID"
  14. #psk="YOUR_PASSWORD"
  15. psk=YOUR_PREKEY
  16. }
  17. ```
  18. to
  19. ```
  20. network={
  21. ssid="YOUR_SSID"
  22. scan_ssid=1
  23. #psk="YOUR_PASSWORD"
  24. psk=YOUR_PREKEY
  25. }
  26. ```
Add Comment
Please, Sign In to add comment