From b8b0043b8ed4980f453072cda9c85ecd8e01d505 Mon Sep 17 00:00:00 2001 From: SukkaW Date: Tue, 23 Apr 2024 16:32:40 +0800 Subject: [PATCH] Fix: CN CIDR includes Azure China --- Build/constants/cidr.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Build/constants/cidr.ts b/Build/constants/cidr.ts index cb0734b0..2d0fa347 100644 --- a/Build/constants/cidr.ts +++ b/Build/constants/cidr.ts @@ -24,6 +24,10 @@ export const NON_CN_CIDR_INCLUDED_IN_CHNROUTE = [ '223.120.0.0/15' ]; +// https://github.com/misakaio/chnroutes2/issues/46 export const CN_CIDR_NOT_INCLUDED_IN_CHNROUTE = [ - '211.99.96.0/19' // wy.com.cn + '211.99.96.0/19', // wy.com.cn + '139.217.0.0/16', // AS58593, Azure China, Shanghai + '139.219.0.0/16', // AS58593, Azure China, Shanghai + '143.64.0.0/16' // AS58593, Azure China, Beijing ];