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