修改dns实现方式,大幅度优化使用流程

This commit is contained in:
juewuy
2020-07-23 12:32:13 +08:00
parent bd27372fc8
commit 2a904d3d10
5 changed files with 42 additions and 41 deletions

View File

@@ -6,11 +6,17 @@ USE_PROCD=1
START=99
start_service() {
#创建clash后台进程
procd_open_instance
procd_set_param respawn
procd_set_param stderr 1
procd_set_param stdout 1
procd_set_param command /etc/clash/clash -d /etc/clash
procd_close_instance
#修改iptables规则使流量进入clash
iptables -I FORWARD -o utun -j ACCEPT
iptables -t nat -I PREROUTING -p udp --dport 53 -j REDIRECT --to 1053
}
stop_service() {
iptables -t nat -D PREROUTING -p udp --dport 53 -j REDIRECT --to 1053
}