Hacker News new | ask | show | jobs
by oblio 3067 days ago
> What mechanisms, if any, exists to prevent unlawful content from being uploaded to it?

Probably the same ones used against P2P, lawsuits and pressure on national governments to crack down against the offenders :)

1 comments

So there is a way to figure out who is downloading what on IPFS? (At least assuming that you have assets comparable to national governments.)
Yeah, the nodes connect via IP addresses. You could proxy it through Tor or something though.
As far as I understand it, proxying it is dangerous because IPFS will announce all your IPs so that the shortest routes can be established. You probably need to run it in a VM/container that only has access to Tor and no other network adapter.
Ah, good to know.

I love the idea behind IPFS but it just doesn't feel mature enough yet. The documentation, examples, consistent APIs, etc, don't seem very solidified.

Thanks! We're hard at work making everything better, especially the documentation and examples bit, but lots of work on the APIs as well.

If you have anything concrete to suggest or help out with, please open up a issue in the relevant repository, this would be the entrypoint to find your way around in our Github organization: https://github.com/ipfs/ipfs

Disclaimer: I work for Protocol Labs on IPFS

I want to contribute, experienced senior web dev. Where do I get started?
> announce all your IPs

That's configurable. Check the format for the config here: https://github.com/ipfs/go-ipfs/blob/master/docs/config.md#a...

Keyword being `Announce` and `NoAnnounce`

It's pretty easy to configure ipfs to not advertise internal IP addresses.

Though it really should be the default behavior.