Skip to content

报错连接不上.... #1414

Answered by kallydev
Yuedadsix asked this question in Q&A
Discussion options

You must be logged in to vote

It looks like you're using shadowsocks protocol, but the rc4-md5 cipher method is not supported. Currently, v2fly-core provides shadowsocks that support only the following cipher methods.

func CipherFromString(c string) CipherType {
switch strings.ToLower(c) {
case "aes-128-gcm", "aead_aes_128_gcm":
return CipherType_AES_128_GCM
case "aes-256-gcm", "aead_aes_256_gcm":
return CipherType_AES_256_GCM
case "chacha20-poly1305", "aead_chacha20_poly1305", "chacha20-ietf-poly1305":
return CipherType_CHACHA20_POLY1305
case "none", "plain":
return CipherType_NONE
default:

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by AkinoKaede
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants