什么是Shadowsocks?
Shadowsocks 是一个开源的跨平台翻墙工具,通过代理服务器加密传输网络数据,帮助用户进行科学上网。
安装Shadowsocks
- 使用SSH连接到您的CentOS 7服务器。
- 运行以下命令安装Shadowsocks:
yum install epel-release -y && yum install python-pip -y && pip install shadowsocks
。
配置Shadowsocks
- 创建配置文件:
vi /etc/shadowsocks.json
。 - 将以下配置信息粘贴到文件中:
{ “server”: “your_server_ip”, “server_port”: 8388, “local_address”: “127.0.0.1”, “local_port”: 1080, “password”: “your_password”, “timeout”: 300, “method”: “aes-256-cfb\
正文完