From: Tom Hughes Date: Tue, 31 Dec 2024 22:21:06 +0000 (+0000) Subject: Send traffic for RFC1918 addresses to the main routing table X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain Send traffic for RFC1918 addresses to the main routing table --- diff --git a/roles/equinix-dub.rb b/roles/equinix-dub.rb index 6561d3019..9652c2c8c 100644 --- a/roles/equinix-dub.rb +++ b/roles/equinix-dub.rb @@ -24,6 +24,13 @@ default_attributes( }, :external => { :zone => "dub", + :inet => { + :rules => [ + { :to => "10.0.0.0/8", :table => "main", :priority => 50 }, + { :to => "172.16.0.0/12", :table => "main", :priority => 50 }, + { :to => "192.168.0.0/16", :table => "main", :priority => 50 } + ] + }, :inet6 => { :rules => [ { :to => "2600:9000::/28", :table => 150, :priority => 100 }