I assign static IP addresses to all my computers and, originally, I found the best method to achieve this with raspbian was to use the router to assign an IP address to the MAC address of the wifi card. I did this and all is fine. My interfaces file looks like:
A quick flick around the net suggests I just need to add 8.8.8.8 to /etc/resolv.conf sopi@resurgam ~ $ cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
becomesnameserver 192.168.1.1
Is that correct? Then I have to restart wlan0?nameserver 192.168.1.1 8.8.8.8
Cheers