我有一个 windows nano 服务器并尝试设置代理设置。nano 服务器仅处于命令模式,没有 GUI。我在 PowerShell 中运行过
netsh winhttp set proxy proxy-server="ipadress:8080"
然后我有
ping www.google.de
并且显示了来自谷歌的 IP 地址,所以有一些连接。但是当我尝试跑步时
wget www.google.de
我明白了
"Unable to connect to the remote server"
然后我在PowerShell环境中设置了代理
set http_proxy="ipadress:8080" and https_proxy...
但同样的问题。当我使用代理设置直接调用 wget 时,它可以工作:
wget 'http://www.google.de' -Proxy http://ipadress:8080
我怎样才能让它wget
使用全局代理设置工作?还是设置不正确?还是需要我安装一些 Windows 功能才能正常工作?
我wget
稍后会用来测试连接,任何程序的任何 Web 请求都应该可以工作。