Set a static IP address in Raspbian Jessie.
From the CLI, edit the dhcp file file. Do not use /etc/network/interfaces like you used to with previous Raspbian versions.
sudo nano /etc/dhcpcd.conf
Append this to the bottom of the file with your desired IP address.
interface eth0
static ip_address=192.168.1.111/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1
(Visited 370 times, 1 visits today)