내 Debian Lenny 시스템에 고정 IP가 있고 IP를 통해 인터넷에 핑을 보내는 것이 잘 작동합니다. 안타깝게도 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
이렇게 하면 문제가 해결될 것입니다.