Fix IPFS node connectivity from the outside as well as the private network #442
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "bugfix/ipfs_connectivity"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The problem was the configured address filters for local networks. I used both firewall rules as well as new filters to allow dialing out on 10.1.1.0/24, but not other 10.0.0.0/8 subnet.
You can verify this by connecting to the
ipfs-1
like this e.g.:refs kredits/meta#10
@ -17,1 +18,4 @@
end
firewall_rule 'ipfs_api' do
port 5001
Could use the new
node['kosmos-ipfs']['api']['port']
attribute you created above instead of the hardcoded value👍