如何为终端设置代理?

如何为终端设置代理?

我正在使用 Lantern Proxy 打开被屏蔽的网站。它正在运行

http://localhost:44813

它在 Chrome 上运行良好,但我想在终端上设置。因此我运行了以下命令:

export https_proxy='http://localhost:44813/'
export http_proxy='http://localhost:44813/'

当我跑步的时候

env | grep -i proxy

我懂了:

HTTP_PROXYs=http://localhost:44813/
NO_PROXY=localhost,127.0.0.0/8,::1
http_proxy=http://localhost:44813/
https_proxy=http://localhost:44813/
HTTPS_PROXY=http://localhost:44813/
no_proxy=localhost,127.0.0.0/8,::1
HTTP_PROXY=http://localhost:44813/

但我无法 ping 任何被阻止的网站!我该如何解决?

答案1

“http 代理”这个名称暗示它仅适用于 http/https。使用 http 代理不会影响其他协议的运行。

Ping 是 ICMP 的一部分,仅当您可以通过 IP 到达目标主机时才有效,即它没有被某种防火墙阻止。

相关内容