Tiktok通过VMess翻墙,然后通过socket代理换成目标国家的IP,服务器报错
jschen1 opened this issue · 1 comments
Tiktok通过VMess翻墙,然后通过socket代理换成目标国家的IP,服务器报错:
app/proxyman/outbound: failed to process outbound traffic > proxy/socks: failed to establish connection to server > proxy/socks: unexpected server version: 72
以下是我的服务器配置:
{
"inbounds": [
{
"port": 19890, // 服务器监听端口
"listen": "127.0.0.1",
"protocol": "vmess", // 主传入协议
"settings": {
"clients": [
{
"id": "f11d0f64-2441-2a16-5671-a5e0576f6994", // 用户 ID,客户端与服务器必须相同
"email": "user1@superman.com",
"alterId": 0
},
{
"id": "2af6df8e-22fb-478d-b807-af6a72f8ee24",
"alterId": 4,
"email": "user2@superman.com"
},
{
"id": "7871a266-c9e7-4683-a91c-ed4913e9d605",
"alterId": 15,
"email": "user3@superman.com"
},
{
"id": "2e0fe862-0730-45d4-89c6-824b36829fe6",
"alterId": 89,
"email": "user4@superman.com"
}
]
},
"streamSettings": {
"network":"ws",
"wsSettings": {
"path": "/login"
}
}
}
],
"outbounds": [
{
"protocol": "socks", // 主传出协议
"settings": {
"servers": [{
"address": "154.212..", //我的国外住宅IP地址
"port": 2333,
"users": [
{
"user": "super123",
"pass": "*****************"
}
]
}]
},
"tag": "ip1"
},
{
"protocol": "socks",
"settings": {
"servers": [{
"address": "123.123.123.123",
"port": 1080
}]
},
"tag": "ip2"
},{
"protocol": "socks",
"settings": {
"servers": [{
"address": "123.123.123.123",
"port": 1080
}]
},
"tag": "ip3"
},
{
"protocol": "socks",
"settings": {
"servers": [{
"address": "123.123.123.123",
"port": 1080
}]
},
"tag": "ip4"
}
],
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"type": "field",
"user": [
"user1@superman.com"
],
"outboundTag": "ip1"
},
{
"type": "field",
"user": [
"user2@superman.com"
],
"outboundTag": "ip2"
},
{
"type": "field",
"user": [
"user3@superman.com"
],
"outboundTag": "ip3"
},
{
"type": "field",
"user": [
"user4@superman.com"
],
"outboundTag": "ip4"
}
]
}
}
This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days