Advertisement
Guest User

Untitled

a guest
Mar 11th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 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. allow-hotplug usb0
  23. iface usb0 inet static
  24. address 192.168.7.2
  25. netmask 255.255.255.0
  26. network 192.168.7.0
  27. broadcast 192.168.7.255
  28. gateway 192.168.7.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement