|
|
本帖最后由 lxgndz 于 2020-5-12 17:59 编辑
我不是大佬就是论坛几位老哥分享的配置和代码结合自己使用的经验交流,重要事情说三遍:不是技术贴,不是技术贴,不是技术贴。
再次感谢几位老哥的经验分享:@huifei @goodffd
引用原帖:https://www.loc.010206.xyz/thread-687521-1-1.html
https://www.loc.010206.xyz/thread-687521-4-1.html
36楼
1.电脑端TG客户端这个比较简单省事适用v2ray和Trojan看图吧:

2.**hub网站去俄罗斯ip的18验证办法电脑端谷歌浏览器uBlock Origin扩展加入以下规则就可以撸了。
- **hub.com###age-verification-wrapper
- **hub.com###age-verification-container
复制代码
3.手机端看奈飞连TG,电脑端看奈飞只适用于v2ray直接上配置根据自己情况修改:
- {
- "inbounds": [
- {
- "port": 12345,
- "protocol": "vmess",
- "settings": {
- "clients": [
- {
- "id": "89b830e0-7429-4905-b3c5-773c28d75643",
- "alterId": 64
- }
- ]
- },
- "sniffing": {
- "enabled": true,
- "destOverride": ["http", "tls"]
- }
- }
- ],
- "outbounds": [
- {
- "protocol": "freedom",
- "settings": { },
- "tag": "direct"
- },
- {
- "tag":"IP6_out",
- "protocol": "freedom",
- "settings": {
- "domainStrategy": "UseIPv6"
- }
- }
- ],
- "routing": {
- "rules": [
- {
- "type": "field",
- "outboundTag": "IP6_out",
- "domain": ["geosite:netflix"]
- },
- {
- "type": "field",
- "outboundTag": "IP6_out",
- "domain": ["geosite:telegram"]
- },
- {
- "type": "field",
- "inboundTag": [
- "vmess-in"
- ],
- "outboundTag": "direct"
- }
- ]
- }
- }
复制代码 |
|