主题评价:
  • 0 次(票) - 平均星级: 0
  • 1
  • 2
  • 3
  • 4
  • 5
(翻墙)Azure一条命令架设ShadowSocksR(SSR)服务器+客户端设置(Win10, 手机, 盒子)
#1




相关下载请到 https://www.dengnz.com/youtube/

用到的命令:

// 创建resource group
az group create --name testSSR --location eastus

方法1:
// 单命令架设SSR
az container create --name ssr --image  malaohu/ssr-with-net-speeder --resource-group testSSR --ip-address public --port 81 --command-line "/usr/local/bin/entrypoint.sh -s 0.0.0.0 -p 81 -k P@ssw0rd -m rc4-md5 -o http_simple"
// 删除以上SSR, 不用的时候
az container delete --name ssr --resource-group testSSR

方法2:
//先跟着这个页面的1,2,3,4步添加docker repository
https://docs.docker.com/install/linux/do...repository
//安装docker
sudo apt-get update && sudo apt-get install docker-ce
//单命令架设SSR
sudo docker run -d --rm --name ssr -p 81:81 malaohu/ssr-with-net-speeder -s 0.0.0.0 -p 81 -k P@ssw0rd -m rc4-md5 -o http_simple


推荐的协议和混淆参数看这里
https://github.com/shadowsocksr-backup/s.../wiki/obfs

不是所有的参数都能在这个教程里用, 比如chacha20的加密算法就用不了, 因为这个docker image 的作者没有加libsodium 的包. 我有空会定制一个新的docker image, 把这些加进去.

对原理有兴趣的请看这里:
https://github.com/shadowsocksrr/shadows...ter/ssr.md

这里分享一个ShadowSocksR 服务器
ShadowSocks R


server: 35.229.147.33
port: 81
protocol: origin
password: 看视频最后几分钟
method: rc4-md5
obfs: http_simple
回复
#2
可以试的加密算法 -m 选项

rc4
rc4-md5
aes-128-cfb
aes-192-cfb
aes-256-cfb
bf-cfb
camellia-128-cfb
camellia-192-cfb
camellia-256-cfb
cast5-cfb
des-cfb
idea-cfb
rc2-cfb
seed-cfb
salsa20
chacha20
chacha20-ietf
回复
#3
可以试的混淆 -o 选项
plain
http_simple
http_simple_compatible
http_post
http_post_compatible
random_head (已过时)
random_head_compatible (已过时)
tls1.2_ticket_auth
tls1.2_ticket_auth_compatible
回复
#4
可以试的协议 -O 选项
origin
verify_deflate (不建议)
verify_sha1 (已过时)
verify_sha1_compatible (已过时)
auth_sha1 (已过时)
auth_sha1_compatible (已过时)
auth_sha1_v2 (已过时)
auth_sha1_v2_compatible (已过时)
auth_sha1_v4 (不建议)
auth_sha1_v4_compatible (不建议)
auth_aes128_md5
auth_aes128_sha1
auth_chain_a
auth_chain_b
回复


论坛跳转:


正在浏览该主题的用户: 1 个游客