From 0ea1971b6c8396ad30b1154e5f16009eb33c3430 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Thu, 28 Feb 2019 17:19:06 +0700 Subject: [PATCH] Open up some more ports in firewall From some manual playing around. --- .../kosmos-base/recipes/andromeda_firewall.rb | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/site-cookbooks/kosmos-base/recipes/andromeda_firewall.rb b/site-cookbooks/kosmos-base/recipes/andromeda_firewall.rb index 6b5c459..48ad26e 100644 --- a/site-cookbooks/kosmos-base/recipes/andromeda_firewall.rb +++ b/site-cookbooks/kosmos-base/recipes/andromeda_firewall.rb @@ -10,7 +10,7 @@ # Temporary extra rules for Andromeda firewall_rule 'ejabberd' do - port [5222, 5269, 5280] + port [5222, 5269, 5280, 5443, 5444] protocol :tcp command :allow end @@ -21,14 +21,21 @@ firewall_rule 'bitcoind' do command :allow end -firewall_rule 'lightning' do - port [9735, 9736] +firewall_rule 'lnd' do + port [9736] + # port [9736, 8002] protocol :tcp command :allow end -firewall_rule 'ltcd' do - port 9333 +firewall_rule 'lightningd' do + port [9735] + protocol :tcp + command :allow +end + +firewall_rule 'spark_wallet' do + port 8008 protocol :tcp command :allow end