Tap和Tun模式启动(透明代理)
均以mixin作为开关
如果无需透明代理,可以不考虑此功能
配置文件粘贴位置:
Setting -> Profile Mixin -> YAML 点击Edit,全部复制替换即可
Tap模式
Clash主页Tap Device 点击Manage,然后Install,给管理员权限即可
打开mixin,关闭System Proxy
配置文件:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| mixin: dns: enable: true ipv6: false listen: 0.0.0.0:53 enhanced-mode: redir-host # redir-host fake-ip # fake-ip-range: 198.18.0.1/16 # https://kb.adguard.com/zh/general/dns-providers DNS查询网址,下方可DNS自行替换,建议doh nameserver: - https://doh.pub/dns-query # Tencent - 114.114.114.114 fallback: - 8.8.8.8# Google - 1.0.0.1
|
Tun模式(性能比Tap模式好,但是需要管理员权限,开机自启需要设置任务计划)
进入wintun官网
点击网页下方[Download Wintun]
将下载好的文件解压,如果电脑为Windows64位,则复制bin/amd64/wintun.dll
Clash主页Home Directory点击Open ,将wintun.dll复制至此处
将上方配置文件复制至Mixin
打开mixin,
点击主界面ServiceMode右侧的Manage,点击Install,给管理员权限即可,此后cfw会自动重启
关闭System Proxy,打开网卡查看是否有Clash Tunnel网卡
配置文件:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| mixin: dns: enable: true ipv6: false enhanced-mode: redir-host # redir-host fake-ip # DNSSearch:https://kb.adguard.com/zh/general/dns-providers nameserver: - https://dns.rubyfish.cn/dns-query fallback: - 8.8.8.8# Google - 1.0.0.1 # CloudFlare # 使用TUN模式 tun: enable: true stack: gvisor dns-hijack: - 198.18.0.2:53 macOS-auto-route: true macOS-auto-detect-interface: true # 自动检测出口网卡
|
如果dns污染不严重,可使用下方配置文件
常见污染域名:
Win+R cmd
1
| nslookup raw.githubusercontent.com
|
如果为0.0.0.0或其他本地ip,则为污染,如不是特别在意污染,可使用下方配置文件,加快DNS解析速度
其中本地DNS需要自行修改,自行查询
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| mixin: dns: enable: true ipv6: false enhanced-mode: redir-host nameserver: - 192.168.31.1 # 本地DNS,查询方法桌面菜单键右键命令提示符(管理员随意) 输入 ipconfig /all,当前网卡的DNS服务器复制至此处即可 - https://dns.rubyfish.cn/dns-query fallback: - 8.8.8.8 # Google - 1.0.0.1 # CloudFlare fallback-filter: geoip: false ipcidr: - 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.88.99.0/24 - 192.168.0.0/16 - 198.18.0.0/15 - 198.51.100.0/24 - 203.0.113.0/24 - 224.0.0.0/4 - 240.0.0.0/4 - 255.255.255.255/32 domain: # 如有域名无法解析则加入此处 - "+.google.com" - "+.facebook.com" - "+.youtube.com" - "+.githubusercontent.com" tun: enable: true stack: gvisor dns-hijack: - 198.18.0.2:53 macOS-auto-route: true macOS-auto-detect-interface: true
|