3
1
I've manually configured the proxy in Firefox, and it works. I tried to use it also in the command line, but it fails:
>set http_proxy=http://USERNAME:PASSWORD@HOST:PORT
>set https_proxy=https://USERNAME:PASSWORD@HOST:PORT
>
>ping www.google.com
Pinging www.google.com with 32 bytes of data:
Request timed out.
I also tried to use http for https_proxy, no result. I can't configure them as envvars since I'm not admin. Why is it wrong and what can I do?
I'm quite sure setting http_proxy variable will work, since I've done it in past and it's well documented if you surf on internet. I'll check if I can use pip, for example. – Marco Sulla – 2015-06-04T15:58:24.623
pip
is not a “native Windows application”. ;) That being said, there’s basically nothing shipped that can access HTTP in any way either. – Daniel B – 2015-06-04T15:59:58.033You set also https_proxy because some applications use it instead of http_proxy – Marco Sulla – 2015-06-04T16:06:47.910
That’s true. Still, it would usually be the exact same value as
$http_proxy
. It most certainly won’t ever begin withhttps://
! – Daniel B – 2015-06-04T16:07:57.633yeah, so... I read the question, the answer (accepted, upvoted), comments... and I still don't know what to do to being able to ping google ;) my actual problem is docker can't connect to https://registry-1.docker.io/v2/ and I can't pull hello-world from it, but I thought I try with ping. @MarcoSulla
– Line – 2019-09-20T10:43:03.703