海南省BIM中心

 找回密码
 注册请加微信xycost

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 3395|回复: 3

windows下SS艰难的安装过程

[复制链接]

2331

主题

2887

帖子

932万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
9324470
发表于 2019-6-3 23:05:02 | 显示全部楼层 |阅读模式
目前网上教程绝大部分都是LINUX下的教程,WINDOWS下的少得出奇。可我偏有一个windows的服务器,么办呢。还是就地取材比较好,不再花费银子新开一个VPS。下面直接列出步骤:
1、安装python 3.7版本,
PIP升级命令:python -m pip install- U pip
2、安装 openssl,
安装1.1.1c msi版本。安装完之后,进入库文件所在系统目录
我的是,C:\OpenSSL-Win32将libcrypto-1_1.dll 在源目录拷贝一份,并修改名字为 libcrypto.dll。openssl.py文件同理。全部复制到C:\Python37\Scripts目录下。
3、安装 shadowsocks-2.9.1
PIP默认安装的2.8.2版本,同OPENSSL不兼容,需要下载 shadowsocks 最新的 python 源码,解压,在命令行模式下进入它的目录
运行 python setup.py build 及 python setup.py install
安装完成

这样就解决了。
四、配置 Shadowsocks
同样需要在C:\Python37\Scripts 运行命令提示符(管理员)
命令开启 Shadowsocks
ssserver.exe -p 2333 -k password -m aes-256-cfb
2333为服务器端口 password位密码 到时在客户端填上服务器的 IP 及此处设置的端口和密码就能使用了
需要安装后全套完整版本的请关注下面的公众号后回复“科学-上网”即可。我们的网站是www.xycost.net,公众号“CPPDBIM”,长按下面的图片有惊喜哟>_<~
回复

使用道具 举报

2331

主题

2887

帖子

932万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
9324470
 楼主| 发表于 2019-6-4 10:19:42 | 显示全部楼层
此篇文章以windows 2008 64位系统为服务器搭建ss
配置方法:
首先要进入https://nodejs.org/下载node
你也可以直接打开此页面下载 https://nodejs.org/dist/v6.9.2/node-v6.9.2-x64.msi
安装nodejs 很简单,一直下一步,最后finish完成即可。
安装好后,打开“开始>所有程序>Node.js>Node.js command prompt”,打开nodejs命令端。
输入命令npm install -g shadowsocks回车即可,看到下图,表示shadowsocks安装完成。
因为shadowsocks所在的文件夹是隐藏文件夹,所以要开启显示隐藏文件,点击组织>文件夹和搜索选项,在查看中打开显示隐藏的文件。
我这里的路径是C:\Users\Administrator\AppData\Roaming\npm\node_modules\shadowsocks
打开config.json文件

1

[color=rgb(49, 124, 197) !important]2

3

[color=rgb(49, 124, 197) !important]4

5

[color=rgb(49, 124, 197) !important]6

7

[color=rgb(49, 124, 197) !important]8

9


[color=rgb(51, 51, 51) !important]{
[color=rgb(0, 111, 224) !important]    [color=rgb(0, 128, 0) !important]"server"[color=rgb(0, 111, 224) !important]:[color=rgb(0, 128, 0) !important]"IP"[color=rgb(51, 51, 51) !important],
[color=rgb(0, 111, 224) !important]    [color=rgb(0, 128, 0) !important]"server_port"[color=rgb(0, 111, 224) !important]:[color=rgb(206, 0, 0) !important]2017[color=rgb(51, 51, 51) !important],
[color=rgb(0, 111, 224) !important]    [color=rgb(0, 128, 0) !important]"local_address"[color=rgb(0, 111, 224) !important]:[color=rgb(0, 128, 0) !important]"127.0.0.1"[color=rgb(51, 51, 51) !important],
[color=rgb(0, 111, 224) !important]    [color=rgb(0, 128, 0) !important]"local_port"[color=rgb(0, 111, 224) !important]:[color=rgb(206, 0, 0) !important]1080[color=rgb(51, 51, 51) !important],
[color=rgb(0, 111, 224) !important]    [color=rgb(0, 128, 0) !important]"password"[color=rgb(0, 111, 224) !important]:[color=rgb(0, 128, 0) !important]"mima"[color=rgb(51, 51, 51) !important],
[color=rgb(0, 111, 224) !important]    [color=rgb(0, 128, 0) !important]"timeout"[color=rgb(0, 111, 224) !important]:[color=rgb(206, 0, 0) !important]600[color=rgb(51, 51, 51) !important],
[color=rgb(0, 111, 224) !important]    [color=rgb(0, 128, 0) !important]"method"[color=rgb(0, 111, 224) !important]:[color=rgb(0, 128, 0) !important]"aes-256-cfb"
[color=rgb(51, 51, 51) !important]}



server填写你机器的IP地址
server_port要使用的服务器端口号,事先确认下端口号是否使用过
local_address本地监听地址
local_port代理端口号,一般都默认1080
password密码
timeout超时时间(秒)
method加密方法,建议aes-256-cfb就好
启动有两种方式:
一、通过Node.js command prompt输入ssserver启动
二、直接运行C:\Users\Administrator\AppData\Roaming\npm\ssserver.cmd启动
注意:启动后不要关闭窗口,关闭即表示停止shadowsocks服务
客户端配置:
在shadowsocks客户端填写你的服务器地址、端口
密码为你服务器上设置的密码password
加密默认是aes-256-cfb
代理端口默认1080
在软件上右键启用系统代理即可
shadowsocks linux服务器多端口密码手动配置方法https://blog.whsir.com/post-274.html

回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /2 下一条


QQ|小黑屋|手机版|Archiver|ChinaBIM ( 琼ICP备14001050号-1 )

GMT+8, 2024-12-21 20:22 , Processed in 0.027135 second(s), 24 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表