|
5#

楼主 |
发表于 2023-4-20 00:16:31
|
只看该作者
我写的协议,但是还是有问题,报错
app/proxyman/outbound: failed to process outbound traffic > proxy/vless/outbound: failed to find an available destination > common/retry: [dial tcp *.9.19.9:17652: operation was canceled] > common/retry: all retry attempts failed
,还请大佬指点:
{
"api": {
"services": [
"HandlerService",
"LoggerService",
"StatsService"
],
"tag": "api"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": 62789,
"protocol": "dokodemo-door",
"settings": {
"address": "127.0.0.1"
},
"tag": "api"
}
],
"outbounds": [
{
"protocol": "freedom",
"settings": {}
},
{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
},
{
"tag": "VPS1" ,
"protocol": "vless",
"settings": {
"vnext": [{
"address": "7.*.*.6",
"port": 5**5,
"users": [{
"id": "42****-a**-4***-b***-10****",
"security": "auto",
"alterId": 0
}]
}]
}
}
],
"policy": {
"system": {
"statsInboundDownlink": true,
"statsInboundUplink": true
}
},
"routing": {
"rules": [
{
"inboundTag": [
"api"
],
"outboundTag": "api",
"type": "field"
},
{
"ip": [
"geoip:private"
],
"outboundTag": "blocked",
"type": "field"
},
{
"outboundTag": "blocked",
"protocol": [
"bittorrent"
],
"type": "field"
},
{
"type": "field",
"outboundTag": "VPS1",
"domain": ["geosite:netflix","nflxvideo.net","nflxext.com","nflxso.net"]
}
]
},
"stats": {}
} |
|