这篇文章上次修改于 1148 天前,可能其部分内容已经发生变化,如有疑问可询问作者。
搭建了v2ray服务之后,使用google搜索的时候经常提示:我们的系统检测到您的计算机网络中存在异常流量,需要进行人验证,对于离不开google的人来说比较烦人。
网上出现的解决办法有:
- 更换ip;
- 配置v2ray让google走ipv6;
- 配置v2ray让google走ipv4;
- 更换域名,可能你的域名以前被不正当的使用过;
我是通过配置v2ray让google走ipv4+更换域名解决的。下面是配置让google走ipv4的配置:
{ "log": { "access": "/var/log/v2ray/access.log", "error": "/var/log/v2ray/error.log", "loglevel": "warning" }, "inbounds": [ { "port": 33684, "listen": "127.0.0.1", "protocol": "vmess", "settings": { "clients": [ { "id": "0c67ca68-63ad-40c5-898e-9cf1925c8694", "level": 1, "alterId": 64 } ] }, "streamSettings": { "network": "ws", "wsSettings": { "path": "/etc/nginx/html" } } } ], "outbounds": [ { "protocol": "freedom", "settings": {}, "tag": "direct" }, { "protocol": "freedom", "settings": { "domainStrategy": "UseIPv4" }, "tag": "ip4-out" }, { "protocol": "blackhole", "settings": {}, "tag": "blocked" } ], "routing": { "rules": [ { "type": "field", "domain": [ "domain:google.com" ], "outboundTag": "ip4-out" }, { "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,而是rules增加一个让google走刚增加的outbound。
没有评论