mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-09 18:43:13 +00:00
Add shadowsocks 2022 relay example
This commit is contained in:
parent
187bd619e4
commit
d8e9949686
|
@ -52,6 +52,37 @@
|
|||
}
|
||||
```
|
||||
|
||||
服务端 JSON (中转)
|
||||
|
||||
```json
|
||||
{
|
||||
"inbounds": [
|
||||
{
|
||||
"port": 1234,
|
||||
"protocol": "shadowsocks",
|
||||
"settings": {
|
||||
"method": "2022-blake3-aes-128-gcm",
|
||||
"password": "{{ relay psk }}",
|
||||
"clients": [
|
||||
{
|
||||
"address": "server",
|
||||
"port": 1234,
|
||||
"password": "{{ server/user psk }}",
|
||||
"email": "my server"
|
||||
}
|
||||
],
|
||||
"network": "tcp,udp"
|
||||
}
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{
|
||||
"protocol": "freedom"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
客户端 JSON
|
||||
|
||||
```json
|
||||
|
@ -158,6 +189,41 @@
|
|||
}
|
||||
```
|
||||
|
||||
客户端 JSON (中转)
|
||||
|
||||
```json
|
||||
{
|
||||
"inbounds": [
|
||||
{
|
||||
"port": 10801,
|
||||
"protocol": "socks",
|
||||
"settings": {
|
||||
"udp": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"port": 10802,
|
||||
"protocol": "http"
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{
|
||||
"protocol": "shadowsocks",
|
||||
"settings": {
|
||||
"servers": [
|
||||
{
|
||||
"address": "{{ host }}",
|
||||
"port": 1234,
|
||||
"method": "2022-blake3-aes-128-gcm",
|
||||
"password": "{{ relay psk }}:{{ user psk }}"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
## Password
|
||||
|
||||
Shadowsocks 2022 使用与 WireGuard 类似的预共享密钥作为密码。
|
||||
|
|
Loading…
Reference in a new issue