Please skip to the English section below if you don't write Chinese.
中文:
提交 Issue 之前请先阅读 Issue 指引,然后回答下面的问题,谢谢。
除非特殊情况,请完整填写所有问题。不按模板发的 issue 将直接被关闭。
1) 你正在使用哪个版本的 V2Ray?(如果服务器和客户端使用了不同版本,请注明)
v2ray-v3.21-linux-mips
2) 你的使用场景是什么?比如使用 Chrome 通过 Socks/VMess 代理观看 YouTube 视频。
打开网页和IM工具使用
3) 你看到的不正常的现象是什么?(请描述具体现象,比如访问超时,TLS 证书错误等)
iptables -t nat -N V2RAY
iptables -t nat -A V2RAY -d 192.168.0.0/16 -j RETURN
iptables -t nat -A V2RAY -p tcp -j REDIRECT --to-ports 12345
iptables -t nat -A PREROUTING -p tcp -j V2RAY
配置完上面四条iptables规则后,可以正常上境外网站,同时在路由器上可以dns解析,即ping baidu.com解析和响应正常
ip rule add fwmark 0x01/0x01 table 100
ip route add local 0.0.0.0/0 dev lo table 100
iptables -t mangle -N V2RAY
iptables -t mangle -A V2RAY -p udp -j TPROXY --on-port 12345 --tproxy-mark 0x01/0x01
iptables -t mangle -A PREROUTING -j V2RAY
iptables -t mangle -I V2RAY -d 192.168.0.0/16 -j RETURN
继续配置上面udp转发规则后,在路由器上ping baidu.com无法解析ip,ping 8.8.8.8正常,电脑上网使用ip的可以正常使用,需要域名解析的无法使用
4) 你期待看到的正确表现是怎样的?
在路由器和电脑上都可以正常解析dns
5) 请附上你的配置(提交 Issue 前请隐藏服务器端IP地址)。
服务器端配置:
// 在这里附上服务器端配置文件
{
"log" : {
"access": "/var/log/v2ray/access.log",
"error": "/var/log/v2ray/error.log",
"loglevel": "debug"
},
"inbound": {
"port": 28752,
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "543a***************************2b",
"level": 1,
"alterId": 64
}
]
}
},
"outbound": {
"protocol": "freedom",
"settings": {
"timeout": 30
}
},
"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"
}
]
}
}
}
客户端配置:
// 在这里附上客户端配置
{
"dns" : {
"servers": [
"8.8.8.8",
"8.8.4.4",
"localhost"
]
},
"outboundDetour" : [
{
"protocol" : "freedom",
"tag" : "direct",
"settings" : {
}
}
],
"inbound" : {
"port" : 1080,
"protocol" : "socks",
"settings" : {
"auth" : "noauth"
}
},
"inboundDetour" : [
{
"listen": "0.0.0.0",
"port" : 12345,
"protocol" : "dokodemo-door",
"domainOverride" : [
"http",
"tls"
],
"settings" : {
"network": "tcp,udp",
"timeout": 30,
"followRedirect": true
}
}
],
"log" : {
"error" : "/var/log/v2ray/error.log",
"loglevel" : "none",
"access" : "/var/log/v2ray/access.log"
},
"routing" : {
"strategy" : "rules",
"settings" : {
"domainStrategy" : "IPIfNonMatch",
"rules" : [
{
"port" : "1-52",
"type" : "field",
"outboundTag" : "direct"
},
{
"port" : "54-79",
"type" : "field",
"outboundTag" : "direct"
},
{
"port" : "81-442",
"type" : "field",
"outboundTag" : "direct"
},
{
"port" : "444-65535",
"type" : "field",
"outboundTag" : "direct"
},
{
"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" : "direct"
}
]
}
},
"outbound" : {
"sendThrough" : "0.0.0.0",
"mux" : {
"enabled" : true,
"concurrency" : 8
},
"protocol" : "vmess",
"settings" : {
"vnext" : [
{
"address" : "52.100.100.100",
"port" : 28752,
"users" : [
{
"id" : "54***********************2b",
"alterId" : 64,
"security" : "aes-128-gcm",
"level" : 1
}
],
"remark" : "52.100.100.100"
}
]
},
"streamSettings" : {
"network" : "tcp",
"tcpSettings" : {
"header" : {
"type" : "none"
}
},
"security" : "none",
"tlsSettings" : {
"serverName" : "server.cc",
"allowInsecure" : false
},
"kcpSettings" : {
"header" : {
"type" : "none"
},
"mtu" : 1350,
"congestion" : false,
"tti" : 20,
"uplinkCapacity" : 5,
"writeBufferSize" : 1,
"readBufferSize" : 1,
"downlinkCapacity" : 20
},
"wsSettings" : {
"path" : "",
"headers" : {
"Host" : "server.cc"
}
}
}
}
}
6) 请附上出错时软件输出的错误日志。在 Linux 中,日志通常在 /var/log/v2ray/error.log 文件中。
服务器端错误日志:
// 在这里附上服务器端日志
2018/06/29 17:31:34 [Info] [3372376036] App|Proxyman|Mux: received request for tcp:assets-cdn.github.com:443
2018/06/29 17:31:34 [Info] [3372376036] App|Proxyman|Mux: received request for tcp:assets-cdn.github.com:443
2018/06/29 17:31:34 [Info] [3372376036] App|Dispatcher: default route for tcp:assets-cdn.github.com:443
2018/06/29 17:31:34 [Info] [3372376036] Proxy|Freedom: opening connection to tcp:assets-cdn.github.com:443
2018/06/29 17:31:34 [Info] [3372376036] Transport|Internet|TCP: dialing TCP to tcp:assets-cdn.github.com:443
2018/06/29 17:31:34 [Info] [3372376036] App|Dispatcher: default route for tcp:assets-cdn.github.com:443
2018/06/29 17:31:34 [Info] [3372376036] Proxy|Freedom: opening connection to tcp:assets-cdn.github.com:443
2018/06/29 17:31:34 [Info] [3372376036] Transport|Internet|TCP: dialing TCP to tcp:assets-cdn.github.com:443
2018/06/29 17:31:47 [Info] [1032093220] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:31:47 [Info] [1032093220] App|Proxyman|Mux: session 2 ends. > io: read/write on closed pipe
2018/06/29 17:31:47 [Info] [1032093220] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:31:47 [Info] [1032093220] App|Proxyman|Mux: session 3 ends. > io: read/write on closed pipe
2018/06/29 17:32:13 [Info] [1032093220] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:32:13 [Info] [1032093220] App|Proxyman|Mux: session 1 ends. > io: read/write on closed pipe
2018/06/29 17:32:24 [Info] [1032093220] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:32:24 [Info] [1032093220] App|Proxyman|Mux: session 5 ends. > io: read/write on closed pipe
2018/06/29 17:32:33 [Info] [1032093220] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:32:33 [Info] [1032093220] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:32:33 [Info] [1032093220] App|Proxyman|Mux: session 6 ends. > io: read/write on closed pipe
2018/06/29 17:32:33 [Info] [1032093220] App|Proxyman|Mux: session 7 ends. > io: read/write on closed pipe
2018/06/29 17:32:33 [Info] [1032093220] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:32:33 [Info] [1032093220] App|Proxyman|Mux: session 9 ends. > io: read/write on closed pipe
2018/06/29 17:32:33 [Info] [1032093220] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:32:33 [Info] [1032093220] App|Proxyman|Mux: session 8 ends. > io: read/write on closed pipe
2018/06/29 17:32:34 [Info] [3372376036] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:32:34 [Info] [3372376036] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:32:34 [Info] [3372376036] App|Proxyman|Mux: session 2 ends. > io: read/write on closed pipe
2018/06/29 17:32:34 [Info] [3372376036] App|Proxyman|Mux: session 1 ends. > io: read/write on closed pipe
2018/06/29 17:33:35 [Info] [1032093220] App|Proxyman|Inbound: connection ends > Proxy|VMess|Inbound: connection ends > context canceled
2018/06/29 17:33:53 [Info] [3372376036] App|Proxyman|Inbound: connection ends > Proxy|VMess|Inbound: connection ends > context canceled
客户端错误日志:
// 在这里附上客户端日志
2018/06/29 17:23:49 [Info] [2673522461] App|Dispatcher: taking detour [direct] for [udp:127.0.0.1:53]
2018/06/29 17:23:49 [Info] [2673522461] Proxy|Freedom: opening connection to udp:127.0.0.1:53
2018/06/29 17:23:49 [Debug] Transport|Internet|UDP: UDP original destination: udp:127.0.0.1:53
2018/06/29 17:23:49 [Debug] [3601719173] Proxy|Dokodemo: processing connection from: 127.0.0.1:38882
2018/06/29 17:23:49 [Warning] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Transport|Internet|UDP: failed to create file conn > file file+net /dev/udp/: fcntl: too many open files
2018/06/29 17:23:49 [Info] [3601719173] App|Dispatcher: taking detour [direct] for [udp:127.0.0.1:53]
2018/06/29 17:23:49 [Info] [3601719173] Proxy|Freedom: opening connection to udp:127.0.0.1:53
2018/06/29 17:23:50 [Info] [3601719173] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: failed to open connection to udp:127.0.0.1:53 > Retry: [dial udp 127.0.0.1:53: socket: too many open files] > Retry: all retry attempts failed
2018/06/29 17:23:53 [Debug] Transport|Internet|UDP: UDP original destination: udp:8.8.8.8:53
2018/06/29 17:23:53 [Debug] [298096862] Proxy|Dokodemo: processing connection from: 192.168.1.101:46521
2018/06/29 17:23:53 [Warning] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Transport|Internet|UDP: failed to create fd > too many open files
2018/06/29 17:23:53 [Info] [298096862] App|Dispatcher: default route for udp:8.8.8.8:53
2018/06/29 17:23:53 [Info] [298096862] App|Proxyman|Mux: dispatching request to udp:8.8.8.8:53
2018/06/29 17:23:53 [Info] [298096862] App|Proxyman|Mux: failed to fetch first payload > io: read/write on closed pipe
2018/06/29 17:23:53 [Info] Transport|Internet|TCP: dialing TCP to tcp:52.100.100.100:28752
2018/06/29 17:23:53 [Info] Transport|Internet|TCP: dialing TCP to tcp:52.100.100.100:28752
2018/06/29 17:23:53 [Info] Transport|Internet|TCP: dialing TCP to tcp:52.100.100.100:28752
2018/06/29 17:23:54 [Debug] Transport|Internet|UDP: UDP original destination: udp:127.0.0.1:53
2018/06/29 17:23:54 [Debug] [673244683] Proxy|Dokodemo: processing connection from: 127.0.0.1:33007
2018/06/29 17:23:54 [Warning] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Transport|Internet|UDP: failed to create fd > too many open files
2018/06/29 17:23:54 [Info] [673244683] App|Dispatcher: taking detour [direct] for [udp:127.0.0.1:53]
2018/06/29 17:23:54 [Info] [673244683] Proxy|Freedom: opening connection to udp:127.0.0.1:53
2018/06/29 17:23:54 [Info] Transport|Internet|TCP: dialing TCP to tcp:52.100.100.100:28752
2018/06/29 17:23:54 [Debug] Transport|Internet|UDP: UDP original destination: udp:8.8.8.8:53
2018/06/29 17:23:54 [Debug] [1396566722] Proxy|Dokodemo: processing connection from: 192.168.1.101:35870
2018/06/29 17:23:54 [Warning] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Transport|Internet|UDP: failed to create fd > too many open files
2018/06/29 17:23:54 [Info] [1396566722] App|Dispatcher: default route for udp:8.8.8.8:53
2018/06/29 17:23:54 [Info] [1396566722] App|Proxyman|Mux: dispatching request to udp:8.8.8.8:53
2018/06/29 17:23:54 [Info] [1396566722] App|Proxyman|Mux: failed to fetch first payload > io: read/write on closed pipe
2018/06/29 17:23:54 [Info] Transport|Internet|TCP: dialing TCP to tcp:52.100.100.100:28752
2018/06/29 17:24:06 [Info] [4168081071] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [3710605992] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] [3593377374] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [893420994] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [2138678893] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [371866948] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [3752254105] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [2762643026] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [817005515] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [3493097263] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [3046801076] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [2581283088] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [3850116907] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [269522741] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] [1378344320] App|Proxyman|Outbound: failed to process outbound traffic > Proxy|Freedom: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > context canceled
2018/06/29 17:24:06 [Info] App|Proxyman|Inbound: connection ends > Proxy|Dokodemo: connection ends > Proxy|Dokodemo: failed to transport response > io: read/write on closed pipe
7) 请附上访问日志。在 Linux 中,日志通常在 /var/log/v2ray/access.log 文件中。
// 在这里附上服务器端日志
8) 其它相关的配置文件(如 Nginx)和相关日志。
root@OpenWrt:~# iptable -t nat -vL
-ash: iptable: not found
root@OpenWrt:~# iptables -t nat -vL
Chain PREROUTING (policy ACCEPT 2432 packets, 205K bytes)
pkts bytes target prot opt in out source destination
263 16872 V2RAY tcp -- any any anywhere anywhere
2432 205K delegate_prerouting all -- any any anywhere anywhere
Chain INPUT (policy ACCEPT 402 packets, 27104 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 7787 packets, 529K bytes)
pkts bytes target prot opt in out source destination
Chain POSTROUTING (policy ACCEPT 7505 packets, 510K bytes)
pkts bytes target prot opt in out source destination
7791 529K delegate_postrouting all -- any any anywhere anywhere
Chain V2RAY (1 references)
pkts bytes target prot opt in out source destination
23 1512 RETURN all -- any any anywhere 192.168.0.0/16
240 15360 REDIRECT tcp -- any any anywhere anywhere redir ports 12345
Chain delegate_postrouting (1 references)
pkts bytes target prot opt in out source destination
7791 529K postrouting_rule all -- any any anywhere anywhere /* user chain for postrouting */
0 0 zone_lan_postrouting all -- any br-lan anywhere anywhere
0 0 zone_wan_postrouting all -- any eth0.2 anywhere anywhere
286 19172 zone_wan_postrouting all -- any wwan0 anywhere anywhere
Chain delegate_prerouting (1 references)
pkts bytes target prot opt in out source destination
2432 205K prerouting_rule all -- any any anywhere anywhere /* user chain for prerouting */
2432 205K zone_lan_prerouting all -- br-lan any anywhere anywhere
0 0 zone_wan_prerouting all -- eth0.2 any anywhere anywhere
0 0 zone_wan_prerouting all -- wwan0 any anywhere anywhere
Chain postrouting_lan_rule (1 references)
pkts bytes target prot opt in out source destination
Chain postrouting_rule (1 references)
pkts bytes target prot opt in out source destination
Chain postrouting_wan_rule (1 references)
pkts bytes target prot opt in out source destination
Chain prerouting_lan_rule (1 references)
pkts bytes target prot opt in out source destination
Chain prerouting_rule (1 references)
pkts bytes target prot opt in out source destination
Chain prerouting_wan_rule (1 references)
pkts bytes target prot opt in out source destination
Chain zone_lan_postrouting (1 references)
pkts bytes target prot opt in out source destination
0 0 postrouting_lan_rule all -- any any anywhere anywhere /* user chain for postrouting */
Chain zone_lan_prerouting (1 references)
pkts bytes target prot opt in out source destination
2432 205K prerouting_lan_rule all -- any any anywhere anywhere /* user chain for prerouting */
Chain zone_wan_postrouting (2 references)
pkts bytes target prot opt in out source destination
286 19172 postrouting_wan_rule all -- any any anywhere anywhere /* user chain for postrouting */
286 19172 MASQUERADE all -- any any anywhere anywhere
Chain zone_wan_prerouting (2 references)
pkts bytes target prot opt in out source destination
0 0 prerouting_wan_rule all -- any any anywhere anywhere /* user chain for prerouting */
root@OpenWrt:~# iptables -t mangle -vL
Chain PREROUTING (policy ACCEPT 10468 packets, 1374K bytes)
pkts bytes target prot opt in out source destination
22331 2257K V2RAY all -- any any anywhere anywhere
10468 1374K fwmark all -- any any anywhere anywhere
Chain INPUT (policy ACCEPT 18892 packets, 1967K bytes)
pkts bytes target prot opt in out source destination
Chain FORWARD (policy ACCEPT 104 packets, 8736 bytes)
pkts bytes target prot opt in out source destination
104 8736 mssfix all -- any any anywhere anywhere
Chain OUTPUT (policy ACCEPT 18407 packets, 2438K bytes)
pkts bytes target prot opt in out source destination
Chain POSTROUTING (policy ACCEPT 18550 packets, 2460K bytes)
pkts bytes target prot opt in out source destination
Chain V2RAY (1 references)
pkts bytes target prot opt in out source destination
7125 600K RETURN all -- any any anywhere 192.168.0.0/16
11835 881K TPROXY udp -- any any anywhere anywhere TPROXY redirect 0.0.0.0:12345 mark 0x1/0x1
Chain fwmark (1 references)
pkts bytes target prot opt in out source destination
Chain mssfix (1 references)
pkts bytes target prot opt in out source destination
0 0 TCPMSS tcp -- any eth0.2 anywhere anywhere tcp flags:SYN,RST/SYN /* wan (mtu_fix) / TCPMSS clamp to PMTU
0 0 TCPMSS tcp -- any wwan0 anywhere anywhere tcp flags:SYN,RST/SYN / wan (mtu_fix) */ TCPMSS clamp to PMTU
9) 如果 V2Ray 无法启动,请附上 --test 输出。
通常的命令为 /usr/bin/v2ray/v2ray --test --config /etc/v2ray/config.json。请按实际情况修改。
10) 如果 V2Ray 服务运行不正常,请附上 journal 日志。
通常的命令为 journalctl -u v2ray。
请预览一下你填的内容再提交。
如果你已经填完上面的问卷,请把下面的英文部份删除,再提交 Issue。
同样的问题 很尴尬。。。
同样的,dns通过tproxy转发到v2ray就打不开网页了,要串联一个pdnsd才行
同样的问题,请问你解决了吗
Most helpful comment
同样的问题 很尴尬。。。