Advertisement
Guest User

Untitled

a guest
Apr 13th, 2015
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. pi@raspberrypi ~ $ cat /etc/network/interfaces
  2. auto lo
  3. iface lo inet loopback
  4.  
  5. auto eth0
  6. iface eth0 inet static
  7. address 192.168.1.108
  8. netmask 255.255.255.0
  9. gateway 192.168.1.94
  10.  
  11. # allow-hotplug wlan0
  12. # iface wlan0 inet manual
  13. # wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
  14. # iface default inet dhcp
  15.  
  16. auto wlan0
  17. allow-hotplug wlan0
  18. iface wlan0 inet static
  19. address 192.168.1.109
  20. netmask 255.255.255.0
  21. gateway 192.168.1.94
  22. network 192.168.1.0
  23. broadcast 192.168.1.255
  24. wpa-ssid *********
  25. wpa-psk **********
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement