Hacker News new | ask | show | jobs
by brk 5696 days ago
I've heard this idea discussed a number of times over the years. It usually comes up after about 4 or 5 pints :)

There are a number of reasons why it's impractical though. A given packet tends to only store about 1000bytes of actual data. It would take a lot of packets to store any useful amount of data.

Secondly, packets have TTL (time to live) encoded, where the TTL is decremented at each router hop. This is mostly to prevent routing loops (where two routers, or a group of routers, all don't know how to route a given packet so they get stuck in a sort of networking infinite loop).

So, for this to really work, you'd have to only need to store very small amounts of data (and I could think of certain applications where you might want something like an encryption key to live "in the ether"), and you'd have to modify your routers to either not decrement the TTL's for these packets, or you'd have to make the PC set obscenely huge TTL's.

Then on top of that, data stored "in the wire" would also decrease overall network performance by increasing congestion (if you're constantly routing 500MB of stored data around, those packets are taking up network resources).