Ubuntu 服务器可以 SSH 但无法访问互联网

Ubuntu 服务器可以 SSH 但无法访问互联网

我尝试了这个命令,这就是我得到的。

admin@grader:~$ ping www.google.com
ping: unknown host www.google.com

这是我的/etc/network/interfaces

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto ens32
iface ens32 inet static
        address 10.100.101.102
        netmask 255.255.255.0
        network 10.100.101.0
        broadcast 10.100.101.255
        gateway 10.100.101.1
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 10.100.101.1
        dns-search triamudom.ac.th

这是我的/etc/resolv.conf

# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 10.100.101.1
search triamudom.ac.th

请帮忙。

答案1

尝试 ping 8.8.8.8

如果您收到成功回复,则表示您的 DNS 未正常工作。请在此处发帖,我们会从那里查看。

更新 1:由于您可以 ping 8.8.8.8,因此您的 DNS 似乎无法正确解析。一种解决方案是重新配置您的接口以使用 8.8.8.8 作为 DNS,而不是您在那里获得的内部 IP(10.100.101.1)。如果这对您不起作用,请告诉我。

相关内容