From a6d83f5720ffb1a21c037b9449e5af409ca8b5d5 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Sat, 5 May 2018 17:25:10 +0200 Subject: [PATCH] Allow incoming traffic for IPFS --- site-cookbooks/kosmos-hubot/recipes/default.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/site-cookbooks/kosmos-hubot/recipes/default.rb b/site-cookbooks/kosmos-hubot/recipes/default.rb index 2245c10..12cd463 100644 --- a/site-cookbooks/kosmos-hubot/recipes/default.rb +++ b/site-cookbooks/kosmos-hubot/recipes/default.rb @@ -14,6 +14,11 @@ unless node.chef_environment == "development" protocol :tcp command :allow end + firewall_rule 'ipfs_swarm_p2p' do + port 4001 + protocol :tcp + command :allow + end end include_recipe "kosmos-nodejs"