对 debian 系 linux ,可以通过tsocks 实现。
首先安装tsocks:
$ sudo apt install tsocks
然后修改tsocks的配置文件:
$ sudo vim /etc/tsocks.conf
server = 127.0.0.1
server_type = 5
server_port = 1080
设置代理服务器地址,类型,端口。
wget 套上 tsocks 运行,就可以访问代理了(如果之前设置了 http 代理,要先清除掉)。
tsocks wget http://……
补充1:
使用tsocks:
tsocks [application [applications arguments]]
tsocks [on|off]
举几个实例吧:
tsocks firefox #之后再firefox上浏览网页就会默认使用tsocks配置的代理
tsocks git clone git://github.com/avikivity/kvm.git #使用proxy来git,这就是我用的原因
source tsocks on #设置当前shell的tsocks,该命令可能遇到一个小bug在下面有讲到
tsocks show #查看当前Shell的tsocks设置,tsocks: This shell is socksified.
do_something #这里就能默认使用tsocks的代理去do something了,前面已经设置了
source tsocks off #关闭当前shell的tsocks代理设置
tsocks show #再次查看,tsocks: This shell is NOT socksified.
遇到的问题及解决方案:
13:01:17 libtsocks(2432): SOCKS server proxy-shz.intel.com (10.239.120.36) is not on a local subnet!
设置的代理没有与/etc/tsocks.conf文件中的local设置的网络在同一个子网中。
3:03:26 libtsocks(2451): The SOCKS server (proxy.ABCD.com) listed in the configuration file which needs to be used for this connection is invalid
配置文件的问题,我也忘了是啥时出现的错误了,但我碰到过的。
13:02:50 libtsocks(2441): Error 110 attempting to connect to SOCKS server (Connection timed out)
这个很明显了,就是你设置的proxy连接不上(可能是本来就连不上,或者没在同一个局域网内),请检查和确认配置。
ERROR: ld.so: object ‘/lib64/libtsocks.so’ from LD_PRELOAD cannot be preloaded: ignored.
郁闷坏了,是因为有一次我在rhel5u5上安装了一个rhel6的tsock rpm包,解决办法是到http://pkgs.org/找到一个tsocks for rhel5的rpm包,安装即可。
[root@kvm-build ~]# source /usr/bin/tsocks on
basename: invalid option — ‘b’
Try `basename –help’ for more information.
看到这样的错误,有可能是你的tsocks有点小bug,不过不影响使用的,接着你用tsocks show来看,一样可以看到提示说socks设置成功的,tsocks: This shell is socksified.
我的rhel5和rhel6中的tsocks都遇到这样的错误信息,你可以简单地修改一下/usr/bin/tsocks文件,将其中的basename的一行修改一下即可:
修改前:PRG=”$(basename $0)”
修改为:PRG=”$(basename — $0)”
这是由于这个tsocks写后,coreutils工具做了些改动,其中basename工具需要用”–“来表示options的结束(为了保持新老版本的兼容)。这个问题在Bug-coreutils mailing list中讨论过了的,见:http://www.mail-archive.com/bug-coreutils@gnu.org/msg09912.html
替代工具机参考文档:
一个与tsocks有类似功能的工具: socat (我暂时没怎么用)
见:http://freshmeat.net/projects/socat/
tsocks.conf配置文件:http://linux.die.net/man/5/tsocks.conf
tsocks的使用:http://www.21andy.com/blog/20100212/1678.html
另外的人遇到的tsocks问题:http://notes.benv.junerules.com/socks-opera-and-brute-force/
补充2:
wget使用HTTP代理模式:
例如:
wget -c -r -np -k -L -p -e "http_proxy=http://127.0.0.1:8080" http://www.subversion.org.cn/svnbook/1.4/
这种方式对于使用一个临时代理尤为方便。