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 1/4] location-importer: DELETE local loopback address space Date: Wed, 13 May 2020 19:32:51 +0000 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5730660028096881599==" List-Id: --===============5730660028096881599== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This should never appear in public BGP data, but since people tend to do really strange things on the interent, it's better to delete 127.0.0.0/8 data, just in case. Signed-off-by: Peter M=C3=BCller --- src/python/location-importer.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/python/location-importer.in b/src/python/location-importer.in index 08c9ed7..c751332 100644 --- a/src/python/location-importer.in +++ b/src/python/location-importer.in @@ -512,6 +512,9 @@ class CLI(object): -- Delete anything that is not global unicast address space DELETE FROM announcements WHERE family(network) =3D 6 AND NOT network <= <=3D '2000::/3'; =20 + -- DELETE local loopback address space + DELETE FROM announcements WHERE family(network) =3D 4 AND network <<=3D= '127.0.0.0/8'; + -- DELETE RFC1918 address space DELETE FROM announcements WHERE family(network) =3D 4 AND network <<=3D= '10.0.0.0/8'; DELETE FROM announcements WHERE family(network) =3D 4 AND network <<=3D= '172.16.0.0/12'; --=20 2.26.1 --===============5730660028096881599==--