Created
July 19, 2017 09:34
-
-
Save SkaTeMasTer/abd2566bf97a575e9ed6a22e5dc5cde0 to your computer and use it in GitHub Desktop.
/etc/network/interfaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Local | |
auto lo | |
iface lo inet loopback | |
# Ethernet | |
auto eth0 | |
iface eth0 inet static | |
address 192.168.1.104 | |
netmask 255.255.255.0 | |
gateway 192.168.1.1 | |
dns-nameservers 8.8.8.8 8.8.4.4 | |
# Wifi | |
#auto wlan0 | |
iface wlan0 inet dhcp | |
address 192.168.1.100 | |
netmask 255.255.255.0 | |
gateway 192.168.1.1 | |
wireless-essid MyPi | |
wireless-key abcde12345 | |
wireless-mode Managed | |
wireless-power off | |
wpa-ssid Ring_of_Steel | |
wpa-psk 666Pack! | |
#dns-nameservers 8.8.8.8 8.8.4.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment