查看“SS:服务端(插件)”的源代码
←
SS:服务端(插件)
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
[[category:网络工具]] == 关于 == 可以尝试使用使用协议混淆插件,目前插件汇总: 1、[https://github.com/xtaci/kcptun Kcptun] 2、[https://github.com/shadowsocks/simple-obfs Simple-obfs] 3、[https://github.com/shadowsocks/v2ray-plugin V2Ray-Plugin] 4、[https://github.com/cbeuw/GoQuiet GoQuite] 5、[https://github.com/cbeuw/Cloak Cloak] 6、[https://github.com/IrineSistiana/simple-tls simple-tls] 7、[https://github.com/maskedeken/gost-plugin gost-plugin] == Kcptun == 【??????】 == simple-obfs == 参考: 1、[https://cokebar.info/archives/1988 添加混淆: simple-obfs + shadowsocks for Windows] == V2Ray-Plugin == v2ray-plugin:基于v2ray原理,工作在 shadowsocks 上的流量混淆插件:将流量伪装为某域名下(所以需要为域名设置解析、证书申请)站点的 tls、quic 协议的流量。 支持 '''tls'''1.3 和谷歌 '''quic''' udp 协议。 [https://github.com/shadowsocks/v2ray-plugin v2ray-plugin 项目] [https://github.com/acmesh-official/acme.sh acme.sh 项目]([https://github.com/acmesh-official/acme.sh/wiki/%E8%AF%B4%E6%98%8E 中文说明]) 参考: 1、[https://bingliang.me/posts/2019-03-20-shadowsocks-libev-with-v2ray-plugin/ 配置 shadowsocks-libev 加 v2ray-plugin] 2、[https://gist.github.com/Shuanghua/c9c448f9bd12ebbfd720b34f4e1dd5c6 ss-libev 插件 v2ray-plugin 的安装使用] 建议配置为工作在 TLS 模式下。 === 域名、证书 === 通过 acme.sh 脚本,可以申请、自动更新证书。 支持的证书: * ZeroSSL.com CA(default) * Letsencrypt.org CA * BuyPass.com CA * SSL.com CA * Pebble strict Mode * Any other RFC8555-compliant CA [https://github.com/acmesh-official/acme.sh/wiki/dnsapi 目前 acme.sh 支持大多数 dns 提供商](包括 Cloudflare、GoDaddy、Aliyun) acme.sh 脚本: # 安装脚本: #: <syntaxhighlight lang="bash" highlight=""> # 在线安装 curl https://get.acme.sh | sh # 或者 wget -O - https://get.acme.sh | sh # 通过 git 安装 git clone https://github.com/acmesh-official/acme.sh.git cd ./acme.sh ./acme.sh --install </syntaxhighlight> #* 安装好后,会自动为你创建 cronjob(计划任务), 每天 0:00 点自动检测所有的证书, 如果快过期了, 需要更新, 则会自动更新证书。 #* 查看已创建的 cronjob: #*: <syntaxhighlight lang="bash" highlight=""> crontab -l </syntaxhighlight> # 更新脚本: #: <syntaxhighlight lang="bash" highlight=""> # 升级 acme.sh 到最新版 : acme.sh --upgrade # 如果你不想手动升级, 可以开启自动升级: acme.sh --upgrade --auto-upgrade # 你也可以随时关闭自动更新: acme.sh --upgrade --auto-upgrade 0 </syntaxhighlight> # 证书申请: ## 设置域名解析: ##: 到相应的域名提供商,设置域名解析到实际的服务器ip。 ## 证书颁发: ### 给 GoDaddy 自动颁发证书: ###: <syntaxhighlight lang="bash" highlight=""> #(替换 GD_Key 为自己的) export GD_Key="sdfsdfsdfljlbjkljlkjsdfoiwje" #(替换 GD_Secret 为自己的) export GD_Secret="asdfsdafdsfdsfdsfdsfdsafd" #(<example.com> 为自己的域名) acme.sh --issue --dns dns_gd -d <example.com> [-d <example.com>] </syntaxhighlight> ###* GoDaddy API Key 创建地址:[https://developer.godaddy.com/keys/ https://developer.godaddy.com/keys/] ### 给 CloudFlare 自动颁发证书: ###: <syntaxhighlight lang="bash" highlight=""> #(替换 CF_Key 为自己的) export CF_Key="sdfsdfsdfljlbjkljlkjsdfoiwje" #(替换 CF_Email 为自己的 GoDaddy 登录邮箱) export CF_Email="xxxx@sss.com" #(<example.com> 为自己的域名) acme.sh --issue --dns dns_cf -d <example.com> [-d <example.com>] </syntaxhighlight> ###* CloudFlare API Key 创建地址:[https://dash.cloudflare.com/profile https://dash.cloudflare.com/profile] ###* CloudFlare 用于 CDN 加速。(需要先在 CloudFlare 添加需要加速的站点,再生成 CloudFlare API Key) ###*# 将域名(子域名)解析指定到服务器 IP; ###*# 在“DNS修改”将其 DNS 指定为 CloudFlare 的 DNS 地址; === V2Ray-Plugin 安装 === === 配置 === ?????????????????? * 如果编译安装 V2Ray-Plugin,则需要 '''golang'''。 * 如果需要 Andriod 客户端连接,那么服务器端证书需要用 fullchain,否则可能会遇到“Connection reset by peer”错误。 (服务器 v2ray 错误是 “failed to read request header > websocket: close 1000 (normal)”)。 ** 证书命令: **: <syntaxhighlight lang="bash" highlight=""> acme.sh –install-cert -d ss.sulian.me –key-file /home/sulian/certs/ss.sulian.me.key –cert-file /home/sulian/certs/ss.sulian.me.cer –fullchain /home/sulian/certs/fullchain.pem –reloadcmd “sudo systemctl restart shadowsocks-libev” </syntaxhighlight> ** 客户端配置: **: <syntaxhighlight lang="bash" highlight=""> open;host=ss.sulian.me;cert=/home/sulian/certs/fullchain.pem;key=/home/sulian/certs/ss.sulian.me.key;loglevel=none” </syntaxhighlight> * 现在 acme 使用 zerossl 了,还得去注册一个帐号,不然下载证书那一步一直出错。
返回至“
SS:服务端(插件)
”。
导航菜单
个人工具
登录
命名空间
页面
讨论
大陆简体
已展开
已折叠
查看
阅读
查看源代码
查看历史
更多
已展开
已折叠
搜索
导航
首页
最近更改
随机页面
MediaWiki帮助
笔记
服务器
数据库
后端
前端
工具
《To do list》
日常
阅读
电影
摄影
其他
Software
Windows
WIKIOE
所有分类
所有页面
侧边栏
站点日志
工具
链入页面
相关更改
特殊页面
页面信息