其他

如何让 curl 命令通过代理访问 | Linux 中国

2018-01-19 译者:lujun9972 Linux中国
我要如何让 curl 命令使用我在 Google Chrome 浏览器上的代理设置呢?
-- Vivek Gite

本文导航
编译自 | https://www.cyberciti.biz/faq/linux-unix-curl-command-with-proxy-username-password-http-options/ 
 作者 | Vivek Gite
 译者 | lujun9972

我的系统管理员给我提供了如下代理信息:

  1. IP: 202.54.1.1

  2. Port: 3128

  3. Username: foo

  4. Password: bar

该设置在 Google Chrome 和 Firefox 浏览器上很容易设置。但是我要怎么把它应用到 curl命令上呢?我要如何让 curl 命令使用我在 Google Chrome 浏览器上的代理设置呢?

很多 Linux 和 Unix 命令行工具(比如 curl 命令,wget 命令,lynx 命令等)使用名为 http_proxyhttps_proxyftp_proxy 的环境变量来获取代理信息。它允许你通过代理服务器(使用或不使用用户名/密码都行)来连接那些基于文本的会话和应用。

本文就会演示一下如何让 curl 通过代理服务器发送 HTTP/HTTPS 请求。

让 curl 命令使用代理的语法

语法为:

  1. ## Set the proxy address of your uni/company/vpn network ##

  2. export http_proxy=http://your-ip-address:port/

  3. ## http_proxy with username and password

  4. export http_proxy=http://user:password@your-proxy-ip-address:port/

  5. ## HTTPS version ##

  6. export https_proxy=https://your-ip-address:port/

  7. export https_proxy=https://user:password@your-proxy-ip-address:port/

另一种方法是使用 curl 命令的 -x 选项:

  1. curl -x <[protocol://][user:password@]proxyhost[:port]> url

  2. --proxy <[protocol://][user:password@]proxyhost[:port]> url

  3. --proxy http://user:password@Your-Ip-Here:Port url

  4. -x http://user:password@Your-Ip-Here:Port url

在 Linux 上的一个例子

首先设置 http_proxy

  1. ## proxy server, 202.54.1.1, port: 3128, user: foo, password: bar ##

  2. export http_proxy=http://foo:bar@202.54.1.1:3128/

  3. export https_proxy=$http_proxy

  4. ## Use the curl command ##

  5. curl -I https://www.cyberciti.biz

  6. curl -v -I https://www.cyberciti.biz

输出为:

  1. * Rebuilt URL to: www.cyberciti.biz/

  2. *   Trying 202.54.1.1...

  3. * Connected to 1202.54.1.1 (202.54.1.1) port 3128 (#0)

  4. * Proxy auth using Basic with user 'foo'

  5. > HEAD HTTP://www.cyberciti.biz/ HTTP/1.1

  6. > Host: www.cyberciti.biz

  7. > Proxy-Authorization: Basic x9VuUml2xm0vdg93MtIz

  8. > User-Agent: curl/7.43.0

  9. > Accept: */*

  10. > Proxy-Connection: Keep-Alive

  11. >

  12. < HTTP/1.1 200 OK

  13. HTTP/1.1 200 OK

  14. < Server: nginx

  15. Server: nginx

  16. < Date: Sun, 17 Jan 2016 11:49:21 GMT

  17. Date: Sun, 17 Jan 2016 11:49:21 GMT

  18. < Content-Type: text/html; charset=UTF-8

  19. Content-Type: text/html; charset=UTF-8

  20. < Vary: Accept-Encoding

  21. Vary: Accept-Encoding

  22. < X-Whom: Dyno-l1-com-cyber

  23. X-Whom: Dyno-l1-com-cyber

  24. < Vary: Cookie

  25. Vary: Cookie

  26. < Link: <http://www.cyberciti.biz/wp-json/>; rel="https://api.w.org/"

  27. Link: <http://www.cyberciti.biz/wp-json/>; rel="https://api.w.org/"

  28. < X-Frame-Options: SAMEORIGIN

  29. X-Frame-Options: SAMEORIGIN

  30. < X-Content-Type-Options: nosniff

  31. X-Content-Type-Options: nosniff

  32. < X-XSS-Protection: 1; mode=block

  33. X-XSS-Protection: 1; mode=block

  34. < X-Cache: MISS from server1

  35. X-Cache: MISS from server1

  36. < X-Cache-Lookup: MISS from server1:3128

  37. X-Cache-Lookup: MISS from server1:3128

  38. < Connection: keep-alive

  39. Connection: keep-alive

  40. <

  41. * Connection #0 to host 10.12.249.194 left intact

本例中,我来下载一个 pdf 文件:

  1. $ export http_proxy="vivek:myPasswordHere@10.12.249.194:3128/"

  2. $ curl -v -O http://dl.cyberciti.biz/pdfdownloads/b8bf71be9da19d3feeee27a0a6960cb3/569b7f08/cms/631.pdf

也可以使用 -x 选项:

  1. curl -x 'http://vivek:myPasswordHere@10.12.249.194:3128' -v -O https://dl.cyberciti.biz/pdfdownloads/b8bf71be9da19d3feeee27a0a6960cb3/569b7f08/cms/631.pdf

输出为:

Fig.01:curl in action \(click to enlarge\)

Unix 上的一个例子

  1. $ curl -x http://prox_server_vpn:3128/ -I https://www.cyberciti.biz/faq/howto-nginx-customizing-404-403-error-page/

socks 协议怎么办呢?

语法也是一样的:

  1. curl -x socks5://[user:password@]proxyhost[:port]/ url

  2. curl --socks5 192.168.1.254:3099 https://www.cyberciti.biz/

如何让代理设置永久生效?

编辑 ~/.curlrc 文件:

  1. $ vi ~/.curlrc

添加下面内容:

  1. proxy = server1.cyberciti.biz:3128

  2. proxy-user = "foo:bar"

保存并关闭该文件。另一种方法是在你的 ~/.bashrc 文件中创建一个别名:

  1. ## alias for curl command

  2. ## set proxy-server and port, the syntax is

  3. ## alias curl="curl -x {your_proxy_host}:{proxy_port}"

  4. alias curl = "curl -x server1.cyberciti.biz:3128"

记住,代理字符串中可以使用 protocol:// 前缀来指定不同的代理协议。使用 socks4://socks4a://socks5://或者 socks5h:// 来指定使用的 SOCKS 版本。若没有指定协议或者使用 http:// 表示 HTTP 协议。若没有指定端口号则默认为 1080-x 选项的值要优先于环境变量设置的值。若不想走代理,而环境变量总设置了代理,那么可以通过设置代理为空值("")来覆盖环境变量的值。详细信息请参阅 curl的 man 页 [1]


via: https://www.cyberciti.biz/faq/linux-unix-curl-command-with-proxy-username-password-http-options/

作者:Vivek Gite[3] 译者:lujun9972 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出

LCTT 译者
lujun9972 🌟 🌟 🌟 🌟共计翻译:73 篇贡献时间:52 天

推荐文章

< 左右滑动查看相关文章 >

点击图片、输入文章 ID 或识别二维码直达


您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存