diff --git a/README.md b/README.md
index 88ba651..c8af154 100644
--- a/README.md
+++ b/README.md
@@ -14,8 +14,8 @@ UA3F 是下一代 HTTP User-Agent 重写工具,作为一个 SOCKS5/TPROXY/REDI
@@ -90,7 +90,7 @@ sudo -u shellcrash /usr/bin/ua3f
- `-s`: 部分替换,仅替换正则匹配到的部分
-### Clash 配置建议
+## Clash 配置
Clash 与 UA3F 的配置部署教程详见:[UA3F 与 Clash 从零开始的部署教程](https://sunbk201public.notion.site/UA3F-Clash-16d60a7b5f0e457a9ee97a3be7cbf557?pvs=4)
diff --git a/openwrt/files/ua3f.init b/openwrt/files/ua3f.init
index 3debf0d..55efecb 100755
--- a/openwrt/files/ua3f.init
+++ b/openwrt/files/ua3f.init
@@ -32,7 +32,7 @@ nft_available() { command -v nft >/dev/null 2>&1; }
ipt_available() { command -v iptables >/dev/null 2>&1; }
detect_backend() {
if nft_available; then
- FW_BACKEND="ipt"
+ FW_BACKEND="nft"
return 0
fi
if ipt_available; then