1

我的 ssserver 由 docker image oddrationale/docker-shadowsocks 启动

docker run -d -p 1984:1984 oddrationale/docker-shadowsocks -s 0.0.0.0 -p 1984 -k paaassswwword -m aes-256-cfb

然后我使用sslocal命令获取本地代理。

sslocal -c /etc/shadowsocks.json -d start --pid-file /data/tmp/sslocal.pid --log-file /data/tmp/sslocal.log

/etc/shadowsocks.json是这样的:

{
  "server":"127.0.0.1",
  "server_port":1984,
  "local_address": "127.0.0.1",
  "local_port":1080,
  "password":"paaassswwword",
  "timeout":600,
  "method":"aes-256-cfb"
}

polipo用来将shadowsocks转换为http代理,我/etc/polipo/config的是:

proxyAddress = 0.0.0.0
socksProxyType = socks5
socksParentProxy = 127.0.0.1:1080
daemonise = true
pidFile = /data/tmp/polipo.pid
logFile = /data/tmp/polipo.log

我编辑了 iptables 规则,使端口 8123 可以访问。我可以http://host:8123在浏览器中访问,并且代理看起来工作:

http_proxy=http://host:8123 curl -v google.com 

输出是这样的:

* Rebuilt URL to: google.com/
*   Trying host...
* Connected to host (host) port 8123 (#0)
> GET HTTP://google.com/ HTTP/1.1
> Host: google.com
> User-Agent: curl/7.43.0
> Accept: */*
> Proxy-Connection: Keep-Alive
> 
< HTTP/1.1 302 Found
< Content-Length: 262
< Date: Thu, 13 Apr 2017 09:52:34 GMT
< Cache-Control: private
< Content-Type: text/html; charset=UTF-8
< Referrer-Policy: no-referrer
< Location: http://www.google.com.sg/?gfe_rd=cr&ei=YkrvWPnOM-XLugTRgZDQBA
< Connection: keep-alive
< 
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="http://www.google.com.sg/?gfe_rd=cr&amp;ei=YkrvWPnOM-XLugTRgZDQBA">here</A>.
</BODY></HTML>
* Connection #0 to host host left intact

该命令并不总是成功运行,有时我会收到以下错误:

* Rebuilt URL to: google.com/
*   Trying host...
* Connected to host (host) port 8123 (#0)
> GET HTTP://google.com/ HTTP/1.1
> Host: google.com
> User-Agent: curl/7.43.0
> Accept: */*
> Proxy-Connection: Keep-Alive
> 
* Recv failure: Connection reset by peer
* Closing connection 0
curl: (56) Recv failure: Connection reset by peer

的输出netstat -tlnp是:

Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 127.0.0.1:1080          0.0.0.0:*               LISTEN      5067/python     
tcp        0      0 0.0.0.0:8123            0.0.0.0:*               LISTEN      9704/polipo     
tcp6       0      0 :::8388                 :::*                    LISTEN      4238/docker-proxy

实在找不到原因,谢谢大家帮忙。

4

1 回答 1

0

谷歌使用https,而不是http,试试

https_proxy=http://host:8123 curl -v https://www.google.com 
于 2018-11-07T10:50:11.090 回答