我在 Arch Linux 上使用 Powershell 6b5 AppImage(使用官方 AppIimage)。我可以在 powershell 之外使用 IPv4 和 IPv6 网络,包括 URL 和 IP。但是,在 PS 中,当我调用以下命令时:
iwr 'http://google.com'
,
我明白了
iwr : Couldn't resolve host name
.
执行以下操作时出现相同的错误(IPv4 地址是 google.com 之一)
iwr 'http://172.217.26.238'
使用 IPv6 地址,我得到一个 404,这意味着连接工作正常:
iwr 'http://[2404:6800:4009:808::200e]'
有人对如何解决这个问题有任何指示吗?