Networking

我無法ping通網站。我可以ping ip地址

  • September 1, 2021

我似乎無法 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 正常工作的任何建議?謝謝你。

您的 ping 命令正在嘗試 ping ipv6。嘗試傳遞-4選項以明確告訴 ping ping ipv4 地址:

ping -4 google.com

如果 ping 被別名為其他東西,請嘗試使用以下命令覆蓋別名\

\ping -4 google.com

引用自:https://unix.stackexchange.com/questions/667115