-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
TAP 模式
Siqi Zhao edited this page Mar 2, 2024
·
1 revision
对于不遵循系统代理的软件,TAP 模式可以接管其流量并交由 CFW 处理
对于 0.13.8 及以后版本,更推荐使用TUN 模式
点击General
页面中TAP Device
选项的Manage
按钮,在弹出对话框中选择Install
将会安装 TAP 网卡,此网卡用于接管系统流量,安装完成可在系统网络连接中看到名为cfw-tap
的网卡
使用的 Profile 中包含 listen 设置:
dns:
enable: true
enhanced-mode: redir-host # 或 fake-ip
listen: 0.0.0.0:53
nameserver:
- 223.5.5.5
此版本可以通过设置 Interface Name (自动识别) 属性避免回环,并且支持了 UDP 及 IP 类请求,请在Settings
页面Interface Name
选项中选择出站网卡(通常为本机物理网卡)
当enhanced-mode
设置为fake-ip
时,会出现系统检测到网卡无法联网,微软系 APP 无法登陆使用等问题,可以通过添加fake-ip-filter
解决:
dns:
enable: true
enhanced-mode: fake-ip
listen: 0.0.0.0:53
nameserver:
- 223.5.5.5
fake-ip-filter:
- "dns.msftncsi.com"
- "www.msftncsi.com"
- "www.msftconnecttest.com"
TIP
TAP 模式更推荐使用 redir-host 模式