Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. # interfaces(5) file used by ifup(8) and ifdown(8)
  2.  
  3. # Please note that this file is written to be used with dhcpcd
  4. # For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
  5.  
  6. # Include files from /etc/network/interfaces.d:
  7. source-directory /etc/network/interfaces.d
  8.  
  9. auto lo
  10. iface lo inet loopback
  11.  
  12. iface eth0 inet manual
  13.  
  14. allow-hotplug wlan0
  15. iface wlan0 inet manual
  16. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  17.  
  18. allow-hotplug wlan1
  19. iface wlan1 inet manual
  20. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  21.  
  22. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
  23. update_config=1
  24.  
  25. network={
  26. ssid="myNetworkName"
  27. psk="myNetworkPassword"
  28. key_mgmt=WPA-PSK
  29. }
  30.  
  31. allow-hotplug wlan0
  32. iface wlan0 inet manual
  33. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  34.  
  35. auto wlan0
  36. allow-hotplug wlan0
  37. iface wlan0 inet dhcp
  38. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  39.  
  40. network={
  41. ssid="my network name"
  42. psk="my network password"
  43. proto=RSN
  44. key_mgmt=WPA-PSK
  45. pairwise=CCMP
  46. auth_alg=OPEN
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement