public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/4] location-importer: DELETE local loopback address space
@ 2020-05-13 19:32 Peter Müller
  2020-05-13 19:33 ` [PATCH 2/4] location-importer: DELETE other unroutable IPv4 networks Peter Müller
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2020-05-13 19:32 UTC (permalink / raw)
  To: location

[-- Attachment #1: Type: text/plain, Size: 1075 bytes --]

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üller <peter.mueller(a)ipfire.org>
---
 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) = 6 AND NOT network <<= '2000::/3';
 
+					-- DELETE local loopback address space
+					DELETE FROM announcements WHERE family(network) = 4 AND network <<= '127.0.0.0/8';
+
 					-- DELETE RFC1918 address space
 					DELETE FROM announcements WHERE family(network) = 4 AND network <<= '10.0.0.0/8';
 					DELETE FROM announcements WHERE family(network) = 4 AND network <<= '172.16.0.0/12';
-- 
2.26.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-13 19:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-13 19:32 [PATCH 1/4] location-importer: DELETE local loopback address space Peter Müller
2020-05-13 19:33 ` [PATCH 2/4] location-importer: DELETE other unroutable IPv4 networks Peter Müller
2020-05-13 19:33   ` [PATCH 3/4] location-importer: DELETE "current network" address space Peter Müller
2020-05-13 19:33     ` [PATCH 4/4] location-importer: DELETE multicast and "reserved for future usage" " Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox