No_proxy 设置被忽略了吗?

No_proxy 设置被忽略了吗?

我在 VirtualBox 上运行 Ubuntu (20.04)。由于一切都在代理后面,我配置了代理设置并设法访问互联网上的网页(使用 Firefox)。无论如何,我无法访问内部网页。例如,一个内部 Web 服务给出了带有 DNS 失败的代理消息。内部 Gitlab 只给出超时。

在虚拟机之外,一切运行正常,所以这一定与代理设置有关。但我不知道如何排除故障。我的环境变量如下所示:

no_proxy=99.0.0.0/8,*.xxx.domain.de,localhost,127.0.0.0/8
NO_PROXY=99.0.0.0/8,*.xxx.domain.de,localhost,127.0.0.0/8
http_proxy=http://myproxy.domain.de:80/
HTTP_PROXY=http://myproxy.domain.de:80
https_proxy=http://myproxy.domain.de:80/
HTTPS_PROXY=http://myproxy.domain.de:80
ftp_proxy=http://myproxy.domain.de:80/
FTP_PROXY=http://myproxy.domain.de:80/

我对代理配置和 Ubuntu 都很陌生。如果有信息缺失,请询问。有人能帮忙排除故障吗?为什么这些内部站点无法访问?

其他测试内容:

curl --noproxy '*' http://my.internal.webpage

有效,但是

curl http://my.internal.webpage

给出

curl: (3) Failed to convert myproxy.domain.de to ACE; string contains a disallowed character

相关内容