Last active
September 14, 2019 14:42
-
-
Save godie007/5b318da7e44640e9b5ec3607d5dabdfd to your computer and use it in GitHub Desktop.
Configurar Ip Statica en Rasbian
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
> sudo nano /etc/dhcpcd.conf | |
interface wlan0 | |
static ip_address=192.168.57.19/24 | |
static routers=192.168.57.1 | |
static domain_name_servers=8.8.8.8 | |
static domain_search=8.8.4.4 | |
> sudo nano /etc/network/interfaces | |
auto lo | |
iface lo inet loopback | |
allow-hotplug wlan0 | |
iface wlan0 inet manual | |
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf | |
> sudo nano /etc/wpa_supplicant/wpa_supplicant.conf | |
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
network={ | |
ssid="Oasis" | |
psk="3135656345*" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment