Back to Sing Box

Shadowsocks

docs/configuration/inbound/shadowsocks.md

1.13.112.0 KB
Original Source

Structure

json
{
  "type": "shadowsocks",
  "tag": "ss-in",

  ... // Listen Fields

  "method": "2022-blake3-aes-128-gcm",
  "password": "8JCsPssfgS8tiRwiMlhARg==",
  "managed": false,
  "multiplex": {}
}

Multi-User Structure

json
{
  "method": "2022-blake3-aes-128-gcm",
  "password": "8JCsPssfgS8tiRwiMlhARg==",
  "users": [
    {
      "name": "sekai",
      "password": "PCD2Z4o12bKUoFa3cC97Hw=="
    }
  ],
  "multiplex": {}
}

Relay Structure

json
{
  "type": "shadowsocks",
  "method": "2022-blake3-aes-128-gcm",
  "password": "8JCsPssfgS8tiRwiMlhARg==",
  "destinations": [
    {
      "name": "test",
      "server": "example.com",
      "server_port": 8080,
      "password": "PCD2Z4o12bKUoFa3cC97Hw=="
    }
  ],
  "multiplex": {}
}

Listen Fields

See Listen Fields for details.

Fields

network

Listen network, one of tcp udp.

Both if empty.

method

==Required==

MethodKey Length
2022-blake3-aes-128-gcm16
2022-blake3-aes-256-gcm32
2022-blake3-chacha20-poly130532
none/
aes-128-gcm/
aes-192-gcm/
aes-256-gcm/
chacha20-ietf-poly1305/
xchacha20-ietf-poly1305/

password

==Required==

MethodPassword Format
none/
2022 methodssing-box generate rand --base64 <Key Length>
other methodsany string

managed

Defaults to false. Enable this when the inbound is managed by the SSM API for dynamic user.

multiplex

See Multiplex for details.