Guest User

Untitled

a guest
Jan 26th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. system-ca-cert=true
  2.  
  3. cd /etc/NetworkManager/system-connections
  4. sudo touch SSID #SSID is the name of the profile, e.g. eduroam
  5. sudo nano SSID
  6.  
  7. [ipv6]
  8. method=auto
  9.  
  10. [connection]
  11. id=SSID #(e.g.EDUroam)
  12. uuid=9e123fbc-0123-46e3-97b5-f3214e123456 #unique uuid will be created upon creation of this profile
  13. type=802-11-wireless
  14.  
  15. [802-11-wireless-security]
  16. key-mgmt=wpa-eap
  17. auth-alg=open
  18.  
  19. [802-11-wireless]
  20. ssid=SSID
  21. mode=infrastructure
  22. mac-address=0A:12:3C:DA:C1:A5
  23. security=802-11-wireless-security
  24.  
  25. [802-1x]
  26. eap=peap;
  27. identity=studentid123123
  28. phase2-auth=mschapv2
  29. password=mypass123123
  30.  
  31. [ipv4]
  32. method=auto
  33.  
  34. -o<driver> and -O<ctrl>
  35.  
  36. /usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
  37.  
  38. [D-BUS Service]
  39. Name=fi.epitest.hostap.WPASupplicant
  40. Exec=/sbin/wpa_supplicant -u -f /var/log/wpa_supplicant.log
  41. User=root
  42.  
  43. [D-BUS Service]
  44. Name=fi.epitest.hostap.WPASupplicant
  45. Exec=/sbin/wpa_supplicant -u -onl80211 -O/var/run/wpa_supplicant
  46. User=root
Add Comment
Please, Sign In to add comment