Advertisement
parkerlreed

Untitled

Mar 5th, 2013
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. /etc/network/interfaces
  2. -------------------------
  3. auto lo
  4.  
  5. iface lo inet loopback
  6. iface eth0 inet dhcp
  7.  
  8. auto wlan0
  9. iface wlan0 inet dhcp
  10. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  11. -------------------------
  12.  
  13. And the /etc/wpa_supplicant/wpa_supplicant.conf file
  14. -------------------------
  15. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
  16. update_config=1
  17.  
  18. network={
  19. ssid="linksys"
  20. key_mgmt=NONE
  21. auth_alg=OPEN
  22. }
  23.  
  24. network={
  25. ssid="ETSUWiFi"
  26. proto=RSN
  27. key_mgmt=WPA-EAP
  28. pairwise=CCMP
  29. auth_alg=OPEN
  30. eap=PEAP
  31. identity="usernamehere"
  32. password="passwordhere"
  33. }
  34. -----------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement