We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
根据官方网站的说明文档,在服务端的config.json配置中加入了Shadowsocks协议,但是发现不能像VMess协议那样添加多个用户。 希望后续版本可以实现多个用户添加,实现不同用户的自定义配置。
config.json
Shadowsocks
VMess
比如这样:
"tag": "ss-in", "port": 8899, "protocol": "shadowsocks", "settings": { "clients": [{ "email": "love@v2ray.com", "method": "aes-128-cfb", "password": "123456", "level": 0, "ota": true, "network": "tcp" }, { "email": "lovee@v2ray.com", "method": "chacha20", "password": "654321", "level": 0, "ota": false, "network": "tcp" }, { "email": "loveee@v2ray.com", "method": "chacha20-ietf-poly1305", "password": "789012", "level": 0, "network": "tcp,udp" }] }
The text was updated successfully, but these errors were encountered:
shadowsocks协议没有用户概念。
Sorry, something went wrong.
V2Ray的Shadowsocks实现遵循Shadowsocks官方标准,现在有一个提议支持多用户,但还没有最终定稿。
shadowsocks/shadowsocks-org#130
No branches or pull requests
根据官方网站的说明文档,在服务端的
config.json
配置中加入了Shadowsocks
协议,但是发现不能像VMess
协议那样添加多个用户。希望后续版本可以实现多个用户添加,实现不同用户的自定义配置。
比如这样:
The text was updated successfully, but these errors were encountered: