Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 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. auto eth0
  13. iface eth0 inet static
  14. address 10.0.0.5
  15. netmask 255.255.255.0
  16. gateway 10.0.0.138
  17.  
  18. allow-hotplug wlan0
  19. iface wlan0 inet manual
  20. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  21.  
  22. allow-hotplug wlan1
  23. iface wlan1 inet manual
  24. wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement