From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: location@lists.ipfire.org Subject: [PATCH] location-importer: Improve regex for catching historic/orphaned data Date: Sun, 12 Dec 2021 10:05:15 +0100 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4252142977265626392==" List-Id: --===============4252142977265626392== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This silences a bunch of warnings due to allocations at APNIC having country code set to "ZZ", which are completely irrelevant to us. Signed-off-by: Peter M=C3=BCller --- src/python/location-importer.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/location-importer.in b/src/python/location-importer.in index b791b4d..b066ac6 100644 --- a/src/python/location-importer.in +++ b/src/python/location-importer.in @@ -671,7 +671,7 @@ class CLI(object): # Filter any inetnum records which are only referring to IP space # not managed by that specific RIR... if key =3D=3D "netname": - if re.match(r"(ERX-NETBLOCK|(AFRINIC|ARIN|LACNIC|RIPE)-CIDR-BLOCK|IANA-N= ETBLOCK-\d{1,3}|NON-RIPE-NCC-MANAGED-ADDRESS-BLOCK)", val.strip()): + if re.match(r"^(ERX-NETBLOCK|(AFRINIC|ARIN|LACNIC|RIPE)-CIDR-BLOCK|IANA-= NETBLOCK-\d{1,3}|NON-RIPE-NCC-MANAGED-ADDRESS-BLOCK|STUB-[\d-]{3,}SLASH\d{1,2= })", val.strip()): log.debug("Skipping record indicating historic/orphaned data: %s" % val= .strip()) return =20 --=20 2.26.2 --===============4252142977265626392==--