Advertisement
epl70

WLAN start on boot

Nov 29th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.45 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.  
  11. iface lo inet loopback
  12. iface eth0 inet dhcp
  13.  
  14. allow-hotplug wlan0
  15. iface wlan0 inet dhcp
  16. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  17. iface default inet dhcp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement