工作中个别项目需要连接VPN,
本地也有项目需要进行
连接上vpn后,本地的项目就无法进行
现在的方法是:
开个虚拟机(virtualbox)
- 连接
vpn
- 搭建
v2ray server
host
中添加域名解析
- 连接
物理机
- 搭建
v2ray client
, 所有流量走v2ray
, 在route
配置规则 host
中添加域名解析- 搭建
privoxy
,将v2ray client
的sock5
代理转换为http
代理
- 搭建
更新代码:
windows: 修改TortoiseSVN
的网络设置,添加http
代理
linux: proxychain4 svn xxx
项目中使用erlang
语言
1 | httpc:set_options([{proxy, { {"192.168.10.26", 8119}, "" } }]). |