Guest User

Untitled

a guest
May 23rd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. `/etc/network/interfaces`:
  2.  
  3. ```config
  4. auto eth0
  5. iface eth0 inet dhcp
  6. wpa-driver wired
  7. wpa-conf /etc/wpa_supplicant.conf
  8. ```
  9.  
  10. `/etc/wpa_supplicant.conf`:
  11.  
  12. ```config
  13. network={
  14. key_mgmt=IEEE8021X
  15. pairwise=CCMP
  16. identity="USERNAME"
  17. password="PASSWORD"
  18. ca_cert="/usr/share/ca-certificates/my-root-ca/my-root.crt"
  19. eap=PEAP
  20. eapol_flags=0
  21. phase2="auth=MSCHAPV2"
  22. }
  23. ```
  24.  
  25. Tested:
  26. No
Add Comment
Please, Sign In to add comment