Static IP¶
Easy way¶
Configure Static IP from your Raspberry Shake’s internal web configuration page http://rs.local/
Step-by-step guide for advanced users¶
ssh into your raspberryshake (using linux or putty for Windows). See How to access your Raspberry Shake’s computer via ssh for details.
Edit this file using “nano”, for example:
$ sudo nano /etc/dhcpcd.conf
Add these lines to the end of the file:
If using ethernet connection:
interface eth0 static ip_address=192.168.1.100/24 static routers=192.168.1.1 static domain_name_servers=192.168.1.1If using onboard or USB wifi:
interface wlan0 static ip_address=192.168.1.100/24 static routers=192.168.1.1 static domain_name_servers=192.168.1.1Set the ip_address, routers and domain_name_servers values according to your network.
Save the file
Restart:
$ sudo reboot
See also: Why does my Raspberry Shake change IP?