Advertisement
Guest User

Untitled

a guest
Jun 28th, 2013
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $ cat network/interfaces
  2. # Loopback
  3. auto lo
  4. iface lo inet loopback
  5.  
  6. # 10/100 Ethernet
  7. auto eth0
  8. iface eth0 inet dhcp
  9.  
  10. # Wireless
  11. auto wlan0
  12. # Roaming Configuration
  13. iface wlan0 inet manual
  14. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  15.  
  16. iface default inet dhcp
  17.  
  18. $ cat wpa_supplicant/wpa_supplicant.conf
  19. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
  20. update_config=1
  21.  
  22. network={
  23. ssid="YOUR SSID HERE"
  24. #proto=RSN
  25. #key_mgmt=WPA-PSK
  26. #pairwise=CCMP
  27. #group=CCMP
  28. psk=YOUR HASHED PASSWORD HERE
  29. }
  30.  
  31. network={
  32. key_mgmt=NONE
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement