Commit b4d5b2a6 authored by Peter Müller's avatar Peter Müller Committed by Michael Tremer

location-importer.in: delete 6to4 IPv6 space as well

2002::/16 is an anycast prefix for 6to4 scenarios, as specified in RFC
3068. We currently process an announcement from Hurricane Electric for
it, and since it is an anycast network, multiple entities across the
world announce it as well.

Thereof, it does not make sense to include it in the database - as of
today, we do not have a country for it, either.
Signed-off-by: default avatarPeter Müller <peter.mueller@ipfire.org>
Signed-off-by: default avatarMichael Tremer <michael.tremer@ipfire.org>
parent 03d24a9b
......@@ -768,8 +768,9 @@ class CLI(object):
-- 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 IPv6 to IPv4 (6to4) address space (RFC 3068)
DELETE FROM announcements WHERE family(network) = 4 AND network <<= '192.88.99.0/24';
DELETE FROM announcements WHERE family(network) = 6 AND network <<= '2002::/16';
-- DELETE multicast and reserved address space
DELETE FROM announcements WHERE family(network) = 4 AND network <<= '224.0.0.0/4';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment