Skip to content

Commit

Permalink
删除新版全部节点灰色解决方法
Browse files Browse the repository at this point in the history
  • Loading branch information
xireiki committed Jan 5, 2024
1 parent 78a5c8d commit 7f239e8
Showing 1 changed file with 1 addition and 45 deletions.
46 changes: 1 addition & 45 deletions source/_posts/神秘模块详细教程.md
Original file line number Diff line number Diff line change
Expand Up @@ -721,48 +721,4 @@ cache_file and related fields in Clash API is deprecated in sing-box 1.8.0, use
原因可能是强制重启手机后导致 **appLables.json** 文件损坏,前往 **/data/adb/sfm/src** 删除这个文件后重新刷模块即可解决。

## 2024年之后的版本节点全灰如何解决?

### 本机使用
打开**/data/adb/sfm/src/baseConfig.hjson**,将 **auto_detect_interface**`true` 改为 `false`,这个选项直接搜索即可。

切换成 tproxy 模式,具体查看上方“神秘 TProxy 模式怎么开?”。

### 热点机使用
先关闭热点模式关闭核心

打开**/data/adb/sfm/src/baseConfig.hjson**,将 **auto_detect_interface**`true` 改为 `false`,这个选项直接搜索即可。

执行以下命令(全部以 root 身份执行)查看你的网卡名

Termux:
```bash
ip address | grep -w inet | grep -v 127
```

其他(ADB、MT管理器等):
```bash
/data/adb/magisk/busybox ip address | grep -w inet | grep -v 127 # Magisk

/data/adb/ksu/bin/busybox ip address | grep -w inet | grep -v 127 # KernelSU
```

比如我的是:
```bash
inet 10.10.0.0/30 scope global rmnet_data3
```

那我的网卡名就是 **rmnet_data3**

**auto_detect_interface** 下增加一行 **default_interface**,值就是你在第二步查的网卡名,像这样

```hjson
...
final: proxy
auto_detect_interface: false
default_interface: rmnet_data3
find_process: true
default_mark: 2333
...
```

最后!重载配置,启动!
请更新 202401060515 及之后的版本

0 comments on commit 7f239e8

Please sign in to comment.