Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 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 static
  13. address 192.168.1.10
  14. netmask 255.255.255.0
  15. gateway 192.168.1.1
  16. network 192.168.1.0
  17. broadcast 192.168.1.255
  18.  
  19.  
  20. allow-hotplug wlan0
  21. iface wlan0 inet manual
  22. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  23.  
  24. allow-hotplug wlan1
  25. iface wlan1 inet manual
  26. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement