add http/2 config

This commit is contained in:
kirikira 2018-04-16 17:07:21 +08:00
parent bbff5e06b6
commit d1f24d4a9f
33 changed files with 1064 additions and 780 deletions

111
HTTP2/config_client.json Executable file
View File

@ -0,0 +1,111 @@
{
"outbound": {
"streamSettings": {
"network": "ws",
"kcpSettings": null,
"wsSettings": {
"headers": {
"host": "example.domain"
},
"path": ""
},
"tcpSettings": null,
"tlsSettings": {},
"security": "tls"
},
"tag": "agentout",
"protocol": "vmess",
"mux": {
"enabled": true
},
"settings": {
"vnext": [
{
"users": [
{
"alterId": 100,
"security": "aes-128-gcm",
"id": "0cdf8a45-303d-4fed-9780-29aa7f54175e"
}
],
"port": 443,
"address": "example.domain"
}
]
}
},
"log": {
"access": "",
"loglevel": "info",
"error": ""
},
"outboundDetour": [
{
"tag": "direct",
"protocol": "freedom",
"settings": {
"response": null
}
},
{
"tag": "blockout",
"protocol": "blackhole",
"settings": {
"response": {
"type": "http"
}
}
}
],
"inbound": {
"streamSettings": null,
"settings": {
"ip": "127.0.0.1",
"udp": true,
"clients": null,
"auth": "noauth"
},
"protocol": "socks",
"port": 1080,
"listen": "0.0.0.0"
},
"inboundDetour": null,
"routing": {
"settings": {
"rules": [
{
"ip": [
"0.0.0.0/8",
"10.0.0.0/8",
"100.64.0.0/10",
"127.0.0.0/8",
"169.254.0.0/16",
"172.16.0.0/12",
"192.0.0.0/24",
"192.0.2.0/24",
"192.168.0.0/16",
"198.18.0.0/15",
"198.51.100.0/24",
"203.0.113.0/24",
"::1/128",
"fc00::/7",
"fe80::/10"
],
"domain": null,
"type": "field",
"port": null,
"outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch"
},
"strategy": "rules"
},
"dns": {
"servers": [
"8.8.8.8",
"8.8.4.4",
"localhost"
]
}
}

91
HTTP2/config_server.json Executable file
View File

@ -0,0 +1,91 @@
{
"outbound": {
"streamSettings": null,
"tag": null,
"protocol": "freedom",
"mux": null,
"settings": null
},
"log": {
"access": "/var/log/v2ray/access.log",
"loglevel": "error",
"error": "/var/log/v2ray/error.log"
},
"inboundDetour": null,
"inbound": {
"streamSettings": {
"network": "h2",
"kcpSettings": null,
"httpSettings": {
"host": [
"lax.kirikira.moe"
],
"path": "/test"
},
"tcpSettings": null,
"tlsSettings": {
"certificates": [
{
"keyFile": "/path/to/example.domain.key",
"certificateFile": "/path/to/example.domain/fullchain.cer"
}
]
},
"security": "tls"
},
"listen": null,
"protocol": "vmess",
"port": 443,
"settings": {
"ip": null,
"udp": true,
"clients": [
{
"alterId": 100,
"security": "aes-128-gcm",
"id": "0cdf8a45-303d-4fed-9780-29aa7f54175e"
}
],
"auth": null
}
},
"outboundDetour": [
{
"tag": "blocked",
"protocol": "blackhole",
"settings": null
}
],
"routing": {
"strategy": "rules",
"settings": {
"rules": [
{
"ip": [
"0.0.0.0/8",
"10.0.0.0/8",
"100.64.0.0/10",
"127.0.0.0/8",
"169.254.0.0/16",
"172.16.0.0/12",
"192.0.0.0/24",
"192.0.2.0/24",
"192.168.0.0/16",
"198.18.0.0/15",
"198.51.100.0/24",
"203.0.113.0/24",
"::1/128",
"fc00::/7",
"fe80::/10"
],
"domain": null,
"type": "field",
"port": null,
"outboundTag": "blocked"
}
],
"domainStrategy": null
}
},
"dns": null
}

0
How_To_Choose.jpg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 108 KiB

0
README.md Normal file → Executable file
View File

0
Shadowsocks+mKcp/config_cilent.json Normal file → Executable file
View File

0
Shadowsocks+mKcp/config_server.json Normal file → Executable file
View File

2
TCP+TLS/config_client.json Normal file → Executable file
View File

@ -103,4 +103,4 @@
}, },
"strategy": "rules" "strategy": "rules"
} }
} }

2
TCP+TLS/config_server.json Normal file → Executable file
View File

@ -83,4 +83,4 @@
}, },
"strategy": "rules" "strategy": "rules"
} }
} }

75
TCP/config_client.json Normal file → Executable file
View File

@ -14,15 +14,19 @@
"enabled": true "enabled": true
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 1234, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "Your_IP_Address" }
}] ],
"port": 1234,
"address": "Your_IP_Address"
}
]
} }
}, },
"log": { "log": {
@ -30,7 +34,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -62,29 +67,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"
@ -96,4 +103,4 @@
"localhost" "localhost"
] ]
} }
} }

74
TCP/config_server.json Normal file → Executable file
View File

@ -27,47 +27,53 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
} }
}, },
"outboundDetour": [{ "outboundDetour": [
"tag": "blocked", {
"protocol": "blackhole", "tag": "blocked",
"settings": null "protocol": "blackhole",
}], "settings": null
}
],
"routing": { "routing": {
"strategy": "rules", "strategy": "rules",
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
} }
}, },
"dns": null "dns": null
} }

75
http/config_client.json Normal file → Executable file
View File

@ -57,15 +57,19 @@
"enabled": true "enabled": true
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 1234, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "Your_IP_Address" }
}] ],
"port": 1234,
"address": "Your_IP_Address"
}
]
} }
}, },
"log": { "log": {
@ -73,7 +77,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -105,29 +110,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"
@ -139,4 +146,4 @@
"localhost" "localhost"
] ]
} }
} }

74
http/config_server.json Normal file → Executable file
View File

@ -11,11 +11,13 @@
"loglevel": "info", "loglevel": "info",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"outboundDetour": [{ "outboundDetour": [
"tag": "blocked", {
"protocol": "blackhole", "tag": "blocked",
"settings": null "protocol": "blackhole",
}], "settings": null
}
],
"inbound": { "inbound": {
"streamSettings": { "streamSettings": {
"network": "tcp", "network": "tcp",
@ -71,11 +73,13 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
}, },
"protocol": "vmess", "protocol": "vmess",
@ -85,32 +89,34 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
}, },
"strategy": "rules" "strategy": "rules"
}, },
"dns": null "dns": null
} }

77
mKcp 伪装微信视频流量/config_client.json Normal file → Executable file
View File

@ -3,7 +3,7 @@
"streamSettings": { "streamSettings": {
"network": "kcp", "network": "kcp",
"kcpSettings": { "kcpSettings": {
"uplinkCapacity": 100, "uplinkCapacity": 15,
"downlinkCapacity": 100, "downlinkCapacity": 100,
"readBufferSize": 2, "readBufferSize": 2,
"mtu": 1350, "mtu": 1350,
@ -27,15 +27,19 @@
"enabled": true "enabled": true
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 1234, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "Your_IP_Address" }
}] ],
"port": 1234,
"address": "Your_IP_Address"
}
]
} }
}, },
"log": { "log": {
@ -43,7 +47,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -75,29 +80,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"
@ -109,4 +116,4 @@
"localhost" "localhost"
] ]
} }
} }

76
mKcp 伪装微信视频流量/config_server.json Normal file → Executable file
View File

@ -11,16 +11,18 @@
"loglevel": "info", "loglevel": "info",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"outboundDetour": [{ "outboundDetour": [
"tag": "blocked", {
"protocol": "blackhole", "tag": "blocked",
"settings": null "protocol": "blackhole",
}], "settings": null
}
],
"inbound": { "inbound": {
"streamSettings": { "streamSettings": {
"network": "kcp", "network": "kcp",
"kcpSettings": { "kcpSettings": {
"uplinkCapacity": 100, "uplinkCapacity": 15,
"downlinkCapacity": 100, "downlinkCapacity": 100,
"readBufferSize": 2, "readBufferSize": 2,
"mtu": 1350, "mtu": 1350,
@ -41,11 +43,13 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
}, },
"protocol": "vmess", "protocol": "vmess",
@ -55,32 +59,34 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
}, },
"strategy": "rules" "strategy": "rules"
}, },
"dns": null "dns": null
} }

2
mKcp/config_client.json Normal file → Executable file
View File

@ -3,7 +3,7 @@
"streamSettings": { "streamSettings": {
"network": "kcp", "network": "kcp",
"kcpSettings": { "kcpSettings": {
"uplinkCapacity": 100, "uplinkCapacity": 15,
"downlinkCapacity": 100, "downlinkCapacity": 100,
"readBufferSize": 2, "readBufferSize": 2,
"mtu": 1350, "mtu": 1350,

2
mKcp/config_server.json Normal file → Executable file
View File

@ -20,7 +20,7 @@
"streamSettings": { "streamSettings": {
"network": "kcp", "network": "kcp",
"kcpSettings": { "kcpSettings": {
"uplinkCapacity": 100, "uplinkCapacity": 15,
"downlinkCapacity": 100, "downlinkCapacity": 100,
"readBufferSize": 2, "readBufferSize": 2,
"mtu": 1350, "mtu": 1350,

View File

@ -1,46 +1,44 @@
{ {
"log":{ "log": {
"loglevel":"warning" "loglevel": "warning"
}, },
"inbound":{ "inbound": {
"port":6789, "port": 6789,
"listen":"127.0.0.1", "listen": "127.0.0.1",
"protocol":"socks", "protocol": "socks",
"settings":{ "settings": {
"auth":"noauth", "auth": "noauth",
"udp":false, "udp": false,
"ip":"127.0.0.1" "ip": "127.0.0.1"
} }
}, },
"outbound":{ "outbound": {
"protocol":"socks", "protocol": "socks",
"settings":{ "settings": {
"servers":[ "servers": [
{ {
"address":"you server", "address": "you server",
"port": 443, "port": 443,
"users":[ "users": [
{ {
"user":"hello", "user": "hello",
"pass":"3.1415", "pass": "3.1415",
"level":0 "level": 0
} }
] ]
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls"
}
},
"policy": {
"levels": {
"0": {
"uplinkOnly": 0
} }
] }
}, }
}
"streamSettings": {
"network": "tcp",
"security": "tls"
}
},
"policy":{
"levels":{
"0":{
"uplinkOnly":0
}
}
}
}

View File

@ -1,79 +1,75 @@
{ {
"log":{ "log": {
"access":"/var/log/v2ray/access.log", "access": "/var/log/v2ray/access.log",
"error":"/var/log/v2ray/error.log", "error": "/var/log/v2ray/error.log",
"loglevel":"warning" "loglevel": "warning"
}, },
"inbound":{ "inbound": {
"port":443, "port": 443,
"protocol":"socks", "protocol": "socks",
"settings":{ "settings": {
"auth":"password", "auth": "password",
"accounts":[ "accounts": [
{ {
"user":"hello", "user": "hello",
"pass":"3.1415" "pass": "3.1415"
}
],
"udp": false,
"ip": "127.0.0.1",
"timeout": 0,
"userLevel": 0
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"certificates": [
{
"certificateFile": "/etc/v2ray/v2ray.crt",
"keyFile": "/etc/v2ray/v2ray.key"
}
]
} }
], }
"udp":false, },
"ip":"127.0.0.1", "outbound": {
"timeout":0, "protocol": "freedom",
"userLevel":0 "settings": {}
}, },
"streamSettings":{ "outboundDetour": [
"network":"tcp", {
"security":"tls", "protocol": "blackhole",
"tlsSettings":{ "settings": {},
"certificates":[ "tag": "blocked"
{ }
"certificateFile":"/etc/v2ray/v2ray.crt", ],
"keyFile":"/etc/v2ray/v2ray.key" "routing": {
} "strategy": "rules",
"settings": {
"rules": [
{
"type": "field",
"ip": [
"0.0.0.0/8",
"10.0.0.0/8",
"100.64.0.0/10",
"127.0.0.0/8",
"169.254.0.0/16",
"172.16.0.0/12",
"192.0.0.0/24",
"192.0.2.0/24",
"192.168.0.0/16",
"198.18.0.0/15",
"198.51.100.0/24",
"203.0.113.0/24",
"::1/128",
"fc00::/7",
"fe80::/10"
],
"outboundTag": "blocked"
}
] ]
} }
} }
}, }
"outbound":{
"protocol":"freedom",
"settings":{
}
},
"outboundDetour":[
{
"protocol":"blackhole",
"settings":{
},
"tag":"blocked"
}
],
"routing":{
"strategy":"rules",
"settings":{
"rules":[
{
"type":"field",
"ip":[
"0.0.0.0/8",
"10.0.0.0/8",
"100.64.0.0/10",
"127.0.0.0/8",
"169.254.0.0/16",
"172.16.0.0/12",
"192.0.0.0/24",
"192.0.2.0/24",
"192.168.0.0/16",
"198.18.0.0/15",
"198.51.100.0/24",
"203.0.113.0/24",
"::1/128",
"fc00::/7",
"fe80::/10"
],
"outboundTag":"blocked"
}
]
}
}
}

View File

@ -1,45 +1,53 @@
{ {
"log": { "log": {
"error": "F:\\Program Files\\v2ray-v2.40-windows-64\\error.log", "error": "F:\\Program Files\\v2ray-v2.40-windows-64\\error.log",
"loglevel": "warning" "loglevel": "warning"
}, },
"inbound": { "inbound": {
"port": 1082, "port": 1082,
"listen": "127.0.0.1", "listen": "127.0.0.1",
"protocol": "socks", "protocol": "socks",
"settings": { "settings": {
"auth": "noauth", "auth": "noauth",
"udp": true "udp": true
} }
}, },
"outbound": { "outbound": {
"protocol": "vmess", "protocol": "vmess",
"settings": { "settings": {
"vnext": [{ "vnext": [
{
"address": "0.0.0.0", "address": "0.0.0.0",
"port": 1234, "port": 1234,
"users": [{ "users": [
"id": "a90597c1-bab3-4217-ad6f-0838675c8633", {
"alterId": 10 "id": "a90597c1-bab3-4217-ad6f-0838675c8633",
}, { "alterId": 10
"id": "8856ea72-a67a-4651-98f0-ebb3bf4f07b1", },
"level": 1, {
"security": "aes-128-gcm", "id": "8856ea72-a67a-4651-98f0-ebb3bf4f07b1",
"alterId": 12 "level": 1,
}] "security": "aes-128-gcm",
}] "alterId": 12
} }
}, ]
"outboundDetour": [{ }
]
}
},
"outboundDetour": [
{
"protocol": "freedom", "protocol": "freedom",
"tag": "direct", "tag": "direct",
"settings": {} "settings": {}
}], }
"routing": { ],
"strategy": "rules", "routing": {
"settings": { "strategy": "rules",
"domainStrategy": "IPOnDemand", "settings": {
"rules": [{ "domainStrategy": "IPOnDemand",
"rules": [
{
"type": "field", "type": "field",
"ip": [ "ip": [
"0.0.0.0/8", "0.0.0.0/8",
@ -59,7 +67,8 @@
"fe80::/10" "fe80::/10"
], ],
"outboundTag": "direct" "outboundTag": "direct"
}] }
} ]
} }
} }
}

View File

@ -1,61 +1,64 @@
{ {
"log" : { "log": {
"access": "/var/log/v2ray/access.log", "access": "/var/log/v2ray/access.log",
"error": "/var/log/v2ray/error.log", "error": "/var/log/v2ray/error.log",
"loglevel": "warning" "loglevel": "warning"
}, },
"inbound": { "inbound": {
"port": 1234, "port": 1234,
"protocol": "vmess", "protocol": "vmess",
"settings": { "settings": {
"clients": [{ "clients": [
"id": "a90597c1-bab3-4217-ad6f-0838675c8633", {
"alterId": 10 "id": "a90597c1-bab3-4217-ad6f-0838675c8633",
}, { "alterId": 10
"id": "8856ea72-a67a-4651-98f0-ebb3bf4f07b1", },
"level": 1, {
"security": "aes-128-gcm", "id": "8856ea72-a67a-4651-98f0-ebb3bf4f07b1",
"alterId": 12 "level": 1,
}] "security": "aes-128-gcm",
} "alterId": 12
}, }
"outbound": { ]
"protocol": "freedom",
"settings": {}
},
"outboundDetour": [
{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
}
],
"routing": {
"strategy": "rules",
"settings": {
"rules": [
{
"type": "field",
"ip": [
"0.0.0.0/8",
"10.0.0.0/8",
"100.64.0.0/10",
"127.0.0.0/8",
"169.254.0.0/16",
"172.16.0.0/12",
"192.0.0.0/24",
"192.0.2.0/24",
"192.168.0.0/16",
"198.18.0.0/15",
"198.51.100.0/24",
"203.0.113.0/24",
"::1/128",
"fc00::/7",
"fe80::/10"
],
"outboundTag": "blocked"
}
]
}
} }
} },
"outbound": {
"protocol": "freedom",
"settings": {}
},
"outboundDetour": [
{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
}
],
"routing": {
"strategy": "rules",
"settings": {
"rules": [
{
"type": "field",
"ip": [
"0.0.0.0/8",
"10.0.0.0/8",
"100.64.0.0/10",
"127.0.0.0/8",
"169.254.0.0/16",
"172.16.0.0/12",
"192.0.0.0/24",
"192.0.2.0/24",
"192.168.0.0/16",
"198.18.0.0/15",
"198.51.100.0/24",
"203.0.113.0/24",
"::1/128",
"fc00::/7",
"fe80::/10"
],
"outboundTag": "blocked"
}
]
}
}
}

0
websocket+Caddy+TLS(use header)/Caddyfile Normal file → Executable file
View File

View File

@ -20,15 +20,19 @@
"concurrency": 8 "concurrency": 8
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 443, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "example.domain" }
}] ],
"port": 443,
"address": "example.domain"
}
]
} }
}, },
"log": { "log": {
@ -36,7 +40,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -68,29 +73,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"
@ -102,4 +109,4 @@
"localhost" "localhost"
] ]
} }
} }

65
websocket+Caddy+TLS(use header)/config_server.json Normal file → Executable file
View File

@ -11,7 +11,8 @@
"loglevel": "info", "loglevel": "info",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": null "settings": null
@ -39,11 +40,13 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
}, },
"protocol": "vmess", "protocol": "vmess",
@ -53,32 +56,34 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
}, },
"strategy": "rules" "strategy": "rules"
}, },
"dns": null "dns": null
} }

0
websocket+Caddy+TLS(use path)/Caddyfile Normal file → Executable file
View File

View File

@ -17,15 +17,19 @@
"concurrency": 8 "concurrency": 8
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 443, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "example.domain" }
}] ],
"port": 443,
"address": "example.domain"
}
]
} }
}, },
"log": { "log": {
@ -33,7 +37,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -65,29 +70,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"
@ -99,4 +106,4 @@
"localhost" "localhost"
] ]
} }
} }

65
websocket+Caddy+TLS(use path)/config_server.json Normal file → Executable file
View File

@ -11,7 +11,8 @@
"loglevel": "info", "loglevel": "info",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": null "settings": null
@ -36,11 +37,13 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
}, },
"protocol": "vmess", "protocol": "vmess",
@ -50,32 +53,34 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
}, },
"strategy": "rules" "strategy": "rules"
}, },
"dns": null "dns": null
} }

0
websocket+Nginx+TLS/Nginx.config Normal file → Executable file
View File

132
websocket+Nginx+TLS/config_client.json Normal file → Executable file
View File

@ -1,132 +1,132 @@
{ {
"outbound": { "outbound": {
"protocol": "freedom", "protocol": "freedom",
"settings": { }, "settings": {},
"tag": "direct" "tag": "direct"
}, },
"inboundDetour": [ "inboundDetour": [
{ {
"port": 1086, "port": 1086,
"listen": "127.0.0.1", "listen": "127.0.0.1",
"protocol": "socks", "protocol": "socks",
"settings": { "settings": {
"auth": "noauth", "auth": "noauth",
"timeout": 300, "timeout": 300,
"udp": true "udp": true
} }
} }
], ],
"outboundDetour": [ "outboundDetour": [
{ {
"mux": { "mux": {
"concurrency": 6, "concurrency": 6,
"enabled": true "enabled": true
}, },
"protocol": "vmess", "protocol": "vmess",
"settings": { "settings": {
"vnext": [ "vnext": [
{ {
"users": [ "users": [
{ {
"id": "97c0ec9c-dc4e-11e7-9296-cec278b6b50a", "id": "97c0ec9c-dc4e-11e7-9296-cec278b6b50a",
"alterId": 0, "alterId": 0,
"security": "aes-128-cfb" "security": "aes-128-cfb"
} }
], ],
"address": "domain.Name", "address": "domain.Name",
"port": 443 "port": 443
} }
] ]
}, },
"streamSettings": { "streamSettings": {
"tlsSettings": { "tlsSettings": {
"allowInsecure": false "allowInsecure": false
}, },
"wsSettings": { "wsSettings": {
"headers": { "headers": {
"Host": "domain.Name" "Host": "domain.Name"
}, },
"path": "/PATH/" "path": "/PATH/"
}, },
"network": "ws", "network": "ws",
"security": "tls" "security": "tls"
}, },
"tag": "proxy" "tag": "proxy"
}, },
{ {
"protocol": "blackhole", "protocol": "blackhole",
"settings": { }, "settings": {},
"tag": "block" "tag": "block"
} }
], ],
"dns": { "dns": {
"servers": [ "servers": [
"8.8.8.8", "8.8.8.8",
"8.8.4.4" "8.8.4.4"
] ]
}, },
"inbound": { "inbound": {
"port": 1087, "port": 1087,
"listen": "127.0.0.1", "listen": "127.0.0.1",
"protocol": "http", "protocol": "http",
"settings": { "settings": {
"timeout": 300 "timeout": 300
} }
}, },
"routing": { "routing": {
"settings": { "settings": {
"rules": [ "rules": [
{ {
"type": "field", "type": "field",
"domain": [ "domain": [
"geosite:cn" "geosite:cn"
], ],
"outboundTag": "direct" "outboundTag": "direct"
}, },
{ {
"type": "field", "type": "field",
"domain": [ "domain": [
"google", "google",
"facebook", "facebook",
"youtube", "youtube",
"twitter", "twitter",
"instagram", "instagram",
"gmail", "gmail",
"domain:twimg.com", "domain:twimg.com",
"domain:t.co" "domain:t.co"
], ],
"outboundTag": "proxy" "outboundTag": "proxy"
}, },
{ {
"type": "field", "type": "field",
"ip": [ "ip": [
"8.8.8.8/32", "8.8.8.8/32",
"8.8.4.4/32", "8.8.4.4/32",
"91.108.56.0/22", "91.108.56.0/22",
"91.108.4.0/22", "91.108.4.0/22",
"109.239.140.0/24", "109.239.140.0/24",
"149.154.164.0/22", "149.154.164.0/22",
"91.108.56.0/23", "91.108.56.0/23",
"67.198.55.0/24", "67.198.55.0/24",
"149.154.168.0/22", "149.154.168.0/22",
"149.154.172.0/22" "149.154.172.0/22"
], ],
"outboundTag": "proxy" "outboundTag": "proxy"
}, },
{ {
"type": "field", "type": "field",
"ip": [ "ip": [
"192.168.0.0/16", "192.168.0.0/16",
"10.0.0.0/8", "10.0.0.0/8",
"172.16.0.0/12", "172.16.0.0/12",
"127.0.0.0/8", "127.0.0.0/8",
"geoip:cn" "geoip:cn"
], ],
"outboundTag": "direct" "outboundTag": "direct"
} }
], ],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"
} }
} }

0
websocket+Nginx+TLS/config_server.json Normal file → Executable file
View File

0
websocket+TLS/config_client.json Normal file → Executable file
View File

180
websocket+TLS/config_server.json Normal file → Executable file
View File

@ -1,91 +1,91 @@
{ {
"outbound": { "outbound": {
"streamSettings": null, "streamSettings": null,
"tag": null, "tag": null,
"protocol": "freedom", "protocol": "freedom",
"mux": null, "mux": null,
"settings": null "settings": null
}, },
"log": { "log": {
"access": "/var/log/v2ray/access.log", "access": "/var/log/v2ray/access.log",
"loglevel": "error", "loglevel": "error",
"error": "/var/log/v2ray/error.log" "error": "/var/log/v2ray/error.log"
}, },
"inboundDetour": null, "inboundDetour": null,
"inbound": { "inbound": {
"streamSettings": { "streamSettings": {
"network": "ws", "network": "ws",
"kcpSettings": null, "kcpSettings": null,
"wsSettings": { "wsSettings": {
"headers": { "headers": {
"host": "example.domain" "host": "example.domain"
}, },
"path": "" "path": ""
}, },
"tcpSettings": null, "tcpSettings": null,
"tlsSettings": { "tlsSettings": {
"certificates": [ "certificates": [
{ {
"keyFile": "/path/to/example.domain.key", "keyFile": "/path/to/example.domain.key",
"certificateFile": "/path/to/example.domain/fullchain.cer" "certificateFile": "/path/to/example.domain/fullchain.cer"
} }
] ]
}, },
"security": "tls" "security": "tls"
}, },
"listen": null, "listen": null,
"protocol": "vmess", "protocol": "vmess",
"port": 443, "port": 443,
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [ "clients": [
{ {
"alterId": 100, "alterId": 100,
"security": "aes-128-gcm", "security": "aes-128-gcm",
"id": "0cdf8a45-303d-4fed-9780-29aa7f54175e" "id": "0cdf8a45-303d-4fed-9780-29aa7f54175e"
} }
], ],
"auth": null "auth": null
} }
}, },
"outboundDetour": [ "outboundDetour": [
{ {
"tag": "blocked", "tag": "blocked",
"protocol": "blackhole", "protocol": "blackhole",
"settings": null "settings": null
} }
], ],
"routing": { "routing": {
"strategy": "rules", "strategy": "rules",
"settings": { "settings": {
"rules": [ "rules": [
{ {
"ip": [ "ip": [
"0.0.0.0/8", "0.0.0.0/8",
"10.0.0.0/8", "10.0.0.0/8",
"100.64.0.0/10", "100.64.0.0/10",
"127.0.0.0/8", "127.0.0.0/8",
"169.254.0.0/16", "169.254.0.0/16",
"172.16.0.0/12", "172.16.0.0/12",
"192.0.0.0/24", "192.0.0.0/24",
"192.0.2.0/24", "192.0.2.0/24",
"192.168.0.0/16", "192.168.0.0/16",
"198.18.0.0/15", "198.18.0.0/15",
"198.51.100.0/24", "198.51.100.0/24",
"203.0.113.0/24", "203.0.113.0/24",
"::1/128", "::1/128",
"fc00::/7", "fc00::/7",
"fe80::/10" "fe80::/10"
], ],
"domain": null, "domain": null,
"type": "field", "type": "field",
"port": null, "port": null,
"outboundTag": "blocked" "outboundTag": "blocked"
} }
], ],
"domainStrategy": null "domainStrategy": null
} }
}, },
"dns": null "dns": null
} }

75
websocket/config_client.json Normal file → Executable file
View File

@ -19,15 +19,19 @@
"enabled": true "enabled": true
}, },
"settings": { "settings": {
"vnext": [{ "vnext": [
"users": [{ {
"alterId": 100, "users": [
"security": "aes-128-gcm", {
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "alterId": 100,
}], "security": "aes-128-gcm",
"port": 1234, "id": "e2b39869-7e9e-411b-a561-00904419bed9"
"address": "Your_IP_Address" }
}] ],
"port": 1234,
"address": "Your_IP_Address"
}
]
} }
}, },
"log": { "log": {
@ -35,7 +39,8 @@
"loglevel": "info", "loglevel": "info",
"error": "" "error": ""
}, },
"outboundDetour": [{ "outboundDetour": [
{
"tag": "direct", "tag": "direct",
"protocol": "freedom", "protocol": "freedom",
"settings": { "settings": {
@ -67,29 +72,31 @@
"inboundDetour": null, "inboundDetour": null,
"routing": { "routing": {
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "direct" "port": null,
}], "outboundTag": "direct"
}
],
"domainStrategy": "IPIfNonMatch" "domainStrategy": "IPIfNonMatch"
}, },
"strategy": "rules" "strategy": "rules"
@ -101,4 +108,4 @@
"localhost" "localhost"
] ]
} }
} }

74
websocket/config_server.json Normal file → Executable file
View File

@ -32,47 +32,53 @@
"settings": { "settings": {
"ip": null, "ip": null,
"udp": true, "udp": true,
"clients": [{ "clients": [
"alterId": 100, {
"security": "aes-128-gcm", "alterId": 100,
"id": "e2b39869-7e9e-411b-a561-00904419bed9" "security": "aes-128-gcm",
}], "id": "e2b39869-7e9e-411b-a561-00904419bed9"
}
],
"auth": null "auth": null
} }
}, },
"outboundDetour": [{ "outboundDetour": [
"tag": "blocked", {
"protocol": "blackhole", "tag": "blocked",
"settings": null "protocol": "blackhole",
}], "settings": null
}
],
"routing": { "routing": {
"strategy": "rules", "strategy": "rules",
"settings": { "settings": {
"rules": [{ "rules": [
"ip": [ {
"0.0.0.0/8", "ip": [
"10.0.0.0/8", "0.0.0.0/8",
"100.64.0.0/10", "10.0.0.0/8",
"127.0.0.0/8", "100.64.0.0/10",
"169.254.0.0/16", "127.0.0.0/8",
"172.16.0.0/12", "169.254.0.0/16",
"192.0.0.0/24", "172.16.0.0/12",
"192.0.2.0/24", "192.0.0.0/24",
"192.168.0.0/16", "192.0.2.0/24",
"198.18.0.0/15", "192.168.0.0/16",
"198.51.100.0/24", "198.18.0.0/15",
"203.0.113.0/24", "198.51.100.0/24",
"::1/128", "203.0.113.0/24",
"fc00::/7", "::1/128",
"fe80::/10" "fc00::/7",
], "fe80::/10"
"domain": null, ],
"type": "field", "domain": null,
"port": null, "type": "field",
"outboundTag": "blocked" "port": null,
}], "outboundTag": "blocked"
}
],
"domainStrategy": null "domainStrategy": null
} }
}, },
"dns": null "dns": null
} }