首页 > 系统 > Ubuntu > 正文

ubuntu下配置shadowsocks

2024-06-28 14:32:10
字体:
来源:转载
供稿:网友

官方文档中虽然写的很清楚 但是自己还是摸索了好一段时间(这个里面讲的很清楚)

https://wiki.archlinux.org/index.php/Shadowsocks_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)

shadowsocks是一个socks5代理,用python写成。

记录一下自己的搭建过程(普通用户无需配置服务端,网上大部分教程都是配置服务端的方法)

1.安装shadowsocks

apt-get install python-pippip install shadowsocks

2.写配置文件

   1>创建配置文件在/etc下

sudo vim /etc/shadowsocks.json

   2>编写配置文件(各个参数在wiki中给的很清楚)

{    "server":"server_address",    "server_port":server_port,    "local_port":1080,    "local_address":"127.0.0.1",    "passWord":"your password",    "timeout":600,    "method":"aes-256-cfb"}

 

https://github.com/shadowsocks/shadowsocks/wiki/Configuration-via-Config-File  

3.运行shadowsocks.json即可,一般用户不用搭建服务端

sudo sslocal -c /etc/shadowsocks.json -d startsudo sslocal -c /etc/shadowsocks.json -d stop

4.使用浏览器上网时,Chrome需要下载PRoxy SwitchySharp插件

http://www.switchysharp.com/install.html

新建情景模式中手动配置选择socks5代理

填写 127.0.0.1 端口号:1080

保存后启用就可以使用socks5代理FQ了。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表