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

  • un_ax@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    11 days ago

    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";
    }
    
  • Possibly linux@lemmy.zip
    link
    fedilink
    English
    arrow-up
    3
    ·
    11 days ago

    Probably not

    I would get a separate device to run it and then connect to it from other devices. I would not leave it exposed the network (use SSH forwarding)