跟踪 DNS 请求

跟踪 DNS 请求

我的 Debian Lenny 系统中有静态 IP,通过 IP ping 互联网工作正常。不幸的是,www.google.com 无法按名称解析。我无法在 Linux 上安装任何其他软件,因为它无法解析名称。

/etc/网络/接口:

# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
# /usr/share/doc/ifupdown/examples for more information.

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface uses static address
auto eth0
iface eth0 inet static
        address 192.168.1.99
        netmask 255.255.255.0
        broadcast 192.168.1.255
        network 192.168.1.0
        gateway 192.168.1.1
        dns-nameservers 8.8.8.8

如何使用标准工具跟踪 DNS 请求以发现问题?

答案1

这似乎可能是您的 Debian 设备上的 DNS 解析问题。

尝试这个:

echo "nameserver 8.8.8.8" > /etc/resolv.conf # create the file and add the statement as first line
echo "nameserver 8.8.4.4" >> /etc/resolv.conf # append to existing file at the end

这应该可以解决你的问题。

相关内容