Sunday, June 12, 2011

tsocks&ssh

tsocks+ssh
tsocks是linux下强制程序使用socks代理的工具,安装就是:
sudo apt-get install tsocks
在使用前要修改其配置文件:

sudo vim /etc/tsocks.conf
local = 192.168.1.0/255.255.255.0 #local表示本地的网络,也就是不使用socks代理的网络 
server = 127.0.0.1 # SOCKS 服务器的 IP 
server_type = 5 # SOCKS 服务版本 
server_port = 7070 #SOCKS 服务使用的端口

启动方法:

tsocks 你的软件 &
proxychains也有类似作用
有ssh代理后,用下面命令登录
ssh  -qTfnN -D 7070 -p xxxx username@server

No comments: