So I'm having some issues connecting to my pi via VNC (pi 2B, with raspbian Jessie).
It all works fine when I used the assigned IP address, but when I change it so that it has a static IP it doesn't work at all.
To set up my static IP, I've been using: sudo nano/network/interfaces, and then altering the wlan0 settings as follows:
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.1.105
netmask 255.255.255.0
network 10.1.1.0
broadcast 10.1.1.255
gateway 10.1.1.1
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
This has all worked ok with a previous project that used static IP addresses to get Pi's to talk to each other. Any ideas as to why its not working in this scenario?