this post was submitted on 20 Dec 2024
9 points (90.9% liked)

The Invisible Internet Project

1528 readers
1 users here now

I2P Community Edition

This isn't the official I2P channel, if you want go there then you can find it in the links below.

Rules

"Don't be a dick" - Wil Wheaton

General

Media:

File Hosting and Pastebins

Torrents

Social Networks and Microblogging

Exploring I2P

I2P Name Registries

Search engines

IRC

Irc2P comes pre-configured with I2P. To connect with other networks, please follow this tutorial.

Syndie

An open source system for operating distributed forums in anonymous networks

Inproxies

You can use inproxies to surf the I2P network without having to have an I2P router.

Follow us on Twitter

founded 2 years ago
MODERATORS
 

Is it possible to set up an i2p gateway in opnsense so that everyone on the network can access i2p?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 3 points 1 month ago* (last edited 1 month ago) (1 children)

You could use WPAD on your network to point all clients to an i2p proxy. I'm not sure sure if it's secure or private to be able to access both at once though.

function FindProxyForURL(url, host)
{
  if (shExpMatch(host, "*.i2p"))
  {
    return "SOCKS5 [proxy ip]:4447";
  }
  return "DIRECT";
}
[โ€“] [email protected] 1 points 1 month ago

This is interesting. Would clients need to set up a proxy to use that?