Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # I used this to connect to my university's wireless network on Ubuntu.
  2. # Here's the command I used:
  3. #
  4. # sudo wpa_supplicant -i wlp2s0 -c ./wpa_supplicant.conf
  5. #
  6.  
  7. network={
  8. ssid="YOUR_SSID"
  9. scan_ssid=1
  10. key_mgmt=WPA-EAP
  11. identity="YOUR_USERNAME"
  12. password="YOUR_PASSWORD"
  13. eap=PEAP
  14. phase1="peaplabel=0"
  15. phase2="auth=MSCHAPV2"
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement