Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

重启生效的问题 #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,15 @@ conf-dir=/etc/storage/dnsmasq, *.hosts
# 在 luci-网络-防火墙-自定义规则 下添加
ipset -R < /etc/config/dnsmasq/ad.ips
ipset -R < /etc/config/dnsmasq/gw.ips
ip rule add fwmark 1 table 100
ip route add default via 192.168.1.10 table 100
iptables -t filter -A INPUT -m set --match-set ad dst -j REJECT
iptables -t mangle -A PREROUTING -p tcp -m set --match-set gw dst -j MARK --set-mark 1

#在 系统(system) - 启动(startup) - 本地启动(localstartup) 中 添加
ip rule add fwmark 1 table 100
ip route add default via 192.168.1.10 table 100



# padavan
# 新建文件 /etc/storage/iptables.sh 内容如下:
#!/bin/sh
Expand Down