* [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
* [PATCH 2/4] location-importer: DELETE other unroutable IPv4 networks
2020-05-13 19:32 [PATCH 1/4] location-importer: DELETE local loopback address space Peter Müller
@ 2020-05-13 19:33 ` Peter Müller
2020-05-13 19:33 ` [PATCH 3/4] location-importer: DELETE "current network" address space Peter Müller
0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2020-05-13 19:33 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 1796 bytes --]
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/python/location-importer.in | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index c751332..91abf3e 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -520,6 +520,22 @@ class CLI(object):
DELETE FROM announcements WHERE family(network) = 4 AND network <<= '172.16.0.0/12';
DELETE FROM announcements WHERE family(network) = 4 AND network <<= '192.168.0.0/16';
+ -- DELETE test, benchmark and documentation address space
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '192.0.0.0/24';
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '192.0.2.0/24';
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '198.18.0.0/15';
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '198.51.100.0/24';
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '203.0.113.0/24';
+
+ -- DELETE CGNAT address space (RFC 6598)
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '100.64.0.0/10';
+
+ -- DELETE link local address space
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '169.254.0.0/16';
+
+ -- DELETE IPv6 to IPv4 (6to4) address space
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '192.88.99.0/24';
+
-- Delete networks that are too small to be in the global routing table
DELETE FROM announcements WHERE family(network) = 6 AND masklen(network) > 48;
DELETE FROM announcements WHERE family(network) = 4 AND masklen(network) > 24;
--
2.26.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 3/4] location-importer: DELETE "current network" address space
2020-05-13 19:33 ` [PATCH 2/4] location-importer: DELETE other unroutable IPv4 networks Peter Müller
@ 2020-05-13 19:33 ` Peter Müller
2020-05-13 19:33 ` [PATCH 4/4] location-importer: DELETE multicast and "reserved for future usage" " Peter Müller
0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2020-05-13 19:33 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 1196 bytes --]
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/python/location-importer.in | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index 91abf3e..53c5cfe 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -512,10 +512,13 @@ 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 "current network" address space
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '0.0.0.0/8';
+
-- DELETE local loopback address space
DELETE FROM announcements WHERE family(network) = 4 AND network <<= '127.0.0.0/8';
- -- DELETE RFC1918 address space
+ -- DELETE RFC 1918 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';
DELETE FROM announcements WHERE family(network) = 4 AND network <<= '192.168.0.0/16';
--
2.26.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 4/4] location-importer: DELETE multicast and "reserved for future usage" address space
2020-05-13 19:33 ` [PATCH 3/4] location-importer: DELETE "current network" address space Peter Müller
@ 2020-05-13 19:33 ` Peter Müller
0 siblings, 0 replies; 4+ messages in thread
From: Peter Müller @ 2020-05-13 19:33 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 1021 bytes --]
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/python/location-importer.in | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index 53c5cfe..79a024c 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -539,6 +539,10 @@ class CLI(object):
-- DELETE IPv6 to IPv4 (6to4) address space
DELETE FROM announcements WHERE family(network) = 4 AND network <<= '192.88.99.0/24';
+ -- DELETE multicast and reserved address space
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '224.0.0.0/4';
+ DELETE FROM announcements WHERE family(network) = 4 AND network <<= '240.0.0.0/4';
+
-- Delete networks that are too small to be in the global routing table
DELETE FROM announcements WHERE family(network) = 6 AND masklen(network) > 48;
DELETE FROM announcements WHERE family(network) = 4 AND masklen(network) > 24;
--
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