Is IPFS mature and reliable? Genuine question. I've always been curious about, but never had a need for it. Since it didn't take over the world as we know it, I believe something must be missing yet.
It's a fancy version of Bittorrent.
IPFS-tiny: attempting to take IPFS to Space
11–17 of 17 posts
Re: IPFS-tiny: attempting to take IPFS to Space
#12Earlier quoted context omitted.
It's a fancy version of Bittorrent.
Is there a reason IPFS is a better fit for it's typical use cases than BT + DHT?
I think this is mostly a UI thing, not an improvement to the underlying technology. IIRC it's technically possible to "stream" from torrents or download chunks of them, it's just not the default way people interact with them.
Re: IPFS-tiny: attempting to take IPFS to Space
#13There's a radius from earth's surface where TCP/IP won't work anymore (speed of light and whatnot). So you need some kind of datagram protocol. Also if you need Earth's infrastructure like DNS on Mars when Sol is in between Mars and Earth -- well, good luck I guess! Delay/Disruption Tolerant Networking is an attempt at some of this to actually make an interplanetary protocol. Delayed routing protocols appear to be su…
How interesting. (Surprised this didn't come up in IoT domain.)
NASA's DTN: https://www.nasa.gov/directorates/heo/scan/engineering/techn...
& there is something called Space Packet Protocol: https://public.ccsds.org/Pubs/133x0b2e1.pdf
The APID in that spec (88 bits) is where a lot of complexity (imo) is pushed up to the application layer and seems key to the archicture. It looks like basically a typed-data+endpoints addressing scheme and assigned to endpoints per mission by that mission itself.
Re: IPFS-tiny: attempting to take IPFS to Space
#14There's a radius from earth's surface where TCP/IP won't work anymore (speed of light and whatnot). So you need some kind of datagram protocol. Also if you need Earth's infrastructure like DNS on Mars when Sol is in between Mars and Earth -- well, good luck I guess! Delay/Disruption Tolerant Networking is an attempt at some of this to actually make an interplanetary protocol. Delayed routing protocols appear to be su…
> Delay/Disruption Tolerant Networking How interesting. (Surprised this didn't come up in IoT domain.) NASA's DTN: https://www.nasa.gov/directorates/heo/scan/engineering/techn... & there is something called Space Packet Protocol : https://public.ccsds.org/Pubs/133x0b2e1.pdf The APID in that spec (88 bits) is where a lot of complexity (imo) is pushed up to the application layer and seems key to the archicture. It look…
The term may not be commonly used there, but like everything in tech, people often try to solve the same problems from different angles using different terms. Offline First is also roughly comparable to DTN and some people in the IPFS have framed it in the context of Offline First.
DTN can actually solve some of the most pressing communications issues we face today: 40% of the world population is permanently disconnected from the Internet, and many of those who are are subject to severe censorship (look up #KeepItOn).
Re: IPFS-tiny: attempting to take IPFS to Space
#15There's a radius from earth's surface where TCP/IP won't work anymore (speed of light and whatnot). So you need some kind of datagram protocol. Also if you need Earth's infrastructure like DNS on Mars when Sol is in between Mars and Earth -- well, good luck I guess! Delay/Disruption Tolerant Networking is an attempt at some of this to actually make an interplanetary protocol. Delayed routing protocols appear to be su…
Same here.
This is going to come across as a shameless plug, but implementing DTN tech is actually my full-time job and we've got a couple of projects that will address some of the issues you identified:
- Awala, a computer network where compatible apps can use the 'standard' Internet infrastructure when it's available, or fall back to a backup medium that tolerates delays of up to 6 months. https://awala.network/ - VeraId, an offline authentication protocol powered by DNSSEC. https://veraid.net/
Re: IPFS-tiny: attempting to take IPFS to Space
#16Earlier quoted context omitted.
It's a fancy version of Bittorrent.
Is there a reason IPFS is a better fit for it's typical use cases than BT + DHT?
In theory that allows some extremely powerful things, such as making all the content of the world part of your filesystem. You can just "cd /ipfs//" and browse around whatever directory tree you are interested in. It completely bypasses the need to manually download anything, as you can access the data directly under a globally unique name.
IPFS is also much more suited for small files, so you could use it to host individual .jpg files, something that would be rather unwieldy with torrent.
In actual use however it barely works, it's slow, it's eats lots of CPU even when doing nothing and the fuse plugin to integrate it into your filesystem is also rather broken. POSIX file io is also ill suited for this kind of transparent file access, so all your apps will just freeze without any indication what is going on if you try to use the /ipfs/ directory.
Another huge problem with IPFS is the complete lack of authorship/copyright tracking. HTTP has that implicitly, since whoever hosts the content is responsible for it. With something like IPFS however you automatically become hoster for everything you look at. I can't see that working in the current legal system. Even distributing Open Source projects via IPFS is already illegal, as the LICENSE.txt you are generally required to redistribute no longer is linked with the actual rest of the source code once you can address and cache each file, or even blocks within a file, individually. If IPFS would ever become popular it would be quickly made unusable by lawyers, as unlike torrent, you downloading is not an active act here, it just happens in the background.
Re: IPFS-tiny: attempting to take IPFS to Space
#17Earlier quoted context omitted.
> Delay/Disruption Tolerant Networking How interesting. (Surprised this didn't come up in IoT domain.) NASA's DTN: https://www.nasa.gov/directorates/heo/scan/engineering/techn... & there is something called Space Packet Protocol : https://public.ccsds.org/Pubs/133x0b2e1.pdf The APID in that spec (88 bits) is where a lot of complexity (imo) is pushed up to the application layer and seems key to the archicture. It look…
> > Delay/Disruption Tolerant Networking > How interesting. (Surprised this didn't come up in IoT domain.) The term may not be commonly used there, but like everything in tech, people often try to solve the same problems from different angles using different terms. Offline First is also roughly comparable to DTN and some people in the IPFS have framed it in the context of Offline First. DTN can actually solve some of…
NASA’s HDTN [1] says it is based on IETF RFC 5050 [2]. Have to read that to understand privacy and censorship implications, specially the Bundle Security Protocol [3]. But just skimming the index in those specs reinforces my impression that this architecture can lockdown/lockout at administrative points.
[1]: https://github.com/nasa/HDTN
[2]: https://datatracker.ietf.org/doc/rfc5050/
[3]: https://datatracker.ietf.org/doc/html/rfc6257
—- from RFC 6257 —-
The stressed environment of the underlying networks over which the Bundle Protocol will operate makes it important for the DTN to be protected from unauthorized use, and this stressed environment poses unique challenges for the mechanisms needed to secure the Bundle Protocol.
Furthermore, DTNs may very likely been deployed in environments where a portion of the network might become compromised, posing the usual security challenges related to confidentiality, integrity, and availability.
-- end --
& p.s. RFC 4838 mentions "optional" security protocols (such as rfc 5050). There is also a "registration" protocol (to allow connection continuity over process restarts) "that may fail".
I have to think about this but atm not 100% whether these requirements are inherent to the problem domain (overlay, mix of networks, partitions, ..)