我无法 ping 通网站。我可以 ping 通 IP 地址

我无法 ping 通网站。我可以 ping 通 IP 地址

我似乎无法 ping 通网站。

ping google.com
PING google.com(lax17s50-in-x0e.1e100.net (2607:f8b0:4007:815::200e)) 56 data bytes

这里我可以nslookup没有问题。

nslookup google.com                                                                 10 ⚙
Server:         192.168.228.125
Address:        192.168.228.125#53

Non-authoritative answer:
Name:   google.com
Address: 142.250.72.174
Name:   google.com
Address: 2607:f8b0:4007:815::200e

这里我可以ping通ip地址没有问题

ping 142.250.72.174                                                           130 ⨯ 10 ⚙
PING 142.250.72.174 (142.250.72.174) 56(84) bytes of data.
64 bytes from 142.250.72.174: icmp_seq=1 ttl=113 time=529 ms
64 bytes from 142.250.72.174: icmp_seq=2 ttl=113 time=244 ms

在这里我可以没有问题。

wget google.com                                                                 1 ⨯ 10 ⚙
--2021-08-31 21:23:09--  http://google.com/
Resolving google.com (google.com)... 2607:f8b0:4007:815::200e, 142.250.72.174
Connecting to google.com (google.com)|2607:f8b0:4007:815::200e|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently

我的网络接口

cat /etc/network/interfaces                                                         10 ⚙
# 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

recolv.conf

cat /etc/resolv.conf                                                          148 ⨯ 11 ⚙
# 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
# 127.0.0.53 is the systemd-resolved stub resolver.
# run "resolvectl status" to see details about the actual nameservers.

nameserver 192.168.228.125
nameserver 2600:100e:bf12:3b9b::92
nameserver 2600:100e:bf12:3b9b::c4

我也可以很好地浏览网站。我应该怎么办?

我运行 kde,并试图让 wireguard 工作,但我认为我在这样做时搞砸了一些东西。现在正试图撤销我所做的事情。关于如何让 ping 正常工作有什么建议吗?谢谢。

答案1

您的 ping 命令正在尝试 ping ipv6。尝试传递-4选项来明确告诉 ping ping ipv4 地址:

ping -4 google.com

如果 ping 被别名为其他内容,请尝试使用以下命令覆盖别名\

\ping -4 google.com

相关内容