Open up some more ports in firewall

From some manual playing around.
This commit is contained in:
Basti 2019-02-28 17:19:06 +07:00
parent b661f6780c
commit 0ea1971b6c
No known key found for this signature in database
GPG Key ID: BE4634D632D39B67

View File

@ -10,7 +10,7 @@
# Temporary extra rules for Andromeda # Temporary extra rules for Andromeda
firewall_rule 'ejabberd' do firewall_rule 'ejabberd' do
port [5222, 5269, 5280] port [5222, 5269, 5280, 5443, 5444]
protocol :tcp protocol :tcp
command :allow command :allow
end end
@ -21,14 +21,21 @@ firewall_rule 'bitcoind' do
command :allow command :allow
end end
firewall_rule 'lightning' do firewall_rule 'lnd' do
port [9735, 9736] port [9736]
# port [9736, 8002]
protocol :tcp protocol :tcp
command :allow command :allow
end end
firewall_rule 'ltcd' do firewall_rule 'lightningd' do
port 9333 port [9735]
protocol :tcp
command :allow
end
firewall_rule 'spark_wallet' do
port 8008
protocol :tcp protocol :tcp
command :allow command :allow
end end