开了v2rayN 全局+自动配置系统代理后出现某些原本不用代理可以访问的网站访问不了,比如openai StackOverflow #5813
Unanswered
ZheZhang10
asked this question in
Q&A
Replies: 1 comment 2 replies
-
试过的版本有6.60和6.33 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
问题:
前端时间我在捣鼓v2rayN的过程中不知道做了什么导致我有些网站突然无法连接,比如openai, stackoverflow, claude等 访问会显示This site can’t be reached, 在我捣鼓之前这些都是可以访问的,但是奇怪的是google,youtube都可以访问。
(我捣鼓的期间 有升级过,开过tun模式,我的路由和代理设置一直都是 全局+自动配置系统代理)
查过issue,没有找到类似的问题
试过的方法:
1.重置网络,升级网卡驱动 =》 无效
2.删除并重新安装 v2rayn,降级v2rayn,更新系统时间 =》无效
3.更换过代理服务器,关闭防火墙 =》无效
试了一周了 真的找不到问题在哪里,希望大佬可以帮我看看
可能有帮助的线索:
1.我的v2rayn配置:
{
"log": {
"access": "",
"error": "",
"loglevel": "debug"
},
"inbounds": [
{
"tag": "socks",
"port": 10808,
"listen": "127.0.0.1",
"protocol": "socks",
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
],
"routeOnly": false
},
"settings": {
"auth": "noauth",
"udp": true,
"allowTransparent": false
}
},
{
"tag": "http",
"port": 10809,
"listen": "127.0.0.1",
"protocol": "http",
"sniffing": {
"enabled": true,
"destOverride": [
"http",
"tls"
],
"routeOnly": false
},
"settings": {
"auth": "noauth",
"udp": true,
"allowTransparent": false
}
}
],
"outbounds": [
{
"tag": "proxy",
"protocol": "vless",
"settings": {
"vnext": [
{
"address": "192.200.160.44",
"port": 443,
"users": [
{
"id": "**马赛克",
"alterId": 0,
"email": "[email protected]",
"security": "auto",
"encryption": "none"
}
]
}
]
},
"streamSettings": {
"network": "ws",
"security": "tls",
"tlsSettings": {
"allowInsecure": false,
"serverName": "suger.icecream.dynv6.net",
"alpn": [
"h3"
],
"fingerprint": "random",
"show": false
},
"wsSettings": {
"path": "/?ed=2560&proxyip=192.200.160.44:443",
"headers": {
"Host": "*马赛克"
}
}
},
"mux": {
"enabled": false,
"concurrency": -1
}
},
{
"tag": "direct",
"protocol": "freedom",
"settings": {}
},
{
"tag": "block",
"protocol": "blackhole",
"settings": {
"response": {
"type": "http"
}
}
}
],
"dns": {
"hosts": {
"dns.google": "8.8.8.8",
"proxy.example.com": "127.0.0.1"
},
"servers": [
{
"address": "223.5.5.5",
"domains": [
"geosite:cn"
],
"expectIPs": [
"geoip:cn"
]
},
"1.1.1.1",
"8.8.8.8",
"https://dns.google/dns-query"
]
},
"routing": {
"domainStrategy": "AsIs",
"rules": [
{
"type": "field",
"inboundTag": [
"api"
],
"outboundTag": "api"
},
{
"type": "field",
"port": "0-65535",
"outboundTag": "proxy"
}
]
}
}
2. 我管理员开cmd去ping网站结果(此时v2rayN是开着的全局+自动配置系统代理)
3.此时我电脑的代理设置
4.此时我的ipv4的dns设置
5.v2rayn的部分日志(不清楚这个错误是否和我的问题有关系,但是这个问题我查过issue,需要我同步系统时间和关闭多路,都试过了 没有解决问题)
Beta Was this translation helpful? Give feedback.
All reactions