From 9a2e8e9aab80d85b01dadfb396fe76f5baee431c Mon Sep 17 00:00:00 2001 From: VendettaReborn Date: Thu, 28 Mar 2024 10:40:04 +0800 Subject: [PATCH] update reserved addrs for tproxy --- clash_lib/src/proxy/tproxy/iptables.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/clash_lib/src/proxy/tproxy/iptables.rs b/clash_lib/src/proxy/tproxy/iptables.rs index 28de8563c..a3eff058f 100644 --- a/clash_lib/src/proxy/tproxy/iptables.rs +++ b/clash_lib/src/proxy/tproxy/iptables.rs @@ -115,10 +115,17 @@ const DEFAULT_TPROXY_MARK_MUSK: &str = "0x1/0x1"; const RESERVED_ADDRS: &[&str] = &[ "0/8", "10/8", + "100.64/10", "127/8", - "172.16/12", "169.254/16", + "172.16/12", + "192/24", + "192.0.2.0/24", + "192.88.99/24", "192.168/16", + "198.18/15", + "198.51.100/24", + "203.0.113/24", "224/4", "240/4", "255.255.255.255/32",