From: "Peter Müller" <peter.mueller@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH 2/4] location-importer: DELETE other unroutable IPv4 networks
Date: Wed, 13 May 2020 19:33:13 +0000 [thread overview]
Message-ID: <46f10017-357f-fd8a-5dc6-eec8da9941a2@ipfire.org> (raw)
In-Reply-To: <ee568fba-7c8e-6e0f-4194-c2f4669382eb@ipfire.org>
[-- 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
next prev parent reply other threads:[~2020-05-13 19:33 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
2020-05-13 19:33 ` [PATCH 3/4] location-importer: DELETE "current network" " Peter Müller
2020-05-13 19:33 ` [PATCH 4/4] location-importer: DELETE multicast and "reserved for future usage" " Peter Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=46f10017-357f-fd8a-5dc6-eec8da9941a2@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=location@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox