From fae4e6b247c04eeccc6608ae1fc93ebc63404634 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sat, 27 Apr 2024 11:12:50 +0100 Subject: [PATCH] Blackhole unreachable Amazon IPv6 block on equinix machines --- roles/equinix-ams.rb | 5 ++++- roles/equinix-dub.rb | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/roles/equinix-ams.rb b/roles/equinix-ams.rb index 7923e09d4..2ed34454d 100644 --- a/roles/equinix-ams.rb +++ b/roles/equinix-ams.rb @@ -21,7 +21,10 @@ default_attributes( }, :inet6 => { :prefix => "64", - :gateway => "2001:470:1:fa1::1" + :gateway => "2001:470:1:fa1::1", + :routes => { + "2600:9000::/28" => { :type => "unreachable" } + } } } } diff --git a/roles/equinix-dub.rb b/roles/equinix-dub.rb index e24d71a1f..0974d04c8 100644 --- a/roles/equinix-dub.rb +++ b/roles/equinix-dub.rb @@ -30,7 +30,10 @@ default_attributes( }, :inet6 => { :prefix => "64", - :gateway => "2001:470:1:b3b::1" + :gateway => "2001:470:1:b3b::1", + :routes => { + "2600:9000::/28" => { :type => "unreachable" } + } } } } -- 2.45.1