v2ray-examples/VMess-TCP/config_client.json

56 lines
973 B
JSON
Raw Normal View History

2017-11-25 19:43:00 +08:00
{
2017-11-28 23:11:54 +08:00
"log": {
2020-07-30 22:51:21 +08:00
"loglevel": "warning"
2017-11-28 23:11:54 +08:00
},
2020-07-30 22:51:21 +08:00
"routing": {
2020-07-31 16:05:31 +08:00
"domainStrategy": "AsIs",
2020-07-30 22:51:21 +08:00
"rules": [
{
"ip": [
"geoip:private"
],
"outboundTag": "direct",
"port": null,
"type": "field"
}
]
},
2020-08-01 19:26:39 +08:00
"outbounds": [
2018-04-16 17:07:21 +08:00
{
2020-07-31 16:05:31 +08:00
"port": 1234,
2020-07-30 22:51:21 +08:00
"protocol": "vmess",
"settings": {
2020-07-31 16:05:31 +08:00
"clients": [
2020-07-30 22:51:21 +08:00
{
2020-07-31 16:05:31 +08:00
"id": "e2b39869-7e9e-411b-a561-00904419bed9",
"alterId": 100,
"testsEnabled": "VMessAEAD"
2020-07-30 22:51:21 +08:00
}
]
},
2020-08-01 19:26:39 +08:00
"tag": "proxy",
2020-07-30 22:51:21 +08:00
"streamSettings": {
2020-07-31 16:05:31 +08:00
"network": "tcp"
}
2020-08-01 19:26:39 +08:00
},
{
"tag": "direct",
"protocol": "freedom",
"settings": {
"domainStrategy": "UseIP"
}
2020-07-31 16:05:31 +08:00
}
],
2020-08-01 19:26:39 +08:00
"inbounds": [
2017-11-25 19:43:00 +08:00
{
2020-08-01 19:26:39 +08:00
"port": 6789,
"listen": "127.0.0.1",
"protocol": "socks",
2017-11-28 23:11:54 +08:00
"settings": {
2020-08-01 19:26:39 +08:00
"auth": "noauth",
"udp": false,
"ip": "127.0.0.1"
}
2017-11-25 19:43:00 +08:00
}
2020-07-31 16:05:31 +08:00
]
2020-08-01 19:26:39 +08:00
}