此问题出现在 centOS 7 上。
我配置了代理地址如下这个流程!,发布网络工作正常。
但是,我需要从代理中排除几个域站点。因此,我将以下行添加到 /etc/profile 中。
export no_proxy="127.0.0.1, localhost, *.org.in"
卷曲到这些网站不起作用。
[raj@hostname ~]$ curl -sk http://app.org.in/
网络错误
网络错误 (dns_unresolved_hostname)
DNS 无法解析您请求的主机“app.org.in”。
我尝试使用 --no-proxy 参数,并且它有效。
[raj@hostname ~]$ curl --noproxy "*" -sk http://app.org.in/
有人可以帮我设置代理,以免在域网站上执行操作吗?
答案1
解决了。
我在 no_proxy ( *.org.in) 中附加星号(*) 导致了这个问题。删除*后问题解决。