Questions tagged [i2p]

An open-source low-latency P2P overlay network that uses garlic routing to provide location anonymity.

About

I2P is an overlay network, exposing a simple layer that applications can use to anonymously and securely send messages to each other. I2P routes traffic through a decentralised network of peers to conceal both the sender and recipient from anyone conducting network surveillance.

The network itself is strictly message based (a la IP/UDP), but there is a library available to allow reliable streaming communication on top of it (a la TCP). All communication is end to end encrypted (in total there are four layers of encryption used when sending a message), and the end points ("destinations") are cryptographic identifiers (essentially a pair of public keys).

Definitions

  • Destination - an address inside I2P; roughly equivalent to an IP address.
  • RouterInfo - the information required to directly connect to a particular I2P node (IP address, public keys etc.)
  • LeaseSet - the information required to connect to an application or service inside I2P (Destination, public keys, tunnel gateways etc.)
  • netDb - the distributed database where network routing information is stored (RouterInfos and LeaseSets).

Links

Website: https://geti2p.net/

Documentation: https://geti2p.net/en/docs

Application development guide: https://geti2p.net/en/get-involved/develop/applications

50 questions
11
votes
1 answer

Why is it I2P (garlic routing) well suited for Monero (compared to possible alternatives)?

Could anyone provide a reasonable explanation of how I2P (garlic routing) works, why is it is well suited for Monero (compared to possible alternatives)?
TBD
  • 183
  • 5
4
votes
1 answer

Setup remote node on i2p?

As I understand, the next Monero release will include an option to connect to the network over i2p. If I have a remote node right now running with ./monerod --rpc-bind-ip --restricted-rpc --confirm-external-bind, what do I need to do…
Dr-Bracket
  • 483
  • 3
  • 19