From e397f006ac6cacb175c27f81b86ce5d90e39e7c3 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 31 Dec 2024 22:21:06 +0000 Subject: [PATCH] Send traffic for RFC1918 addresses to the main routing table --- roles/equinix-dub.rb | 7 +++++++ 1 file changed, 7 insertions(+) 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 } -- 2.39.5