Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. rpi ~$ man wpa_supplicant.conf
  2.  
  3. # work network; use EAP-TLS with WPA; allow only CCMP and TKIP ciphers
  4. network={
  5. ssid="work"
  6. scan_ssid=1
  7. key_mgmt=WPA-EAP
  8. pairwise=CCMP TKIP
  9. group=CCMP TKIP
  10. eap=TLS
  11. identity="user@example.com"
  12. ca_cert="/etc/cert/ca.pem"
  13. client_cert="/etc/cert/user.pem"
  14. private_key="/etc/cert/user.prv"
  15. # private_key_passwd="password"
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement