Advertisement
Guest User

Untitled

a guest
Nov 30th, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. # /etc/network/interfaces
  2.  
  3. # interfaces(5) file used by ifup(8) and ifdown(8)
  4.  
  5. # Please note that this file is written to be used with dhcpcd
  6. # For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
  7.  
  8. # Include files from /etc/network/interfaces.d:
  9. source-directory /etc/network/interfaces.d
  10.  
  11. auto lo
  12. iface lo inet loopback
  13.  
  14. iface eth0 inet manual
  15.  
  16. #allow-hotplug wlan0
  17. #iface wlan0 inet manual
  18. # wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  19.  
  20. #allow-hotplug wlan1
  21. #iface wlan1 inet manual
  22. # wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
  23.  
  24. #Прошиваю роутер:
  25. #iface eth0 inet static
  26. # address 192.168.1.2
  27. # netmask 255.255.255.0
  28. # gateway 192.168.1.1
  29.  
  30.  
  31. # More info:
  32. # /usr/share/debian-reference/ch05.en.html
  33. # /usr/share/doc/wpasupplicant/README.modes.gz
  34. # man wpa_supplicant.conf
  35. allow-hotplug wlan0
  36. iface wlan0 inet manual
  37. wpa-conf /home/pi/wpa_supplicant.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement