我使用以下命令在Windows上设置代理:
set http_proxy=http://user:password@proxy.domain.com:port
set https_proxy=https://user:password@proxy.domain.com:port
如何验证是否已正确设置?
答案 0 :(得分:0)
有一种使用数据包捕获的方法。像wireshark一样。
可以通过端口号区分。
通常,HTTP使用端口80。
但是,如果您为代理配置使用不同的端口,则可以区分为端口号。
可以通过HTTP请求标头进行区分。
使用HTTP代理的请求URL包括完整URI。比如GET http://www.kangmj37.com HTTP/1.1
使用CONNECT
使用HTTPS代理的请求方法。比如CONNECT www.kangmj37.com:443 HTTP/1.1
。请参阅RFC https://tools.ietf.org/html/rfc7231#section-4.3.6
<强> 4.3.6。 CONNECT 强>
CONNECT仅用于对代理的请求。