美文网首页
SmallPlane搭建

SmallPlane搭建

作者: 野生DBNull | 来源:发表于2020-06-10 11:38 被阅读0次

    SmallPlane搭建教程

    0.SmallPlane可以干什么

    国内目前的环境浏览github,或者antd官网这些部署在海外的网站就会很慢,有时候还会超时,但是阿里云或者腾讯云的 1C1G1M的服务器上这些网站就贼快,这时候你就可以在这些云服务器上装一个SmallPlane,利用这台机器做跳板机去访问这些有可能超时的网站。

    1.安装pip

    pip是 python 的包管理工具。用这个安装SmallPlane比较靠谱

    curl "https://www.rhce.net/linux/get-pip.py" -o "get-pip.py"
    python get-pip.py
    

    2.安装SmallPlane

    pip install --upgrade pip
    pip install 和谐 (s_h_a_d_o_w_s_o_c_k_s)
    

    3.配置SmallPlane

    这里的加密方式可以在SmallPlane的客户端上面看到所有的加密方式

    vim /etc/smallplane.json
    
    {
      "server": "0.0.0.0",  // 这里必须要这样写
      "local_address": "127.0.0.1", // 这里填写你主机的对公IP
      "local_port": 1080, // 搞一个你喜欢的端口号
      "port_password": {
        "8080": "此处填写你的密码",  // 搞一个喜欢的端口 和喜欢的密码
        "8081": "此处填写你的密码" // 在搞一个喜欢的端口 和喜欢的密码
      },
      "timeout": 600, // 连接超时时间
      "method": "aes-256-cfb" // 加密方式 选一个你喜欢的
    }
    
    

    4.启动SmallPlane

    配置启动文件

    vim /etc/systemd/system/smallplane.service
    
    [Unit]
    Description=SmallPlane
     
    [Service]
    TimeoutStartSec=0
    ExecStart=/usr/bin/ssserver -c /etc/smallplane.json
     
    [Install]
    WantedBy=multi-user.target
    
    

    启动

    systemctl enable smallplane
    systemctl start smallplane
    

    查看小飞机运行状态

    systemctl status smallplane
    
    

    5.开放端口

    firewall-cmd --zone=public --add-port=8080/tcp --permanent
    firewall-cmd --zone=public --add-port=8081/tcp --permanent
    firewall-cmd --reload
    

    6.下载客户端 然后连接SmallPlane

    可以在github上搜索 和谐 然后找到release版本的包

    友情链接

    点击下载Win SmallPlane客户端

    然后就放飞自我吧。。。

    相关文章

      网友评论

          本文标题:SmallPlane搭建

          本文链接:https://www.haomeiwen.com/subject/imbutktx.html