Giter Site home page Giter Site logo

scientific-internet-access's Introduction

1. 个人服务器

在进行工作之前,确保有一个可用的服务器,在这个服务器上进行的外网访问不会被限制。下面这个云服务器提供商可供选择,具体资费量力而行。

2. python环境

以CentOS 7系统为例

2.1 服务器上安装配置python环境

[root@server ~]# curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
[root@server ~]# python get-pip.py
[root@server ~]# pip list

2.2 利用pip安装shadowsocks

[root@server ~]# pip install --upgrade pip
[root@server ~]# pip install shadowsocks

2.3 创建运行配置文件

[root@server ~]# vi shadowsocks.json
{
  "server": "0.0.0.0",
  "server_port": 8080,
  "password": "填写密码",
  "method": "aes-256-cfb"
}

2.4 根据配置文件启动shadowsocks服务

[root@server ~]# ssserver -c shadowsocks.json -d start

2.5 开放端口

[root@server ~]# firewall-cmd --zone=public --add-port=8080/tcp --permanent
[root@server ~]# firewall-cmd --reload

3. 检查命令

3.1 查看所有python进程

[root@server ~]# ps -aux | grep python

3.2 查看端口

[root@server ~]# yum -y install net-tools
[root@server ~]# netstart -ntlp

4. 客户端下载

4.1 windows

https://github.com/shadowsocks/shadowsocks-windows/releases/download/4.1.2/Shadowsocks-4.1.2.zip

4.2 安卓

https://github.com/shadowsocks/shadowsocks-android/releases/download/v4.6.3/shadowsocks--universal-4.6.3.apk

4.3 MAC

https://github.com/shadowsocks/ShadowsocksX-NG/releases/download/v1.8.2/ShadowsocksX-NG.app.1.8.2.zip

scientific-internet-access's People

Contributors

happydogyun avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.