From d6b7ae64040ed7646217b61202317d02f6d2e6b3 Mon Sep 17 00:00:00 2001 From: seck Date: Thu, 19 Dec 2024 15:34:58 +0800 Subject: [PATCH] Update default.sing-box.json The inet4_address and inet6_address types have been consolidated into a unified address type, in alignment with the official documentation. --- resources/rules/default.sing-box.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/resources/rules/default.sing-box.json b/resources/rules/default.sing-box.json index 1cf83a8..b762ef6 100644 --- a/resources/rules/default.sing-box.json +++ b/resources/rules/default.sing-box.json @@ -49,8 +49,10 @@ "auto_route": true, "domain_strategy": "prefer_ipv4", "endpoint_independent_nat": true, - "inet4_address": "172.19.0.1/30", - "inet6_address": "2001:0470:f9da:fdfa::1/64", + "address": [ + "172.19.0.1/30", + "2001:0470:f9da:fdfa::1/64" + ], "mtu": 9000, "sniff": true, "sniff_override_destination": true,