xmdhs / clash2sfa

将 Clash.Meta 格式的订阅链接转换为 sing-box 格式的订阅,用于 SFA
https://clash2sfa.xmdhs.com
MIT License
478 stars 92 forks source link

配置建议 #8

Closed akaagiao1 closed 1 year ago

akaagiao1 commented 1 year ago

大佬,我用默认配置模板发现机场部分节点明明解锁 netflix 但是却只能看自制剧 后来在电报群里请教发现要在 1.inbounds里把"domain_strategy": "ipv4_only",去掉

2.在 "dns": { "servers": [ { "tag": "remote", "address": "https:1.1.1.1/dns-query", "detour": "select" }, { "tag": "local", "address": "https:223.5.5.5/dns-query", "Detour": "direct" } ], "rules" means: [ { "clash_mode": "global", 加上 "ip_version": 4, "server": "remote" }, 这样节点就正常了 还有一件小事就是大佬能不能顺手加上在模版上加上 clash api fakeip 相关配置啊,听说这样网能快点。我看 1.3.0 支持了。馋的慌(主要是我还不太会写🤪🤣)

xmdhs commented 1 year ago

大概是你那机场用的是 dns 解锁,加上 "domain_strategy": "ipv4_only" 就只发送 ip,不携带域名,机场那边没法分流到解锁的节点去。

fakeip 的话,把


inbounds": [
        {
            "type": "tun",
-           "inet4_address": "172.19.0.1/30",
+          "inet4_address": "198.18.0.0/15",
            "sniff": true,
            "sniff_override_destination": true,
            "domain_strategy": "ipv4_only",
            "strict_route": true,
            "mtu": 9000,
            "endpoint_independent_nat": true,
            "auto_route": true
        },

dns 里再填上 https://sing-box.sagernet.org/configuration/dns/fakeip/ 里的内容就行。

fakaip 我自己是没有用的,因为有一些软件并不会进行 dns 查询获取 ip,比如 telegram,这种就得特殊处理,麻烦了。

akaagiao1 commented 1 year ago

ok,ok 感谢