From d8e60aa3559681902981a94af3e9d8b99142e8af Mon Sep 17 00:00:00 2001 From: ChsBuffer <33744752+chsbuffer@users.noreply.github.com> Date: Tue, 1 Jun 2021 18:33:51 +0800 Subject: [PATCH] Update V2rayConfigUtils --- Netch/Servers/V2ray/Utils/V2rayConfigUtils.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Netch/Servers/V2ray/Utils/V2rayConfigUtils.cs b/Netch/Servers/V2ray/Utils/V2rayConfigUtils.cs index fbc182f5..2cf6f080 100644 --- a/Netch/Servers/V2ray/Utils/V2rayConfigUtils.cs +++ b/Netch/Servers/V2ray/Utils/V2rayConfigUtils.cs @@ -68,10 +68,10 @@ namespace Netch.Servers.V2ray.Utils if (mode.Type is ModeType.Process or ModeType.ProxyRuleIPs or ModeType.BypassRuleIPs) { + blockRuleObject.ip.Add("0.0.0.0/8"); blockRuleObject.ip.Add("224.0.0.0/4"); - blockRuleObject.ip.Add("240.0.0.0/4"); blockRuleObject.ip.Add("255.255.255.255/32"); - blockRuleObject.ip.Add("fc00::/7"); + blockRuleObject.ip.Add("fc00::/8"); } static bool CheckRuleItem(ref RulesItem rulesItem)