[关闭]
@zoand 2019-07-08T06:08:29.000000Z 字数 1657 阅读 756

ubuntu16.04x64搭建ss

linux


1. 安装phthon

  1. > apt-get install python-pip
  2. > pip install shadowsocks

在ubuntu16.04下可以直接用apt,而不用apt-get这是一项改进:

  1. > apt install shadowsocks

CentOS6.4 64bit:

  1. > yum install python-setuptools && easy_install pip
  2. > pip install shadowsocks

这时会提示要求更新pip版本:

You are using pip version 8.1.1,however version 9.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

  1. > pip install --upgrade pip

2. 新建server配置json文件

  1. > sudo vi /etc/config.json

内容如下:

  1. {
  2. "server":"0.0.0.0",
  3. "server_port":8388,
  4. "local_address": "127.0.0.1",
  5. "local_port": 1080,
  6. "password": "你设置的密码",
  7. "timeout": 300,
  8. "method": "aes-256-cfb",
  9. "http_proxy": false,
  10. "auth": false
  11. }

3.启动服务

  1. #前台运行的命令
  2. > ssserver -c /etc/config.json
  3. #后台运行
  4. > ssserver -c /etc/config.json -d start
  5. #后台停止
  6. > ssserver -c /etc/config.json -d stop
  7. #停止
  8. > ssserver -d stop
  9. #重启
  10. > ssserver -d restart

4.1 自启动服务

  1. #打开rc.local文件
  2. > sudo vi /etc/rc.local
  3. #然后在exit前面加入下面这一行
  4. > ssserver -c /etc/config.json -d start

4.2 CentOS7 添加自启动服务

新建启动脚本文件/etc/systemd/system/shadowsocks.service,内容如下:

  1. [Unit]
  2. Description=ssk
  3. [Service]
  4. TimeoutStartSec=0
  5. ExecStart=/usr/bin/ssserver -c /etc/config.json -d start
  6. [Install]
  7. WantedBy=multi-user.target

执行以下命令启动 ssk 服务:

  1. systemctl enable ssk
  2. systemctl start ssk

为了检查 shadowsocks 服务是否已成功启动,可以执行以下命令查看服务的状态:

  1. systemctl status ssk -l

5.客户端配置json文件

  1. {
  2. "server": "服务器IP",
  3. "server_port": [服务器商品],
  4. "password": "你设置的密码",
  5. "method": "aes-256-cfb",
  6. "remarks": "别名",
  7. "auth": false
  8. }

6.多用户服务端配置json文件

  1. {
  2. "server":"0.0.0.0",
  3. "local_address":"127.0.0.1",
  4. "local_port":1080,
  5. "port_password":
  6. {
  7. "端口号1":"密码1",
  8. "端口号2":"密码2",
  9. "端口号3":"密码3"
  10. },
  11. "timeout":300,
  12. "method":"aes-256-cfb",
  13. "fast_open": false
  14. }

资料

ubuntu16.04下载安装shadowsocks+配置chrome的过程记录

http://www.jianshu.com/p/9b7725d50f4c
在 CentOS 7 下安装配置 shadowsocks
https://morning.work/page/2015-12/install-shadowsocks-on-centos-7.html

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注