vernesong / OpenClash

A Clash Client For OpenWrt
MIT License
15.74k stars 2.94k forks source link

[Bug] rule-set无法正常加载 #3830

Closed YunofHD closed 2 months ago

YunofHD commented 3 months ago

Verify Steps

OpenClash Version

v0.46.003-beta

Bug on Environment

Immortalwrt

OpenWrt Version

ImmortalWrt 21.02-SNAPSHOT r0-e1b4487

Bug on Platform

Linux-arm64

Describe the Bug

自定义了rule-set,如下所示,原本定义了Gemini相关rule-set,但是发现Gemini部分不生效,不走自定义的美国代理。

从yaml文件直接拷贝规则后生效

是我rule-set写法有问题,还是远程rule-provider格式有问题?本地目录rule-provider中yaml文件都已正常下载,内容正常。 image

To Reproduce

如上

OpenClash Log

OpenClash 调试日志

生成时间: 2024-03-31 12:07:23
插件版本: v0.46.003-beta
隐私提示: 上传此日志前请注意检查、屏蔽公网IP、节点、密码等相关敏感信息

===================== 系统信息 =====================

主机型号: TP-Link TL-XDR6088 固件版本: ImmortalWrt 21.02-SNAPSHOT r0-e1b4487 LuCI版本: git-20.074.84698-ead5e81 内核版本: 5.4.255 处理器架构: aarch64_cortex-a53

此项有值时,如不使用IPv6,建议到网络-接口-lan的设置中禁用IPV6的DHCP

IPV6-DHCP:

DNS劫持: Firewall 转发

DNS劫持为Dnsmasq时,此项结果应仅有配置文件的DNS监听地址

Dnsmasq转发设置:

===================== 依赖检查 =====================

dnsmasq-full: 已安装 coreutils: 已安装 coreutils-nohup: 已安装 bash: 已安装 curl: 已安装 ca-certificates: 已安装 ipset: 已安装 ip-full: 已安装 libcap: 已安装 libcap-bin: 已安装 ruby: 已安装 ruby-yaml: 已安装 ruby-psych: 已安装 ruby-pstore: 已安装 kmod-tun(TUN模式): 已安装 luci-compat(Luci >= 19.07): 已安装 kmod-inet-diag(PROCESS-NAME): 已安装 unzip: 已安装 iptables-mod-tproxy: 已安装 kmod-ipt-tproxy: 已安装 iptables-mod-extra: 已安装 kmod-ipt-extra: 已安装 kmod-ipt-nat: 已安装

===================== 内核检查 =====================

运行状态: 运行中 运行内核:Meta 进程pid: 15730 11985 运行权限: 15730: cap_dac_override,cap_net_bind_service,cap_net_admin,cap_net_raw,cap_sys_ptrace,cap_sys_resource=eip 11985: =ep 运行用户: nobody 已选择的架构: linux-arm64

下方无法显示内核版本号时请确认您的内核版本是否正确或者有无权限

Tun内核版本: Tun内核文件: 不存在 Tun内核运行权限: 否

Dev内核版本: v1.18.0-13-gd034a40 Dev内核文件: 存在 Dev内核运行权限: 正常

Meta内核版本: alpha-gfeedc9e Meta内核文件: 存在 Meta内核运行权限: 正常

===================== 插件设置 =====================

当前配置文件: /etc/openclash/config/XFSS-美日港新台-nodnsleak.yaml 启动配置文件: /etc/openclash/XFSS-美日港新台-nodnsleak.yaml 运行模式: fake-ip 默认代理模式: rule UDP流量转发(tproxy): 启用 自定义DNS: 启用 IPV6代理: 停用 IPV6-DNS解析: 停用 禁用Dnsmasq缓存: 停用 自定义规则: 启用 仅允许内网: 启用 仅代理命中规则流量: 停用 仅允许常用端口流量: 停用 绕过中国大陆IP: 停用 路由本机代理: 启用

启动异常时建议关闭此项后重试

混合节点: 停用 保留配置: 启用

启动异常时建议关闭此项后重试

第三方规则: 停用

===================== 自定义规则 一 =====================

script:

shortcuts:

Notice: The core timezone is UTC

CST 20:00-24:00 = time.now().hour > 12 and time.now().hour < 16

内核时区为UTC,故以下time.now()函数的取值需要根据本地时区进行转换

北京时间(CST) 20:00-24:00 = time.now().hour > 12 and time.now().hour < 16

quic: network == 'udp' and dst_port == 443 and (geoip(resolve_ip(host)) != 'CN' or geoip(dst_ip) != 'CN')

time-limit: in_cidr(src_ip,'192.168.1.2/32') and time.now().hour < 20 or time.now().hour > 21

time-limit: src_ip == '192.168.1.2' and time.now().hour < 20 or time.now().hour > 21

code: |

def main(ctx, metadata):

directkeywordlist = ["baidu"]

for directkeyword in directkeywordlist:

if directkeyword in metadata["host"]:

ctx.log('[Script] matched keyword %s use direct' % directkeyword)

return "DIRECT"

rules:

- SCRIPT,quic,REJECT #shortcuts rule

- SCRIPT,time-limit,REJECT #shortcuts rule

排序在上的规则优先生效,如添加(去除规则前的#号):

IP段:192.168.1.2-192.168.1.200 直连

- SRC-IP-CIDR,192.168.1.2/31,DIRECT

- SRC-IP-CIDR,192.168.1.4/30,DIRECT

- SRC-IP-CIDR,192.168.1.8/29,DIRECT

- SRC-IP-CIDR,192.168.1.16/28,DIRECT

- SRC-IP-CIDR,192.168.1.32/27,DIRECT

- SRC-IP-CIDR,192.168.1.64/26,DIRECT

- SRC-IP-CIDR,192.168.1.128/26,DIRECT

- SRC-IP-CIDR,192.168.1.192/29,DIRECT

- SRC-IP-CIDR,192.168.1.200/32,DIRECT

IP段:192.168.1.202-192.168.1.255 直连

- SRC-IP-CIDR,192.168.1.202/31,DIRECT

- SRC-IP-CIDR,192.168.1.204/30,DIRECT

- SRC-IP-CIDR,192.168.1.208/28,DIRECT

- SRC-IP-CIDR,192.168.1.224/27,DIRECT

此时IP为192.168.1.1和192.168.1.201的客户端流量走代理(策略),其余客户端不走代理

因为Fake-IP模式下,IP地址为192.168.1.1的路由器自身流量可走代理(策略),所以需要排除

仅设置路由器自身直连:

- SRC-IP-CIDR,192.168.1.1/32,DIRECT

- SRC-IP-CIDR,198.18.0.1/32,DIRECT

DDNS

- DOMAIN-SUFFIX,checkip.dyndns.org,DIRECT

- DOMAIN-SUFFIX,checkipv6.dyndns.org,DIRECT

- DOMAIN-SUFFIX,checkip.synology.com,DIRECT

- DOMAIN-SUFFIX,ifconfig.co,DIRECT

- DOMAIN-SUFFIX,api.myip.com,DIRECT

- DOMAIN-SUFFIX,ip-api.com,DIRECT

- DOMAIN-SUFFIX,ipapi.co,DIRECT

- DOMAIN-SUFFIX,ip6.seeip.org,DIRECT

- DOMAIN-SUFFIX,members.3322.org,DIRECT

在线IP段转CIDR地址:http://ip2cidr.com

===================== 自定义规则 二 =====================

script:

shortcuts:

common_port: dst_port not in [21, 22, 23, 53, 80, 123, 143, 194, 443, 465, 587, 853, 993, 995, 998, 2052, 2053, 2082, 2083, 2086, 2095, 2096, 5222, 5228, 5229, 5230, 8080, 8443, 8880, 8888, 8889]

code: |

def main(ctx, metadata):

directkeywordlist = ["baidu"]

for directkeyword in directkeywordlist:

if directkeyword in metadata["host"]:

ctx.log('[Script] matched keyword %s use direct' % directkeyword)

return "DIRECT"

rules:

- SCRIPT,common_port,DIRECT #shortcuts rule

===================== 配置文件 =====================

mixed-port: 7893 allow-lan: true bind-address: "*" mode: rule log-level: info external-controller: 0.0.0.0:9090 dns: enable: true ipv6: false default-nameserver:

===================== 自定义覆写设置 =====================

!/bin/sh

. /usr/share/openclash/ruby.sh . /usr/share/openclash/log.sh . /lib/functions.sh

This script is called by /etc/init.d/openclash

Add your custom overwrite scripts here, they will be take effict after the OpenClash own srcipts

LOG_OUT "Tip: Start Running Custom Overwrite Scripts..." LOGTIME=$(echo $(date "+%Y-%m-%d %H:%M:%S")) LOG_FILE="/tmp/openclash.log" CONFIG_FILE="$1" #config path

Simple Demo:

#General Demo
#1--config path
#2--key name
#3--value
#ruby_edit "$CONFIG_FILE" "['redir-port']" "7892"
#ruby_edit "$CONFIG_FILE" "['secret']" "123456"
#ruby_edit "$CONFIG_FILE" "['dns']['enable']" "true"

#Hash Demo
#1--config path
#2--key name
#3--hash type value
#ruby_edit "$CONFIG_FILE" "['experimental']" "{'sniff-tls-sni'=>true}"
#ruby_edit "$CONFIG_FILE" "['sniffer']" "{'sniffing'=>['tls','http']}"

#Array Demo:
#1--config path
#2--key name
#3--position(start from 0, end with -1)
#4--value
#ruby_arr_insert "$CONFIG_FILE" "['dns']['nameserver']" "0" "114.114.114.114"

#Array Add From Yaml File Demo:
#1--config path
#2--key name
#3--position(start from 0, end with -1)
#4--value file path
#5--value key name in #4 file
#ruby_arr_add_file "$CONFIG_FILE" "['dns']['fallback-filter']['ipcidr']" "0" "/etc/openclash/custom/openclash_custom_fallback_filter.yaml" "['fallback-filter']['ipcidr']"

Ruby Script Demo:

#ruby -ryaml -rYAML -I "/usr/share/openclash" -E UTF-8 -e "
#   begin
#      Value = YAML.load_file('$CONFIG_FILE');
#   rescue Exception => e
#      puts '${LOGTIME} Error: Load File Failed,【' + e.message + '】';
#   end;

    #General
#   begin
#   Thread.new{
#      Value['redir-port']=7892;
#      Value['tproxy-port']=7895;
#      Value['port']=7890;
#      Value['socks-port']=7891;
#      Value['mixed-port']=7893;
#   }.join;

#   rescue Exception => e
#      puts '${LOGTIME} Error: Set General Failed,【' + e.message + '】';
#   ensure
#      File.open('$CONFIG_FILE','w') {|f| YAML.dump(Value, f)};
#   end" 2>/dev/null >> $LOG_FILE

exit 0

===================== 自定义防火墙设置 =====================

!/bin/sh

. /usr/share/openclash/log.sh . /lib/functions.sh

This script is called by /etc/init.d/openclash

Add your custom firewall rules here, they will be added after the end of the OpenClash iptables rules

LOG_OUT "Tip: Start Add Custom Firewall Rules..."

exit 0

===================== IPTABLES 防火墙设置 =====================

IPv4 NAT chain

Generated by iptables-save v1.8.7 on Sun Mar 31 12:07:26 2024

nat :PREROUTING ACCEPT [219:23930] :INPUT ACCEPT [276:22576] :OUTPUT ACCEPT [74:9328] :POSTROUTING ACCEPT [1:60] :MINIUPNPD - [0:0] :MINIUPNPD-POSTROUTING - [0:0] :openclash - [0:0] :openclash_dns_redirect - [0:0] :openclash_output - [0:0] :postrouting_lan_rule - [0:0] :postrouting_rule - [0:0] :postrouting_wan2_rule - [0:0] :postrouting_wan_rule - [0:0] :prerouting_lan_rule - [0:0] :prerouting_rule - [0:0] :prerouting_wan2_rule - [0:0] :prerouting_wan_rule - [0:0] :zone_lan_postrouting - [0:0] :zone_lan_prerouting - [0:0] :zone_wan2_postrouting - [0:0] :zone_wan2_prerouting - [0:0] :zone_wan_postrouting - [0:0] :zone_wan_prerouting - [0:0] -A PREROUTING -d 8.8.4.4/32 -p tcp -m comment --comment "OpenClash Google DNS Hijack" -m tcp --dport 53 -j REDIRECT --to-ports 7892 -A PREROUTING -d 8.8.8.8/32 -p tcp -m comment --comment "OpenClash Google DNS Hijack" -m tcp --dport 53 -j REDIRECT --to-ports 7892 -A PREROUTING -p tcp -m tcp --dport 53 -j openclash_dns_redirect -A PREROUTING -p udp -m udp --dport 53 -j openclash_dns_redirect -A PREROUTING -m comment --comment "!fw3: Custom prerouting rule chain" -j prerouting_rule -A PREROUTING -i br-lan -m comment --comment "!fw3" -j zone_lan_prerouting -A PREROUTING -i utun -m comment --comment "!fw3" -j zone_lan_prerouting -A PREROUTING -i pppoe-wan -m comment --comment "!fw3" -j zone_wan_prerouting -A PREROUTING -i lan2 -m comment --comment "!fw3" -j zone_wan_prerouting -A PREROUTING -p udp -m comment --comment DNSMASQ -m udp --dport 53 -j REDIRECT --to-ports 53 -A PREROUTING -p tcp -j openclash -A OUTPUT -d 127.0.0.1/32 -p tcp -m tcp --dport 53 -m owner ! --uid-owner 65534 -m comment --comment "OpenClash DNS Hijack" -j REDIRECT --to-ports 7874 -A OUTPUT -d 127.0.0.1/32 -p udp -m udp --dport 53 -m owner ! --uid-owner 65534 -m comment --comment "OpenClash DNS Hijack" -j REDIRECT --to-ports 7874 -A OUTPUT -j openclash_output -A POSTROUTING -m comment --comment "!fw3: Custom postrouting rule chain" -j postrouting_rule -A POSTROUTING -o br-lan -m comment --comment "!fw3" -j zone_lan_postrouting -A POSTROUTING -o utun -m comment --comment "!fw3" -j zone_lan_postrouting -A POSTROUTING -o pppoe-wan -m comment --comment "!fw3" -j zone_wan_postrouting -A POSTROUTING -o lan2 -m comment --comment "!fw3" -j zone_wan_postrouting -A MINIUPNPD -p udp -m udp --dport 8030 -j DNAT --to-destination 192.168.0.120:8030 -A MINIUPNPD -p udp -m udp --dport 8567 -j DNAT --to-destination 192.168.0.120:8567 -A MINIUPNPD -p udp -m udp --dport 8408 -j DNAT --to-destination 192.168.0.120:8408 -A MINIUPNPD -p udp -m udp --dport 8918 -j DNAT --to-destination 192.168.0.120:8567 -A MINIUPNPD -p udp -m udp --dport 58815 -j DNAT --to-destination 192.168.0.180:58815 -A MINIUPNPD-POSTROUTING -s 192.168.0.120/32 -p udp -m udp --sport 8567 -j MASQUERADE --to-ports 8918 -A openclash -m set --match-set localnetwork dst -j RETURN -A openclash -d 198.18.0.0/16 -p tcp -j REDIRECT --to-ports 7892 -A openclash -m set --match-set lan_ac_black_ips src -j RETURN -A openclash -p tcp -j REDIRECT --to-ports 7892 -A openclash_dns_redirect -p udp -m udp --dport 53 -m set ! --match-set lan_ac_black_ips src -m comment --comment "OpenClash DNS Hijack" -j REDIRECT --to-ports 7874 -A openclash_dns_redirect -p tcp -m tcp --dport 53 -m set ! --match-set lan_ac_black_ips src -m comment --comment "OpenClash DNS Hijack" -j REDIRECT --to-ports 7874 -A openclash_output -s 192.168.0.203/32 -p tcp -m tcp --sport 54806 -j RETURN -A openclash_output -s 192.168.0.203/32 -p tcp -m tcp --sport 54906 -j RETURN -A openclash_output -s 192.168.0.203/32 -p tcp -m tcp --sport 54906 -j RETURN -A openclash_output -s 192.168.0.203/32 -p tcp -m tcp --sport 54806 -j RETURN -A openclash_output -d 198.18.0.0/16 -p tcp -m owner ! --uid-owner 65534 -j REDIRECT --to-ports 7892 -A openclash_output -m set --match-set localnetwork dst -j RETURN -A openclash_output -p tcp -m owner ! --uid-owner 65534 -j REDIRECT --to-ports 7892 -A zone_lan_postrouting -m comment --comment "!fw3: Custom lan postrouting rule chain" -j postrouting_lan_rule -A zone_lan_postrouting -s 192.168.0.0/24 -d 192.168.0.203/32 -p tcp -m tcp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT (reflection)" -j SNAT --to-source 192.168.0.1 -A zone_lan_postrouting -s 192.168.0.0/24 -d 192.168.0.203/32 -p udp -m udp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT (reflection)" -j SNAT --to-source 192.168.0.1 -A zone_lan_postrouting -s 192.168.0.0/24 -d 192.168.0.203/32 -p tcp -m tcp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT (reflection)" -j SNAT --to-source 192.168.0.1 -A zone_lan_postrouting -s 192.168.0.0/24 -d 192.168.0.203/32 -p udp -m udp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT (reflection)" -j SNAT --to-source 192.168.0.1 -A zone_lan_postrouting -s 192.168.0.0/24 -d 192.168.0.203/32 -p tcp -m tcp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT-wan2 (reflection)" -j SNAT --to-source 192.168.0.1 -A zone_lan_postrouting -s 192.168.0.0/24 -d 192.168.0.203/32 -p udp -m udp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT-wan2 (reflection)" -j SNAT --to-source 192.168.0.1 -A zone_lan_postrouting -s 192.168.0.0/24 -d 192.168.0.203/32 -p tcp -m tcp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT-wan2 (reflection)" -j SNAT --to-source 192.168.0.1 -A zone_lan_postrouting -s 192.168.0.0/24 -d 192.168.0.203/32 -p udp -m udp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT-wan2 (reflection)" -j SNAT --to-source 192.168.0.1 -A zone_lan_prerouting -m comment --comment "!fw3: Custom lan prerouting rule chain" -j prerouting_lan_rule -A zone_lan_prerouting -s 192.168.0.0/24 -d WAN IP.234/32 -p tcp -m tcp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT (reflection)" -j DNAT --to-destination 192.168.0.203:54806 -A zone_lan_prerouting -s 192.168.0.0/24 -d WAN IP.234/32 -p udp -m udp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT (reflection)" -j DNAT --to-destination 192.168.0.203:54806 -A zone_lan_prerouting -s 192.168.0.0/24 -d 192.168.71.43/32 -p tcp -m tcp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT (reflection)" -j DNAT --to-destination 192.168.0.203:54806 -A zone_lan_prerouting -s 192.168.0.0/24 -d 192.168.71.43/32 -p udp -m udp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT (reflection)" -j DNAT --to-destination 192.168.0.203:54806 -A zone_lan_prerouting -s 192.168.0.0/24 -d WAN IP.234/32 -p tcp -m tcp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT (reflection)" -j DNAT --to-destination 192.168.0.203:54906 -A zone_lan_prerouting -s 192.168.0.0/24 -d WAN IP.234/32 -p udp -m udp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT (reflection)" -j DNAT --to-destination 192.168.0.203:54906 -A zone_lan_prerouting -s 192.168.0.0/24 -d 192.168.71.43/32 -p tcp -m tcp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT (reflection)" -j DNAT --to-destination 192.168.0.203:54906 -A zone_lan_prerouting -s 192.168.0.0/24 -d 192.168.71.43/32 -p udp -m udp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT (reflection)" -j DNAT --to-destination 192.168.0.203:54906 -A zone_lan_prerouting -s 192.168.0.0/24 -d WAN IP.234/32 -p tcp -m tcp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT-wan2 (reflection)" -j DNAT --to-destination 192.168.0.203:54906 -A zone_lan_prerouting -s 192.168.0.0/24 -d WAN IP.234/32 -p udp -m udp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT-wan2 (reflection)" -j DNAT --to-destination 192.168.0.203:54906 -A zone_lan_prerouting -s 192.168.0.0/24 -d 192.168.71.43/32 -p tcp -m tcp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT-wan2 (reflection)" -j DNAT --to-destination 192.168.0.203:54906 -A zone_lan_prerouting -s 192.168.0.0/24 -d 192.168.71.43/32 -p udp -m udp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT-wan2 (reflection)" -j DNAT --to-destination 192.168.0.203:54906 -A zone_lan_prerouting -s 192.168.0.0/24 -d WAN IP.234/32 -p tcp -m tcp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT-wan2 (reflection)" -j DNAT --to-destination 192.168.0.203:54806 -A zone_lan_prerouting -s 192.168.0.0/24 -d WAN IP*.234/32 -p udp -m udp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT-wan2 (reflection)" -j DNAT --to-destination 192.168.0.203:54806 -A zone_lan_prerouting -s 192.168.0.0/24 -d 192.168.71.43/32 -p tcp -m tcp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT-wan2 (reflection)" -j DNAT --to-destination 192.168.0.203:54806 -A zone_lan_prerouting -s 192.168.0.0/24 -d 192.168.71.43/32 -p udp -m udp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT-wan2 (reflection)" -j DNAT --to-destination 192.168.0.203:54806 -A zone_wan2_postrouting -m comment --comment "!fw3: Custom wan2 postrouting rule chain" -j postrouting_wan2_rule -A zone_wan2_prerouting -m comment --comment "!fw3: Custom wan2 prerouting rule chain" -j prerouting_wan2_rule -A zone_wan_postrouting -m comment --comment "!fw3: Custom wan postrouting rule chain" -j postrouting_wan_rule -A zone_wan_postrouting -j MINIUPNPD-POSTROUTING -A zone_wan_postrouting -m comment --comment "!fw3" -j FULLCONENAT -A zone_wan_prerouting -m comment --comment "!fw3: Custom wan prerouting rule chain" -j prerouting_wan_rule -A zone_wan_prerouting -p tcp -m tcp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT" -j DNAT --to-destination 192.168.0.203:54806 -A zone_wan_prerouting -p udp -m udp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT" -j DNAT --to-destination 192.168.0.203:54806 -A zone_wan_prerouting -p tcp -m tcp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT" -j DNAT --to-destination 192.168.0.203:54906 -A zone_wan_prerouting -p udp -m udp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT" -j DNAT --to-destination 192.168.0.203:54906 -A zone_wan_prerouting -p tcp -m tcp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT-wan2" -j DNAT --to-destination 192.168.0.203:54906 -A zone_wan_prerouting -p udp -m udp --dport 54906 -m comment --comment "!fw3: qbittorrent-PT-wan2" -j DNAT --to-destination 192.168.0.203:54906 -A zone_wan_prerouting -p tcp -m tcp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT-wan2" -j DNAT --to-destination 192.168.0.203:54806 -A zone_wan_prerouting -p udp -m udp --dport 54806 -m comment --comment "!fw3: qbittorrent-BT-wan2" -j DNAT --to-destination 192.168.0.203:54806 -A zone_wan_prerouting -m comment --comment "!fw3" -j FULLCONENAT -A zone_wan_prerouting -j MINIUPNPD COMMIT

Completed on Sun Mar 31 12:07:26 2024

IPv4 Mangle chain

Generated by iptables-save v1.8.7 on Sun Mar 31 12:07:26 2024

mangle :PREROUTING ACCEPT [26411:12949152] :INPUT ACCEPT [16903:8878709] :FORWARD ACCEPT [9536:4075316] :OUTPUT ACCEPT [16098:9284913] :POSTROUTING ACCEPT [25352:13328466] :RRDIPT_FORWARD - [0:0] :RRDIPT_INPUT - [0:0] :RRDIPT_OUTPUT - [0:0] :eqos - [0:0] :openclash - [0:0] :openclash_output - [0:0] :openclash_upnp - [0:0] -A PREROUTING -i br-lan -m conntrack --ctstate NEW -m statistic --mode nth --every 2 --packet 0 -j CONNMARK --set-xmark 0x14/0xffffffff -A PREROUTING -i br-lan -m connmark --mark 0x14 -j MARK --set-xmark 0x14/0xffffffff -A PREROUTING -i br-lan -m conntrack --ctstate NEW -m statistic --mode nth --every 2 --packet 1 -j CONNMARK --set-xmark 0x15/0xffffffff -A PREROUTING -i br-lan -m connmark --mark 0x15 -j MARK --set-xmark 0x15/0xffffffff -A PREROUTING -d WAN IP*.0/24 -m conntrack --ctstate NEW -j MARK --set-xmark 0x14/0xffffffff -A PREROUTING -d 192.168.71.0/24 -m conntrack --ctstate NEW -j MARK --set-xmark 0x15/0xffffffff -A PREROUTING -p tcp -m tcp --dport 443 -m conntrack --ctstate NEW -j MARK --set-xmark 0x14/0xffffffff -A PREROUTING -p udp -m udp --dport 443 -m conntrack --ctstate NEW -j MARK --set-xmark 0x14/0xffffffff -A PREROUTING -i br-lan -m conntrack --ctstate RELATED,ESTABLISHED -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff -A PREROUTING -p udp -j openclash -A INPUT -j RRDIPT_INPUT -A FORWARD -j RRDIPT_FORWARD -A FORWARD -i br-lan -j DSCP --set-dscp 0x00 -A FORWARD -o br-lan -j DSCP --set-dscp 0x00 -A FORWARD -j eqos -A FORWARD -o pppoe-wan -p tcp -m tcp --tcp-flags SYN,RST SYN -m comment --comment "!fw3: Zone wan MTU fixing" -j TCPMSS --clamp-mss-to-pmtu -A FORWARD -i pppoe-wan -p tcp -m tcp --tcp-flags SYN,RST SYN -m comment --comment "!fw3: Zone wan MTU fixing" -j TCPMSS --clamp-mss-to-pmtu -A FORWARD -o lan2 -p tcp -m tcp --tcp-flags SYN,RST SYN -m comment --comment "!fw3: Zone wan MTU fixing" -j TCPMSS --clamp-mss-to-pmtu -A FORWARD -i lan2 -p tcp -m tcp --tcp-flags SYN,RST SYN -m comment --comment "!fw3: Zone wan MTU fixing" -j TCPMSS --clamp-mss-to-pmtu -A OUTPUT -j RRDIPT_OUTPUT -A OUTPUT -p udp -j openclash_output -A POSTROUTING -m conntrack --ctstate NEW -j CONNMARK --save-mark --nfmask 0xffffffff --ctmask 0xffffffff -A RRDIPT_FORWARD -s 192.168.0.143/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.143/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.158/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.158/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.71.1/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.71.1/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.203/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.203/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.204/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.204/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.206/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.206/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.207/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.207/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.151/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.151/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.152/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.152/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.209/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.209/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.129/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.129/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.236/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.236/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.159/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.159/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.189/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.189/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.205/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.205/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.109/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.109/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.119/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.119/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.229/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.229/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.184/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.184/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.200/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.200/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.202/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.202/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.120/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.120/32 -j RETURN -A RRDIPT_FORWARD -s 192.168.0.180/32 -j RETURN -A RRDIPT_FORWARD -d 192.168.0.180/32 -j RETURN -A RRDIPT_INPUT -i eth0 -j RETURN -A RRDIPT_INPUT -i br-lan -j RETURN -A RRDIPT_INPUT -i pppoe-wan -j RETURN -A RRDIPT_OUTPUT -o eth0 -j RETURN -A RRDIPT_OUTPUT -o br-lan -j RETURN -A RRDIPT_OUTPUT -o pppoe-wan -j RETURN -A openclash -p udp -m udp --sport 500 -j RETURN -A openclash -p udp -m udp --sport 68 -j RETURN -A openclash -s 192.168.0.203/32 -p udp -m udp --sport 54806 -j RETURN -A openclash -s 192.168.0.203/32 -p udp -m udp --sport 54906 -j RETURN -A openclash -s 192.168.0.203/32 -p udp -m udp --sport 54906 -j RETURN -A openclash -s 192.168.0.203/32 -p udp -m udp --sport 54806 -j RETURN -A openclash -i lo -j RETURN -A openclash -m set --match-set localnetwork dst -j RETURN -A openclash -p udp -m udp --dport 53 -j RETURN -A openclash -d 198.18.0.0/16 -p udp -j TPROXY --on-port 7895 --on-ip 0.0.0.0 --tproxy-mark 0x162/0xffffffff -A openclash -m set --match-set lan_ac_black_ips src -j RETURN -A openclash -p udp -j openclash_upnp -A openclash -p udp -j TPROXY --on-port 7895 --on-ip 0.0.0.0 --tproxy-mark 0x162/0xffffffff -A openclash_output -p udp -m udp --sport 500 -j RETURN -A openclash_output -p udp -m udp --sport 68 -j RETURN -A openclash_output -s 192.168.0.203/32 -p udp -m udp --sport 54806 -j RETURN -A openclash_output -s 192.168.0.203/32 -p udp -m udp --sport 54906 -j RETURN -A openclash_output -s 192.168.0.203/32 -p udp -m udp --sport 54906 -j RETURN -A openclash_output -s 192.168.0.203/32 -p udp -m udp --sport 54806 -j RETURN -A openclash_output -d 198.18.0.0/16 -p udp -m owner ! --uid-owner 65534 -j MARK --set-xmark 0x162/0xffffffff -A openclash_upnp -s 192.168.0.120/32 -p udp -m udp --sport 8030 -j RETURN -A openclash_upnp -s 192.168.0.120/32 -p udp -m udp --sport 8567 -j RETURN -A openclash_upnp -s 192.168.0.120/32 -p udp -m udp --sport 8030 -j RETURN -A openclash_upnp -s 192.168.0.120/32 -p udp -m udp --sport 8568 -j RETURN -A openclash_upnp -s 192.168.0.120/32 -p udp -m udp --sport 8408 -j RETURN -A openclash_upnp -s 192.168.0.180/32 -p udp -m udp --sport 58815 -j RETURN COMMIT

Completed on Sun Mar 31 12:07:26 2024

IPv4 Filter chain

Generated by iptables-save v1.8.7 on Sun Mar 31 12:07:26 2024

*filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :MINIUPNPD - [0:0] :forwarding_lan_rule - [0:0] :forwarding_rule - [0:0] :forwarding_wan2_rule - [0:0] :forwarding_wan_rule - [0:0] :input_lan_rule - [0:0] :input_rule - [0:0] :input_wan2_rule - [0:0] :input_wan_rule - [0:0] :openclash_wan_input - [0:0] :output_lan_rule - [0:0] :output_rule - [0:0] :output_wan2_rule - [0:0] :output_wan_rule - [0:0] :reject - [0:0] :syn_flood - [0:0] :zone_lan_dest_ACCEPT - [0:0] :zone_lan_forward - [0:0] :zone_lan_input - [0:0] :zone_lan_output - [0:0] :zone_lan_src_ACCEPT - [0:0] :zone_wan2_dest_ACCEPT - [0:0] :zone_wan2_dest_REJECT - [0:0] :zone_wan2_forward - [0:0] :zone_wan2_input - [0:0] :zone_wan2_output - [0:0] :zone_wan2_src_ACCEPT - [0:0] :zone_wan_dest_ACCEPT - [0:0] :zone_wan_dest_REJECT - [0:0] :zone_wan_forward - [0:0] :zone_wan_input - [0:0] :zone_wan_output - [0:0] :zone_wan_src_REJECT - [0:0] -A INPUT -p udp -m udp --dport 443 -m comment --comment "OpenClash QUIC REJECT" -m set ! --match-set china_ip_route dst -j REJECT --reject-with icmp-port-unreachable -A INPUT -i lan2 -m set ! --match-set localnetwork src -j openclash_wan_input -A INPUT -i pppoe-wan -m set ! --match-set localnetwork src -j openclash_wan_input -A INPUT -i lo -m comment --comment "!fw3" -j ACCEPT -A INPUT -m comment --comment "!fw3: Custom input rule chain" -j input_rule -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -m comment --comment "!fw3" -j ACCEPT -A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -m comment --comment "!fw3" -j syn_flood -A INPUT -i br-lan -m comment --comment "!fw3" -j zone_lan_input -A INPUT -i utun -m comment --comment "!fw3" -j zone_lan_input -A INPUT -i pppoe-wan -m comment --comment "!fw3" -j zone_wan_input -A INPUT -i lan2 -m comment --comment "!fw3" -j zone_wan_input -A FORWARD -m comment --comment "!fw3: Custom forwarding rule chain" -j forwarding_rule -A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -m comment --comment "!fw3" -j ACCEPT -A FORWARD -i br-lan -m comment --comment "!fw3" -j zone_lan_forward -A FORWARD -i utun -m comment --comment "!fw3" -j zone_lan_forward -A FORWARD -i pppoe-wan -m comment --comment "!fw3" -j zone_wan_forward -A FORWARD -i lan2 -m comment --comment "!fw3" -j zone_wan_forward -A OUTPUT -o lo -m comment --comment "!fw3" -j ACCEPT -A OUTPUT -m comment --comment "!fw3: Custom output rule chain" -j output_rule -A OUTPUT -m conntrack --ctstate RELATED,ESTABLISHED -m comment --comment "!fw3" -j ACCEPT -A OUTPUT -o br-lan -m comment --comment "!fw3" -j zone_lan_output -A OUTPUT -o utun -m comment --comment "!fw3" -j zone_lan_output -A OUTPUT -o pppoe-wan -m comment --comment "!fw3" -j zone_wan_output -A OUTPUT -o lan2 -m comment --comment "!fw3" -j zone_wan_output -A MINIUPNPD -d 192.168.0.120/32 -p udp -m udp --dport 8030 -j ACCEPT -A MINIUPNPD -d 192.168.0.120/32 -p udp -m udp --dport 8567 -j ACCEPT -A MINIUPNPD -d 192.168.0.120/32 -p udp -m udp --dport 8408 -j ACCEPT -A MINIUPNPD -d 192.168.0.120/32 -p udp -m udp --dport 8567 -j ACCEPT -A MINIUPNPD -d 192.168.0.180/32 -p udp -m udp --dport 58815 -j ACCEPT -A openclash_wan_input -p udp -m multiport --dports 7892,7895,9090,7890,7891,7893,7874 -j REJECT --reject-with icmp-port-unreachable -A openclash_wan_input -p tcp -m multiport --dports 7892,7895,9090,7890,7891,7893,7874 -j REJECT --reject-with icmp-port-unreachable -A reject -p tcp -m comment --comment "!fw3" -j REJECT --reject-with tcp-reset -A reject -m comment --comment "!fw3" -j REJECT --reject-with icmp-port-unreachable -A syn_flood -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -m limit --limit 25/sec --limit-burst 50 -m comment --comment "!fw3" -j RETURN -A syn_flood -m comment --comment "!fw3" -j DROP -A zone_lan_dest_ACCEPT -o br-lan -m comment --comment "!fw3" -j ACCEPT -A zone_lan_dest_ACCEPT -o utun -m comment --comment "!fw3" -j ACCEPT -A zone_lan_forward -m comment --comment "!fw3: Custom lan forwarding rule chain" -j forwarding_lan_rule -A zone_lan_forward -m comment --comment "!fw3: Zone lan to wan forwarding policy" -j zone_wan_dest_ACCEPT -A zone_lan_forward -m comment --comment "!fw3: Zone lan to wan2 forwarding policy" -j zone_wan2_dest_ACCEPT -A zone_lan_forward -m conntrack --ctstate DNAT -m comment --comment "!fw3: Accept port forwards" -j ACCEPT -A zone_lan_forward -m comment --comment "!fw3" -j zone_lan_dest_ACCEPT -A zone_lan_input -m comment --comment "!fw3: Custom lan input rule chain" -j input_lan_rule -A zone_lan_input -m conntrack --ctstate DNAT -m comment --comment "!fw3: Accept port redirections" -j ACCEPT -A zone_lan_input -m comment --comment "!fw3" -j zone_lan_src_ACCEPT -A zone_lan_output -m comment --comment "!fw3: Custom lan output rule chain" -j output_lan_rule -A zone_lan_output -m comment --comment "!fw3" -j zone_lan_dest_ACCEPT -A zone_lan_src_ACCEPT -i br-lan -m conntrack --ctstate NEW,UNTRACKED -m comment --comment "!fw3" -j ACCEPT -A zone_lan_src_ACCEPT -i utun -m conntrack --ctstate NEW,UNTRACKED -m comment --comment "!fw3" -j ACCEPT -A zone_wan2_forward -m comment --comment "!fw3: Custom wan2 forwarding rule chain" -j forwarding_wan2_rule -A zone_wan2_forward -m conntrack --ctstate DNAT -m comment --comment "!fw3: Accept port forwards" -j ACCEPT -A zone_wan2_forward -m comment --comment "!fw3" -j zone_wan2_dest_REJECT -A zone_wan2_input -m comment --comment "!fw3: Custom wan2 input rule chain" -j input_wan2_rule -A zone_wan2_input -m conntrack --ctstate DNAT -m comment --comment "!fw3: Accept port redirections" -j ACCEPT -A zone_wan2_input -m comment --comment "!fw3" -j zone_wan2_src_ACCEPT -A zone_wan2_output -m comment --comment "!fw3: Custom wan2 output rule chain" -j output_wan2_rule -A zone_wan2_output -m comment --comment "!fw3" -j zone_wan2_dest_ACCEPT -A zone_wan_dest_ACCEPT -o pppoe-wan -m conntrack --ctstate INVALID -m comment --comment "!fw3: Prevent NAT leakage" -j DROP -A zone_wan_dest_ACCEPT -o pppoe-wan -m comment --comment "!fw3" -j ACCEPT -A zone_wan_dest_ACCEPT -o lan2 -m conntrack --ctstate INVALID -m comment --comment "!fw3: Prevent NAT leakage" -j DROP -A zone_wan_dest_ACCEPT -o lan2 -m comment --comment "!fw3" -j ACCEPT -A zone_wan_dest_REJECT -o pppoe-wan -m comment --comment "!fw3" -j reject -A zone_wan_dest_REJECT -o lan2 -m comment --comment "!fw3" -j reject -A zone_wan_forward -m comment --comment "!fw3: Custom wan forwarding rule chain" -j forwarding_wan_rule -A zone_wan_forward -p esp -m comment --comment "!fw3: Allow-IPSec-ESP" -j zone_lan_dest_ACCEPT -A zone_wan_forward -p udp -m udp --dport 500 -m comment --comment "!fw3: Allow-ISAKMP" -j zone_lan_dest_ACCEPT -A zone_wan_forward -m conntrack --ctstate DNAT -m comment --comment "!fw3: Accept port forwards" -j ACCEPT -A zone_wan_forward -j MINIUPNPD -A zone_wan_forward -m comment --comment "!fw3" -j zone_wan_dest_REJECT -A zone_wan_input -m comment --comment "!fw3: Custom wan input rule chain" -j input_wan_rule -A zone_wan_input -p udp -m udp --dport 68 -m comment --comment "!fw3: Allow-DHCP-Renew" -j ACCEPT -A zone_wan_input -p icmp -m icmp --icmp-type 8 -m comment --comment "!fw3: Allow-Ping" -j ACCEPT -A zone_wan_input -p igmp -m comment --comment "!fw3: Allow-IGMP" -j ACCEPT -A zone_wan_input -m conntrack --ctstate DNAT -m comment --comment "!fw3: Accept port redirections" -j ACCEPT -A zone_wan_input -j MINIUPNPD -A zone_wan_input -m comment --comment "!fw3" -j zone_wan_src_REJECT -A zone_wan_output -m comment --comment "!fw3: Custom wan output rule chain" -j output_wan_rule -A zone_wan_output -m comment --comment "!fw3" -j zone_wan_dest_ACCEPT -A zone_wan_src_REJECT -i pppoe-wan -m comment --comment "!fw3" -j reject -A zone_wan_src_REJECT -i lan2 -m comment --comment "!fw3" -j reject COMMIT

Completed on Sun Mar 31 12:07:26 2024

IPv6 NAT chain

Generated by ip6tables-save v1.8.7 on Sun Mar 31 12:07:26 2024

*nat :PREROUTING ACCEPT [14518:3879636] :INPUT ACCEPT [33:5931] :OUTPUT ACCEPT [59:7656] :POSTROUTING ACCEPT [59:7656] -A PREROUTING -p udp -m comment --comment DNSMASQ -m udp --dport 53 -j REDIRECT --to-ports 53 COMMIT

Completed on Sun Mar 31 12:07:26 2024

IPv6 Mangle chain

Generated by ip6tables-save v1.8.7 on Sun Mar 31 12:07:26 2024

*mangle :PREROUTING ACCEPT [57:13674] :INPUT ACCEPT [11:2058] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [10:1954] :POSTROUTING ACCEPT [10:1954] :RRDIPT_FORWARD - [0:0] :RRDIPT_INPUT - [0:0] :RRDIPT_OUTPUT - [0:0] :eqos - [0:0] -A INPUT -j RRDIPT_INPUT -A FORWARD -j RRDIPT_FORWARD -A FORWARD -i br-lan -j DSCP --set-dscp 0x00 -A FORWARD -o br-lan -j DSCP --set-dscp 0x00 -A FORWARD -o pppoe-wan -p tcp -m tcp --tcp-flags SYN,RST SYN -m comment --comment "!fw3: Zone wan MTU fixing" -j TCPMSS --clamp-mss-to-pmtu -A FORWARD -i pppoe-wan -p tcp -m tcp --tcp-flags SYN,RST SYN -m comment --comment "!fw3: Zone wan MTU fixing" -j TCPMSS --clamp-mss-to-pmtu -A FORWARD -o lan2 -p tcp -m tcp --tcp-flags SYN,RST SYN -m comment --comment "!fw3: Zone wan MTU fixing" -j TCPMSS --clamp-mss-to-pmtu -A FORWARD -i lan2 -p tcp -m tcp --tcp-flags SYN,RST SYN -m comment --comment "!fw3: Zone wan MTU fixing" -j TCPMSS --clamp-mss-to-pmtu -A OUTPUT -j RRDIPT_OUTPUT -A RRDIPT_FORWARD -s fe80::2239:56ff:fe8a:442e/128 -j RETURN -A RRDIPT_FORWARD -d fe80::2239:56ff:fe8a:442e/128 -j RETURN -A RRDIPT_FORWARD -s fe80::100d:d17d:b48d:11b5/128 -j RETURN -A RRDIPT_FORWARD -d fe80::100d:d17d:b48d:11b5/128 -j RETURN -A RRDIPT_FORWARD -s fe80::144b:5db:63c1:595e/128 -j RETURN -A RRDIPT_FORWARD -d fe80::144b:5db:63c1:595e/128 -j RETURN -A RRDIPT_FORWARD -s fe80::5918:92cf:c419:d35a/128 -j RETURN -A RRDIPT_FORWARD -d fe80::5918:92cf:c419:d35a/128 -j RETURN -A RRDIPT_FORWARD -s fe80::44f:7cc9:26ef:11a/128 -j RETURN -A RRDIPT_FORWARD -d fe80::44f:7cc9:26ef:11a/128 -j RETURN -A RRDIPT_FORWARD -s fe80::3c2d:4490:d0c8:bd84/128 -j RETURN -A RRDIPT_FORWARD -d fe80::3c2d:4490:d0c8:bd84/128 -j RETURN -A RRDIPT_FORWARD -s fe80::ac80:779f:8385:80e9/128 -j RETURN -A RRDIPT_FORWARD -d fe80::ac80:779f:8385:80e9/128 -j RETURN -A RRDIPT_FORWARD -s fe80::105a:6cfa:5842:414c/128 -j RETURN -A RRDIPT_FORWARD -d fe80::105a:6cfa:5842:414c/128 -j RETURN -A RRDIPT_FORWARD -s fe80::d86e:26ff:fe26:bab9/128 -j RETURN -A RRDIPT_FORWARD -d fe80::d86e:26ff:fe26:bab9/128 -j RETURN -A RRDIPT_FORWARD -s fe80::1/128 -j RETURN -A RRDIPT_FORWARD -d fe80::1/128 -j RETURN -A RRDIPT_FORWARD -s fe80::ce3:692c:3168:89dc/128 -j RETURN -A RRDIPT_FORWARD -d fe80::ce3:692c:3168:89dc/128 -j RETURN -A RRDIPT_INPUT -i eth0 -j RETURN -A RRDIPT_INPUT -i br-lan -j RETURN -A RRDIPT_INPUT -i pppoe-wan -j RETURN -A RRDIPT_OUTPUT -o eth0 -j RETURN -A RRDIPT_OUTPUT -o br-lan -j RETURN -A RRDIPT_OUTPUT -o pppoe-wan -j RETURN COMMIT

Completed on Sun Mar 31 12:07:26 2024

IPv6 Filter chain

Generated by ip6tables-save v1.8.7 on Sun Mar 31 12:07:26 2024

*filter :INPUT ACCEPT [116:8352] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :MINIUPNPD - [0:0] :forwarding_lan_rule - [0:0] :forwarding_rule - [0:0] :forwarding_wan2_rule - [0:0] :forwarding_wan_rule - [0:0] :input_lan_rule - [0:0] :input_rule - [0:0] :input_wan2_rule - [0:0] :input_wan_rule - [0:0] :output_lan_rule - [0:0] :output_rule - [0:0] :output_wan2_rule - [0:0] :output_wan_rule - [0:0] :reject - [0:0] :syn_flood - [0:0] :zone_lan_dest_ACCEPT - [0:0] :zone_lan_forward - [0:0] :zone_lan_input - [0:0] :zone_lan_output - [0:0] :zone_lan_src_ACCEPT - [0:0] :zone_wan2_dest_ACCEPT - [0:0] :zone_wan2_dest_REJECT - [0:0] :zone_wan2_forward - [0:0] :zone_wan2_input - [0:0] :zone_wan2_output - [0:0] :zone_wan2_src_ACCEPT - [0:0] :zone_wan_dest_ACCEPT - [0:0] :zone_wan_dest_REJECT - [0:0] :zone_wan_forward - [0:0] :zone_wan_input - [0:0] :zone_wan_output - [0:0] :zone_wan_src_REJECT - [0:0] -A INPUT -i lo -m comment --comment "!fw3" -j ACCEPT -A INPUT -m comment --comment "!fw3: Custom input rule chain" -j input_rule -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -m comment --comment "!fw3" -j ACCEPT -A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -m comment --comment "!fw3" -j syn_flood -A INPUT -i br-lan -m comment --comment "!fw3" -j zone_lan_input -A INPUT -i utun -m comment --comment "!fw3" -j zone_lan_input -A INPUT -i pppoe-wan -m comment --comment "!fw3" -j zone_wan_input -A INPUT -i lan2 -m comment --comment "!fw3" -j zone_wan_input -A FORWARD -m comment --comment "!fw3: Custom forwarding rule chain" -j forwarding_rule -A FORWARD -m conntrack --ctstate RELATED,ESTABLISHED -m comment --comment "!fw3" -j ACCEPT -A FORWARD -i br-lan -m comment --comment "!fw3" -j zone_lan_forward -A FORWARD -i utun -m comment --comment "!fw3" -j zone_lan_forward -A FORWARD -i pppoe-wan -m comment --comment "!fw3" -j zone_wan_forward -A FORWARD -i lan2 -m comment --comment "!fw3" -j zone_wan_forward -A OUTPUT -o lo -m comment --comment "!fw3" -j ACCEPT -A OUTPUT -m comment --comment "!fw3: Custom output rule chain" -j output_rule -A OUTPUT -m conntrack --ctstate RELATED,ESTABLISHED -m comment --comment "!fw3" -j ACCEPT -A OUTPUT -o br-lan -m comment --comment "!fw3" -j zone_lan_output -A OUTPUT -o utun -m comment --comment "!fw3" -j zone_lan_output -A OUTPUT -o pppoe-wan -m comment --comment "!fw3" -j zone_wan_output -A OUTPUT -o lan2 -m comment --comment "!fw3" -j zone_wan_output -A reject -p tcp -m comment --comment "!fw3" -j REJECT --reject-with tcp-reset -A reject -m comment --comment "!fw3" -j REJECT --reject-with icmp6-port-unreachable -A syn_flood -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -m limit --limit 25/sec --limit-burst 50 -m comment --comment "!fw3" -j RETURN -A syn_flood -m comment --comment "!fw3" -j DROP -A zone_lan_dest_ACCEPT -o br-lan -m comment --comment "!fw3" -j ACCEPT -A zone_lan_dest_ACCEPT -o utun -m comment --comment "!fw3" -j ACCEPT -A zone_lan_forward -m comment --comment "!fw3: Custom lan forwarding rule chain" -j forwarding_lan_rule -A zone_lan_forward -m comment --comment "!fw3: Zone lan to wan forwarding policy" -j zone_wan_dest_ACCEPT -A zone_lan_forward -m comment --comment "!fw3: Zone lan to wan2 forwarding policy" -j zone_wan2_dest_ACCEPT -A zone_lan_forward -m comment --comment "!fw3" -j zone_lan_dest_ACCEPT -A zone_lan_input -m comment --comment "!fw3: Custom lan input rule chain" -j input_lan_rule -A zone_lan_input -m comment --comment "!fw3" -j zone_lan_src_ACCEPT -A zone_lan_output -m comment --comment "!fw3: Custom lan output rule chain" -j output_lan_rule -A zone_lan_output -m comment --comment "!fw3" -j zone_lan_dest_ACCEPT -A zone_lan_src_ACCEPT -i br-lan -m conntrack --ctstate NEW,UNTRACKED -m comment --comment "!fw3" -j ACCEPT -A zone_lan_src_ACCEPT -i utun -m conntrack --ctstate NEW,UNTRACKED -m comment --comment "!fw3" -j ACCEPT -A zone_wan2_forward -m comment --comment "!fw3: Custom wan2 forwarding rule chain" -j forwarding_wan2_rule -A zone_wan2_forward -m comment --comment "!fw3" -j zone_wan2_dest_REJECT -A zone_wan2_input -m comment --comment "!fw3: Custom wan2 input rule chain" -j input_wan2_rule -A zone_wan2_input -m comment --comment "!fw3" -j zone_wan2_src_ACCEPT -A zone_wan2_output -m comment --comment "!fw3: Custom wan2 output rule chain" -j output_wan2_rule -A zone_wan2_output -m comment --comment "!fw3" -j zone_wan2_dest_ACCEPT -A zone_wan_dest_ACCEPT -o pppoe-wan -m conntrack --ctstate INVALID -m comment --comment "!fw3: Prevent NAT leakage" -j DROP -A zone_wan_dest_ACCEPT -o pppoe-wan -m comment --comment "!fw3" -j ACCEPT -A zone_wan_dest_ACCEPT -o lan2 -m conntrack --ctstate INVALID -m comment --comment "!fw3: Prevent NAT leakage" -j DROP -A zone_wan_dest_ACCEPT -o lan2 -m comment --comment "!fw3" -j ACCEPT -A zone_wan_dest_REJECT -o pppoe-wan -m comment --comment "!fw3" -j reject -A zone_wan_dest_REJECT -o lan2 -m comment --comment "!fw3" -j reject -A zone_wan_forward -m comment --comment "!fw3: Custom wan forwarding rule chain" -j forwarding_wan_rule -A zone_wan_forward -p ipv6-icmp -m icmp6 --icmpv6-type 128 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Forward" -j ACCEPT -A zone_wan_forward -p ipv6-icmp -m icmp6 --icmpv6-type 129 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Forward" -j ACCEPT -A zone_wan_forward -p ipv6-icmp -m icmp6 --icmpv6-type 1 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Forward" -j ACCEPT -A zone_wan_forward -p ipv6-icmp -m icmp6 --icmpv6-type 2 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Forward" -j ACCEPT -A zone_wan_forward -p ipv6-icmp -m icmp6 --icmpv6-type 3 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Forward" -j ACCEPT -A zone_wan_forward -p ipv6-icmp -m icmp6 --icmpv6-type 4/0 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Forward" -j ACCEPT -A zone_wan_forward -p ipv6-icmp -m icmp6 --icmpv6-type 4/1 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Forward" -j ACCEPT -A zone_wan_forward -p esp -m comment --comment "!fw3: Allow-IPSec-ESP" -j zone_lan_dest_ACCEPT -A zone_wan_forward -p udp -m udp --dport 500 -m comment --comment "!fw3: Allow-ISAKMP" -j zone_lan_dest_ACCEPT -A zone_wan_forward -j MINIUPNPD -A zone_wan_forward -m comment --comment "!fw3" -j zone_wan_dest_REJECT -A zone_wan_input -m comment --comment "!fw3: Custom wan input rule chain" -j input_wan_rule -A zone_wan_input -p udp -m udp --dport 546 -m comment --comment "!fw3: Allow-DHCPv6" -j ACCEPT -A zone_wan_input -s fe80::/10 -p ipv6-icmp -m icmp6 --icmpv6-type 130/0 -m comment --comment "!fw3: Allow-MLD" -j ACCEPT -A zone_wan_input -s fe80::/10 -p ipv6-icmp -m icmp6 --icmpv6-type 131/0 -m comment --comment "!fw3: Allow-MLD" -j ACCEPT -A zone_wan_input -s fe80::/10 -p ipv6-icmp -m icmp6 --icmpv6-type 132/0 -m comment --comment "!fw3: Allow-MLD" -j ACCEPT -A zone_wan_input -s fe80::/10 -p ipv6-icmp -m icmp6 --icmpv6-type 143/0 -m comment --comment "!fw3: Allow-MLD" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 128 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 129 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 1 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 2 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 3 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 4/0 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 4/1 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 133 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 135 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 134 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -p ipv6-icmp -m icmp6 --icmpv6-type 136 -m limit --limit 1000/sec -m comment --comment "!fw3: Allow-ICMPv6-Input" -j ACCEPT -A zone_wan_input -j MINIUPNPD -A zone_wan_input -m comment --comment "!fw3" -j zone_wan_src_REJECT -A zone_wan_output -m comment --comment "!fw3: Custom wan output rule chain" -j output_wan_rule -A zone_wan_output -m comment --comment "!fw3" -j zone_wan_dest_ACCEPT -A zone_wan_src_REJECT -i pppoe-wan -m comment --comment "!fw3" -j reject -A zone_wan_src_REJECT -i lan2 -m comment --comment "!fw3" -j reject COMMIT

Completed on Sun Mar 31 12:07:26 2024

===================== IPSET状态 =====================

Name: lan_ac_black_ips Type: hash:net Revision: 6 Header: family inet hashsize 1024 maxelem 65536 Size in memory: 512 References: 4 Number of entries: 1

Name: lan_ac_black_ipv6s Type: hash:net Revision: 6 Header: family inet6 hashsize 1024 maxelem 65536 Size in memory: 1232 References: 0 Number of entries: 0

Name: localnetwork Type: hash:net Revision: 6 Header: family inet hashsize 1024 maxelem 65536 Size in memory: 1536 References: 5 Number of entries: 17

Name: china_ip_route Type: hash:net Revision: 6 Header: family inet hashsize 4096 maxelem 1000000 Size in memory: 248136 References: 1 Number of entries: 8664

===================== 路由表状态 =====================

IPv4

route -n

Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 WAN IP.1 0.0.0.0 UG 10 0 0 pppoe-wan 0.0.0.0 192.168.71.1 0.0.0.0 UG 20 0 0 lan2 WAN IP.1 0.0.0.0 255.255.255.255 UH 0 0 0 pppoe-wan 192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 br-lan 192.168.71.0 0.0.0.0 255.255.255.0 U 20 0 0 lan2

ip route list

default via WAN IP.1 dev pppoe-wan proto static metric 10 default via 192.168.71.1 dev lan2 proto static src 192.168.71.43 metric 20 WAN IP.1 dev pppoe-wan proto kernel scope link src WAN IP.234 192.168.0.0/24 dev br-lan proto kernel scope link src 192.168.0.1 192.168.71.0/24 dev lan2 proto static scope link metric 20

ip rule show

0: from all lookup local 32753: from all fwmark 0x162 lookup 354 32754: from all fwmark 0x15 lookup 210 32755: from all fwmark 0x14 lookup 200 32766: from all lookup main 32767: from all lookup default

IPv6

route -A inet6

Kernel IPv6 routing table Destination Next Hop Flags Metric Ref Use Iface fe80::48b4:fa97:37:5bd2/128 :: U 256 1 0 pppoe-wan fe80::aaff:baff:feff:ede7/128 :: U 256 1 0 pppoe-wan fe80::/64 :: U 256 1 0 eth0
fe80::/64 :: U 256 5 0 br-lan
fe80::/64 :: U 256 1 0 lan1
fe80::/64 :: U 256 1 0 lan2
fe80::/64 :: U 256 1 0 ra0
fe80::/64 :: U 256 1 0 rax0
fe80::/64 :: U 256 1 0 br-lan-ifb ::/0 :: !n -1 1 0 lo
::1/128 :: Un 0 6 0 lo
fe80::/128 :: Un 0 5 0 eth0
fe80::/128 :: Un 0 3 0 br-lan
fe80::/128 :: Un 0 3 0 lan2
fe80::/128 :: Un 0 3 0 lan1
fe80::/128 :: Un 0 3 0 ra0
fe80::/128 :: Un 0 3 0 br-lan-ifb fe80::/128 :: Un 0 3 0 rax0
fe80::c:43ff:fe36:6088/128 :: Un 0 2 0 rax0
fe80::20c:43ff:fe26:6088/128 :: Un 0 2 0 ra0
fe80::898:ceff:fe93:28b1/128 :: Un 0 7 0 eth0
fe80::3e6a:48ff:fed3:ff19/128 :: Un 0 6 0 br-lan
fe80::3e6a:48ff:fed3:ff1a/128 :: Un 0 2 0 lan2
fe80::3e6a:48ff:fed3:ff1a/128 :: Un 0 2 0 lan1
fe80::48b4:fa97:37:5bd2/128 :: Un 0 2 0 pppoe-wan fe80::9860:76ff:fed2:e2fa/128 :: Un 0 2 0 br-lan-ifb ff00::/8 :: U 256 1 0 eth0
ff00::/8 :: U 256 5 0 br-lan
ff00::/8 :: U 256 2 0 lan1
ff00::/8 :: U 256 2 0 lan2
ff00::/8 :: U 256 1 0 ra0
ff00::/8 :: U 256 2 0 pppoe-wan ff00::/8 :: U 256 1 0 rax0
ff00::/8 :: U 256 1 0 br-lan-ifb ::/0 :: !n -1 1 0 lo

ip -6 route list

fe80::48b4:fa97:37:5bd2 dev pppoe-wan proto kernel metric 256 pref medium fe80::aaff:baff:feff:ede7 dev pppoe-wan proto kernel metric 256 pref medium fe80::/64 dev eth0 proto kernel metric 256 pref medium fe80::/64 dev br-lan proto kernel metric 256 pref medium fe80::/64 dev lan1 proto kernel metric 256 pref medium fe80::/64 dev lan2 proto kernel metric 256 pref medium fe80::/64 dev ra0 proto kernel metric 256 pref medium fe80::/64 dev rax0 proto kernel metric 256 pref medium fe80::/64 dev br-lan-ifb proto kernel metric 256 pref medium

ip -6 rule show

0: from all lookup local 32766: from all lookup main 4200000001: from all iif lo failed_policy 4200000005: from all iif lan2 failed_policy 4200000020: from all iif br-lan failed_policy 4200000031: from all iif pppoe-wan failed_policy

===================== 端口占用状态 =====================

tcp 0 0 :::7892 ::: LISTEN 15730/clash tcp 0 0 :::7893 ::: LISTEN 15730/clash tcp 0 0 :::7895 ::: LISTEN 15730/clash tcp 0 0 :::9090 ::: LISTEN 15730/clash tcp 0 0 :::7890 ::: LISTEN 15730/clash tcp 0 0 :::7891 ::: LISTEN 15730/clash udp 0 0 :::34932 ::: 15730/clash udp 0 0 :::50804 ::: 15730/clash udp 0 0 :::56949 ::: 15730/clash udp 0 0 :::46453 ::: 15730/clash udp 0 0 :::36725 ::: 15730/clash udp 0 0 :::47477 ::: 15730/clash udp 0 0 :::33909 ::: 15730/clash udp 0 0 :::37750 ::: 15730/clash udp 0 0 :::53366 ::: 15730/clash udp 0 0 :::59766 ::: 15730/clash udp 0 0 :::38774 ::: 15730/clash udp 0 0 :::50550 ::: 15730/clash udp 0 0 :::55415 ::: 15730/clash udp 0 0 :::41335 ::: 15730/clash udp 0 0 :::54135 ::: 15730/clash udp 0 0 :::58743 ::: 15730/clash udp 0 0 :::34679 ::: 15730/clash udp 0 0 :::40823 ::: 15730/clash udp 0 0 :::34936 ::: 15730/clash udp 0 0 :::53112 ::: 15730/clash udp 0 0 :::36728 ::: 15730/clash udp 0 0 :::60792 ::: 15730/clash udp 0 0 :::50808 ::: 15730/clash udp 0 0 :::36985 ::: 15730/clash udp 0 0 :::38009 ::: 15730/clash udp 0 0 :::47481 ::: 15730/clash udp 0 0 :::57209 ::: 15730/clash udp 0 0 :::42105 ::: 15730/clash udp 0 0 :::43898 ::: 15730/clash udp 0 0 :::52090 ::: 15730/clash udp 0 0 :::46970 ::: 15730/clash udp 0 0 :::49018 ::: 15730/clash udp 0 0 :::57979 ::: 15730/clash udp 0 0 :::59515 ::: 15730/clash udp 0 0 :::39291 ::: 15730/clash udp 0 0 :::34427 ::: 15730/clash udp 0 0 :::57211 ::: 15730/clash udp 0 0 :::53627 ::: 15730/clash udp 0 0 :::48763 ::: 15730/clash udp 0 0 :::55163 ::: 15730/clash udp 0 0 :::59004 ::: 15730/clash udp 0 0 :::49788 ::: 15730/clash udp 0 0 :::47228 ::: 15730/clash udp 0 0 :::44412 ::: 15730/clash udp 0 0 :::53372 ::: 15730/clash udp 0 0 :::44157 ::: 15730/clash udp 0 0 :::59773 ::: 15730/clash udp 0 0 :::53885 ::: 15730/clash udp 0 0 :::41341 ::: 15730/clash udp 0 0 :::59261 ::: 15730/clash udp 0 0 :::49533 ::: 15730/clash udp 0 0 :::35197 ::: 15730/clash udp 0 0 :::43645 ::: 15730/clash udp 0 0 :::36477 ::: 15730/clash udp 0 0 :::42877 ::: 15730/clash udp 0 0 :::40830 ::: 15730/clash udp 0 0 :::49278 ::: 15730/clash udp 0 0 :::49534 ::: 15730/clash udp 0 0 :::60798 ::: 15730/clash udp 0 0 :::42878 ::: 15730/clash udp 0 0 :::45950 ::: 15730/clash udp 0 0 :::46463 ::: 15730/clash udp 0 0 :::56703 ::: 15730/clash udp 0 0 :::36735 ::: 15730/clash udp 0 0 :::53887 ::: 15730/clash udp 0 0 :::45439 ::: 15730/clash udp 0 0 :::59263 ::: 15730/clash udp 0 0 :::40063 ::: 15730/clash udp 0 0 :::58496 ::: 15730/clash udp 0 0 :::49536 ::: 15730/clash udp 0 0 :::56192 ::: 15730/clash udp 0 0 :::42112 ::: 15730/clash udp 0 0 :::53120 ::: 15730/clash udp 0 0 :::39296 ::: 15730/clash udp 0 0 :::59521 ::: 15730/clash udp 0 0 :::50817 ::: 15730/clash udp 0 0 :::42113 ::: 15730/clash udp 0 0 :::34945 ::: 15730/clash udp 0 0 :::60801 ::: 15730/clash udp 0 0 :::53633 ::: 15730/clash udp 0 0 :::36225 ::: 15730/clash udp 0 0 :::52354 ::: 15730/clash udp 0 0 :::56450 ::: 15730/clash udp 0 0 :::36226 ::: 15730/clash udp 0 0 :::46722 ::: 15730/clash udp 0 0 :::46978 ::: 15730/clash udp 0 0 :::41602 ::: 15730/clash udp 0 0 :::38274 ::: 15730/clash udp 0 0 :::43394 ::: 15730/clash udp 0 0 :::51842 ::: 15730/clash udp 0 0 :::48258 ::: 15730/clash udp 0 0 :::42882 ::: 15730/clash udp 0 0 :::47746 ::: 15730/clash udp 0 0 :::41346 ::: 15730/clash udp 0 0 :::57475 ::: 15730/clash udp 0 0 :::40323 ::: 15730/clash udp 0 0 :::52867 ::: 15730/clash udp 0 0 :::41859 ::: 15730/clash udp 0 0 :::33411 ::: 15730/clash udp 0 0 :::41091 ::: 15730/clash udp 0 0 :::45955 ::: 15730/clash udp 0 0 :::53380 ::: 15730/clash udp 0 0 :::59012 ::: 15730/clash udp 0 0 :::56452 ::: 15730/clash udp 0 0 :::42884 ::: 15730/clash udp 0 0 :::37509 ::: 15730/clash udp 0 0 :::58245 ::: 15730/clash udp 0 0 :::49797 ::: 15730/clash udp 0 0 :::40325 ::: 15730/clash udp 0 0 :::55941 ::: 15730/clash udp 0 0 :::57989 ::: 15730/clash udp 0 0 :::57733 ::: 15730/clash udp 0 0 :::51589 ::: 15730/clash udp 0 0 :::38534 ::: 15730/clash udp 0 0 :::54918 ::: 15730/clash udp 0 0 :::37766 ::: 15730/clash udp 0 0 :::42630 ::: 15730/clash udp 0 0 :::52870 ::: 15730/clash udp 0 0 :::59014 ::: 15730/clash udp 0 0 :::49031 ::: 15730/clash udp 0 0 :::44679 ::: 15730/clash udp 0 0 :::33415 ::: 15730/clash udp 0 0 :::50055 ::: 15730/clash udp 0 0 :::39304 ::: 15730/clash udp 0 0 :::48264 ::: 15730/clash udp 0 0 :::46728 ::: 15730/clash udp 0 0 :::56968 ::: 15730/clash udp 0 0 :::44168 ::: 15730/clash udp 0 0 :::57737 ::: 15730/clash udp 0 0 :::54921 ::: 15730/clash udp 0 0 :::58505 ::: 15730/clash udp 0 0 :::57738 ::: 15730/clash udp 0 0 :::51850 ::: 15730/clash udp 0 0 :::48778 ::: 15730/clash udp 0 0 :::51594 ::: 15730/clash udp 0 0 :::44427 ::: 15730/clash udp 0 0 :::51595 ::: 15730/clash udp 0 0 :::36491 ::: 15730/clash udp 0 0 :::55435 ::: 15730/clash udp 0 0 :::58507 ::: 15730/clash udp 0 0 :::56715 ::: 15730/clash udp 0 0 :::35468 ::: 15730/clash udp 0 0 :::35212 ::: 15730/clash udp 0 0 :::36236 ::: 15730/clash udp 0 0 :::48780 ::: 15730/clash udp 0 0 :::54156 ::: 15730/clash udp 0 0 :::48524 ::: 15730/clash udp 0 0 :::37004 ::: 15730/clash udp 0 0 :::41357 ::: 15730/clash udp 0 0 :::37005 ::: 15730/clash udp 0 0 :::42893 ::: 15730/clash udp 0 0 :::55950 ::: 15730/clash udp 0 0 :::36750 ::: 15730/clash udp 0 0 :::46478 ::: 15730/clash udp 0 0 :::55694 ::: 15730/clash udp 0 0 :::55438 ::: 15730/clash udp 0 0 :::40590 ::: 15730/clash udp 0 0 :::44430 ::: 15730/clash udp 0 0 :::42382 ::: 15730/clash udp 0 0 :::51599 ::: 15730/clash udp 0 0 :::37775 ::: 15730/clash udp 0 0 :::44944 ::: 15730/clash udp 0 0 :::37776 ::: 15730/clash udp 0 0 :::34448 ::: 15730/clash udp 0 0 :::56208 ::: 15730/clash udp 0 0 :::60304 ::: 15730/clash udp 0 0 :::52625 ::: 15730/clash udp 0 0 :::41873 ::: 15730/clash udp 0 0 :::35217 ::: 15730/clash udp 0 0 :::60049 ::: 15730/clash udp 0 0 :::48785 ::: 15730/clash udp 0 0 :::39569 ::: 15730/clash udp 0 0 :::50577 ::: 15730/clash udp 0 0 :::60050 ::: 15730/clash udp 0 0 :::36498 ::: 15730/clash udp 0 0 :::52626 ::: 15730/clash udp 0 0 :::47250 ::: 15730/clash udp 0 0 :::53906 ::: 15730/clash udp 0 0 :::35986 ::: 15730/clash udp 0 0 :::50834 ::: 15730/clash udp 0 0 :::33171 ::: 15730/clash udp 0 0 :::41363 ::: 15730/clash udp 0 0 :::59283 ::: 15730/clash udp 0 0 :::55443 ::: 15730/clash udp 0 0 :::59539 ::: 15730/clash udp 0 0 :::52627 ::: 15730/clash udp 0 0 :::51604 ::: 15730/clash udp 0 0 :::60564 ::: 15730/clash udp 0 0 :::57236 ::: 15730/clash udp 0 0 :::57748 ::: 15730/clash udp 0 0 :::49812 ::: 15730/clash udp 0 0 :::45716 ::: 15730/clash udp 0 0 :::56468 ::: 15730/clash udp 0 0 :::40852 ::: 15730/clash udp 0 0 :::48020 ::: 15730/clash udp 0 0 :::42644 ::: 15730/clash udp 0 0 :::46228 ::: 15730/clash udp 0 0 :::46996 ::: 15730/clash udp 0 0 :::49557 ::: 15730/clash udp 0 0 :::56213 ::: 15730/clash udp 0 0 :::40597 ::: 15730/clash udp 0 0 :::38549 ::: 15730/clash udp 0 0 :::44949 ::: 15730/clash udp 0 0 :::39829 ::: 15730/clash udp 0 0 :::42901 ::: 15730/clash udp 0 0 :::41621 ::: 15730/clash udp 0 0 :::40853 ::: 15730/clash udp 0 0 :::60309 ::: 15730/clash udp 0 0 :::54933 ::: 15730/clash udp 0 0 :::39318 ::: 15730/clash udp 0 0 :::43158 ::: 15730/clash udp 0 0 :::59798 ::: 15730/clash udp 0 0 :::43670 ::: 15730/clash udp 0 0 :::52118 ::: 15730/clash udp 0 0 :::53142 ::: 15730/clash udp 0 0 :::59030 ::: 15730/clash udp 0 0 :::59542 ::: 15730/clash udp 0 0 :::54934 ::: 15730/clash udp 0 0 :::34710 ::: 15730/clash udp 0 0 :::33942 ::: 15730/clash udp 0 0 :::46487 ::: 15730/clash udp 0 0 :::60311 ::: 15730/clash udp 0 0 :::40087 ::: 15730/clash udp 0 0 :::51095 ::: 15730/clash udp 0 0 :::59543 ::: 15730/clash udp 0 0 :::58519 ::: 15730/clash udp 0 0 :::49047 ::: 15730/clash udp 0 0 :::43671 ::: 15730/clash udp 0 0 :::56728 ::: 15730/clash udp 0 0 :::34200 ::: 15730/clash udp 0 0 :::46488 ::: 15730/clash udp 0 0 :::60312 ::: 15730/clash udp 0 0 :::36248 ::: 15730/clash udp 0 0 :::59032 ::: 15730/clash udp 0 0 :::60568 ::: 15730/clash udp 0 0 :::46232 ::: 15730/clash udp 0 0 :::40088 ::: 15730/clash udp 0 0 :::59545 ::: 15730/clash udp 0 0 :::40857 ::: 15730/clash udp 0 0 :::42649 ::: 15730/clash udp 0 0 :::45977 ::: 15730/clash udp 0 0 :::43417 ::: 15730/clash udp 0 0 :::43929 ::: 15730/clash udp 0 0 :::48794 ::: 15730/clash udp 0 0 :::56218 ::: 15730/clash udp 0 0 :::55706 ::: 15730/clash udp 0 0 :::39066 ::: 15730/clash udp 0 0 :::60314 ::: 15730/clash udp 0 0 :::58522 ::: 15730/clash udp 0 0 :::35483 ::: 15730/clash udp 0 0 :::51867 ::: 15730/clash udp 0 0 :::39579 ::: 15730/clash udp 0 0 :::44187 ::: 15730/clash udp 0 0 :::55708 ::: 15730/clash udp 0 0 :::37788 ::: 15730/clash udp 0 0 :::44188 ::: 15730/clash udp 0 0 :::37532 ::: 15730/clash udp 0 0 :::60061 ::: 15730/clash udp 0 0 :::35485 ::: 15730/clash udp 0 0 :::36509 ::: 15730/clash udp 0 0 :::54941 ::: 15730/clash udp 0 0 :::41885 ::: 15730/clash udp 0 0 :::33693 ::: 15730/clash udp 0 0 :::41373 ::: 15730/clash udp 0 0 :::39838 ::: 15730/clash udp 0 0 :::36510 ::: 15730/clash udp 0 0 :::42142 ::: 15730/clash udp 0 0 :::58014 ::: 15730/clash udp 0 0 :::46494 ::: 15730/clash udp 0 0 :::39583 ::: 15730/clash udp 0 0 :::48799 ::: 15730/clash udp 0 0 :::60831 ::: 15730/clash udp 0 0 :::52383 ::: 15730/clash udp 0 0 :::47007 ::: 15730/clash udp 0 0 :::34975 ::: 15730/clash udp 0 0 :::35231 ::: 15730/clash udp 0 0 :::47519 ::: 15730/clash udp 0 0 :::43167 ::: 15730/clash udp 0 0 :::45215 ::: 15730/clash udp 0 0 :::45983 ::: 15730/clash udp 0 0 :::38304 ::: 15730/clash udp 0 0 :::50592 ::: 15730/clash udp 0 0 :::44960 ::: 15730/clash udp 0 0 :::58016 ::: 15730/clash udp 0 0 :::40609 ::: 15730/clash udp 0 0 :::60833 ::: 15730/clash udp 0 0 :::51873 ::: 15730/clash udp 0 0 :::35489 ::: 15730/clash udp 0 0 :::34977 ::: 15730/clash udp 0 0 :::44705 ::: 15730/clash udp 0 0 :::33186 ::: 15730/clash udp 0 0 :::60578 ::: 15730/clash udp 0 0 :::49058 ::: 15730/clash udp 0 0 :::58786 ::: 15730/clash udp 0 0 :::44194 ::: 15730/clash udp 0 0 :::58274 ::: 15730/clash udp 0 0 :::51362 ::: 15730/clash udp 0 0 :::42658 ::: 15730/clash udp 0 0 :::43170 ::: 15730/clash udp 0 0 :::55458 ::: 15730/clash udp 0 0 :::40867 ::: 15730/clash udp 0 0 :::59043 ::: 15730/clash udp 0 0 :::43427 ::: 15730/clash udp 0 0 :::45220 ::: 15730/clash udp 0 0 :::51364 ::: 15730/clash udp 0 0 :::59300 ::: 15730/clash udp 0 0 :::42660 ::: 15730/clash udp 0 0 :::49317 ::: 15730/clash udp 0 0 :::33701 ::: 15730/clash udp 0 0 :::38565 ::: 15730/clash udp 0 0 :::43173 ::: 15730/clash udp 0 0 :::58277 ::: 15730/clash udp 0 0 :::46245 ::: 15730/clash udp 0 0 :::49061 ::: 15730/clash udp 0 0 :::51877 ::: 15730/clash udp 0 0 :::45990 ::: 15730/clash udp 0 0 :::51110 ::: 15730/clash udp 0 0 :::37542 ::: 15730/clash udp 0 0 :::58790 ::: 15730/clash udp 0 0 :::55462 ::: 15730/clash udp 0 0 :::50342 ::: 15730/clash udp 0 0 :::52391 ::: 15730/clash udp 0 0 :::48551 ::: 15730/clash udp 0 0 :::47271 ::: 15730/clash udp 0 0 :::37031 ::: 15730/clash udp 0 0 :::55975 ::: 15730/clash udp 0 0 :::55463 ::: 15730/clash udp 0 0 :::55719 ::: 15730/clash udp 0 0 :::44199 ::: 15730/clash udp 0 0 :::45479 ::: 15730/clash udp 0 0 :::54439 ::: 15730/clash udp 0 0 :::60328 ::: 15730/clash udp 0 0 :::41128 ::: 15730/clash udp 0 0 :::34984 ::: 15730/clash udp 0 0 :::39080 ::: 15730/clash udp 0 0 :::58280 ::: 15730/clash udp 0 0 :::35752 ::: 15730/clash udp 0 0 :::37800 ::: 15730/clash udp 0 0 :::53160 ::: 15730/clash udp 0 0 :::56744 ::: 15730/clash udp 0 0 :::59561 ::: 15730/clash udp 0 0 :::39337 ::: 15730/clash udp 0 0 :::41897 ::: 15730/clash udp 0 0 :::36265 ::: 15730/clash udp 0 0 :::59049 ::: 15730/clash udp 0 0 :::40873 ::: 15730/clash udp 0 0 :::44970 ::: 15730/clash udp 0 0 :::49322 ::: 15730/clash udp 0 0 :::51114 ::: 15730/clash udp 0 0 :::55722 ::: 15730/clash udp 0 0 :::46763 ::: 15730/clash udp 0 0 :::38571 ::: 15730/clash udp 0 0 :::52907 ::: 15730/clash udp 0 0 :::34475 ::: 15730/clash udp 0 0 :::40363 ::: 15730/clash udp 0 0 :::35243 ::: 15730/clash udp 0 0 :::38316 ::: 15730/clash udp 0 0 :::58796 ::: 15730/clash udp 0 0 :::45740 ::: 15730/clash udp 0 0 :::43180 ::: 15730/clash udp 0 0 :::53420 ::: 15730/clash udp 0 0 :::39596 ::: 15730/clash udp 0 0 :::44972 ::: 15730/clash udp 0 0 :::48045 ::: 15730/clash udp 0 0 :::58797 ::: 15730/clash udp 0 0 :::43437 ::: 15730/clash udp 0 0 :::33965 ::: 15730/clash udp 0 0 :::44717 ::: 15730/clash udp 0 0 :::35757 ::: 15730/clash udp 0 0 :::45997 ::: 15730/clash udp 0 0 :::60845 ::: 15730/clash udp 0 0 :::55982 ::: 15730/clash udp 0 0 :::34990 ::: 15730/clash udp 0 0 :::36526 ::: 15730/clash udp 0 0 :::37806 ::: 15730/clash udp 0 0 :::49582 ::: 15730/clash udp 0 0 :::56238 ::: 15730/clash udp 0 0 :::49838 ::: 15730/clash udp 0 0 :::55470 ::: 15730/clash udp 0 0 :::58031 ::: 15730/clash udp 0 0 :::39599 ::: 15730/clash udp 0 0 :::39087 ::: 15730/clash udp 0 0 :::60847 ::: 15730/clash udp 0 0 :::59567 ::: 15730/clash udp 0 0 :::39855 ::: 15730/clash udp 0 0 :::47024 ::: 15730/clash udp 0 0 :::57264 ::: 15730/clash udp 0 0 :::40880 ::: 15730/clash udp 0 0 :::43952 ::: 15730/clash udp 0 0 :::57776 ::: 15730/clash udp 0 0 :::52656 ::: 15730/clash udp 0 0 :::33968 ::: 15730/clash udp 0 0 :::53168 ::: 15730/clash udp 0 0 :::55985 ::: 15730/clash udp 0 0 :::56497 ::: 15730/clash udp 0 0 :::36785 ::: 15730/clash udp 0 0 :::49329 ::: 15730/clash udp 0 0 :::40625 ::: 15730/clash udp 0 0 :::43697 ::: 15730/clash udp 0 0 :::59057 ::: 15730/clash udp 0 0 :::44466 ::: 15730/clash udp 0 0 :::45490 ::: 15730/clash udp 0 0 :::41138 ::: 15730/clash udp 0 0 :::54450 ::: 15730/clash udp 0 0 :::34738 ::: 15730/clash udp 0 0 :::42418 ::: 15730/clash udp 0 0 :::55218 ::: 15730/clash udp 0 0 :::45234 ::: 15730/clash udp 0 0 :::43187 ::: 15730/clash udp 0 0 :::42163 ::: 15730/clash udp 0 0 :::42931 ::: 15730/clash udp 0 0 :::59571 ::: 15730/clash udp 0 0 :::56499 ::: 15730/clash udp 0 0 :::56243 ::: 15730/clash udp 0 0 :::47539 ::: 15730/clash udp 0 0 :::59316 ::: 15730/clash udp 0 0 :::36276 ::: 15730/clash udp 0 0 :::55732 ::: 15730/clash udp 0 0 :::47284 ::: 15730/clash udp 0 0 :::51380 ::: 15730/clash udp 0 0 :::35764 ::: 15730/clash udp 0 0 :::49844 ::: 15730/clash udp 0 0 :::39604 ::: 15730/clash udp 0 0 :::57269 ::: 15730/clash udp 0 0 :::46005 ::: 15730/clash udp 0 0 :::52661 ::: 15730/clash udp 0 0 :::55989 ::: 15730/clash udp 0 0 :::46773 ::: 15730/clash udp 0 0 :::43957 ::: 15730/clash udp 0 0 :::33974 ::: 15730/clash udp 0 0 :::32950 ::: 15730/clash udp 0 0 :::39094 ::: 15730/clash udp 0 0 :::59574 ::: 15730/clash udp 0 0 :::46518 ::: 15730/clash udp 0 0 :::57271 ::: 15730/clash udp 0 0 :::40887 ::: 15730/clash udp 0 0 :::46263 ::: 15730/clash udp 0 0 :::45752 ::: 15730/clash udp 0 0 :::36536 ::: 15730/clash udp 0 0 :::47288 ::: 15730/clash udp 0 0 :::41144 ::: 15730/clash udp 0 0 :::37048 ::: 15730/clash udp 0 0 :::56249 ::: 15730/clash udp 0 0 :::45753 ::: 15730/clash udp 0 0 :::34745 ::: 15730/clash udp 0 0 :::36281 ::: 15730/clash udp 0 0 :::57017 ::: 15730/clash udp 0 0 :::49850 ::: 15730/clash udp 0 0 :::50618 ::: 15730/clash udp 0 0 :::49338 ::: 15730/clash udp 0 0 :::54714 ::: 15730/clash udp 0 0 :::53946 ::: 15730/clash udp 0 0 :::39354 ::: 15730/clash udp 0 0 :::43194 ::: 15730/clash udp 0 0 :::47546 ::: 15730/clash udp 0 0 :::41915 ::: 15730/clash udp 0 0 :::42171 ::: 15730/clash udp 0 0 :::37819 ::: 15730/clash udp 0 0 :::48059 ::: 15730/clash udp 0 0 :::37051 ::: 15730/clash udp 0 0 :::53179 ::: 15730/clash udp 0 0 :::54715 ::: 15730/clash udp 0 0 :::37307 ::: 15730/clash udp 0 0 :::44988 ::: 15730/clash udp 0 0 :::40636 ::: 15730/clash udp 0 0 :::34748 ::: 15730/clash udp 0 0 :::33980 ::: 15730/clash udp 0 0 :::51901 ::: 15730/clash udp 0 0 :::60605 ::: 15730/clash udp 0 0 :::33725 ::: 15730/clash udp 0 0 :::34237 ::: 15730/clash udp 0 0 :::53181 ::: 15730/clash udp 0 0 :::37565 ::: 15730/clash udp 0 0 :::45245 ::: 15730/clash udp 0 0 :::46525 ::: 15730/clash udp 0 0 :::56253 ::: 15730/clash udp 0 0 :::32957 ::: 15730/clash udp 0 0 :::57790 ::: 15730/clash udp 0 0 :::34494 ::: 15730/clash udp 0 0 :::32958 ::: 15730/clash udp 0 0 :::54718 ::: 15730/clash udp 0 0 :::46270 ::: 15730/clash udp 0 0 :::52927 ::: 15730/clash udp 0 0 :::41919 ::: 15730/clash udp 0 0 :::54719 ::: 15730/clash udp 0 0 :::59327 ::: 15730/clash udp 0 0 :::37824 ::: 15730/clash udp 0 0 :::49600 ::: 15730/clash udp 0 0 :::50880 ::: 15730/clash udp 0 0 :::45504 ::: 15730/clash udp 0 0 :::33729 ::: 15730/clash udp 0 0 :::38081 ::: 15730/clash udp 0 0 :::40129 ::: 15730/clash udp 0 0 :::33217 ::: 15730/clash udp 0 0 :::46785 ::: 15730/clash udp 0 0 :::57793 ::: 15730/clash udp 0 0 :::39873 ::: 15730/clash udp 0 0 :::48065 ::: 15730/clash udp 0 0 :::50114 ::: 15730/clash udp 0 0 :::60098 ::: 15730/clash udp 0 0 :::7874 ::: 15730/clash udp 0 0 :::36547 ::: 15730/clash udp 0 0 :::46787 ::: 15730/clash udp 0 0 :::56515 ::: 15730/clash udp 0 0 :::45251 ::: 15730/clash udp 0 0 :::57028 ::: 15730/clash udp 0 0 :::34500 ::: 15730/clash udp 0 0 :::36036 ::: 15730/clash udp 0 0 :::46020 ::: 15730/clash udp 0 0 :::40388 ::: 15730/clash udp 0 0 :::58564 ::: 15730/clash udp 0 0 :::41156 ::: 15730/clash udp 0 0 :::53956 ::: 15730/clash udp 0 0 :::46276 ::: 15730/clash udp 0 0 :::43717 ::: 15730/clash udp 0 0 :::45253 ::: 15730/clash udp 0 0 :::51909 ::: 15730/clash udp 0 0 :::59333 ::: 15730/clash udp 0 0 :::40390 ::: 15730/clash udp 0 0 :::35526 ::: 15730/clash udp 0 0 :::49862 ::: 15730/clash udp 0 0 :::52678 ::: 15730/clash udp 0 0 :::47558 ::: 15730/clash udp 0 0 :::36550 ::: 15730/clash udp 0 0 :::51910 ::: 15730/clash udp 0 0 :::53958 ::: 15730/clash udp 0 0 :::48838 ::: 15730/clash udp 0 0 :::51143 ::: 15730/clash udp 0 0 :::33735 ::: 15730/clash udp 0 0 :::38343 ::: 15730/clash udp 0 0 :::52679 ::: 15730/clash udp 0 0 :::40391 ::: 15730/clash udp 0 0 :::60871 ::: 15730/clash udp 0 0 :::46024 ::: 15730/clash udp 0 0 :::45256 ::: 15730/clash udp 0 0 :::59336 ::: 15730/clash udp 0 0 :::49608 ::: 15730/clash udp 0 0 :::47049 ::: 15730/clash udp 0 0 :::50889 ::: 15730/clash udp 0 0 :::40137 ::: 15730/clash udp 0 0 :::59337 ::: 15730/clash udp 0 0 :::42185 ::: 15730/clash udp 0 0 :::59338 ::: 15730/clash udp 0 0 :::36810 ::: 15730/clash udp 0 0 :::44747 ::: 15730/clash udp 0 0 :::57291 ::: 15730/clash udp 0 0 :::41419 ::: 15730/clash udp 0 0 :::42955 ::: 15730/clash udp 0 0 :::55499 ::: 15730/clash udp 0 0 :::47819 ::: 15730/clash udp 0 0 :::51915 ::: 15730/clash udp 0 0 :::37836 ::: 15730/clash udp 0 0 :::47308 ::: 15730/clash udp 0 0 :::40396 ::: 15730/clash udp 0 0 :::50636 ::: 15730/clash udp 0 0 :::48332 ::: 15730/clash udp 0 0 :::59085 ::: 15730/clash udp 0 0 :::59853 ::: 15730/clash udp 0 0 :::34253 ::: 15730/clash udp 0 0 :::58829 ::: 15730/clash udp 0 0 :::33229 ::: 15730/clash udp 0 0 :::47821 ::: 15730/clash udp 0 0 :::38093 ::: 15730/clash udp 0 0 :::58061 ::: 15730/clash udp 0 0 :::35533 ::: 15730/clash udp 0 0 :::56270 ::: 15730/clash udp 0 0 :::38094 ::: 15730/clash udp 0 0 :::59342 ::: 15730/clash udp 0 0 :::49102 ::: 15730/clash udp 0 0 :::55502 ::: 15730/clash udp 0 0 :::39118 ::: 15730/clash udp 0 0 :::39631 ::: 15730/clash udp 0 0 :::40655 ::: 15730/clash udp 0 0 :::33487 ::: 15730/clash udp 0 0 :::52688 ::: 15730/clash udp 0 0 :::34512 ::: 15730/clash udp 0 0 :::43472 ::: 15730/clash udp 0 0 :::34000 ::: 15730/clash udp 0 0 :::44752 ::: 15730/clash udp 0 0 :::38352 ::: 15730/clash udp 0 0 :::43728 ::: 15730/clash udp 0 0 :::56784 ::: 15730/clash udp 0 0 :::40656 ::: 15730/clash udp 0 0 :::42449 ::: 15730/clash udp 0 0 :::44241 ::: 15730/clash udp 0 0 :::57041 ::: 15730/clash udp 0 0 :::43985 ::: 15730/clash udp 0 0 :::54737 ::: 15730/clash udp 0 0 :::52433 ::: 15730/clash udp 0 0 :::46801 ::: 15730/clash udp 0 0 :::54993 ::: 15730/clash udp 0 0 :::36050 ::: 15730/clash udp 0 0 :::34770 ::: 15730/clash udp 0 0 :::60626 ::: 15730/clash udp 0 0 :::41938 ::: 15730/clash udp 0 0 :::50898 ::: 15730/clash udp 0 0 :::54226 ::: 15730/clash udp 0 0 :::42450 ::: 15730/clash udp 0 0 :::58578 ::: 15730/clash udp 0 0 :::34002 ::: 15730/clash udp 0 0 :::39378 ::: 15730/clash udp 0 0 :::58835 ::: 15730/clash udp 0 0 :::38355 ::: 15730/clash udp 0 0 :::48339 ::: 15730/clash udp 0 0 :::7891 ::: 15730/clash udp 0 0 :::53972 ::: 15730/clash udp 0 0 :::38100 ::: 15730/clash udp 0 0 :::50644 ::: 15730/clash udp 0 0 :::52180 ::: 15730/clash udp 0 0 :::47316 ::: 15730/clash udp 0 0 :::41940 ::: 15730/clash udp 0 0 :::7892 ::: 15730/clash udp 0 0 :::56277 ::: 15730/clash udp 0 0 :::43221 ::: 15730/clash udp 0 0 :::50133 ::: 15730/clash udp 0 0 :::33749 ::: 15730/clash udp 0 0 :::55765 ::: 15730/clash udp 0 0 :::51925 ::: 15730/clash udp 0 0 :::47573 ::: 15730/clash udp 0 0 :::7893 ::: 15730/clash udp 0 0 :::39638 ::: 15730/clash udp 0 0 :::36054 ::: 15730/clash udp 0 0 :::47318 ::: 15730/clash udp 0 0 :::33238 ::: 15730/clash udp 0 0 :::51414 ::: 15730/clash udp 0 0 :::55510 ::: 15730/clash udp 0 0 :::56022 ::: 15730/clash udp 0 0 :::59607 ::: 15730/clash udp 0 0 :::36311 ::: 15730/clash udp 0 0 :::40151 ::: 15730/clash udp 0 0 :::38871 ::: 15730/clash udp 0 0 :::36823 ::: 15730/clash udp 0 0 :::7895 ::: 15730/clash udp 0 0 :::33752 ::: 15730/clash udp 0 0 :::46296 ::: 15730/clash udp 0 0 :::38360 ::: 15730/clash udp 0 0 :::56792 ::: 15730/clash udp 0 0 :::44504 ::: 15730/clash udp 0 0 :::42968 ::: 15730/clash udp 0 0 :::36568 ::: 15730/clash udp 0 0 :::46552 ::: 15730/clash udp 0 0 :::40408 ::: 15730/clash udp 0 0 :::36056 ::: 15730/clash udp 0 0 :::34521 ::: 15730/clash udp 0 0 :::58841 ::: 15730/clash udp 0 0 :::39897 ::: 15730/clash udp 0 0 :::36057 ::: 15730/clash udp 0 0 :::49369 ::: 15730/clash udp 0 0 :::43481 ::: 15730/clash udp 0 0 :::36826 ::: 15730/clash udp 0 0 :::37594 ::: 15730/clash udp 0 0 :::43738 ::: 15730/clash udp 0 0 :::47578 ::: 15730/clash udp 0 0 :::37850 ::: 15730/clash udp 0 0 :::56539 ::: 15730/clash udp 0 0 :::59868 ::: 15730/clash udp 0 0 :::43996 ::: 15730/clash udp 0 0 :::56284 ::: 15730/clash udp 0 0 :::44508 ::: 15730/clash udp 0 0 :::45021 ::: 15730/clash udp 0 0 :::58333 ::: 15730/clash udp 0 0 :::42461 ::: 15730/clash udp 0 0 :::32989 ::: 15730/clash udp 0 0 :::37597 ::: 15730/clash udp 0 0 :::36317 ::: 15730/clash udp 0 0 :::43229 ::: 15730/clash udp 0 0 :::59613 ::: 15730/clash udp 0 0 :::36061 ::: 15730/clash udp 0 0 :::35806 ::: 15730/clash udp 0 0 :::40158 ::: 15730/clash udp 0 0 :::60638 ::: 15730/clash udp 0 0 :::36319 ::: 15730/clash udp 0 0 :::54495 ::: 15730/clash udp 0 0 :::37343 ::: 15730/clash udp 0 0 :::47583 ::: 15730/clash udp 0 0 :::49631 ::: 15730/clash udp 0 0 :::50399 ::: 15730/clash udp 0 0 :::46559 ::: 15730/clash udp 0 0 :::36320 ::: 15730/clash udp 0 0 :::45536 ::: 15730/clash udp 0 0 :::50144 ::: 15730/clash udp 0 0 :::59872 ::: 15730/clash udp 0 0 :::41440 ::: 15730/clash udp 0 0 :::41952 ::: 15730/clash udp 0 0 :::34528 ::: 15730/clash udp 0 0 :::33504 ::: 15730/clash udp 0 0 :::55009 ::: 15730/clash udp 0 0 :::50657 ::: 15730/clash udp 0 0 :::45793 ::: 15730/clash udp 0 0 :::58337 ::: 15730/clash udp 0 0 :::40417 ::: 15730/clash udp 0 0 :::47585 ::: 15730/clash udp 0 0 :::50401 ::: 15730/clash udp 0 0 :::43233 ::: 15730/clash udp 0 0 :::58594 ::: 15730/clash udp 0 0 :::44258 ::: 15730/clash udp 0 0 :::41442 ::: 15730/clash udp 0 0 :::60898 ::: 15730/clash udp 0 0 :::44771 ::: 15730/clash udp 0 0 :::48099 ::: 15730/clash udp 0 0 :::56803 ::: 15730/clash udp 0 0 :::38883 ::: 15730/clash udp 0 0 :::44515 ::: 15730/clash udp 0 0 :::43236 ::: 15730/clash udp 0 0 :::53476 ::: 15730/clash udp 0 0 :::44260 ::: 15730/clash udp 0 0 :::42980 ::: 15730/clash udp 0 0 :::47333 ::: 15730/clash udp 0 0 :::41189 ::: 15730/clash udp 0 0 :::52453 ::: 15730/clash udp 0 0 :::47077 ::: 15730/clash udp 0 0 :::49125 ::: 15730/clash udp 0 0 :::57061 ::: 15730/clash udp 0 0 :::35045 ::: 15730/clash udp 0 0 :::41446 ::: 15730/clash udp 0 0 :::59366 ::: 15730/clash udp 0 0 :::37606 ::: 15730/clash udp 0 0 :::57574 ::: 15730/clash udp 0 0 :::54246 ::: 15730/clash udp 0 0 :::47590 ::: 15730/clash udp 0 0 :::51174 ::: 15730/clash udp 0 0 :::60902 ::: 15730/clash udp 0 0 :::53735 ::: 15730/clash udp 0 0 :::34023 ::: 15730/clash udp 0 0 :::60647 ::: 15730/clash udp 0 0 :::57831 ::: 15730/clash udp 0 0 :::57575 ::: 15730/clash udp 0 0 :::46568 ::: 15730/clash udp 0 0 :::56296 ::: 15730/clash udp 0 0 :::58344 ::: 15730/clash udp 0 0 :::39656 ::: 15730/clash udp 0 0 :::40168 ::: 15730/clash udp 0 0 :::35304 ::: 15730/clash udp 0 0 :::39401 ::: 15730/clash udp 0 0 :::47593 ::: 15730/clash udp 0 0 :::33769 ::: 15730/clash udp 0 0 :::51433 ::: 15730/clash udp 0 0 :::39913 ::: 15730/clash udp 0 0 :::36585 ::: 15730/clash udp 0 0 :::52201 ::: 15730/clash udp 0 0 :::37354 ::: 15730/clash udp 0 0 :::56554 ::: 15730/clash udp 0 0 :::49642 ::: 15730/clash udp 0 0 :::34794 ::: 15730/clash udp 0 0 :::38890 ::: 15730/clash udp 0 0 :::42474 ::: 15730/clash udp 0 0 :::60138 ::: 15730/clash udp 0 0 :::35563 ::: 15730/clash udp 0 0 :::46571 ::: 15730/clash udp 0 0 :::52971 ::: 15730/clash udp 0 0 :::37611 ::: 15730/clash udp 0 0 :::46827 ::: 15730/clash udp 0 0 :::60139 ::: 15730/clash udp 0 0 :::42988 ::: 15730/clash udp 0 0 :::50924 ::: 15730/clash udp 0 0 :::57324 ::: 15730/clash udp 0 0 :::48620 ::: 15730/clash udp 0 0 :::47852 ::: 15730/clash udp 0 0 :::59628 ::: 15730/clash udp 0 0 :::56300 ::: 15730/clash udp 0 0 :::41453 ::: 15730/clash udp 0 0 :::58349 ::: 15730/clash udp 0 0 :::36333 ::: 15730/clash udp 0 0 :::42222 ::: 15730/clash udp 0 0 :::43758 ::: 15730/clash udp 0 0 :::58094 ::: 15730/clash udp 0 0 :::42478 ::: 15730/clash udp 0 0 :::48110 ::: 15730/clash udp 0 0 :::36590 ::: 15730/clash udp 0 0 :::57582 ::: 15730/clash udp 0 0 :::35310 ::: 15730/clash udp 0 0 :::37359 ::: 15730/clash udp 0 0 :::56047 ::: 15730/clash udp 0 0 :::44271 ::: 15730/clash udp 0 0 :::60655 ::: 15730/clash udp 0 0 :::57583 ::: 15730/clash udp 0 0 :::41455 ::: 15730/clash udp 0 0 :::51440 ::: 15730/clash udp 0 0 :::42736 ::: 15730/clash udp 0 0 :::44016 ::: 15730/clash udp 0 0 :::52464 ::: 15730/clash udp 0 0 :::46320 ::: 15730/clash udp 0 0 :::51696 ::: 15730/clash udp 0 0 :::52208 ::: 15730/clash udp 0 0 :::52209 ::: 15730/clash udp 0 0 :::53745 ::: 15730/clash udp 0 0 :::41713 ::: 15730/clash udp 0 0 :::46834 ::: 15730/clash udp 0 0 :::54770 ::: 15730/clash udp 0 0 :::38130 ::: 15730/clash udp 0 0 :::56562 ::: 15730/clash udp 0 0 :::57074 ::: 15730/clash udp 0 0 :::56563 ::: 15730/clash udp 0 0 :::34036 ::: 15730/clash udp 0 0 :::50676 ::: 15730/clash udp 0 0 :::34805 ::: 15730/clash udp 0 0 :::40437 ::: 15730/clash udp 0 0 :::44277 ::: 15730/clash udp 0 0 :::45814 ::: 15730/clash udp 0 0 :::39414 ::: 15730/clash udp 0 0 :::43254 ::: 15730/clash udp 0 0 :::42742 ::: 15730/clash udp 0 0 :::43510 ::: 15730/clash udp 0 0 :::52982 ::: 15730/clash udp 0 0 :::45558 ::: 15730/clash udp 0 0 :::33782 ::: 15730/clash udp 0 0 :::54262 ::: 15730/clash udp 0 0 :::36086 ::: 15730/clash udp 0 0 :::40950 ::: 15730/clash udp 0 0 :::52215 ::: 15730/clash udp 0 0 :::55031 ::: 15730/clash udp 0 0 :::49399 ::: 15730/clash udp 0 0 :::41719 ::: 15730/clash udp 0 0 :::54007 ::: 15730/clash udp 0 0 :::46071 ::: 15730/clash udp 0 0 :::59383 ::: 15730/clash udp 0 0 :::43767 ::: 15730/clash udp 0 0 :::52983 ::: 15730/clash udp 0 0 :::51703 ::: 15730/clash udp 0 0 :::39672 ::: 15730/clash udp 0 0 :::41208 ::: 15730/clash udp 0 0 :::37880 ::: 15730/clash udp 0 0 :::45816 ::: 15730/clash udp 0 0 :::43257 ::: 15730/clash udp 0 0 :::35321 ::: 15730/clash udp 0 0 :::41465 ::: 15730/clash udp 0 0 :::55802 ::: 15730/clash udp 0 0 :::53242 ::: 15730/clash udp 0 0 :::52218 ::: 15730/clash udp 0 0 :::51451 ::: 15730/clash udp 0 0 :::47099 ::: 15730/clash udp 0 0 :::50171 ::: 15730/clash udp 0 0 :::40955 ::: 15730/clash udp 0 0 :::57851 ::: 15730/clash udp 0 0 :::36859 ::: 15730/clash udp 0 0 :::48123 ::: 15730/clash udp 0 0 :::44283 ::: 15730/clash udp 0 0 :::53756 ::: 15730/clash udp 0 0 :::52732 ::: 15730/clash udp 0 0 :::38652 ::: 15730/clash udp 0 0 :::50428 ::: 15730/clash udp 0 0 :::59388 ::: 15730/clash udp 0 0 :::39677 ::: 15730/clash udp 0 0 :::45821 ::: 15730/clash udp 0 0 :::56061 ::: 15730/clash udp 0 0 :::57341 ::: 15730/clash udp 0 0 :::54013 ::: 15730/clash udp 0 0 :::44030 ::: 15730/clash udp 0 0 :::52222 ::: 15730/clash udp 0 0 :::42238 ::: 15730/clash udp 0 0 :::58878 ::: 15730/clash udp 0 0 :::35326 ::: 15730/clash udp 0 0 :::54015 ::: 15730/clash udp 0 0 :::48383 ::: 15730/clash udp 0 0 :::60927 ::: 15730/clash udp 0 0 :::35327 ::: 15730/clash udp 0 0 :::52991 ::: 15730/clash udp 0 0 :::35839 ::: 15730/clash udp 0 0 :::34047 ::: 15730/clash udp 0 0 :::49407 ::: 15730/clash udp 0 0 :::47103 ::: 15730/clash udp 0 0 :::41472 ::: 15730/clash udp 0 0 :::58368 ::: 15730/clash udp 0 0 :::50688 ::: 15730/clash udp 0 0 :::34816 ::: 15730/clash udp 0 0 :::44544 ::: 15730/clash udp 0 0 :::56321 ::: 15730/clash udp 0 0 :::43009 ::: 15730/clash udp 0 0 :::33537 ::: 15730/clash udp 0 0 :::53505 ::: 15730/clash udp 0 0 :::45570 ::: 15730/clash udp 0 0 :::35586 ::: 15730/clash udp 0 0 :::57602 ::: 15730/clash udp 0 0 :::51970 ::: 15730/clash udp 0 0 :::59395 ::: 15730/clash udp 0 0 :::56323 ::: 15730/clash udp 0 0 :::41987 ::: 15730/clash udp 0 0 :::58628 ::: 15730/clash udp 0 0 :::48900 ::: 15730/clash udp 0 0 :::52996 ::: 15730/clash udp 0 0 :::35588 ::: 15730/clash udp 0 0 :::34564 ::: 15730/clash udp 0 0 :::57092 ::: 15730/clash udp 0 0 :::48132 ::: 15730/clash udp 0 0 :::35077 ::: 15730/clash udp 0 0 :::52229 ::: 15730/clash udp 0 0 :::42757 ::: 15730/clash udp 0 0 :::47877 ::: 15730/clash udp 0 0 :::50693 ::: 15730/clash udp 0 0 :::46597 ::: 15730/clash udp 0 0 :::47621 ::: 15730/clash udp 0 0 :::53509 ::: 15730/clash udp 0 0 :::38149 ::: 15730/clash udp 0 0 :::36357 ::: 15730/clash udp 0 0 :::59398 ::: 15730/clash udp 0 0 :::36102 ::: 15730/clash udp 0 0 :::43782 ::: 15730/clash udp 0 0 :::50438 ::: 15730/clash udp 0 0 :::44550 ::: 15730/clash udp 0 0 :::55559 ::: 15730/clash udp 0 0 :::33287 ::: 15730/clash udp 0 0 :::60679 ::: 15730/clash udp 0 0 :::50439 ::: 15730/clash udp 0 0 :::54279 ::: 15730/clash udp 0 0 :::40455 ::: 15730/clash udp 0 0 :::34568 ::: 15730/clash udp 0 0 :::46856 ::: 15730/clash udp 0 0 :::48648 ::: 15730/clash udp 0 0 :::49928 ::: 15730/clash udp 0 0 :::55048 ::: 15730/clash udp 0 0 :::36360 ::: 15730/clash udp 0 0 :::33800 ::: 15730/clash udp 0 0 :::43528 ::: 15730/clash udp 0 0 :::43784 ::: 15730/clash udp 0 0 :::39176 ::: 15730/clash udp 0 0 :::33033 ::: 15730/clash udp 0 0 :::54537 ::: 15730/clash udp 0 0 :::45833 ::: 15730/clash udp 0 0 :::51977 ::: 15730/clash udp 0 0 :::54281 ::: 15730/clash udp 0 0 :::55817 ::: 15730/clash udp 0 0 :::41225 ::: 15730/clash udp 0 0 :::37385 ::: 15730/clash udp 0 0 :::51466 ::: 15730/clash udp 0 0 :::36106 ::: 15730/clash udp 0 0 :::46858 ::: 15730/clash udp 0 0 :::50442 ::: 15730/clash udp 0 0 :::50698 ::: 15730/clash udp 0 0 :::34570 ::: 15730/clash udp 0 0 :::46346 ::: 15730/clash udp 0 0 :::43019 ::: 15730/clash udp 0 0 :::58379 ::: 15730/clash udp 0 0 :::48651 ::: 15730/clash udp 0 0 :::34315 ::: 15730/clash udp 0 0 :::56076 ::: 15730/clash udp 0 0 :::33804 ::: 15730/clash udp 0 0 :::36364 ::: 15730/clash udp 0 0 :::33292 ::: 15730/clash udp 0 0 :::50701 ::: 15730/clash udp 0 0 :::48397 ::: 15730/clash udp 0 0 :::59149 ::: 15730/clash udp 0 0 :::53773 ::: 15730/clash udp 0 0 :::58381 ::: 15730/clash udp 0 0 :::35597 ::: 15730/clash udp 0 0 :::42509 ::: 15730/clash udp 0 0 :::55054 ::: 15730/clash udp 0 0 :::37134 ::: 15730/clash udp 0 0 :::53774 ::: 15730/clash udp 0 0 :::36366 ::: 15730/clash udp 0 0 :::53775 ::: 15730/clash udp 0 0 :::44047 ::: 15730/clash udp 0 0 :::40207 ::: 15730/clash udp 0 0 :::49167 ::: 15730/clash udp 0 0 :::46351 ::: 15730/clash udp 0 0 :::47631 ::: 15730/clash udp 0 0 :::36367 ::: 15730/clash udp 0 0 :::34831 ::: 15730/clash udp 0 0 :::52239 ::: 15730/clash udp 0 0 :::36624 ::: 15730/clash udp 0 0 :::42768 ::: 15730/clash udp 0 0 :::45584 ::: 15730/clash udp 0 0 :::45072 ::: 15730/clash udp 0 0 :::36368 ::: 15730/clash udp 0 0 :::40720 ::: 15730/clash udp 0 0 :::54288 ::: 15730/clash udp 0 0 :::36880 ::: 15730/clash udp 0 0 :::34064 ::: 15730/clash udp 0 0 :::58128 ::: 15730/clash udp 0 0 :::34832 ::: 15730/clash udp 0 0 :::42257 ::: 15730/clash udp 0 0 :::34577 ::: 15730/clash udp 0 0 :::48145 ::: 15730/clash udp 0 0 :::54290 ::: 15730/clash udp 0 0 :::42514 ::: 15730/clash udp 0 0 :::51730 ::: 15730/clash udp 0 0 :::59410 ::: 15730/clash udp 0 0 :::55058 ::: 15730/clash udp 0 0 :::50706 ::: 15730/clash udp 0 0 :::44563 ::: 15730/clash udp 0 0 :::47123 ::: 15730/clash udp 0 0 :::33043 ::: 15730/clash udp 0 0 :::34323 ::: 15730/clash udp 0 0 :::38675 ::: 15730/clash udp 0 0 :::36371 ::: 15730/clash udp 0 0 :::42515 ::: 15730/clash udp 0 0 :::45331 ::: 15730/clash udp 0 0 :::46100 ::: 15730/clash udp 0 0 :::43796 ::: 15730/clash udp 0 0 :::36372 ::: 15730/clash udp 0 0 :::37652 ::: 15730/clash udp 0 0 :::51733 ::: 15730/clash udp 0 0 :::56853 ::: 15730/clash udp 0 0 :::59157 ::: 15730/clash udp 0 0 :::40981 ::: 15730/clash udp 0 0 :::52501 ::: 15730/clash udp 0 0 :::54293 ::: 15730/clash udp 0 0 :::50709 ::: 15730/clash udp 0 0 :::33557 ::: 15730/clash udp 0 0 :::34581 ::: 15730/clash udp 0 0 :::41494 ::: 15730/clash udp 0 0 :::56086 ::: 15730/clash udp 0 0 :::54806 ::: 15730/clash udp 0 0 :::38934 ::: 15730/clash udp 0 0 :::51735 ::: 15730/clash udp 0 0 :::54295 ::: 15730/clash udp 0 0 :::42775 ::: 15730/clash udp 0 0 :::44567 ::: 15730/clash udp 0 0 :::52247 ::: 15730/clash udp 0 0 :::39703 ::: 15730/clash udp 0 0 :::49175 ::: 15730/clash udp 0 0 :::41751 ::: 15730/clash udp 0 0 :::57879 ::: 15730/clash udp 0 0 :::58392 ::: 15730/clash udp 0 0 :::44568 ::: 15730/clash udp 0 0 :::38168 ::: 15730/clash udp 0 0 :::53272 ::: 15730/clash udp 0 0 :::50456 ::: 15730/clash udp 0 0 :::34072 ::: 15730/clash udp 0 0 :::50712 ::: 15730/clash udp 0 0 :::50201 ::: 15730/clash udp 0 0 :::44825 ::: 15730/clash udp 0 0 :::42265 ::: 15730/clash udp 0 0 :::43801 ::: 15730/clash udp 0 0 :::43545 ::: 15730/clash udp 0 0 :::60185 ::: 15730/clash udp 0 0 :::38425 ::: 15730/clash udp 0 0 :::33049 ::: 15730/clash udp 0 0 :::56089 ::: 15730/clash udp 0 0 :::32794 ::: 15730/clash udp 0 0 :::45594 ::: 15730/clash udp 0 0 :::51738 ::: 15730/clash udp 0 0 :::43290 ::: 15730/clash udp 0 0 :::50458 ::: 15730/clash udp 0 0 :::53018 ::: 15730/clash udp 0 0 :::37146 ::: 15730/clash udp 0 0 :::51226 ::: 15730/clash udp 0 0 :::55323 ::: 15730/clash udp 0 0 :::56859 ::: 15730/clash udp 0 0 :::38171 ::: 15730/clash udp 0 0 :::48923 ::: 15730/clash udp 0 0 :::53276 ::: 15730/clash udp 0 0 :::53020 ::: 15730/clash udp 0 0 :::45340 ::: 15730/clash udp 0 0 :::47132 ::: 15730/clash udp 0 0 :::56860 ::: 15730/clash udp 0 0 :::44316 ::: 15730/clash udp 0 0 :::48669 ::: 15730/clash udp 0 0 :::57629 ::: 15730/clash udp 0 0 :::40733 ::: 15730/clash udp 0 0 :::38173 ::: 15730/clash udp 0 0 :::43293 ::: 15730/clash udp 0 0 :::52253 ::: 15730/clash udp 0 0 :::52765 ::: 15730/clash udp 0 0 :::36125 ::: 15730/clash udp 0 0 :::58654 ::: 15730/clash udp 0 0 :::59166 ::: 15730/clash udp 0 0 :::48158 ::: 15730/clash udp 0 0 :::59679 ::: 15730/clash udp 0 0 :::57119 ::: 15730/clash udp 0 0 :::49951 ::: 15730/clash udp 0 0 :::35103 ::: 15730/clash udp 0 0 :::58399 ::: 15730/clash udp 0 0 :::60960 ::: 15730/clash udp 0 0 :::43296 ::: 15730/clash udp 0 0 :::55328 ::: 15730/clash udp 0 0 :::33056 ::: 15730/clash udp 0 0 :::42784 ::: 15730/clash udp 0 0 :::58657 ::: 15730/clash udp 0 0 :::40481 ::: 15730/clash udp 0 0 :::45857 ::: 15730/clash udp 0 0 :::41505 ::: 15730/clash udp 0 0 :::54049 ::: 15730/clash udp 0 0 :::60193 ::: 15730/clash udp 0 0 :::57633 ::: 15730/clash udp 0 0 :::59169 ::: 15730/clash udp 0 0 :::53282 ::: 15730/clash udp 0 0 :::37922 ::: 15730/clash udp 0 0 :::46114 ::: 15730/clash udp 0 0 :::47138 ::: 15730/clash udp 0 0 :::40738 ::: 15730/clash udp 0 0 :::55586 ::: 15730/clash udp 0 0 :::41763 ::: 15730/clash udp 0 0 :::47907 ::: 15730/clash udp 0 0 :::37923 ::: 15730/clash udp 0 0 :::49187 ::: 15730/clash udp 0 0 :::42276 ::: 15730/clash udp 0 0 :::43812 ::: 15730/clash udp 0 0 :::52004 ::: 15730/clash udp 0 0 :::57380 ::: 15730/clash udp 0 0 :::48165 ::: 15730/clash udp 0 0 :::43301 ::: 15730/clash udp 0 0 :::41253 ::: 15730/clash udp 0 0 :::35110 ::: 15730/clash udp 0 0 :::56614 ::: 15730/clash udp 0 0 :::36902 ::: 15730/clash udp 0 0 :::35878 ::: 15730/clash udp 0 0 :::52774 ::: 15730/clash udp 0 0 :::54567 ::: 15730/clash udp 0 0 :::46887 ::: 15730/clash udp 0 0 :::45095 ::: 15730/clash udp 0 0 :::38183 ::: 15730/clash udp 0 0 :::35624 ::: 15730/clash udp 0 0 :::32808 ::: 15730/clash udp 0 0 :::35880 ::: 15730/clash udp 0 0 :::57896 ::: 15730/clash udp 0 0 :::56360 ::: 15730/clash udp 0 0 :::57385 ::: 15730/clash udp 0 0 :::42793 ::: 15730/clash udp 0 0 :::41001 ::: 15730/clash udp 0 0 :::44841 ::: 15730/clash udp 0 0 :::60457 ::: 15730/clash udp 0 0 :::58921 ::: 15730/clash udp 0 0 :::48170 ::: 15730/clash udp 0 0 :::60458 ::: 15730/clash udp 0 0 :::36906 ::: 15730/clash udp 0 0 :::33578 ::: 15730/clash udp 0 0 :::51498 ::: 15730/clash udp 0 0 :::45867 ::: 15730/clash udp 0 0 :::37675 ::: 15730/clash udp 0 0 :::42027 ::: 15730/clash udp 0 0 :::53035 ::: 15730/clash udp 0 0 :::50987 ::: 15730/clash udp 0 0 :::50219 ::: 15730/clash udp 0 0 :::51499 ::: 15730/clash udp 0 0 :::47659 ::: 15730/clash udp 0 0 :::60460 ::: 15730/clash udp 0 0 :::55340 ::: 15730/clash udp 0 0 :::51756 ::: 15730/clash udp 0 0 :::45356 ::: 15730/clash udp 0 0 :::47660 ::: 15730/clash udp 0 0 :::49708 ::: 15730/clash udp 0 0 :::44844 ::: 15730/clash udp 0 0 :::43052 ::: 15730/clash udp 0 0 :::41772 ::: 15730/clash udp 0 0 :::33580 ::: 15730/clash udp 0 0 :::57388 ::: 15730/clash udp 0 0 :::34860 ::: 15730/clash udp 0 0 :::55341 ::: 15730/clash udp 0 0 :::57645 ::: 15730/clash udp 0 0 :::37677 ::: 15730/clash udp 0 0 :::58413 ::: 15730/clash udp 0 0 :::36909 ::: 15730/clash udp 0 0 :::33837 ::: 15730/clash udp 0 0 :::34861 ::: 15730/clash udp 0 0 :::35118 ::: 15730/clash udp 0 0 :::33070 ::: 15730/clash udp 0 0 :::52782 ::: 15730/clash udp 0 0 :::35375 ::: 15730/clash udp 0 0 :::50735 ::: 15730/clash udp 0 0 :::60975 ::: 15730/clash udp 0 0 :::51759 ::: 15730/clash udp 0 0 :::52527 ::: 15730/clash udp 0 0 :::53295 ::: 15730/clash udp 0 0 :::47407 ::: 15730/clash udp 0 0 :::46128 ::: 15730/clash udp 0 0 :::54320 ::: 15730/clash udp 0 0 :::55344 ::: 15730/clash udp 0 0 :::41520 ::: 15730/clash udp 0 0 :::59696 ::: 15730/clash udp 0 0 :::58416 ::: 15730/clash udp 0 0 :::53552 ::: 15730/clash udp 0 0 :::34096 ::: 15730/clash udp 0 0 :::36145 ::: 15730/clash udp 0 0 :::49457 ::: 15730/clash udp 0 0 :::59441 ::: 15730/clash udp 0 0 :::42801 ::: 15730/clash udp 0 0 :::50481 ::: 15730/clash udp 0 0 :::59698 ::: 15730/clash udp 0 0 :::59954 ::: 15730/clash udp 0 0 :::51506 ::: 15730/clash udp 0 0 :::49714 ::: 15730/clash udp 0 0 :::40242 ::: 15730/clash udp 0 0 :::58675 ::: 15730/clash udp 0 0 :::48947 ::: 15730/clash udp 0 0 :::37939 ::: 15730/clash udp 0 0 :::44595 ::: 15730/clash udp 0 0 :::58163 ::: 15730/clash udp 0 0 :::57395 ::: 15730/clash udp 0 0 :::51507 ::: 15730/clash udp 0 0 :::45363 ::: 15730/clash udp 0 0 :::33075 ::: 15730/clash udp 0 0 :::58164 ::: 15730/clash udp 0 0 :::34100 ::: 15730/clash udp 0 0 :::37428 ::: 15730/clash udp 0 0 :::38196 ::: 15730/clash udp 0 0 :::33076 ::: 15730/clash udp 0 0 :::45620 ::: 15730/clash udp 0 0 :::59189 ::: 15730/clash udp 0 0 :::58933 ::: 15730/clash udp 0 0 :::53813 ::: 15730/clash udp 0 0 :::47925 ::: 15730/clash udp 0 0 :::57141 ::: 15730/clash udp 0 0 :::57909 ::: 15730/clash udp 0 0 :::40757 ::: 15730/clash udp 0 0 :::36149 ::: 15730/clash udp 0 0 :::37429 ::: 15730/clash udp 0 0 :::58677 ::: 15730/clash udp 0 0 :::57397 ::: 15730/clash udp 0 0 :::60726 ::: 15730/clash udp 0 0 :::42294 ::: 15730/clash udp 0 0 :::33590 ::: 15730/clash udp 0 0 :::38967 ::: 15730/clash udp 0 0 :::39479 ::: 15730/clash udp 0 0 :::34871 ::: 15730/clash udp 0 0 :::46647 ::: 15730/clash udp 0 0 :::38455 ::: 15730/clash udp 0 0 :::44855 ::: 15730/clash udp 0 0 :::45368 ::: 15730/clash udp 0 0 :::59448 ::: 15730/clash udp 0 0 :::43064 ::: 15730/clash udp 0 0 :::42040 ::: 15730/clash udp 0 0 :::48952 ::: 15730/clash udp 0 0 :::42552 ::: 15730/clash udp 0 0 :::34872 ::: 15730/clash udp 0 0 :::49208 ::: 15730/clash udp 0 0 :::44856 ::: 15730/clash udp 0 0 :::59961 ::: 15730/clash udp 0 0 :::57657 ::: 15730/clash udp 0 0 :::42297 ::: 15730/clash udp 0 0 :::44857 ::: 15730/clash udp 0 0 :::46137 ::: 15730/clash udp 0 0 :::45881 ::: 15730/clash udp 0 0 :::46649 ::: 15730/clash udp 0 0 :::52282 ::: 15730/clash udp 0 0 :::42298 ::: 15730/clash udp 0 0 :::35387 ::: 15730/clash udp 0 0 :::50747 ::: 15730/clash udp 0 0 :::45627 ::: 15730/clash udp 0 0 :::44603 ::: 15730/clash udp 0 0 :::48699 ::: 15730/clash udp 0 0 :::33340 ::: 15730/clash udp 0 0 :::45372 ::: 15730/clash udp 0 0 :::36156 ::: 15730/clash udp 0 0 :::42300 ::: 15730/clash udp 0 0 :::47932 ::: 15730/clash udp 0 0 :::51517 ::: 15730/clash udp 0 0 :::50493 ::: 15730/clash udp 0 0 :::58174 ::: 15730/clash udp 0 0 :::38206 ::: 15730/clash udp 0 0 :::52542 ::: 15730/clash udp 0 0 :::60478 ::: 15730/clash udp 0 0 :::41022 ::: 15730/clash udp 0 0 :::34110 ::: 15730/clash udp 0 0 :::49982 ::: 15730/clash udp 0 0 :::59966 ::: 15730/clash udp 0 0 :::57663 ::: 15730/clash udp 0 0 :::53823 ::: 15730/clash udp 0 0 :::36159 ::: 15730/clash udp 0 0 :::42559 ::: 15730/clash udp 0 0 :::43071 ::: 15730/clash udp 0 0 :::60735 ::: 15730/clash udp 0 0 :::39487 ::: 15730/clash udp 0 0 :::51520 ::: 15730/clash udp 0 0 :::48960 ::: 15730/clash udp 0 0 :::50496 ::: 15730/clash udp 0 0 :::44608 ::: 15730/clash udp 0 0 :::53056 ::: 15730/clash udp 0 0 :::41537 ::: 15730/clash udp 0 0 :::51521 ::: 15730/clash udp 0 0 :::40257 ::: 15730/clash udp 0 0 :::39233 ::: 15730/clash udp 0 0 :::39745 ::: 15730/clash udp 0 0 :::48962 ::: 15730/clash udp 0 0 :::60482 ::: 15730/clash udp 0 0 :::52802 ::: 15730/clash udp 0 0 :::49218 ::: 15730/clash udp 0 0 :::33090 ::: 15730/clash udp 0 0 :::56131 ::: 15730/clash udp 0 0 :::50755 ::: 15730/clash udp 0 0 :::55107 ::: 15730/clash udp 0 0 :::51523 ::: 15730/clash udp 0 0 :::52803 ::: 15730/clash udp 0 0 :::34116 ::: 15730/clash udp 0 0 :::48452 ::: 15730/clash udp 0 0 :::43844 ::: 15730/clash udp 0 0 :::60484 ::: 15730/clash udp 0 0 :::43332 ::: 15730/clash udp 0 0 :::55364 ::: 15730/clash udp 0 0 :::38980 ::: 15730/clash udp 0 0 :::43333 ::: 15730/clash udp 0 0 :::52037 ::: 15730/clash udp 0 0 :::54853 ::: 15730/clash udp 0 0 :::55622 ::: 15730/clash udp 0 0 :::38726 ::: 15730/clash udp 0 0 :::59206 ::: 15730/clash udp 0 0 :::59462 ::: 15730/clash udp 0 0 :::56390 ::: 15730/clash udp 0 0 :::57414 ::: 15730/clash udp 0 0 :::42566 ::: 15730/clash udp 0 0 :::52806 ::: 15730/clash udp 0 0 :::57926 ::: 15730/clash udp 0 0 :::54343 ::: 15730/clash udp 0 0 :::38983 ::: 15730/clash udp 0 0 :::36168 ::: 15730/clash udp 0 0 :::42056 ::: 15730/clash udp 0 0 :::49480 ::: 15730/clash udp 0 0 :::46920 ::: 15730/clash udp 0 0 :::56136 ::: 15730/clash udp 0 0 :::53832 ::: 15730/clash udp 0 0 :::34376 ::: 15730/clash udp 0 0 :::50248 ::: 15730/clash udp 0 0 :::42824 ::: 15730/clash udp 0 0 :::46409 ::: 15730/clash udp 0 0 :::58441 ::: 15730/clash udp 0 0 :::40521 ::: 15730/clash udp 0 0 :::58697 ::: 15730/clash udp 0 0 :::52809 ::: 15730/clash udp 0 0 :::57417 ::: 15730/clash udp 0 0 :::58953 ::: 15730/clash udp 0 0 :::45386 ::: 15730/clash udp 0 0 :::43082 ::: 15730/clash udp 0 0 :::54858 ::: 15730/clash udp 0 0 :::44618 ::: 15730/clash udp 0 0 :::33611 ::: 15730/clash udp 0 0 :::43595 ::: 15730/clash udp 0 0 :::56395 ::: 15730/clash udp 0 0 :::40524 ::: 15730/clash udp 0 0 :::38732 ::: 15730/clash udp 0 0 :::42060 ::: 15730/clash udp 0 0 :::44876 ::: 15730/clash udp 0 0 :::52556 ::: 15730/clash udp 0 0 :::44620 ::: 15730/clash udp 0 0 :::42829 ::: 15730/clash udp 0 0 :::40013 ::: 15730/clash udp 0 0 :::35149 ::: 15730/clash udp 0 0 :::53069 ::: 15730/clash udp 0 0 :::35661 ::: 15730/clash udp 0 0 :::37453 ::: 15730/clash udp 0 0 :::49741 ::: 15730/clash udp 0 0 :::33101 ::: 15730/clash udp 0 0 :::35918 ::: 15730/clash udp 0 0 :::48206 ::: 15730/clash udp 0 0 :::43342 ::: 15730/clash udp 0 0 :::57166 ::: 15730/clash udp 0 0 :::38222 ::: 15730/clash udp 0 0 :::35151 ::: 15730/clash udp 0 0 :::48719 ::: 15730/clash udp 0 0 :::54095 ::: 15730/clash udp 0 0 :::40015 ::: 15730/clash udp 0 0 :::47695 ::: 15730/clash udp 0 0 :::37456 ::: 15730/clash udp 0 0 :::54096 ::: 15730/clash udp 0 0 :::57168 ::: 15730/clash udp 0 0 :::38224 ::: 15730/clash udp 0 0 :::42833 ::: 15730/clash udp 0 0 :::59985 ::: 15730/clash udp 0 0 :::58193 ::: 15730/clash udp 0 0 :::53329 ::: 15730/clash udp 0 0 :::36433 ::: 15730/clash udp 0 0 :::43089 ::: 15730/clash udp 0 0 :::49489 ::: 15730/clash udp 0 0 :::44625 ::: 15730/clash udp 0 0 :::52561 ::: 15730/clash udp 0 0 :::37713 ::: 15730/clash udp 0 0 :::48722 ::: 15730/clash udp 0 0 :::49234 ::: 15730/clash udp 0 0 :::39762 ::: 15730/clash udp 0 0 :::41554 ::: 15730/clash udp 0 0 :::47186 ::: 15730/clash udp 0 0 :::33619 ::: 15730/clash udp 0 0 :::58195 ::: 15730/clash udp 0 0 :::37203 ::: 15730/clash udp 0 0 :::44884 ::: 15730/clash udp 0 0 :::58452 ::: 15730/clash udp 0 0 :::38484 ::: 15730/clash udp 0 0 :::55124 ::: 15730/clash udp 0 0 :::45140 ::: 15730/clash udp 0 0 :::45652 ::: 15730/clash udp 0 0 :::41812 ::: 15730/clash udp 0 0 :::57684 ::: 15730/clash udp 0 0 :::44116 ::: 15730/clash udp 0 0 :::60500 ::: 15730/clash udp 0 0 :::53332 ::: 15730/clash udp 0 0 :::53845 ::: 15730/clash udp 0 0 :::36693 ::: 15730/clash udp 0 0 :::58965 ::: 15730/clash udp 0 0 :::57941 ::: 15730/clash udp 0 0 :::38741 ::: 15730/clash udp 0 0 :::40021 ::: 15730/clash udp 0 0 :::47957 ::: 15730/clash udp 0 0 :::52822 ::: 15730/clash udp 0 0 :::34134 ::: 15730/clash udp 0 0 :::43094 ::: 15730/clash udp 0 0 :::41558 ::: 15730/clash udp 0 0 :::54614 ::: 15730/clash udp 0 0 :::38487 ::: 15730/clash udp 0 0 :::36183 ::: 15730/clash udp 0 0 :::60503 ::: 15730/clash udp 0 0 :::45655 ::: 15730/clash udp 0 0 :::54103 ::: 15730/clash udp 0 0 :::42583 ::: 15730/clash udp 0 0 :::54615 ::: 15730/clash udp 0 0 :::52055 ::: 15730/clash udp 0 0 :::58967 ::: 15730/clash udp 0 0 :::52311 ::: 15730/clash udp 0 0 :::58968 ::: 15730/clash udp 0 0 :::56664 ::: 15730/clash udp 0 0 :::44120 ::: 15730/clash udp 0 0 :::55128 ::: 15730/clash udp 0 0 :::36184 ::: 15730/clash udp 0 0 :::49497 ::: 15730/clash udp 0 0 :::49753 ::: 15730/clash udp 0 0 :::54361 ::: 15730/clash udp 0 0 :::56153 ::: 15730/clash udp 0 0 :::43610 ::: 15730/clash udp 0 0 :::47450 ::: 15730/clash udp 0 0 :::58970 ::: 15730/clash udp 0 0 :::51034 ::: 15730/clash udp 0 0 :::41562 ::: 15730/clash udp 0 0 :::54107 ::: 15730/clash udp 0 0 :::52827 ::: 15730/clash udp 0 0 :::46171 ::: 15730/clash udp 0 0 :::46427 ::: 15730/clash udp 0 0 :::60507 ::: 15730/clash udp 0 0 :::44636 ::: 15730/clash udp 0 0 :::42588 ::: 15730/clash udp 0 0 :::52316 ::: 15730/clash udp 0 0 :::58716 ::: 15730/clash udp 0 0 :::55901 ::: 15730/clash udp 0 0 :::42845 ::: 15730/clash udp 0 0 :::60765 ::: 15730/clash udp 0 0 :::52317 ::: 15730/clash udp 0 0 :::43102 ::: 15730/clash udp 0 0 :::46942 ::: 15730/clash udp 0 0 :::50014 ::: 15730/clash udp 0 0 :::36190 ::: 15730/clash udp 0 0 :::40031 ::: 15730/clash udp 0 0 :::40543 ::: 15730/clash udp 0 0 :::35935 ::: 15730/clash udp 0 0 :::58975 ::: 15730/clash udp 0 0 :::41568 ::: 15730/clash udp 0 0 :::34144 ::: 15730/clash udp 0 0 :::35168 ::: 15730/clash udp 0 0 :::53344 ::: 15730/clash udp 0 0 :::53600 ::: 15730/clash udp 0 0 :::33376 ::: 15730/clash udp 0 0 :::46688 ::: 15730/clash udp 0 0 :::54881 ::: 15730/clash udp 0 0 :::47457 ::: 15730/clash udp 0 0 :::42593 ::: 15730/clash udp 0 0 :::32865 ::: 15730/clash udp 0 0 :::43105 ::: 15730/clash udp 0 0 :::34145 ::: 15730/clash udp 0 0 :::58209 ::: 15730/clash udp 0 0 :::33377 ::: 15730/clash udp 0 0 :::49250 ::: 15730/clash udp 0 0 :::37730 ::: 15730/clash udp 0 0 :::41826 ::: 15730/clash udp 0 0 :::36706 ::: 15730/clash udp 0 0 :::46434 ::: 15730/clash udp 0 0 :::49762 ::: 15730/clash udp 0 0 :::47971 ::: 15730/clash udp 0 0 :::58467 ::: 15730/clash udp 0 0 :::50019 ::: 15730/clash udp 0 0 :::56419 ::: 15730/clash udp 0 0 :::55907 ::: 15730/clash udp 0 0 :::40035 ::: 15730/clash udp 0 0 :::42851 ::: 15730/clash udp 0 0 :::33635 ::: 15730/clash udp 0 0 :::56164 ::: 15730/clash udp 0 0 :::35940 ::: 15730/clash udp 0 0 :::58981 ::: 15730/clash udp 0 0 :::38501 ::: 15730/clash udp 0 0 :::50533 ::: 15730/clash udp 0 0 :::50789 ::: 15730/clash udp 0 0 :::59493 ::: 15730/clash udp 0 0 :::52326 ::: 15730/clash udp 0 0 :::37734 ::: 15730/clash udp 0 0 :::53606 ::: 15730/clash udp 0 0 :::48742 ::: 15730/clash udp 0 0 :::54886 ::: 15730/clash udp 0 0 :::53094 ::: 15730/clash udp 0 0 :::50791 ::: 15730/clash udp 0 0 :::58727 ::: 15730/clash udp 0 0 :::36711 ::: 15730/clash udp 0 0 :::56167 ::: 15730/clash udp 0 0 :::43623 ::: 15730/clash udp 0 0 :::57704 ::: 15730/clash udp 0 0 :::52072 ::: 15730/clash udp 0 0 :::53352 ::: 15730/clash udp 0 0 :::36712 ::: 15730/clash udp 0 0 :::53864 ::: 15730/clash udp 0 0 :::37992 ::: 15730/clash udp 0 0 :::50025 ::: 15730/clash udp 0 0 :::54633 ::: 15730/clash udp 0 0 :::58473 ::: 15730/clash udp 0 0 :::38505 ::: 15730/clash udp 0 0 :::33386 ::: 15730/clash udp 0 0 :::50282 ::: 15730/clash udp 0 0 :::44394 ::: 15730/clash udp 0 0 :::53098 ::: 15730/clash udp 0 0 :::58730 ::: 15730/clash udp 0 0 :::35946 ::: 15730/clash udp 0 0 :::51819 ::: 15730/clash udp 0 0 :::44395 ::: 15730/clash udp 0 0 :::33643 ::: 15730/clash udp 0 0 :::39019 ::: 15730/clash udp 0 0 :::56427 ::: 15730/clash udp 0 0 :::60011 ::: 15730/clash udp 0 0 :::42603 ::: 15730/clash udp 0 0 :::44140 ::: 15730/clash udp 0 0 :::42348 ::: 15730/clash udp 0 0 :::55660 ::: 15730/clash udp 0 0 :::53100 ::: 15730/clash udp 0 0 :::41836 ::: 15730/clash udp 0 0 :::55916 ::: 15730/clash udp 0 0 :::36717 ::: 15730/clash udp 0 0 :::60781 ::: 15730/clash udp 0 0 :::55661 ::: 15730/clash udp 0 0 :::60013 ::: 15730/clash udp 0 0 :::42349 ::: 15730/clash udp 0 0 :::45165 ::: 15730/clash udp 0 0 :::54637 ::: 15730/clash udp 0 0 :::41581 ::: 15730/clash udp 0 0 :::53869 ::: 15730/clash udp 0 0 :::32878 ::: 15730/clash udp 0 0 :::48238 ::: 15730/clash udp 0 0 :::43374 ::: 15730/clash udp 0 0 :::55150 ::: 15730/clash udp 0 0 :::58222 ::: 15730/clash udp 0 0 :::56174 ::: 15730/clash udp 0 0 :::50030 ::: 15730/clash udp 0 0 :::58990 ::: 15730/clash udp 0 0 :::34926 ::: 15730/clash udp 0 0 :::53615 ::: 15730/clash udp 0 0 :::45679 ::: 15730/clash udp 0 0 :::42863 ::: 15730/clash udp 0 0 :::39279 ::: 15730/clash udp 0 0 :::36464 ::: 15730/clash udp 0 0 :::56944 ::: 15730/clash udp 0 0 :::60528 ::: 15730/clash udp 0 0 :::58224 ::: 15730/clash udp 0 0 :::58225 ::: 15730/clash udp 0 0 :::34929 ::: 15730/clash udp 0 0 :::57713 ::: 15730/clash udp 0 0 :::50033 ::: 15730/clash udp 0 0 :::57457 ::: 15730/clash udp 0 0 :::50801 ::: 15730/clash udp 0 0 :::43634 ::: 15730/clash udp 0 0 :::36210 ::: 15730/clash udp 0 0 :::38770 ::: 15730/clash udp 0 0 :::46707 ::: 15730/clash udp 0 0 :::58483 ::: 15730/clash udp 0 0 :::42355 ::: 15730/clash udp 0 0 :::33907 :::* 15730/clash

===================== 测试本机DNS查询(www.baidu.com) =====================

Server: 127.0.0.1 Address: 127.0.0.1#53

Name: www.baidu.com Address 1: 198.18.0.9 *** Can't find www.baidu.com: No answer

===================== 测试内核DNS查询(www.instagram.com) =====================

Status: 0 TC: false RD: true RA: true AD: false CD: false

Question: Name: www.instagram.com. Qtype: 1 Qclass: 1

Answer: TTL: 3589 data: z-p42-instagram.c10r.instagram.com. name: www.instagram.com. type: 5

TTL: 49 data: 163.70.158.174 name: z-p42-instagram.c10r.instagram.com. type: 1

Dnsmasq 当前默认 resolv 文件:/tmp/resolv.conf.d/resolv.conf.auto

===================== /tmp/resolv.conf.auto =====================

Interface wan

nameserver 210.22.70.225 nameserver 210.22.70.3

Interface wan2

nameserver 116.228.111.118 nameserver 180.168.255.18

===================== /tmp/resolv.conf.d/resolv.conf.auto =====================

Interface wan

nameserver 210.22.70.225 nameserver 210.22.70.3

Interface wan2

nameserver 116.228.111.118 nameserver 180.168.255.18

===================== 测试本机网络连接(www.baidu.com) =====================

HTTP/1.1 200 OK Accept-Ranges: bytes Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform Connection: keep-alive Content-Length: 277 Content-Type: text/html Date: Sun, 31 Mar 2024 04:07:27 GMT Etag: "575e1f71-115" Last-Modified: Mon, 13 Jun 2016 02:50:25 GMT Pragma: no-cache Server: bfe/1.0.8.18

===================== 测试本机网络下载(raw.githubusercontent.com) =====================

HTTP/2 404 content-security-policy: default-src 'none'; style-src 'unsafe-inline'; sandbox strict-transport-security: max-age=31536000 x-content-type-options: nosniff x-frame-options: deny x-xss-protection: 1; mode=block content-type: text/plain; charset=utf-8 x-github-request-id: D818:351829:B88CBA:CABD54:6608E144 accept-ranges: bytes date: Sun, 31 Mar 2024 04:07:27 GMT via: 1.1 varnish x-served-by: cache-nrt-rjtf7700034-NRT x-cache: HIT x-cache-hits: 1 x-timer: S1711858048.576602,VS0,VE1 vary: Authorization,Accept-Encoding,Origin access-control-allow-origin: * cross-origin-resource-policy: cross-origin x-fastly-request-id: 92f1222b3b80bfb258b3588d6662acf735472643 expires: Sun, 31 Mar 2024 04:12:27 GMT source-age: 58 content-length: 14

===================== 最近运行日志(自动切换为Debug模式) =====================

time="2024-03-31T04:07:29.624993198Z" level=debug msg="[DNS] cache hit for ssl.gstatic.com., expire at 2024-03-31 04:11:04" time="2024-03-31T04:07:29.625341106Z" level=debug msg="[Rule] use default rules" time="2024-03-31T04:07:29.625549096Z" level=debug msg="[DNS] cache hit for ssl.gstatic.com., expire at 2024-03-31 04:11:04" time="2024-03-31T04:07:29.625599611Z" level=debug msg="[DNS] ssl.gstatic.com --> 216.58.200.227" time="2024-03-31T04:07:29.625817997Z" level=debug msg="[DNS] cache hit for ssl.gstatic.com., expire at 2024-03-31 04:11:04" time="2024-03-31T04:07:29.879238268Z" level=debug msg="[DNS] resolve ix-truenas.lan from tls://dot.tiar.app:853" time="2024-03-31T04:07:29.87950663Z" level=debug msg="[DNS] cache hit for dot.tiar.app., expire at 2024-03-31 04:17:00" time="2024-03-31T04:07:29.879727249Z" level=debug msg="[DNS] cache hit for cn1.one.edu.kg., expire at 2024-03-31 04:07:46" time="2024-03-31T04:07:29.879936394Z" level=debug msg="[DNS] resolve ix-truenas.lan from tls://jp.tiar.app:853" time="2024-03-31T04:07:29.880027105Z" level=debug msg="[DNS] cache hit for jp.tiar.app., expire at 2024-03-31 08:57:35" time="2024-03-31T04:07:29.88010796Z" level=debug msg="[DNS] cache hit for cn1.one.edu.kg., expire at 2024-03-31 04:07:46" time="2024-03-31T04:07:29.880236404Z" level=debug msg="[DNS] resolve ix-truenas.lan from https://dns.cloudflare.com:443/dns-query" time="2024-03-31T04:07:29.880292618Z" level=debug msg="creating a new http client" time="2024-03-31T04:07:29.880347522Z" level=debug msg="[DNS] cache hit for dns.cloudflare.com., expire at 2024-03-31 04:12:03"

===================== 最近运行日志获取完成(自动切换为silent模式) =====================

===================== 活动连接信息 =====================

  1. SourceIP:【192.168.0.189】 - Host:【Empty】 - DestinationIP:【111.202.1.244】 - Network:【tcp】 - RulePayload:【cn】 - Lastchain:【DIRECT】
  2. SourceIP:【192.168.0.180】 - Host:【chat.google.com】 - DestinationIP:【142.250.66.142】 - Network:【tcp】 - RulePayload:【443】 - Lastchain:【香港 03】
  3. SourceIP:【192.168.0.180】 - Host:【mail.google.com】 - DestinationIP:【142.251.220.101】 - Network:【tcp】 - RulePayload:【443】 - Lastchain:【香港 03】
  4. SourceIP:【192.168.0.207】 - Host:【china3.one.edu.kg】 - DestinationIP:【116.148.200.169】 - Network:【tcp】 - RulePayload:【cn】 - Lastchain:【DIRECT】
  5. SourceIP:【192.168.0.180】 - Host:【assets.msn.cn】 - DestinationIP:【61.147.228.139】 - Network:【tcp】 - RulePayload:【cn】 - Lastchain:【DIRECT】
  6. SourceIP:【192.168.0.207】 - Host:【china3.one.edu.kg】 - DestinationIP:【123.157.129.110】 - Network:【tcp】 - RulePayload:【cn】 - Lastchain:【DIRECT】
  7. SourceIP:【192.168.0.236】 - Host:【Empty】 - DestinationIP:【36.156.49.114】 - Network:【udp】 - RulePayload:【cn】 - Lastchain:【DIRECT】
  8. SourceIP:【192.168.0.229】 - Host:【api.weather.com】 - DestinationIP:【23.195.91.121】 - Network:【tcp】 - RulePayload:【443】 - Lastchain:【香港 03】
  9. SourceIP:【192.168.0.180】 - Host:【ocsp.digicert.com】 - DestinationIP:【152.195.38.76】 - Network:【tcp】 - RulePayload:【80】 - Lastchain:【香港 03】


### OpenClash Config

_No response_

### Expected Behavior

希望能正常调用rule-set

### Additional Context

_No response_