wpa_supplicant.conf 779 B

12345678910111213141516171819202122232425262728
  1. # allow frontend (e.g., wpa_cli) to be used by all users in 'wheel' group
  2. ctrl_interface=DIR=/var/run/wpa_supplicant
  3. #GROUP=wheel
  4. # Typical minimal wifi setup:
  5. network={
  6. ssid="--your-ESSID--"
  7. key_mgmt=WPA-PSK
  8. psk="--your-password--"
  9. }
  10. # Other fields:
  11. # scan_ssid=1
  12. # key_mgmt=WPA-EAP WPA-PSK IEEE8021X NONE
  13. # pairwise=CCMP TKIP
  14. # group=CCMP TKIP WEP104 WEP40
  15. # eap=TTLS PEAP TLS
  16. # identity="user@example.com"
  17. # password="foobar"
  18. # ca_cert="/etc/cert/ca.pem"
  19. # client_cert="/etc/cert/user.pem"
  20. # private_key="/etc/cert/user.prv"
  21. # private_key_passwd="password"
  22. # phase1="peaplabel=0"
  23. # ca_cert2="/etc/cert/ca2.pem"
  24. # client_cert2="/etc/cer/user.pem"
  25. # private_key2="/etc/cer/user.prv"
  26. # private_key2_passwd="password"