I have finally got my Pi up and running with 2013-02-09-wheezy-raspbian and have set it up with a static IP address and it all seems to work (I can even access the internet).
However I am unable to resolve the names for machines on my network! I can ping etc by IP address but not be name.
So ping 192.168.2.4 gets responses
ping Windows7 returns ping: unknown host Windows7
ping Windows7.Belkin is an unknown host as well
I know I could add the machines to the Hosts table except most of the machines are using DHCP and so their IP changes.
What am I doing wrong?
for info:
ipconfig on windows7 gives
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . : Belkin
Link-local IPv6 Address . . . . . : fe80::7cc9:3d76:f6e3:e301%10
IPv4 Address. . . . . . . . . . . : 192.168.2.4
Subnet Mask . . . . . . . . . . . : 255.255.0.0
Default Gateway . . . . . . . . . : 192.168.2.1
On the Pi
/etc/network/interfaces is
auto lo
iface lo inet loopback
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.198.129
gateway 192.168.2.1
netmask 255.255.0.0
broadcast 192.168.255.255
dns-nameservers 192.168.2.1
