ни с того ни ссего перестали резолвится хосты:
stas@SunFire:~$ ping linux.org.ru
ping: unknown host linux.org.ru
Хотя вроде бы все правильно... недорубаю...
stas@SunFire:~$ cat /etc/resolv.conf
nameserver 192.168.1.4
nameserver 8.8.8.8
nameserver 8.8.4.4
stas@SunFire:~$ cat /etc/network/interfaces
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.4
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
# dns-nameservers 8.8.8.8 8.8.4.4
stas@SunFire:~$ cat /etc/dhcp/dhcpd.conf
subnet 192.168.1.0 netmask 255.255.255.224 {
range 192.168.1.7 192.168.1.11;
option routers 192.168.1.1;
option domain-name-servers 8.8.8.8, 8.8.4.4, 192.168.1.4;
option domain-name fire;
host debian {
hardware ethernet *************************;
fixed-address 192.168.1.2;
}
host hp {
hardware ethernet *************************;
fixed-address 192.168.1.3;
}
}