outboundSelector should be referred as outbound_selector in V5 config file #2432
Unanswered
luciferliu1
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using V2ray 5.3.0 with V5 config file. When I was trying to set up the V5 config, I found two abnormal phenomena as follows.
That is it. I'm not sure if it's a bug or designed to act like that. Here is my V5 config file.
{
"log": {
"access": {
"level": "Warning"
},
"error": {
"level": "Warning"
}
},
"inbounds": [{
"port": "1080",
"listen": "127.0.0.1",
"tag": "socks-inbound",
"protocol": "socks",
"settings": {
"udpEnabled": true
},
"sniffing": {
"enabled": true,
"destOverride": ["http", "tls"]
}
},
{
"port": "1081",
"listen": "127.0.0.1",
"tag": "socks-in-tor",
"protocol": "socks",
"settings": {
"udpEnabled": true
},
"sniffing": {
"enabled": false,
"destOverride": ["http", "tls"]
}
}],
"outbounds": [{
"protocol": "freedom",
"settings": {
},
"tag": "direct"
},
{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
},
{
"tag": "proxy-vps-amd1",
"protocol": "shadowsocks",
"settings": {
"address": "xxxxx",
"port": 443,
"method": "AES_256_GCM",
"password": "xxxxxx"
},
"streamSettings": {
"transport": "ws",
"transportSettings":{
"path": "/xxxxxx"
},
"security":"utls",
"securitySettings":{
"imitate": "safari_16_0",
"tlsConfig": {
}
}
}
},
{
"tag": "proxy-vps-amd2",
"protocol": "vmess",
"settings": {
"address": "xxxxxxx",
"port": 443,
"uuid": "xxxxxxxx"
},
"streamSettings": {
"transport": "ws",
"transportSettings":{
"path": "/xxxxxx"
},
"security":"utls",
"securitySettings":{
"imitate": "safari_16_0",
"tlsConfig": {
}
}
}
},
{
"tag": "proxy-vps-arm1",
"protocol": "trojan",
"settings": {
"address": "xxxxxxxx",
"port": 443,
"password": "xxxxxxxx"
},
"streamSettings": {
"transport": "ws",
"transportSettings":{
"path": "/xxxxxxxx"
},
"security":"utls",
"securitySettings":{
"imitate": "safari_16_0",
"tlsConfig": {
}
}
}
}],
"router": {
"domainStrategy": "AsIs",
"rule":[
{
"protocol": [
"bittorrent"
],
"tag": "direct"
},
{
"inboundTag": [
"socks-in-tor"
],
"balancingTag": "balancer"
},
{
"domainMatcher": "mph",
"geoDomain": [
{
"domain":[
{
"type": "RootDomain",
"value": "openai.com"
}
]
}
],
"tag": "proxy-vps-amd2"
},
{
"domainMatcher": "mph",
"geoDomain": [
{
"code": "geolocation-!cn"
},
{
"domain":[
{ "type": "RootDomain", "value": "pastedownload.com"},
{ "type": "RootDomain", "value": "yiyeting.com"},
{ "type": "RootDomain", "value": "olevod.com"},
{
"type": "RootDomain",
"value": "olelive.com"
}
]
}
],
"balancingTag": "balancer"
}
],
"balancingRule":[
{
"tag": "balancer",
"outbound_selector":["proxy"],
"strategy": "random"
}
]
}
}
Beta Was this translation helpful? Give feedback.
All reactions