v2ray client config json below
ips in PRC
https://www.liuboping.com/%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86prc%E7%9A%84ip%E6%AE%B5/{
"inbounds": [
{
"protocol": "http",
"listen": "0.0.0.0",
"auth": "noauth",
"port": 8123,
"sniffing": {
"enabled": true
}
}
],
"outbounds": [
{
"tag": "proxy1",
"protocol": "socks",
"settings": {
"servers": [
{
"address": "127.0.0.1",
"port": 1080
}
]
}
},
{
"tag": "proxy2",
"protocol": "socks",
"settings": {
"servers": [
{
"address": "127.0.0.1",
"port": 1081
}
]
}
},
{
"protocol": "freedom",
"settings": {},
"tag": "direct"
}
],
"routing": {
"domainStrategy": "IPOnDemand",
"rules": [
{
"type": "field",
"ip": [
"geoip:private"
],
"outboundTag": "direct"
},
{
"type": "field",
"domain": [
"domain:
baidu.com"
],
"outboundTag": "direct"
},
{
"type": "field",
"domain": [
"domain:
google.com"
],
"outboundTag": "proxy1"
},
{
"type": "field",
"ip": [
"1.0.1.0/24",
"1.0.2.0/23"
],
"outboundTag": "direct"
},
{
"type": "field",
"ip": [
"35.0.1.0/24"
],
"outboundTag": "proxy2"
}
]
}
}